From f016998df35c96ed8d2d5427376e1112aa3d2601 Mon Sep 17 00:00:00 2001 From: Kim Date: Fri, 23 Dec 2022 08:10:45 -0700 Subject: [PATCH 1/6] Create create_random_timeseries_data.ipynb --- .../create_random_timeseries_data.ipynb | 529 ++++++++++++++++++ 1 file changed, 529 insertions(+) create mode 100644 notebooks/exploratory/create_random_timeseries_data.ipynb diff --git a/notebooks/exploratory/create_random_timeseries_data.ipynb b/notebooks/exploratory/create_random_timeseries_data.ipynb new file mode 100644 index 00000000..235b97e8 --- /dev/null +++ b/notebooks/exploratory/create_random_timeseries_data.ipynb @@ -0,0 +1,529 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### define time space for data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "date_start = pd.to_datetime('2022-01-01')\n", + "date_end = pd.to_datetime('2022-01-07')\n", + "count_datapoints_per_minute = 1\n", + "count_of_variables = 4\n", + "data_min = 0\n", + "data_max = 10" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### initialize empty dataframe" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### create random timestamps" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "start_u = date_start.value//10**9\n", + "end_u = date_end.value//10**9" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1640995200" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "start_u" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1641513600" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "end_u" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "8640" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "total_number_datapoints = int(abs((date_start - date_end)/pd.Timedelta(\"1day\"))*24*60*count_datapoints_per_minute)\n", + "total_number_datapoints" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "DatetimeIndex(['2022-01-01 00:00:52', '2022-01-01 00:01:48',\n", + " '2022-01-01 00:03:15', '2022-01-01 00:03:51',\n", + " '2022-01-01 00:05:10', '2022-01-01 00:05:10',\n", + " '2022-01-01 00:05:19', '2022-01-01 00:05:41',\n", + " '2022-01-01 00:07:57', '2022-01-01 00:09:47',\n", + " ...\n", + " '2022-01-06 23:49:18', '2022-01-06 23:49:28',\n", + " '2022-01-06 23:50:24', '2022-01-06 23:50:47',\n", + " '2022-01-06 23:53:42', '2022-01-06 23:54:02',\n", + " '2022-01-06 23:57:34', '2022-01-06 23:58:14',\n", + " '2022-01-06 23:58:15', '2022-01-06 23:59:28'],\n", + " dtype='datetime64[ns]', length=8640, freq=None)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "timestamp = pd.to_datetime(np.random.randint(start_u, end_u, total_number_datapoints), unit='s')\n", + "timestamp = timestamp.sort_values()\n", + "timestamp" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### create random data" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['var0', 'var1', 'var2', 'var3']" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list_column = []\n", + "for var in range(count_of_variables):\n", + " list_column.append(\"var{}\".format(var))\n", + " \n", + "list_column" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
var0var1var2var3
01956
16129
27060
37794
49704
...............
86355814
86362917
86371275
86382616
86397693
\n", + "

8640 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " var0 var1 var2 var3\n", + "0 1 9 5 6\n", + "1 6 1 2 9\n", + "2 7 0 6 0\n", + "3 7 7 9 4\n", + "4 9 7 0 4\n", + "... ... ... ... ...\n", + "8635 5 8 1 4\n", + "8636 2 9 1 7\n", + "8637 1 2 7 5\n", + "8638 2 6 1 6\n", + "8639 7 6 9 3\n", + "\n", + "[8640 rows x 4 columns]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(np.random.randint(data_min,data_max,size=(total_number_datapoints, count_of_variables)), columns=list_column)\n", + "data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### combine timestamp and data" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
var0var1var2var3
2022-01-01 00:00:521956
2022-01-01 00:01:486129
2022-01-01 00:03:157060
2022-01-01 00:03:517794
2022-01-01 00:05:109704
...............
2022-01-06 23:54:025814
2022-01-06 23:57:342917
2022-01-06 23:58:141275
2022-01-06 23:58:152616
2022-01-06 23:59:287693
\n", + "

8640 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " var0 var1 var2 var3\n", + "2022-01-01 00:00:52 1 9 5 6\n", + "2022-01-01 00:01:48 6 1 2 9\n", + "2022-01-01 00:03:15 7 0 6 0\n", + "2022-01-01 00:03:51 7 7 9 4\n", + "2022-01-01 00:05:10 9 7 0 4\n", + "... ... ... ... ...\n", + "2022-01-06 23:54:02 5 8 1 4\n", + "2022-01-06 23:57:34 2 9 1 7\n", + "2022-01-06 23:58:14 1 2 7 5\n", + "2022-01-06 23:58:15 2 6 1 6\n", + "2022-01-06 23:59:28 7 6 9 3\n", + "\n", + "[8640 rows x 4 columns]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = data\n", + "df.index = timestamp\n", + "df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### save dataframe to csv" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv(\"./data_edge_consideration.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "wattile", + "language": "python", + "name": "wattile" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.13" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} From cbdf8f57a6a2cc657e1ac6924117047e20ff98a1 Mon Sep 17 00:00:00 2001 From: Kim Date: Fri, 23 Dec 2022 08:22:11 -0700 Subject: [PATCH 2/6] Update create_random_timeseries_data.ipynb --- .../create_random_timeseries_data.ipynb | 203 +++++++++--------- 1 file changed, 106 insertions(+), 97 deletions(-) diff --git a/notebooks/exploratory/create_random_timeseries_data.ipynb b/notebooks/exploratory/create_random_timeseries_data.ipynb index 235b97e8..6552dac6 100644 --- a/notebooks/exploratory/create_random_timeseries_data.ipynb +++ b/notebooks/exploratory/create_random_timeseries_data.ipynb @@ -133,18 +133,18 @@ { "data": { "text/plain": [ - "DatetimeIndex(['2022-01-01 00:00:52', '2022-01-01 00:01:48',\n", - " '2022-01-01 00:03:15', '2022-01-01 00:03:51',\n", - " '2022-01-01 00:05:10', '2022-01-01 00:05:10',\n", - " '2022-01-01 00:05:19', '2022-01-01 00:05:41',\n", - " '2022-01-01 00:07:57', '2022-01-01 00:09:47',\n", + "DatetimeIndex(['2022-01-01 00:00:18', '2022-01-01 00:00:26',\n", + " '2022-01-01 00:01:29', '2022-01-01 00:04:48',\n", + " '2022-01-01 00:06:12', '2022-01-01 00:07:02',\n", + " '2022-01-01 00:08:02', '2022-01-01 00:08:44',\n", + " '2022-01-01 00:08:55', '2022-01-01 00:08:58',\n", " ...\n", - " '2022-01-06 23:49:18', '2022-01-06 23:49:28',\n", - " '2022-01-06 23:50:24', '2022-01-06 23:50:47',\n", - " '2022-01-06 23:53:42', '2022-01-06 23:54:02',\n", - " '2022-01-06 23:57:34', '2022-01-06 23:58:14',\n", - " '2022-01-06 23:58:15', '2022-01-06 23:59:28'],\n", - " dtype='datetime64[ns]', length=8640, freq=None)" + " '2022-01-06 23:52:03', '2022-01-06 23:53:09',\n", + " '2022-01-06 23:53:35', '2022-01-06 23:54:26',\n", + " '2022-01-06 23:54:26', '2022-01-06 23:54:28',\n", + " '2022-01-06 23:54:51', '2022-01-06 23:55:22',\n", + " '2022-01-06 23:58:00', '2022-01-06 23:58:57'],\n", + " dtype='datetime64[ns]', name='timestamp', length=8640, freq=None)" ] }, "execution_count": 8, @@ -155,6 +155,7 @@ "source": [ "timestamp = pd.to_datetime(np.random.randint(start_u, end_u, total_number_datapoints), unit='s')\n", "timestamp = timestamp.sort_values()\n", + "timestamp.name='timestamp'\n", "timestamp" ] }, @@ -224,38 +225,38 @@ " \n", " \n", " 0\n", - " 1\n", + " 0\n", + " 2\n", + " 7\n", " 9\n", - " 5\n", - " 6\n", " \n", " \n", " 1\n", - " 6\n", - " 1\n", + " 0\n", " 2\n", - " 9\n", + " 3\n", + " 5\n", " \n", " \n", " 2\n", - " 7\n", " 0\n", + " 4\n", " 6\n", - " 0\n", + " 1\n", " \n", " \n", " 3\n", - " 7\n", - " 7\n", - " 9\n", " 4\n", + " 5\n", + " 2\n", + " 8\n", " \n", " \n", " 4\n", - " 9\n", " 7\n", - " 0\n", - " 4\n", + " 3\n", + " 8\n", + " 7\n", " \n", " \n", " ...\n", @@ -266,38 +267,38 @@ " \n", " \n", " 8635\n", - " 5\n", - " 8\n", - " 1\n", + " 3\n", + " 3\n", " 4\n", + " 5\n", " \n", " \n", " 8636\n", - " 2\n", " 9\n", - " 1\n", - " 7\n", + " 3\n", + " 6\n", + " 4\n", " \n", " \n", " 8637\n", + " 6\n", " 1\n", + " 4\n", " 2\n", - " 7\n", - " 5\n", " \n", " \n", " 8638\n", - " 2\n", - " 6\n", " 1\n", - " 6\n", + " 8\n", + " 0\n", + " 7\n", " \n", " \n", " 8639\n", - " 7\n", - " 6\n", + " 4\n", " 9\n", - " 3\n", + " 0\n", + " 8\n", " \n", " \n", "\n", @@ -306,17 +307,17 @@ ], "text/plain": [ " var0 var1 var2 var3\n", - "0 1 9 5 6\n", - "1 6 1 2 9\n", - "2 7 0 6 0\n", - "3 7 7 9 4\n", - "4 9 7 0 4\n", + "0 0 2 7 9\n", + "1 0 2 3 5\n", + "2 0 4 6 1\n", + "3 4 5 2 8\n", + "4 7 3 8 7\n", "... ... ... ... ...\n", - "8635 5 8 1 4\n", - "8636 2 9 1 7\n", - "8637 1 2 7 5\n", - "8638 2 6 1 6\n", - "8639 7 6 9 3\n", + "8635 3 3 4 5\n", + "8636 9 3 6 4\n", + "8637 6 1 4 2\n", + "8638 1 8 0 7\n", + "8639 4 9 0 8\n", "\n", "[8640 rows x 4 columns]" ] @@ -369,42 +370,49 @@ " var2\n", " var3\n", " \n", + " \n", + " timestamp\n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", - " 2022-01-01 00:00:52\n", - " 1\n", + " 2022-01-01 00:00:18\n", + " 0\n", + " 2\n", + " 7\n", " 9\n", - " 5\n", - " 6\n", " \n", " \n", - " 2022-01-01 00:01:48\n", - " 6\n", - " 1\n", + " 2022-01-01 00:00:26\n", + " 0\n", " 2\n", - " 9\n", + " 3\n", + " 5\n", " \n", " \n", - " 2022-01-01 00:03:15\n", - " 7\n", + " 2022-01-01 00:01:29\n", " 0\n", + " 4\n", " 6\n", - " 0\n", + " 1\n", " \n", " \n", - " 2022-01-01 00:03:51\n", - " 7\n", - " 7\n", - " 9\n", + " 2022-01-01 00:04:48\n", " 4\n", + " 5\n", + " 2\n", + " 8\n", " \n", " \n", - " 2022-01-01 00:05:10\n", - " 9\n", + " 2022-01-01 00:06:12\n", + " 7\n", + " 3\n", + " 8\n", " 7\n", - " 0\n", - " 4\n", " \n", " \n", " ...\n", @@ -414,39 +422,39 @@ " ...\n", " \n", " \n", - " 2022-01-06 23:54:02\n", - " 5\n", - " 8\n", - " 1\n", + " 2022-01-06 23:54:28\n", + " 3\n", + " 3\n", " 4\n", + " 5\n", " \n", " \n", - " 2022-01-06 23:57:34\n", - " 2\n", + " 2022-01-06 23:54:51\n", " 9\n", - " 1\n", - " 7\n", + " 3\n", + " 6\n", + " 4\n", " \n", " \n", - " 2022-01-06 23:58:14\n", + " 2022-01-06 23:55:22\n", + " 6\n", " 1\n", + " 4\n", " 2\n", - " 7\n", - " 5\n", " \n", " \n", - " 2022-01-06 23:58:15\n", - " 2\n", - " 6\n", + " 2022-01-06 23:58:00\n", " 1\n", - " 6\n", + " 8\n", + " 0\n", + " 7\n", " \n", " \n", - " 2022-01-06 23:59:28\n", - " 7\n", - " 6\n", + " 2022-01-06 23:58:57\n", + " 4\n", " 9\n", - " 3\n", + " 0\n", + " 8\n", " \n", " \n", "\n", @@ -455,17 +463,18 @@ ], "text/plain": [ " var0 var1 var2 var3\n", - "2022-01-01 00:00:52 1 9 5 6\n", - "2022-01-01 00:01:48 6 1 2 9\n", - "2022-01-01 00:03:15 7 0 6 0\n", - "2022-01-01 00:03:51 7 7 9 4\n", - "2022-01-01 00:05:10 9 7 0 4\n", + "timestamp \n", + "2022-01-01 00:00:18 0 2 7 9\n", + "2022-01-01 00:00:26 0 2 3 5\n", + "2022-01-01 00:01:29 0 4 6 1\n", + "2022-01-01 00:04:48 4 5 2 8\n", + "2022-01-01 00:06:12 7 3 8 7\n", "... ... ... ... ...\n", - "2022-01-06 23:54:02 5 8 1 4\n", - "2022-01-06 23:57:34 2 9 1 7\n", - "2022-01-06 23:58:14 1 2 7 5\n", - "2022-01-06 23:58:15 2 6 1 6\n", - "2022-01-06 23:59:28 7 6 9 3\n", + "2022-01-06 23:54:28 3 3 4 5\n", + "2022-01-06 23:54:51 9 3 6 4\n", + "2022-01-06 23:55:22 6 1 4 2\n", + "2022-01-06 23:58:00 1 8 0 7\n", + "2022-01-06 23:58:57 4 9 0 8\n", "\n", "[8640 rows x 4 columns]" ] From 26501a80e384c17a2f07eabe94109c683d486928 Mon Sep 17 00:00:00 2001 From: Kim Date: Fri, 23 Dec 2022 08:28:52 -0700 Subject: [PATCH 3/6] Update create_random_timeseries_data.ipynb --- .../create_random_timeseries_data.ipynb | 249 ++++++++++-------- 1 file changed, 135 insertions(+), 114 deletions(-) diff --git a/notebooks/exploratory/create_random_timeseries_data.ipynb b/notebooks/exploratory/create_random_timeseries_data.ipynb index 6552dac6..aab30cdd 100644 --- a/notebooks/exploratory/create_random_timeseries_data.ipynb +++ b/notebooks/exploratory/create_random_timeseries_data.ipynb @@ -28,7 +28,8 @@ "count_datapoints_per_minute = 1\n", "count_of_variables = 4\n", "data_min = 0\n", - "data_max = 10" + "data_max = 10\n", + "name_target_var = \"target\"" ] }, { @@ -133,17 +134,17 @@ { "data": { "text/plain": [ - "DatetimeIndex(['2022-01-01 00:00:18', '2022-01-01 00:00:26',\n", - " '2022-01-01 00:01:29', '2022-01-01 00:04:48',\n", - " '2022-01-01 00:06:12', '2022-01-01 00:07:02',\n", - " '2022-01-01 00:08:02', '2022-01-01 00:08:44',\n", - " '2022-01-01 00:08:55', '2022-01-01 00:08:58',\n", + "DatetimeIndex(['2022-01-01 00:00:40', '2022-01-01 00:01:21',\n", + " '2022-01-01 00:01:25', '2022-01-01 00:03:08',\n", + " '2022-01-01 00:03:10', '2022-01-01 00:05:12',\n", + " '2022-01-01 00:06:17', '2022-01-01 00:06:48',\n", + " '2022-01-01 00:06:57', '2022-01-01 00:07:02',\n", " ...\n", - " '2022-01-06 23:52:03', '2022-01-06 23:53:09',\n", - " '2022-01-06 23:53:35', '2022-01-06 23:54:26',\n", - " '2022-01-06 23:54:26', '2022-01-06 23:54:28',\n", - " '2022-01-06 23:54:51', '2022-01-06 23:55:22',\n", - " '2022-01-06 23:58:00', '2022-01-06 23:58:57'],\n", + " '2022-01-06 23:48:26', '2022-01-06 23:50:32',\n", + " '2022-01-06 23:50:37', '2022-01-06 23:54:38',\n", + " '2022-01-06 23:54:48', '2022-01-06 23:56:07',\n", + " '2022-01-06 23:57:29', '2022-01-06 23:57:40',\n", + " '2022-01-06 23:59:00', '2022-01-06 23:59:56'],\n", " dtype='datetime64[ns]', name='timestamp', length=8640, freq=None)" ] }, @@ -174,7 +175,7 @@ { "data": { "text/plain": [ - "['var0', 'var1', 'var2', 'var3']" + "['var0', 'var1', 'var2', 'var3', 'target']" ] }, "execution_count": 9, @@ -187,6 +188,8 @@ "for var in range(count_of_variables):\n", " list_column.append(\"var{}\".format(var))\n", " \n", + "list_column.append(name_target_var)\n", + " \n", "list_column" ] }, @@ -220,43 +223,49 @@ " var1\n", " var2\n", " var3\n", + " target\n", " \n", " \n", " \n", " \n", " 0\n", - " 0\n", - " 2\n", - " 7\n", " 9\n", + " 8\n", + " 2\n", + " 6\n", + " 4\n", " \n", " \n", " 1\n", - " 0\n", - " 2\n", " 3\n", - " 5\n", + " 7\n", + " 9\n", + " 4\n", + " 8\n", " \n", " \n", " 2\n", + " 2\n", + " 5\n", + " 1\n", " 0\n", - " 4\n", - " 6\n", " 1\n", " \n", " \n", " 3\n", - " 4\n", - " 5\n", - " 2\n", " 8\n", + " 6\n", + " 5\n", + " 3\n", + " 1\n", " \n", " \n", " 4\n", - " 7\n", - " 3\n", - " 8\n", - " 7\n", + " 1\n", + " 0\n", + " 0\n", + " 6\n", + " 0\n", " \n", " \n", " ...\n", @@ -264,62 +273,68 @@ " ...\n", " ...\n", " ...\n", + " ...\n", " \n", " \n", " 8635\n", - " 3\n", - " 3\n", - " 4\n", - " 5\n", + " 0\n", + " 1\n", + " 9\n", + " 1\n", + " 9\n", " \n", " \n", " 8636\n", " 9\n", - " 3\n", - " 6\n", + " 2\n", + " 5\n", " 4\n", + " 0\n", " \n", " \n", " 8637\n", - " 6\n", + " 3\n", + " 8\n", + " 9\n", + " 1\n", " 1\n", - " 4\n", - " 2\n", " \n", " \n", " 8638\n", - " 1\n", - " 8\n", " 0\n", " 7\n", + " 9\n", + " 3\n", + " 5\n", " \n", " \n", " 8639\n", - " 4\n", " 9\n", - " 0\n", + " 3\n", + " 1\n", + " 8\n", " 8\n", " \n", " \n", "\n", - "

8640 rows × 4 columns

\n", + "

8640 rows × 5 columns

\n", "" ], "text/plain": [ - " var0 var1 var2 var3\n", - "0 0 2 7 9\n", - "1 0 2 3 5\n", - "2 0 4 6 1\n", - "3 4 5 2 8\n", - "4 7 3 8 7\n", - "... ... ... ... ...\n", - "8635 3 3 4 5\n", - "8636 9 3 6 4\n", - "8637 6 1 4 2\n", - "8638 1 8 0 7\n", - "8639 4 9 0 8\n", + " var0 var1 var2 var3 target\n", + "0 9 8 2 6 4\n", + "1 3 7 9 4 8\n", + "2 2 5 1 0 1\n", + "3 8 6 5 3 1\n", + "4 1 0 0 6 0\n", + "... ... ... ... ... ...\n", + "8635 0 1 9 1 9\n", + "8636 9 2 5 4 0\n", + "8637 3 8 9 1 1\n", + "8638 0 7 9 3 5\n", + "8639 9 3 1 8 8\n", "\n", - "[8640 rows x 4 columns]" + "[8640 rows x 5 columns]" ] }, "execution_count": 10, @@ -328,7 +343,7 @@ } ], "source": [ - "data = pd.DataFrame(np.random.randint(data_min,data_max,size=(total_number_datapoints, count_of_variables)), columns=list_column)\n", + "data = pd.DataFrame(np.random.randint(data_min,data_max,size=(total_number_datapoints, count_of_variables+1)), columns=list_column)\n", "data" ] }, @@ -369,6 +384,7 @@ " var1\n", " var2\n", " var3\n", + " target\n", " \n", " \n", " timestamp\n", @@ -376,43 +392,49 @@ " \n", " \n", " \n", + " \n", " \n", " \n", " \n", " \n", - " 2022-01-01 00:00:18\n", - " 0\n", + " 2022-01-01 00:00:40\n", + " 9\n", + " 8\n", " 2\n", + " 6\n", + " 4\n", + " \n", + " \n", + " 2022-01-01 00:01:21\n", + " 3\n", " 7\n", " 9\n", + " 4\n", + " 8\n", " \n", " \n", - " 2022-01-01 00:00:26\n", - " 0\n", + " 2022-01-01 00:01:25\n", " 2\n", - " 3\n", " 5\n", - " \n", - " \n", - " 2022-01-01 00:01:29\n", + " 1\n", " 0\n", - " 4\n", - " 6\n", " 1\n", " \n", " \n", - " 2022-01-01 00:04:48\n", - " 4\n", - " 5\n", - " 2\n", + " 2022-01-01 00:03:08\n", " 8\n", + " 6\n", + " 5\n", + " 3\n", + " 1\n", " \n", " \n", - " 2022-01-01 00:06:12\n", - " 7\n", - " 3\n", - " 8\n", - " 7\n", + " 2022-01-01 00:03:10\n", + " 1\n", + " 0\n", + " 0\n", + " 6\n", + " 0\n", " \n", " \n", " ...\n", @@ -420,63 +442,69 @@ " ...\n", " ...\n", " ...\n", + " ...\n", " \n", " \n", - " 2022-01-06 23:54:28\n", - " 3\n", - " 3\n", - " 4\n", - " 5\n", + " 2022-01-06 23:56:07\n", + " 0\n", + " 1\n", + " 9\n", + " 1\n", + " 9\n", " \n", " \n", - " 2022-01-06 23:54:51\n", + " 2022-01-06 23:57:29\n", " 9\n", - " 3\n", - " 6\n", + " 2\n", + " 5\n", " 4\n", + " 0\n", " \n", " \n", - " 2022-01-06 23:55:22\n", - " 6\n", + " 2022-01-06 23:57:40\n", + " 3\n", + " 8\n", + " 9\n", + " 1\n", " 1\n", - " 4\n", - " 2\n", " \n", " \n", - " 2022-01-06 23:58:00\n", - " 1\n", - " 8\n", + " 2022-01-06 23:59:00\n", " 0\n", " 7\n", + " 9\n", + " 3\n", + " 5\n", " \n", " \n", - " 2022-01-06 23:58:57\n", - " 4\n", + " 2022-01-06 23:59:56\n", " 9\n", - " 0\n", + " 3\n", + " 1\n", + " 8\n", " 8\n", " \n", " \n", "\n", - "

8640 rows × 4 columns

\n", + "

8640 rows × 5 columns

\n", "" ], "text/plain": [ - " var0 var1 var2 var3\n", - "timestamp \n", - "2022-01-01 00:00:18 0 2 7 9\n", - "2022-01-01 00:00:26 0 2 3 5\n", - "2022-01-01 00:01:29 0 4 6 1\n", - "2022-01-01 00:04:48 4 5 2 8\n", - "2022-01-01 00:06:12 7 3 8 7\n", - "... ... ... ... ...\n", - "2022-01-06 23:54:28 3 3 4 5\n", - "2022-01-06 23:54:51 9 3 6 4\n", - "2022-01-06 23:55:22 6 1 4 2\n", - "2022-01-06 23:58:00 1 8 0 7\n", - "2022-01-06 23:58:57 4 9 0 8\n", + " var0 var1 var2 var3 target\n", + "timestamp \n", + "2022-01-01 00:00:40 9 8 2 6 4\n", + "2022-01-01 00:01:21 3 7 9 4 8\n", + "2022-01-01 00:01:25 2 5 1 0 1\n", + "2022-01-01 00:03:08 8 6 5 3 1\n", + "2022-01-01 00:03:10 1 0 0 6 0\n", + "... ... ... ... ... ...\n", + "2022-01-06 23:56:07 0 1 9 1 9\n", + "2022-01-06 23:57:29 9 2 5 4 0\n", + "2022-01-06 23:57:40 3 8 9 1 1\n", + "2022-01-06 23:59:00 0 7 9 3 5\n", + "2022-01-06 23:59:56 9 3 1 8 8\n", "\n", - "[8640 rows x 4 columns]" + "[8640 rows x 5 columns]" ] }, "execution_count": 11, @@ -505,13 +533,6 @@ "source": [ "df.to_csv(\"./data_edge_consideration.csv\")" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { From 1c59ee3b6d479ff3fdda52b46234185877e7b148 Mon Sep 17 00:00:00 2001 From: Kim Date: Fri, 23 Dec 2022 12:43:39 -0700 Subject: [PATCH 4/6] Update create_random_timeseries_data.ipynb --- .../create_random_timeseries_data.ipynb | 230 +++++++++--------- 1 file changed, 119 insertions(+), 111 deletions(-) diff --git a/notebooks/exploratory/create_random_timeseries_data.ipynb b/notebooks/exploratory/create_random_timeseries_data.ipynb index aab30cdd..8e4b5a53 100644 --- a/notebooks/exploratory/create_random_timeseries_data.ipynb +++ b/notebooks/exploratory/create_random_timeseries_data.ipynb @@ -23,13 +23,14 @@ "metadata": {}, "outputs": [], "source": [ - "date_start = pd.to_datetime('2022-01-01')\n", - "date_end = pd.to_datetime('2022-01-07')\n", + "date_start = pd.to_datetime('2019-01-01')\n", + "date_end = pd.to_datetime('2019-01-07')\n", "count_datapoints_per_minute = 1\n", "count_of_variables = 4\n", "data_min = 0\n", "data_max = 10\n", - "name_target_var = \"target\"" + "name_target_var = \"target\"\n", + "np.random.seed(1)" ] }, { @@ -73,7 +74,7 @@ { "data": { "text/plain": [ - "1640995200" + "1546300800" ] }, "execution_count": 5, @@ -93,7 +94,7 @@ { "data": { "text/plain": [ - "1641513600" + "1546819200" ] }, "execution_count": 6, @@ -134,17 +135,17 @@ { "data": { "text/plain": [ - "DatetimeIndex(['2022-01-01 00:00:40', '2022-01-01 00:01:21',\n", - " '2022-01-01 00:01:25', '2022-01-01 00:03:08',\n", - " '2022-01-01 00:03:10', '2022-01-01 00:05:12',\n", - " '2022-01-01 00:06:17', '2022-01-01 00:06:48',\n", - " '2022-01-01 00:06:57', '2022-01-01 00:07:02',\n", + "DatetimeIndex(['2019-01-01 00:00:27', '2019-01-01 00:04:03',\n", + " '2019-01-01 00:06:19', '2019-01-01 00:06:20',\n", + " '2019-01-01 00:06:54', '2019-01-01 00:07:44',\n", + " '2019-01-01 00:07:47', '2019-01-01 00:07:55',\n", + " '2019-01-01 00:08:42', '2019-01-01 00:09:09',\n", " ...\n", - " '2022-01-06 23:48:26', '2022-01-06 23:50:32',\n", - " '2022-01-06 23:50:37', '2022-01-06 23:54:38',\n", - " '2022-01-06 23:54:48', '2022-01-06 23:56:07',\n", - " '2022-01-06 23:57:29', '2022-01-06 23:57:40',\n", - " '2022-01-06 23:59:00', '2022-01-06 23:59:56'],\n", + " '2019-01-06 23:50:26', '2019-01-06 23:50:53',\n", + " '2019-01-06 23:52:55', '2019-01-06 23:54:08',\n", + " '2019-01-06 23:54:57', '2019-01-06 23:55:26',\n", + " '2019-01-06 23:55:28', '2019-01-06 23:56:30',\n", + " '2019-01-06 23:59:17', '2019-01-06 23:59:22'],\n", " dtype='datetime64[ns]', name='timestamp', length=8640, freq=None)" ] }, @@ -229,43 +230,43 @@ " \n", " \n", " 0\n", - " 9\n", - " 8\n", - " 2\n", - " 6\n", " 4\n", + " 0\n", + " 0\n", + " 1\n", + " 3\n", " \n", " \n", " 1\n", " 3\n", - " 7\n", + " 1\n", " 9\n", - " 4\n", - " 8\n", + " 9\n", + " 3\n", " \n", " \n", " 2\n", - " 2\n", " 5\n", + " 6\n", + " 8\n", " 1\n", - " 0\n", - " 1\n", + " 7\n", " \n", " \n", " 3\n", " 8\n", - " 6\n", - " 5\n", - " 3\n", " 1\n", + " 5\n", + " 9\n", + " 4\n", " \n", " \n", " 4\n", " 1\n", - " 0\n", - " 0\n", - " 6\n", - " 0\n", + " 1\n", + " 3\n", + " 4\n", + " 7\n", " \n", " \n", " ...\n", @@ -277,43 +278,43 @@ " \n", " \n", " 8635\n", - " 0\n", - " 1\n", " 9\n", " 1\n", - " 9\n", + " 5\n", + " 2\n", + " 0\n", " \n", " \n", " 8636\n", - " 9\n", - " 2\n", - " 5\n", - " 4\n", + " 6\n", " 0\n", + " 4\n", + " 2\n", + " 6\n", " \n", " \n", " 8637\n", - " 3\n", - " 8\n", " 9\n", " 1\n", " 1\n", + " 7\n", + " 5\n", " \n", " \n", " 8638\n", - " 0\n", - " 7\n", + " 5\n", + " 5\n", " 9\n", " 3\n", - " 5\n", + " 2\n", " \n", " \n", " 8639\n", - " 9\n", - " 3\n", - " 1\n", - " 8\n", " 8\n", + " 1\n", + " 2\n", + " 0\n", + " 4\n", " \n", " \n", "\n", @@ -322,17 +323,17 @@ ], "text/plain": [ " var0 var1 var2 var3 target\n", - "0 9 8 2 6 4\n", - "1 3 7 9 4 8\n", - "2 2 5 1 0 1\n", - "3 8 6 5 3 1\n", - "4 1 0 0 6 0\n", + "0 4 0 0 1 3\n", + "1 3 1 9 9 3\n", + "2 5 6 8 1 7\n", + "3 8 1 5 9 4\n", + "4 1 1 3 4 7\n", "... ... ... ... ... ...\n", - "8635 0 1 9 1 9\n", - "8636 9 2 5 4 0\n", - "8637 3 8 9 1 1\n", - "8638 0 7 9 3 5\n", - "8639 9 3 1 8 8\n", + "8635 9 1 5 2 0\n", + "8636 6 0 4 2 6\n", + "8637 9 1 1 7 5\n", + "8638 5 5 9 3 2\n", + "8639 8 1 2 0 4\n", "\n", "[8640 rows x 5 columns]" ] @@ -397,44 +398,44 @@ " \n", " \n", " \n", - " 2022-01-01 00:00:40\n", - " 9\n", - " 8\n", - " 2\n", - " 6\n", + " 2019-01-01 00:00:27\n", " 4\n", + " 0\n", + " 0\n", + " 1\n", + " 3\n", " \n", " \n", - " 2022-01-01 00:01:21\n", + " 2019-01-01 00:04:03\n", " 3\n", - " 7\n", + " 1\n", " 9\n", - " 4\n", - " 8\n", + " 9\n", + " 3\n", " \n", " \n", - " 2022-01-01 00:01:25\n", - " 2\n", + " 2019-01-01 00:06:19\n", " 5\n", + " 6\n", + " 8\n", " 1\n", - " 0\n", - " 1\n", + " 7\n", " \n", " \n", - " 2022-01-01 00:03:08\n", + " 2019-01-01 00:06:20\n", " 8\n", - " 6\n", - " 5\n", - " 3\n", " 1\n", + " 5\n", + " 9\n", + " 4\n", " \n", " \n", - " 2022-01-01 00:03:10\n", + " 2019-01-01 00:06:54\n", " 1\n", - " 0\n", - " 0\n", - " 6\n", - " 0\n", + " 1\n", + " 3\n", + " 4\n", + " 7\n", " \n", " \n", " ...\n", @@ -445,44 +446,44 @@ " ...\n", " \n", " \n", - " 2022-01-06 23:56:07\n", - " 0\n", - " 1\n", + " 2019-01-06 23:55:26\n", " 9\n", " 1\n", - " 9\n", + " 5\n", + " 2\n", + " 0\n", " \n", " \n", - " 2022-01-06 23:57:29\n", - " 9\n", - " 2\n", - " 5\n", - " 4\n", + " 2019-01-06 23:55:28\n", + " 6\n", " 0\n", + " 4\n", + " 2\n", + " 6\n", " \n", " \n", - " 2022-01-06 23:57:40\n", - " 3\n", - " 8\n", + " 2019-01-06 23:56:30\n", " 9\n", " 1\n", " 1\n", - " \n", - " \n", - " 2022-01-06 23:59:00\n", - " 0\n", " 7\n", - " 9\n", - " 3\n", " 5\n", " \n", " \n", - " 2022-01-06 23:59:56\n", + " 2019-01-06 23:59:17\n", + " 5\n", + " 5\n", " 9\n", " 3\n", - " 1\n", - " 8\n", + " 2\n", + " \n", + " \n", + " 2019-01-06 23:59:22\n", " 8\n", + " 1\n", + " 2\n", + " 0\n", + " 4\n", " \n", " \n", "\n", @@ -492,17 +493,17 @@ "text/plain": [ " var0 var1 var2 var3 target\n", "timestamp \n", - "2022-01-01 00:00:40 9 8 2 6 4\n", - "2022-01-01 00:01:21 3 7 9 4 8\n", - "2022-01-01 00:01:25 2 5 1 0 1\n", - "2022-01-01 00:03:08 8 6 5 3 1\n", - "2022-01-01 00:03:10 1 0 0 6 0\n", + "2019-01-01 00:00:27 4 0 0 1 3\n", + "2019-01-01 00:04:03 3 1 9 9 3\n", + "2019-01-01 00:06:19 5 6 8 1 7\n", + "2019-01-01 00:06:20 8 1 5 9 4\n", + "2019-01-01 00:06:54 1 1 3 4 7\n", "... ... ... ... ... ...\n", - "2022-01-06 23:56:07 0 1 9 1 9\n", - "2022-01-06 23:57:29 9 2 5 4 0\n", - "2022-01-06 23:57:40 3 8 9 1 1\n", - "2022-01-06 23:59:00 0 7 9 3 5\n", - "2022-01-06 23:59:56 9 3 1 8 8\n", + "2019-01-06 23:55:26 9 1 5 2 0\n", + "2019-01-06 23:55:28 6 0 4 2 6\n", + "2019-01-06 23:56:30 9 1 1 7 5\n", + "2019-01-06 23:59:17 5 5 9 3 2\n", + "2019-01-06 23:59:22 8 1 2 0 4\n", "\n", "[8640 rows x 5 columns]" ] @@ -533,6 +534,13 @@ "source": [ "df.to_csv(\"./data_edge_consideration.csv\")" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { From e58cb2d2c4e6f30507efd1e10e3f024ee7e30ded Mon Sep 17 00:00:00 2001 From: Kim Date: Tue, 27 Dec 2022 08:10:14 -0700 Subject: [PATCH 5/6] Update create_random_timeseries_data.ipynb --- .../create_random_timeseries_data.ipynb | 315 +++++++++++++----- 1 file changed, 228 insertions(+), 87 deletions(-) diff --git a/notebooks/exploratory/create_random_timeseries_data.ipynb b/notebooks/exploratory/create_random_timeseries_data.ipynb index 8e4b5a53..7723f63f 100644 --- a/notebooks/exploratory/create_random_timeseries_data.ipynb +++ b/notebooks/exploratory/create_random_timeseries_data.ipynb @@ -30,6 +30,7 @@ "data_min = 0\n", "data_max = 10\n", "name_target_var = \"target\"\n", + "multiplier_target = 100\n", "np.random.seed(1)" ] }, @@ -176,7 +177,7 @@ { "data": { "text/plain": [ - "['var0', 'var1', 'var2', 'var3', 'target']" + "['var0', 'var1', 'var2', 'var3']" ] }, "execution_count": 9, @@ -188,9 +189,7 @@ "list_column = []\n", "for var in range(count_of_variables):\n", " list_column.append(\"var{}\".format(var))\n", - " \n", - "list_column.append(name_target_var)\n", - " \n", + " \n", "list_column" ] }, @@ -224,7 +223,6 @@ " var1\n", " var2\n", " var3\n", - " target\n", " \n", " \n", " \n", @@ -234,39 +232,34 @@ " 0\n", " 0\n", " 1\n", - " 3\n", " \n", " \n", " 1\n", " 3\n", + " 3\n", " 1\n", " 9\n", - " 9\n", - " 3\n", " \n", " \n", " 2\n", + " 9\n", + " 3\n", " 5\n", " 6\n", - " 8\n", - " 1\n", - " 7\n", " \n", " \n", " 3\n", " 8\n", " 1\n", - " 5\n", - " 9\n", - " 4\n", + " 7\n", + " 8\n", " \n", " \n", " 4\n", " 1\n", - " 1\n", - " 3\n", + " 5\n", + " 9\n", " 4\n", - " 7\n", " \n", " \n", " ...\n", @@ -274,47 +267,195 @@ " ...\n", " ...\n", " ...\n", - " ...\n", " \n", " \n", " 8635\n", - " 9\n", - " 1\n", - " 5\n", - " 2\n", " 0\n", + " 5\n", + " 5\n", + " 7\n", " \n", " \n", " 8636\n", - " 6\n", " 0\n", - " 4\n", - " 2\n", + " 1\n", + " 9\n", " 6\n", " \n", " \n", " 8637\n", + " 3\n", + " 8\n", + " 8\n", + " 8\n", + " \n", + " \n", + " 8638\n", + " 3\n", + " 5\n", + " 3\n", + " 3\n", + " \n", + " \n", + " 8639\n", + " 7\n", + " 8\n", + " 3\n", " 9\n", + " \n", + " \n", + "\n", + "

8640 rows × 4 columns

\n", + "" + ], + "text/plain": [ + " var0 var1 var2 var3\n", + "0 4 0 0 1\n", + "1 3 3 1 9\n", + "2 9 3 5 6\n", + "3 8 1 7 8\n", + "4 1 5 9 4\n", + "... ... ... ... ...\n", + "8635 0 5 5 7\n", + "8636 0 1 9 6\n", + "8637 3 8 8 8\n", + "8638 3 5 3 3\n", + "8639 7 8 3 9\n", + "\n", + "[8640 rows x 4 columns]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.DataFrame(np.random.randint(data_min,data_max,size=(total_number_datapoints, count_of_variables)), columns=list_column)\n", + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", " \n", " \n", "
var0var1var2var3target
04001586
13319683
29356850
38178560
41594139
8638..................
86350557915
86360196621
863732888602
86383533855
863978120439420
\n", @@ -323,28 +464,28 @@ ], "text/plain": [ " var0 var1 var2 var3 target\n", - "0 4 0 0 1 3\n", - "1 3 1 9 9 3\n", - "2 5 6 8 1 7\n", - "3 8 1 5 9 4\n", - "4 1 1 3 4 7\n", + "0 4 0 0 1 586\n", + "1 3 3 1 9 683\n", + "2 9 3 5 6 850\n", + "3 8 1 7 8 560\n", + "4 1 5 9 4 139\n", "... ... ... ... ... ...\n", - "8635 9 1 5 2 0\n", - "8636 6 0 4 2 6\n", - "8637 9 1 1 7 5\n", - "8638 5 5 9 3 2\n", - "8639 8 1 2 0 4\n", + "8635 0 5 5 7 915\n", + "8636 0 1 9 6 621\n", + "8637 3 8 8 8 602\n", + "8638 3 5 3 3 855\n", + "8639 7 8 3 9 420\n", "\n", "[8640 rows x 5 columns]" ] }, - "execution_count": 10, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "data = pd.DataFrame(np.random.randint(data_min,data_max,size=(total_number_datapoints, count_of_variables+1)), columns=list_column)\n", + "data[name_target_var] = np.random.randint(data_min*multiplier_target,data_max*multiplier_target,size=(total_number_datapoints, 1))\n", "data" ] }, @@ -357,7 +498,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -403,39 +544,39 @@ " 0\n", " 0\n", " 1\n", - " 3\n", + " 586\n", " \n", " \n", " 2019-01-01 00:04:03\n", " 3\n", + " 3\n", " 1\n", " 9\n", - " 9\n", - " 3\n", + " 683\n", " \n", " \n", " 2019-01-01 00:06:19\n", + " 9\n", + " 3\n", " 5\n", " 6\n", - " 8\n", - " 1\n", - " 7\n", + " 850\n", " \n", " \n", " 2019-01-01 00:06:20\n", " 8\n", " 1\n", - " 5\n", - " 9\n", - " 4\n", + " 7\n", + " 8\n", + " 560\n", " \n", " \n", " 2019-01-01 00:06:54\n", " 1\n", - " 1\n", - " 3\n", + " 5\n", + " 9\n", " 4\n", - " 7\n", + " 139\n", " \n", " \n", " ...\n", @@ -447,43 +588,43 @@ " \n", " \n", " 2019-01-06 23:55:26\n", - " 9\n", - " 1\n", - " 5\n", - " 2\n", " 0\n", + " 5\n", + " 5\n", + " 7\n", + " 915\n", " \n", " \n", " 2019-01-06 23:55:28\n", - " 6\n", " 0\n", - " 4\n", - " 2\n", + " 1\n", + " 9\n", " 6\n", + " 621\n", " \n", " \n", " 2019-01-06 23:56:30\n", - " 9\n", - " 1\n", - " 1\n", - " 7\n", - " 5\n", + " 3\n", + " 8\n", + " 8\n", + " 8\n", + " 602\n", " \n", " \n", " 2019-01-06 23:59:17\n", + " 3\n", " 5\n", - " 5\n", - " 9\n", " 3\n", - " 2\n", + " 3\n", + " 855\n", " \n", " \n", " 2019-01-06 23:59:22\n", + " 7\n", " 8\n", - " 1\n", - " 2\n", - " 0\n", - " 4\n", + " 3\n", + " 9\n", + " 420\n", " \n", " \n", "\n", @@ -493,22 +634,22 @@ "text/plain": [ " var0 var1 var2 var3 target\n", "timestamp \n", - "2019-01-01 00:00:27 4 0 0 1 3\n", - "2019-01-01 00:04:03 3 1 9 9 3\n", - "2019-01-01 00:06:19 5 6 8 1 7\n", - "2019-01-01 00:06:20 8 1 5 9 4\n", - "2019-01-01 00:06:54 1 1 3 4 7\n", + "2019-01-01 00:00:27 4 0 0 1 586\n", + "2019-01-01 00:04:03 3 3 1 9 683\n", + "2019-01-01 00:06:19 9 3 5 6 850\n", + "2019-01-01 00:06:20 8 1 7 8 560\n", + "2019-01-01 00:06:54 1 5 9 4 139\n", "... ... ... ... ... ...\n", - "2019-01-06 23:55:26 9 1 5 2 0\n", - "2019-01-06 23:55:28 6 0 4 2 6\n", - "2019-01-06 23:56:30 9 1 1 7 5\n", - "2019-01-06 23:59:17 5 5 9 3 2\n", - "2019-01-06 23:59:22 8 1 2 0 4\n", + "2019-01-06 23:55:26 0 5 5 7 915\n", + "2019-01-06 23:55:28 0 1 9 6 621\n", + "2019-01-06 23:56:30 3 8 8 8 602\n", + "2019-01-06 23:59:17 3 5 3 3 855\n", + "2019-01-06 23:59:22 7 8 3 9 420\n", "\n", "[8640 rows x 5 columns]" ] }, - "execution_count": 11, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -528,7 +669,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ From 48c97e8c378cfaad270b38fb46e95a03402ae427 Mon Sep 17 00:00:00 2001 From: Kim Date: Wed, 28 Dec 2022 09:53:39 -0700 Subject: [PATCH 6/6] Update create_random_timeseries_data.ipynb --- .../create_random_timeseries_data.ipynb | 102338 ++++++++++++++- 1 file changed, 101927 insertions(+), 411 deletions(-) diff --git a/notebooks/exploratory/create_random_timeseries_data.ipynb b/notebooks/exploratory/create_random_timeseries_data.ipynb index 7723f63f..c5361089 100644 --- a/notebooks/exploratory/create_random_timeseries_data.ipynb +++ b/notebooks/exploratory/create_random_timeseries_data.ipynb @@ -7,14 +7,16 @@ "outputs": [], "source": [ "import pandas as pd\n", - "import numpy as np" + "import numpy as np\n", + "import plotly.express as px\n", + "import plotly.graph_objects as go" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### define time space for data" + "### define data configuration" ] }, { @@ -24,13 +26,20 @@ "outputs": [], "source": [ "date_start = pd.to_datetime('2019-01-01')\n", - "date_end = pd.to_datetime('2019-01-07')\n", + "date_end = pd.to_datetime('2019-01-08')\n", + "\n", "count_datapoints_per_minute = 1\n", - "count_of_variables = 4\n", - "data_min = 0\n", - "data_max = 10\n", + "count_of_predictor_variables = 4\n", + "\n", + "noise_lvl_predictor = [0.1, 0.2, 0.3, 0.1]\n", + "multiplier_predictor = [1, 2, 3, 4]\n", + "\n", + "noise_lvl_target = 0.05\n", + "multiplier_target = 7\n", + "\n", + "name_predictor_var_prefix = \"var\"\n", "name_target_var = \"target\"\n", - "multiplier_target = 100\n", + "\n", "np.random.seed(1)" ] }, @@ -95,7 +104,7 @@ { "data": { "text/plain": [ - "1546819200" + "1546905600" ] }, "execution_count": 6, @@ -115,7 +124,7 @@ { "data": { "text/plain": [ - "8640" + "10080" ] }, "execution_count": 7, @@ -136,18 +145,18 @@ { "data": { "text/plain": [ - "DatetimeIndex(['2019-01-01 00:00:27', '2019-01-01 00:04:03',\n", - " '2019-01-01 00:06:19', '2019-01-01 00:06:20',\n", + "DatetimeIndex(['2019-01-01 00:02:42', '2019-01-01 00:02:59',\n", + " '2019-01-01 00:04:03', '2019-01-01 00:04:24',\n", + " '2019-01-01 00:05:47', '2019-01-01 00:06:20',\n", " '2019-01-01 00:06:54', '2019-01-01 00:07:44',\n", " '2019-01-01 00:07:47', '2019-01-01 00:07:55',\n", - " '2019-01-01 00:08:42', '2019-01-01 00:09:09',\n", " ...\n", - " '2019-01-06 23:50:26', '2019-01-06 23:50:53',\n", - " '2019-01-06 23:52:55', '2019-01-06 23:54:08',\n", - " '2019-01-06 23:54:57', '2019-01-06 23:55:26',\n", - " '2019-01-06 23:55:28', '2019-01-06 23:56:30',\n", - " '2019-01-06 23:59:17', '2019-01-06 23:59:22'],\n", - " dtype='datetime64[ns]', name='timestamp', length=8640, freq=None)" + " '2019-01-07 23:48:12', '2019-01-07 23:49:23',\n", + " '2019-01-07 23:49:45', '2019-01-07 23:50:07',\n", + " '2019-01-07 23:51:07', '2019-01-07 23:51:52',\n", + " '2019-01-07 23:53:18', '2019-01-07 23:53:19',\n", + " '2019-01-07 23:53:56', '2019-01-07 23:55:56'],\n", + " dtype='datetime64[ns]', name='timestamp', length=10080, freq=None)" ] }, "execution_count": 8, @@ -163,34 +172,19 @@ ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 9, "metadata": {}, + "outputs": [], "source": [ - "### create random data" + "df.index = timestamp" ] }, { - "cell_type": "code", - "execution_count": 9, + "cell_type": "markdown", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['var0', 'var1', 'var2', 'var3']" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], "source": [ - "list_column = []\n", - "for var in range(count_of_variables):\n", - " list_column.append(\"var{}\".format(var))\n", - " \n", - "list_column" + "### create random predictors and target" ] }, { @@ -223,191 +217,57 @@ " var1\n", " var2\n", " var3\n", - " \n", - " \n", - " \n", - " \n", - " 0\n", - " 4\n", - " 0\n", - " 0\n", - " 1\n", - " \n", - " \n", - " 1\n", - " 3\n", - " 3\n", - " 1\n", - " 9\n", - " \n", - " \n", - " 2\n", - " 9\n", - " 3\n", - " 5\n", - " 6\n", - " \n", - " \n", - " 3\n", - " 8\n", - " 1\n", - " 7\n", - " 8\n", - " \n", - " \n", - " 4\n", - " 1\n", - " 5\n", - " 9\n", - " 4\n", - " \n", - " \n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " \n", - " \n", - " 8635\n", - " 0\n", - " 5\n", - " 5\n", - " 7\n", - " \n", - " \n", - " 8636\n", - " 0\n", - " 1\n", - " 9\n", - " 6\n", - " \n", - " \n", - " 8637\n", - " 3\n", - " 8\n", - " 8\n", - " 8\n", - " \n", - " \n", - " 8638\n", - " 3\n", - " 5\n", - " 3\n", - " 3\n", + " target\n", " \n", " \n", - " 8639\n", - " 7\n", - " 8\n", - " 3\n", - " 9\n", - " \n", - " \n", - "\n", - "

8640 rows × 4 columns

\n", - "
" - ], - "text/plain": [ - " var0 var1 var2 var3\n", - "0 4 0 0 1\n", - "1 3 3 1 9\n", - "2 9 3 5 6\n", - "3 8 1 7 8\n", - "4 1 5 9 4\n", - "... ... ... ... ...\n", - "8635 0 5 5 7\n", - "8636 0 1 9 6\n", - "8637 3 8 8 8\n", - "8638 3 5 3 3\n", - "8639 7 8 3 9\n", - "\n", - "[8640 rows x 4 columns]" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "data = pd.DataFrame(np.random.randint(data_min,data_max,size=(total_number_datapoints, count_of_variables)), columns=list_column)\n", - "data" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", @@ -418,246 +278,101909 @@ " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", "
timestampvar0var1var2var3target
040015862019-01-01 00:02:421.8860220.1263520.7990212.9125432.658716
133196832019-01-01 00:02:592.0440870.3601500.8569983.0606802.739077
293568502019-01-01 00:04:031.9393250.0226280.6399952.7980972.745476
381785602019-01-01 00:04:242.2436380.2272850.7702943.2789022.710543
415941392019-01-01 00:05:472.3684770.2624970.5562422.7312132.788331
......
863505579152019-01-07 23:51:521.9344200.0253960.6032762.5437222.627305
863601966212019-01-07 23:53:182.0845610.3164600.4547992.9387822.617830
863738886022019-01-07 23:53:192.1430330.1051720.6759192.5514172.644591
863835338552019-01-07 23:53:562.193939-0.0160891.0725302.8976042.593583
863978394202019-01-07 23:55:562.1381440.2019260.7689522.5533622.620759
\n", - "

8640 rows × 5 columns

\n", + "

10080 rows × 5 columns

\n", "
" ], "text/plain": [ - " var0 var1 var2 var3 target\n", - "0 4 0 0 1 586\n", - "1 3 3 1 9 683\n", - "2 9 3 5 6 850\n", - "3 8 1 7 8 560\n", - "4 1 5 9 4 139\n", - "... ... ... ... ... ...\n", - "8635 0 5 5 7 915\n", - "8636 0 1 9 6 621\n", - "8637 3 8 8 8 602\n", - "8638 3 5 3 3 855\n", - "8639 7 8 3 9 420\n", + " var0 var1 var2 var3 target\n", + "timestamp \n", + "2019-01-01 00:02:42 1.886022 0.126352 0.799021 2.912543 2.658716\n", + "2019-01-01 00:02:59 2.044087 0.360150 0.856998 3.060680 2.739077\n", + "2019-01-01 00:04:03 1.939325 0.022628 0.639995 2.798097 2.745476\n", + "2019-01-01 00:04:24 2.243638 0.227285 0.770294 3.278902 2.710543\n", + "2019-01-01 00:05:47 2.368477 0.262497 0.556242 2.731213 2.788331\n", + "... ... ... ... ... ...\n", + "2019-01-07 23:51:52 1.934420 0.025396 0.603276 2.543722 2.627305\n", + "2019-01-07 23:53:18 2.084561 0.316460 0.454799 2.938782 2.617830\n", + "2019-01-07 23:53:19 2.143033 0.105172 0.675919 2.551417 2.644591\n", + "2019-01-07 23:53:56 2.193939 -0.016089 1.072530 2.897604 2.593583\n", + "2019-01-07 23:55:56 2.138144 0.201926 0.768952 2.553362 2.620759\n", "\n", - "[8640 rows x 5 columns]" + "[10080 rows x 5 columns]" ] }, - "execution_count": 11, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "data[name_target_var] = np.random.randint(data_min*multiplier_target,data_max*multiplier_target,size=(total_number_datapoints, 1))\n", - "data" + "number_of_cycles = (date_end - date_start).days\n", + "length = np.pi * 2 * number_of_cycles\n", + "\n", + "# predictors\n", + "for number in range(count_of_predictor_variables):\n", + " \n", + " var_name = name_predictor_var_prefix + str(number)\n", + " \n", + " wave = np.sin(np.arange(0, length, length / total_number_datapoints) - np.random.random(size=1)[0]*np.pi)*multiplier_predictor[number-1] + multiplier_predictor[number-1]*1.2\n", + " wave = wave + np.random.normal(0,noise_lvl_predictor[number-1],len(wave))\n", + " df[var_name] = wave\n", + " \n", + "# target\n", + "wave = np.sin(np.arange(0, length, length / total_number_datapoints) - np.random.random(size=1)[0]*np.pi)*multiplier_target + multiplier_target*1.2\n", + "wave = wave + np.random.normal(0,noise_lvl_target,len(wave))\n", + "df[name_target_var] = wave\n", + " \n", + "df" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### combine timestamp and data" + "### plot data" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "plotly-logomark\"}}},{}],483:[function(t,e,r){\"use strict\";r.isLeftAnchor=function(t){return\"left\"===t.xanchor||\"auto\"===t.xanchor&&t.x<=1/3},r.isCenterAnchor=function(t){return\"center\"===t.xanchor||\"auto\"===t.xanchor&&t.x>1/3&&t.x<2/3},r.isRightAnchor=function(t){return\"right\"===t.xanchor||\"auto\"===t.xanchor&&t.x>=2/3},r.isTopAnchor=function(t){return\"top\"===t.yanchor||\"auto\"===t.yanchor&&t.y>=2/3},r.isMiddleAnchor=function(t){return\"middle\"===t.yanchor||\"auto\"===t.yanchor&&t.y>1/3&&t.y<2/3},r.isBottomAnchor=function(t){return\"bottom\"===t.yanchor||\"auto\"===t.yanchor&&t.y<=1/3}},{}],484:[function(t,e,r){\"use strict\";var n=t(\"./mod\"),i=n.mod,a=n.modHalf,o=Math.PI,s=2*o;function l(t){return Math.abs(t[1]-t[0])>s-1e-14}function c(t,e){return a(e-t,s)}function u(t,e){if(l(e))return!0;var r,n;e[0](n=i(n,s))&&(n+=s);var a=i(t,s),o=a+s;return a>=r&&a<=n||o>=r&&o<=n}function f(t,e,r,n,i,a,c){i=i||0,a=a||0;var u,f,h,p,d,m=l([r,n]);function g(t,e){return[t*Math.cos(e)+i,a-t*Math.sin(e)]}m?(u=0,f=o,h=s):r=i&&t<=a);var i,a},pathArc:function(t,e,r,n,i){return f(null,t,e,r,n,i,0)},pathSector:function(t,e,r,n,i){return f(null,t,e,r,n,i,1)},pathAnnulus:function(t,e,r,n,i,a){return f(t,e,r,n,i,a,1)}}},{\"./mod\":510}],485:[function(t,e,r){\"use strict\";var n=Array.isArray,i=ArrayBuffer,a=DataView;function o(t){return i.isView(t)&&!(t instanceof a)}function s(t){return n(t)||o(t)}function l(t,e,r){if(s(t)){if(s(t[0])){for(var n=r,i=0;ii.max?e.set(r):e.set(+t)}},integer:{coerceFunction:function(t,e,r,i){t%1||!n(t)||void 0!==i.min&&ti.max?e.set(r):e.set(+t)}},string:{coerceFunction:function(t,e,r,n){if(\"string\"!=typeof t){var i=\"number\"==typeof t;!0!==n.strict&&i?e.set(String(t)):e.set(r)}else n.noBlank&&!t?e.set(r):e.set(t)}},color:{coerceFunction:function(t,e,r){i(t).isValid()?e.set(t):e.set(r)}},colorlist:{coerceFunction:function(t,e,r){Array.isArray(t)&&t.length&&t.every((function(t){return i(t).isValid()}))?e.set(t):e.set(r)}},colorscale:{coerceFunction:function(t,e,r){e.set(o.get(t,r))}},angle:{coerceFunction:function(t,e,r){\"auto\"===t?e.set(\"auto\"):n(t)?e.set(f(+t,360)):e.set(r)}},subplotid:{coerceFunction:function(t,e,r,n){var i=n.regex||u(r);\"string\"==typeof t&&i.test(t)?e.set(t):e.set(r)},validateFunction:function(t,e){var r=e.dflt;return t===r||\"string\"==typeof t&&!!u(r).test(t)}},flaglist:{coerceFunction:function(t,e,r,n){if(\"string\"==typeof t)if(-1===(n.extras||[]).indexOf(t)){for(var i=t.split(\"+\"),a=0;a=n&&t<=i?t:u}if(\"string\"!=typeof t&&\"number\"!=typeof t)return u;t=String(t);var c=_(e),v=t.charAt(0);!c||\"G\"!==v&&\"g\"!==v||(t=t.substr(1),e=\"\");var w=c&&\"chinese\"===e.substr(0,7),T=t.match(w?x:y);if(!T)return u;var k=T[1],A=T[3]||\"1\",M=Number(T[5]||1),S=Number(T[7]||0),E=Number(T[9]||0),L=Number(T[11]||0);if(c){if(2===k.length)return u;var C;k=Number(k);try{var P=g.getComponentMethod(\"calendars\",\"getCal\")(e);if(w){var I=\"i\"===A.charAt(A.length-1);A=parseInt(A,10),C=P.newDate(k,P.toMonthIndex(k,A,I),M)}else C=P.newDate(k,Number(A),M)}catch(t){return u}return C?(C.toJD()-m)*f+S*h+E*p+L*d:u}k=2===k.length?(Number(k)+2e3-b)%100+b:Number(k),A-=1;var O=new Date(Date.UTC(2e3,A,M,S,E));return O.setUTCFullYear(k),O.getUTCMonth()!==A||O.getUTCDate()!==M?u:O.getTime()+L*d},n=r.MIN_MS=r.dateTime2ms(\"-9999\"),i=r.MAX_MS=r.dateTime2ms(\"9999-12-31 23:59:59.9999\"),r.isDateTime=function(t,e){return r.dateTime2ms(t,e)!==u};var T=90*f,k=3*h,A=5*p;function M(t,e,r,n,i){if((e||r||n||i)&&(t+=\" \"+w(e,2)+\":\"+w(r,2),(n||i)&&(t+=\":\"+w(n,2),i))){for(var a=4;i%10==0;)a-=1,i/=10;t+=\".\"+w(i,a)}return t}r.ms2DateTime=function(t,e,r){if(\"number\"!=typeof t||!(t>=n&&t<=i))return u;e||(e=0);var a,o,s,c,y,x,b=Math.floor(10*l(t+.05,1)),w=Math.round(t-b/10);if(_(r)){var S=Math.floor(w/f)+m,E=Math.floor(l(t,f));try{a=g.getComponentMethod(\"calendars\",\"getCal\")(r).fromJD(S).formatDate(\"yyyy-mm-dd\")}catch(t){a=v(\"G%Y-%m-%d\")(new Date(w))}if(\"-\"===a.charAt(0))for(;a.length<11;)a=\"-0\"+a.substr(1);else for(;a.length<10;)a=\"0\"+a;o=e=n+f&&t<=i-f))return u;var e=Math.floor(10*l(t+.05,1)),r=new Date(Math.round(t-e/10));return M(a(\"%Y-%m-%d\")(r),r.getHours(),r.getMinutes(),r.getSeconds(),10*r.getUTCMilliseconds()+e)},r.cleanDate=function(t,e,n){if(t===u)return e;if(r.isJSDate(t)||\"number\"==typeof t&&isFinite(t)){if(_(n))return s.error(\"JS Dates and milliseconds are incompatible with world calendars\",t),e;if(!(t=r.ms2DateTimeLocal(+t))&&void 0!==e)return e}else if(!r.isDateTime(t,n))return s.error(\"unrecognized date\",t),e;return t};var S=/%\\d?f/g,E=/%h/g,L={1:\"1\",2:\"1\",3:\"2\",4:\"2\"};function C(t,e,r,n){t=t.replace(S,(function(t){var r=Math.min(+t.charAt(1)||6,6);return(e/1e3%1+2).toFixed(r).substr(2).replace(/0+$/,\"\")||\"0\"}));var i=new Date(Math.floor(e+.05));if(t=t.replace(E,(function(){return L[r(\"%q\")(i)]})),_(n))try{t=g.getComponentMethod(\"calendars\",\"worldCalFmt\")(t,e,n)}catch(t){return\"Invalid\"}return r(t)(i)}var P=[59,59.9,59.99,59.999,59.9999];r.formatDate=function(t,e,r,n,i,a){if(i=_(i)&&i,!e)if(\"y\"===r)e=a.year;else if(\"m\"===r)e=a.month;else{if(\"d\"!==r)return function(t,e){var r=l(t+.05,f),n=w(Math.floor(r/h),2)+\":\"+w(l(Math.floor(r/p),60),2);if(\"M\"!==e){o(e)||(e=0);var i=(100+Math.min(l(t/d,60),P[e])).toFixed(e).substr(1);e>0&&(i=i.replace(/0+$/,\"\").replace(/[\\.]$/,\"\")),n+=\":\"+i}return n}(t,r)+\"\\n\"+C(a.dayMonthYear,t,n,i);e=a.dayMonth+\"\\n\"+a.year}return C(e,t,n,i)};var I=3*f;r.incrementMonth=function(t,e,r){r=_(r)&&r;var n=l(t,f);if(t=Math.round(t-n),r)try{var i=Math.round(t/f)+m,a=g.getComponentMethod(\"calendars\",\"getCal\")(r),o=a.fromJD(i);return e%12?a.add(o,e,\"m\"):a.add(o,e/12,\"y\"),(o.toJD()-m)*f+n}catch(e){s.error(\"invalid ms \"+t+\" in calendar \"+r)}var c=new Date(t+I);return c.setUTCMonth(c.getUTCMonth()+e)+n-I},r.findExactDates=function(t,e){for(var r,n,i=0,a=0,s=0,l=0,c=_(e)&&g.getComponentMethod(\"calendars\",\"getCal\")(e),u=0;u0&&t[e+1][0]<0)return e;return null}switch(e=\"RUS\"===s||\"FJI\"===s?function(t){var e;if(null===c(t))e=t;else for(e=new Array(t.length),i=0;ie?r[n++]=[t[i][0]+360,t[i][1]]:i===e?(r[n++]=t[i],r[n++]=[t[i][0],-90]):r[n++]=t[i];var a=h.tester(r);a.pts.pop(),l.push(a)}:function(t){l.push(h.tester(t))},a.type){case\"MultiPolygon\":for(r=0;ri&&(i=c,e=l)}else e=r;return o.default(e).geometry.coordinates}(u),n.fIn=t,n.fOut=u,s.push(u)}else c.log([\"Location\",n.loc,\"does not have a valid GeoJSON geometry.\",\"Traces with locationmode *geojson-id* only support\",\"*Polygon* and *MultiPolygon* geometries.\"].join(\" \"))}delete i[r]}switch(r.type){case\"FeatureCollection\":var h=r.features;for(n=0;n100?(clearInterval(a),n(\"Unexpected error while fetching from \"+t)):void i++}),50)}))}for(var o=0;o0&&(r.push(i),i=[])}return i.length>0&&r.push(i),r},r.makeLine=function(t){return 1===t.length?{type:\"LineString\",coordinates:t[0]}:{type:\"MultiLineString\",coordinates:t}},r.makePolygon=function(t){if(1===t.length)return{type:\"Polygon\",coordinates:t};for(var e=new Array(t.length),r=0;r1||m<0||m>1?null:{x:t+l*m,y:e+f*m}}function l(t,e,r,n,i){var a=n*t+i*e;if(a<0)return n*n+i*i;if(a>r){var o=n-t,s=i-e;return o*o+s*s}var l=n*e-i*t;return l*l/r}r.segmentsIntersect=s,r.segmentDistance=function(t,e,r,n,i,a,o,c){if(s(t,e,r,n,i,a,o,c))return 0;var u=r-t,f=n-e,h=o-i,p=c-a,d=u*u+f*f,m=h*h+p*p,g=Math.min(l(u,f,d,i-t,a-e),l(u,f,d,o-t,c-e),l(h,p,m,t-i,e-a),l(h,p,m,r-i,n-a));return Math.sqrt(g)},r.getTextLocation=function(t,e,r,s){if(t===i&&s===a||(n={},i=t,a=s),n[r])return n[r];var l=t.getPointAtLength(o(r-s/2,e)),c=t.getPointAtLength(o(r+s/2,e)),u=Math.atan((c.y-l.y)/(c.x-l.x)),f=t.getPointAtLength(o(r,e)),h={x:(4*f.x+l.x+c.x)/6,y:(4*f.y+l.y+c.y)/6,theta:u};return n[r]=h,h},r.clearLocationCache=function(){i=null},r.getVisibleSegment=function(t,e,r){var n,i,a=e.left,o=e.right,s=e.top,l=e.bottom,c=0,u=t.getTotalLength(),f=u;function h(e){var r=t.getPointAtLength(e);0===e?n=r:e===u&&(i=r);var c=r.xo?r.x-o:0,f=r.yl?r.y-l:0;return Math.sqrt(c*c+f*f)}for(var p=h(c);p;){if((c+=p+r)>f)return;p=h(c)}for(p=h(f);p;){if(c>(f-=p+r))return;p=h(f)}return{min:c,max:f,len:f-c,total:u,isClosed:0===c&&f===u&&Math.abs(n.x-i.x)<.1&&Math.abs(n.y-i.y)<.1}},r.findPointOnPath=function(t,e,r,n){for(var i,a,o,s=(n=n||{}).pathLength||t.getTotalLength(),l=n.tolerance||.001,c=n.iterationLimit||30,u=t.getPointAtLength(0)[r]>t.getPointAtLength(s)[r]?-1:1,f=0,h=0,p=s;f0?p=i:h=i,f++}return a}},{\"./mod\":510}],499:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),a=t(\"color-normalize\"),o=t(\"../components/colorscale\"),s=t(\"../components/color/attributes\").defaultLine,l=t(\"./array\").isArrayOrTypedArray,c=a(s);function u(t,e){var r=t;return r[3]*=e,r}function f(t){if(n(t))return c;var e=a(t);return e.length?e:c}function h(t){return n(t)?t:1}e.exports={formatColor:function(t,e,r){var n,i,s,p,d,m=t.color,g=l(m),v=l(e),y=o.extractOpts(t),x=[];if(n=void 0!==y.colorscale?o.makeColorScaleFuncFromTrace(t):f,i=g?function(t,e){return void 0===t[e]?c:a(n(t[e]))}:f,s=v?function(t,e){return void 0===t[e]?1:h(t[e])}:h,g||v)for(var b=0;b1?(r*t+r*e)/r:t+e,i=String(n).length;if(i>16){var a=String(e).length;if(i>=String(t).length+a){var o=parseFloat(n).toPrecision(12);-1===o.indexOf(\"e+\")&&(n=+o)}}return n}},{}],503:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"d3-time-format\").utcFormat,a=t(\"d3-format\").format,o=t(\"fast-isnumeric\"),s=t(\"../constants/numerical\"),l=s.FP_SAFE,c=-l,u=s.BADNUM,f=e.exports={};f.adjustFormat=function(t){return!t||/^\\d[.]\\df/.test(t)||/[.]\\d%/.test(t)?t:\"0.f\"===t?\"~f\":/^\\d%/.test(t)?\"~%\":/^\\ds/.test(t)?\"~s\":!/^[~,.0$]/.test(t)&&/[&fps]/.test(t)?\"~\"+t:t};var h={};f.warnBadFormat=function(t){var e=String(t);h[e]||(h[e]=1,f.warn('encountered bad format: \"'+e+'\"'))},f.noFormat=function(t){return String(t)},f.numberFormat=function(t){var e;try{e=a(f.adjustFormat(t))}catch(e){return f.warnBadFormat(t),f.noFormat}return e},f.nestedProperty=t(\"./nested_property\"),f.keyedContainer=t(\"./keyed_container\"),f.relativeAttr=t(\"./relative_attr\"),f.isPlainObject=t(\"./is_plain_object\"),f.toLogRange=t(\"./to_log_range\"),f.relinkPrivateKeys=t(\"./relink_private\");var p=t(\"./array\");f.isTypedArray=p.isTypedArray,f.isArrayOrTypedArray=p.isArrayOrTypedArray,f.isArray1D=p.isArray1D,f.ensureArray=p.ensureArray,f.concat=p.concat,f.maxRowLength=p.maxRowLength,f.minRowLength=p.minRowLength;var d=t(\"./mod\");f.mod=d.mod,f.modHalf=d.modHalf;var m=t(\"./coerce\");f.valObjectMeta=m.valObjectMeta,f.coerce=m.coerce,f.coerce2=m.coerce2,f.coerceFont=m.coerceFont,f.coercePattern=m.coercePattern,f.coerceHoverinfo=m.coerceHoverinfo,f.coerceSelectionMarkerOpacity=m.coerceSelectionMarkerOpacity,f.validate=m.validate;var g=t(\"./dates\");f.dateTime2ms=g.dateTime2ms,f.isDateTime=g.isDateTime,f.ms2DateTime=g.ms2DateTime,f.ms2DateTimeLocal=g.ms2DateTimeLocal,f.cleanDate=g.cleanDate,f.isJSDate=g.isJSDate,f.formatDate=g.formatDate,f.incrementMonth=g.incrementMonth,f.dateTick0=g.dateTick0,f.dfltRange=g.dfltRange,f.findExactDates=g.findExactDates,f.MIN_MS=g.MIN_MS,f.MAX_MS=g.MAX_MS;var v=t(\"./search\");f.findBin=v.findBin,f.sorterAsc=v.sorterAsc,f.sorterDes=v.sorterDes,f.distinctVals=v.distinctVals,f.roundUp=v.roundUp,f.sort=v.sort,f.findIndexOfMin=v.findIndexOfMin,f.sortObjectKeys=t(\"./sort_object_keys\");var y=t(\"./stats\");f.aggNums=y.aggNums,f.len=y.len,f.mean=y.mean,f.median=y.median,f.midRange=y.midRange,f.variance=y.variance,f.stdev=y.stdev,f.interp=y.interp;var x=t(\"./matrix\");f.init2dArray=x.init2dArray,f.transposeRagged=x.transposeRagged,f.dot=x.dot,f.translationMatrix=x.translationMatrix,f.rotationMatrix=x.rotationMatrix,f.rotationXYMatrix=x.rotationXYMatrix,f.apply3DTransform=x.apply3DTransform,f.apply2DTransform=x.apply2DTransform,f.apply2DTransform2=x.apply2DTransform2,f.convertCssMatrix=x.convertCssMatrix,f.inverseTransformMatrix=x.inverseTransformMatrix;var b=t(\"./angles\");f.deg2rad=b.deg2rad,f.rad2deg=b.rad2deg,f.angleDelta=b.angleDelta,f.angleDist=b.angleDist,f.isFullCircle=b.isFullCircle,f.isAngleInsideSector=b.isAngleInsideSector,f.isPtInsideSector=b.isPtInsideSector,f.pathArc=b.pathArc,f.pathSector=b.pathSector,f.pathAnnulus=b.pathAnnulus;var _=t(\"./anchor_utils\");f.isLeftAnchor=_.isLeftAnchor,f.isCenterAnchor=_.isCenterAnchor,f.isRightAnchor=_.isRightAnchor,f.isTopAnchor=_.isTopAnchor,f.isMiddleAnchor=_.isMiddleAnchor,f.isBottomAnchor=_.isBottomAnchor;var w=t(\"./geometry2d\");f.segmentsIntersect=w.segmentsIntersect,f.segmentDistance=w.segmentDistance,f.getTextLocation=w.getTextLocation,f.clearLocationCache=w.clearLocationCache,f.getVisibleSegment=w.getVisibleSegment,f.findPointOnPath=w.findPointOnPath;var T=t(\"./extend\");f.extendFlat=T.extendFlat,f.extendDeep=T.extendDeep,f.extendDeepAll=T.extendDeepAll,f.extendDeepNoArrays=T.extendDeepNoArrays;var k=t(\"./loggers\");f.log=k.log,f.warn=k.warn,f.error=k.error;var A=t(\"./regex\");f.counterRegex=A.counter;var M=t(\"./throttle\");f.throttle=M.throttle,f.throttleDone=M.done,f.clearThrottle=M.clear;var S=t(\"./dom\");function E(t){var e={};for(var r in t)for(var n=t[r],i=0;il||t=e)&&(o(t)&&t>=0&&t%1==0)},f.noop=t(\"./noop\"),f.identity=t(\"./identity\"),f.repeat=function(t,e){for(var r=new Array(e),n=0;nr?Math.max(r,Math.min(e,t)):Math.max(e,Math.min(r,t))},f.bBoxIntersect=function(t,e,r){return r=r||0,t.left<=e.right+r&&e.left<=t.right+r&&t.top<=e.bottom+r&&e.top<=t.bottom+r},f.simpleMap=function(t,e,r,n,i){for(var a=t.length,o=new Array(a),s=0;s=Math.pow(2,r)?i>10?(f.warn(\"randstr failed uniqueness\"),l):t(e,r,n,(i||0)+1):l},f.OptionControl=function(t,e){t||(t={}),e||(e=\"opt\");var r={optionList:[],_newoption:function(n){n[e]=t,r[n.name]=n,r.optionList.push(n)}};return r[\"_\"+e]=t,r},f.smooth=function(t,e){if((e=Math.round(e)||0)<2)return t;var r,n,i,a,o=t.length,s=2*o,l=2*e-1,c=new Array(l),u=new Array(o);for(r=0;r=s&&(i-=s*Math.floor(i/s)),i<0?i=-1-i:i>=o&&(i=s-1-i),a+=t[i]*c[n];u[r]=a}return u},f.syncOrAsync=function(t,e,r){var n;function i(){return f.syncOrAsync(t,e,r)}for(;t.length;)if((n=(0,t.splice(0,1)[0])(e))&&n.then)return n.then(i);return r&&r(e)},f.stripTrailingSlash=function(t){return\"/\"===t.substr(-1)?t.substr(0,t.length-1):t},f.noneOrAll=function(t,e,r){if(t){var n,i=!1,a=!0;for(n=0;n0?e:0}))},f.fillArray=function(t,e,r,n){if(n=n||f.identity,f.isArrayOrTypedArray(t))for(var i=0;i1?i+o[1]:\"\";if(a&&(o.length>1||s.length>4||r))for(;n.test(s);)s=s.replace(n,\"$1\"+a+\"$2\");return s+l},f.TEMPLATE_STRING_REGEX=/%{([^\\s%{}:]*)([:|\\|][^}]*)?}/g;var z=/^\\w*$/;f.templateString=function(t,e){var r={};return t.replace(f.TEMPLATE_STRING_REGEX,(function(t,n){var i;return z.test(n)?i=e[n]:(r[n]=r[n]||f.nestedProperty(e,n).get,i=r[n]()),f.isValidTextValue(i)?i:\"\"}))};var D={max:10,count:0,name:\"hovertemplate\"};f.hovertemplateString=function(){return B.apply(D,arguments)};var R={max:10,count:0,name:\"texttemplate\"};f.texttemplateString=function(){return B.apply(R,arguments)};var F=/^[:|\\|]/;function B(t,e,r){var n=this,a=arguments;e||(e={});var o={};return t.replace(f.TEMPLATE_STRING_REGEX,(function(t,s,l){var c,u,h,p=\"_xother\"===s||\"_yother\"===s,d=\"_xother_\"===s||\"_yother_\"===s,m=\"xother_\"===s||\"yother_\"===s,g=\"xother\"===s||\"yother\"===s||p||m||d,v=s;if((p||d)&&(v=v.substring(1)),(m||d)&&(v=v.substring(0,v.length-1)),g){if(void 0===(c=e[v]))return\"\"}else for(h=3;h=48&&o<=57,c=s>=48&&s<=57;if(l&&(n=10*n+o-48),c&&(i=10*i+s-48),!l||!c){if(n!==i)return n-i;if(o!==s)return o-s}}return i-n};var N=2e9;f.seedPseudoRandom=function(){N=2e9},f.pseudoRandom=function(){var t=N;return N=(69069*N+1)%4294967296,Math.abs(N-t)<429496729?f.pseudoRandom():N/4294967296},f.fillText=function(t,e,r){var n=Array.isArray(r)?function(t){r.push(t)}:function(t){r.text=t},i=f.extractOption(t,e,\"htx\",\"hovertext\");if(f.isValidTextValue(i))return n(i);var a=f.extractOption(t,e,\"tx\",\"text\");return f.isValidTextValue(a)?n(a):void 0},f.isValidTextValue=function(t){return t||0===t},f.formatPercent=function(t,e){e=e||0;for(var r=(Math.round(100*t*Math.pow(10,e))*Math.pow(.1,e)).toFixed(e)+\"%\",n=0;n1&&(c=1):c=0,f.strTranslate(i-c*(r+o),a-c*(n+s))+f.strScale(c)+(l?\"rotate(\"+l+(e?\"\":\" \"+r+\" \"+n)+\")\":\"\")},f.ensureUniformFontSize=function(t,e){var r=f.extendFlat({},e);return r.size=Math.max(e.size,t._fullLayout.uniformtext.minsize||0),r},f.join2=function(t,e,r){var n=t.length;return n>1?t.slice(0,-1).join(e)+r+t[n-1]:t.join(e)},f.bigFont=function(t){return Math.round(1.2*t)};var j=f.getFirefoxVersion(),U=null!==j&&j<86;f.getPositionFromD3Event=function(){return U?[n.event.layerX,n.event.layerY]:[n.event.offsetX,n.event.offsetY]}},{\"../constants/numerical\":479,\"./anchor_utils\":483,\"./angles\":484,\"./array\":485,\"./clean_number\":486,\"./clear_responsive\":488,\"./coerce\":489,\"./dates\":490,\"./dom\":491,\"./extend\":493,\"./filter_unique\":494,\"./filter_visible\":495,\"./geometry2d\":498,\"./identity\":501,\"./increment\":502,\"./is_plain_object\":504,\"./keyed_container\":505,\"./localize\":506,\"./loggers\":507,\"./make_trace_groups\":508,\"./matrix\":509,\"./mod\":510,\"./nested_property\":511,\"./noop\":512,\"./notifier\":513,\"./preserve_drawing_buffer\":517,\"./push_unique\":518,\"./regex\":520,\"./relative_attr\":521,\"./relink_private\":522,\"./search\":523,\"./sort_object_keys\":526,\"./stats\":527,\"./throttle\":530,\"./to_log_range\":531,\"@plotly/d3\":58,\"d3-format\":112,\"d3-time-format\":120,\"fast-isnumeric\":190}],504:[function(t,e,r){\"use strict\";e.exports=function(t){return window&&window.process&&window.process.versions?\"[object Object]\"===Object.prototype.toString.call(t):\"[object Object]\"===Object.prototype.toString.call(t)&&Object.getPrototypeOf(t).hasOwnProperty(\"hasOwnProperty\")}},{}],505:[function(t,e,r){\"use strict\";var n=t(\"./nested_property\"),i=/^\\w*$/;e.exports=function(t,e,r,a){var o,s,l;r=r||\"name\",a=a||\"value\";var c={};e&&e.length?(l=n(t,e),s=l.get()):s=t,e=e||\"\";var u={};if(s)for(o=0;o2)return c[e]=2|c[e],h.set(t,null);if(f){for(o=e;o1){var e=[\"LOG:\"];for(t=0;t1){var r=[];for(t=0;t\"),\"long\")}},a.warn=function(){var t;if(n.logging>0){var e=[\"WARN:\"];for(t=0;t0){var r=[];for(t=0;t\"),\"stick\")}},a.error=function(){var t;if(n.logging>0){var e=[\"ERROR:\"];for(t=0;t0){var r=[];for(t=0;t\"),\"stick\")}}},{\"../plot_api/plot_config\":541,\"./notifier\":513}],508:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\");e.exports=function(t,e,r){var i=t.selectAll(\"g.\"+r.replace(/\\s/g,\".\")).data(e,(function(t){return t[0].trace.uid}));i.exit().remove(),i.enter().append(\"g\").attr(\"class\",r),i.order();var a=t.classed(\"rangeplot\")?\"nodeRangePlot3\":\"node3\";return i.each((function(t){t[0][a]=n.select(this)})),i}},{\"@plotly/d3\":58}],509:[function(t,e,r){\"use strict\";var n=t(\"gl-mat4\");r.init2dArray=function(t,e){for(var r=new Array(t),n=0;ne/2?t-Math.round(t/e)*e:t}}},{}],511:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./array\").isArrayOrTypedArray;function a(t,e){return function(){var r,n,o,s,l,c=t;for(s=0;s/g),l=0;la||c===i||cs)&&(!e||!l(t))}:function(t,e){var l=t[0],c=t[1];if(l===i||la||c===i||cs)return!1;var u,f,h,p,d,m=r.length,g=r[0][0],v=r[0][1],y=0;for(u=1;uMath.max(f,g)||c>Math.max(h,v)))if(cu||Math.abs(n(o,h))>i)return!0;return!1},a.filter=function(t,e){var r=[t[0]],n=0,i=0;function o(o){t.push(o);var s=r.length,l=n;r.splice(i+1);for(var c=l+1;c1&&o(t.pop());return{addPt:o,raw:t,filtered:r}}},{\"../constants/numerical\":479,\"./matrix\":509}],516:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"./show_no_webgl_msg\"),i=t(\"regl\");e.exports=function(t,e,a){var o=t._fullLayout,s=!0;return o._glcanvas.each((function(n){if(n.regl)n.regl.preloadCachedCode(a);else if(!n.pick||o._has(\"parcoords\")){try{n.regl=i({canvas:this,attributes:{antialias:!n.pick,preserveDrawingBuffer:!0},pixelRatio:t._context.plotGlPixelRatio||r.devicePixelRatio,extensions:e||[],cachedCode:a||{}})}catch(t){s=!1}n.regl||(s=!1),s&&this.addEventListener(\"webglcontextlost\",(function(e){t&&t.emit&&t.emit(\"plotly_webglcontextlost\",{event:e,layer:n.key})}),!1)}})),s||n({container:o._glcontainer.node()}),s}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./show_no_webgl_msg\":525,regl:283}],517:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"is-mobile\");e.exports=function(t){var e;if(\"string\"!=typeof(e=t&&t.hasOwnProperty(\"userAgent\")?t.userAgent:function(){var t;\"undefined\"!=typeof navigator&&(t=navigator.userAgent);t&&t.headers&&\"string\"==typeof t.headers[\"user-agent\"]&&(t=t.headers[\"user-agent\"]);return t}()))return!0;var r=i({ua:{headers:{\"user-agent\":e}},tablet:!0,featureDetect:!1});if(!r)for(var a=e.split(\" \"),o=1;o-1;s--){var l=a[s];if(\"Version/\"===l.substr(0,8)){var c=l.substr(8).split(\".\")[0];if(n(c)&&(c=+c),c>=13)return!0}}}return r}},{\"fast-isnumeric\":190,\"is-mobile\":234}],518:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(e instanceof RegExp){for(var r=e.toString(),n=0;ni.queueLength&&(t.undoQueue.queue.shift(),t.undoQueue.index--))},startSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!0,t.undoQueue.beginSequence=!0},stopSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!1,t.undoQueue.beginSequence=!1},undo:function(t){var e,r;if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index<=0)){for(t.undoQueue.index--,e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r=t.undoQueue.queue.length)){for(e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;re}function u(t,e){return t>=e}r.findBin=function(t,e,r){if(n(e.start))return r?Math.ceil((t-e.start)/e.size-1e-9)-1:Math.floor((t-e.start)/e.size+1e-9);var a,o,f=0,h=e.length,p=0,d=h>1?(e[h-1]-e[0])/(h-1):1;for(o=d>=0?r?s:l:r?u:c,t+=1e-9*d*(r?-1:1)*(d>=0?1:-1);f90&&i.log(\"Long binary search...\"),f-1},r.sorterAsc=function(t,e){return t-e},r.sorterDes=function(t,e){return e-t},r.distinctVals=function(t){var e,n=t.slice();for(n.sort(r.sorterAsc),e=n.length-1;e>-1&&n[e]===o;e--);for(var i,a=n[e]-n[0]||1,s=a/(e||1)/1e4,l=[],c=0;c<=e;c++){var u=n[c],f=u-i;void 0===i?(l.push(u),i=u):f>s&&(a=Math.min(a,f),l.push(u),i=u)}return{vals:l,minDiff:a}},r.roundUp=function(t,e,r){for(var n,i=0,a=e.length-1,o=0,s=r?0:1,l=r?1:0,c=r?Math.ceil:Math.floor;i0&&(n=1),r&&n)return t.sort(e)}return n?t:t.reverse()},r.findIndexOfMin=function(t,e){e=e||a;for(var r,n=1/0,i=0;ia.length)&&(o=a.length),n(e)||(e=!1),i(a[0])){for(l=new Array(o),s=0;st.length-1)return t[t.length-1];var r=e%1;return r*t[Math.ceil(e)]+(1-r)*t[Math.floor(e)]}},{\"./array\":485,\"fast-isnumeric\":190}],528:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\");e.exports=function(t){return t?n(t):[0,0,0,1]}},{\"color-normalize\":89}],529:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../lib\"),a=i.strTranslate,o=t(\"../constants/xmlns_namespaces\"),s=t(\"../constants/alignment\").LINE_SPACING,l=/([^$]*)([$]+[^$]*[$]+)([^$]*)/;r.convertToTspans=function(t,e,m){var M=t.text(),S=!t.attr(\"data-notex\")&&e&&e._context.typesetMath&&\"undefined\"!=typeof MathJax&&M.match(l),C=n.select(t.node().parentNode);if(!C.empty()){var P=t.attr(\"class\")?t.attr(\"class\").split(\" \")[0]:\"text\";return P+=\"-math\",C.selectAll(\"svg.\"+P).remove(),C.selectAll(\"g.\"+P+\"-group\").remove(),t.style(\"display\",null).attr({\"data-unformatted\":M,\"data-math\":\"N\"}),S?(e&&e._promises||[]).push(new Promise((function(e){t.style(\"display\",\"none\");var r=parseInt(t.node().style.fontSize,10),o={fontSize:r};!function(t,e,r){var a,o,s,l,h=parseInt((MathJax.version||\"\").split(\".\")[0]);if(2!==h&&3!==h)return void i.warn(\"No MathJax version:\",MathJax.version);var p=function(){var r=\"math-output-\"+i.randstr({},64),a=(l=n.select(\"body\").append(\"div\").attr({id:r}).style({visibility:\"hidden\",position:\"absolute\",\"font-size\":e.fontSize+\"px\"}).text(t.replace(c,\"\\\\lt \").replace(u,\"\\\\gt \"))).node();return 2===h?MathJax.Hub.Typeset(a):MathJax.typeset([a])},d=function(){var e=l.select(2===h?\".MathJax_SVG\":\".MathJax\"),a=!e.empty()&&l.select(\"svg\").node();if(a){var o,s=a.getBoundingClientRect();o=2===h?n.select(\"body\").select(\"#MathJax_SVG_glyphs\"):e.select(\"defs\"),r(e,o,s)}else i.log(\"There was an error in the tex syntax.\",t),r();l.remove()};2===h?MathJax.Hub.Queue((function(){return o=i.extendDeepAll({},MathJax.Hub.config),s=MathJax.Hub.processSectionDelay,void 0!==MathJax.Hub.processSectionDelay&&(MathJax.Hub.processSectionDelay=0),MathJax.Hub.Config({messageStyle:\"none\",tex2jax:{inlineMath:f},displayAlign:\"left\"})}),(function(){if(\"SVG\"!==(a=MathJax.Hub.config.menuSettings.renderer))return MathJax.Hub.setRenderer(\"SVG\")}),p,d,(function(){if(\"SVG\"!==a)return MathJax.Hub.setRenderer(a)}),(function(){return void 0!==s&&(MathJax.Hub.processSectionDelay=s),MathJax.Hub.Config(o)})):3===h&&(o=i.extendDeepAll({},MathJax.config),MathJax.config.tex||(MathJax.config.tex={}),MathJax.config.tex.inlineMath=f,\"svg\"!==(a=MathJax.config.startup.output)&&(MathJax.config.startup.output=\"svg\"),MathJax.startup.defaultReady(),MathJax.startup.promise.then((function(){p(),d(),\"svg\"!==a&&(MathJax.config.startup.output=a),MathJax.config=o})))}(S[2],o,(function(n,i,o){C.selectAll(\"svg.\"+P).remove(),C.selectAll(\"g.\"+P+\"-group\").remove();var s=n&&n.select(\"svg\");if(!s||!s.node())return I(),void e();var l=C.append(\"g\").classed(P+\"-group\",!0).attr({\"pointer-events\":\"none\",\"data-unformatted\":M,\"data-math\":\"Y\"});l.node().appendChild(s.node()),i&&i.node()&&s.node().insertBefore(i.node().cloneNode(!0),s.node().firstChild);var c=o.width,u=o.height;s.attr({class:P,height:u,preserveAspectRatio:\"xMinYMin meet\"}).style({overflow:\"visible\",\"pointer-events\":\"none\"});var f=t.node().style.fill||\"black\",h=s.select(\"g\");h.attr({fill:f,stroke:f});var p=h.node().getBoundingClientRect(),d=p.width,g=p.height;(d>c||g>u)&&(s.style(\"overflow\",\"hidden\"),d=(p=s.node().getBoundingClientRect()).width,g=p.height);var v=+t.attr(\"x\"),y=+t.attr(\"y\"),x=-(r||t.node().getBoundingClientRect().height)/4;if(\"y\"===P[0])l.attr({transform:\"rotate(\"+[-90,v,y]+\")\"+a(-d/2,x-g/2)});else if(\"l\"===P[0])y=x-g/2;else if(\"a\"===P[0]&&0!==P.indexOf(\"atitle\"))v=0,y=x;else{var b=t.attr(\"text-anchor\");v-=d*(\"middle\"===b?.5:\"end\"===b?1:0),y=y+x-g/2}s.attr({x:v,y:y}),m&&m.call(t,l),e(l)}))}))):I(),t}function I(){C.empty()||(P=t.attr(\"class\")+\"-math\",C.select(\"svg.\"+P).remove()),t.text(\"\").style(\"white-space\",\"pre\"),function(t,e){e=e.replace(g,\" \");var r,a=!1,l=[],c=-1;function u(){c++;var e=document.createElementNS(o.svg,\"tspan\");n.select(e).attr({class:\"line\",dy:c*s+\"em\"}),t.appendChild(e),r=e;var i=l;if(l=[{node:e}],i.length>1)for(var a=1;a doesnt match end tag <\"+t+\">. Pretending it did match.\",e),r=l[l.length-1].node}else i.log(\"Ignoring unexpected end tag .\",e)}x.test(e)?u():(r=t,l=[{node:t}]);for(var S=e.split(v),C=0;C|>|>)/g;var f=[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]];var h={sup:\"font-size:70%\",sub:\"font-size:70%\",b:\"font-weight:bold\",i:\"font-style:italic\",a:\"cursor:pointer\",span:\"\",em:\"font-style:italic;font-weight:bold\"},p={sub:\"0.3em\",sup:\"-0.6em\"},d={sub:\"-0.21em\",sup:\"0.42em\"},m=[\"http:\",\"https:\",\"mailto:\",\"\",void 0,\":\"],g=r.NEWLINES=/(\\r\\n?|\\n)/g,v=/(<[^<>]*>)/,y=/<(\\/?)([^ >]*)(\\s+(.*))?>/i,x=//i;r.BR_TAG_ALL=//gi;var b=/(^|[\\s\"'])style\\s*=\\s*(\"([^\"]*);?\"|'([^']*);?')/i,_=/(^|[\\s\"'])href\\s*=\\s*(\"([^\"]*)\"|'([^']*)')/i,w=/(^|[\\s\"'])target\\s*=\\s*(\"([^\"\\s]*)\"|'([^'\\s]*)')/i,T=/(^|[\\s\"'])popup\\s*=\\s*(\"([\\w=,]*)\"|'([\\w=,]*)')/i;function k(t,e){if(!t)return null;var r=t.match(e),n=r&&(r[3]||r[4]);return n&&E(n)}var A=/(^|;)\\s*color:/;r.plainText=function(t,e){for(var r=void 0!==(e=e||{}).len&&-1!==e.len?e.len:1/0,n=void 0!==e.allowedTags?e.allowedTags:[\"br\"],i=\"...\".length,a=t.split(v),o=[],s=\"\",l=0,c=0;ci?o.push(u.substr(0,d-i)+\"...\"):o.push(u.substr(0,d));break}s=\"\"}}return o.join(\"\")};var M={mu:\"\\u03bc\",amp:\"&\",lt:\"<\",gt:\">\",nbsp:\"\\xa0\",times:\"\\xd7\",plusmn:\"\\xb1\",deg:\"\\xb0\"},S=/&(#\\d+|#x[\\da-fA-F]+|[a-z]+);/g;function E(t){return t.replace(S,(function(t,e){return(\"#\"===e.charAt(0)?function(t){if(t>1114111)return;var e=String.fromCodePoint;if(e)return e(t);var r=String.fromCharCode;return t<=65535?r(t):r(55232+(t>>10),t%1024+56320)}(\"x\"===e.charAt(1)?parseInt(e.substr(2),16):parseInt(e.substr(1),10)):M[e])||t}))}function L(t){var e=encodeURI(decodeURI(t)),r=document.createElement(\"a\"),n=document.createElement(\"a\");r.href=t,n.href=e;var i=r.protocol,a=n.protocol;return-1!==m.indexOf(i)&&-1!==m.indexOf(a)?e:\"\"}function C(t,e,r){var n,a,o,s=r.horizontalAlign,l=r.verticalAlign||\"top\",c=t.node().getBoundingClientRect(),u=e.node().getBoundingClientRect();return a=\"bottom\"===l?function(){return c.bottom-n.height}:\"middle\"===l?function(){return c.top+(c.height-n.height)/2}:function(){return c.top},o=\"right\"===s?function(){return c.right-n.width}:\"center\"===s?function(){return c.left+(c.width-n.width)/2}:function(){return c.left},function(){n=this.node().getBoundingClientRect();var t=o()-u.left,e=a()-u.top,s=r.gd||{};if(r.gd){s._fullLayout._calcInverseTransform(s);var l=i.apply3DTransform(s._fullLayout._invTransform)(t,e);t=l[0],e=l[1]}return this.style({top:e+\"px\",left:t+\"px\",\"z-index\":1e3}),this}}r.convertEntities=E,r.sanitizeHTML=function(t){t=t.replace(g,\" \");for(var e=document.createElement(\"p\"),r=e,i=[],a=t.split(v),o=0;oa.ts+e?l():a.timer=setTimeout((function(){l(),a.timer=null}),e)},r.done=function(t){var e=n[t];return e&&e.timer?new Promise((function(t){var r=e.onDone;e.onDone=function(){r&&r(),t(),e.onDone=null}})):Promise.resolve()},r.clear=function(t){if(t)i(n[t]),delete n[t];else for(var e in n)r.clear(e)}},{}],531:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t,e){if(t>0)return Math.log(t)/Math.LN10;var r=Math.log(Math.min(e[0],e[1]))/Math.LN10;return n(r)||(r=Math.log(Math.max(e[0],e[1]))/Math.LN10-6),r}},{\"fast-isnumeric\":190}],532:[function(t,e,r){\"use strict\";var n=e.exports={},i=t(\"../plots/geo/constants\").locationmodeToLayer,a=t(\"topojson-client\").feature;n.getTopojsonName=function(t){return[t.scope.replace(/ /g,\"-\"),\"_\",t.resolution.toString(),\"m\"].join(\"\")},n.getTopojsonPath=function(t,e){return t+e+\".json\"},n.getTopojsonFeatures=function(t,e){var r=i[t.locationmode],n=e.objects[r];return a(e,n).features}},{\"../plots/geo/constants\":587,\"topojson-client\":315}],533:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en-US\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colorscale title\"},format:{date:\"%m/%d/%Y\"}}},{}],534:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colourscale title\"},format:{days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],periods:[\"AM\",\"PM\"],dateTime:\"%a %b %e %X %Y\",date:\"%d/%m/%Y\",time:\"%H:%M:%S\",decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],year:\"%Y\",month:\"%b %Y\",dayMonth:\"%b %-d\",dayMonthYear:\"%b %-d, %Y\"}}},{}],535:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t){for(var e,r,i=n.layoutArrayContainers,a=n.layoutArrayRegexes,o=t.split(\"[\")[0],s=0;s0&&o.log(\"Clearing previous rejected promises from queue.\"),t._promises=[]},r.cleanLayout=function(t){var e,n;t||(t={}),t.xaxis1&&(t.xaxis||(t.xaxis=t.xaxis1),delete t.xaxis1),t.yaxis1&&(t.yaxis||(t.yaxis=t.yaxis1),delete t.yaxis1),t.scene1&&(t.scene||(t.scene=t.scene1),delete t.scene1);var a=(s.subplotsRegistry.cartesian||{}).attrRegex,l=(s.subplotsRegistry.polar||{}).attrRegex,f=(s.subplotsRegistry.ternary||{}).attrRegex,h=(s.subplotsRegistry.gl3d||{}).attrRegex,m=Object.keys(t);for(e=0;e3?(O.x=1.02,O.xanchor=\"left\"):O.x<-2&&(O.x=-.02,O.xanchor=\"right\"),O.y>3?(O.y=1.02,O.yanchor=\"bottom\"):O.y<-2&&(O.y=-.02,O.yanchor=\"top\")),d(t),\"rotate\"===t.dragmode&&(t.dragmode=\"orbit\"),c.clean(t),t.template&&t.template.layout&&r.cleanLayout(t.template.layout),t},r.cleanData=function(t){for(var e=0;e0)return t.substr(0,e)}r.hasParent=function(t,e){for(var r=b(e);r;){if(r in t)return!0;r=b(r)}return!1};var _=[\"x\",\"y\",\"z\"];r.clearAxisTypes=function(t,e,r){for(var n=0;n1&&a.warn(\"Full array edits are incompatible with other edits\",f);var y=r[\"\"][\"\"];if(c(y))e.set(null);else{if(!Array.isArray(y))return a.warn(\"Unrecognized full array edit value\",f,y),!0;e.set(y)}return!m&&(h(g,v),p(t),!0)}var x,b,_,w,T,k,A,M,S=Object.keys(r).map(Number).sort(o),E=e.get(),L=E||[],C=u(v,f).get(),P=[],I=-1,O=L.length;for(x=0;xL.length-(A?0:1))a.warn(\"index out of range\",f,_);else if(void 0!==k)T.length>1&&a.warn(\"Insertion & removal are incompatible with edits to the same index.\",f,_),c(k)?P.push(_):A?(\"add\"===k&&(k={}),L.splice(_,0,k),C&&C.splice(_,0,{})):a.warn(\"Unrecognized full object edit value\",f,_,k),-1===I&&(I=_);else for(b=0;b=0;x--)L.splice(P[x],1),C&&C.splice(P[x],1);if(L.length?E||e.set(L):e.set(null),m)return!1;if(h(g,v),d!==i){var z;if(-1===I)z=S;else{for(O=Math.max(L.length,O),z=[],x=0;x=I);x++)z.push(_);for(x=I;x=t.data.length||i<-t.data.length)throw new Error(r+\" must be valid indices for gd.data.\");if(e.indexOf(i,n+1)>-1||i>=0&&e.indexOf(-t.data.length+i)>-1||i<0&&e.indexOf(t.data.length+i)>-1)throw new Error(\"each index in \"+r+\" must be unique.\")}}function I(t,e,r){if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(void 0===e)throw new Error(\"currentIndices is a required argument.\");if(Array.isArray(e)||(e=[e]),P(t,e,\"currentIndices\"),void 0===r||Array.isArray(r)||(r=[r]),void 0!==r&&P(t,r,\"newIndices\"),void 0!==r&&e.length!==r.length)throw new Error(\"current and new indices must be of equal length.\")}function O(t,e,r,n,a){!function(t,e,r,n){var i=o.isPlainObject(n);if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array\");if(!o.isPlainObject(e))throw new Error(\"update must be a key:value object\");if(void 0===r)throw new Error(\"indices must be an integer or array of integers\");for(var a in P(t,r,\"indices\"),e){if(!Array.isArray(e[a])||e[a].length!==r.length)throw new Error(\"attribute \"+a+\" must be an array of length equal to indices array length\");if(i&&(!(a in n)||!Array.isArray(n[a])||n[a].length!==e[a].length))throw new Error(\"when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object\")}}(t,e,r,n);for(var l=function(t,e,r,n){var a,l,c,u,f,h=o.isPlainObject(n),p=[];for(var d in Array.isArray(r)||(r=[r]),r=C(r,t.data.length-1),e)for(var m=0;m-1&&-1===r.indexOf(\"grouptitlefont\")?l(r,r.replace(\"titlefont\",\"title.font\")):r.indexOf(\"titleposition\")>-1?l(r,r.replace(\"titleposition\",\"title.position\")):r.indexOf(\"titleside\")>-1?l(r,r.replace(\"titleside\",\"title.side\")):r.indexOf(\"titleoffset\")>-1&&l(r,r.replace(\"titleoffset\",\"title.offset\")):l(r,r.replace(\"title\",\"title.text\"));function l(e,r){t[r]=t[e],delete t[e]}}function U(t,e,r){t=o.getGraphDiv(t),_.clearPromiseQueue(t);var n={};if(\"string\"==typeof e)n[e]=r;else{if(!o.isPlainObject(e))return o.warn(\"Relayout fail.\",e,r),Promise.reject();n=o.extendFlat({},e)}Object.keys(n).length&&(t.changed=!0);var i=W(t,n),a=i.flags;a.calc&&(t.calcdata=void 0);var s=[h.previousPromises];a.layoutReplot?s.push(w.layoutReplot):Object.keys(n).length&&(V(t,a,i)||h.supplyDefaults(t),a.legend&&s.push(w.doLegend),a.layoutstyle&&s.push(w.layoutStyles),a.axrange&&H(s,i.rangesAltered),a.ticks&&s.push(w.doTicksRelayout),a.modebar&&s.push(w.doModeBar),a.camera&&s.push(w.doCamera),a.colorbars&&s.push(w.doColorBars),s.push(M)),s.push(h.rehover,h.redrag),c.add(t,U,[t,i.undoit],U,[t,i.redoit]);var l=o.syncOrAsync(s,t);return l&&l.then||(l=Promise.resolve(t)),l.then((function(){return t.emit(\"plotly_relayout\",i.eventData),t}))}function V(t,e,r){var n=t._fullLayout;if(!e.axrange)return!1;for(var i in e)if(\"axrange\"!==i&&e[i])return!1;for(var a in r.rangesAltered){var o=p.id2name(a),s=t.layout[o],l=n[o];if(l.autorange=s.autorange,s.range&&(l.range=s.range.slice()),l.cleanRange(),l._matchGroup)for(var c in l._matchGroup)if(c!==a){var u=n[p.id2name(c)];u.autorange=l.autorange,u.range=l.range.slice(),u._input.range=l.range.slice()}}return!0}function H(t,e){var r=e?function(t){var r=[],n=!0;for(var i in e){var a=p.getFromId(t,i);if(r.push(i),-1!==(a.ticklabelposition||\"\").indexOf(\"inside\")&&a._anchorAxis&&r.push(a._anchorAxis._id),a._matchGroup)for(var o in a._matchGroup)e[o]||r.push(o);a.automargin&&(n=!1)}return p.draw(t,r,{skipTitle:n})}:function(t){return p.draw(t,\"redraw\")};t.push(y,w.doAutoRangeAndConstraints,r,w.drawData,w.finalDraw)}var q=/^[xyz]axis[0-9]*\\.range(\\[[0|1]\\])?$/,G=/^[xyz]axis[0-9]*\\.autorange$/,Y=/^[xyz]axis[0-9]*\\.domain(\\[[0|1]\\])?$/;function W(t,e){var r,n,i,a=t.layout,l=t._fullLayout,c=l._guiEditing,h=F(l._preGUI,c),d=Object.keys(e),m=p.list(t),g=o.extendDeepAll({},e),v={};for(j(e),d=Object.keys(e),n=0;n0&&\"string\"!=typeof O.parts[D];)D--;var B=O.parts[D],N=O.parts[D-1]+\".\"+B,U=O.parts.slice(0,D).join(\".\"),V=s(t.layout,U).get(),H=s(l,U).get(),W=O.get();if(void 0!==z){M[I]=z,S[I]=\"reverse\"===B?z:R(W);var Z=f.getLayoutValObject(l,O.parts);if(Z&&Z.impliedEdits&&null!==z)for(var J in Z.impliedEdits)E(o.relativeAttr(I,J),Z.impliedEdits[J]);if(-1!==[\"width\",\"height\"].indexOf(I))if(z){E(\"autosize\",null);var K=\"height\"===I?\"width\":\"height\";E(K,l[K])}else l[I]=t._initialAutoSize[I];else if(\"autosize\"===I)E(\"width\",z?null:l.width),E(\"height\",z?null:l.height);else if(N.match(q))P(N),s(l,U+\"._inputRange\").set(null);else if(N.match(G)){P(N),s(l,U+\"._inputRange\").set(null);var Q=s(l,U).get();Q._inputDomain&&(Q._input.domain=Q._inputDomain.slice())}else N.match(Y)&&s(l,U+\"._inputDomain\").set(null);if(\"type\"===B){L=V;var $=\"linear\"===H.type&&\"log\"===z,tt=\"log\"===H.type&&\"linear\"===z;if($||tt){if(L&&L.range)if(H.autorange)$&&(L.range=L.range[1]>L.range[0]?[1,2]:[2,1]);else{var et=L.range[0],rt=L.range[1];$?(et<=0&&rt<=0&&E(U+\".autorange\",!0),et<=0?et=rt/1e6:rt<=0&&(rt=et/1e6),E(U+\".range[0]\",Math.log(et)/Math.LN10),E(U+\".range[1]\",Math.log(rt)/Math.LN10)):(E(U+\".range[0]\",Math.pow(10,et)),E(U+\".range[1]\",Math.pow(10,rt)))}else E(U+\".autorange\",!0);Array.isArray(l._subplots.polar)&&l._subplots.polar.length&&l[O.parts[0]]&&\"radialaxis\"===O.parts[1]&&delete l[O.parts[0]]._subplot.viewInitial[\"radialaxis.range\"],u.getComponentMethod(\"annotations\",\"convertCoords\")(t,H,z,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,H,z,E)}else E(U+\".autorange\",!0),E(U+\".range\",null);s(l,U+\"._inputRange\").set(null)}else if(B.match(k)){var nt=s(l,I).get(),it=(z||{}).type;it&&\"-\"!==it||(it=\"linear\"),u.getComponentMethod(\"annotations\",\"convertCoords\")(t,nt,it,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,nt,it,E)}var at=b.containerArrayMatch(I);if(at){r=at.array,n=at.index;var ot=at.property,st=Z||{editType:\"calc\"};\"\"!==n&&\"\"===ot&&(b.isAddVal(z)?S[I]=null:b.isRemoveVal(z)?S[I]=(s(a,r).get()||[])[n]:o.warn(\"unrecognized full object value\",e)),T.update(A,st),v[r]||(v[r]={});var lt=v[r][n];lt||(lt=v[r][n]={}),lt[ot]=z,delete e[I]}else\"reverse\"===B?(V.range?V.range.reverse():(E(U+\".autorange\",!0),V.range=[1,0]),H.autorange?A.calc=!0:A.plot=!0):(\"dragmode\"===I&&(!1===z&&!1!==W||!1!==z&&!1===W)||l._has(\"scatter-like\")&&l._has(\"regl\")&&\"dragmode\"===I&&(\"lasso\"===z||\"select\"===z)&&\"lasso\"!==W&&\"select\"!==W||l._has(\"gl2d\")?A.plot=!0:Z?T.update(A,Z):A.calc=!0,O.set(z))}}for(r in v){b.applyContainerArrayChanges(t,h(a,r),v[r],A,h)||(A.plot=!0)}for(var ct in C){var ut=(L=p.getFromId(t,ct))&&L._constraintGroup;if(ut)for(var ft in A.calc=!0,ut)C[ft]||(p.getFromId(t,ft)._constraintShrinkable=!0)}return(X(t)||e.height||e.width)&&(A.plot=!0),(A.plot||A.calc)&&(A.layoutReplot=!0),{flags:A,rangesAltered:C,undoit:S,redoit:M,eventData:g}}function X(t){var e=t._fullLayout,r=e.width,n=e.height;return t.layout.autosize&&h.plotAutoSize(t,t.layout,e),e.width!==r||e.height!==n}function Z(t,e,n,i){t=o.getGraphDiv(t),_.clearPromiseQueue(t),o.isPlainObject(e)||(e={}),o.isPlainObject(n)||(n={}),Object.keys(e).length&&(t.changed=!0),Object.keys(n).length&&(t.changed=!0);var a=_.coerceTraceIndices(t,i),s=N(t,o.extendFlat({},e),a),l=s.flags,u=W(t,o.extendFlat({},n)),f=u.flags;(l.calc||f.calc)&&(t.calcdata=void 0),l.clearAxisTypes&&_.clearAxisTypes(t,a,n);var p=[];f.layoutReplot?p.push(w.layoutReplot):l.fullReplot?p.push(r._doPlot):(p.push(h.previousPromises),V(t,f,u)||h.supplyDefaults(t),l.style&&p.push(w.doTraceStyle),(l.colorbars||f.colorbars)&&p.push(w.doColorBars),f.legend&&p.push(w.doLegend),f.layoutstyle&&p.push(w.layoutStyles),f.axrange&&H(p,u.rangesAltered),f.ticks&&p.push(w.doTicksRelayout),f.modebar&&p.push(w.doModeBar),f.camera&&p.push(w.doCamera),p.push(M)),p.push(h.rehover,h.redrag),c.add(t,Z,[t,s.undoit,u.undoit,s.traces],Z,[t,s.redoit,u.redoit,s.traces]);var d=o.syncOrAsync(p,t);return d&&d.then||(d=Promise.resolve(t)),d.then((function(){return t.emit(\"plotly_update\",{data:s.eventData,layout:u.eventData}),t}))}function J(t){return function(e){e._fullLayout._guiEditing=!0;var r=t.apply(null,arguments);return e._fullLayout._guiEditing=!1,r}}var K=[{pattern:/^hiddenlabels/,attr:\"legend.uirevision\"},{pattern:/^((x|y)axis\\d*)\\.((auto)?range|title\\.text)/},{pattern:/axis\\d*\\.showspikes$/,attr:\"modebar.uirevision\"},{pattern:/(hover|drag)mode$/,attr:\"modebar.uirevision\"},{pattern:/^(scene\\d*)\\.camera/},{pattern:/^(geo\\d*)\\.(projection|center|fitbounds)/},{pattern:/^(ternary\\d*\\.[abc]axis)\\.(min|title\\.text)$/},{pattern:/^(polar\\d*\\.radialaxis)\\.((auto)?range|angle|title\\.text)/},{pattern:/^(polar\\d*\\.angularaxis)\\.rotation/},{pattern:/^(mapbox\\d*)\\.(center|zoom|bearing|pitch)/},{pattern:/^legend\\.(x|y)$/,attr:\"editrevision\"},{pattern:/^(shapes|annotations)/,attr:\"editrevision\"},{pattern:/^title\\.text$/,attr:\"editrevision\"}],Q=[{pattern:/^selectedpoints$/,attr:\"selectionrevision\"},{pattern:/(^|value\\.)visible$/,attr:\"legend.uirevision\"},{pattern:/^dimensions\\[\\d+\\]\\.constraintrange/},{pattern:/^node\\.(x|y|groups)/},{pattern:/^level$/},{pattern:/(^|value\\.)name$/},{pattern:/colorbar\\.title\\.text$/},{pattern:/colorbar\\.(x|y)$/,attr:\"editrevision\"}];function $(t,e){for(var r=0;r1;)if(n.pop(),void 0!==(r=s(e,n.join(\".\")+\".uirevision\").get()))return r;return e.uirevision}function et(t,e){for(var r=0;r=i.length?i[0]:i[t]:i}function l(t){return Array.isArray(a)?t>=a.length?a[0]:a[t]:a}function c(t,e){var r=0;return function(){if(t&&++r===e)return t()}}return void 0===n._frameWaitingCnt&&(n._frameWaitingCnt=0),new Promise((function(a,u){function f(){n._currentFrame&&n._currentFrame.onComplete&&n._currentFrame.onComplete();var e=n._currentFrame=n._frameQueue.shift();if(e){var r=e.name?e.name.toString():null;t._fullLayout._currentFrame=r,n._lastFrameAt=Date.now(),n._timeToNext=e.frameOpts.duration,h.transition(t,e.frame.data,e.frame.layout,_.coerceTraceIndices(t,e.frame.traces),e.frameOpts,e.transitionOpts).then((function(){e.onComplete&&e.onComplete()})),t.emit(\"plotly_animatingframe\",{name:r,frame:e.frame,animation:{frame:e.frameOpts,transition:e.transitionOpts}})}else t.emit(\"plotly_animated\"),window.cancelAnimationFrame(n._animationRaf),n._animationRaf=null}function p(){t.emit(\"plotly_animating\"),n._lastFrameAt=-1/0,n._timeToNext=0,n._runningTransitions=0,n._currentFrame=null;var e=function(){n._animationRaf=window.requestAnimationFrame(e),Date.now()-n._lastFrameAt>n._timeToNext&&f()};e()}var d,m,g=0;function v(t){return Array.isArray(i)?g>=i.length?t.transitionOpts=i[g]:t.transitionOpts=i[0]:t.transitionOpts=i,g++,t}var y=[],x=null==e,b=Array.isArray(e);if(!x&&!b&&o.isPlainObject(e))y.push({type:\"object\",data:v(o.extendFlat({},e))});else if(x||-1!==[\"string\",\"number\"].indexOf(typeof e))for(d=0;d0&&kk)&&A.push(m);y=A}}y.length>0?function(e){if(0!==e.length){for(var i=0;i=0;n--)if(o.isPlainObject(e[n])){var m=e[n].name,g=(u[m]||d[m]||{}).name,v=e[n].name,y=u[g]||d[g];g&&v&&\"number\"==typeof v&&y&&A<5&&(A++,o.warn('addFrames: overwriting frame \"'+(u[g]||d[g]).name+'\" with a frame whose name of type \"number\" also equates to \"'+g+'\". This is valid but may potentially lead to unexpected behavior since all plotly.js frame names are stored internally as strings.'),5===A&&o.warn(\"addFrames: This API call has yielded too many of these warnings. For the rest of this call, further warnings about numeric frame names will be suppressed.\")),d[m]={name:m},p.push({frame:h.supplyFrameDefaults(e[n]),index:r&&void 0!==r[n]&&null!==r[n]?r[n]:f+n})}p.sort((function(t,e){return t.index>e.index?-1:t.index=0;n--){if(\"number\"==typeof(i=p[n].frame).name&&o.warn(\"Warning: addFrames accepts frames with numeric names, but the numbers areimplicitly cast to strings\"),!i.name)for(;u[i.name=\"frame \"+t._transitionData._counter++];);if(u[i.name]){for(a=0;a=0;r--)n=e[r],a.push({type:\"delete\",index:n}),s.unshift({type:\"insert\",index:n,value:i[n]});var l=h.modifyFrames,u=h.modifyFrames,f=[t,s],p=[t,a];return c&&c.add(t,l,f,u,p),h.modifyFrames(t,a)},r.addTraces=function t(e,n,i){e=o.getGraphDiv(e);var a,s,l=[],u=r.deleteTraces,f=t,h=[e,l],p=[e,n];for(function(t,e,r){var n,i;if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(void 0===e)throw new Error(\"traces must be defined.\");for(Array.isArray(e)||(e=[e]),n=0;n=0&&r=0&&r=a.length)return!1;if(2===t.dimensions){if(r++,e.length===r)return t;var o=e[r];if(!y(o))return!1;t=a[i][o]}else t=a[i]}else t=a}}return t}function y(t){return t===Math.round(t)&&t>=0}function x(){var t,e,r={};for(t in f(r,o),n.subplotsRegistry){if((e=n.subplotsRegistry[t]).layoutAttributes)if(Array.isArray(e.attr))for(var i=0;i=l.length)return!1;i=(r=(n.transformsRegistry[l[c].type]||{}).attributes)&&r[e[2]],s=3}else{var u=t._module;if(u||(u=(n.modules[t.type||a.type.dflt]||{})._module),!u)return!1;if(!(i=(r=u.attributes)&&r[o])){var f=u.basePlotModule;f&&f.attributes&&(i=f.attributes[o])}i||(i=a[o])}return v(i,e,s)},r.getLayoutValObject=function(t,e){return v(function(t,e){var r,i,a,s,l=t._basePlotModules;if(l){var c;for(r=0;r=i&&(r._input||{})._templateitemname;o&&(a=i);var s,l=e+\"[\"+a+\"]\";function c(){s={},o&&(s[l]={},s[l].templateitemname=o)}function u(t,e){o?n.nestedProperty(s[l],t).set(e):s[l+\".\"+t]=e}function f(){var t=s;return c(),t}return c(),{modifyBase:function(t,e){s[t]=e},modifyItem:u,getUpdateObj:f,applyUpdate:function(e,r){e&&u(e,r);var i=f();for(var a in i)n.nestedProperty(t,a).set(i[a])}}}},{\"../lib\":503,\"../plots/attributes\":550}],544:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../registry\"),a=t(\"../plots/plots\"),o=t(\"../lib\"),s=t(\"../lib/clear_gl_canvases\"),l=t(\"../components/color\"),c=t(\"../components/drawing\"),u=t(\"../components/titles\"),f=t(\"../components/modebar\"),h=t(\"../plots/cartesian/axes\"),p=t(\"../constants/alignment\"),d=t(\"../plots/cartesian/constraints\"),m=d.enforce,g=d.clean,v=t(\"../plots/cartesian/autorange\").doAutoRange;function y(t,e,r){for(var n=0;n=t[1]||i[1]<=t[0])&&(a[0]e[0]))return!0}return!1}function x(t){var e,i,s,u,d,m,g=t._fullLayout,v=g._size,x=v.p,_=h.list(t,\"\",!0);if(g._paperdiv.style({width:t._context.responsive&&g.autosize&&!t._context._hasZeroWidth&&!t.layout.width?\"100%\":g.width+\"px\",height:t._context.responsive&&g.autosize&&!t._context._hasZeroHeight&&!t.layout.height?\"100%\":g.height+\"px\"}).selectAll(\".main-svg\").call(c.setSize,g.width,g.height),t._context.setBackground(t,g.paper_bgcolor),r.drawMainTitle(t),f.manage(t),!g._has(\"cartesian\"))return a.previousPromises(t);function T(t,e,r){var n=t._lw/2;return\"x\"===t._id.charAt(0)?e?\"top\"===r?e._offset-x-n:e._offset+e._length+x+n:v.t+v.h*(1-(t.position||0))+n%1:e?\"right\"===r?e._offset+e._length+x+n:e._offset-x-n:v.l+v.w*(t.position||0)+n%1}for(e=0;e<_.length;e++){var k=(u=_[e])._anchorAxis;u._linepositions={},u._lw=c.crispRound(t,u.linewidth,1),u._mainLinePosition=T(u,k,u.side),u._mainMirrorPosition=u.mirror&&k?T(u,k,p.OPPOSITE_SIDE[u.side]):null}var A=[],M=[],S=[],E=1===l.opacity(g.paper_bgcolor)&&1===l.opacity(g.plot_bgcolor)&&g.paper_bgcolor===g.plot_bgcolor;for(i in g._plots)if((s=g._plots[i]).mainplot)s.bg&&s.bg.remove(),s.bg=void 0;else{var L=s.xaxis.domain,C=s.yaxis.domain,P=s.plotgroup;if(y(L,C,S)){var I=P.node(),O=s.bg=o.ensureSingle(P,\"rect\",\"bg\");I.insertBefore(O.node(),I.childNodes[0]),M.push(i)}else P.select(\"rect.bg\").remove(),S.push([L,C]),E||(A.push(i),M.push(i))}var z,D,R,F,B,N,j,U,V,H,q,G,Y,W=g._bgLayer.selectAll(\".bg\").data(A);for(W.enter().append(\"rect\").classed(\"bg\",!0),W.exit().remove(),W.each((function(t){g._plots[t].bg=n.select(this)})),e=0;eT?u.push({code:\"unused\",traceType:y,templateCount:w,dataCount:T}):T>w&&u.push({code:\"reused\",traceType:y,templateCount:w,dataCount:T})}}else u.push({code:\"data\"});if(function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)){var a=e[n],o=m(e,n,r);i(a)?(Array.isArray(e)&&!1===a._template&&a.templateitemname&&u.push({code:\"missing\",path:o,templateitemname:a.templateitemname}),t(a,o)):Array.isArray(a)&&g(a)&&t(a,o)}}({data:p,layout:h},\"\"),u.length)return u.map(v)}},{\"../lib\":503,\"../plots/attributes\":550,\"../plots/plots\":619,\"./plot_config\":541,\"./plot_schema\":542,\"./plot_template\":543}],546:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./plot_api\"),a=t(\"../plots/plots\"),o=t(\"../lib\"),s=t(\"../snapshot/helpers\"),l=t(\"../snapshot/tosvg\"),c=t(\"../snapshot/svgtoimg\"),u=t(\"../version\").version,f={format:{valType:\"enumerated\",values:[\"png\",\"jpeg\",\"webp\",\"svg\",\"full-json\"],dflt:\"png\"},width:{valType:\"number\",min:1},height:{valType:\"number\",min:1},scale:{valType:\"number\",min:0,dflt:1},setBackground:{valType:\"any\",dflt:!1},imageDataOnly:{valType:\"boolean\",dflt:!1}};e.exports=function(t,e){var r,h,p,d;function m(t){return!(t in e)||o.validate(e[t],f[t])}if(e=e||{},o.isPlainObject(t)?(r=t.data||[],h=t.layout||{},p=t.config||{},d={}):(t=o.getGraphDiv(t),r=o.extendDeep([],t.data),h=o.extendDeep({},t.layout),p=t._context,d=t._fullLayout||{}),!m(\"width\")&&null!==e.width||!m(\"height\")&&null!==e.height)throw new Error(\"Height and width should be pixel values.\");if(!m(\"format\"))throw new Error(\"Export format is not \"+o.join2(f.format.values,\", \",\" or \")+\".\");var g={};function v(t,r){return o.coerce(e,g,f,t,r)}var y=v(\"format\"),x=v(\"width\"),b=v(\"height\"),_=v(\"scale\"),w=v(\"setBackground\"),T=v(\"imageDataOnly\"),k=document.createElement(\"div\");k.style.position=\"absolute\",k.style.left=\"-5000px\",document.body.appendChild(k);var A=o.extendFlat({},h);x?A.width=x:null===e.width&&n(d.width)&&(A.width=d.width),b?A.height=b:null===e.height&&n(d.height)&&(A.height=d.height);var M=o.extendFlat({},p,{_exportedPlot:!0,staticPlot:!0,setBackground:w}),S=s.getRedrawFunc(k);function E(){return new Promise((function(t){setTimeout(t,s.getDelay(k._fullLayout))}))}function L(){return new Promise((function(t,e){var r=l(k,y,_),n=k._fullLayout.width,f=k._fullLayout.height;function h(){i.purge(k),document.body.removeChild(k)}if(\"full-json\"===y){var p=a.graphJson(k,!1,\"keepdata\",\"object\",!0,!0);return p.version=u,p=JSON.stringify(p),h(),t(T?p:s.encodeJSON(p))}if(h(),\"svg\"===y)return t(T?r:s.encodeSVG(r));var d=document.createElement(\"canvas\");d.id=o.randstr(),c({format:y,width:n,height:f,scale:_,canvas:d,svg:r,promise:!0}).then(t).catch(e)}))}return new Promise((function(t,e){i.newPlot(k,r,A,M).then(S).then(E).then(L).then((function(e){t(function(t){return T?t.replace(s.IMAGE_URL_PREFIX,\"\"):t}(e))})).catch((function(t){e(t)}))}))}},{\"../lib\":503,\"../plots/plots\":619,\"../snapshot/helpers\":642,\"../snapshot/svgtoimg\":644,\"../snapshot/tosvg\":646,\"../version\":1123,\"./plot_api\":540,\"fast-isnumeric\":190}],547:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plots/plots\"),a=t(\"./plot_schema\"),o=t(\"./plot_config\").dfltConfig,s=n.isPlainObject,l=Array.isArray,c=n.isArrayOrTypedArray;function u(t,e,r,i,a,o){o=o||[];for(var f=Object.keys(t),h=0;hx.length&&i.push(d(\"unused\",a,v.concat(x.length)));var A,M,S,E,L,C=x.length,P=Array.isArray(k);if(P&&(C=Math.min(C,k.length)),2===b.dimensions)for(M=0;Mx[M].length&&i.push(d(\"unused\",a,v.concat(M,x[M].length)));var I=x[M].length;for(A=0;A<(P?Math.min(I,k[M].length):I);A++)S=P?k[M][A]:k,E=y[M][A],L=x[M][A],n.validate(E,S)?L!==E&&L!==+E&&i.push(d(\"dynamic\",a,v.concat(M,A),E,L)):i.push(d(\"value\",a,v.concat(M,A),E))}else i.push(d(\"array\",a,v.concat(M),y[M]));else for(M=0;M1&&p.push(d(\"object\",\"layout\"))),i.supplyDefaults(m);for(var g=m._fullData,v=r.length,y=0;y0&&Math.round(f)===f))return{vals:i};c=f}for(var h=e.calendar,p=\"start\"===l,d=\"end\"===l,m=t[r+\"period0\"],g=a(m,h)||0,v=[],y=[],x=[],b=i.length,_=0;_A;)k=o(k,-c,h);for(;k<=A;)k=o(k,c,h);T=o(k,-c,h)}else{for(k=g+(w=Math.round((A-g)/u))*u;k>A;)k-=u;for(;k<=A;)k+=u;T=k-u}v[_]=p?T:d?k:(T+k)/2,y[_]=T,x[_]=k}return{vals:v,starts:y,ends:x}}},{\"../../constants/numerical\":479,\"../../lib\":503,\"fast-isnumeric\":190}],552:[function(t,e,r){\"use strict\";e.exports={xaxis:{valType:\"subplotid\",dflt:\"x\",editType:\"calc+clearAxisTypes\"},yaxis:{valType:\"subplotid\",dflt:\"y\",editType:\"calc+clearAxisTypes\"}}},{}],553:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../lib\"),o=t(\"../../constants/numerical\").FP_SAFE,s=t(\"../../registry\"),l=t(\"../../components/drawing\"),c=t(\"./axis_ids\"),u=c.getFromId,f=c.isLinked;function h(t,e){var r,n,i=[],o=t._fullLayout,s=d(o,e,0),l=d(o,e,1),c=m(t,e),u=c.min,f=c.max;if(0===u.length||0===f.length)return a.simpleMap(e.range,e.r2l);var h=u[0].val,g=f[0].val;for(r=1;r0&&((T=E-s(x)-l(b))>L?k/T>C&&(_=x,w=b,C=k/T):k/E>C&&(_={val:x.val,nopad:1},w={val:b.val,nopad:1},C=k/E));if(h===g){var P=h-1,I=h+1;if(M)if(0===h)i=[0,1];else{var O=(h>0?f:u).reduce((function(t,e){return Math.max(t,l(e))}),0),z=h/(1-Math.min(.5,O/E));i=h>0?[0,z]:[z,0]}else i=S?[Math.max(0,P),Math.max(1,I)]:[P,I]}else M?(_.val>=0&&(_={val:0,nopad:1}),w.val<=0&&(w={val:0,nopad:1})):S&&(_.val-C*s(_)<0&&(_={val:0,nopad:1}),w.val<=0&&(w={val:1,nopad:1})),C=(w.val-_.val-p(e,x.val,b.val))/(E-s(_)-l(w)),i=[_.val-C*s(_),w.val+C*l(w)];return v&&i.reverse(),a.simpleMap(i,e.l2r||Number)}function p(t,e,r){var n=0;if(t.rangebreaks)for(var i=t.locateBreaks(e,r),a=0;a0?r.ppadplus:r.ppadminus)||r.ppad||0),S=A((t._m>0?r.ppadminus:r.ppadplus)||r.ppad||0),E=A(r.vpadplus||r.vpad),L=A(r.vpadminus||r.vpad);if(!T){if(h=1/0,p=-1/0,w)for(n=0;n0&&(h=a),a>p&&a-o&&(h=a),a>p&&a=I;n--)P(n);return{min:d,max:m,opts:r}},concatExtremes:m};function m(t,e,r){var n,i,a,o=e._id,s=t._fullData,l=t._fullLayout,c=[],f=[];function h(t,e){for(n=0;n=r&&(c.extrapad||!o)){s=!1;break}i(e,c.val)&&c.pad<=r&&(o||!c.extrapad)&&(t.splice(l,1),l--)}if(s){var u=a&&0===e;t.push({val:e,pad:u?0:r,extrapad:!u&&o})}}function x(t){return i(t)&&Math.abs(t)=e}},{\"../../components/drawing\":388,\"../../constants/numerical\":479,\"../../lib\":503,\"../../registry\":638,\"./axis_ids\":558,\"@plotly/d3\":58,\"fast-isnumeric\":190}],554:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=s.strTranslate,c=t(\"../../lib/svg_text_utils\"),u=t(\"../../components/titles\"),f=t(\"../../components/color\"),h=t(\"../../components/drawing\"),p=t(\"./layout_attributes\"),d=t(\"./clean_ticks\"),m=t(\"../../constants/numerical\"),g=m.ONEMAXYEAR,v=m.ONEAVGYEAR,y=m.ONEMINYEAR,x=m.ONEMAXQUARTER,b=m.ONEAVGQUARTER,_=m.ONEMINQUARTER,w=m.ONEMAXMONTH,T=m.ONEAVGMONTH,k=m.ONEMINMONTH,A=m.ONEWEEK,M=m.ONEDAY,S=M/2,E=m.ONEHOUR,L=m.ONEMIN,C=m.ONESEC,P=m.MINUS_SIGN,I=m.BADNUM,O={K:\"zeroline\"},z={K:\"gridline\",L:\"path\"},D={K:\"minor-gridline\",L:\"path\"},R={K:\"tick\",L:\"path\"},F={K:\"tick\",L:\"text\"},B=t(\"../../constants/alignment\"),N=B.MID_SHIFT,j=B.CAP_SHIFT,U=B.LINE_SPACING,V=B.OPPOSITE_SIDE,H=e.exports={};H.setConvert=t(\"./set_convert\");var q=t(\"./axis_autotype\"),G=t(\"./axis_ids\"),Y=G.idSort,W=G.isLinked;H.id2name=G.id2name,H.name2id=G.name2id,H.cleanId=G.cleanId,H.list=G.list,H.listIds=G.listIds,H.getFromId=G.getFromId,H.getFromTrace=G.getFromTrace;var X=t(\"./autorange\");H.getAutoRange=X.getAutoRange,H.findExtremes=X.findExtremes;function Z(t){var e=1e-4*(t[1]-t[0]);return[t[0]-e,t[1]+e]}H.coerceRef=function(t,e,r,n,i,a){var o=n.charAt(n.length-1),l=r._fullLayout._subplots[o+\"axis\"],c=n+\"ref\",u={};return i||(i=l[0]||(\"string\"==typeof a?a:a[0])),a||(a=i),l=l.concat(l.map((function(t){return t+\" domain\"}))),u[c]={valType:\"enumerated\",values:l.concat(a?\"string\"==typeof a?[a]:a:[]),dflt:i},s.coerce(t,e,u,c)},H.getRefType=function(t){return void 0===t?t:\"paper\"===t?\"paper\":\"pixel\"===t?\"pixel\":/( domain)$/.test(t)?\"domain\":\"range\"},H.coercePosition=function(t,e,r,n,i,a){var o,l;if(\"range\"!==H.getRefType(n))o=s.ensureNumber,l=r(i,a);else{var c=H.getFromId(e,n);l=r(i,a=c.fraction2r(a)),o=c.cleanPos}t[i]=o(l)},H.cleanPosition=function(t,e,r){return(\"paper\"===r||\"pixel\"===r?s.ensureNumber:H.getFromId(e,r).cleanPos)(t)},H.redrawComponents=function(t,e){e=e||H.listIds(t);var r=t._fullLayout;function n(n,i,a,s){for(var l=o.getComponentMethod(n,i),c={},u=0;ur&&f2e-6||((r-t._forceTick0)/t._minDtick%1+1.000001)%1>2e-6)&&(t._minDtick=0)):t._minDtick=0},H.saveRangeInitial=function(t,e){for(var r=H.list(t,\"\",!0),n=!1,i=0;i.3*h||u(n)||u(a))){var p=r.dtick/2;t+=t+p.8){var o=Number(r.substr(1));a.exactYears>.8&&o%12==0?t=H.tickIncrement(t,\"M6\",\"reverse\")+1.5*M:a.exactMonths>.8?t=H.tickIncrement(t,\"M1\",\"reverse\")+15.5*M:t-=S;var l=H.tickIncrement(t,r);if(l<=n)return l}return t}(y,t,v,c,a)),g=y,0;g<=u;)g=H.tickIncrement(g,v,!1,a);return{start:e.c2r(y,0,a),end:e.c2r(g,0,a),size:v,_dataSpan:u-c}},H.prepMinorTicks=function(t,e,r){if(!e.minor.dtick){delete t.dtick;var n,a=e.dtick&&i(e._tmin);if(a){var o=H.tickIncrement(e._tmin,e.dtick,!0);n=[e._tmin,.99*o+.01*e._tmin]}else{var l=s.simpleMap(e.range,e.r2l);n=[l[0],.8*l[0]+.2*l[1]]}if(t.range=s.simpleMap(n,e.l2r),t._isMinor=!0,H.prepTicks(t,r),a){var c=i(e.dtick),u=i(t.dtick),f=c?e.dtick:+e.dtick.substring(1),h=u?t.dtick:+t.dtick.substring(1);c&&u?$(f,h)?f===2*A&&h===2*M&&(t.dtick=A):f===2*A&&h===3*M?t.dtick=A:f!==A||(e._input.minor||{}).nticks?tt(f/h,2.5)?t.dtick=f/2:t.dtick=f:t.dtick=M:\"M\"===String(e.dtick).charAt(0)?u?t.dtick=\"M1\":$(f,h)?f>=12&&2===h&&(t.dtick=\"M3\"):t.dtick=e.dtick:\"L\"===String(t.dtick).charAt(0)?\"L\"===String(e.dtick).charAt(0)?$(f,h)||(t.dtick=tt(f/h,2.5)?e.dtick/2:e.dtick):t.dtick=\"D1\":\"D2\"===t.dtick&&+e.dtick>1&&(t.dtick=1)}t.range=e.range}void 0===e.minor._tick0Init&&(t.tick0=e.tick0)},H.prepTicks=function(t,e){var r=s.simpleMap(t.range,t.r2l,void 0,void 0,e);if(\"auto\"===t.tickmode||!t.dtick){var n,a=t.nticks;a||(\"category\"===t.type||\"multicategory\"===t.type?(n=t.tickfont?s.bigFont(t.tickfont.size||12):15,a=t._length/n):(n=\"y\"===t._id.charAt(0)?40:80,a=s.constrain(t._length/n,4,9)+1),\"radialaxis\"===t._name&&(a*=2)),t.minor&&\"array\"!==t.minor.tickmode||\"array\"===t.tickmode&&(a*=100),t._roughDTick=Math.abs(r[1]-r[0])/a,H.autoTicks(t,t._roughDTick),t._minDtick>0&&t.dtick<2*t._minDtick&&(t.dtick=t._minDtick,t.tick0=t.l2r(t._forceTick0))}\"period\"===t.ticklabelmode&&function(t){var e;function r(){return!(i(t.dtick)||\"M\"!==t.dtick.charAt(0))}var n=r(),a=H.getTickFormat(t);if(a){var o=t._dtickInit!==t.dtick;/%[fLQsSMX]/.test(a)||(/%[HI]/.test(a)?(e=E,o&&!n&&t.dtick=(O?0:1);z--){var D=!z;z?(t._dtickInit=t.dtick,t._tick0Init=t.tick0):(t.minor._dtickInit=t.minor.dtick,t.minor._tick0Init=t.minor.tick0);var R=z?t:s.extendFlat({},t,t.minor);if(D?H.prepMinorTicks(R,t,e):H.prepTicks(R,e),\"array\"!==R.tickmode){var F=Z(u),B=F[0],N=F[1],j=i(R.dtick),U=\"log\"===a&&!(j||\"L\"===R.dtick.charAt(0)),V=H.tickFirst(R,e);if(z){if(t._tmin=V,V=N:W<=N;W=H.tickIncrement(W,X,f,o)){if(z&&q++,R.rangebreaks&&!f){if(W=p)break}if(C.length>d||W===Y)break;Y=W;var J={value:W};z?(U&&W!==(0|W)&&(J.simpleLabel=!0),l>1&&q%l&&(J.skipLabel=!0),C.push(J)):(J.minor=!0,P.push(J))}}else z?(C=[],m=rt(t)):(P=[],L=rt(t))}if(O&&!(\"inside\"===t.minor.ticks&&\"outside\"===t.ticks||\"outside\"===t.minor.ticks&&\"inside\"===t.ticks)){for(var K=C.map((function(t){return t.value})),Q=[],$=0;$0?(a=n-1,o=n):(a=n,o=n);var s,l=t[a].value,c=t[o].value,u=Math.abs(c-l),f=r||u,h=0;f>=y?h=u>=y&&u<=g?u:v:r===b&&f>=_?h=u>=_&&u<=x?u:b:f>=k?h=u>=k&&u<=w?u:T:r===A&&f>=A?h=A:f>=M?h=M:r===S&&f>=S?h=S:r===E&&f>=E&&(h=E),h>=u&&(h=u,s=!0);var p=i+h;if(e.rangebreaks&&h>0){for(var d=0,m=0;m<84;m++){var L=(m+.5)/84;e.maskBreaks(i*(1-L)+L*p)!==I&&d++}(h*=d/84)||(t[n].drop=!0),s&&u>A&&(h=u)}(h>0||0===n)&&(t[n].periodX=i+h/2)}}(C,t,t._definedDelta),t.rangebreaks){var at=\"y\"===t._id.charAt(0),ot=1;\"auto\"===t.tickmode&&(ot=t.tickfont?t.tickfont.size:12);var st=NaN;for(r=C.length-1;r>-1;r--)if(C[r].drop)C.splice(r,1);else{C[r].value=Ct(C[r].value,t);var lt=t.c2p(C[r].value);(at?st>lt-ot:stp||utp&&(ct.periodX=p),ut10||\"01-01\"!==n.substr(5)?t._tickround=\"d\":t._tickround=+e.substr(1)%12==0?\"y\":\"m\";else if(e>=M&&a<=10||e>=15*M)t._tickround=\"d\";else if(e>=L&&a<=16||e>=E)t._tickround=\"M\";else if(e>=C&&a<=19||e>=L)t._tickround=\"S\";else{var o=t.l2r(r+e).replace(/^-/,\"\").length;t._tickround=Math.max(a,o)-20,t._tickround<0&&(t._tickround=4)}}else if(i(e)||\"L\"===e.charAt(0)){var s=t.range.map(t.r2d||Number);i(e)||(e=Number(e.substr(1))),t._tickround=2-Math.floor(Math.log(e)/Math.LN10+.01);var l=Math.max(Math.abs(s[0]),Math.abs(s[1])),c=Math.floor(Math.log(l)/Math.LN10+.01),u=void 0===t.minexponent?3:t.minexponent;Math.abs(c)>u&&(dt(t.exponentformat)&&!mt(c)?t._tickexponent=3*Math.round((c-1)/3):t._tickexponent=c)}else t._tickround=null}function ht(t,e,r){var n=t.tickfont||{};return{x:e,dx:0,dy:0,text:r||\"\",fontSize:n.size,font:n.family,fontColor:n.color}}H.autoTicks=function(t,e,r){var n;function a(t){return Math.pow(t,Math.floor(Math.log(e)/Math.LN10))}if(\"date\"===t.type){t.tick0=s.dateTick0(t.calendar,0);var o=2*e;if(o>v)e/=v,n=a(10),t.dtick=\"M\"+12*ut(e,n,nt);else if(o>T)e/=T,t.dtick=\"M\"+ut(e,1,it);else if(o>M){if(t.dtick=ut(e,M,t._hasDayOfWeekBreaks?[1,2,7,14]:ot),!r){var l=H.getTickFormat(t),c=\"period\"===t.ticklabelmode;c&&(t._rawTick0=t.tick0),/%[uVW]/.test(l)?t.tick0=s.dateTick0(t.calendar,2):t.tick0=s.dateTick0(t.calendar,1),c&&(t._dowTick0=t.tick0)}}else o>E?t.dtick=ut(e,E,it):o>L?t.dtick=ut(e,L,at):o>C?t.dtick=ut(e,C,at):(n=a(10),t.dtick=ut(e,n,nt))}else if(\"log\"===t.type){t.tick0=0;var u=s.simpleMap(t.range,t.r2l);if(t._isMinor&&(e*=1.5),e>.7)t.dtick=Math.ceil(e);else if(Math.abs(u[1]-u[0])<1){var f=1.5*Math.abs((u[1]-u[0])/e);e=Math.abs(Math.pow(10,u[1])-Math.pow(10,u[0]))/f,n=a(10),t.dtick=\"L\"+ut(e,n,nt)}else t.dtick=e>.3?\"D2\":\"D1\"}else\"category\"===t.type||\"multicategory\"===t.type?(t.tick0=0,t.dtick=Math.ceil(Math.max(e,1))):Lt(t)?(t.tick0=0,n=1,t.dtick=ut(e,n,ct)):(t.tick0=0,n=a(10),t.dtick=ut(e,n,nt));if(0===t.dtick&&(t.dtick=1),!i(t.dtick)&&\"string\"!=typeof t.dtick){var h=t.dtick;throw t.dtick=1,\"ax.dtick error: \"+String(h)}},H.tickIncrement=function(t,e,r,a){var o=r?-1:1;if(i(e))return s.increment(t,o*e);var l=e.charAt(0),c=o*Number(e.substr(1));if(\"M\"===l)return s.incrementMonth(t,c,a);if(\"L\"===l)return Math.log(Math.pow(10,t)+c)/Math.LN10;if(\"D\"===l){var u=\"D2\"===e?lt:st,f=t+.01*o,h=s.roundUp(s.mod(f,1),u,r);return Math.floor(f)+Math.log(n.round(Math.pow(10,h),1))/Math.LN10}throw\"unrecognized dtick \"+String(e)},H.tickFirst=function(t,e){var r=t.r2l||Number,a=s.simpleMap(t.range,r,void 0,void 0,e),o=a[1] \")}else t._prevDateHead=l,c+=\"
\"+l;e.text=c}(t,o,r,c):\"log\"===u?function(t,e,r,n,a){var o=t.dtick,l=e.x,c=t.tickformat,u=\"string\"==typeof o&&o.charAt(0);\"never\"===a&&(a=\"\");n&&\"L\"!==u&&(o=\"L3\",u=\"L\");if(c||\"L\"===u)e.text=gt(Math.pow(10,l),t,a,n);else if(i(o)||\"D\"===u&&s.mod(l+.01,1)<.1){var f=Math.round(l),h=Math.abs(f),p=t.exponentformat;\"power\"===p||dt(p)&&mt(f)?(e.text=0===f?1:1===f?\"10\":\"10\"+(f>1?\"\":P)+h+\"\",e.fontSize*=1.25):(\"e\"===p||\"E\"===p)&&h>2?e.text=\"1\"+p+(f>0?\"+\":P)+h:(e.text=gt(Math.pow(10,l),t,\"\",\"fakehover\"),\"D1\"===o&&\"y\"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if(\"D\"!==u)throw\"unrecognized dtick \"+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if(\"D1\"===t.dtick){var d=String(e.text).charAt(0);\"0\"!==d&&\"1\"!==d||(\"y\"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,m):\"category\"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r=\"\");e.text=String(r)}(t,o):\"multicategory\"===u?function(t,e,r){var n=Math.round(e.x),i=t._categories[n]||[],a=void 0===i[1]?\"\":String(i[1]),o=void 0===i[0]?\"\":String(i[0]);r?e.text=o+\" - \"+a:(e.text=a,e.text2=o)}(t,o,r):Lt(t)?function(t,e,r,n,i){if(\"radians\"!==t.thetaunit||r)e.text=gt(e.x,t,i,n);else{var a=e.x/180;if(0===a)e.text=\"0\";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){for(var r=1;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,i=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/i),Math.round(r/i)]}(a);if(o[1]>=100)e.text=gt(s.deg2rad(e.x),t,i,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text=\"\\u03c0\":e.text=o[0]+\"\\u03c0\":e.text=[\"\",o[0],\"\",\"\\u2044\",\"\",o[1],\"\",\"\\u03c0\"].join(\"\"),l&&(e.text=P+e.text)}}}}(t,o,r,c,m):function(t,e,r,n,i){\"never\"===i?i=\"\":\"all\"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i=\"hide\");e.text=gt(e.x,t,i,n)}(t,o,0,c,m),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),\"boundaries\"===t.tickson||t.showdividers){var g=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[g(o.x-.5),g(o.x+t.dtick-.5)]}return o},H.hoverLabelText=function(t,e,r){r&&(t=s.extendFlat({},t,{hoverformat:r}));var n=Array.isArray(e)?e[0]:e,i=Array.isArray(e)?e[1]:void 0;if(void 0!==i&&i!==n)return H.hoverLabelText(t,n,r)+\" - \"+H.hoverLabelText(t,i,r);var a=\"log\"===t.type&&n<=0,o=H.tickText(t,t.c2l(a?-n:n),\"hover\").text;return a?0===n?\"0\":P+o:o};var pt=[\"f\",\"p\",\"n\",\"\\u03bc\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\"];function dt(t){return\"SI\"===t||\"B\"===t}function mt(t){return t>14||t<-15}function gt(t,e,r,n){var a=t<0,o=e._tickround,l=r||e.exponentformat||\"B\",c=e._tickexponent,u=H.getTickFormat(e),f=e.separatethousands;if(n){var h={exponentformat:l,minexponent:e.minexponent,dtick:\"none\"===e.showexponent?e.dtick:i(t)&&Math.abs(t)||1,range:\"none\"===e.showexponent?e.range.map(e.r2d):[0,t||1]};ft(h),o=(Number(h._tickround)||0)+4,c=h._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,P);var p,d=Math.pow(10,-o)/2;if(\"none\"===l&&(c=0),(t=Math.abs(t))\"+p+\"\":\"B\"===l&&9===c?t+=\"B\":dt(l)&&(t+=pt[c/3+5]));return a?P+t:t}function vt(t,e){for(var r=[],n={},i=0;i1&&r=i.min&&t=0,a=u(t,e[1])<=0;return(r||i)&&(n||a)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case\"date\":case\"linear\":for(e=0;e=o(i)))){r=n;break}break;case\"log\":for(e=0;e0?r.bottom-f:0,h)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var p=[0,1];if(\"x\"===d){if(\"b\"===l?n[l]=e._depth:(n[l]=e._depth=Math.max(r.width>0?f-r.top:0,h),p.reverse()),r.width>0){var g=r.right-(e._offset+e._length);g>0&&(n.xr=1,n.r=g);var v=e._offset-r.left;v>0&&(n.xl=0,n.l=v)}}else if(\"l\"===l?n[l]=e._depth=Math.max(r.height>0?f-r.left:0,h):(n[l]=e._depth=Math.max(r.height>0?r.right-f:0,h),p.reverse()),r.height>0){var y=r.bottom-(e._offset+e._length);y>0&&(n.yb=0,n.b=y);var x=e._offset-r.top;x>0&&(n.yt=1,n.t=x)}n[m]=\"free\"===e.anchor?e.position:e._anchorAxis.domain[p[0]],e.title.text!==c._dfltTitle[d]&&(n[l]+=bt(e)+(e.title.standoff||0)),e.mirror&&\"free\"!==e.anchor&&((i={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(i[u]+=h),!0===e.mirror||\"ticks\"===e.mirror?i[m]=e._anchorAxis.domain[p[1]]:\"all\"!==e.mirror&&\"allticks\"!==e.mirror||(i[m]=[e._counterDomainMin,e._counterDomainMax][p[1]]))}it&&(s=o.getComponentMethod(\"rangeslider\",\"autoMarginOpts\")(t,e)),a.autoMargin(t,Tt(e),n),a.autoMargin(t,kt(e),i),a.autoMargin(t,At(e),s)})),r.skipTitle||it&&\"bottom\"===e.side||rt.push((function(){return function(t,e){var r,n=t._fullLayout,i=e._id,a=i.charAt(0),o=e.title.font.size;if(e.title.hasOwnProperty(\"standoff\"))r=e._depth+e.title.standoff+bt(e);else{var s=Pt(e);if(\"multicategory\"===e.type)r=e._depth;else{var l=1.5*o;s&&(l=.5*o,\"outside\"===e.ticks&&(l+=e.ticklen)),r=10+l+(e.linewidth?e.linewidth-1:0)}s||(r+=\"x\"===a?\"top\"===e.side?o*(e.showticklabels?1:0):o*(e.showticklabels?1.5:.5):\"right\"===e.side?o*(e.showticklabels?1:.5):o*(e.showticklabels?.5:0))}var c,f,p,d,m=H.getPxPosition(t,e);\"x\"===a?(f=e._offset+e._length/2,p=\"top\"===e.side?m-r:m+r):(p=e._offset+e._length/2,f=\"right\"===e.side?m+r:m-r,c={rotate:\"-90\",offset:0});if(\"multicategory\"!==e.type){var g=e._selections[e._id+\"tick\"];if(d={selection:g,side:e.side},g&&g.node()&&g.node().parentNode){var v=h.getTranslate(g.node().parentNode);d.offsetLeft=v.x,d.offsetTop=v.y}e.title.hasOwnProperty(\"standoff\")&&(d.pad=0)}return u.draw(t,i+\"title\",{propContainer:e,propName:e._name+\".title.text\",placeholder:n._dfltTitle[a],avoid:d,transform:c,attributes:{x:f,y:p,\"text-anchor\":\"middle\"}})}(t,e)})),s.syncOrAsync(rt)}}function at(t){var r=p+(t||\"tick\");return w[r]||(w[r]=function(t,e){var r,n,i,a;t._selections[e].size()?(r=1/0,n=-1/0,i=1/0,a=-1/0,t._selections[e].each((function(){var t=wt(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),i=Math.min(i,e.left),a=Math.max(a,e.right)}))):(r=0,n=0,i=0,a=0);return{top:r,bottom:n,left:i,right:a,height:n-r,width:a-i}}(e,r)),w[r]}},H.getTickSigns=function(t,e){var r=t._id.charAt(0),n={x:\"top\",y:\"right\"}[r],i=t.side===n?1:-1,a=[-1,1,i,-i];return\"inside\"!==(e?(t.minor||{}).ticks:t.ticks)==(\"x\"===r)&&(a=a.map((function(t){return-t}))),t.side&&a.push({l:-1,t:-1,r:1,b:1}[t.side.charAt(0)]),a},H.makeTransTickFn=function(t){return\"x\"===t._id.charAt(0)?function(e){return l(t._offset+t.l2p(e.x),0)}:function(e){return l(0,t._offset+t.l2p(e.x))}},H.makeTransTickLabelFn=function(t){var e=function(t){var e=t.ticklabelposition||\"\",r=function(t){return-1!==e.indexOf(t)},n=r(\"top\"),i=r(\"left\"),a=r(\"right\"),o=r(\"bottom\"),s=r(\"inside\"),l=o||i||n||a;if(!l&&!s)return[0,0];var c=t.side,u=l?(t.tickwidth||0)/2:0,f=3,h=t.tickfont?t.tickfont.size:12;(o||n)&&(u+=h*j,f+=(t.linewidth||0)/2);(i||a)&&(u+=(t.linewidth||0)/2,f+=3);s&&\"top\"===c&&(f-=h*(1-j));(i||n)&&(u=-u);\"bottom\"!==c&&\"right\"!==c||(f=-f);return[l?u:0,s?f:0]}(t),r=e[0],n=e[1];return\"x\"===t._id.charAt(0)?function(e){return l(r+t._offset+t.l2p(yt(e)),n)}:function(e){return l(n,r+t._offset+t.l2p(yt(e)))}},H.makeTickPath=function(t,e,r,n){n||(n={});var i=n.minor;if(i&&!t.minor)return\"\";var a=void 0!==n.len?n.len:i?t.minor.ticklen:t.ticklen,o=t._id.charAt(0),s=(t.linewidth||1)/2;return\"x\"===o?\"M0,\"+(e+s*r)+\"v\"+a*r:\"M\"+(e+s*r)+\",0h\"+a*r},H.makeLabelFns=function(t,e,r){var n=t.ticklabelposition||\"\",a=function(t){return-1!==n.indexOf(t)},o=a(\"top\"),l=a(\"left\"),c=a(\"right\"),u=a(\"bottom\")||l||o||c,f=a(\"inside\"),h=\"inside\"===n&&\"inside\"===t.ticks||!f&&\"outside\"===t.ticks&&\"boundaries\"!==t.tickson,p=0,d=0,m=h?t.ticklen:0;if(f?m*=-1:u&&(m=0),h&&(p+=m,r)){var g=s.deg2rad(r);p=m*Math.cos(g)+1,d=m*Math.sin(g)}t.showticklabels&&(h||t.showline)&&(p+=.2*t.tickfont.size);var v,y,x,b,_,w={labelStandoff:p+=(t.linewidth||1)/2*(f?-1:1),labelShift:d},T=0,k=t.side,A=t._id.charAt(0),M=t.tickangle;if(\"x\"===A)b=(_=!f&&\"bottom\"===k||f&&\"top\"===k)?1:-1,f&&(b*=-1),v=d*b,y=e+p*b,x=_?1:-.2,90===Math.abs(M)&&(f?x+=N:x=-90===M&&\"bottom\"===k?j:90===M&&\"top\"===k?N:.5,T=N/2*(M/90)),w.xFn=function(t){return t.dx+v+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*x},w.anchorFn=function(t,e){if(u){if(l)return\"end\";if(c)return\"start\"}return i(e)&&0!==e&&180!==e?e*b<0!==f?\"end\":\"start\":\"middle\"},w.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:\"top\"===t.side!==f?-n:0};else if(\"y\"===A){if(b=(_=!f&&\"left\"===k||f&&\"right\"===k)?1:-1,f&&(b*=-1),v=p,y=d*b,x=0,f||90!==Math.abs(M)||(x=-90===M&&\"left\"===k||90===M&&\"right\"===k?j:.5),f){var S=i(M)?+M:0;if(0!==S){var E=s.deg2rad(S);T=Math.abs(Math.sin(E))*j*b,x=0}}w.xFn=function(t){return t.dx+e-(v+t.fontSize*x)*b+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*N},w.anchorFn=function(t,e){return i(e)&&90===Math.abs(e)?\"middle\":_?\"end\":\"start\"},w.heightFn=function(e,r,n){return\"right\"===t.side&&(r*=-1),r<-30?-n:r<30?-.5*n:0}}return w},H.drawTicks=function(t,e,r){r=r||{};var i=e._id+\"tick\",a=[].concat(e.minor&&e.minor.ticks?r.vals.filter((function(t){return t.minor&&!t.noTick})):[]).concat(e.ticks?r.vals.filter((function(t){return!t.minor&&!t.noTick})):[]),o=r.layer.selectAll(\"path.\"+i).data(a,xt);o.exit().remove(),o.enter().append(\"path\").classed(i,1).classed(\"ticks\",1).classed(\"crisp\",!1!==r.crisp).each((function(t){return f.stroke(n.select(this),t.minor?e.minor.tickcolor:e.tickcolor)})).style(\"stroke-width\",(function(r){return h.crispRound(t,r.minor?e.minor.tickwidth:e.tickwidth,1)+\"px\"})).attr(\"d\",r.path).style(\"display\",null),It(e,[R]),o.attr(\"transform\",r.transFn)},H.drawGrid=function(t,e,r){r=r||{};var i=e._id+\"grid\",a=e.minor&&e.minor.showgrid,o=a?r.vals.filter((function(t){return t.minor})):[],s=e.showgrid?r.vals.filter((function(t){return!t.minor})):[],l=r.counterAxis;if(l&&H.shouldShowZeroLine(t,e,l))for(var c=\"array\"===e.tickmode,u=0;u=0;v--){var y=v?m:g;if(y){var x=y.selectAll(\"path.\"+i).data(v?s:o,xt);x.exit().remove(),x.enter().append(\"path\").classed(i,1).classed(\"crisp\",!1!==r.crisp),x.attr(\"transform\",r.transFn).attr(\"d\",r.path).each((function(t){return f.stroke(n.select(this),t.minor?e.minor.gridcolor:e.gridcolor||\"#ddd\")})).style(\"stroke-dasharray\",(function(t){return h.dashStyle(t.minor?e.minor.griddash:e.griddash,t.minor?e.minor.gridwidth:e.gridwidth)})).style(\"stroke-width\",(function(t){return(t.minor?d:e._gw)+\"px\"})).style(\"display\",null),\"function\"==typeof r.path&&x.attr(\"d\",r.path)}}It(e,[z,D])},H.drawZeroLine=function(t,e,r){r=r||r;var n=e._id+\"zl\",i=H.shouldShowZeroLine(t,e,r.counterAxis),a=r.layer.selectAll(\"path.\"+n).data(i?[{x:0,id:e._id}]:[]);a.exit().remove(),a.enter().append(\"path\").classed(n,1).classed(\"zl\",1).classed(\"crisp\",!1!==r.crisp).each((function(){r.layer.selectAll(\"path\").sort((function(t,e){return Y(t.id,e.id)}))})),a.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(f.stroke,e.zerolinecolor||f.defaultLine).style(\"stroke-width\",h.crispRound(t,e.zerolinewidth,e._gw||1)+\"px\").style(\"display\",null),It(e,[O])},H.drawLabels=function(t,e,r){r=r||{};var a=t._fullLayout,o=e._id,u=o.charAt(0),f=r.cls||o+\"tick\",p=r.vals.filter((function(t){return t.text})),d=r.labelFns,m=r.secondary?0:e.tickangle,g=(e._prevTickAngles||{})[f],v=r.layer.selectAll(\"g.\"+f).data(e.showticklabels?p:[],xt),y=[];function x(t,a){t.each((function(t){var o=n.select(this),s=o.select(\".text-math-group\"),u=d.anchorFn(t,a),f=r.transFn.call(o.node(),t)+(i(a)&&0!=+a?\" rotate(\"+a+\",\"+d.xFn(t)+\",\"+(d.yFn(t)-t.fontSize/2)+\")\":\"\"),p=c.lineCount(o),m=U*t.fontSize,g=d.heightFn(t,i(a)?+a:0,(p-1)*m);if(g&&(f+=l(0,g)),s.empty()){var v=o.select(\"text\");v.attr({transform:f,\"text-anchor\":u}),v.style(\"opacity\",1),e._adjustTickLabelsOverflow&&e._adjustTickLabelsOverflow()}else{var y=h.bBox(s.node()).width*{end:-.5,start:.5}[u];s.attr(\"transform\",f+l(y,0))}}))}v.enter().append(\"g\").classed(f,1).append(\"text\").attr(\"text-anchor\",\"middle\").each((function(e){var r=n.select(this),i=t._promises.length;r.call(c.positionText,d.xFn(e),d.yFn(e)).call(h.font,e.font,e.fontSize,e.fontColor).text(e.text).call(c.convertToTspans,t),t._promises[i]?y.push(t._promises.pop().then((function(){x(r,m)}))):x(r,m)})),It(e,[F]),v.exit().remove(),r.repositionOnUpdate&&v.each((function(t){n.select(this).select(\"text\").call(c.positionText,d.xFn(t),d.yFn(t))})),e._adjustTickLabelsOverflow=function(){var r=e.ticklabeloverflow;if(r&&\"allow\"!==r){var i=-1!==r.indexOf(\"hide\"),o=\"x\"===e._id.charAt(0),l=0,c=o?t._fullLayout.width:t._fullLayout.height;if(-1!==r.indexOf(\"domain\")){var u=s.simpleMap(e.range,e.r2l);l=e.l2p(u[0])+e._offset,c=e.l2p(u[1])+e._offset}var f=Math.min(l,c),p=Math.max(l,c),d=e.side,m=1/0,g=-1/0;for(var y in v.each((function(t){var r=n.select(this);if(r.select(\".text-math-group\").empty()){var a=h.bBox(r.node()),s=0;o?(a.right>p||a.leftp||a.top+(e.tickangle?0:t.fontSize/4)e[\"_visibleLabelMin_\"+r._id]?l.style(\"display\",\"none\"):\"tick\"!==t.K||i||l.style(\"display\",null)}))}))}))}))},x(v,g+1?g:m);var b=null;e._selections&&(e._selections[f]=v);var _=[function(){return y.length&&Promise.all(y)}];e.automargin&&a._redrawFromAutoMarginCount&&90===g?(b=90,_.push((function(){x(v,g)}))):_.push((function(){if(x(v,m),p.length&&\"x\"===u&&!i(m)&&(\"log\"!==e.type||\"D\"!==String(e.dtick).charAt(0))){b=0;var t,n=0,a=[];if(v.each((function(t){n=Math.max(n,t.fontSize);var r=e.l2p(t.x),i=wt(this),o=h.bBox(i.node());a.push({top:0,bottom:10,height:10,left:r-o.width/2,right:r+o.width/2+2,width:o.width+2})})),\"boundaries\"!==e.tickson&&!e.showdividers||r.secondary){var o=p.length,l=Math.abs((p[o-1].x-p[0].x)*e._m)/(o-1),c=e.ticklabelposition||\"\",f=function(t){return-1!==c.indexOf(t)},d=f(\"top\"),g=f(\"left\"),y=f(\"right\"),_=f(\"bottom\")||g||d||y?(e.tickwidth||0)+6:0,w=l<2.5*n||\"multicategory\"===e.type||\"realaxis\"===e._name;for(t=0;t1)for(n=1;n2*o}(i,e))return\"date\";var g=\"strict\"!==r.autotypenumbers;return function(t,e){for(var r=t.length,n=f(r),i=0,o=0,s={},u=0;u2*i}(i,g)?\"category\":function(t,e){for(var r=t.length,n=0;n=2){var s,c,u=\"\";if(2===o.length)for(s=0;s<2;s++)if(c=b(o[s])){u=g;break}var f=i(\"pattern\",u);if(f===g)for(s=0;s<2;s++)(c=b(o[s]))&&(e.bounds[s]=o[s]=c-1);if(f)for(s=0;s<2;s++)switch(c=o[s],f){case g:if(!n(c))return void(e.enabled=!1);if((c=+c)!==Math.floor(c)||c<0||c>=7)return void(e.enabled=!1);e.bounds[s]=o[s]=c;break;case v:if(!n(c))return void(e.enabled=!1);if((c=+c)<0||c>24)return void(e.enabled=!1);e.bounds[s]=o[s]=c}if(!1===r.autorange){var h=r.range;if(h[0]h[1])return void(e.enabled=!1)}else if(o[0]>h[0]&&o[1]n?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.ref2id=function(t){return!!/^[xyz]/.test(t)&&t.split(\" \")[0]},r.isLinked=function(t,e){return a(e,t._axisMatchGroups)||a(e,t._axisConstraintGroups)}},{\"../../registry\":638,\"./constants\":561}],559:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){if(\"category\"===e.type){var i,a=t.categoryarray,o=Array.isArray(a)&&a.length>0;o&&(i=\"array\");var s,l=r(\"categoryorder\",i);\"array\"===l&&(s=r(\"categoryarray\")),o||\"array\"!==l||(l=e.categoryorder=\"trace\"),\"trace\"===l?e._initialCategories=[]:\"array\"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,i,a=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;nn?i.substr(n):a.substr(r))+o:i+a+t*e:o}function g(t,e){for(var r=e._size,n=r.h/r.w,i={},a=Object.keys(t),o=0;oc*x)||T)for(r=0;rO&&FP&&(P=F);h/=(P-C)/(2*I),C=l.l2r(C),P=l.l2r(P),l.range=l._input.range=S=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function N(t,e,r,n,i){return t.append(\"path\").attr(\"class\",\"zoombox\").style({fill:e>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"transform\",c(r,n)).attr(\"d\",i+\"Z\")}function j(t,e,r){return t.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:f.background,stroke:f.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"transform\",c(e,r)).attr(\"d\",\"M0,0Z\")}function U(t,e,r,n,i,a){t.attr(\"d\",n+\"M\"+r.l+\",\"+r.t+\"v\"+r.h+\"h\"+r.w+\"v-\"+r.h+\"h-\"+r.w+\"Z\"),V(t,e,i,a)}function V(t,e,r,n){r||(t.transition().style(\"fill\",n>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),e.transition().style(\"opacity\",1).duration(200))}function H(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}function q(t){I&&t.data&&t._context.showTips&&(i.notifier(i._(t,\"Double-click to zoom back out\"),\"long\"),I=!1)}function G(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,P)/2);return\"M\"+(t.l-3.5)+\",\"+(t.t-.5+e)+\"h3v\"+-e+\"h\"+e+\"v-3h-\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.t-.5+e)+\"h-3v\"+-e+\"h\"+-e+\"v-3h\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.b+.5-e)+\"h-3v\"+e+\"h\"+-e+\"v3h\"+(e+3)+\"ZM\"+(t.l-3.5)+\",\"+(t.b+.5-e)+\"h3v\"+e+\"h\"+e+\"v3h-\"+(e+3)+\"Z\"}function Y(t,e,r,n,a){for(var o,s,l,c,u=!1,f={},h={},p=(a||{}).xaHash,d=(a||{}).yaHash,m=0;m=0)i._fullLayout._deactivateShape(i);else{var o=i._fullLayout.clickmode;if(H(i),2!==t||vt||qt(),gt)o.indexOf(\"select\")>-1&&S(r,i,J,K,e.id,Pt),o.indexOf(\"event\")>-1&&p.click(i,r,e.id);else if(1===t&&vt){var s=m?O:I,c=\"s\"===m||\"w\"===v?0:1,f=s._name+\".range[\"+c+\"]\",h=function(t,e){var r,n=t.range[e],i=Math.abs(n-t.range[1-e]);return\"date\"===t.type?n:\"log\"===t.type?(r=Math.ceil(Math.max(0,-Math.log(i)/Math.LN10))+3,a(\".\"+r+\"g\")(Math.pow(10,n))):(r=Math.floor(Math.log(Math.abs(n))/Math.LN10)-Math.floor(Math.log(i)/Math.LN10)+4,a(\".\"+String(r)+\"g\")(n))}(s,c),d=\"left\",g=\"middle\";if(s.fixedrange)return;m?(g=\"n\"===m?\"top\":\"bottom\",\"right\"===s.side&&(d=\"right\")):\"e\"===v&&(d=\"right\"),i._context.showAxisRangeEntryBoxes&&n.select(bt).call(u.makeEditable,{gd:i,immediate:!0,background:i._fullLayout.paper_bgcolor,text:String(h),fill:s.tickfont?s.tickfont.color:\"#444\",horizontalAlign:d,verticalAlign:g}).on(\"edit\",(function(t){var e=s.d2r(t);void 0!==e&&l.call(\"_guiRelayout\",i,f,e)}))}}}function zt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min(tt,pt*e+_t)),i=Math.max(0,Math.min(et,dt*r+wt)),a=Math.abs(n-_t),o=Math.abs(i-wt);function s(){St=\"\",Tt.r=Tt.l,Tt.t=Tt.b,Lt.attr(\"d\",\"M0,0Z\")}if(Tt.l=Math.min(_t,n),Tt.r=Math.max(_t,n),Tt.t=Math.min(wt,i),Tt.b=Math.max(wt,i),rt.isSubplotConstrained)a>P||o>P?(St=\"xy\",a/tt>o/et?(o=a*et/tt,wt>i?Tt.t=wt-o:Tt.b=wt+o):(a=o*tt/et,_t>n?Tt.l=_t-a:Tt.r=_t+a),Lt.attr(\"d\",G(Tt))):s();else if(nt.isSubplotConstrained)if(a>P||o>P){St=\"xy\";var l=Math.min(Tt.l/tt,(et-Tt.b)/et),c=Math.max(Tt.r/tt,(et-Tt.t)/et);Tt.l=l*tt,Tt.r=c*tt,Tt.b=(1-l)*et,Tt.t=(1-c)*et,Lt.attr(\"d\",G(Tt))}else s();else!at||o0){var u;if(nt.isSubplotConstrained||!it&&1===at.length){for(u=0;um[1]-1/4096&&(e.domain=s),i.noneOrAll(t.domain,e.domain,s)}return r(\"layer\"),e}},{\"../../lib\":503,\"fast-isnumeric\":190}],573:[function(t,e,r){\"use strict\";var n=t(\"./show_dflt\");e.exports=function(t,e,r,i,a){a||(a={});var o=a.tickSuffixDflt,s=n(t);r(\"tickprefix\")&&r(\"showtickprefix\",s),r(\"ticksuffix\",o)&&r(\"showticksuffix\",s)}},{\"./show_dflt\":577}],574:[function(t,e,r){\"use strict\";var n=t(\"../../constants/alignment\").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||\"center\"]);var i=[t.r2l(t.range[0]),t.r2l(t.range[1])],a=i[0]+(i[1]-i[0])*r;t.range=t._input.range=[t.l2r(a+(i[0]-a)*e),t.l2r(a+(i[1]-a)*e)],t.setScale()}},{\"../../constants/alignment\":471}],575:[function(t,e,r){\"use strict\";var n=t(\"polybooljs\"),i=t(\"../../registry\"),a=t(\"../../components/drawing\").dashStyle,o=t(\"../../components/color\"),s=t(\"../../components/fx\"),l=t(\"../../components/fx/helpers\").makeEventData,c=t(\"../../components/dragelement/helpers\"),u=c.freeMode,f=c.rectMode,h=c.drawMode,p=c.openMode,d=c.selectMode,m=t(\"../../components/shapes/draw_newshape/display_outlines\"),g=t(\"../../components/shapes/draw_newshape/helpers\").handleEllipse,v=t(\"../../components/shapes/draw_newshape/newshapes\"),y=t(\"../../lib\"),x=t(\"../../lib/polygon\"),b=t(\"../../lib/throttle\"),_=t(\"./axis_ids\").getFromId,w=t(\"../../lib/clear_gl_canvases\"),T=t(\"../../plot_api/subroutines\").redrawReglTraces,k=t(\"./constants\"),A=k.MINSELECT,M=x.filter,S=x.tester,E=t(\"./handle_outline\").clearSelect,L=t(\"./helpers\"),C=L.p2r,P=L.axValue,I=L.getTransform;function O(t,e,r,n,i,a,o){var s,l,c,u,f,h,d,g,v,y=e._hoverdata,x=e._fullLayout.clickmode.indexOf(\"event\")>-1,b=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(y)){F(t,e,a);var _=function(t,e){var r,n,i=t[0],a=-1,o=[];for(n=0;n0?function(t,e){var r,n,i,a=[];for(i=0;i0&&a.push(r);if(1===a.length&&a[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(i=0;i1)return!1;if((i+=r.selectedpoints.length)>1)return!1}return 1===i}(s)&&(h=j(_))){for(o&&o.remove(),v=0;v=0&&n._fullLayout._deactivateShape(n),h(e)){var a=n._fullLayout._zoomlayer.selectAll(\".select-outline-\"+r.id);if(a&&n._fullLayout._drawing){var o=v(a,t);o&&i.call(\"_guiRelayout\",n,{shapes:o}),n._fullLayout._drawing=!1}}r.selection={},r.selection.selectionDefs=t.selectionDefs=[],r.selection.mergedPolygons=t.mergedPolygons=[]}function N(t,e,r,n){var i,a,o,s=[],l=e.map((function(t){return t._id})),c=r.map((function(t){return t._id}));for(o=0;o0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(i)>-1}function U(t,e,r){var n,a,o,s;for(n=0;n=0)L._fullLayout._deactivateShape(L);else if(!_){var r=z.clickmode;b.done(mt).then((function(){if(b.clear(mt),2===t){for(ft.remove(),$=0;$-1&&O(e,L,i.xaxes,i.yaxes,i.subplot,i,ft),\"event\"===r&&L.emit(\"plotly_selected\",void 0);s.click(L,e)})).catch(y.error)}},i.doneFn=function(){dt.remove(),b.done(mt).then((function(){b.clear(mt),i.gd.emit(\"plotly_selected\",et),Q&&i.selectionDefs&&(Q.subtract=ut,i.selectionDefs.push(Q),i.mergedPolygons.length=0,[].push.apply(i.mergedPolygons,K)),i.doneFnCompleted&&i.doneFnCompleted(gt)})).catch(y.error),_&&B(i)}},clearSelect:E,clearSelectionsCache:B,selectOnClick:O}},{\"../../components/color\":366,\"../../components/dragelement/helpers\":384,\"../../components/drawing\":388,\"../../components/fx\":406,\"../../components/fx/helpers\":402,\"../../components/shapes/draw_newshape/display_outlines\":454,\"../../components/shapes/draw_newshape/helpers\":455,\"../../components/shapes/draw_newshape/newshapes\":456,\"../../lib\":503,\"../../lib/clear_gl_canvases\":487,\"../../lib/polygon\":515,\"../../lib/throttle\":530,\"../../plot_api/subroutines\":544,\"../../registry\":638,\"./axis_ids\":558,\"./constants\":561,\"./handle_outline\":565,\"./helpers\":566,polybooljs:254}],576:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"d3-time-format\").utcFormat,a=t(\"../../lib\"),o=a.numberFormat,s=t(\"fast-isnumeric\"),l=a.cleanNumber,c=a.ms2DateTime,u=a.dateTime2ms,f=a.ensureNumber,h=a.isArrayOrTypedArray,p=t(\"../../constants/numerical\"),d=p.FP_SAFE,m=p.BADNUM,g=p.LOG_CLIP,v=p.ONEWEEK,y=p.ONEDAY,x=p.ONEHOUR,b=p.ONEMIN,_=p.ONESEC,w=t(\"./axis_ids\"),T=t(\"./constants\"),k=T.HOUR_PATTERN,A=T.WEEKDAY_PATTERN;function M(t){return Math.pow(10,t)}function S(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||\"x\",p=r.charAt(0);function E(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],i=t.range[1];return.5*(n+i-2*g*Math.abs(n-i))}return m}function L(e,r,n,i){if((i||{}).msUTC&&s(e))return+e;var o=u(e,n||t.calendar);if(o===m){if(!s(e))return m;e=+e;var l=Math.floor(10*a.mod(e+.05,1)),c=Math.round(e-l/10);o=u(new Date(c))+l/10}return o}function C(e,r,n){return c(e,r,n||t.calendar)}function P(e){return t._categories[Math.round(e)]}function I(e){if(S(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push(\"number\"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return m}function O(e){if(t._categoriesMap)return t._categoriesMap[e]}function z(t){var e=O(t);return void 0!==e?e:s(t)?+t:void 0}function D(t){return s(t)?+t:O(t)}function R(t,e,r){return n.round(r+e*t,2)}function F(t,e,r){return(t-r)/e}var B=function(e){return s(e)?R(e,t._m,t._b):m},N=function(e){return F(e,t._m,t._b)};if(t.rangebreaks){var j=\"y\"===p;B=function(e){if(!s(e))return m;var r=t._rangebreaks.length;if(!r)return R(e,t._m,t._b);var n=j;t.range[0]>t.range[1]&&(n=!n);for(var i=n?-1:1,a=i*e,o=0,l=0;lu)){o=a<(c+u)/2?l:l+1;break}o=l+1}var f=t._B[o]||0;return isFinite(f)?R(e,t._m2,f):0},N=function(e){var r=t._rangebreaks.length;if(!r)return F(e,t._m,t._b);for(var n=0,i=0;it._rangebreaks[i].pmax&&(n=i+1);return F(e,t._m2,t._B[n])}}t.c2l=\"log\"===t.type?E:f,t.l2c=\"log\"===t.type?M:f,t.l2p=B,t.p2l=N,t.c2p=\"log\"===t.type?function(t,e){return B(E(t,e))}:B,t.p2c=\"log\"===t.type?function(t){return M(N(t))}:N,-1!==[\"linear\",\"-\"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=l,t.c2d=t.c2r=t.l2d=t.l2r=f,t.d2p=t.r2p=function(e){return t.l2p(l(e))},t.p2d=t.p2r=N,t.cleanPos=f):\"log\"===t.type?(t.d2r=t.d2l=function(t,e){return E(l(t),e)},t.r2d=t.r2c=function(t){return M(l(t))},t.d2c=t.r2l=l,t.c2d=t.l2r=f,t.c2r=E,t.l2d=M,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return M(N(t))},t.r2p=function(e){return t.l2p(l(e))},t.p2r=N,t.cleanPos=f):\"date\"===t.type?(t.d2r=t.r2d=a.identity,t.d2c=t.r2c=t.d2l=t.r2l=L,t.c2d=t.c2r=t.l2d=t.l2r=C,t.d2p=t.r2p=function(e,r,n){return t.l2p(L(e,0,n))},t.p2d=t.p2r=function(t,e,r){return C(N(t),e,r)},t.cleanPos=function(e){return a.cleanDate(e,m,t.calendar)}):\"category\"===t.type?(t.d2c=t.d2l=I,t.r2d=t.c2d=t.l2d=P,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=D(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=f,t.r2l=D,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return P(N(t))},t.r2p=t.d2p,t.p2r=N,t.cleanPos=function(t){return\"string\"==typeof t&&\"\"!==t?t:f(t)}):\"multicategory\"===t.type&&(t.r2d=t.c2d=t.l2d=P,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=z(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=O,t.l2r=t.c2r=f,t.r2l=z,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return P(N(t))},t.r2p=t.d2p,t.p2r=N,t.cleanPos=function(t){return Array.isArray(t)||\"string\"==typeof t&&\"\"!==t?t:f(t)},t.setupMultiCategory=function(n){var i,o,s=t._traceIndices,l=t._matchGroup;if(l&&0===t._categories.length)for(var c in l)if(c!==r){var u=e[w.id2name(c)];s=s.concat(u._traceIndices)}var f=[[0,{}],[0,{}]],d=[];for(i=0;id&&(o[n]=d),o[0]===o[1]){var c=Math.max(1,Math.abs(1e-6*o[0]));o[0]-=c,o[1]+=c}}else a.nestedProperty(t,e).set(i)},t.setScale=function(r){var n=e._size;if(t.overlaying){var i=w.getFromId({_fullLayout:e},t.overlaying);t.domain=i.domain}var a=r&&t._r?\"_r\":\"range\",o=t.calendar;t.cleanRange(a);var s,l,c=t.r2l(t[a][0],o),u=t.r2l(t[a][1],o),f=\"y\"===p;if((f?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(c-u),t._b=-t._m*u):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(u-c),t._b=-t._m*c),t._rangebreaks=[],t._lBreaks=0,t._m2=0,t._B=[],t.rangebreaks)&&(t._rangebreaks=t.locateBreaks(Math.min(c,u),Math.max(c,u)),t._rangebreaks.length)){for(s=0;su&&(h=!h),h&&t._rangebreaks.reverse();var d=h?-1:1;for(t._m2=d*t._length/(Math.abs(u-c)-t._lBreaks),t._B.push(-t._m2*(f?u:c)),s=0;si&&(i+=7,oi&&(i+=24,o=n&&o=n&&e=s.min&&(ts.max&&(s.max=n),i=!1)}i&&c.push({min:t,max:n})}};for(n=0;nr.duration?(!function(){for(var r={},n=0;n rect\").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(\".scatterlayer .trace\");n.selectAll(\".point\").call(o.setPointGroupScale,1,1),n.selectAll(\".textpoint\").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function g(e,r){var n=e.plotinfo,i=n.xaxis,l=n.yaxis,c=i._length,u=l._length,f=!!e.xr1,h=!!e.yr1,p=[];if(f){var d=a.simpleMap(e.xr0,i.r2l),m=a.simpleMap(e.xr1,i.r2l),g=d[1]-d[0],v=m[1]-m[0];p[0]=(d[0]*(1-r)+r*m[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*v/g),i.range[0]=i.l2r(d[0]*(1-r)+r*m[0]),i.range[1]=i.l2r(d[1]*(1-r)+r*m[1])}else p[0]=0,p[2]=c;if(h){var y=a.simpleMap(e.yr0,l.r2l),x=a.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=i.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,i,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[i._id,l._id]);var w=f?c/p[2]:1,T=h?u/p[3]:1,k=f?p[0]:0,A=h?p[1]:0,M=f?p[0]/p[2]*c:0,S=h?p[1]/p[3]*u:0,E=i._offset-M,L=l._offset-S;n.clipRect.call(o.setTranslate,k,A).call(o.setScale,1/w,1/T),n.plot.call(o.setTranslate,E,L).call(o.setScale,w,T),o.setPointGroupScale(n.zoomScalePts,1/w,1/T),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/T)}s.redrawComponents(t)}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../registry\":638,\"./axes\":554,\"@plotly/d3\":58}],582:[function(t,e,r){\"use strict\";var n=t(\"../../registry\").traceIs,i=t(\"./axis_autotype\");function a(t){return{v:\"x\",h:\"y\"}[t.orientation||\"v\"]}function o(t,e){var r=a(t),i=n(t,\"box-violin\"),o=n(t._fullInput||{},\"candlestick\");return i&&!o&&e===r&&void 0===t[r]&&void 0===t[r+\"0\"]}e.exports=function(t,e,r,s){r(\"autotypenumbers\",s.autotypenumbersDflt),\"-\"===r(\"type\",(s.splomStash||{}).type)&&(!function(t,e){if(\"-\"!==t.type)return;var r,s=t._id,l=s.charAt(0);-1!==s.indexOf(\"scene\")&&(s=l);var c=function(t,e,r){for(var n=0;n0&&(i[\"_\"+r+\"axes\"]||{})[e])return i;if((i[r+\"axis\"]||r)===e){if(o(i,r))return i;if((i[r]||[]).length||i[r+\"0\"])return i}}}(e,s,l);if(!c)return;if(\"histogram\"===c.type&&l==={v:\"y\",h:\"x\"}[c.orientation||\"v\"])return void(t.type=\"linear\");var u=l+\"calendar\",f=c[u],h={noMultiCategory:!n(c,\"cartesian\")||n(c,\"noMultiCategory\")};\"box\"===c.type&&c._hasPreCompStats&&l==={h:\"x\",v:\"y\"}[c.orientation||\"v\"]&&(h.noMultiCategory=!0);if(h.autotypenumbers=t.autotypenumbers,o(c,l)){var p=a(c),d=[];for(r=0;r0?\".\":\"\")+a;i.isPlainObject(o)?l(o,e,s,n+1):e(s,a,o)}}))}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){a(t,c,s.cache),s.check=function(){if(l){var e=a(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=[\"plotly_relayout\",\"plotly_redraw\",\"plotly_restyle\",\"plotly_update\",\"plotly_animatingframe\",\"plotly_afterplot\"],f=0;f0&&i<0&&(i+=360);var s=(i-n)/4;return{type:\"Polygon\",coordinates:[[[n,a],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[i,o],[i,a],[i-s,a],[i-2*s,a],[i-3*s,a],[n,a]]]}}e.exports=function(t){return new M(t)},S.plot=function(t,e,r){var n=this,i=e[this.id],a=[],o=!1;for(var s in w.layerNameToAdjective)if(\"frame\"!==s&&i[\"show\"+s]){o=!0;break}for(var l=0;l0&&a._module.calcGeoJSON(i,e)}if(!this.updateProjection(t,e)){this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),d.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var o=this.layers.frontplot.select(\".scatterlayer\");this.dataPoints.point=o.selectAll(\".point\"),this.dataPoints.text=o.selectAll(\"text\"),this.dataPaths.line=o.selectAll(\".js-line\");var s=this.layers.backplot.select(\".choroplethlayer\");this.dataPaths.choropleth=s.selectAll(\"path\"),this.render()}},S.updateProjection=function(t,e){var r=this.graphDiv,n=e[this.id],l=e._size,u=n.domain,f=n.projection,h=n.lonaxis,p=n.lataxis,d=h._ax,m=p._ax,v=this.projection=function(t){var e=t.projection,r=e.type,n=w.projNames[r];n=\"geo\"+c.titleCase(n);for(var l=(i[n]||s[n])(),u=t._isSatellite?180*Math.acos(1/e.distance)/Math.PI:t._isClipped?w.lonaxisSpan[r]/2:null,f=[\"center\",\"rotate\",\"parallels\",\"clipExtent\"],h=function(t){return t?l:[]},p=0;pu*Math.PI/180}return!1},l.getPath=function(){return a().projection(l)},l.getBounds=function(t){return l.getPath().bounds(t)},l.precision(w.precision),t._isSatellite&&l.tilt(e.tilt).distance(e.distance);u&&l.clipAngle(u-w.clipPad);return l}(n),y=[[l.l+l.w*u.x[0],l.t+l.h*(1-u.y[1])],[l.l+l.w*u.x[1],l.t+l.h*(1-u.y[0])]],x=n.center||{},b=f.rotation||{},_=h.range||[],T=p.range||[];if(n.fitbounds){d._length=y[1][0]-y[0][0],m._length=y[1][1]-y[0][1],d.range=g(r,d),m.range=g(r,m);var k=(d.range[0]+d.range[1])/2,A=(m.range[0]+m.range[1])/2;if(n._isScoped)x={lon:k,lat:A};else if(n._isClipped){x={lon:k,lat:A},b={lon:k,lat:A,roll:b.roll};var M=f.type,S=w.lonaxisSpan[M]/2||180,L=w.lataxisSpan[M]/2||90;_=[k-S,k+S],T=[A-L,A+L]}else x={lon:k,lat:A},b={lon:k,lat:b.lat,roll:b.roll}}v.center([x.lon-b.lon,x.lat-b.lat]).rotate([-b.lon,-b.lat,b.roll]).parallels(f.parallels);var C=E(_,T);v.fitExtent(y,C);var P=this.bounds=v.getBounds(C),I=this.fitScale=v.scale(),O=v.translate();if(n.fitbounds){var z=v.getBounds(E(d.range,m.range)),D=Math.min((P[1][0]-P[0][0])/(z[1][0]-z[0][0]),(P[1][1]-P[0][1])/(z[1][1]-z[0][1]));isFinite(D)?v.scale(D*I):c.warn(\"Something went wrong during\"+this.id+\"fitbounds computations.\")}else v.scale(f.scale*I);var R=this.midPt=[(P[0][0]+P[1][0])/2,(P[0][1]+P[1][1])/2];if(v.translate([O[0]+(R[0]-O[0]),O[1]+(R[1]-O[1])]).clipExtent(P),n._isAlbersUsa){var F=v([x.lon,x.lat]),B=v.translate();v.translate([B[0]-(F[0]-B[0]),B[1]-(F[1]-B[1])])}},S.updateBaseLayers=function(t,e){var r=this,i=r.topojson,a=r.layers,o=r.basePaths;function s(t){return\"lonaxis\"===t||\"lataxis\"===t}function l(t){return Boolean(w.lineLayers[t])}function c(t){return Boolean(w.fillLayers[t])}var u=(this.hasChoropleth?w.layersForChoropleth:w.layers).filter((function(t){return l(t)||c(t)?e[\"show\"+t]:!s(t)||e[t].showgrid})),p=r.framework.selectAll(\".layer\").data(u,String);p.exit().each((function(t){delete a[t],delete o[t],n.select(this).remove()})),p.enter().append(\"g\").attr(\"class\",(function(t){return\"layer \"+t})).each((function(t){var e=a[t]=n.select(this);\"bg\"===t?r.bgRect=e.append(\"rect\").style(\"pointer-events\",\"all\"):s(t)?o[t]=e.append(\"path\").style(\"fill\",\"none\"):\"backplot\"===t?e.append(\"g\").classed(\"choroplethlayer\",!0):\"frontplot\"===t?e.append(\"g\").classed(\"scatterlayer\",!0):l(t)?o[t]=e.append(\"path\").style(\"fill\",\"none\").style(\"stroke-miterlimit\",2):c(t)&&(o[t]=e.append(\"path\").style(\"stroke\",\"none\"))})),p.order(),p.each((function(r){var n=o[r],a=w.layerNameToAdjective[r];\"frame\"===r?n.datum(w.sphereSVG):l(r)||c(r)?n.datum(A(i,i.objects[r])):s(r)&&n.datum(function(t,e,r){var n,i,a,o=e[t],s=w.scopeDefaults[e.scope];\"lonaxis\"===t?(n=s.lonaxisRange,i=s.lataxisRange,a=function(t,e){return[t,e]}):\"lataxis\"===t&&(n=s.lataxisRange,i=s.lonaxisRange,a=function(t,e){return[e,t]});var l={type:\"linear\",range:[n[0],n[1]-1e-6],tick0:o.tick0,dtick:o.dtick};m.setConvert(l,r);var c=m.calcTicks(l);e.isScoped||\"lonaxis\"!==t||c.pop();for(var u=c.length,f=new Array(u),h=0;h-1&&b(n.event,i,[r.xaxis],[r.yaxis],r.id,f),s.indexOf(\"event\")>-1&&p.click(i,n.event))}))}function h(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},S.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,i=\"clip\"+r._uid+t.id;t.clipDef=r._clips.append(\"clipPath\").attr(\"id\",i),t.clipRect=t.clipDef.append(\"rect\"),t.framework=n.select(t.container).append(\"g\").attr(\"class\",\"geo \"+t.id).call(h.setClipUrl,i,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:\"x\",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:\"y\",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},m.setConvert(t.mockAxis,r)},S.saveViewInitial=function(t){var e,r=t.center||{},n=t.projection,i=n.rotation||{};this.viewInitial={fitbounds:t.fitbounds,\"projection.scale\":n.scale},e=t._isScoped?{\"center.lon\":r.lon,\"center.lat\":r.lat}:t._isClipped?{\"projection.rotation.lon\":i.lon,\"projection.rotation.lat\":i.lat}:{\"center.lon\":r.lon,\"center.lat\":r.lat,\"projection.rotation.lon\":i.lon},c.extendFlat(this.viewInitial,e)},S.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?u(r[0],r[1]):null}function i(t){return e.isLonLatOverEdges(t.lonlat)?\"none\":null}for(t in this.basePaths)this.basePaths[t].attr(\"d\",r);for(t in this.dataPaths)this.dataPaths[t].attr(\"d\",(function(t){return r(t.geojson)}));for(t in this.dataPoints)this.dataPoints[t].attr(\"display\",i).attr(\"transform\",n)}},{\"../../components/color\":366,\"../../components/dragelement\":385,\"../../components/drawing\":388,\"../../components/fx\":406,\"../../lib\":503,\"../../lib/geo_location_utils\":496,\"../../lib/topojson_utils\":532,\"../../registry\":638,\"../cartesian/autorange\":553,\"../cartesian/axes\":554,\"../cartesian/select\":575,\"../plots\":619,\"./constants\":587,\"./zoom\":592,\"@plotly/d3\":58,\"d3-geo\":114,\"d3-geo-projection\":113,\"topojson-client\":315}],589:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getSubplotCalcData,i=t(\"../../lib\").counterRegex,a=t(\"./geo\"),o=\"geo\",s=i(o),l={};l.geo={valType:\"subplotid\",dflt:o,editType:\"calc\"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.geo,s=0;s0&&P<0&&(P+=360);var I,O,z,D=(C+P)/2;if(!p){var R=d?f.projRotate:[D,0,0];I=r(\"projection.rotation.lon\",R[0]),r(\"projection.rotation.lat\",R[1]),r(\"projection.rotation.roll\",R[2]),r(\"showcoastlines\",!d&&x)&&(r(\"coastlinecolor\"),r(\"coastlinewidth\")),r(\"showocean\",!!x&&void 0)&&r(\"oceancolor\")}(p?(O=-96.6,z=38.7):(O=d?D:I,z=(L[0]+L[1])/2),r(\"center.lon\",O),r(\"center.lat\",z),m&&(r(\"projection.tilt\"),r(\"projection.distance\")),g)&&r(\"projection.parallels\",f.projParallels||[0,60]);r(\"projection.scale\"),r(\"showland\",!!x&&void 0)&&r(\"landcolor\"),r(\"showlakes\",!!x&&void 0)&&r(\"lakecolor\"),r(\"showrivers\",!!x&&void 0)&&(r(\"rivercolor\"),r(\"riverwidth\")),r(\"showcountries\",d&&\"usa\"!==u&&x)&&(r(\"countrycolor\"),r(\"countrywidth\")),(\"usa\"===u||\"north america\"===u&&50===c)&&(r(\"showsubunits\",x),r(\"subunitcolor\"),r(\"subunitwidth\")),d||r(\"showframe\",x)&&(r(\"framecolor\"),r(\"framewidth\")),r(\"bgcolor\"),r(\"fitbounds\")&&(delete e.projection.scale,d?(delete e.center.lon,delete e.center.lat):v?(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon,delete e.projection.rotation.lat,delete e.lonaxis.range,delete e.lataxis.range):(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon))}e.exports=function(t,e,r){i(t,e,r,{type:\"geo\",attributes:s,handleDefaults:c,fullData:r,partition:\"y\"})}},{\"../../lib\":503,\"../get_data\":593,\"../subplot_defaults\":632,\"./constants\":587,\"./layout_attributes\":590}],592:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=t(\"../../registry\"),o=Math.PI/180,s=180/Math.PI,l={cursor:\"pointer\"},c={cursor:\"auto\"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function f(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],f={},h={};function p(t,e){f[n+\".\"+t]=i.nestedProperty(l,t).get(),a.call(\"_storeDirectGUIEdit\",s,c._preGUI,f);var r=i.nestedProperty(u,t);r.get()!==e&&(r.set(e),i.nestedProperty(l,t).set(e),h[n+\".\"+t]=e)}r(p),p(\"projection.scale\",e.scale()/t.fitScale),p(\"fitbounds\",!1),o.emit(\"plotly_relayout\",h)}function h(t,e){var r=u(0,e);function i(r){var n=e.invert(t.midPt);r(\"center.lon\",n[0]),r(\"center.lat\",n[1])}return r.on(\"zoomstart\",(function(){n.select(this).style(l)})).on(\"zoom\",(function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":r[0],\"geo.center.lat\":r[1]})})).on(\"zoomend\",(function(){n.select(this).style(c),f(t,e,i)})),r}function p(t,e){var r,i,a,o,s,h,p,d,m,g=u(0,e);function v(t){return e.invert(t)}function y(r){var n=e.rotate(),i=e.invert(t.midPt);r(\"projection.rotation.lon\",-n[0]),r(\"center.lon\",i[0]),r(\"center.lat\",i[1])}return g.on(\"zoomstart\",(function(){n.select(this).style(l),r=n.mouse(this),i=e.rotate(),a=e.translate(),o=i,s=v(r)})).on(\"zoom\",(function(){if(h=n.mouse(this),function(t){var r=v(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>2||Math.abs(n[1]-t[1])>2}(r))return g.scale(e.scale()),void g.translate(e.translate());e.scale(n.event.scale),e.translate([a[0],n.event.translate[1]]),s?v(h)&&(d=v(h),p=[o[0]+(d[0]-s[0]),i[1],i[2]],e.rotate(p),o=p):s=v(r=h),m=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":c[0],\"geo.center.lat\":c[1],\"geo.projection.rotation.lon\":-l[0]})})).on(\"zoomend\",(function(){n.select(this).style(c),m&&f(t,e,y)})),g}function d(t,e){var r,i={r:e.rotate(),k:e.scale()},a=u(0,e),o=function(t){var e=0,r=arguments.length,i=[];for(;++ed?(a=(f>0?90:-90)-p,i=0):(a=Math.asin(f/d)*s-p,i=Math.sqrt(d*d-f*f));var m=180-a-2*p,g=(Math.atan2(h,u)-Math.atan2(c,i))*s,v=(Math.atan2(h,u)-Math.atan2(c,-i))*s;return b(r[0],r[1],a,g)<=b(r[0],r[1],m,v)?[a,g,r[2]]:[m,v,r[2]]}function b(t,e,r,n){var i=_(r-t),a=_(n-e);return Math.sqrt(i*i+a*a)}function _(t){return(t%360+540)%360-180}function w(t,e,r){var n=r*o,i=t.slice(),a=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return i[a]=t[a]*l-t[s]*c,i[s]=t[s]*l+t[a]*c,i}function T(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}function k(t,e){for(var r=0,n=0,i=t.length;nMath.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(a)*_*(s>=0?1:-1),c.boxEnd[1]l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(a>=0?1:-1),c.boxEnd[0]l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(a=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],a||s?(a&&(g(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(g(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case\"pan\":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=i),Math.abs(c.dragStart[0]-n).999&&(m=\"turntable\"):m=\"turntable\")}else m=\"turntable\";r(\"dragmode\",m),r(\"hovermode\",n.getDfltFromLayout(\"hovermode\"))}e.exports=function(t,e,r){var i=e._basePlotModules.length>1;o(t,e,r,{type:\"gl3d\",attributes:l,handleDefaults:u,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!i)return n.validate(t[e],l[e])?t[e]:void 0},autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{\"../../../components/color\":366,\"../../../lib\":503,\"../../../registry\":638,\"../../get_data\":593,\"../../subplot_defaults\":632,\"./axis_defaults\":601,\"./layout_attributes\":604}],604:[function(t,e,r){\"use strict\";var n=t(\"./axis_attributes\"),i=t(\"../../domain\").attributes,a=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../lib\").counterRegex;function s(t,e,r){return{x:{valType:\"number\",dflt:t,editType:\"camera\"},y:{valType:\"number\",dflt:e,editType:\"camera\"},z:{valType:\"number\",dflt:r,editType:\"camera\"},editType:\"camera\"}}e.exports={_arrayAttrRegexps:[o(\"scene\",\".annotations\",!0)],bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"plot\"},camera:{up:a(s(0,0,1),{}),center:a(s(0,0,0),{}),eye:a(s(1.25,1.25,1.25),{}),projection:{type:{valType:\"enumerated\",values:[\"perspective\",\"orthographic\"],dflt:\"perspective\",editType:\"calc\"},editType:\"calc\"},editType:\"camera\"},domain:i({name:\"scene\",editType:\"plot\"}),aspectmode:{valType:\"enumerated\",values:[\"auto\",\"cube\",\"data\",\"manual\"],dflt:\"auto\",editType:\"plot\",impliedEdits:{\"aspectratio.x\":void 0,\"aspectratio.y\":void 0,\"aspectratio.z\":void 0}},aspectratio:{x:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},y:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},z:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},editType:\"plot\",impliedEdits:{aspectmode:\"manual\"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:\"enumerated\",values:[\"orbit\",\"turntable\",\"zoom\",\"pan\",!1],editType:\"plot\"},hovermode:{valType:\"enumerated\",values:[\"closest\",!1],dflt:\"closest\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"plot\",_deprecated:{cameraposition:{valType:\"info_array\",editType:\"camera\"}}}},{\"../../../lib\":503,\"../../../lib/extend\":493,\"../../domain\":584,\"./axis_attributes\":600}],605:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),i=[\"xaxis\",\"yaxis\",\"zaxis\"];function a(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}a.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[i[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new a;return e.merge(t),e}},{\"../../../lib/str2rgbarray\":528}],606:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[a[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var f=u.tickmode;if(\"auto\"===u.tickmode){u.tickmode=\"linear\";var h=u.nticks||i.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/h)}for(var p=n.calcTicks(u,{msUTC:!0}),d=0;d/g,\" \"));l[c]=p,u.tickmode=f}}e.ticks=l;for(c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],i=new Array(n.length),a=0;ar.deltaY?1.1:1/1.1,a=t.glplot.getAspectratio();t.glplot.setAspectratio({x:n*a.x,y:n*a.y,z:n*a.z})}i(t)}}),!!c&&{passive:!1}),t.glplot.canvas.addEventListener(\"mousemove\",(function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e=n();t.graphDiv.emit(\"plotly_relayouting\",e)}})),t.staticMode||t.glplot.canvas.addEventListener(\"webglcontextlost\",(function(r){e&&e.emit&&e.emit(\"plotly_webglcontextlost\",{event:r,layer:t.id})}),!1)),t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(){t.render()},!0},w.render=function(){var t,e=this,r=e.graphDiv,n=e.svgContainer,i=e.container.getBoundingClientRect();r._fullLayout._calcInverseTransform(r);var a=r._fullLayout._invScaleX,o=r._fullLayout._invScaleY,s=i.width*a,l=i.height*o;n.setAttributeNS(null,\"viewBox\",\"0 0 \"+s+\" \"+l),n.setAttributeNS(null,\"width\",s),n.setAttributeNS(null,\"height\",l),b(e),e.glplot.axes.update(e.axesOptions);for(var c=Object.keys(e.traces),u=null,h=e.glplot.selection,m=0;m\")):\"isosurface\"===t.type||\"volume\"===t.type?(T.valueLabel=p.hoverLabelText(e._mockAxis,e._mockAxis.d2l(h.traceCoordinate[3]),t.valuehoverformat),S.push(\"value: \"+T.valueLabel),h.textLabel&&S.push(h.textLabel),x=S.join(\"
\")):x=h.textLabel;var E={x:h.traceCoordinate[0],y:h.traceCoordinate[1],z:h.traceCoordinate[2],data:_._input,fullData:_,curveNumber:_.index,pointNumber:w};d.appendArrayPointValue(E,_,w),t._module.eventData&&(E=_._module.eventData(E,h,_,{},w));var L={points:[E]};if(e.fullSceneLayout.hovermode){var C=[];d.loneHover({trace:_,x:(.5+.5*y[0]/y[3])*s,y:(.5-.5*y[1]/y[3])*l,xLabel:T.xLabel,yLabel:T.yLabel,zLabel:T.zLabel,text:x,name:u.name,color:d.castHoverOption(_,w,\"bgcolor\")||u.color,borderColor:d.castHoverOption(_,w,\"bordercolor\"),fontFamily:d.castHoverOption(_,w,\"font.family\"),fontSize:d.castHoverOption(_,w,\"font.size\"),fontColor:d.castHoverOption(_,w,\"font.color\"),nameLength:d.castHoverOption(_,w,\"namelength\"),textAlign:d.castHoverOption(_,w,\"align\"),hovertemplate:f.castOption(_,w,\"hovertemplate\"),hovertemplateLabels:f.extendFlat({},E,T),eventData:[E]},{container:n,gd:r,inOut_bbox:C}),E.bbox=C[0]}h.buttons&&h.distance<5?r.emit(\"plotly_click\",L):r.emit(\"plotly_hover\",L),this.oldEventData=L}else d.loneUnhover(n),this.oldEventData&&r.emit(\"plotly_unhover\",this.oldEventData),this.oldEventData=void 0;e.drawAnnotations(e)},w.recoverContext=function(){var t=this;t.glplot.dispose();var e=function(){t.glplot.gl.isContextLost()?requestAnimationFrame(e):t.initializeGLPlot()?t.plot.apply(t,t.plotArgs):f.error(\"Catastrophic and unrecoverable WebGL error. Context lost.\")};requestAnimationFrame(e)};var k=[\"xaxis\",\"yaxis\",\"zaxis\"];function A(t,e,r){for(var n=t.fullSceneLayout,i=0;i<3;i++){var a=k[i],o=a.charAt(0),s=n[a],l=e[o],c=e[o+\"calendar\"],u=e[\"_\"+o+\"length\"];if(f.isArrayOrTypedArray(l))for(var h,p=0;p<(u||l.length);p++)if(f.isArrayOrTypedArray(l[p]))for(var d=0;dg[1][a])g[0][a]=-1,g[1][a]=1;else{var L=g[1][a]-g[0][a];g[0][a]-=L/32,g[1][a]+=L/32}if(\"reversed\"===s.autorange){var C=g[0][a];g[0][a]=g[1][a],g[1][a]=C}}else{var P=s.range;g[0][a]=s.r2l(P[0]),g[1][a]=s.r2l(P[1])}g[0][a]===g[1][a]&&(g[0][a]-=1,g[1][a]+=1),v[a]=g[1][a]-g[0][a],this.glplot.setBounds(a,{min:g[0][a]*h[a],max:g[1][a]*h[a]})}var I=c.aspectmode;if(\"cube\"===I)d=[1,1,1];else if(\"manual\"===I){var O=c.aspectratio;d=[O.x,O.y,O.z]}else{if(\"auto\"!==I&&\"data\"!==I)throw new Error(\"scene.js aspectRatio was not one of the enumerated types\");var z=[1,1,1];for(a=0;a<3;++a){var D=y[l=(s=c[k[a]]).type];z[a]=Math.pow(D.acc,1/D.count)/h[a]}d=\"data\"===I||Math.max.apply(null,z)/Math.min.apply(null,z)<=4?z:[1,1,1]}c.aspectratio.x=u.aspectratio.x=d[0],c.aspectratio.y=u.aspectratio.y=d[1],c.aspectratio.z=u.aspectratio.z=d[2],this.glplot.setAspectratio(c.aspectratio),this.viewInitial.aspectratio||(this.viewInitial.aspectratio={x:c.aspectratio.x,y:c.aspectratio.y,z:c.aspectratio.z}),this.viewInitial.aspectmode||(this.viewInitial.aspectmode=c.aspectmode);var R=c.domain||null,F=e._size||null;if(R&&F){var B=this.container.style;B.position=\"absolute\",B.left=F.l+R.x[0]*F.w+\"px\",B.top=F.t+(1-R.y[1])*F.h+\"px\",B.width=F.w*(R.x[1]-R.x[0])+\"px\",B.height=F.h*(R.y[1]-R.y[0])+\"px\"}this.glplot.redraw()}},w.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},w.getCamera=function(){var t;return this.camera.view.recalcMatrix(this.camera.view.lastT()),{up:{x:(t=this.camera).up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?\"orthographic\":\"perspective\"}}},w.setViewport=function(t){var e,r=t.camera;this.camera.lookAt.apply(this,[[(e=r).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]),this.glplot.setAspectratio(t.aspectratio),\"orthographic\"===r.projection.type!==this.camera._ortho&&(this.glplot.redraw(),this.glplot.clearRGBA(),this.glplot.dispose(),this.initializeGLPlot())},w.isCameraChanged=function(t){var e=this.getCamera(),r=f.nestedProperty(t,this.id+\".camera\").get();function n(t,e,r,n){var i=[\"up\",\"center\",\"eye\"],a=[\"x\",\"y\",\"z\"];return e[i[r]]&&t[i[r]][a[n]]===e[i[r]][a[n]]}var i=!1;if(void 0===r)i=!0;else{for(var a=0;a<3;a++)for(var o=0;o<3;o++)if(!n(e,r,a,o)){i=!0;break}(!r.projection||e.projection&&e.projection.type!==r.projection.type)&&(i=!0)}return i},w.isAspectChanged=function(t){var e=this.glplot.getAspectratio(),r=f.nestedProperty(t,this.id+\".aspectratio\").get();return void 0===r||r.x!==e.x||r.y!==e.y||r.z!==e.z},w.saveLayout=function(t){var e,r,n,i,a,o,s=this.fullLayout,l=this.isCameraChanged(t),c=this.isAspectChanged(t),h=l||c;if(h){var p={};if(l&&(e=this.getCamera(),n=(r=f.nestedProperty(t,this.id+\".camera\")).get(),p[this.id+\".camera\"]=n),c&&(i=this.glplot.getAspectratio(),o=(a=f.nestedProperty(t,this.id+\".aspectratio\")).get(),p[this.id+\".aspectratio\"]=o),u.call(\"_storeDirectGUIEdit\",t,s._preGUI,p),l)r.set(e),f.nestedProperty(s,this.id+\".camera\").set(e);if(c)a.set(i),f.nestedProperty(s,this.id+\".aspectratio\").set(i),this.glplot.redraw()}return h},w.updateFx=function(t,e){var r=this.camera;if(r)if(\"orbit\"===t)r.mode=\"orbit\",r.keyBindingMode=\"rotate\";else if(\"turntable\"===t){r.up=[0,0,1],r.mode=\"turntable\",r.keyBindingMode=\"rotate\";var n=this.graphDiv,i=n._fullLayout,a=this.fullSceneLayout.camera,o=a.up.x,s=a.up.y,l=a.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var c=this.id+\".camera.up\",h={x:0,y:0,z:1},p={};p[c]=h;var d=n.layout;u.call(\"_storeDirectGUIEdit\",d,i._preGUI,p),a.up=h,f.nestedProperty(d,c).set(h)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},w.toImage=function(t){t||(t=\"png\"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,i=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var a=new Uint8Array(r*i*4);e.readPixels(0,0,r,i,e.RGBA,e.UNSIGNED_BYTE,a),function(t,e,r){for(var n=0,i=r-1;n0)for(var s=255/o,l=0;l<3;++l)t[a+l]=Math.min(s*t[a+l],255)}}(a,r,i);var o=document.createElement(\"canvas\");o.width=r,o.height=i;var s,l=o.getContext(\"2d\",{willReadFrequently:!0}),c=l.createImageData(r,i);switch(c.data.set(a),l.putImageData(c,0,0),t){case\"jpeg\":s=o.toDataURL(\"image/jpeg\");break;case\"webp\":s=o.toDataURL(\"image/webp\");break;default:s=o.toDataURL(\"image/png\")}return this.staticMode&&this.container.removeChild(n),s},w.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[k[t]];p.setConvert(e,this.fullLayout),e.setScale=f.noop}},w.make4thDimension=function(){var t=this.graphDiv._fullLayout;this._mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},p.setConvert(this._mockAxis,t)},e.exports=_},{\"../../../stackgl_modules\":1124,\"../../components/fx\":406,\"../../lib\":503,\"../../lib/show_no_webgl_msg\":525,\"../../lib/str2rgbarray\":528,\"../../plots/cartesian/axes\":554,\"../../registry\":638,\"./layout/convert\":602,\"./layout/spikes\":605,\"./layout/tick_marks\":606,\"./project\":607,\"has-passive-events\":229,\"webgl-context\":331}],609:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){n=n||t.length;for(var i=new Array(n),a=0;aOpenStreetMap contributors',a=['\\xa9 Carto',i].join(\" \"),o=['Map tiles by Stamen Design','under CC BY 3.0',\"|\",'Data by OpenStreetMap contributors','under ODbL'].join(\" \"),s={\"open-street-map\":{id:\"osm\",version:8,sources:{\"plotly-osm-tiles\":{type:\"raster\",attribution:i,tiles:[\"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png\",\"https://b.tile.openstreetmap.org/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-osm-tiles\",type:\"raster\",source:\"plotly-osm-tiles\",minzoom:0,maxzoom:22}]},\"white-bg\":{id:\"white-bg\",version:8,sources:{},layers:[{id:\"white-bg\",type:\"background\",paint:{\"background-color\":\"#FFFFFF\"},minzoom:0,maxzoom:22}]},\"carto-positron\":{id:\"carto-positron\",version:8,sources:{\"plotly-carto-positron\":{type:\"raster\",attribution:a,tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-positron\",type:\"raster\",source:\"plotly-carto-positron\",minzoom:0,maxzoom:22}]},\"carto-darkmatter\":{id:\"carto-darkmatter\",version:8,sources:{\"plotly-carto-darkmatter\":{type:\"raster\",attribution:a,tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-darkmatter\",type:\"raster\",source:\"plotly-carto-darkmatter\",minzoom:0,maxzoom:22}]},\"stamen-terrain\":{id:\"stamen-terrain\",version:8,sources:{\"plotly-stamen-terrain\":{type:\"raster\",attribution:o,tiles:[\"https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-terrain\",type:\"raster\",source:\"plotly-stamen-terrain\",minzoom:0,maxzoom:22}]},\"stamen-toner\":{id:\"stamen-toner\",version:8,sources:{\"plotly-stamen-toner\":{type:\"raster\",attribution:o,tiles:[\"https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-toner\",type:\"raster\",source:\"plotly-stamen-toner\",minzoom:0,maxzoom:22}]},\"stamen-watercolor\":{id:\"stamen-watercolor\",version:8,sources:{\"plotly-stamen-watercolor\":{type:\"raster\",attribution:['Map tiles by Stamen Design','under CC BY 3.0',\"|\",'Data by OpenStreetMap contributors','under CC BY SA'].join(\" \"),tiles:[\"https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-watercolor\",type:\"raster\",source:\"plotly-stamen-watercolor\",minzoom:0,maxzoom:22}]}},l=n(s);e.exports={requiredVersion:\"1.10.1\",styleUrlPrefix:\"mapbox://styles/mapbox/\",styleUrlSuffix:\"v9\",styleValuesMapbox:[\"basic\",\"streets\",\"outdoors\",\"light\",\"dark\",\"satellite\",\"satellite-streets\"],styleValueDflt:\"basic\",stylesNonMapbox:s,styleValuesNonMapbox:l,traceLayerPrefix:\"plotly-trace-layer-\",layoutLayerPrefix:\"plotly-layout-layer-\",wrongVersionErrorMsg:[\"Your custom plotly.js bundle is not using the correct mapbox-gl version\",\"Please install mapbox-gl@1.10.1.\"].join(\"\\n\"),noAccessTokenErrorMsg:[\"Missing Mapbox access token.\",\"Mapbox trace type require a Mapbox access token to be registered.\",\"For example:\",\" Plotly.newPlot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });\",\"More info here: https://www.mapbox.com/help/define-access-token/\"].join(\"\\n\"),missingStyleErrorMsg:[\"No valid mapbox style found, please set `mapbox.style` to one of:\",l.join(\", \"),\"or register a Mapbox access token to use a Mapbox-served style.\"].join(\"\\n\"),multipleTokensErrorMsg:[\"Set multiple mapbox access token across different mapbox subplot,\",\"using first token found as mapbox-gl does not allow multipleaccess tokens on the same page.\"].join(\"\\n\"),mapOnErrorMsg:\"Mapbox error.\",mapboxLogo:{path0:\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\",path1:\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\",path2:\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\",polygon:\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34\"},styleRules:{map:\"overflow:hidden;position:relative;\",\"missing-css\":\"display:none;\",canary:\"background-color:salmon;\",\"ctrl-bottom-left\":\"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;\",\"ctrl-bottom-right\":\"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;\",ctrl:\"clear: both; pointer-events: auto; transform: translate(0, 0);\",\"ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner\":\"display: none;\",\"ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner\":\"display: block; margin-top:2px\",\"ctrl-attrib.mapboxgl-compact:hover\":\"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;\",\"ctrl-attrib.mapboxgl-compact::after\":'content: \"\"; cursor: pointer; position: absolute; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"%3E %3Cpath fill=\"%23333333\" fill-rule=\"evenodd\" d=\"M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0\"/%3E %3C/svg%3E\\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',\"ctrl-attrib.mapboxgl-compact\":\"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;\",\"ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; right: 0\",\"ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; left: 0\",\"ctrl-bottom-left .mapboxgl-ctrl\":\"margin: 0 0 10px 10px; float: left;\",\"ctrl-bottom-right .mapboxgl-ctrl\":\"margin: 0 10px 10px 0; float: right;\",\"ctrl-attrib\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a:hover\":\"color: inherit; text-decoration: underline;\",\"ctrl-attrib .mapbox-improve-map\":\"font-weight: bold; margin-left: 2px;\",\"attrib-empty\":\"display: none;\",\"ctrl-logo\":'display:block; width: 21px; height: 21px; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3C?xml version=\"1.0\" encoding=\"utf-8\"?%3E %3Csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 21 21\" style=\"enable-background:new 0 0 21 21;\" xml:space=\"preserve\"%3E%3Cg transform=\"translate(0,0.01)\"%3E%3Cpath d=\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3Cpath d=\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpath d=\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpolygon points=\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 \" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3C/g%3E%3C/svg%3E\\')'}}},{\"../../lib/sort_object_keys\":526}],612:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t.split(\" \"),i=r[0],a=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=[\"\",\"\"],u=[0,0];switch(i){case\"top\":c[0]=\"top\",u[1]=-l;break;case\"bottom\":c[0]=\"bottom\",u[1]=l}switch(a){case\"left\":c[1]=\"right\",u[0]=-s;break;case\"right\":c[1]=\"left\",u[0]=s}return{anchor:c[0]&&c[1]?c.join(\"-\"):c[0]?c[0]:c[1]?c[1]:\"center\",offset:u}}},{\"../../lib\":503}],613:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl/dist/mapbox-gl-unminified\"),i=t(\"../../lib\"),a=i.strTranslate,o=i.strScale,s=t(\"../../plots/get_data\").getSubplotCalcData,l=t(\"../../constants/xmlns_namespaces\"),c=t(\"@plotly/d3\"),u=t(\"../../components/drawing\"),f=t(\"../../lib/svg_text_utils\"),h=t(\"./mapbox\"),p=r.constants=t(\"./constants\");function d(t){return\"string\"==typeof t&&(-1!==p.styleValuesMapbox.indexOf(t)||0===t.indexOf(\"mapbox://\"))}r.name=\"mapbox\",r.attr=\"subplot\",r.idRoot=\"mapbox\",r.idRegex=r.attrRegex=i.counterRegex(\"mapbox\"),r.attributes={subplot:{valType:\"subplotid\",dflt:\"mapbox\",editType:\"calc\"}},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,a=e._subplots.mapbox;if(n.version!==p.requiredVersion)throw new Error(p.wrongVersionErrorMsg);var o=function(t,e){var r=t._fullLayout;if(\"\"===t._context.mapboxAccessToken)return\"\";for(var n=[],a=[],o=!1,s=!1,l=0;l1&&i.warn(p.multipleTokensErrorMsg),n[0]):(a.length&&i.log([\"Listed mapbox access token(s)\",a.join(\",\"),\"but did not use a Mapbox map style, ignoring token(s).\"].join(\" \")),\"\")}(t,a);n.accessToken=o;for(var l=0;l_/2){var w=v.split(\"|\").join(\"
\");x.text(w).attr(\"data-unformatted\",w).call(f.convertToTspans,t),b=u.bBox(x.node())}x.attr(\"transform\",a(-3,8-b.height)),y.insert(\"rect\",\".static-attribution\").attr({x:-b.width-6,y:-b.height-3,width:b.width+6,height:b.height+3,fill:\"rgba(255, 255, 255, 0.75)\"});var T=1;b.width+6>_&&(T=_/(b.width+6));var k=[n.l+n.w*h.x[1],n.t+n.h*(1-h.y[0])];y.attr(\"transform\",a(k[0],k[1])+o(T))}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n0){for(var r=0;r0}function u(t){var e={},r={};switch(t.type){case\"circle\":n.extendFlat(r,{\"circle-radius\":t.circle.radius,\"circle-color\":t.color,\"circle-opacity\":t.opacity});break;case\"line\":n.extendFlat(r,{\"line-width\":t.line.width,\"line-color\":t.color,\"line-opacity\":t.opacity,\"line-dasharray\":t.line.dash});break;case\"fill\":n.extendFlat(r,{\"fill-color\":t.color,\"fill-outline-color\":t.fill.outlinecolor,\"fill-opacity\":t.opacity});break;case\"symbol\":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{\"icon-image\":i.icon+\"-15\",\"icon-size\":i.iconsize/10,\"text-field\":i.text,\"text-size\":i.textfont.size,\"text-anchor\":o.anchor,\"text-offset\":o.offset,\"symbol-placement\":i.placement}),n.extendFlat(r,{\"icon-color\":t.color,\"text-color\":i.textfont.color,\"text-opacity\":t.opacity});break;case\"raster\":n.extendFlat(r,{\"raster-fade-duration\":0,\"raster-opacity\":t.opacity})}return{layout:e,paint:r}}l.update=function(t){this.visible?this.needsNewImage(t)?this.updateImage(t):this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=c(t)},l.needsNewImage=function(t){return this.subplot.map.getSource(this.idSource)&&\"image\"===this.sourceType&&\"image\"===t.sourcetype&&(this.source!==t.source||JSON.stringify(this.coordinates)!==JSON.stringify(t.coordinates))},l.needsNewSource=function(t){return this.sourceType!==t.sourcetype||JSON.stringify(this.source)!==JSON.stringify(t.source)||this.layerType!==t.type},l.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup[\"layout-\"+this.index]},l.lookupBelow=function(){return this.subplot.belowLookup[\"layout-\"+this.index]},l.updateImage=function(t){this.subplot.map.getSource(this.idSource).updateImage({url:t.source,coordinates:t.coordinates});var e=this.findFollowingMapboxLayerId(this.lookupBelow());null!==e&&this.subplot.map.moveLayer(this.idLayer,e)},l.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,c(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};\"geojson\"===r?e=\"data\":\"vector\"===r?e=\"string\"==typeof n?\"url\":\"tiles\":\"raster\"===r?(e=\"tiles\",a.tileSize=256):\"image\"===r&&(e=\"url\",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=i(t.sourceattribution));return a}(t);e.addSource(this.idSource,r)}},l.findFollowingMapboxLayerId=function(t){if(\"traces\"===t)for(var e=this.subplot.getMapLayers(),r=0;r1)for(r=0;r-1&&v(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),i.indexOf(\"event\")>-1&&c.click(n,e.originalEvent)}}},_.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,o=t.dragmode;a=f(o)?function(t,r){(t.range={})[e.id]=[c([r.xmin,r.ymin]),c([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(c)};var s=e.dragOptions;e.dragOptions=i.extendDeep(s||{},{dragmode:t.dragmode,element:e.div,gd:n,plotinfo:{id:e.id,domain:t[e.id].domain,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off(\"click\",e.onClickInPanHandler),p(o)||h(o)?(r.dragPan.disable(),r.on(\"zoomstart\",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){d(t,r,n,e.dragOptions,o)},l.init(e.dragOptions)):(r.dragPan.enable(),r.off(\"zoomstart\",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on(\"click\",e.onClickInPanHandler))}function c(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},_.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+\"px\",n.height=r.h*(e.y[1]-e.y[0])+\"px\",n.left=r.l+e.x[0]*r.w+\"px\",n.top=r.t+(1-e.y[1])*r.h+\"px\",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},_.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e=e.width-20?(a[\"text-anchor\"]=\"start\",a.x=5):(a[\"text-anchor\"]=\"end\",a.x=e._paper.attr(\"width\")-7),r.attr(a);var o=r.select(\".js-link-to-tool\"),s=r.select(\".js-link-spacer\"),l=r.select(\".js-sourcelinks\");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text(\"\");var r=e.append(\"a\").attr({\"xlink:xlink:href\":\"#\",class:\"link--impt link--embedview\",\"font-weight\":\"bold\"}).text(t._context.linkText+\" \"+String.fromCharCode(187));if(t._context.sendData)r.on(\"click\",(function(){b.sendDataToCloud(t)}));else{var n=window.location.pathname.split(\"/\"),i=window.location.search;r.attr({\"xlink:xlink:show\":\"new\",\"xlink:xlink:href\":\"/\"+n[2].split(\".\")[0]+\"/\"+n[1]+i})}}(t,o),s.text(o.text()&&l.text()?\" - \":\"\")}},b.sendDataToCloud=function(t){var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL;if(e){t.emit(\"plotly_beforeexport\");var r=n.select(t).append(\"div\").attr(\"id\",\"hiddenform\").style(\"display\",\"none\"),i=r.append(\"form\").attr({action:e+\"/external\",method:\"post\",target:\"_blank\"});return i.append(\"input\").attr({type:\"text\",name:\"data\"}).node().value=b.graphJson(t,!1,\"keepdata\"),i.node().submit(),r.remove(),t.emit(\"plotly_afterexport\"),!1}};var T=[\"days\",\"shortDays\",\"months\",\"shortMonths\",\"periods\",\"dateTime\",\"date\",\"time\",\"decimal\",\"thousands\",\"grouping\",\"currency\"],k=[\"year\",\"month\",\"dayMonth\",\"dayMonthYear\"];function A(t,e){var r=t._context.locale;r||(r=\"en-US\");var n=!1,i={};function a(t){for(var r=!0,a=0;a1&&z.length>1){for(s.getComponentMethod(\"grid\",\"sizeDefaults\")(c,l),o=0;o15&&z.length>15&&0===l.shapes.length&&0===l.images.length,b.linkSubplots(h,l,f,n),b.cleanPlot(h,l,f,n);var N=!(!n._has||!n._has(\"gl2d\")),j=!(!l._has||!l._has(\"gl2d\")),U=!(!n._has||!n._has(\"cartesian\"))||N,V=!(!l._has||!l._has(\"cartesian\"))||j;U&&!V?n._bgLayer.remove():V&&!U&&(l._shouldCreateBgLayer=!0),n._zoomlayer&&!t._dragging&&d({_fullLayout:n}),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var i=0;i0){var f=1-2*s;n=Math.round(f*n),i=Math.round(f*i)}}var h=b.layoutAttributes.width.min,p=b.layoutAttributes.height.min;n1,m=!e.height&&Math.abs(r.height-i)>1;(m||d)&&(d&&(r.width=n),m&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),b.sanitizeMargins(r)},b.supplyLayoutModuleDefaults=function(t,e,r,n){var i,a,o,l=s.componentsRegistry,c=e._basePlotModules,f=s.subplotsRegistry.cartesian;for(i in l)(o=l[i]).includeBasePlot&&o.includeBasePlot(t,e);for(var h in c.length||c.push(f),e._has(\"cartesian\")&&(s.getComponentMethod(\"grid\",\"contentDefaults\")(t,e),f.finalizeSubplots(t,e)),e._subplots)e._subplots[h].sort(u.subplotSort);for(a=0;a1&&(r.l/=m,r.r/=m)}if(f){var g=(r.t+r.b)/f;g>1&&(r.t/=g,r.b/=g)}var v=void 0!==r.xl?r.xl:r.x,y=void 0!==r.xr?r.xr:r.x,x=void 0!==r.yt?r.yt:r.y,_=void 0!==r.yb?r.yb:r.y;h[e]={l:{val:v,size:r.l+d},r:{val:y,size:r.r+d},b:{val:_,size:r.b+d},t:{val:x,size:r.t+d}},p[e]=1}else delete h[e],delete p[e];if(!n._replotting)return b.doAutoMargin(t)}},b.doAutoMargin=function(t){var e=t._fullLayout,r=e.width,n=e.height;e._size||(e._size={}),C(e);var i=e._size,a=e.margin,l=u.extendFlat({},i),c=a.l,f=a.r,h=a.t,d=a.b,m=e._pushmargin,g=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in m)g[v]||delete m[v];for(var y in m.base={l:{val:0,size:c},r:{val:1,size:f},t:{val:1,size:h},b:{val:0,size:d}},m){var x=m[y].l||{},_=m[y].b||{},w=x.val,T=x.size,k=_.val,A=_.size;for(var M in m){if(o(T)&&m[M].r){var S=m[M].r.val,E=m[M].r.size;if(S>w){var L=(T*S+(E-r)*w)/(S-w),P=(E*(1-w)+(T-r)*(1-S))/(S-w);L+P>c+f&&(c=L,f=P)}}if(o(A)&&m[M].t){var I=m[M].t.val,O=m[M].t.size;if(I>k){var z=(A*I+(O-n)*k)/(I-k),D=(O*(1-k)+(A-n)*(1-I))/(I-k);z+D>d+h&&(d=z,h=D)}}}}}var R=u.constrain(r-a.l-a.r,2,64),F=u.constrain(n-a.t-a.b,2,64),B=Math.max(0,r-R),N=Math.max(0,n-F);if(B){var j=(c+f)/B;j>1&&(c/=j,f/=j)}if(N){var U=(d+h)/N;U>1&&(d/=U,h/=U)}if(i.l=Math.round(c),i.r=Math.round(f),i.t=Math.round(h),i.b=Math.round(d),i.p=Math.round(a.pad),i.w=Math.round(r)-i.l-i.r,i.h=Math.round(n)-i.t-i.b,!e._replotting&&b.didMarginChange(l,i)){\"_redrawFromAutoMarginCount\"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var V=3*(1+Object.keys(g).length);if(e._redrawFromAutoMarginCount0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push((function(){n=!0})),r.redraw&&t._transitionData._interruptCallbacks.push((function(){return s.call(\"redraw\",t)})),t._transitionData._interruptCallbacks.push((function(){t.emit(\"plotly_transitioninterrupted\",[])}));var a=0,o=0;function l(){return a++,function(){o++,n||o!==a||function(e){if(!t._transitionData)return;(function(t){if(t)for(;t.length;)t.shift()})(t._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(r.redraw)return s.call(\"redraw\",t)})).then((function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit(\"plotly_transitioned\",[])})).then(e)}(i)}}r.runFn(l),setTimeout(l())}))}],a=u.syncOrAsync(i,t);return a&&a.then||(a=Promise.resolve()),a.then((function(){return t}))}b.didMarginChange=function(t,e){for(var r=0;r1)return!0}return!1},b.graphJson=function(t,e,r,n,i,a){(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&b.supplyDefaults(t);var o=i?t._fullData:t.data,s=i?t._fullLayout:t.layout,l=(t._transitionData||{})._frames;function c(t,e){if(\"function\"==typeof t)return e?\"_function_\":null;if(u.isPlainObject(t)){var n,i={};return Object.keys(t).sort().forEach((function(a){if(-1===[\"_\",\"[\"].indexOf(a.charAt(0)))if(\"function\"!=typeof t[a]){if(\"keepdata\"===r){if(\"src\"===a.substr(a.length-3))return}else if(\"keepstream\"===r){if(\"string\"==typeof(n=t[a+\"src\"])&&n.indexOf(\":\")>0&&!u.isPlainObject(t.stream))return}else if(\"keepall\"!==r&&\"string\"==typeof(n=t[a+\"src\"])&&n.indexOf(\":\")>0)return;i[a]=c(t[a],e)}else e&&(i[a]=\"_function\")})),i}return Array.isArray(t)?t.map((function(t){return c(t,e)})):u.isTypedArray(t)?u.simpleMap(t,u.identity):u.isJSDate(t)?u.ms2DateTimeLocal(+t):t}var f={data:(o||[]).map((function(t){var r=c(t);return e&&delete r.fit,r}))};if(!e&&(f.layout=c(s),i)){var h=s._size;f.layout.computed={margin:{b:h.b,l:h.l,r:h.r,t:h.t}}}return l&&(f.frames=c(l)),a&&(f.config=c(t._context,!0)),\"object\"===n?f:JSON.stringify(f)},b.modifyFrames=function(t,e){var r,n,i,a=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r=0;a--)if(s[a].enabled){r._indexToPoints=s[a]._indexToPoints;break}n&&n.calc&&(o=n.calc(t,r))}Array.isArray(o)&&o[0]||(o=[{x:h,y:h}]),o[0].t||(o[0].t={}),o[0].trace=r,d[e]=o}}for(z(o,c,f),i=0;i1e-10?t:0}function h(t,e,r){e=e||0,r=r||0;for(var n=t.length,i=new Array(n),a=0;a0?r:1/0})),i=n.mod(r+1,e.length);return[e[r],e[i]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var i=-e*r,a=e*e+1,o=2*(e*i-r),s=i*i+r*r-t*t,l=Math.sqrt(o*o-4*a*s),c=(-o+l)/(2*a),u=(-o-l)/(2*a);return[[c,e*c+i+n],[u,e*u+i+n]]},clampTiny:f,pathPolygon:function(t,e,r,n,i,a){return\"M\"+h(u(t,e,r,n),i,a).join(\"L\")},pathPolygonAnnulus:function(t,e,r,n,i,a,o){var s,l;t=90||s>90&&l>=450?1:u<=0&&h<=0?0:Math.max(u,h);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&f>=0?0:Math.min(c,f);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&h>=0?0:Math.min(u,h);n=l>=360?1:c<=0&&f<=0?0:Math.max(c,f);return[e,r,n,i]}(p),b=x[2]-x[0],_=x[3]-x[1],w=h/f,T=Math.abs(_/b);w>T?(d=f,y=(h-(m=f*T))/n.h/2,g=[o[0],o[1]],v=[s[0]+y,s[1]-y]):(m=h,y=(f-(d=h/T))/n.w/2,g=[o[0]+y,o[1]-y],v=[s[0],s[1]]),this.xLength2=d,this.yLength2=m,this.xDomain2=g,this.yDomain2=v;var k,A=this.xOffset2=n.l+n.w*g[0],M=this.yOffset2=n.t+n.h*(1-v[1]),S=this.radius=d/b,E=this.innerRadius=this.getHole(e)*S,L=this.cx=A-S*x[0],C=this.cy=M+S*x[3],P=this.cxx=L-A,I=this.cyy=C-M,O=i.side;\"counterclockwise\"===O?(k=O,O=\"top\"):\"clockwise\"===O&&(k=O,O=\"bottom\"),this.radialAxis=this.mockAxis(t,e,i,{_id:\"x\",side:O,_trueSide:k,domain:[E/n.w,S/n.w]}),this.angularAxis=this.mockAxis(t,e,a,{side:\"right\",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:\"x\",domain:g}),this.yaxis=this.mockCartesianAxis(t,e,{_id:\"y\",domain:v});var z=this.pathSubplot();this.clipPaths.forTraces.select(\"path\").attr(\"d\",z).attr(\"transform\",l(P,I)),r.frontplot.attr(\"transform\",l(A,M)).call(u.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr(\"d\",z).attr(\"transform\",l(L,C)).call(c.fill,e.bgcolor)},N.mockAxis=function(t,e,r,n){var i=o.extendFlat({},r,n);return d(i,e,t),i},N.mockCartesianAxis=function(t,e,r){var n=this,i=n.isSmith,a=r._id,s=o.extendFlat({type:\"linear\"},r);p(s,t);var l={x:[0,2],y:[1,3]};return s.setRange=function(){var t=n.sectorBBox,r=l[a],i=n.radialAxis._rl,o=(i[1]-i[0])/(1-n.getHole(e));s.range=[t[r[0]]*o,t[r[1]]*o]},s.isPtWithinRange=\"x\"!==a||i?function(){return!0}:function(t){return n.isPtInside(t)},s.setRange(),s.setScale(),s},N.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,i=this.getRadial(e);m(r,n);var a=n.range;i.range=a.slice(),i._input.range=a.slice(),n._rl=[n.r2l(a[0],null,\"gregorian\"),n.r2l(a[1],null,\"gregorian\")]},N.updateRadialAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=r.getRadial(e),m=D(r.getSector(e)[0],360),g=r.radialAxis,v=u90&&m<=270&&(g.tickangle=180);var x=y?function(t){var e=O(r,C([t.x,0]));return l(e[0]-f,e[1]-p)}:function(t){return l(g.l2p(t.x)+u,0)},b=y?function(t){return I(r,t.x,-1/0,1/0)}:function(t){return r.pathArc(g.r2p(t.x)+u)},_=j(d);if(r.radialTickLayout!==_&&(i[\"radial-axis\"].selectAll(\".xtick\").remove(),r.radialTickLayout=_),v){g.setScale();var w=0,T=y?(g.tickvals||[]).filter((function(t){return t>=0})).map((function(t){return h.tickText(g,t,!0,!1)})):h.calcTicks(g),k=y?T:h.clipEnds(g,T),A=h.getTickSigns(g)[2];y&&((\"top\"===g.ticks&&\"bottom\"===g.side||\"bottom\"===g.ticks&&\"top\"===g.side)&&(A=-A),\"top\"===g.ticks&&\"top\"===g.side&&(w=-g.ticklen),\"bottom\"===g.ticks&&\"bottom\"===g.side&&(w=g.ticklen)),h.drawTicks(n,g,{vals:T,layer:i[\"radial-axis\"],path:h.makeTickPath(g,0,A),transFn:x,crisp:!1}),h.drawGrid(n,g,{vals:k,layer:i[\"radial-grid\"],path:b,transFn:o.noop,crisp:!1}),h.drawLabels(n,g,{vals:T,layer:i[\"radial-axis\"],transFn:x,labelFns:h.makeLabelFns(g,w)})}var M=r.radialAxisAngle=r.vangles?F(U(R(d.angle),r.vangles)):d.angle,S=l(f,p),E=S+s(-M);V(i[\"radial-axis\"],v&&(d.showticklabels||d.ticks),{transform:E}),V(i[\"radial-grid\"],v&&d.showgrid,{transform:y?\"\":S}),V(i[\"radial-line\"].select(\"line\"),v&&d.showline,{x1:y?-a:u,y1:0,x2:a,y2:0,transform:E}).attr(\"stroke-width\",d.linewidth).call(c.stroke,d.linecolor)},N.updateRadialAxisTitle=function(t,e,r){if(!this.isSmith){var n=this.gd,i=this.radius,a=this.cx,o=this.cy,s=this.getRadial(e),l=this.id+\"title\",c=0;if(s.title){var f=u.bBox(this.layers[\"radial-axis\"].node()).height,h=s.title.font.size,p=s.side;c=\"top\"===p?h:\"counterclockwise\"===p?-(f+.4*h):f+.8*h}var d=void 0!==r?r:this.radialAxisAngle,m=R(d),g=Math.cos(m),v=Math.sin(m),y=a+i/2*g+c*v,b=o-i/2*v+c*g;this.layers[\"radial-axis-title\"]=x.draw(n,l,{propContainer:s,propName:this.id+\".radialaxis.title\",placeholder:z(n,\"Click to enter radial axis title\"),attributes:{x:y,y:b,\"text-anchor\":\"middle\"},transform:{rotate:-d}})}},N.updateAngularAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=r.getAngular(e),m=r.angularAxis,g=r.isSmith;g||(r.fillViewInitialKey(\"angularaxis.rotation\",d.rotation),m.setGeometry(),m.setScale());var v=g?function(t){var e=O(r,C([0,t.x]));return Math.atan2(e[0]-f,e[1]-p)-Math.PI/2}:function(t){return m.t2g(t.x)};\"linear\"===m.type&&\"radians\"===m.thetaunit&&(m.tick0=F(m.tick0),m.dtick=F(m.dtick));var y=function(t){return l(f+a*Math.cos(t),p-a*Math.sin(t))},x=g?function(t){var e=O(r,C([0,t.x]));return l(e[0],e[1])}:function(t){return y(v(t))},b=g?function(t){var e=O(r,C([0,t.x])),n=Math.atan2(e[0]-f,e[1]-p)-Math.PI/2;return l(e[0],e[1])+s(-F(n))}:function(t){var e=v(t);return y(e)+s(-F(e))},_=g?function(t){return P(r,t.x,0,1/0)}:function(t){var e=v(t),r=Math.cos(e),n=Math.sin(e);return\"M\"+[f+u*r,p-u*n]+\"L\"+[f+a*r,p-a*n]},w=h.makeLabelFns(m,0).labelStandoff,T={xFn:function(t){var e=v(t);return Math.cos(e)*w},yFn:function(t){var e=v(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(w+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*M)},anchorFn:function(t){var e=v(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},heightFn:function(t,e,r){var n=v(t);return-.5*(1+Math.sin(n))*r}},k=j(d);r.angularTickLayout!==k&&(i[\"angular-axis\"].selectAll(\".\"+m._id+\"tick\").remove(),r.angularTickLayout=k);var A,S=g?[1/0].concat(m.tickvals||[]).map((function(t){return h.tickText(m,t,!0,!1)})):h.calcTicks(m);if(g&&(S[0].text=\"\\u221e\",S[0].fontSize*=1.75),\"linear\"===e.gridshape?(A=S.map(v),o.angleDelta(A[0],A[1])<0&&(A=A.slice().reverse())):A=null,r.vangles=A,\"category\"===m.type&&(S=S.filter((function(t){return o.isAngleInsideSector(v(t),r.sectorInRad)}))),m.visible){var E=\"inside\"===m.ticks?-1:1,L=(m.linewidth||1)/2;h.drawTicks(n,m,{vals:S,layer:i[\"angular-axis\"],path:\"M\"+E*L+\",0h\"+E*m.ticklen,transFn:b,crisp:!1}),h.drawGrid(n,m,{vals:S,layer:i[\"angular-grid\"],path:_,transFn:o.noop,crisp:!1}),h.drawLabels(n,m,{vals:S,layer:i[\"angular-axis\"],repositionOnUpdate:!0,transFn:x,labelFns:T})}V(i[\"angular-line\"].select(\"path\"),d.showline,{d:r.pathSubplot(),transform:l(f,p)}).attr(\"stroke-width\",d.linewidth).call(c.stroke,d.linecolor)},N.updateFx=function(t,e){this.gd._context.staticPlot||(!this.isSmith&&(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1)),this.updateHoverAndMainDrag(t))},N.updateHoverAndMainDrag=function(t){var e,r,s=this,c=s.isSmith,u=s.gd,f=s.layers,h=t._zoomlayer,p=S.MINZOOM,d=S.OFFEDGE,m=s.radius,x=s.innerRadius,T=s.cx,k=s.cy,A=s.cxx,M=s.cyy,L=s.sectorInRad,C=s.vangles,P=s.radialAxis,I=E.clampTiny,O=E.findXYatLength,z=E.findEnclosingVertexAngles,D=S.cornerHalfWidth,R=S.cornerLen/2,F=g.makeDragger(f,\"path\",\"maindrag\",!1===t.dragmode?\"none\":\"crosshair\");n.select(F).attr(\"d\",s.pathSubplot()).attr(\"transform\",l(T,k)),F.onmousemove=function(t){y.hover(u,t,s.id),u._fullLayout._lasthover=F,u._fullLayout._hoversubplot=s.id},F.onmouseout=function(t){u._dragging||v.unhover(u,t)};var B,N,j,U,V,H,q,G,Y,W={element:F,gd:u,subplot:s.id,plotinfo:{id:s.id,xaxis:s.xaxis,yaxis:s.yaxis},xaxes:[s.xaxis],yaxes:[s.yaxis]};function X(t,e){return Math.sqrt(t*t+e*e)}function Z(t,e){return X(t-A,e-M)}function J(t,e){return Math.atan2(M-e,t-A)}function K(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function Q(t,e){if(0===t)return s.pathSector(2*D);var r=R/t,n=e-r,i=e+r,a=Math.max(0,Math.min(t,m)),o=a-D,l=a+D;return\"M\"+K(o,n)+\"A\"+[o,o]+\" 0,0,0 \"+K(o,i)+\"L\"+K(l,i)+\"A\"+[l,l]+\" 0,0,1 \"+K(l,n)+\"Z\"}function $(t,e,r){if(0===t)return s.pathSector(2*D);var n,i,a=K(t,e),o=K(t,r),l=I((a[0]+o[0])/2),c=I((a[1]+o[1])/2);if(l&&c){var u=c/l,f=-1/u,h=O(D,u,l,c);n=O(R,f,h[0][0],h[0][1]),i=O(R,f,h[1][0],h[1][1])}else{var p,d;c?(p=R,d=D):(p=D,d=R),n=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return\"M\"+n.join(\"L\")+\"L\"+i.reverse().join(\"L\")+\"Z\"}function tt(t,e){return e=Math.max(Math.min(e,m),x),tp?(t-1&&1===t&&_(e,u,[s.xaxis],[s.yaxis],s.id,W),r.indexOf(\"event\")>-1&&y.click(u,e,s.id)}W.prepFn=function(t,n,a){var l=u._fullLayout.dragmode,f=F.getBoundingClientRect();u._fullLayout._calcInverseTransform(u);var p=u._fullLayout._invTransform;e=u._fullLayout._invScaleX,r=u._fullLayout._invScaleY;var d=o.apply3DTransform(p)(n-f.left,a-f.top);if(B=d[0],N=d[1],C){var v=E.findPolygonOffset(m,L[0],L[1],C);B+=A+v[0],N+=M+v[1]}switch(l){case\"zoom\":W.clickFn=st,c||(W.moveFn=C?it:rt,W.doneFn=at,function(){j=null,U=null,V=s.pathSubplot(),H=!1;var t=u._fullLayout[s.id];q=i(t.bgcolor).getLuminance(),(G=g.makeZoombox(h,q,T,k,V)).attr(\"fill-rule\",\"evenodd\"),Y=g.makeCorners(h,T,k),w(u)}());break;case\"select\":case\"lasso\":b(t,n,a,W,l)}},v.init(W)},N.updateRadialDrag=function(t,e,r){var i=this,c=i.gd,u=i.layers,f=i.radius,h=i.innerRadius,p=i.cx,d=i.cy,m=i.radialAxis,y=S.radialDragBoxSize,x=y/2;if(m.visible){var b,_,T,M=R(i.radialAxisAngle),E=m._rl,L=E[0],C=E[1],P=E[r],I=.75*(E[1]-E[0])/(1-i.getHole(e))/f;r?(b=p+(f+x)*Math.cos(M),_=d-(f+x)*Math.sin(M),T=\"radialdrag\"):(b=p+(h-x)*Math.cos(M),_=d-(h-x)*Math.sin(M),T=\"radialdrag-inner\");var O,z,D,B=g.makeRectDragger(u,T,\"crosshair\",-x,-x,y,y),N={element:B,gd:c};!1===t.dragmode&&(N.dragmode=!1),V(n.select(B),m.visible&&h0==(r?D>L:Dn?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*a},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case\"angularaxis\":!function(t,e){var r=t.type;if(\"linear\"===r){var i=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return\"degrees\"===e?a(t):t}(i(t),e)},t.c2d=function(t,e){return s(function(t,e){return\"degrees\"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,i){var a,o,s=e[i],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&\"linear\"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(a=new Array(l),o=0;o0?1:0}function i(t){var e=t[0],r=t[1];if(!isFinite(e)||!isFinite(r))return[1,0];var n=(e+1)*(e+1)+r*r;return[(e*e+r*r-1)/n,2*r/n]}function a(t,e){var r=e[0],n=e[1];return[r*t.radius+t.cx,-n*t.radius+t.cy]}function o(t,e){return e*t.radius}e.exports={smith:i,reactanceArc:function(t,e,r,n){var s=a(t,i([r,e])),l=s[0],c=s[1],u=a(t,i([n,e])),f=u[0],h=u[1];if(0===e)return[\"M\"+l+\",\"+c,\"L\"+f+\",\"+h].join(\" \");var p=o(t,1/Math.abs(e));return[\"M\"+l+\",\"+c,\"A\"+p+\",\"+p+\" 0 0,\"+(e<0?1:0)+\" \"+f+\",\"+h].join(\" \")},resistanceArc:function(t,e,r,s){var l=o(t,1/(e+1)),c=a(t,i([e,r])),u=c[0],f=c[1],h=a(t,i([e,s])),p=h[0],d=h[1];if(n(r)!==n(s)){var m=a(t,i([e,0]));return[\"M\"+u+\",\"+f,\"A\"+l+\",\"+l+\" 0 0,\"+(00){for(var n=[],i=0;i=u&&(h.min=0,d.min=0,g.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function m(t,e,r,n){var i=h[e._name];function o(r,n){return a.coerce(t,e,i,r,n)}o(\"uirevision\",n.uirevision),e.type=\"linear\";var p=o(\"color\"),d=p!==i.color.dflt?p:r.font.color,m=e._name.charAt(0).toUpperCase(),g=\"Component \"+m,v=o(\"title.text\",g);e._hovertitle=v===g?v:m,a.coerceFont(o,\"title.font\",{family:r.font.family,size:a.bigFont(r.font.size),color:d}),o(\"min\"),u(t,e,o,\"linear\"),l(t,e,o,\"linear\"),s(t,e,o,\"linear\"),c(t,e,o,{outerTicks:!0}),o(\"showticklabels\")&&(a.coerceFont(o,\"tickfont\",{family:r.font.family,size:r.font.size,color:d}),o(\"tickangle\"),o(\"tickformat\")),f(t,e,o,{dfltColor:p,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o(\"hoverformat\"),o(\"layer\")}e.exports=function(t,e,r){o(t,e,r,{type:\"ternary\",attributes:h,handleDefaults:d,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{\"../../components/color\":366,\"../../lib\":503,\"../../plot_api/plot_template\":543,\"../cartesian/line_grid_defaults\":571,\"../cartesian/prefix_suffix_defaults\":573,\"../cartesian/tick_label_defaults\":578,\"../cartesian/tick_mark_defaults\":579,\"../cartesian/tick_value_defaults\":580,\"../subplot_defaults\":632,\"./layout_attributes\":635}],637:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"tinycolor2\"),a=t(\"../../registry\"),o=t(\"../../lib\"),s=o.strTranslate,l=o._,c=t(\"../../components/color\"),u=t(\"../../components/drawing\"),f=t(\"../cartesian/set_convert\"),h=t(\"../../lib/extend\").extendFlat,p=t(\"../plots\"),d=t(\"../cartesian/axes\"),m=t(\"../../components/dragelement\"),g=t(\"../../components/fx\"),v=t(\"../../components/dragelement/helpers\"),y=v.freeMode,x=v.rectMode,b=t(\"../../components/titles\"),_=t(\"../cartesian/select\").prepSelect,w=t(\"../cartesian/select\").selectOnClick,T=t(\"../cartesian/select\").clearSelect,k=t(\"../cartesian/select\").clearSelectionsCache,A=t(\"../cartesian/constants\");function M(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=M;var S=M.prototype;S.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},S.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var i=0;iE*b?i=(a=b)*E:a=(i=x)/E,o=v*i/x,l=y*a/b,r=e.l+e.w*m-i/2,n=e.t+e.h*(1-g)-a/2,p.x0=r,p.y0=n,p.w=i,p.h=a,p.sum=_,p.xaxis={type:\"linear\",range:[w+2*k-_,_-w-2*T],domain:[m-o/2,m+o/2],_id:\"x\"},f(p.xaxis,p.graphDiv._fullLayout),p.xaxis.setScale(),p.xaxis.isPtWithinRange=function(t){return t.a>=p.aaxis.range[0]&&t.a<=p.aaxis.range[1]&&t.b>=p.baxis.range[1]&&t.b<=p.baxis.range[0]&&t.c>=p.caxis.range[1]&&t.c<=p.caxis.range[0]},p.yaxis={type:\"linear\",range:[w,_-T-k],domain:[g-l/2,g+l/2],_id:\"y\"},f(p.yaxis,p.graphDiv._fullLayout),p.yaxis.setScale(),p.yaxis.isPtWithinRange=function(){return!0};var A=p.yaxis.domain[0],M=p.aaxis=h({},t.aaxis,{range:[w,_-T-k],side:\"left\",tickangle:(+t.aaxis.tickangle||0)-30,domain:[A,A+l*E],anchor:\"free\",position:0,_id:\"y\",_length:i});f(M,p.graphDiv._fullLayout),M.setScale();var S=p.baxis=h({},t.baxis,{range:[_-w-k,T],side:\"bottom\",domain:p.xaxis.domain,anchor:\"free\",position:0,_id:\"x\",_length:i});f(S,p.graphDiv._fullLayout),S.setScale();var L=p.caxis=h({},t.caxis,{range:[_-w-T,k],side:\"right\",tickangle:(+t.caxis.tickangle||0)+30,domain:[A,A+l*E],anchor:\"free\",position:0,_id:\"y\",_length:i});f(L,p.graphDiv._fullLayout),L.setScale();var C=\"M\"+r+\",\"+(n+a)+\"h\"+i+\"l-\"+i/2+\",-\"+a+\"Z\";p.clipDef.select(\"path\").attr(\"d\",C),p.layers.plotbg.select(\"path\").attr(\"d\",C);var P=\"M0,\"+a+\"h\"+i+\"l-\"+i/2+\",-\"+a+\"Z\";p.clipDefRelative.select(\"path\").attr(\"d\",P);var I=s(r,n);p.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",I),p.clipDefRelative.select(\"path\").attr(\"transform\",null);var O=s(r-S._offset,n+a);p.layers.baxis.attr(\"transform\",O),p.layers.bgrid.attr(\"transform\",O);var z=s(r+i/2,n)+\"rotate(30)\"+s(0,-M._offset);p.layers.aaxis.attr(\"transform\",z),p.layers.agrid.attr(\"transform\",z);var D=s(r+i/2,n)+\"rotate(-30)\"+s(0,-L._offset);p.layers.caxis.attr(\"transform\",D),p.layers.cgrid.attr(\"transform\",D),p.drawAxes(!0),p.layers.aline.select(\"path\").attr(\"d\",M.showline?\"M\"+r+\",\"+(n+a)+\"l\"+i/2+\",-\"+a:\"M0,0\").call(c.stroke,M.linecolor||\"#000\").style(\"stroke-width\",(M.linewidth||0)+\"px\"),p.layers.bline.select(\"path\").attr(\"d\",S.showline?\"M\"+r+\",\"+(n+a)+\"h\"+i:\"M0,0\").call(c.stroke,S.linecolor||\"#000\").style(\"stroke-width\",(S.linewidth||0)+\"px\"),p.layers.cline.select(\"path\").attr(\"d\",L.showline?\"M\"+(r+i/2)+\",\"+n+\"l\"+i/2+\",\"+a:\"M0,0\").call(c.stroke,L.linecolor||\"#000\").style(\"stroke-width\",(L.linewidth||0)+\"px\"),p.graphDiv._context.staticPlot||p.initInteractions(),u.setClipUrl(p.layers.frontplot,p._hasClipOnAxisFalse?null:p.clipId,p.graphDiv)},S.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+\"title\",n=this.layers,i=this.aaxis,a=this.baxis,o=this.caxis;if(this.drawAx(i),this.drawAx(a),this.drawAx(o),t){var s=Math.max(i.showticklabels?i.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+(\"outside\"===o.ticks?.87*o.ticklen:0)),c=(a.showticklabels?a.tickfont.size:0)+(\"outside\"===a.ticks?a.ticklen:0)+3;n[\"a-title\"]=b.draw(e,\"a\"+r,{propContainer:i,propName:this.id+\".aaxis.title\",placeholder:l(e,\"Click to enter Component A title\"),attributes:{x:this.x0+this.w/2,y:this.y0-i.title.font.size/3-s,\"text-anchor\":\"middle\"}}),n[\"b-title\"]=b.draw(e,\"b\"+r,{propContainer:a,propName:this.id+\".baxis.title\",placeholder:l(e,\"Click to enter Component B title\"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*a.title.font.size+c,\"text-anchor\":\"middle\"}}),n[\"c-title\"]=b.draw(e,\"c\"+r,{propContainer:o,propName:this.id+\".caxis.title\",placeholder:l(e,\"Click to enter Component C title\"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,\"text-anchor\":\"middle\"}})}},S.drawAx=function(t){var e,r=this.graphDiv,n=t._name,i=n.charAt(0),a=t._id,s=this.layers[n],l=i+\"tickLayout\",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll(\".\"+a+\"tick\").remove(),this[l]=c),t.setScale();var u=d.calcTicks(t),f=d.clipEnds(t,u),h=d.makeTransTickFn(t),p=d.getTickSigns(t)[2],m=o.deg2rad(30),g=p*(t.linewidth||1)/2,v=p*t.ticklen,y=this.w,x=this.h,b=\"b\"===i?\"M0,\"+g+\"l\"+Math.sin(m)*v+\",\"+Math.cos(m)*v:\"M\"+g+\",0l\"+Math.cos(m)*v+\",\"+-Math.sin(m)*v,_={a:\"M0,0l\"+x+\",-\"+y/2,b:\"M0,0l-\"+y/2+\",-\"+x,c:\"M0,0l-\"+x+\",\"+y/2}[i];d.drawTicks(r,t,{vals:\"inside\"===t.ticks?f:u,layer:s,path:b,transFn:h,crisp:!1}),d.drawGrid(r,t,{vals:f,layer:this.layers[i+\"grid\"],path:_,transFn:h,crisp:!1}),d.drawLabels(r,t,{vals:u,layer:s,transFn:h,labelFns:d.makeLabelFns(t,0,30)})};var L=A.MINZOOM/2+.87,C=\"m-0.87,.5h\"+L+\"v3h-\"+(L+5.2)+\"l\"+(L/2+2.6)+\",-\"+(.87*L+4.5)+\"l2.6,1.5l-\"+L/2+\",\"+.87*L+\"Z\",P=\"m0.87,.5h-\"+L+\"v3h\"+(L+5.2)+\"l-\"+(L/2+2.6)+\",-\"+(.87*L+4.5)+\"l-2.6,1.5l\"+L/2+\",\"+.87*L+\"Z\",I=\"m0,1l\"+L/2+\",\"+.87*L+\"l2.6,-1.5l-\"+(L/2+2.6)+\",-\"+(.87*L+4.5)+\"l-\"+(L/2+2.6)+\",\"+(.87*L+4.5)+\"l2.6,1.5l\"+L/2+\",-\"+.87*L+\"Z\",O=!0;function z(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}S.clearSelect=function(){k(this.dragOptions),T(this.dragOptions.gd)},S.initInteractions=function(){var t,e,r,n,f,h,p,d,v,b,T,k,M=this,S=M.layers.plotbg.select(\"path\").node(),L=M.graphDiv,D=L._fullLayout._zoomlayer;function R(t){var e={};return e[M.id+\".aaxis.min\"]=t.a,e[M.id+\".baxis.min\"]=t.b,e[M.id+\".caxis.min\"]=t.c,e}function F(t,e){var r=L._fullLayout.clickmode;z(L),2===t&&(L.emit(\"plotly_doubleclick\",null),a.call(\"_guiRelayout\",L,R({a:0,b:0,c:0}))),r.indexOf(\"select\")>-1&&1===t&&w(e,L,[M.xaxis],[M.yaxis],M.id,M.dragOptions),r.indexOf(\"event\")>-1&&g.click(L,e,M.id)}function B(t,e){return 1-e/M.h}function N(t,e){return 1-(t+(M.h-e)/Math.sqrt(3))/M.w}function j(t,e){return(t-(M.h-e)/Math.sqrt(3))/M.w}function U(i,a){var o=r+i*t,s=n+a*e,l=Math.max(0,Math.min(1,B(0,n),B(0,s))),c=Math.max(0,Math.min(1,N(r,n),N(o,s))),u=Math.max(0,Math.min(1,j(r,n),j(o,s))),m=(l/2+u)*M.w,g=(1-l/2-c)*M.w,y=(m+g)/2,x=g-m,_=(1-l)*M.h,w=_-x/E;x.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),k.transition().style(\"opacity\",1).duration(200),b=!0),L.emit(\"plotly_relayouting\",R(p))}function V(){z(L),p!==f&&(a.call(\"_guiRelayout\",L,R(p)),O&&L.data&&L._context.showTips&&(o.notifier(l(L,\"Double-click to zoom back out\"),\"long\"),O=!1))}function H(t,e){var r=t/M.xaxis._m,n=e/M.yaxis._m,i=[(p={a:f.a-n,b:f.b+(r+n)/2,c:f.c-(r-n)/2}).a,p.b,p.c].sort(o.sorterAsc),a=i.indexOf(p.a),l=i.indexOf(p.b),c=i.indexOf(p.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),p={a:i[a],b:i[l],c:i[c]},e=(f.a-p.a)*M.yaxis._m,t=(f.c-p.c-f.b+p.b)*M.xaxis._m);var h=s(M.x0+t,M.y0+e);M.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",h);var d=s(-t,-e);M.clipDefRelative.select(\"path\").attr(\"transform\",d),M.aaxis.range=[p.a,M.sum-p.b-p.c],M.baxis.range=[M.sum-p.a-p.c,p.b],M.caxis.range=[M.sum-p.a-p.b,p.c],M.drawAxes(!1),M._hasClipOnAxisFalse&&M.plotContainer.select(\".scatterlayer\").selectAll(\".trace\").call(u.hideOutsideRangePoints,M),L.emit(\"plotly_relayouting\",R(p))}function q(){a.call(\"_guiRelayout\",L,R(p))}this.dragOptions={element:S,gd:L,plotinfo:{id:M.id,domain:L._fullLayout[M.id].domain,xaxis:M.xaxis,yaxis:M.yaxis},subplot:M.id,prepFn:function(a,l,u){M.dragOptions.xaxes=[M.xaxis],M.dragOptions.yaxes=[M.yaxis],t=L._fullLayout._invScaleX,e=L._fullLayout._invScaleY;var m=M.dragOptions.dragmode=L._fullLayout.dragmode;y(m)?M.dragOptions.minDrag=1:M.dragOptions.minDrag=void 0,\"zoom\"===m?(M.dragOptions.moveFn=U,M.dragOptions.clickFn=F,M.dragOptions.doneFn=V,function(t,e,a){var l=S.getBoundingClientRect();r=e-l.left,n=a-l.top,L._fullLayout._calcInverseTransform(L);var u=L._fullLayout._invTransform,m=o.apply3DTransform(u)(r,n);r=m[0],n=m[1],f={a:M.aaxis.range[0],b:M.baxis.range[1],c:M.caxis.range[1]},p=f,h=M.aaxis.range[1]-f.a,d=i(M.graphDiv._fullLayout[M.id].bgcolor).getLuminance(),v=\"M0,\"+M.h+\"L\"+M.w/2+\", 0L\"+M.w+\",\"+M.h+\"Z\",b=!1,T=D.append(\"path\").attr(\"class\",\"zoombox\").attr(\"transform\",s(M.x0,M.y0)).style({fill:d>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"d\",v),k=D.append(\"path\").attr(\"class\",\"zoombox-corners\").attr(\"transform\",s(M.x0,M.y0)).style({fill:c.background,stroke:c.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"d\",\"M0,0Z\"),M.clearSelect(L)}(0,l,u)):\"pan\"===m?(M.dragOptions.moveFn=H,M.dragOptions.clickFn=F,M.dragOptions.doneFn=q,f={a:M.aaxis.range[0],b:M.baxis.range[1],c:M.caxis.range[1]},p=f,M.clearSelect(L)):(x(m)||y(m))&&_(a,l,u,M.dragOptions,m)}},S.onmousemove=function(t){g.hover(L,t,M.id),L._fullLayout._lasthover=S,L._fullLayout._hoversubplot=M.id},S.onmouseout=function(t){L._dragging||m.unhover(L,t)},m.init(this.dragOptions)}},{\"../../components/color\":366,\"../../components/dragelement\":385,\"../../components/dragelement/helpers\":384,\"../../components/drawing\":388,\"../../components/fx\":406,\"../../components/titles\":464,\"../../lib\":503,\"../../lib/extend\":493,\"../../registry\":638,\"../cartesian/axes\":554,\"../cartesian/constants\":561,\"../cartesian/select\":575,\"../cartesian/set_convert\":576,\"../plots\":619,\"@plotly/d3\":58,tinycolor2:312}],638:[function(t,e,r){\"use strict\";var n=t(\"./lib/loggers\"),i=t(\"./lib/noop\"),a=t(\"./lib/push_unique\"),o=t(\"./lib/is_plain_object\"),s=t(\"./lib/dom\").addStyleRule,l=t(\"./lib/extend\"),c=t(\"./plots/attributes\"),u=t(\"./plots/layout_attributes\"),f=l.extendFlat,h=l.extendDeepAll;function p(t){var e=t.name,i=t.categories,a=t.meta;if(r.modules[e])n.log(\"Type \"+e+\" already registered\");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log(\"Plot type \"+e+\" already registered.\");for(var i in v(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(i,t.name)}(t.basePlotModule);for(var o={},l=0;l-1&&(f[p[r]].title={text:\"\"});for(r=0;r\")?\"\":e.html(t).text()}));return e.remove(),r}(_),_=(_=_.replace(/&(?!\\w+;|\\#[0-9]+;| \\#x[0-9A-F]+;)/g,\"&\")).replace(c,\"'\"),i.isIE()&&(_=(_=(_=_.replace(/\"/gi,\"'\")).replace(/(\\('#)([^']*)('\\))/gi,'(\"#$2\")')).replace(/(\\\\')/gi,'\"')),_}},{\"../components/color\":366,\"../components/drawing\":388,\"../constants/xmlns_namespaces\":480,\"../lib\":503,\"@plotly/d3\":58}],647:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;rf+c||!n(u))}for(var p=0;pa))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return i(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e0?e+=r:u<0&&(e-=r)}return e}function z(t){var e=u,r=t.b,i=O(t);return n.inbox(r-e,i-e,_+(i-e)/(i-r)-1)}var D=t[f+\"a\"],R=t[h+\"a\"];m=Math.abs(D.r2c(D.range[1])-D.r2c(D.range[0]));var F=n.getDistanceFunction(i,p,d,(function(t){return(p(t)+d(t))/2}));if(n.getClosest(g,F,t),!1!==t.index&&g[t.index].p!==c){k||(L=function(t){return Math.min(A(t),t.p-y.bargroupwidth/2)},C=function(t){return Math.max(M(t),t.p+y.bargroupwidth/2)});var B=g[t.index],N=v.base?B.b+B.s:B.s;t[h+\"0\"]=t[h+\"1\"]=R.c2p(B[h],!0),t[h+\"LabelVal\"]=N;var j=y.extents[y.extents.round(B.p)];t[f+\"0\"]=D.c2p(x?L(B):j[0],!0),t[f+\"1\"]=D.c2p(x?C(B):j[1],!0);var U=void 0!==B.orig_p;return t[f+\"LabelVal\"]=U?B.orig_p:B.p,t.labelLabel=l(D,t[f+\"LabelVal\"],v[f+\"hoverformat\"]),t.valueLabel=l(R,t[h+\"LabelVal\"],v[h+\"hoverformat\"]),t.baseLabel=l(R,B.b,v[h+\"hoverformat\"]),t.spikeDistance=(function(t){var e=u,r=t.b,i=O(t);return n.inbox(r-e,i-e,w+(i-e)/(i-r)-1)}(B)+function(t){return P(A(t),M(t),w)}(B))/2,t[f+\"Spike\"]=D.c2p(B.p,!0),o(B,v,t),t.hovertemplate=v.hovertemplate,t}}function f(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,i=s(t,e);return a.opacity(r)?r:a.opacity(n)&&i?n:void 0}e.exports={hoverPoints:function(t,e,r,n,a){var o=u(t,e,r,n,a);if(o){var s=o.cd,l=s[0].trace,c=s[o.index];return o.color=f(l,c),i.getComponentMethod(\"errorbars\",\"hoverInfo\")(c,l,o),[o]}},hoverOnBars:u,getTraceColor:f}},{\"../../components/color\":366,\"../../components/fx\":406,\"../../constants/numerical\":479,\"../../lib\":503,\"../../plots/cartesian/axes\":554,\"../../registry\":638,\"./helpers\":654}],656:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,colorbar:t(\"../scatter/marker_colorbar\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"bar\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"oriented\",\"errorBarsOK\",\"showLegend\",\"zoomScale\"],animatable:!0,meta:{}}},{\"../../plots/cartesian\":568,\"../scatter/marker_colorbar\":945,\"./arrays_to_calcdata\":647,\"./attributes\":648,\"./calc\":649,\"./cross_trace_calc\":651,\"./defaults\":652,\"./event_data\":653,\"./hover\":655,\"./layout_attributes\":657,\"./layout_defaults\":658,\"./plot\":659,\"./select\":660,\"./style\":662}],657:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\",\"relative\"],dflt:\"group\",editType:\"calc\"},barnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},bargap:{valType:\"number\",min:0,max:1,editType:\"calc\"},bargroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],658:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),o=t(\"./layout_attributes\");e.exports=function(t,e,r){function s(r,n){return a.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,f={},h=s(\"barmode\"),p=0;p0}function S(t){return\"auto\"===t?0:t}function E(t,e){var r=Math.PI/180*e,n=Math.abs(Math.sin(r)),i=Math.abs(Math.cos(r));return{x:t.width*i+t.height*n,y:t.width*n+t.height*i}}function L(t,e,r,n,i,a){var o=!!a.isHorizontal,s=!!a.constrained,l=a.angle||0,c=a.anchor||\"end\",u=\"end\"===c,f=\"start\"===c,h=((a.leftToRight||0)+1)/2,p=1-h,d=i.width,m=i.height,g=Math.abs(e-t),v=Math.abs(n-r),y=g>2*_&&v>2*_?_:0;g-=2*y,v-=2*y;var x=S(l);\"auto\"!==l||d<=g&&m<=v||!(d>g||m>v)||(d>v||m>g)&&d.01?q:function(t,e,r){return r&&t===e?t:Math.abs(t-e)>=2?q(t):t>e?Math.ceil(t):Math.floor(t)};B=G(B,N,D),N=G(N,B,D),j=G(j,U,!D),U=G(U,j,!D)}var Y=A(a.ensureSingle(I,\"path\"),P,g,v);if(Y.style(\"vector-effect\",\"non-scaling-stroke\").attr(\"d\",isNaN((N-B)*(U-j))||V&&t._context.staticPlot?\"M0,0Z\":\"M\"+B+\",\"+j+\"V\"+U+\"H\"+N+\"V\"+j+\"Z\").call(l.setClipUrl,e.layerClipId,t),!P.uniformtext.mode&&R){var W=l.makePointStyleFns(f);l.singlePointStyle(c,Y,f,W,t)}!function(t,e,r,n,i,s,c,f,p,g,v){var w,T=e.xaxis,M=e.yaxis,C=t._fullLayout;function P(e,r,n){return a.ensureSingle(e,\"text\").text(r).attr({class:\"bartext bartext-\"+w,\"text-anchor\":\"middle\",\"data-notex\":1}).call(l.font,n).call(o.convertToTspans,t)}var I=n[0].trace,O=\"h\"===I.orientation,z=function(t,e,r,n,i){var o,s=e[0].trace;o=s.texttemplate?function(t,e,r,n,i){var o=e[0].trace,s=a.castOption(o,r,\"texttemplate\");if(!s)return\"\";var l,c,f,h,p=\"histogram\"===o.type,d=\"waterfall\"===o.type,m=\"funnel\"===o.type,g=\"h\"===o.orientation;g?(l=\"y\",c=i,f=\"x\",h=n):(l=\"x\",c=n,f=\"y\",h=i);function v(t){return u(h,h.c2l(t),!0).text}var y=e[r],x={};x.label=y.p,x.labelLabel=x[l+\"Label\"]=(_=y.p,u(c,c.c2l(_),!0).text);var _;var w=a.castOption(o,y.i,\"text\");(0===w||w)&&(x.text=w);x.value=y.s,x.valueLabel=x[f+\"Label\"]=v(y.s);var T={};b(T,o,y.i),(p||void 0===T.x)&&(T.x=g?x.value:x.label);(p||void 0===T.y)&&(T.y=g?x.label:x.value);(p||void 0===T.xLabel)&&(T.xLabel=g?x.valueLabel:x.labelLabel);(p||void 0===T.yLabel)&&(T.yLabel=g?x.labelLabel:x.valueLabel);d&&(x.delta=+y.rawS||y.s,x.deltaLabel=v(x.delta),x.final=y.v,x.finalLabel=v(x.final),x.initial=x.final-x.delta,x.initialLabel=v(x.initial));m&&(x.value=y.s,x.valueLabel=v(x.value),x.percentInitial=y.begR,x.percentInitialLabel=a.formatPercent(y.begR),x.percentPrevious=y.difR,x.percentPreviousLabel=a.formatPercent(y.difR),x.percentTotal=y.sumR,x.percenTotalLabel=a.formatPercent(y.sumR));var k=a.castOption(o,y.i,\"customdata\");k&&(x.customdata=k);return a.texttemplateString(s,x,t._d3locale,T,x,o._meta||{})}(t,e,r,n,i):s.textinfo?function(t,e,r,n){var i=t[0].trace,o=\"h\"===i.orientation,s=\"waterfall\"===i.type,l=\"funnel\"===i.type;function c(t){return u(o?r:n,+t,!0).text}var f,h=i.textinfo,p=t[e],d=h.split(\"+\"),m=[],g=function(t){return-1!==d.indexOf(t)};g(\"label\")&&m.push((v=t[e].p,u(o?n:r,v,!0).text));var v;g(\"text\")&&(0===(f=a.castOption(i,p.i,\"text\"))||f)&&m.push(f);if(s){var y=+p.rawS||p.s,x=p.v,b=x-y;g(\"initial\")&&m.push(c(b)),g(\"delta\")&&m.push(c(y)),g(\"final\")&&m.push(c(x))}if(l){g(\"value\")&&m.push(c(p.s));var _=0;g(\"percent initial\")&&_++,g(\"percent previous\")&&_++,g(\"percent total\")&&_++;var w=_>1;g(\"percent initial\")&&(f=a.formatPercent(p.begR),w&&(f+=\" of initial\"),m.push(f)),g(\"percent previous\")&&(f=a.formatPercent(p.difR),w&&(f+=\" of previous\"),m.push(f)),g(\"percent total\")&&(f=a.formatPercent(p.sumR),w&&(f+=\" of total\"),m.push(f))}return m.join(\"
\")}(e,r,n,i):m.getValue(s.text,r);return m.coerceString(y,o)}(C,n,i,T,M);w=function(t,e){var r=m.getValue(t.textposition,e);return m.coerceEnumerated(x,r)}(I,i);var D=\"stack\"===g.mode||\"relative\"===g.mode,R=n[i],F=!D||R._outmost;if(!z||\"none\"===w||(R.isBlank||s===c||f===p)&&(\"auto\"===w||\"inside\"===w))return void r.select(\"text\").remove();var B=C.font,N=d.getBarColor(n[i],I),j=d.getInsideTextFont(I,i,B,N),U=d.getOutsideTextFont(I,i,B),V=r.datum();O?\"log\"===T.type&&V.s0<=0&&(s=T.range[0]=G*(Z/Y):Z>=Y*(X/G);G>0&&Y>0&&(J||K||Q)?w=\"inside\":(w=\"outside\",H.remove(),H=null)}else w=\"inside\";if(!H){W=a.ensureUniformFontSize(t,\"outside\"===w?U:j);var $=(H=P(r,z,W)).attr(\"transform\");if(H.attr(\"transform\",\"\"),q=l.bBox(H.node()),G=q.width,Y=q.height,H.attr(\"transform\",$),G<=0||Y<=0)return void H.remove()}var tt,et,rt=I.textangle;\"outside\"===w?(et=\"both\"===I.constraintext||\"outside\"===I.constraintext,tt=function(t,e,r,n,i,a){var o,s=!!a.isHorizontal,l=!!a.constrained,c=a.angle||0,u=i.width,f=i.height,h=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*_?_:0:h>2*_?_:0;var d=1;l&&(d=s?Math.min(1,p/f):Math.min(1,h/u));var m=S(c),g=E(i,m),v=(s?g.x:g.y)/2,y=(i.left+i.right)/2,x=(i.top+i.bottom)/2,b=(t+e)/2,w=(r+n)/2,T=0,A=0,M=s?k(e,t):k(r,n);s?(b=e-M*o,T=M*v):(w=n+M*o,A=-M*v);return{textX:y,textY:x,targetX:b,targetY:w,anchorX:T,anchorY:A,scale:d,rotate:m}}(s,c,f,p,q,{isHorizontal:O,constrained:et,angle:rt})):(et=\"both\"===I.constraintext||\"inside\"===I.constraintext,tt=L(s,c,f,p,q,{isHorizontal:O,constrained:et,angle:rt,anchor:I.insidetextanchor}));tt.fontSize=W.size,h(\"histogram\"===I.type?\"bar\":I.type,tt,C),R.transform=tt,A(H,C,g,v).attr(\"transform\",a.getTextTransform(tt))}(t,e,I,r,p,B,N,j,U,g,v),e.layerClipId&&l.hideOutsideRangePoint(c,I.select(\"text\"),w,C,f.xcalendar,f.ycalendar)}));var j=!1===f.cliponaxis;l.setClipUrl(c,j?null:e.layerClipId,t)}));c.getComponentMethod(\"errorbars\",\"plot\")(t,I,e,g)},toMoveInsideBar:L}},{\"../../components/color\":366,\"../../components/drawing\":388,\"../../components/fx/helpers\":402,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../../plots/cartesian/axes\":554,\"../../registry\":638,\"./attributes\":648,\"./constants\":650,\"./helpers\":654,\"./style\":662,\"./uniform_text\":664,\"@plotly/d3\":58,\"fast-isnumeric\":190}],660:[function(t,e,r){\"use strict\";function n(t,e,r,n,i){var a=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return i?[(a+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(a+o)/2,l]}e.exports=function(t,e){var r,i=t.cd,a=t.xaxis,o=t.yaxis,s=i[0].trace,l=\"funnel\"===s.type,c=\"h\"===s.orientation,u=[];if(!1===e)for(r=0;r1||0===i.bargap&&0===i.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr(\"shape-rendering\",\"crispEdges\")})),e.selectAll(\"g.points\").each((function(e){d(n.select(this),e[0].trace,t)})),s.getComponentMethod(\"errorbars\",\"style\")(e)},styleTextPoints:m,styleOnSelect:function(t,e,r){var i=e[0].trace;i.selectedpoints?function(t,e,r){a.selectedPointStyle(t.selectAll(\"path\"),e),function(t,e,r){t.each((function(t){var i,s=n.select(this);if(t.selected){i=o.ensureUniformFontSize(r,g(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(i.color=l),a.font(s,i)}else a.selectedTextStyle(s,e)}))}(t.selectAll(\"text\"),e,r)}(r,i,t):(d(r,i,t),s.getComponentMethod(\"errorbars\",\"style\")(r))},getInsideTextFont:y,getOutsideTextFont:x,getBarColor:_,resizeText:l}},{\"../../components/color\":366,\"../../components/drawing\":388,\"../../lib\":503,\"../../registry\":638,\"./attributes\":648,\"./helpers\":654,\"./uniform_text\":664,\"@plotly/d3\":58}],663:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\"),o=t(\"../../lib\").coercePattern;e.exports=function(t,e,r,s,l){var c=r(\"marker.color\",s),u=i(t,\"marker\");u&&a(t,e,l,r,{prefix:\"marker.\",cLetter:\"c\"}),r(\"marker.line.color\",n.defaultLine),i(t,\"marker.line\")&&a(t,e,l,r,{prefix:\"marker.line.\",cLetter:\"c\"}),r(\"marker.line.width\"),r(\"marker.opacity\"),o(r,\"marker.pattern\",c,u),r(\"selected.marker.color\"),r(\"unselected.marker.color\")}},{\"../../components/color\":366,\"../../components/colorscale/defaults\":376,\"../../components/colorscale/helpers\":377,\"../../lib\":503}],664:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\");function a(t){return\"_\"+t+\"Text_minsize\"}e.exports={recordMinTextSize:function(t,e,r){if(r.uniformtext.mode){var n=a(t),i=r.uniformtext.minsize,o=e.scale*e.fontSize;e.hide=o g.point\"}e.selectAll(s).each((function(t){var e=t.transform;e&&(e.scale=l&&e.hide?0:o/e.fontSize,n.select(this).select(\"text\").attr(\"transform\",i.getTextTransform(e)))}))}}}},{\"../../lib\":503,\"@plotly/d3\":58}],665:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../lib/extend\").extendFlat,a=t(\"../scatterpolar/attributes\"),o=t(\"../bar/attributes\");e.exports={r:a.r,theta:a.theta,r0:a.r0,dr:a.dr,theta0:a.theta0,dtheta:a.dtheta,thetaunit:a.thetaunit,base:i({},o.base,{}),offset:i({},o.offset,{}),width:i({},o.width,{}),text:i({},o.text,{}),hovertext:i({},o.hovertext,{}),marker:o.marker,hoverinfo:a.hoverinfo,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":493,\"../../plots/template_attributes\":633,\"../bar/attributes\":648,\"../scatterpolar/attributes\":1002}],666:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),a=t(\"../bar/arrays_to_calcdata\"),o=t(\"../bar/cross_trace_calc\").setGroupPositions,s=t(\"../scatter/calc_selection\"),l=t(\"../../registry\").traceIs,c=t(\"../../lib\").extendFlat;e.exports={calc:function(t,e){for(var r=t._fullLayout,o=e.subplot,l=r[o].radialaxis,c=r[o].angularaxis,u=l.makeCalcdata(e,\"r\"),f=c.makeCalcdata(e,\"theta\"),h=e._length,p=new Array(h),d=u,m=f,g=0;gh.range[1]&&(x+=Math.PI);if(n.getClosest(c,(function(t){return m(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?g+Math.min(1,Math.abs(t.thetag1-t.thetag0)/v)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0}),t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=i.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,f,t),t.hovertemplate=u.hovertemplate,t.color=a(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign=\"left\"),[t]}}},{\"../../components/fx\":406,\"../../lib\":503,\"../../plots/polar/helpers\":621,\"../bar/hover\":655,\"../scatterpolar/hover\":1006}],669:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"barpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"bar\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"../scatterpolar/format_labels\"),style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),meta:{}}},{\"../../plots/polar\":622,\"../bar/select\":660,\"../bar/style\":662,\"../scatter/marker_colorbar\":945,\"../scatterpolar/format_labels\":1005,\"./attributes\":665,\"./calc\":666,\"./defaults\":667,\"./hover\":668,\"./layout_attributes\":670,\"./layout_defaults\":671,\"./plot\":672}],670:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},bargap:{valType:\"number\",dflt:.1,min:0,max:1,editType:\"calc\"}}},{}],671:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){var a,o={};function s(r,o){return n.coerce(t[a]||{},e[a],i,r,o)}for(var l=0;l0?(c=o,u=l):(c=l,u=o);var f=[s.findEnclosingVertexAngles(c,t.vangles)[0],(c+u)/2,s.findEnclosingVertexAngles(u,t.vangles)[1]];return s.pathPolygonAnnulus(n,i,c,u,f,e,r)};return function(t,n,i,o){return a.pathAnnulus(t,n,i,o,e,r)}}(e),p=e.layers.frontplot.select(\"g.barlayer\");a.makeTraceGroups(p,r,\"trace bars\").each((function(){var r=n.select(this),s=a.ensureSingle(r,\"g\",\"points\").selectAll(\"g.point\").data(a.identity);s.enter().append(\"g\").style(\"vector-effect\",\"non-scaling-stroke\").style(\"stroke-miterlimit\",2).classed(\"point\",!0),s.exit().remove(),s.each((function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=f.c2g(t.p0),d=t.thetag1=f.c2g(t.p1);if(i(o)&&i(s)&&i(p)&&i(d)&&o!==s&&p!==d){var m=u.c2g(t.s1),g=(p+d)/2;t.ct=[l.c2p(m*Math.cos(g)),c.c2p(m*Math.sin(g))],e=h(o,s,p,d)}else e=\"M0,0Z\";a.ensureSingle(r,\"path\").attr(\"d\",e)})),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)}))}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../plots/polar/helpers\":621,\"@plotly/d3\":58,\"fast-isnumeric\":190}],673:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../bar/attributes\"),a=t(\"../../components/color/attributes\"),o=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../lib/extend\").extendFlat,c=n.marker,u=c.line;e.exports={y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},y0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},dx:{valType:\"number\",editType:\"calc\"},dy:{valType:\"number\",editType:\"calc\"},xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,xhoverformat:o(\"x\"),yhoverformat:o(\"y\"),name:{valType:\"string\",editType:\"calc+clearAxisTypes\"},q1:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},median:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},q3:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},lowerfence:{valType:\"data_array\",editType:\"calc\"},upperfence:{valType:\"data_array\",editType:\"calc\"},notched:{valType:\"boolean\",editType:\"calc\"},notchwidth:{valType:\"number\",min:0,max:.5,dflt:.25,editType:\"calc\"},notchspan:{valType:\"data_array\",editType:\"calc\"},boxpoints:{valType:\"enumerated\",values:[\"all\",\"outliers\",\"suspectedoutliers\",!1],editType:\"calc\"},jitter:{valType:\"number\",min:0,max:1,editType:\"calc\"},pointpos:{valType:\"number\",min:-2,max:2,editType:\"calc\"},boxmean:{valType:\"enumerated\",values:[!0,\"sd\",!1],editType:\"calc\"},mean:{valType:\"data_array\",editType:\"calc\"},sd:{valType:\"data_array\",editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},quartilemethod:{valType:\"enumerated\",values:[\"linear\",\"exclusive\",\"inclusive\"],dflt:\"linear\",editType:\"calc\"},width:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},marker:{outliercolor:{valType:\"color\",dflt:\"rgba(0, 0, 0, 0)\",editType:\"style\"},symbol:l({},c.symbol,{arrayOk:!1,editType:\"plot\"}),opacity:l({},c.opacity,{arrayOk:!1,dflt:1,editType:\"style\"}),size:l({},c.size,{arrayOk:!1,editType:\"calc\"}),color:l({},c.color,{arrayOk:!1,editType:\"style\"}),line:{color:l({},u.color,{arrayOk:!1,dflt:a.defaultLine,editType:\"style\"}),width:l({},u.width,{arrayOk:!1,dflt:0,editType:\"style\"}),outliercolor:{valType:\"color\",editType:\"style\"},outlierwidth:{valType:\"number\",min:0,dflt:1,editType:\"style\"},editType:\"style\"},editType:\"plot\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,whiskerwidth:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"calc\"},offsetgroup:i.offsetgroup,alignmentgroup:i.alignmentgroup,selected:{marker:n.selected.marker,editType:\"style\"},unselected:{marker:n.unselected.marker,editType:\"style\"},text:l({},n.text,{}),hovertext:l({},n.hovertext,{}),hovertemplate:s({}),hoveron:{valType:\"flaglist\",flags:[\"boxes\",\"points\"],dflt:\"boxes+points\",editType:\"style\"}}},{\"../../components/color/attributes\":365,\"../../lib/extend\":493,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/template_attributes\":633,\"../bar/attributes\":648,\"../scatter/attributes\":927}],674:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/cartesian/align_period\"),o=t(\"../../lib\"),s=t(\"../../constants/numerical\").BADNUM,l=o._;e.exports=function(t,e){var r,c,y,x,b,_,w,T=t._fullLayout,k=i.getFromId(t,e.xaxis||\"x\"),A=i.getFromId(t,e.yaxis||\"y\"),M=[],S=\"violin\"===e.type?\"_numViolins\":\"_numBoxes\";\"h\"===e.orientation?(y=k,x=\"x\",b=A,_=\"y\",w=!!e.yperiodalignment):(y=A,x=\"y\",b=k,_=\"x\",w=!!e.xperiodalignment);var E,L,C,P,I,O,z=function(t,e,r,i){var s,l=e+\"0\"in t,c=\"d\"+e in t;if(e in t||l&&c){var u=r.makeCalcdata(t,e);return[a(t,r,e,u).vals,u]}s=l?t[e+\"0\"]:\"name\"in t&&(\"category\"===r.type||n(t.name)&&-1!==[\"linear\",\"log\"].indexOf(r.type)||o.isDateTime(t.name)&&\"date\"===r.type)?t.name:i;for(var f=\"multicategory\"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+\"calendar\"]),h=t._length,p=new Array(h),d=0;dE.uf};if(e._hasPreCompStats){var U=e[x],V=function(t){return y.d2c((e[t]||[])[r])},H=1/0,q=-1/0;for(r=0;r=E.q1&&E.q3>=E.med){var Y=V(\"lowerfence\");E.lf=Y!==s&&Y<=E.q1?Y:p(E,C,P);var W=V(\"upperfence\");E.uf=W!==s&&W>=E.q3?W:d(E,C,P);var X=V(\"mean\");E.mean=X!==s?X:P?o.mean(C,P):(E.q1+E.q3)/2;var Z=V(\"sd\");E.sd=X!==s&&Z>=0?Z:P?o.stdev(C,P,E.mean):E.q3-E.q1,E.lo=m(E),E.uo=g(E);var J=V(\"notchspan\");J=J!==s&&J>0?J:v(E,P),E.ln=E.med-J,E.un=E.med+J;var K=E.lf,Q=E.uf;e.boxpoints&&C.length&&(K=Math.min(K,C[0]),Q=Math.max(Q,C[P-1])),e.notched&&(K=Math.min(K,E.ln),Q=Math.max(Q,E.un)),E.min=K,E.max=Q}else{var $;o.warn([\"Invalid input - make sure that q1 <= median <= q3\",\"q1 = \"+E.q1,\"median = \"+E.med,\"q3 = \"+E.q3].join(\"\\n\")),$=E.med!==s?E.med:E.q1!==s?E.q3!==s?(E.q1+E.q3)/2:E.q1:E.q3!==s?E.q3:0,E.med=$,E.q1=E.q3=$,E.lf=E.uf=$,E.mean=E.sd=$,E.ln=E.un=$,E.min=E.max=$}H=Math.min(H,E.min),q=Math.max(q,E.max),E.pts2=L.filter(j),M.push(E)}}e._extremes[y._id]=i.findExtremes(y,[H,q],{padded:!0})}else{var tt=y.makeCalcdata(e,x),et=function(t,e){for(var r=t.length,n=new Array(r+1),i=0;i=0&&it0){var ut,ft;if((E={}).pos=E[_]=B[r],L=E.pts=nt[r].sort(f),P=(C=E[x]=L.map(h)).length,E.min=C[0],E.max=C[P-1],E.mean=o.mean(C,P),E.sd=o.stdev(C,P,E.mean),E.med=o.interp(C,.5),P%2&&(lt||ct))lt?(ut=C.slice(0,P/2),ft=C.slice(P/2+1)):ct&&(ut=C.slice(0,P/2+1),ft=C.slice(P/2)),E.q1=o.interp(ut,.5),E.q3=o.interp(ft,.5);else E.q1=o.interp(C,.25),E.q3=o.interp(C,.75);E.lf=p(E,C,P),E.uf=d(E,C,P),E.lo=m(E),E.uo=g(E);var ht=v(E,P);E.ln=E.med-ht,E.un=E.med+ht,at=Math.min(at,E.ln),ot=Math.max(ot,E.un),E.pts2=L.filter(j),M.push(E)}e._extremes[y._id]=i.findExtremes(y,e.notched?tt.concat([at,ot]):tt,{padded:!0})}return function(t,e){if(o.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r0?(M[0].t={num:T[S],dPos:N,posLetter:_,valLetter:x,labels:{med:l(t,\"median:\"),min:l(t,\"min:\"),q1:l(t,\"q1:\"),q3:l(t,\"q3:\"),max:l(t,\"max:\"),mean:\"sd\"===e.boxmean?l(t,\"mean \\xb1 \\u03c3:\"):l(t,\"mean:\"),lf:l(t,\"lower fence:\"),uf:l(t,\"upper fence:\")}},T[S]++,M):[{t:{empty:!0}}]};var c={text:\"tx\",hovertext:\"htx\"};function u(t,e,r){for(var n in c)o.isArrayOrTypedArray(e[n])&&(Array.isArray(r)?o.isArrayOrTypedArray(e[n][r[0]])&&(t[c[n]]=e[n][r[0]][r[1]]):t[c[n]]=e[n][r])}function f(t,e){return t.v-e.v}function h(t){return t.v}function p(t,e,r){return 0===r?t.q1:Math.min(t.q1,e[Math.min(o.findBin(2.5*t.q1-1.5*t.q3,e,!0)+1,r-1)])}function d(t,e,r){return 0===r?t.q3:Math.max(t.q3,e[Math.max(o.findBin(2.5*t.q3-1.5*t.q1,e),0)])}function m(t){return 4*t.q1-3*t.q3}function g(t){return 4*t.q3-3*t.q1}function v(t,e){return 0===e?0:1.57*(t.q3-t.q1)/Math.sqrt(e)}},{\"../../constants/numerical\":479,\"../../lib\":503,\"../../plots/cartesian/align_period\":551,\"../../plots/cartesian/axes\":554,\"fast-isnumeric\":190}],675:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/constraints\").getAxisGroup,o=[\"v\",\"h\"];function s(t,e,r,o){var s,l,c,u=e.calcdata,f=e._fullLayout,h=o._id,p=h.charAt(0),d=[],m=0;for(s=0;s1,b=1-f[t+\"gap\"],_=1-f[t+\"groupgap\"];for(s=0;s0){var q=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;q+G>=0&&((W=V*(q+G))>M?(H=!0,j=Y,B=W):W>R&&(j=Y,B=M)),W<=M&&(B=M);var X=0;q-G<=0&&((X=-V*(q-G))>S?(H=!0,U=Y,N=X):X>F&&(U=Y,N=S)),X<=S&&(N=S)}else B=M,N=S;var Z=new Array(c.length);for(l=0;l0?(g=\"v\",v=x>0?Math.min(_,b):Math.min(b)):x>0?(g=\"h\",v=Math.min(_)):v=0;if(v){e._length=v;var S=r(\"orientation\",g);e._hasPreCompStats?\"v\"===S&&0===x?(r(\"x0\",0),r(\"dx\",1)):\"h\"===S&&0===y&&(r(\"y0\",0),r(\"dy\",1)):\"v\"===S&&0===x?r(\"x0\"):\"h\"===S&&0===y&&r(\"y0\"),i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],a)}else e.visible=!1}function f(t,e,r,i){var a=i.prefix,o=n.coerce2(t,e,c,\"marker.outliercolor\"),s=r(\"marker.line.outliercolor\"),l=\"outliers\";e._hasPreCompStats?l=\"all\":(o||s)&&(l=\"suspectedoutliers\");var u=r(a+\"points\",l);u?(r(\"jitter\",\"all\"===u?.3:0),r(\"pointpos\",\"all\"===u?-1.5:0),r(\"marker.symbol\"),r(\"marker.opacity\"),r(\"marker.size\"),r(\"marker.color\",e.line.color),r(\"marker.line.color\"),r(\"marker.line.width\"),\"suspectedoutliers\"===u&&(r(\"marker.line.outliercolor\",e.marker.color),r(\"marker.line.outlierwidth\")),r(\"selected.marker.color\"),r(\"unselected.marker.color\"),r(\"selected.marker.size\"),r(\"unselected.marker.size\"),r(\"text\"),r(\"hovertext\")):delete e.marker;var f=r(\"hoveron\");\"all\"!==f&&-1===f.indexOf(\"points\")||r(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,i){function s(r,i){return n.coerce(t,e,c,r,i)}if(u(t,e,s,i),!1!==e.visible){o(t,e,i,s),s(\"xhoverformat\"),s(\"yhoverformat\");var l=e._hasPreCompStats;l&&(s(\"lowerfence\"),s(\"upperfence\")),s(\"line.color\",(t.marker||{}).color||r),s(\"line.width\"),s(\"fillcolor\",a.addOpacity(e.line.color,.5));var h=!1;if(l){var p=s(\"mean\"),d=s(\"sd\");p&&p.length&&(h=!0,d&&d.length&&(h=\"sd\"))}s(\"boxmean\",h),s(\"whiskerwidth\"),s(\"width\"),s(\"quartilemethod\");var m=!1;if(l){var g=s(\"notchspan\");g&&g.length&&(m=!0)}else n.validate(t.notchwidth,c.notchwidth)&&(m=!0);s(\"notched\",m)&&s(\"notchwidth\"),f(t,e,s,{prefix:\"box\"})}},crossTraceDefaults:function(t,e){var r,i;function a(t){return n.coerce(i._input,i,c,t)}for(var o=0;ot.lo&&(x.so=!0)}return a}));h.enter().append(\"path\").classed(\"point\",!0),h.exit().remove(),h.call(a.translatePoints,o,s)}function l(t,e,r,a){var o,s,l=e.val,c=e.pos,u=!!c.rangebreaks,f=a.bPos,h=a.bPosPxOffset||0,p=r.boxmean||(r.meanline||{}).visible;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var d=t.selectAll(\"path.mean\").data(\"box\"===r.type&&r.boxmean||\"violin\"===r.type&&r.box.visible&&r.meanline.visible?i.identity:[]);d.enter().append(\"path\").attr(\"class\",\"mean\").style({fill:\"none\",\"vector-effect\":\"non-scaling-stroke\"}),d.exit().remove(),d.each((function(t){var e=c.c2l(t.pos+f,!0),i=c.l2p(e-o)+h,a=c.l2p(e+s)+h,d=u?(i+a)/2:c.l2p(e)+h,m=l.c2p(t.mean,!0),g=l.c2p(t.mean-t.sd,!0),v=l.c2p(t.mean+t.sd,!0);\"h\"===r.orientation?n.select(this).attr(\"d\",\"M\"+m+\",\"+i+\"V\"+a+(\"sd\"===p?\"m0,0L\"+g+\",\"+d+\"L\"+m+\",\"+i+\"L\"+v+\",\"+d+\"Z\":\"\")):n.select(this).attr(\"d\",\"M\"+i+\",\"+m+\"H\"+a+(\"sd\"===p?\"m0,0L\"+d+\",\"+g+\"L\"+i+\",\"+m+\"L\"+d+\",\"+v+\"Z\":\"\"))}))}e.exports={plot:function(t,e,r,a){var c=e.xaxis,u=e.yaxis;i.makeTraceGroups(a,r,\"trace boxes\").each((function(t){var e,r,i=n.select(this),a=t[0],f=a.t,h=a.trace;(f.wdPos=f.bdPos*h.whiskerwidth,!0!==h.visible||f.empty)?i.remove():(\"h\"===h.orientation?(e=u,r=c):(e=c,r=u),o(i,{pos:e,val:r},h,f),s(i,{x:c,y:u},h,f),l(i,{pos:e,val:r},h,f))}))},plotBoxAndWhiskers:o,plotPoints:s,plotBoxMean:l}},{\"../../components/drawing\":388,\"../../lib\":503,\"@plotly/d3\":58}],683:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,i=t.cd,a=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r=10)return null;for(var i=1/0,a=-1/0,o=e.length,s=0;s0?Math.floor:Math.ceil,I=L>0?Math.ceil:Math.floor,O=L>0?Math.min:Math.max,z=L>0?Math.max:Math.min,D=P(S+C),R=I(E-C),F=[[f=M(S)]];for(a=D;a*L=0;i--)a[u-i]=t[f][i],o[u-i]=e[f][i];for(s.push({x:a,y:o,bicubic:l}),i=f,a=[],o=[];i>=0;i--)a[f-i]=t[i][0],o[f-i]=e[i][0];return s.push({x:a,y:o,bicubic:c}),s}},{}],697:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e,r){var a,o,s,l,c,u,f,h,p,d,m,g,v,y,x=t[\"_\"+e],b=t[e+\"axis\"],_=b._gridlines=[],w=b._minorgridlines=[],T=b._boundarylines=[],k=t[\"_\"+r],A=t[r+\"axis\"];\"array\"===b.tickmode&&(b.tickvals=x.slice());var M=t._xctrl,S=t._yctrl,E=M[0].length,L=M.length,C=t._a.length,P=t._b.length;n.prepTicks(b),\"array\"===b.tickmode&&delete b.tickvals;var I=b.smoothing?3:1;function O(n){var i,a,o,s,l,c,u,f,p,d,m,g,v=[],y=[],x={};if(\"b\"===e)for(a=t.b2j(n),o=Math.floor(Math.max(0,Math.min(P-2,a))),s=a-o,x.length=P,x.crossLength=C,x.xy=function(e){return t.evalxy([],e,a)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},i=0;i0&&(p=t.dxydi([],i-1,o,0,s),v.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],i-1,o,1,s),v.push(f[0]-d[0]/3),y.push(f[1]-d[1]/3)),v.push(f[0]),y.push(f[1]),l=f;else for(i=t.a2i(n),c=Math.floor(Math.max(0,Math.min(C-2,i))),u=i-c,x.length=C,x.crossLength=P,x.xy=function(e){return t.evalxy([],i,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},a=0;a0&&(m=t.dxydj([],c,a-1,u,0),v.push(l[0]+m[0]/3),y.push(l[1]+m[1]/3),g=t.dxydj([],c,a-1,u,1),v.push(f[0]-g[0]/3),y.push(f[1]-g[1]/3)),v.push(f[0]),y.push(f[1]),l=f;return x.axisLetter=e,x.axis=b,x.crossAxis=A,x.value=n,x.constvar=r,x.index=h,x.x=v,x.y=y,x.smoothing=A.smoothing,x}function z(n){var i,a,o,s,l,c=[],u=[],f={};if(f.length=x.length,f.crossLength=k.length,\"b\"===e)for(o=Math.max(0,Math.min(P-2,n)),l=Math.min(1,Math.max(0,n-o)),f.xy=function(e){return t.evalxy([],e,n)},f.dxy=function(e,r){return t.dxydi([],e,o,r,l)},i=0;ix.length-1||_.push(i(z(o),{color:b.gridcolor,width:b.gridwidth,dash:b.griddash}));for(h=u;hx.length-1||m<0||m>x.length-1))for(g=x[s],v=x[m],a=0;ax[x.length-1]||w.push(i(O(d),{color:b.minorgridcolor,width:b.minorgridwidth,dash:b.minorgriddash}));b.startline&&T.push(i(z(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(z(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort((function(t,e){return t-e})))[0],f=c[1],h=u;h<=f;h++)p=b.tick0+b.dtick*h,_.push(i(O(p),{color:b.gridcolor,width:b.gridwidth,dash:b.griddash}));for(h=u-1;hx[x.length-1]||w.push(i(O(d),{color:b.minorgridcolor,width:b.minorgridwidth,dash:b.minorgriddash}));b.startline&&T.push(i(O(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(O(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{\"../../lib/extend\":493,\"../../plots/cartesian/axes\":554}],698:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e){var r,a,o,s=e._labels=[],l=e._gridlines;for(r=0;re.length&&(t=t.slice(0,e.length)):t=[],i=0;i90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],712:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../components/drawing\"),a=t(\"./map_1d_array\"),o=t(\"./makepath\"),s=t(\"./orient_text\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../lib\"),u=c.strRotate,f=c.strTranslate,h=t(\"../../constants/alignment\");function p(t,e,r,s,l,c){var u=\"const-\"+l+\"-lines\",f=r.selectAll(\".\"+u).data(c);f.enter().append(\"path\").classed(u,!0).style(\"vector-effect\",\"non-scaling-stroke\"),f.each((function(r){var s=r,l=s.x,c=s.y,u=a([],l,t.c2p),f=a([],c,e.c2p),h=\"M\"+o(u,f,s.smoothing);n.select(this).attr(\"d\",h).style(\"stroke-width\",s.width).style(\"stroke\",s.color).style(\"stroke-dasharray\",i.dashStyle(s.dash,s.width)).style(\"fill\",\"none\")})),f.exit().remove()}function d(t,e,r,a,o,c,h,p){var d=c.selectAll(\"text.\"+p).data(h);d.enter().append(\"text\").classed(p,!0);var m=0,g={};return d.each((function(o,c){var h;if(\"auto\"===o.axis.tickangle)h=s(a,e,r,o.xy,o.dxy);else{var p=(o.axis.tickangle+180)*Math.PI/180;h=s(a,e,r,o.xy,[Math.cos(p),Math.sin(p)])}c||(g={angle:h.angle,flip:h.flip});var d=(o.endAnchor?-1:1)*h.flip,v=n.select(this).attr({\"text-anchor\":d>0?\"start\":\"end\",\"data-notex\":1}).call(i.font,o.font).text(o.text).call(l.convertToTspans,t),y=i.bBox(this);v.attr(\"transform\",f(h.p[0],h.p[1])+u(h.angle)+f(o.axis.labelpadding*d,.3*y.height)),m=Math.max(m,y.width+o.axis.labelpadding)})),d.exit().remove(),g.maxExtent=m,g}e.exports=function(t,e,r,i){var l=e.xaxis,u=e.yaxis,f=t._fullLayout._clips;c.makeTraceGroups(i,r,\"trace\").each((function(e){var r=n.select(this),i=e[0],h=i.trace,m=h.aaxis,g=h.baxis,y=c.ensureSingle(r,\"g\",\"minorlayer\"),x=c.ensureSingle(r,\"g\",\"majorlayer\"),b=c.ensureSingle(r,\"g\",\"boundarylayer\"),_=c.ensureSingle(r,\"g\",\"labellayer\");r.style(\"opacity\",h.opacity),p(l,u,x,m,\"a\",m._gridlines),p(l,u,x,g,\"b\",g._gridlines),p(l,u,y,m,\"a\",m._minorgridlines),p(l,u,y,g,\"b\",g._minorgridlines),p(l,u,b,m,\"a-boundary\",m._boundarylines),p(l,u,b,g,\"b-boundary\",g._boundarylines);var w=d(t,l,u,h,i,_,m._labels,\"a-label\"),T=d(t,l,u,h,i,_,g._labels,\"b-label\");!function(t,e,r,n,i,a,o,l){var u,f,h,p,d=c.aggNums(Math.min,null,r.a),m=c.aggNums(Math.max,null,r.a),g=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+m),f=g,h=r.ab2xy(u,f,!0),p=r.dxyda_rough(u,f),void 0===o.angle&&c.extendFlat(o,s(r,i,a,h,r.dxydb_rough(u,f)));v(t,e,r,n,h,p,r.aaxis,i,a,o,\"a-title\"),u=d,f=.5*(g+y),h=r.ab2xy(u,f,!0),p=r.dxydb_rough(u,f),void 0===l.angle&&c.extendFlat(l,s(r,i,a,h,r.dxyda_rough(u,f)));v(t,e,r,n,h,p,r.baxis,i,a,l,\"b-title\")}(t,_,h,i,l,u,w,T),function(t,e,r,n,i){var s,l,u,f,h=r.select(\"#\"+t._clipPathId);h.size()||(h=r.append(\"clipPath\").classed(\"carpetclip\",!0));var p=c.ensureSingle(h,\"path\",\"carpetboundary\"),d=e.clipsegments,m=[];for(f=0;f90&&y<270,b=n.select(this);b.text(h.title.text).call(l.convertToTspans,t),x&&(_=(-l.lineCount(b)+g)*m*a-_),b.attr(\"transform\",f(e.p[0],e.p[1])+u(e.angle)+f(0,_)).attr(\"text-anchor\",\"middle\").call(i.font,h.title.font)})),b.exit().remove()}},{\"../../components/drawing\":388,\"../../constants/alignment\":471,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"./makepath\":709,\"./map_1d_array\":710,\"./orient_text\":711,\"@plotly/d3\":58}],713:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"../../lib/search\").findBin,a=t(\"./compute_control_points\"),o=t(\"./create_spline_evaluator\"),s=t(\"./create_i_derivative_evaluator\"),l=t(\"./create_j_derivative_evaluator\");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,f=t.aaxis,h=t.baxis,p=e[0],d=e[c-1],m=r[0],g=r[u-1],v=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=v*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,m-=b,g+=b,t.isVisible=function(t,e){return t>p&&tm&&ed||eg},t.setScale=function(){var e=t._x,r=t._y,n=a(t._xctrl,t._yctrl,e,r,f.smoothing,h.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,f.smoothing,h.smoothing),t.dxydi=s([t._xctrl,t._yctrl],f.smoothing,h.smoothing),t.dxydj=l([t._xctrl,t._yctrl],f.smoothing,h.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(i(t,e),c-2)),n=e[r],a=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(a-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(i(t,r),u-2)),n=r[e],a=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(a-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,i,a){if(!a&&(ne[c-1]|ir[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(i),l=t.evalxy([],o,s);if(a){var f,h,p,d,m=0,g=0,v=[];ne[c-1]?(f=c-2,h=1,m=(n-e[c-1])/(e[c-1]-e[c-2])):h=o-(f=Math.max(0,Math.min(c-2,Math.floor(o)))),ir[u-1]?(p=u-2,d=1,g=(i-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),m&&(t.dxydi(v,f,p,h,d),l[0]+=v[0]*m,l[1]+=v[1]*m),g&&(t.dxydj(v,f,p,h,d),l[0]+=v[0]*g,l[1]+=v[1]*g)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,i){var a=t.dxydi(null,e,r,n,i),o=t.dadi(e,n);return[a[0]/o,a[1]/o]},t.dxydb=function(e,r,n,i){var a=t.dxydj(null,e,r,n,i),o=t.dbdj(r,i);return[a[0]/o,a[1]/o]},t.dxyda_rough=function(e,r,n){var i=v*(n||.1),a=t.ab2xy(e+i,r,!0),o=t.ab2xy(e-i,r,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dxydb_rough=function(e,r,n){var i=y*(n||.1),a=t.ab2xy(e,r+i,!0),o=t.ab2xy(e,r-i,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{\"../../lib/search\":523,\"./compute_control_points\":701,\"./constants\":702,\"./create_i_derivative_evaluator\":703,\"./create_j_derivative_evaluator\":704,\"./create_spline_evaluator\":705}],714:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r){var i,a,o,s=[],l=[],c=t[0].length,u=t.length;function f(e,r){var n,i=0,a=0;return e>0&&void 0!==(n=t[r][e-1])&&(a++,i+=n),e0&&void 0!==(n=t[r-1][e])&&(a++,i+=n),r0&&a0&&i1e-5);return n.log(\"Smoother converged to\",k,\"after\",A,\"iterations\"),t}},{\"../../lib\":503}],715:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArray1D;e.exports=function(t,e,r){var i=r(\"x\"),a=i&&i.length,o=r(\"y\"),s=o&&o.length;if(!a&&!s)return!1;if(e._cheater=!i,a&&!n(i)||s&&!n(o))e._length=null;else{var l=a?i.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{\"../../lib\":503}],716:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../scattergeo/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/color/attributes\").defaultLine,l=t(\"../../lib/extend\").extendFlat,c=i.marker.line;e.exports=l({locations:{valType:\"data_array\",editType:\"calc\"},locationmode:i.locationmode,z:{valType:\"data_array\",editType:\"calc\"},geojson:l({},i.geojson,{}),featureidkey:i.featureidkey,text:l({},i.text,{}),hovertext:l({},i.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:\"calc\"},opacity:{valType:\"number\",arrayOk:!0,min:0,max:1,dflt:1,editType:\"style\"},editType:\"calc\"},selected:{marker:{opacity:i.selected.marker.opacity,editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:i.unselected.marker.opacity,editType:\"plot\"},editType:\"plot\"},hoverinfo:l({},o.hoverinfo,{editType:\"calc\",flags:[\"location\",\"z\",\"text\",\"name\"]}),hovertemplate:n(),showlegend:l({},o.showlegend,{dflt:!1})},a(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/color/attributes\":365,\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/template_attributes\":633,\"../scattergeo/attributes\":969}],717:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../../components/colorscale/calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\");function l(t){return t&&\"string\"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var f=0;f\")}(t,f,o),[t]}},{\"../../lib\":503,\"../../plots/cartesian/axes\":554,\"./attributes\":716}],721:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"./calc\"),calcGeoJSON:t(\"./plot\").calcGeoJSON,plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"choropleth\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"noOpacity\",\"showLegend\"],meta:{}}},{\"../../plots/geo\":589,\"../heatmap/colorbar\":795,\"./attributes\":716,\"./calc\":717,\"./defaults\":718,\"./event_data\":719,\"./hover\":720,\"./plot\":722,\"./select\":723,\"./style\":724}],722:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=t(\"../../lib/geo_location_utils\"),o=t(\"../../lib/topojson_utils\").getTopojsonFeatures,s=t(\"../../plots/cartesian/autorange\").findExtremes,l=t(\"./style\").style;e.exports={calcGeoJSON:function(t,e){for(var r=t[0].trace,n=e[r.geo],i=n._subplot,l=r.locationmode,c=r._length,u=\"geojson-id\"===l?a.extractTraceFeature(t):o(r,i.topojson),f=[],h=[],p=0;p=0;n--){var i=r[n].id;if(\"string\"==typeof i&&0===i.indexOf(\"water\"))for(var a=n+1;a=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new o(t,r.uid),a=i.sourceId,s=n(e),l=i.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(a,{type:\"geojson\",data:s.geojson}),i._addLayers(s,l),e[0].trace._glTrace=i,i}},{\"../../plots/mapbox/constants\":611,\"./convert\":726}],730:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../mesh3d/attributes\"),s=t(\"../../plots/attributes\"),l=t(\"../../lib/extend\").extendFlat,c={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"scaled\",\"absolute\"],editType:\"calc\",dflt:\"scaled\"},sizeref:{valType:\"number\",editType:\"calc\",min:0},anchor:{valType:\"enumerated\",editType:\"calc\",values:[\"tip\",\"tail\",\"cm\",\"center\"],dflt:\"cm\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:a({editType:\"calc\"},{keys:[\"norm\"]}),uhoverformat:i(\"u\",1),vhoverformat:i(\"v\",1),whoverformat:i(\"w\",1),xhoverformat:i(\"x\"),yhoverformat:i(\"y\"),zhoverformat:i(\"z\"),showlegend:l({},s.showlegend,{dflt:!1})};l(c,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach((function(t){c[t]=o[t]})),c.hoverinfo=l({},s.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),c.transforms=void 0,e.exports=c},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/template_attributes\":633,\"../mesh3d/attributes\":867}],731:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){for(var r=e.u,i=e.v,a=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,i.length,a.length),s=-1/0,l=1/0,c=0;co.level||o.starts.length&&a===o.level)}break;case\"constraint\":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r\":p>c&&(n.prefixBoundary=!0);break;case\"<\":(pc||n.starts.length&&h===u)&&(n.prefixBoundary=!0);break;case\"][\":f=Math.min(p[0],p[1]),h=Math.max(p[0],p[1]),fc&&(n.prefixBoundary=!0)}}}},{}],738:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\"),i=t(\"./make_color_map\"),a=t(\"./end_plus\");e.exports={min:\"zmin\",max:\"zmax\",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=i(e,{isColorbar:!0});if(\"heatmap\"===c){var f=n.extractOpts(e);r._fillgradient=f.reversescale?n.flipScale(f.colorscale):f.colorscale,r._zrange=[f.min,f.max]}else\"fill\"===c&&(r._fillcolor=u);r._line={color:\"lines\"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:a(o),size:l}}}},{\"../../components/colorscale\":378,\"./end_plus\":746,\"./make_color_map\":751}],739:[function(t,e,r){\"use strict\";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],740:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./label_defaults\"),a=t(\"../../components/color\"),o=a.addOpacity,s=a.opacity,l=t(\"../../constants/filter_ops\"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,a,l,f){var h,p,d,m=e.contours,g=r(\"contours.operation\");(m._operation=c[g],function(t,e){var r;-1===u.indexOf(e.operation)?(t(\"contours.value\",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t(\"contours.value\",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,m),\"=\"===g?h=m.showlines=!0:(h=r(\"contours.showlines\"),d=r(\"fillcolor\",o((t.line||{}).color||l,.5))),h)&&(p=r(\"line.color\",d&&s(d)?o(e.fillcolor,1):l),r(\"line.width\",2),r(\"line.dash\"));r(\"line.smoothing\"),i(r,a,p,f)}},{\"../../components/color\":366,\"../../constants/filter_ops\":475,\"./label_defaults\":750,\"fast-isnumeric\":190}],741:[function(t,e,r){\"use strict\";var n=t(\"../../constants/filter_ops\"),i=t(\"fast-isnumeric\");function a(t,e){var r,a=Array.isArray(e);function o(t){return i(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(a?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=a?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=a?e.map(o):[o(e)]),r}function o(t){return function(e){e=a(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=a(t,e),end:1/0,size:1/0}}}e.exports={\"[]\":o(\"[]\"),\"][\":o(\"][\"),\">\":s(\">\"),\"<\":s(\"<\"),\"=\":s(\"=\")}},{\"../../constants/filter_ops\":475,\"fast-isnumeric\":190}],742:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i=n(\"contours.start\"),a=n(\"contours.end\"),o=!1===i||!1===a,s=r(\"contours.size\");!(o?e.autocontour=!0:r(\"autocontour\",!1))&&s||r(\"ncontours\")}},{}],743:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");function i(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,a,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case\"=\":case\"<\":return t;case\">\":for(1!==t.length&&n.warn(\"Contour data invalid for the specified inequality operation.\"),a=t[0],r=0;r1e3){n.warn(\"Too many contours, clipping at 1000\",t);break}return l}},{\"../../lib\":503,\"./constraint_mapping\":741,\"./end_plus\":746}],746:[function(t,e,r){\"use strict\";e.exports=function(t){return t.end+t.size/1e6}},{}],747:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./constants\");function a(t,e,r,n){return Math.abs(t[0]-e[0])20&&e?208===t||1114===t?n=0===r[0]?1:-1:a=0===r[1]?1:-1:-1!==i.BOTTOMSTART.indexOf(t)?a=1:-1!==i.LEFTSTART.indexOf(t)?n=1:-1!==i.TOPSTART.indexOf(t)?a=-1:n=-1;return[n,a]}(f,r,e),p=[s(t,e,[-h[0],-h[1]])],d=t.z.length,m=t.z[0].length,g=e.slice(),v=h.slice();for(c=0;c<1e4;c++){if(f>20?(f=i.CHOOSESADDLE[f][(h[0]||h[1])<0?0:1],t.crossings[u]=i.SADDLEREMAINDER[f]):delete t.crossings[u],!(h=i.NEWDELTA[f])){n.log(\"Found bad marching index:\",f,e,t.level);break}p.push(s(t,e,h)),e[0]+=h[0],e[1]+=h[1],u=e.join(\",\"),a(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=h[0]&&(e[0]<0||e[0]>m-2)||h[1]&&(e[1]<0||e[1]>d-2);if(e[0]===g[0]&&e[1]===g[1]&&h[0]===v[0]&&h[1]===v[1]||r&&y)break;f=t.crossings[u]}1e4===c&&n.log(\"Infinite loop in contour?\");var x,b,_,w,T,k,A,M,S,E,L,C,P,I,O,z=a(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c=B;c--)if((x=F[c])=B&&x+F[b]M&&S--,t.edgepaths[S]=L.concat(p,E));break}V||(t.edgepaths[M]=p.concat(E))}for(M=0;Mt?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,a,o,s,l,c,u,f,h=t[0].z,p=h.length,d=h[0].length,m=2===p||2===d;for(r=0;r=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):i.log(\"endpt to newendpt is not vert. or horz.\",r,n,y)}if(r=n,s>=0)break;f+=\"L\"+n}if(s===t.edgepaths.length){i.log(\"unclosed perimeter path\");break}h=s,(d=-1===p.indexOf(h))&&(h=p[0],f+=\"Z\")}for(h=0;hn.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(f)+Math.cos(c)*o);if(h<1||p<1)return 1/0;var d=v.EDGECOST*(1/(h-1)+1/(p-1));d+=v.ANGLECOST*c*c;for(var m=s-u,g=l-f,y=s+u,x=l+f,b=0;b2*v.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(h<=v.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var i=e.fontSize,a=e.width+i/3,o=Math.max(0,e.height-i/3),s=t.x,l=t.y,c=t.theta,u=Math.sin(c),f=Math.cos(c),h=function(t,e){return[s+t*f-e*u,l+t*u+e*f]},p=[h(-a/2,-o/2),h(-a/2,o/2),h(a/2,o/2),h(a/2,-o/2)];r.push({text:e.text,x:s,y:l,dy:e.dy,theta:c,level:e.level,width:a,height:o}),n.push(p)},r.drawLabels=function(t,e,r,a,o){var l=t.selectAll(\"text\").data(e,(function(t){return t.text+\",\"+t.x+\",\"+t.y+\",\"+t.theta}));if(l.exit().remove(),l.enter().append(\"text\").attr({\"data-notex\":1,\"text-anchor\":\"middle\"}).each((function(t){var e=t.x+Math.sin(t.theta)*t.dy,i=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:i,transform:\"rotate(\"+180*t.theta/Math.PI+\" \"+e+\" \"+i+\")\"}).call(s.convertToTspans,r)})),o){for(var c=\"\",u=0;ur.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),i.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if(\"constraint\"!==r.type){var c,u=r.start,f=r.end,h=t._input.contours;if(u>f&&(r.start=h.start=f,f=r.end=h.end=u,u=r.start),!(r.size>0))c=u===f?1:a(u,f,t.ncontours).dtick,h.size=r.size=c}}},{\"../../lib\":503,\"../../plots/cartesian/axes\":554}],755:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../components/drawing\"),a=t(\"../heatmap/style\"),o=t(\"./make_color_map\");e.exports=function(t){var e=n.select(t).selectAll(\"g.contour\");e.style(\"opacity\",(function(t){return t[0].trace.opacity})),e.each((function(t){var e=n.select(this),r=t[0].trace,a=r.contours,s=r.line,l=a.size||1,c=a.start,u=\"constraint\"===a.type,f=!u&&\"lines\"===a.coloring,h=!u&&\"fill\"===a.coloring,p=f||h?o(r):null;e.selectAll(\"g.contourlevel\").each((function(t){n.select(this).selectAll(\"path\").call(i.lineGroupStyle,s.width,f?p(t.level):s.color,s.dash)}));var d=a.labelfont;if(e.selectAll(\"g.contourlabels text\").each((function(t){i.font(n.select(this),{family:d.family,size:d.size,color:d.color||(f?p(t.level):s.color)})})),u)e.selectAll(\"g.contourfill path\").style(\"fill\",r.fillcolor);else if(h){var m;e.selectAll(\"g.contourfill path\").style(\"fill\",(function(t){return void 0===m&&(m=t.level),p(t.level+.5*l)})),void 0===m&&(m=c),e.selectAll(\"g.contourbg path\").style(\"fill\",p(m-.5*l))}})),a(t)}},{\"../../components/drawing\":388,\"../heatmap/style\":805,\"./make_color_map\":751,\"@plotly/d3\":58}],756:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/defaults\"),i=t(\"./label_defaults\");e.exports=function(t,e,r,a,o){var s,l=r(\"contours.coloring\"),c=\"\";\"fill\"===l&&(s=r(\"contours.showlines\")),!1!==s&&(\"lines\"!==l&&(c=r(\"line.color\",\"#000\")),r(\"line.width\",.5),r(\"line.dash\")),\"none\"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,a,r,{prefix:\"\",cLetter:\"z\"})),r(\"line.smoothing\"),i(r,a,c,o)}},{\"../../components/colorscale/defaults\":376,\"./label_defaults\":750}],757:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),i=t(\"../contour/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=i.contours;e.exports=o({carpet:{valType:\"string\",editType:\"calc\"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:i.fillcolor,autocontour:i.autocontour,ncontours:i.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:\"enumerated\",values:[\"fill\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:i.line.color,width:i.line.width,dash:i.line.dash,smoothing:i.line.smoothing,editType:\"plot\"},transforms:void 0},a(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../contour/attributes\":735,\"../heatmap/attributes\":792}],758:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\"),i=t(\"../../lib\"),a=t(\"../heatmap/convert_column_xyz\"),o=t(\"../heatmap/clean_2d_array\"),s=t(\"../heatmap/interp2d\"),l=t(\"../heatmap/find_empties\"),c=t(\"../heatmap/make_bound_array\"),u=t(\"./defaults\"),f=t(\"../carpet/lookup_carpetid\"),h=t(\"../contour/set_contours\");e.exports=function(t,e){var r=e._carpetTrace=f(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var m=function(t,e){var r,u,f,h,p,d,m,g=e._carpetTrace,v=g.aaxis,y=g.baxis;v._minDtick=0,y._minDtick=0,i.isArray1D(e.z)&&a(e,v,y,\"a\",\"b\",[\"z\"]);r=e._a=e._a||e.a,h=e._b=e._b||e.b,r=r?v.makeCalcdata(e,\"_a\"):[],h=h?y.makeCalcdata(e,\"_b\"):[],u=e.a0||0,f=e.da||1,p=e.b0||0,d=e.db||1,m=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(m),s(m,e._emptypoints);var x=i.maxRowLength(m),b=\"scaled\"===e.xtype?\"\":r,_=c(e,b,u,f,x,v),w=\"scaled\"===e.ytype?\"\":h,T=c(e,w,p,d,m.length,y),k={a:_,b:T,z:m};\"levels\"===e.contours.type&&\"none\"!==e.contours.coloring&&n(t,e,{vals:m,containerStr:\"\",cLetter:\"z\"});return[k]}(t,e);return h(e,e._z),m}}},{\"../../components/colorscale/calc\":374,\"../../lib\":503,\"../carpet/lookup_carpetid\":708,\"../contour/set_contours\":754,\"../heatmap/clean_2d_array\":794,\"../heatmap/convert_column_xyz\":796,\"../heatmap/find_empties\":798,\"../heatmap/interp2d\":801,\"../heatmap/make_bound_array\":803,\"./defaults\":759}],759:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../heatmap/xyz_defaults\"),a=t(\"./attributes\"),o=t(\"../contour/constraint_defaults\"),s=t(\"../contour/contours_defaults\"),l=t(\"../contour/style_defaults\");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,a,r,i)}if(u(\"carpet\"),t.a&&t.b){if(!i(t,e,u,c,\"a\",\"b\"))return void(e.visible=!1);u(\"text\"),\"constraint\"===u(\"contours.type\")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,(function(r){return n.coerce2(t,e,a,r)})),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{\"../../lib\":503,\"../contour/constraint_defaults\":740,\"../contour/contours_defaults\":742,\"../contour/style_defaults\":756,\"../heatmap/xyz_defaults\":807,\"./attributes\":757}],760:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../contour/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../contour/style\"),moduleType:\"trace\",name:\"contourcarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"contour\",\"symbols\",\"showLegend\",\"hasLines\",\"carpetDependent\",\"noHover\",\"noSortingByValue\"],meta:{}}},{\"../../plots/cartesian\":568,\"../contour/colorbar\":738,\"../contour/style\":755,\"./attributes\":757,\"./calc\":758,\"./defaults\":759,\"./plot\":761}],761:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../carpet/map_1d_array\"),a=t(\"../carpet/makepath\"),o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../contour/make_crossings\"),c=t(\"../contour/find_all_paths\"),u=t(\"../contour/plot\"),f=t(\"../contour/constants\"),h=t(\"../contour/convert_to_constraints\"),p=t(\"../contour/empty_pathinfo\"),d=t(\"../contour/close_boundaries\"),m=t(\"../carpet/lookup_carpetid\"),g=t(\"../carpet/axis_aligned_line\");function v(t,e,r){var n=t.getPointAtLength(e),i=t.getPointAtLength(r),a=i.x-n.x,o=i.y-n.y,s=Math.sqrt(a*a+o*o);return[a/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,\"contour\").each((function(r){var b=n.select(this),T=r[0],k=T.trace,A=k._carpetTrace=m(t,k),M=t.calcdata[A.index][0];if(A.visible&&\"legendonly\"!==A.visible){var S=T.a,E=T.b,L=k.contours,C=p(L,e,T),P=\"constraint\"===L.type,I=L._operation,O=P?\"=\"===I?\"lines\":\"fill\":L.coloring,z=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(C);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(C,D,R);var F,B,N,j,U=C;\"constraint\"===L.type&&(U=h(C,I)),function(t,e){var r,n,i,a,o,s,l,c,u;for(r=0;r=0;j--)F=M.clipsegments[j],B=i([],F.x,_.c2p),N=i([],F.y,w.c2p),B.reverse(),N.reverse(),V.push(a(B,N,F.bicubic));var H=\"M\"+V.join(\"L\")+\"Z\";!function(t,e,r,n,o,l){var c,u,f,h,p=s.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"!==l||o?[]:[0]);p.enter().append(\"path\"),p.exit().remove();var d=[];for(h=0;h=0&&(h=L,d=m):Math.abs(f[1]-h[1])=0&&(h=L,d=m):s.log(\"endpt to newendpt is not vert. or horz.\",f,h,L)}if(d>=0)break;y+=S(f,h),f=h}if(d===e.edgepaths.length){s.log(\"unclosed perimeter path\");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(f,h)+\"Z\",f=null)}for(u=0;ug&&(n.max=g);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*f.LABELMIN)))for(var i=Math.min(Math.ceil(n.len/I),f.LABELMAX),a=0;a0?+p[u]:0),f.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:v},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],T=[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,a.opacity(w)<1?w:a.addOpacity(w,0)];for(u=1;u<_.length;u++)T.push(_[u][0],_[u][1]);var k=[\"interpolate\",[\"linear\"],[\"get\",\"z\"],b.min,0,b.max,1];return i.extendFlat(c.heatmap.paint,{\"heatmap-weight\":d?k:1/(b.max-b.min),\"heatmap-color\":T,\"heatmap-radius\":m?{type:\"identity\",property:\"r\"}:e.radius,\"heatmap-opacity\":e.opacity}),c.geojson={type:\"FeatureCollection\",features:f},c.heatmap.layout.visibility=\"visible\",c}},{\"../../components/color\":366,\"../../components/colorscale\":378,\"../../constants/numerical\":479,\"../../lib\":503,\"../../lib/geojson_utils\":497,\"fast-isnumeric\":190}],765:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),a=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s(\"lon\")||[],c=s(\"lat\")||[],u=Math.min(l.length,c.length);u?(e._length=u,s(\"z\"),s(\"radius\"),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),i(t,e,o,s,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":376,\"../../lib\":503,\"./attributes\":762}],766:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],767:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../scattermapbox/hover\").hoverPoints,a=t(\"../scattermapbox/hover\").getExtraText;e.exports=function(t,e,r){var o=i(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,\"z\"in u){var f=s.subplot.mockAxis;s.z=u.z,s.zLabel=n.tickText(f,f.c2l(u.z),\"hover\").text}return s.extraText=a(c,u,l[0].t.labels),[s]}}},{\"../../plots/cartesian/axes\":554,\"../scattermapbox/hover\":998}],768:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),formatLabels:t(\"../scattermapbox/format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new a(t,r.uid),o=i.sourceId,s=n(e),l=i.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(o,{type:\"geojson\",data:s.geojson}),i._addLayers(s,l),i}},{\"../../plots/mapbox/constants\":611,\"./convert\":764}],770:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r\"),l.color=function(t,e){var r=t.marker,i=e.mc||r.color,a=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(i))return i;if(n(a)&&o)return a}(u,h),[l]}}},{\"../../components/color\":366,\"../../lib\":503,\"../bar/hover\":655}],778:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"funnel\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":568,\"../bar/select\":660,\"./attributes\":771,\"./calc\":772,\"./cross_trace_calc\":774,\"./defaults\":775,\"./event_data\":776,\"./hover\":777,\"./layout_attributes\":779,\"./layout_defaults\":780,\"./plot\":781,\"./style\":782}],779:[function(t,e,r){\"use strict\";e.exports={funnelmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},funnelgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},funnelgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],780:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s path\").each((function(t){if(!t.isBlank){var e=s.marker;n.select(this).call(a.fill,t.mc||e.color).call(a.stroke,t.mlc||e.line.color).call(i.dashLine,e.line.dash,t.mlw||e.line.width).style(\"opacity\",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(\".regions\").each((function(){n.select(this).selectAll(\"path\").style(\"stroke-width\",0).call(a.fill,s.connector.fillcolor)})),r.selectAll(\".lines\").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)}))}))}}},{\"../../components/color\":366,\"../../components/drawing\":388,\"../../constants/interactions\":478,\"../bar/style\":662,\"../bar/uniform_text\":664,\"@plotly/d3\":58}],783:[function(t,e,r){\"use strict\";var n=t(\"../pie/attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../plots/domain\").attributes,o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"../../lib/extend\").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:[\"label\",\"text\",\"value\",\"percent\"]}),texttemplate:s({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),hoverinfo:l({},i.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:o({},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),textposition:l({},n.textposition,{values:[\"inside\",\"none\"],dflt:\"inside\"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:[\"top left\",\"top center\",\"top right\"],dflt:\"top center\"}),editType:\"plot\"},domain:a({name:\"funnelarea\",trace:!0,editType:\"calc\"}),aspectratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},baseratio:{valType:\"number\",min:0,max:1,dflt:.333,editType:\"plot\"}}},{\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/domain\":584,\"../../plots/template_attributes\":633,\"../pie/attributes\":901}],784:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"funnelarea\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":619}],785:[function(t,e,r){\"use strict\";var n=t(\"../pie/calc\");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:\"funnelarea\"})}}},{\"../pie/calc\":903}],786:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText,s=t(\"../pie/defaults\").handleLabelsAndValues;e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,i,r,a)}var u=c(\"labels\"),f=c(\"values\"),h=s(u,f),p=h.len;if(e._hasLabels=h.hasLabels,e._hasValues=h.hasValues,!e._hasLabels&&e._hasValues&&(c(\"label0\"),c(\"dlabel\")),p){e._length=p,c(\"marker.line.width\")&&c(\"marker.line.color\",l.paper_bgcolor),c(\"marker.colors\"),c(\"scalegroup\");var d,m=c(\"text\"),g=c(\"texttemplate\");if(g||(d=c(\"textinfo\",Array.isArray(m)?\"text+percent\":\"percent\")),c(\"hovertext\"),c(\"hovertemplate\"),g||d&&\"none\"!==d){var v=c(\"textposition\");o(t,e,l,c,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}a(e,l,c),c(\"title.text\")&&(c(\"title.position\"),n.coerceFont(c,\"title.font\",l.font)),c(\"aspectratio\"),c(\"baseratio\")}else e.visible=!1}},{\"../../lib\":503,\"../../plots/domain\":584,\"../bar/defaults\":652,\"../pie/defaults\":904,\"./attributes\":783}],787:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"funnelarea\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"funnelarea\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\"),styleOne:t(\"../pie/style_one\"),meta:{}}},{\"../pie/style_one\":912,\"./attributes\":783,\"./base_plot\":784,\"./calc\":785,\"./defaults\":786,\"./layout_attributes\":788,\"./layout_defaults\":789,\"./plot\":790,\"./style\":791}],788:[function(t,e,r){\"use strict\";var n=t(\"../pie/layout_attributes\").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:\"colorlist\",editType:\"calc\"},extendfunnelareacolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{\"../pie/layout_attributes\":908}],789:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"hiddenlabels\"),r(\"funnelareacolorway\",e.colorway),r(\"extendfunnelareacolors\")}},{\"../../lib\":503,\"./layout_attributes\":788}],790:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../components/drawing\"),a=t(\"../../lib\"),o=a.strScale,s=a.strTranslate,l=t(\"../../lib/svg_text_utils\"),c=t(\"../bar/plot\").toMoveInsideBar,u=t(\"../bar/uniform_text\"),f=u.recordMinTextSize,h=u.clearMinTextSize,p=t(\"../pie/helpers\"),d=t(\"../pie/plot\"),m=d.attachFxHandlers,g=d.determineInsideTextFont,v=d.layoutAreas,y=d.prerenderTitles,x=d.positionTitleOutside,b=d.formatSliceLabel;function _(t,e){return\"l\"+(e[0]-t[0])+\",\"+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;h(\"funnelarea\",r),y(e,t),v(e,r._size),a.makeTraceGroups(r._funnelarealayer,e,\"trace\").each((function(e){var u=n.select(this),h=e[0],d=h.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,i=r.baseratio;i>.999&&(i=.999);var a,o=Math.pow(i,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var f,h,p=[];for(p.push(u()),f=t.length-1;f>-1;f--)if(!(h=t[f]).hidden){var d=h.v/l;c+=d,p.push(u())}var m=1/0,g=-1/0;for(f=0;f-1;f--)if(!(h=t[f]).hidden){var A=p[k+=1][0],M=p[k][1];h.TL=[-A,M],h.TR=[A,M],h.BL=w,h.BR=T,h.pxmid=(S=h.TR,E=h.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=h.TL,T=h.TR}var S,E}(e),u.each((function(){var u=n.select(this).selectAll(\"g.slice\").data(e);u.enter().append(\"g\").classed(\"slice\",!0),u.exit().remove(),u.each((function(o,s){if(o.hidden)n.select(this).selectAll(\"path,g\").remove();else{o.pointNumber=o.i,o.curveNumber=d.index;var u=h.cx,v=h.cy,y=n.select(this),x=y.selectAll(\"path.surface\").data([o]);x.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),y.call(m,t,e);var w=\"M\"+(u+o.TR[0])+\",\"+(v+o.TR[1])+_(o.TR,o.BR)+_(o.BR,o.BL)+_(o.BL,o.TL)+\"Z\";x.attr(\"d\",w),b(t,o,h);var T=p.castOption(d.textposition,o.pts),k=y.selectAll(\"g.slicetext\").data(o.text&&\"none\"!==T?[0]:[]);k.enter().append(\"g\").classed(\"slicetext\",!0),k.exit().remove(),k.each((function(){var h=a.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),p=a.ensureUniformFontSize(t,g(d,o,r.font));h.text(o.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(i.font,p).call(l.convertToTspans,t);var m,y,x,b=i.bBox(h.node()),_=Math.min(o.BL[1],o.BR[1])+v,w=Math.max(o.TL[1],o.TR[1])+v;y=Math.max(o.TL[0],o.BL[0])+u,x=Math.min(o.TR[0],o.BR[0])+u,(m=c(y,x,_,w,b,{isHorizontal:!0,constrained:!0,angle:0,anchor:\"middle\"})).fontSize=p.size,f(d.type,m,r),e[s].transform=m,h.attr(\"transform\",a.getTextTransform(m))}))}}));var v=n.select(this).selectAll(\"g.titletext\").data(d.title.text?[0]:[]);v.enter().append(\"g\").classed(\"titletext\",!0),v.exit().remove(),v.each((function(){var e=a.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),c=d.title.text;d._meta&&(c=a.templateString(c,d._meta)),e.text(c).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(i.font,d.title.font).call(l.convertToTspans,t);var u=x(h,r._size);e.attr(\"transform\",s(u.x,u.y)+o(Math.min(1,u.scale))+s(u.tx,u.ty))}))}))}))}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../bar/plot\":659,\"../bar/uniform_text\":664,\"../pie/helpers\":906,\"../pie/plot\":910,\"@plotly/d3\":58}],791:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../pie/style_one\"),a=t(\"../bar/uniform_text\").resizeText;e.exports=function(t){var e=t._fullLayout._funnelarealayer.selectAll(\".trace\");a(t,e,\"funnelarea\"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each((function(t){n.select(this).call(i,t,e)}))}))}},{\"../bar/uniform_text\":664,\"../pie/style_one\":912,\"@plotly/d3\":58}],792:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../plots/font_attributes\"),o=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/template_attributes\").texttemplateAttrs,c=t(\"../../components/colorscale/attributes\"),u=t(\"../../lib/extend\").extendFlat;e.exports=u({z:{valType:\"data_array\",editType:\"calc\"},x:u({},n.x,{impliedEdits:{xtype:\"array\"}}),x0:u({},n.x0,{impliedEdits:{xtype:\"scaled\"}}),dx:u({},n.dx,{impliedEdits:{xtype:\"scaled\"}}),y:u({},n.y,{impliedEdits:{ytype:\"array\"}}),y0:u({},n.y0,{impliedEdits:{ytype:\"scaled\"}}),dy:u({},n.dy,{impliedEdits:{ytype:\"scaled\"}}),xperiod:u({},n.xperiod,{impliedEdits:{xtype:\"scaled\"}}),yperiod:u({},n.yperiod,{impliedEdits:{ytype:\"scaled\"}}),xperiod0:u({},n.xperiod0,{impliedEdits:{xtype:\"scaled\"}}),yperiod0:u({},n.yperiod0,{impliedEdits:{ytype:\"scaled\"}}),xperiodalignment:u({},n.xperiodalignment,{impliedEdits:{xtype:\"scaled\"}}),yperiodalignment:u({},n.yperiodalignment,{impliedEdits:{ytype:\"scaled\"}}),text:{valType:\"data_array\",editType:\"calc\"},hovertext:{valType:\"data_array\",editType:\"calc\"},transpose:{valType:\"boolean\",dflt:!1,editType:\"calc\"},xtype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},ytype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},zsmooth:{valType:\"enumerated\",values:[\"fast\",\"best\",!1],dflt:!1,editType:\"calc\"},hoverongaps:{valType:\"boolean\",dflt:!0,editType:\"none\"},connectgaps:{valType:\"boolean\",editType:\"calc\"},xgap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},ygap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},xhoverformat:o(\"x\"),yhoverformat:o(\"y\"),zhoverformat:o(\"z\",1),hovertemplate:s(),texttemplate:l({arrayOk:!1,editType:\"plot\"},{keys:[\"x\",\"y\",\"z\",\"text\"]}),textfont:a({editType:\"plot\",autoSize:!0,autoColor:!0,colorEditType:\"style\"}),showlegend:u({},i.showlegend,{dflt:!1})},{transforms:void 0},c(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/font_attributes\":585,\"../../plots/template_attributes\":633,\"../scatter/attributes\":927}],793:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../plots/cartesian/align_period\"),s=t(\"../histogram2d/calc\"),l=t(\"../../components/colorscale/calc\"),c=t(\"./convert_column_xyz\"),u=t(\"./clean_2d_array\"),f=t(\"./interp2d\"),h=t(\"./find_empties\"),p=t(\"./make_bound_array\"),d=t(\"../../constants/numerical\").BADNUM;function m(t){for(var e=[],r=t.length,n=0;nD){O(\"x scale is not linear\");break}}if(x.length&&\"fast\"===P){var R=(x[x.length-1]-x[0])/(x.length-1),F=Math.abs(R/100);for(k=0;kF){O(\"y scale is not linear\");break}}}var B=i.maxRowLength(T),N=\"scaled\"===e.xtype?\"\":r,j=p(e,N,g,v,B,M),U=\"scaled\"===e.ytype?\"\":x,V=p(e,U,b,_,T.length,S);C||(e._extremes[M._id]=a.findExtremes(M,j),e._extremes[S._id]=a.findExtremes(S,V));var H={x:j,y:V,z:T,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(e.xperiodalignment&&y&&(H.orig_x=y),e.yperiodalignment&&w&&(H.orig_y=w),N&&N.length===j.length-1&&(H.xCenter=N),U&&U.length===V.length-1&&(H.yCenter=U),L&&(H.xRanges=A.xRanges,H.yRanges=A.yRanges,H.pts=A.pts),E||l(t,e,{vals:T,cLetter:\"z\"}),E&&e.contours&&\"heatmap\"===e.contours.coloring){var q={type:\"contour\"===e.type?\"heatmap\":\"histogram2d\",xcalendar:e.xcalendar,ycalendar:e.ycalendar};H.xfill=p(q,N,g,v,B,M),H.yfill=p(q,U,b,_,T.length,S)}return[H]}},{\"../../components/colorscale/calc\":374,\"../../constants/numerical\":479,\"../../lib\":503,\"../../plots/cartesian/align_period\":551,\"../../plots/cartesian/axes\":554,\"../../registry\":638,\"../histogram2d/calc\":826,\"./clean_2d_array\":794,\"./convert_column_xyz\":796,\"./find_empties\":798,\"./interp2d\":801,\"./make_bound_array\":803}],794:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,f,h;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,f=0;f=0;o--)(s=((f[[(r=(a=h[o])[0])-1,i=a[1]]]||m)[2]+(f[[r+1,i]]||m)[2]+(f[[r,i-1]]||m)[2]+(f[[r,i+1]]||m)[2])/20)&&(l[a]=[r,i,s],h.splice(o,1),c=!0);if(!c)throw\"findEmpties iterated with no new neighbors\";for(a in l)f[a]=l[a],u.push(l[a])}return u.sort((function(t,e){return e[2]-t[2]}))}},{\"../../lib\":503}],799:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../components/colorscale\").extractOpts;e.exports=function(t,e,r,s,l){l||(l={});var c,u,f,h,p=l.isContour,d=t.cd[0],m=d.trace,g=t.xa,v=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,T=d.zmask,k=m.zhoverformat,A=y,M=x;if(!1!==t.index){try{f=Math.round(t.index[1]),h=Math.round(t.index[0])}catch(e){return void i.error(\"Error hovering on heatmap, pointNumber must be [row,col], found:\",t.index)}if(f<0||f>=b[0].length||h<0||h>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(p){var S;for(A=[2*y[0]-y[1]],S=1;Sm&&(v=Math.max(v,Math.abs(t[a][o]-d)/(g-m))))}return v}e.exports=function(t,e){var r,i=1;for(o(t,e),r=0;r.01;r++)i=o(t,e,a(i));return i>.01&&n.log(\"interp2d didn't converge quickly\",i),t}},{\"../../lib\":503}],802:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){t(\"texttemplate\");var r=n.extendFlat({},e.font,{color:\"auto\",size:\"auto\"});n.coerceFont(t,\"textfont\",r)}},{\"../../lib\":503}],803:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,a,o,s){var l,c,u,f=[],h=n.traceIs(t,\"contour\"),p=n.traceIs(t,\"histogram\"),d=n.traceIs(t,\"gl2d\");if(i(e)&&e.length>1&&!p&&\"category\"!==s.type){var m=e.length;if(!(m<=o))return h?e.slice(0,o):e.slice(0,o+1);if(h||d)f=e.slice(0,o);else if(1===o)f=[e[0]-.5,e[0]+.5];else{for(f=[1.5*e[0]-.5*e[1]],u=1;u0;)_=w.c2p(R[S]),S--;for(_0;)M=T.c2p(F[S]),S--;if(MGt||Gt>T._length))for(E=Ut;EWt||Wt>w._length)){var Xt=u({x:Yt,y:qt},I,t._fullLayout);Xt.x=Yt,Xt.y=qt;var Zt=P.z[S][E];void 0===Zt?(Xt.z=\"\",Xt.zLabel=\"\"):(Xt.z=Zt,Xt.zLabel=s.tickText(Ft,Zt,\"hover\").text);var Jt=P.text&&P.text[S]&&P.text[S][E];void 0!==Jt&&!1!==Jt||(Jt=\"\"),Xt.text=Jt;var Kt=l.texttemplateString(Dt,Xt,t._fullLayout._d3locale,Xt,I._meta||{});if(Kt){var Qt=Kt.split(\"
\"),$t=Qt.length,te=0;for(L=0;L<$t;L++)te=Math.max(te,Qt[L].length);Ht.push({l:$t,c:te,t:Kt,x:Wt,y:Gt,z:Zt})}}}}var ee=I.textfont,re=ee.family,ne=ee.size,ie=t._fullLayout.font.size;if(!ne||\"auto\"===ne){var ae=1/0,oe=1/0,se=0,le=0;for(L=0;L0&&(a=!0);for(var l=0;la){var o=a-r[t];return r[t]=a,o}}return 0},max:function(t,e,r,i){var a=i[e];if(n(a)){if(a=Number(a),!n(r[t]))return r[t]=a,a;if(r[t]c?t>o?t>1.1*i?i:t>1.1*a?a:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,a,s){if(n&&t>o){var l=d(e,a,s),c=d(r,a,s),u=t===i?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,i,r).split(\"-\");return\"\"===n[0]&&(n.unshift(),n[0]=\"-\"+n[0]),n}e.exports=function(t,e,r,n,a){var s,l,c=-1.1*e,h=-.1*e,p=t-h,d=r[0],m=r[1],g=Math.min(f(d+h,d+p,n,a),f(m+h,m+p,n,a)),v=Math.min(f(d+c,d+h,n,a),f(m+c,m+h,n,a));if(g>v&&vo){var y=s===i?1:6,x=s===i?\"M12\":\"M1\";return function(e,r){var o=n.c2d(e,i,a),s=o.indexOf(\"-\",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,a);if(cr.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),z.start=r.l2r(j),F||i.nestedProperty(e,v+\".start\").set(z.start)}var U=b.end,V=r.r2l(O.end),H=void 0!==V;if((b.endFound||H)&&V!==r.r2l(U)){var q=H?V:i.aggNums(Math.max,null,d);z.end=r.l2r(q),H||i.nestedProperty(e,v+\".start\").set(z.end)}var G=\"autobin\"+s;return!1===e._input[G]&&(e._input[v]=i.extendFlat({},e[v]||{}),delete e._input[G],delete e[G]),[z,d]}e.exports={calc:function(t,e){var r,a,p,d,m=[],g=[],v=\"h\"===e.orientation,y=o.getFromId(t,v?e.yaxis:e.xaxis),x=v?\"y\":\"x\",b={x:\"y\",y:\"x\"}[x],_=e[x+\"calendar\"],w=e.cumulative,T=h(t,e,y,x),k=T[0],A=T[1],M=\"string\"==typeof k.size,S=[],E=M?S:k,L=[],C=[],P=[],I=0,O=e.histnorm,z=e.histfunc,D=-1!==O.indexOf(\"density\");w.enabled&&D&&(O=O.replace(/ ?density$/,\"\"),D=!1);var R,F=\"max\"===z||\"min\"===z?null:0,B=l.count,N=c[O],j=!1,U=function(t){return y.r2c(t,0,_)};for(i.isArrayOrTypedArray(e[b])&&\"count\"!==z&&(R=e[b],j=\"avg\"===z,B=l[z]),r=U(k.start),p=U(k.end)+(r-o.tickIncrement(r,k.size,!1,_))/1e6;r=0&&d=0;n--)s(n);else if(\"increasing\"===e){for(n=1;n=0;n--)t[n]+=t[n+1];\"exclude\"===r&&(t.push(0),t.shift())}}(g,w.direction,w.currentbin);var K=Math.min(m.length,g.length),Q=[],$=0,tt=K-1;for(r=0;r=$;r--)if(g[r]){tt=r;break}for(r=$;r<=tt;r++)if(n(m[r])&&n(g[r])){var et={p:m[r],s:g[r],b:0};w.enabled||(et.pts=P[r],Y?et.ph0=et.ph1=P[r].length?A[P[r][0]]:m[r]:(e._computePh=!0,et.ph0=q(S[r]),et.ph1=q(S[r+1],!0))),Q.push(et)}return 1===Q.length&&(Q[0].width1=o.tickIncrement(Q[0].p,k.size,!1,_)-Q[0].p),s(Q,e),i.isArrayOrTypedArray(e.selectedpoints)&&i.tagSelected(Q,e,Z),Q},calcAllAutoBins:h}},{\"../../lib\":503,\"../../plots/cartesian/axes\":554,\"../../registry\":638,\"../bar/arrays_to_calcdata\":647,\"./average\":813,\"./bin_functions\":815,\"./bin_label_vals\":816,\"./norm_functions\":824,\"fast-isnumeric\":190}],818:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"binNumber\"]}},{}],819:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../../registry\").traceIs,o=t(\"../bar/defaults\").handleGroupingDefaults,s=n.nestedProperty,l=t(\"../../plots/cartesian/constraints\").getAxisGroup,c=[{aStr:{x:\"xbins.start\",y:\"ybins.start\"},name:\"start\"},{aStr:{x:\"xbins.end\",y:\"ybins.end\"},name:\"end\"},{aStr:{x:\"xbins.size\",y:\"ybins.size\"},name:\"size\"},{aStr:{x:\"nbinsx\",y:\"nbinsy\"},name:\"nbins\"}],u=[\"x\",\"y\"];e.exports=function(t,e){var r,f,h,p,d,m,g,v=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return\"v\"===t.orientation?\"x\":\"y\"}function T(t,r,a){var o=t.uid+\"__\"+a;r||(r=o);var s=function(t,r){return i.getFromTrace({_fullLayout:e},t,r).type}(t,a),l=t[a+\"calendar\"]||\"\",c=v[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(a)):(r=o,s!==c.axType&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set on a\",\"type:\"+s,\"axis\",\"with bins on\",\"type:\"+c.axType,\"axis.\"].join(\" \")),l!==c.calendar&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set with a\",l,\"calendar\",\"with bins\",c.calendar?\"on a \"+c.calendar+\" calendar\":\"w/o a set calendar\"].join(\" \")))),u&&(v[r]={traces:[t],dirs:[a],axType:s,calendar:t[a+\"calendar\"]||\"\"}),t[\"_\"+a+\"bingroup\"]=r}for(d=0;dS&&T.splice(S,T.length-S),M.length>S&&M.splice(S,M.length-S);var E=[],L=[],C=[],P=\"string\"==typeof w.size,I=\"string\"==typeof A.size,O=[],z=[],D=P?O:w,R=I?z:A,F=0,B=[],N=[],j=e.histnorm,U=e.histfunc,V=-1!==j.indexOf(\"density\"),H=\"max\"===U||\"min\"===U?null:0,q=a.count,G=o[j],Y=!1,W=[],X=[],Z=\"z\"in e?e.z:\"marker\"in e&&Array.isArray(e.marker.color)?e.marker.color:\"\";Z&&\"count\"!==U&&(Y=\"avg\"===U,q=a[U]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-i.tickIncrement(K,J,!1,v))/1e6;for(r=K;r=0&&p=0&&d-1,flipY:E.tiling.flip.indexOf(\"y\")>-1,orientation:E.tiling.orientation,pad:{inner:E.tiling.pad},maxDepth:E._maxDepth}).descendants(),O=1/0,z=-1/0;I.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(O=Math.min(O,e),z=Math.max(z,e))})),p=p.data(I,u.getPtId),E._maxVisibleLayers=isFinite(z)?z-O+1:0,p.enter().append(\"g\").classed(\"slice\",!0),T(p,!1,{},[m,g],x),p.order();var D=null;if(w&&M){var R=u.getPtId(M);p.each((function(t){null===D&&u.getPtId(t)===R&&(D={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var F=function(){return D||{x0:0,x1:m,y0:0,y1:g}},B=p;return w&&(B=B.transition().each(\"end\",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),B.each((function(s){s._x0=v(s.x0),s._x1=v(s.x1),s._y0=y(s.y0),s._y1=y(s.y1),s._hoverX=v(s.x1-E.tiling.pad),s._hoverY=y(P?s.y1-E.tiling.pad/2:s.y0+E.tiling.pad/2);var p=n.select(this),d=i.ensureSingle(p,\"path\",\"surface\",(function(t){t.style(\"pointer-events\",\"all\")}));w?d.transition().attrTween(\"d\",(function(t){var e=k(t,!1,F(),[m,g],{orientation:E.tiling.orientation,flipX:E.tiling.flip.indexOf(\"x\")>-1,flipY:E.tiling.flip.indexOf(\"y\")>-1});return function(t){return x(e(t))}})):d.attr(\"d\",x),p.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),d.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text=\"\":s._text=h(s,r,E,e,S)||\"\";var T=i.ensureSingle(p,\"g\",\"slicetext\"),M=i.ensureSingle(T,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),I=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));M.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",C?\"end\":L?\"start\":\"middle\").call(a.font,I).call(o.convertToTspans,t),s.textBB=a.bBox(M.node()),s.transform=b(s,{fontSize:I.size}),s.transform.fontSize=I.size,w?M.transition().attrTween(\"transform\",(function(t){var e=A(t,!1,F(),[m,g]);return function(t){return _(e(t))}})):M.attr(\"transform\",_(s))})),D}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../sunburst/fx\":1054,\"../sunburst/helpers\":1055,\"../sunburst/plot\":1059,\"../treemap/constants\":1078,\"./partition\":842,\"./style\":844,\"@plotly/d3\":58}],839:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"icicle\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":945,\"./attributes\":834,\"./base_plot\":835,\"./calc\":836,\"./defaults\":837,\"./layout_attributes\":840,\"./layout_defaults\":841,\"./plot\":843,\"./style\":844}],840:[function(t,e,r){\"use strict\";e.exports={iciclecolorway:{valType:\"colorlist\",editType:\"calc\"},extendiciclecolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],841:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"iciclecolorway\",e.colorway),r(\"extendiciclecolors\")}},{\"../../lib\":503,\"./layout_attributes\":840}],842:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\"),i=t(\"../treemap/flip_tree\");e.exports=function(t,e,r){var a=r.flipX,o=r.flipY,s=\"h\"===r.orientation,l=r.maxDepth,c=e[0],u=e[1];l&&(c=(t.height+1)*e[0]/Math.min(t.height+1,l),u=(t.height+1)*e[1]/Math.min(t.height+1,l));var f=n.partition().padding(r.pad.inner).size(s?[e[1],c]:[e[0],u])(t);return(s||a||o)&&i(f,e,{swapXY:s,flipX:a,flipY:o}),f}},{\"../treemap/flip_tree\":1083,\"d3-hierarchy\":115}],843:[function(t,e,r){\"use strict\";var n=t(\"../treemap/draw\"),i=t(\"./draw_descendants\");e.exports=function(t,e,r,a){return n(t,e,r,a,{type:\"icicle\",drawDescendants:i})}},{\"../treemap/draw\":1080,\"./draw_descendants\":838}],844:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../components/color\"),a=t(\"../../lib\"),o=t(\"../bar/uniform_text\").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,\"marker.line.color\")||i.defaultLine,c=a.castOption(r,s,\"marker.line.width\")||0;t.style(\"stroke-width\",c).call(i.fill,n.color).call(i.stroke,l).style(\"opacity\",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._iciclelayer.selectAll(\".trace\");o(t,e,\"icicle\"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{\"../../components/color\":366,\"../../lib\":503,\"../bar/uniform_text\":664,\"@plotly/d3\":58}],845:[function(t,e,r){\"use strict\";for(var n=t(\"../../plots/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../lib/extend\").extendFlat,o=t(\"./constants\").colormodel,s=[\"rgb\",\"rgba\",\"rgba256\",\"hsl\",\"hsla\"],l=[],c=[],u=0;u0||n.inbox(r-o.y0,r-(o.y0+o.h*s.dy),0)>0)){var u,f=Math.floor((e-o.x0)/s.dx),h=Math.floor(Math.abs(r-o.y0)/s.dy);if(s._hasZ?u=o.z[h][f]:s._hasSource&&(u=s._canvas.el.getContext(\"2d\",{willReadFrequently:!0}).getImageData(f,h,1,1).data),u){var p,d=o.hi||s.hoverinfo;if(d){var m=d.split(\"+\");-1!==m.indexOf(\"all\")&&(m=[\"color\"]),-1!==m.indexOf(\"color\")&&(p=!0)}var g,v=a.colormodel[s.colormodel],y=v.colormodel||s.colormodel,x=y.length,b=s._scaler(u),_=v.suffix,w=[];(s.hovertemplate||p)&&(w.push(\"[\"+[b[0]+_[0],b[1]+_[1],b[2]+_[2]].join(\", \")),4===x&&w.push(\", \"+b[3]+_[3]),w.push(\"]\"),w=w.join(\"\"),t.extraText=y.toUpperCase()+\": \"+w),Array.isArray(s.hovertext)&&Array.isArray(s.hovertext[h])?g=s.hovertext[h][f]:Array.isArray(s.text)&&Array.isArray(s.text[h])&&(g=s.text[h][f]);var T=c.c2p(o.y0+(h+.5)*s.dy),k=o.x0+(f+.5)*s.dx,A=o.y0+(h+.5)*s.dy,M=\"[\"+u.slice(0,s.colormodel.length).join(\", \")+\"]\";return[i.extendFlat(t,{index:[h,f],x0:l.c2p(o.x0+f*s.dx),x1:l.c2p(o.x0+(f+1)*s.dx),y0:T,y1:T,color:b,xVal:k,xLabelVal:k,yVal:A,yLabelVal:A,zLabelVal:M,text:g,hovertemplateLabels:{zLabel:M,colorLabel:w,\"color[0]Label\":b[0]+_[0],\"color[1]Label\":b[1]+_[1],\"color[2]Label\":b[2]+_[2],\"color[3]Label\":b[3]+_[3]}})]}}}},{\"../../components/fx\":406,\"../../lib\":503,\"./constants\":847}],852:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"./style\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"image\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"noSortingByValue\"],animatable:!1,meta:{}}},{\"../../plots/cartesian\":568,\"./attributes\":845,\"./calc\":846,\"./defaults\":848,\"./event_data\":849,\"./hover\":851,\"./plot\":853,\"./style\":854}],853:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=i.strTranslate,o=t(\"../../constants/xmlns_namespaces\"),s=t(\"./constants\"),l=i.isIOS()||i.isSafari()||i.isIE();e.exports=function(t,e,r,c){var u=e.xaxis,f=e.yaxis,h=!(l||t._context._exportedPlot);i.makeTraceGroups(c,r,\"im\").each((function(e){var r=n.select(this),l=e[0],c=l.trace,p=(\"fast\"===c.zsmooth||!1===c.zsmooth&&h)&&!c._hasZ&&c._hasSource&&\"linear\"===u.type&&\"linear\"===f.type;c._realImage=p;var d,m,g,v,y,x,b=l.z,_=l.x0,w=l.y0,T=l.w,k=l.h,A=c.dx,M=c.dy;for(x=0;void 0===d&&x0;)m=u.c2p(_+x*A),x--;for(x=0;void 0===v&&x0;)y=f.c2p(w+x*M),x--;if(mI[0];if(O||z){var D=d+S/2,R=v+E/2;C+=\"transform:\"+a(D+\"px\",R+\"px\")+\"scale(\"+(O?-1:1)+\",\"+(z?-1:1)+\")\"+a(-D+\"px\",-R+\"px\")+\";\"}}L.attr(\"style\",C);var F=new Promise((function(t){if(c._hasZ)t();else if(c._hasSource)if(c._canvas&&c._canvas.el.width===T&&c._canvas.el.height===k&&c._canvas.source===c.source)t();else{var e=document.createElement(\"canvas\");e.width=T,e.height=k;var r=e.getContext(\"2d\",{willReadFrequently:!0});c._image=c._image||new Image;var n=c._image;n.onload=function(){r.drawImage(n,0,0),c._canvas={el:e,source:c.source},t()},n.setAttribute(\"src\",c.source)}})).then((function(){var t;if(c._hasZ)t=B((function(t,e){return b[e][t]})).toDataURL(\"image/png\");else if(c._hasSource)if(p)t=c.source;else{var e=c._canvas.el.getContext(\"2d\",{willReadFrequently:!0}).getImageData(0,0,T,k).data;t=B((function(t,r){var n=4*(r*T+t);return[e[n],e[n+1],e[n+2],e[n+3]]})).toDataURL(\"image/png\")}L.attr({\"xlink:href\":t,height:E,width:S,x:d,y:v})}));t._promises.push(F)}function B(t){var e=document.createElement(\"canvas\");e.width=S,e.height=E;var r,n=e.getContext(\"2d\",{willReadFrequently:!0}),a=function(t){return i.constrain(Math.round(u.c2p(_+t*A)-d),0,S)},o=function(t){return i.constrain(Math.round(f.c2p(w+t*M)-v),0,E)},h=s.colormodel[c.colormodel],p=h.colormodel||c.colormodel,m=h.fmt;for(x=0;x0}function T(t){t.each((function(t){y.stroke(n.select(this),t.line.color)})).each((function(t){y.fill(n.select(this),t.color)})).style(\"stroke-width\",(function(t){return t.line.width}))}function k(t,e,r){var n=t._fullLayout,i=o.extendFlat({type:\"linear\",ticks:\"outside\",range:r,showline:!0},e),a={type:\"linear\",_id:\"x\"+e._id},s={letter:\"x\",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return o.coerce(i,a,v,t,e)}return m(i,a,l,s,n),g(i,a,l,s),a}function A(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+\"x\"+r]}function M(t,e,r,i){var a=document.createElementNS(\"http://www.w3.org/2000/svg\",\"text\"),o=n.select(a);return o.text(t).attr(\"x\",0).attr(\"y\",0).attr(\"text-anchor\",r).attr(\"data-unformatted\",t).call(p.convertToTspans,i).call(f.font,e),f.bBox(o.node())}function S(t,e,r,n,i,a){var s=\"_cache\"+e;t[s]&&t[s].key===i||(t[s]={key:i,value:r});var l=o.aggNums(a,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,m){var g,v=t._fullLayout;w(r)&&m&&(g=m()),o.makeTraceGroups(v._indicatorlayer,e,\"trace\").each((function(e){var m,E,L,C,P,I=e[0].trace,O=n.select(this),z=I._hasGauge,D=I._isAngular,R=I._isBullet,F=I.domain,B={w:v._size.w*(F.x[1]-F.x[0]),h:v._size.h*(F.y[1]-F.y[0]),l:v._size.l+v._size.w*F.x[0],r:v._size.r+v._size.w*(1-F.x[1]),t:v._size.t+v._size.h*(1-F.y[1]),b:v._size.b+v._size.h*F.y[0]},N=B.l+B.w/2,j=B.t+B.h/2,U=Math.min(B.w/2,B.h),V=h.innerRadius*U,H=I.align||\"center\";if(E=j,z){if(D&&(m=N,E=j+U/2,L=function(t){return function(t,e){var r=Math.sqrt(t.width/2*(t.width/2)+t.height*t.height);return[e/r,t,e]}(t,.9*V)}),R){var q=h.bulletPadding,G=1-h.bulletNumberDomainSize+q;m=B.l+(G+(1-G)*b[H])*B.w,L=function(t){return A(t,(h.bulletNumberDomainSize-q)*B.w,B.h)}}}else m=B.l+b[H]*B.w,L=function(t){return A(t,B.w,B.h)};!function(t,e,r,i){var c,u,h,m=r[0].trace,g=i.numbersX,v=i.numbersY,T=m.align||\"center\",A=x[T],E=i.transitionOpts,L=i.onComplete,C=o.ensureSingle(e,\"g\",\"numbers\"),P=[];m._hasNumber&&P.push(\"number\");m._hasDelta&&(P.push(\"delta\"),\"left\"===m.delta.position&&P.reverse());var I=C.selectAll(\"text\").data(P);function O(e,r,n,i){if(!e.match(\"s\")||n>=0==i>=0||r(n).slice(-1).match(_)||r(i).slice(-1).match(_))return r;var a=e.slice().replace(\"s\",\"f\").replace(/\\d+/,(function(t){return parseInt(t)-1})),o=k(t,{tickformat:a});return function(t){return Math.abs(t)<1?d.tickText(o,t).text:r(t)}}I.enter().append(\"text\"),I.attr(\"text-anchor\",(function(){return A})).attr(\"class\",(function(t){return t})).attr(\"x\",null).attr(\"y\",null).attr(\"dx\",null).attr(\"dy\",null),I.exit().remove();var z,D=m.mode+m.align;m._hasDelta&&(z=function(){var e=k(t,{tickformat:m.delta.valueformat},m._range);e.setScale(),d.prepTicks(e);var i=function(t){return d.tickText(e,t).text},o=function(t){return m.delta.relative?t.relativeDelta:t.delta},s=function(t,e){return 0===t||\"number\"!=typeof t||isNaN(t)?\"-\":(t>0?m.delta.increasing.symbol:m.delta.decreasing.symbol)+e(t)},l=function(t){return t.delta>=0?m.delta.increasing.color:m.delta.decreasing.color};void 0===m._deltaLastValue&&(m._deltaLastValue=o(r[0]));var c=C.select(\"text.delta\");function h(){c.text(s(o(r[0]),i)).call(y.fill,l(r[0])).call(p.convertToTspans,t)}return c.call(f.font,m.delta.font).call(y.fill,l({delta:m._deltaLastValue})),w(E)?c.transition().duration(E.duration).ease(E.easing).tween(\"text\",(function(){var t=n.select(this),e=o(r[0]),c=m._deltaLastValue,u=O(m.delta.valueformat,i,c,e),f=a(c,e);return m._deltaLastValue=e,function(e){t.text(s(f(e),u)),t.call(y.fill,l({delta:f(e)}))}})).each(\"end\",(function(){h(),L&&L()})).each(\"interrupt\",(function(){h(),L&&L()})):h(),u=M(s(o(r[0]),i),m.delta.font,A,t),c}(),D+=m.delta.position+m.delta.font.size+m.delta.font.family+m.delta.valueformat,D+=m.delta.increasing.symbol+m.delta.decreasing.symbol,h=u);m._hasNumber&&(!function(){var e=k(t,{tickformat:m.number.valueformat},m._range);e.setScale(),d.prepTicks(e);var i=function(t){return d.tickText(e,t).text},o=m.number.suffix,s=m.number.prefix,l=C.select(\"text.number\");function u(){var e=\"number\"==typeof r[0].y?s+i(r[0].y)+o:\"-\";l.text(e).call(f.font,m.number.font).call(p.convertToTspans,t)}w(E)?l.transition().duration(E.duration).ease(E.easing).each(\"end\",(function(){u(),L&&L()})).each(\"interrupt\",(function(){u(),L&&L()})).attrTween(\"text\",(function(){var t=n.select(this),e=a(r[0].lastY,r[0].y);m._lastValue=r[0].y;var l=O(m.number.valueformat,i,r[0].lastY,r[0].y);return function(r){t.text(s+l(e(r))+o)}})):u(),c=M(s+i(r[0].y)+o,m.number.font,A,t)}(),D+=m.number.font.size+m.number.font.family+m.number.valueformat+m.number.suffix+m.number.prefix,h=c);if(m._hasDelta&&m._hasNumber){var R,F,B=[(c.left+c.right)/2,(c.top+c.bottom)/2],N=[(u.left+u.right)/2,(u.top+u.bottom)/2],j=.75*m.delta.font.size;\"left\"===m.delta.position&&(R=S(m,\"deltaPos\",0,-1*(c.width*b[m.align]+u.width*(1-b[m.align])+j),D,Math.min),F=B[1]-N[1],h={width:c.width+u.width+j,height:Math.max(c.height,u.height),left:u.left+R,right:c.right,top:Math.min(c.top,u.top+F),bottom:Math.max(c.bottom,u.bottom+F)}),\"right\"===m.delta.position&&(R=S(m,\"deltaPos\",0,c.width*(1-b[m.align])+u.width*b[m.align]+j,D,Math.max),F=B[1]-N[1],h={width:c.width+u.width+j,height:Math.max(c.height,u.height),left:c.left,right:u.right+R,top:Math.min(c.top,u.top+F),bottom:Math.max(c.bottom,u.bottom+F)}),\"bottom\"===m.delta.position&&(R=null,F=u.height,h={width:Math.max(c.width,u.width),height:c.height+u.height,left:Math.min(c.left,u.left),right:Math.max(c.right,u.right),top:c.bottom-c.height,bottom:c.bottom+u.height}),\"top\"===m.delta.position&&(R=null,F=c.top,h={width:Math.max(c.width,u.width),height:c.height+u.height,left:Math.min(c.left,u.left),right:Math.max(c.right,u.right),top:c.bottom-c.height-u.height,bottom:c.bottom}),z.attr({dx:R,dy:F})}(m._hasNumber||m._hasDelta)&&C.attr(\"transform\",(function(){var t=i.numbersScaler(h);D+=t[2];var e,r=S(m,\"numbersScale\",1,t[0],D,Math.min);m._scaleNumbers||(r=1),e=m._isAngular?v-r*h.bottom:v-r*(h.top+h.bottom)/2,m._numbersTop=r*h.top+e;var n=h[T];\"center\"===T&&(n=(h.left+h.right)/2);var a=g-r*n;return a=S(m,\"numbersTranslate\",0,a,D,Math.max),l(a,e)+s(r)}))}(t,O,e,{numbersX:m,numbersY:E,numbersScaler:L,transitionOpts:r,onComplete:g}),z&&(C={range:I.gauge.axis.range,color:I.gauge.bgcolor,line:{color:I.gauge.bordercolor,width:0},thickness:1},P={range:I.gauge.axis.range,color:\"rgba(0, 0, 0, 0)\",line:{color:I.gauge.bordercolor,width:I.gauge.borderwidth},thickness:1});var Y=O.selectAll(\"g.angular\").data(D?e:[]);Y.exit().remove();var W=O.selectAll(\"g.angularaxis\").data(D?e:[]);W.exit().remove(),D&&function(t,e,r,a){var o,s,f,h,p=r[0].trace,m=a.size,g=a.radius,v=a.innerRadius,y=a.gaugeBg,x=a.gaugeOutline,b=[m.l+m.w/2,m.t+m.h/2+g/2],_=a.gauge,A=a.layer,M=a.transitionOpts,S=a.onComplete,E=Math.PI/2;function L(t){var e=p.gauge.axis.range[0],r=(t-e)/(p.gauge.axis.range[1]-e)*Math.PI-E;return r<-E?-E:r>E?E:r}function C(t){return n.svg.arc().innerRadius((v+g)/2-t/2*(g-v)).outerRadius((v+g)/2+t/2*(g-v)).startAngle(-E)}function P(t){t.attr(\"d\",(function(t){return C(t.thickness).startAngle(L(t.range[0])).endAngle(L(t.range[1]))()}))}_.enter().append(\"g\").classed(\"angular\",!0),_.attr(\"transform\",l(b[0],b[1])),A.enter().append(\"g\").classed(\"angularaxis\",!0).classed(\"crisp\",!0),A.selectAll(\"g.xangularaxistick,path,text\").remove(),(o=k(t,p.gauge.axis)).type=\"linear\",o.range=p.gauge.axis.range,o._id=\"xangularaxis\",o.ticklabeloverflow=\"allow\",o.setScale();var I=function(t){return(o.range[0]-t.x)/(o.range[1]-o.range[0])*Math.PI+Math.PI},O={},z=d.makeLabelFns(o,0).labelStandoff;O.xFn=function(t){var e=I(t);return Math.cos(e)*z},O.yFn=function(t){var e=I(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(z+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*u)},O.anchorFn=function(t){var e=I(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},O.heightFn=function(t,e,r){var n=I(t);return-.5*(1+Math.sin(n))*r};var D=function(t){return l(b[0]+g*Math.cos(t),b[1]-g*Math.sin(t))};f=function(t){return D(I(t))};if(s=d.calcTicks(o),h=d.getTickSigns(o)[2],o.visible){h=\"inside\"===o.ticks?-1:1;var R=(o.linewidth||1)/2;d.drawTicks(t,o,{vals:s,layer:A,path:\"M\"+h*R+\",0h\"+h*o.ticklen,transFn:function(t){var e=I(t);return D(e)+\"rotate(\"+-c(e)+\")\"}}),d.drawLabels(t,o,{vals:s,layer:A,transFn:f,labelFns:O})}var F=[y].concat(p.gauge.steps),B=_.selectAll(\"g.bg-arc\").data(F);B.enter().append(\"g\").classed(\"bg-arc\",!0).append(\"path\"),B.select(\"path\").call(P).call(T),B.exit().remove();var N=C(p.gauge.bar.thickness),j=_.selectAll(\"g.value-arc\").data([p.gauge.bar]);j.enter().append(\"g\").classed(\"value-arc\",!0).append(\"path\");var U=j.select(\"path\");w(M)?(U.transition().duration(M.duration).ease(M.easing).each(\"end\",(function(){S&&S()})).each(\"interrupt\",(function(){S&&S()})).attrTween(\"d\",(V=N,H=L(r[0].lastY),q=L(r[0].y),function(){var t=i(H,q);return function(e){return V.endAngle(t(e))()}})),p._lastValue=r[0].y):U.attr(\"d\",\"number\"==typeof r[0].y?N.endAngle(L(r[0].y)):\"M0,0Z\");var V,H,q;U.call(T),j.exit().remove(),F=[];var G=p.gauge.threshold.value;(G||0===G)&&F.push({range:[G,G],color:p.gauge.threshold.color,line:{color:p.gauge.threshold.line.color,width:p.gauge.threshold.line.width},thickness:p.gauge.threshold.thickness});var Y=_.selectAll(\"g.threshold-arc\").data(F);Y.enter().append(\"g\").classed(\"threshold-arc\",!0).append(\"path\"),Y.select(\"path\").call(P).call(T),Y.exit().remove();var W=_.selectAll(\"g.gauge-outline\").data([x]);W.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"path\"),W.select(\"path\").call(P).call(T),W.exit().remove()}(t,0,e,{radius:U,innerRadius:V,gauge:Y,layer:W,size:B,gaugeBg:C,gaugeOutline:P,transitionOpts:r,onComplete:g});var X=O.selectAll(\"g.bullet\").data(R?e:[]);X.exit().remove();var Z=O.selectAll(\"g.bulletaxis\").data(R?e:[]);Z.exit().remove(),R&&function(t,e,r,n){var i,a,o,s,c,u=r[0].trace,f=n.gauge,p=n.layer,m=n.gaugeBg,g=n.gaugeOutline,v=n.size,x=u.domain,b=n.transitionOpts,_=n.onComplete;f.enter().append(\"g\").classed(\"bullet\",!0),f.attr(\"transform\",l(v.l,v.t)),p.enter().append(\"g\").classed(\"bulletaxis\",!0).classed(\"crisp\",!0),p.selectAll(\"g.xbulletaxistick,path,text\").remove();var A=v.h,M=u.gauge.bar.thickness*A,S=x.x[0],E=x.x[0]+(x.x[1]-x.x[0])*(u._hasNumber||u._hasDelta?1-h.bulletNumberDomainSize:1);(i=k(t,u.gauge.axis))._id=\"xbulletaxis\",i.domain=[S,E],i.setScale(),a=d.calcTicks(i),o=d.makeTransTickFn(i),s=d.getTickSigns(i)[2],c=v.t+v.h,i.visible&&(d.drawTicks(t,i,{vals:\"inside\"===i.ticks?d.clipEnds(i,a):a,layer:p,path:d.makeTickPath(i,c,s),transFn:o}),d.drawLabels(t,i,{vals:a,layer:p,transFn:o,labelFns:d.makeLabelFns(i,c)}));function L(t){t.attr(\"width\",(function(t){return Math.max(0,i.c2p(t.range[1])-i.c2p(t.range[0]))})).attr(\"x\",(function(t){return i.c2p(t.range[0])})).attr(\"y\",(function(t){return.5*(1-t.thickness)*A})).attr(\"height\",(function(t){return t.thickness*A}))}var C=[m].concat(u.gauge.steps),P=f.selectAll(\"g.bg-bullet\").data(C);P.enter().append(\"g\").classed(\"bg-bullet\",!0).append(\"rect\"),P.select(\"rect\").call(L).call(T),P.exit().remove();var I=f.selectAll(\"g.value-bullet\").data([u.gauge.bar]);I.enter().append(\"g\").classed(\"value-bullet\",!0).append(\"rect\"),I.select(\"rect\").attr(\"height\",M).attr(\"y\",(A-M)/2).call(T),w(b)?I.select(\"rect\").transition().duration(b.duration).ease(b.easing).each(\"end\",(function(){_&&_()})).each(\"interrupt\",(function(){_&&_()})).attr(\"width\",Math.max(0,i.c2p(Math.min(u.gauge.axis.range[1],r[0].y)))):I.select(\"rect\").attr(\"width\",\"number\"==typeof r[0].y?Math.max(0,i.c2p(Math.min(u.gauge.axis.range[1],r[0].y))):0);I.exit().remove();var O=r.filter((function(){return u.gauge.threshold.value||0===u.gauge.threshold.value})),z=f.selectAll(\"g.threshold-bullet\").data(O);z.enter().append(\"g\").classed(\"threshold-bullet\",!0).append(\"line\"),z.select(\"line\").attr(\"x1\",i.c2p(u.gauge.threshold.value)).attr(\"x2\",i.c2p(u.gauge.threshold.value)).attr(\"y1\",(1-u.gauge.threshold.thickness)/2*A).attr(\"y2\",(1-(1-u.gauge.threshold.thickness)/2)*A).call(y.stroke,u.gauge.threshold.line.color).style(\"stroke-width\",u.gauge.threshold.line.width),z.exit().remove();var D=f.selectAll(\"g.gauge-outline\").data([g]);D.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"rect\"),D.select(\"rect\").call(L).call(T),D.exit().remove()}(t,0,e,{gauge:X,layer:Z,size:B,gaugeBg:C,gaugeOutline:P,transitionOpts:r,onComplete:g});var J=O.selectAll(\"text.title\").data(e);J.exit().remove(),J.enter().append(\"text\").classed(\"title\",!0),J.attr(\"text-anchor\",(function(){return R?x.right:x[I.title.align]})).text(I.title.text).call(f.font,I.title.font).call(p.convertToTspans,t),J.attr(\"transform\",(function(){var t,e=B.l+B.w*b[I.title.align],r=h.titlePadding,n=f.bBox(J.node());if(z){if(D)if(I.gauge.axis.visible)t=f.bBox(W.node()).top-r-n.bottom;else t=B.t+B.h/2-U/2-n.bottom-r;R&&(t=E-(n.top+n.bottom)/2,e=B.l-h.bulletPadding*B.w)}else t=I._numbersTop-r-n.bottom;return l(e,t)}))}))}},{\"../../components/color\":366,\"../../components/drawing\":388,\"../../constants/alignment\":471,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../../plots/cartesian/axes\":554,\"../../plots/cartesian/axis_defaults\":556,\"../../plots/cartesian/layout_attributes\":569,\"../../plots/cartesian/position_defaults\":572,\"./constants\":858,\"@plotly/d3\":58,\"d3-interpolate\":116}],862:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../mesh3d/attributes\"),s=t(\"../../plots/attributes\"),l=t(\"../../lib/extend\").extendFlat,c=t(\"../../plot_api/edit_types\").overrideAll;var u=e.exports=c(l({x:{valType:\"data_array\"},y:{valType:\"data_array\"},z:{valType:\"data_array\"},value:{valType:\"data_array\"},isomin:{valType:\"number\"},isomax:{valType:\"number\"},surface:{show:{valType:\"boolean\",dflt:!0},count:{valType:\"integer\",dflt:2,min:1},fill:{valType:\"number\",min:0,max:1,dflt:1},pattern:{valType:\"flaglist\",flags:[\"A\",\"B\",\"C\",\"D\",\"E\"],extras:[\"all\",\"odd\",\"even\"],dflt:\"all\"}},spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}}},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:a(),xhoverformat:i(\"x\"),yhoverformat:i(\"y\"),zhoverformat:i(\"z\"),valuehoverformat:i(\"value\",1),showlegend:l({},s.showlegend,{dflt:!1})},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:o.opacity,lightposition:o.lightposition,lighting:o.lighting,flatshading:o.flatshading,contour:o.contour,hoverinfo:l({},s.hoverinfo)}),\"calc\",\"nested\");u.flatshading.dflt=!0,u.lighting.facenormalsepsilon.dflt=0,u.x.editType=u.y.editType=u.z.editType=u.value.editType=\"calc+clearAxisTypes\",u.transforms=void 0},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plot_api/edit_types\":536,\"../../plots/attributes\":550,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/template_attributes\":633,\"../mesh3d/attributes\":867}],863:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\"),i=t(\"../streamtube/calc\").processGrid,a=t(\"../streamtube/calc\").filter;e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length),e._x=a(e.x,e._len),e._y=a(e.y,e._len),e._z=a(e.z,e._len),e._value=a(e.value,e._len);var r=i(e);e._gridFill=r.fill,e._Xs=r.Xs,e._Ys=r.Ys,e._Zs=r.Zs,e._len=r.len;for(var o=1/0,s=-1/0,l=0;l0;r--){var n=Math.min(e[r],e[r-1]),i=Math.max(e[r],e[r-1]);if(i>n&&n-1}function R(t,e){return null===t?e:t}function F(e,r,n){C();var i,a,o,l=[r],c=[n];if(s>=1)l=[r],c=[n];else if(s>0){var u=function(t,e){var r=t[0],n=t[1],i=t[2],a=function(t,e,r){for(var n=[],i=0;i-1?n[p]:L(d,m,v);h[p]=x>-1?x:I(d,m,v,R(e,y))}i=h[0],a=h[1],o=h[2],t._meshI.push(i),t._meshJ.push(a),t._meshK.push(o),++g}}function B(t,e,r,n){var i=t[3];in&&(i=n);for(var a=(t[3]-i)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-a)*t[s]+a*e[s];return o}function N(t,e,r){return t>=e&&t<=r}function j(t){var e=.001*(E-S);return t>=S-e&&t<=E+e}function U(e){for(var r=[],n=0;n<4;n++){var i=e[n];r.push([t._x[i],t._y[i],t._z[i],t._value[i]])}return r}function V(t,e,r,n,i,a){a||(a=1),r=[-1,-1,-1];var o=!1,s=[N(e[0][3],n,i),N(e[1][3],n,i),N(e[2][3],n,i)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return j(e[0][3])&&j(e[1][3])&&j(e[2][3])?(F(t,e,r),!0):a<3&&V(t,e,r,S,E,++a)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach((function(a){if(s[a[0]]&&s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(h,u,n,i),d=B(h,f,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,o=l(t,[u,f,d],[r[a[0]],r[a[1]],-1])||o,c=!0}})),c||[[0,1,2],[1,2,0],[2,0,1]].forEach((function(a){if(s[a[0]]&&!s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(f,u,n,i),d=B(h,u,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,c=!0}})),o}function H(t,e,r,n){var i=!1,a=U(e),o=[N(a[0][3],r,n),N(a[1][3],r,n),N(a[2][3],r,n),N(a[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return i;if(o[0]&&o[1]&&o[2]&&o[3])return m&&(i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,a,e)||i),i;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]];if(m)i=F(t,[c,u,f],[e[l[0]],e[l[1]],e[l[2]]])||i;else{var p=B(h,c,r,n),d=B(h,u,r,n),g=B(h,f,r,n);i=F(null,[p,d,g],[-1,-1,-1])||i}s=!0}})),s?i:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(f,c,r,n),d=B(f,u,r,n),g=B(h,u,r,n),v=B(h,c,r,n);m?(i=F(t,[c,v,p],[e[l[0]],-1,-1])||i,i=F(t,[u,d,g],[e[l[1]],-1,-1])||i):i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(2,3,0)}(null,[p,d,g,v],[-1,-1,-1,-1])||i,s=!0}})),s||[[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach((function(l){if(o[l[0]]&&!o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(u,c,r,n),d=B(f,c,r,n),g=B(h,c,r,n);m?(i=F(t,[c,p,d],[e[l[0]],-1,-1])||i,i=F(t,[c,d,g],[e[l[0]],-1,-1])||i,i=F(t,[c,g,p],[e[l[0]],-1,-1])||i):i=F(null,[p,d,g],[-1,-1,-1])||i,s=!0}})),i)}function q(t,e,r,n,i,a,o,s,l,c,u){var f=!1;return d&&(D(t,\"A\")&&(f=H(null,[e,r,n,a],c,u)||f),D(t,\"B\")&&(f=H(null,[r,n,i,l],c,u)||f),D(t,\"C\")&&(f=H(null,[r,a,o,l],c,u)||f),D(t,\"D\")&&(f=H(null,[n,a,s,l],c,u)||f),D(t,\"E\")&&(f=H(null,[r,n,a,l],c,u)||f)),m&&(f=H(t,[r,n,a,l],c,u)||f),f}function G(t,e,r,n,i,a,o,s){return[!0===s[0]||V(t,U([e,r,n]),[e,r,n],a,o),!0===s[1]||V(t,U([n,i,e]),[n,i,e],a,o)]}function Y(t,e,r,n,i,a,o,s,l){return s?G(t,e,r,i,n,a,o,l):G(t,r,i,n,e,a,o,l)}function W(t,e,r,n,i,a,o){var s,l,c,u,f=!1,h=function(){f=V(t,[s,l,c],[-1,-1,-1],i,a)||f,f=V(t,[c,u,s],[-1,-1,-1],i,a)||f},p=o[0],d=o[1],m=o[2];return p&&(s=O(U([k(e,r-0,n-0)])[0],U([k(e-1,r-0,n-0)])[0],p),l=O(U([k(e,r-0,n-1)])[0],U([k(e-1,r-0,n-1)])[0],p),c=O(U([k(e,r-1,n-1)])[0],U([k(e-1,r-1,n-1)])[0],p),u=O(U([k(e,r-1,n-0)])[0],U([k(e-1,r-1,n-0)])[0],p),h()),d&&(s=O(U([k(e-0,r,n-0)])[0],U([k(e-0,r-1,n-0)])[0],d),l=O(U([k(e-0,r,n-1)])[0],U([k(e-0,r-1,n-1)])[0],d),c=O(U([k(e-1,r,n-1)])[0],U([k(e-1,r-1,n-1)])[0],d),u=O(U([k(e-1,r,n-0)])[0],U([k(e-1,r-1,n-0)])[0],d),h()),m&&(s=O(U([k(e-0,r-0,n)])[0],U([k(e-0,r-0,n-1)])[0],m),l=O(U([k(e-0,r-1,n)])[0],U([k(e-0,r-1,n-1)])[0],m),c=O(U([k(e-1,r-1,n)])[0],U([k(e-1,r-1,n-1)])[0],m),u=O(U([k(e-1,r-0,n)])[0],U([k(e-1,r-0,n-1)])[0],m),h()),f}function X(t,e,r,n,i,a,o,s,l,c,u,f){var h=t;return f?(d&&\"even\"===t&&(h=null),q(h,e,r,n,i,a,o,s,l,c,u)):(d&&\"odd\"===t&&(h=null),q(h,l,s,o,a,i,n,r,e,c,u))}function Z(t,e,r,n,i){for(var a=[],o=0,s=0;sMath.abs(d-M)?[A,d]:[d,M];$(e,T[0],T[1])}}var L=[[Math.min(S,M),Math.max(S,M)],[Math.min(A,E),Math.max(A,E)]];[\"x\",\"y\",\"z\"].forEach((function(e){for(var r=[],n=0;n0&&(u.push(p.id),\"x\"===e?f.push([p.distRatio,0,0]):\"y\"===e?f.push([0,p.distRatio,0]):f.push([0,0,p.distRatio]))}else c=nt(1,\"x\"===e?b-1:\"y\"===e?_-1:w-1);u.length>0&&(r[i]=\"x\"===e?tt(null,u,a,o,f,r[i]):\"y\"===e?et(null,u,a,o,f,r[i]):rt(null,u,a,o,f,r[i]),i++),c.length>0&&(r[i]=\"x\"===e?Z(null,c,a,o,r[i]):\"y\"===e?J(null,c,a,o,r[i]):K(null,c,a,o,r[i]),i++)}var d=t.caps[e];d.show&&d.fill&&(z(d.fill),r[i]=\"x\"===e?Z(null,[0,b-1],a,o,r[i]):\"y\"===e?J(null,[0,_-1],a,o,r[i]):K(null,[0,w-1],a,o,r[i]),i++)}})),0===g&&P(),t._meshX=n,t._meshY=i,t._meshZ=a,t._meshIntensity=o,t._Xs=v,t._Ys=y,t._Zs=x}(),t}e.exports={findNearestOnAxis:l,generateIsoMeshes:h,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new c(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}}},{\"../../../stackgl_modules\":1124,\"../../components/colorscale\":378,\"../../lib/gl_format_color\":499,\"../../lib/str2rgbarray\":528,\"../../plots/gl3d/zip3\":609}],865:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"./attributes\"),o=t(\"../../components/colorscale/defaults\");function s(t,e,r,n,a){var s=a(\"isomin\"),l=a(\"isomax\");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=a(\"x\"),u=a(\"y\"),f=a(\"z\"),h=a(\"value\");c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length?(i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],n),a(\"valuehoverformat\"),[\"x\",\"y\",\"z\"].forEach((function(t){a(t+\"hoverformat\");var e=\"caps.\"+t;a(e+\".show\")&&a(e+\".fill\");var r=\"slices.\"+t;a(r+\".show\")&&(a(r+\".fill\"),a(r+\".locations\"))})),a(\"spaceframe.show\")&&a(\"spaceframe.fill\"),a(\"surface.show\")&&(a(\"surface.count\"),a(\"surface.fill\"),a(\"surface.pattern\")),a(\"contour.show\")&&(a(\"contour.color\"),a(\"contour.width\")),[\"text\",\"hovertext\",\"hovertemplate\",\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"flatshading\",\"opacity\"].forEach((function(t){a(t)})),o(t,e,n,a,{prefix:\"\",cLetter:\"c\"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,i){s(t,e,r,i,(function(r,i){return n.coerce(t,e,a,r,i)}))},supplyIsoDefaults:s}},{\"../../components/colorscale/defaults\":376,\"../../lib\":503,\"../../registry\":638,\"./attributes\":862}],866:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\").createIsosurfaceTrace,moduleType:\"trace\",name:\"isosurface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"showLegend\"],meta:{}}},{\"../../plots/gl3d\":598,\"./attributes\":862,\"./calc\":863,\"./convert\":864,\"./defaults\":865}],867:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../surface/attributes\"),s=t(\"../../plots/attributes\"),l=t(\"../../lib/extend\").extendFlat;e.exports=l({x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},i:{valType:\"data_array\",editType:\"calc\"},j:{valType:\"data_array\",editType:\"calc\"},k:{valType:\"data_array\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:a({editType:\"calc\"}),xhoverformat:i(\"x\"),yhoverformat:i(\"y\"),zhoverformat:i(\"z\"),delaunayaxis:{valType:\"enumerated\",values:[\"x\",\"y\",\"z\"],dflt:\"z\",editType:\"calc\"},alphahull:{valType:\"number\",dflt:-1,editType:\"calc\"},intensity:{valType:\"data_array\",editType:\"calc\"},intensitymode:{valType:\"enumerated\",values:[\"vertex\",\"cell\"],dflt:\"vertex\",editType:\"calc\"},color:{valType:\"color\",editType:\"calc\"},vertexcolor:{valType:\"data_array\",editType:\"calc\"},facecolor:{valType:\"data_array\",editType:\"calc\"},transforms:void 0},n(\"\",{colorAttr:\"`intensity`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:o.opacity,flatshading:{valType:\"boolean\",dflt:!1,editType:\"calc\"},contour:{show:l({},o.contours.x.show,{}),color:o.contours.x.color,width:o.contours.x.width,editType:\"calc\"},lightposition:{x:l({},o.lightposition.x,{dflt:1e5}),y:l({},o.lightposition.y,{dflt:1e5}),z:l({},o.lightposition.z,{dflt:0}),editType:\"calc\"},lighting:l({vertexnormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-12,editType:\"calc\"},facenormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-6,editType:\"calc\"},editType:\"calc\"},o.lighting),hoverinfo:l({},s.hoverinfo,{editType:\"calc\"}),showlegend:l({},s.showlegend,{dflt:!1})})},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/template_attributes\":633,\"../surface/attributes\":1061}],868:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":374}],869:[function(t,e,r){\"use strict\";var n=t(\"../../../stackgl_modules\").gl_mesh3d,i=t(\"../../../stackgl_modules\").delaunay_triangulate,a=t(\"../../../stackgl_modules\").alpha_shape,o=t(\"../../../stackgl_modules\").convex_hull,s=t(\"../../lib/gl_format_color\").parseColorScale,l=t(\"../../lib/str2rgbarray\"),c=t(\"../../components/colorscale\").extractOpts,u=t(\"../../plots/gl3d/zip3\");function f(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.color=\"#fff\",this.data=null,this.showContour=!1}var h=f.prototype;function p(t){for(var e=[],r=t.length,n=0;n=e-.5)return!1;return!0}h.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.data._cellCenter?t.traceCoordinate=t.data.dataCoordinate:t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,f=t.x.length,h=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!g(t.i,f)||!g(t.j,f)||!g(t.k,f))return;n=u(m(t.i),m(t.j),m(t.k))}else n=0===t.alphahull?o(h):t.alphahull>0?a(t.alphahull,h):function(t,e){for(var r=[\"x\",\"y\",\"z\"].indexOf(t),n=[],a=e.length,o=0;ov):g=A>w,v=A;var M=c(w,T,k,A);M.pos=_,M.yc=(w+A)/2,M.i=b,M.dir=g?\"increasing\":\"decreasing\",M.x=M.pos,M.y=[k,T],y&&(M.orig_p=r[b]),d&&(M.tx=e.text[b]),m&&(M.htx=e.hovertext[b]),x.push(M)}else x.push({pos:_,empty:!0})}return e._extremes[l._id]=a.findExtremes(l,n.concat(h,f),{padded:!0}),x.length&&(x[0].t={labels:{open:i(t,\"open:\")+\" \",high:i(t,\"high:\")+\" \",low:i(t,\"low:\")+\" \",close:i(t,\"close:\")+\" \"}}),x}e.exports={calc:function(t,e){var r=a.getFromId(t,e.xaxis),i=a.getFromId(t,e.yaxis),s=function(t,e,r){var i=r._minDiff;if(!i){var a,s=t._fullData,l=[];for(i=1/0,a=0;a\"+c.labels[x]+n.hoverLabelText(s,b,l.yhoverformat):((y=i.extendFlat({},h)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b,l.yhoverformat),y.name=\"\",f.push(y),g[b]=y)}return f}function h(t,e,r,i){var a=t.cd,o=t.ya,l=a[0].trace,f=a[0].t,h=u(t,e,r,i);if(!h)return[];var p=a[h.index],d=h.index=p.i,m=p.dir;function g(t){return f.labels[t]+n.hoverLabelText(o,l[t][d],l.yhoverformat)}var v=p.hi||l.hoverinfo,y=v.split(\"+\"),x=\"all\"===v,b=x||-1!==y.indexOf(\"y\"),_=x||-1!==y.indexOf(\"text\"),w=b?[g(\"open\"),g(\"high\"),g(\"low\"),g(\"close\")+\" \"+c[m]]:[];return _&&s(p,l,w),h.extraText=w.join(\"
\"),h.y0=h.y1=o.c2p(p.yc,!0),[h]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?f(t,e,r,n):h(t,e,r,n)},hoverSplit:f,hoverOnPoints:h}},{\"../../components/color\":366,\"../../components/fx\":406,\"../../constants/delta.js\":473,\"../../lib\":503,\"../../plots/cartesian/axes\":554}],876:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"ohlc\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\"],meta:{},attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\").calc,plot:t(\"./plot\"),style:t(\"./style\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\")}},{\"../../plots/cartesian\":568,\"./attributes\":872,\"./calc\":873,\"./defaults\":874,\"./hover\":875,\"./plot\":878,\"./select\":879,\"./style\":880}],877:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\");e.exports=function(t,e,r,a){var o=r(\"x\"),s=r(\"open\"),l=r(\"high\"),c=r(\"low\"),u=r(\"close\");if(r(\"hoverlabel.split\"),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\"],a),s&&l&&c&&u){var f=Math.min(s.length,l.length,c.length,u.length);return o&&(f=Math.min(f,i.minRowLength(o))),e._length=f,f}}},{\"../../lib\":503,\"../../registry\":638}],878:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\");e.exports=function(t,e,r,a){var o=e.yaxis,s=e.xaxis,l=!!s.rangebreaks;i.makeTraceGroups(a,r,\"trace ohlc\").each((function(t){var e=n.select(this),r=t[0],a=r.t;if(!0!==r.trace.visible||a.empty)e.remove();else{var c=a.tickLen,u=e.selectAll(\"path\").data(i.identity);u.enter().append(\"path\"),u.exit().remove(),u.attr(\"d\",(function(t){if(t.empty)return\"M0,0Z\";var e=s.c2p(t.pos-c,!0),r=s.c2p(t.pos+c,!0),n=l?(e+r)/2:s.c2p(t.pos,!0);return\"M\"+e+\",\"+o.c2p(t.o,!0)+\"H\"+n+\"M\"+n+\",\"+o.c2p(t.h,!0)+\"V\"+o.c2p(t.l,!0)+\"M\"+r+\",\"+o.c2p(t.c,!0)+\"H\"+n}))}}))}},{\"../../lib\":503,\"@plotly/d3\":58}],879:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t.cd,i=t.xaxis,a=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map((function(t){return t.displayindex}))))for(e=0;e0;c&&(o=\"array\");var u=r(\"categoryorder\",o);\"array\"===u?(r(\"categoryarray\"),r(\"ticktext\")):(delete t.categoryarray,delete t.ticktext),c||\"array\"!==u||(e.categoryorder=\"trace\")}}e.exports=function(t,e,r,f){function h(r,i){return n.coerce(t,e,l,r,i)}var p=s(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=function(t,e,r,o,s){s(\"line.shape\"),s(\"line.hovertemplate\");var l=s(\"line.color\",o.colorway[0]);if(i(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),a(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,f,h);o(e,f,h),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,\"values\",d),h(\"hoveron\"),h(\"hovertemplate\"),h(\"arrangement\"),h(\"bundlecolors\"),h(\"sortpaths\"),h(\"counts\");var m={family:f.font.family,size:Math.round(f.font.size),color:f.font.color};n.coerceFont(h,\"labelfont\",m);var g={family:f.font.family,size:Math.round(f.font.size/1.2),color:f.font.color};n.coerceFont(h,\"tickfont\",g)}},{\"../../components/colorscale/defaults\":376,\"../../components/colorscale/helpers\":377,\"../../lib\":503,\"../../plots/array_container_defaults\":549,\"../../plots/domain\":584,\"../parcoords/merge_length\":898,\"./attributes\":881}],885:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcats\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":881,\"./base_plot\":882,\"./calc\":883,\"./defaults\":884,\"./plot\":887}],886:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"d3-interpolate\").interpolateNumber,a=t(\"../../plot_api/plot_api\"),o=t(\"../../components/fx\"),s=t(\"../../lib\"),l=s.strTranslate,c=t(\"../../components/drawing\"),u=t(\"tinycolor2\"),f=t(\"../../lib/svg_text_utils\");function h(t,e,r,i){var a=t.map(F.bind(0,e,r)),o=i.selectAll(\"g.parcatslayer\").data([null]);o.enter().append(\"g\").attr(\"class\",\"parcatslayer\").style(\"pointer-events\",\"all\");var u=o.selectAll(\"g.trace.parcats\").data(a,p),h=u.enter().append(\"g\").attr(\"class\",\"trace parcats\");u.attr(\"transform\",(function(t){return l(t.x,t.y)})),h.append(\"g\").attr(\"class\",\"paths\");var y=u.select(\"g.paths\").selectAll(\"path.path\").data((function(t){return t.paths}),p);y.attr(\"fill\",(function(t){return t.model.color}));var x=y.enter().append(\"path\").attr(\"class\",\"path\").attr(\"stroke-opacity\",0).attr(\"fill\",(function(t){return t.model.color})).attr(\"fill-opacity\",0);_(x),y.attr(\"d\",(function(t){return t.svgD})),x.empty()||y.sort(m),y.exit().remove(),y.on(\"mouseover\",g).on(\"mouseout\",v).on(\"click\",b),h.append(\"g\").attr(\"class\",\"dimensions\");var w=u.select(\"g.dimensions\").selectAll(\"g.dimension\").data((function(t){return t.dimensions}),p);w.enter().append(\"g\").attr(\"class\",\"dimension\"),w.attr(\"transform\",(function(t){return l(t.x,0)})),w.exit().remove();var A=w.selectAll(\"g.category\").data((function(t){return t.categories}),p),M=A.enter().append(\"g\").attr(\"class\",\"category\");A.attr(\"transform\",(function(t){return l(0,t.y)})),M.append(\"rect\").attr(\"class\",\"catrect\").attr(\"pointer-events\",\"none\"),A.select(\"rect.catrect\").attr(\"fill\",\"none\").attr(\"width\",(function(t){return t.width})).attr(\"height\",(function(t){return t.height})),T(M);var S=A.selectAll(\"rect.bandrect\").data((function(t){return t.bands}),p);S.each((function(){s.raiseToTop(this)})),S.attr(\"fill\",(function(t){return t.color}));var E=S.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"stroke-opacity\",0).attr(\"fill\",(function(t){return t.color})).attr(\"fill-opacity\",0);S.attr(\"fill\",(function(t){return t.color})).attr(\"width\",(function(t){return t.width})).attr(\"height\",(function(t){return t.height})).attr(\"y\",(function(t){return t.y})).attr(\"cursor\",(function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"perpendicular\"===t.parcatsViewModel.arrangement?\"ns-resize\":\"move\"})),k(E),S.exit().remove(),M.append(\"text\").attr(\"class\",\"catlabel\").attr(\"pointer-events\",\"none\");var z=e._fullLayout.paper_bgcolor;A.select(\"text.catlabel\").attr(\"text-anchor\",(function(t){return d(t)?\"start\":\"end\"})).attr(\"alignment-baseline\",\"middle\").style(\"text-shadow\",f.makeTextShadow(z)).style(\"fill\",\"rgb(0, 0, 0)\").attr(\"x\",(function(t){return d(t)?t.width+5:-5})).attr(\"y\",(function(t){return t.height/2})).text((function(t){return t.model.categoryLabel})).each((function(t){c.font(n.select(this),t.parcatsViewModel.categorylabelfont),f.convertToTspans(n.select(this),e)})),M.append(\"text\").attr(\"class\",\"dimlabel\"),A.select(\"text.dimlabel\").attr(\"text-anchor\",\"middle\").attr(\"alignment-baseline\",\"baseline\").attr(\"cursor\",(function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"ew-resize\"})).attr(\"x\",(function(t){return t.width/2})).attr(\"y\",-5).text((function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null})).each((function(t){c.font(n.select(this),t.parcatsViewModel.labelfont)})),A.selectAll(\"rect.bandrect\").on(\"mouseover\",L).on(\"mouseout\",C),A.exit().remove(),w.call(n.behavior.drag().origin((function(t){return{x:t.x,y:0}})).on(\"dragstart\",P).on(\"drag\",I).on(\"dragend\",O)),u.each((function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll(\"g.paths\").selectAll(\"path.path\"),t.dimensionSelection=n.select(this).selectAll(\"g.dimensions\").selectAll(\"g.dimension\")})),u.exit().remove()}function p(t){return t.key}function d(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function m(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor\"),L=n.mouse(f)[0];o.loneHover({trace:h,x:b-d.left+m.left,y:_-d.top+m.top,text:E,color:t.model.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:10,fontColor:T,idealAlign:L1&&h.displayInd===f.dimensions.length-1?(i=c.left,a=\"left\"):(i=c.left+c.width,a=\"right\");var m=u.model.count,g=u.model.categoryLabel,v=m/u.parcatsViewModel.model.count,y={countLabel:m,categoryLabel:g,probabilityLabel:v.toFixed(3)},x=[];-1!==u.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&x.push([\"Count:\",y.countLabel].join(\" \")),-1!==u.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&x.push([\"P(\"+y.categoryLabel+\"):\",y.probabilityLabel].join(\" \"));var b=x.join(\"
\");return{trace:p,x:o*(i-e.left),y:s*(d-e.top),text:b,color:\"lightgray\",borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:12,fontColor:\"black\",idealAlign:a,hovertemplate:p.hovertemplate,hovertemplateLabels:y,eventData:[{data:p._input,fullData:p,count:m,category:g,probability:v}]}}function L(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,i=r._fullLayout,a=i._paperdiv.node().getBoundingClientRect(),l=t.parcatsViewModel.hoveron;if(\"color\"===l?(!function(t){var e=n.select(t).datum(),r=A(e);w(r),r.each((function(){s.raiseToTop(this)})),n.select(t.parentNode).selectAll(\"rect.bandrect\").filter((function(t){return t.color===e.color})).each((function(){s.raiseToTop(this),n.select(this).attr(\"stroke\",\"black\").attr(\"stroke-width\",1.5)}))}(this),S(this,\"plotly_hover\",n.event)):(!function(t){n.select(t.parentNode).selectAll(\"rect.bandrect\").each((function(t){var e=A(t);w(e),e.each((function(){s.raiseToTop(this)}))})),n.select(t.parentNode).select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",2.5)}(this),M(this,\"plotly_hover\",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\"))\"category\"===l?e=E(r,a,this):\"color\"===l?e=function(t,e,r){t._fullLayout._calcInverseTransform(t);var i,a,o=t._fullLayout._invScaleX,s=t._fullLayout._invScaleY,l=r.getBoundingClientRect(),c=n.select(r).datum(),f=c.categoryViewModel,h=f.parcatsViewModel,p=h.model.dimensions[f.model.dimensionInd],d=h.trace,m=l.y+l.height/2;h.dimensions.length>1&&p.displayInd===h.dimensions.length-1?(i=l.left,a=\"left\"):(i=l.left+l.width,a=\"right\");var g=f.model.categoryLabel,v=c.parcatsViewModel.model.count,y=0;c.categoryViewModel.bands.forEach((function(t){t.color===c.color&&(y+=t.count)}));var x=f.model.count,b=0;h.pathSelection.each((function(t){t.model.color===c.color&&(b+=t.model.count)}));var _=y/v,w=y/b,T=y/x,k={countLabel:v,categoryLabel:g,probabilityLabel:_.toFixed(3)},A=[];-1!==f.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&A.push([\"Count:\",k.countLabel].join(\" \")),-1!==f.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&(A.push(\"P(color \\u2229 \"+g+\"): \"+k.probabilityLabel),A.push(\"P(\"+g+\" | color): \"+w.toFixed(3)),A.push(\"P(color | \"+g+\"): \"+T.toFixed(3)));var M=A.join(\"
\"),S=u.mostReadable(c.color,[\"black\",\"white\"]);return{trace:d,x:o*(i-e.left),y:s*(m-e.top),text:M,color:c.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontColor:S,fontSize:10,idealAlign:a,hovertemplate:d.hovertemplate,hovertemplateLabels:k,eventData:[{data:d._input,fullData:d,category:g,count:v,probability:_,categorycount:x,colorcount:b,bandcolorcount:y}]}}(r,a,this):\"dimension\"===l&&(e=function(t,e,r){var i=[];return n.select(r.parentNode.parentNode).selectAll(\"g.category\").select(\"rect.catrect\").each((function(){i.push(E(t,e,this))})),i}(r,a,this)),e&&o.loneHover(e,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r})}}function C(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(_(e.pathSelection),T(e.dimensionSelection.selectAll(\"g.category\")),k(e.dimensionSelection.selectAll(\"g.category\").selectAll(\"rect.bandrect\")),o.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(m),-1===e.hoverinfoItems.indexOf(\"skip\"))){\"color\"===t.parcatsViewModel.hoveron?S(this,\"plotly_unhover\",n.event):M(this,\"plotly_unhover\",n.event)}}function P(t){\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll(\"g.category\").select(\"rect.catrect\").each((function(e){var r=n.mouse(this)[0],i=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=i&&i<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map((function(t){return t.displayInd})),e.model.dragY=e.y,s.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll(\"rect.bandrect\").each((function(e){e.yf.y+f.height/2&&(o.model.displayInd=f.model.displayInd,f.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||\"freeform\"===t.parcatsViewModel.arrangement){a.model.dragX=n.event.x;var h=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[i];void 0!==h&&a.model.dragXp.x&&(a.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=a.model.displayInd}j(t.parcatsViewModel),N(t.parcatsViewModel),R(t.parcatsViewModel),D(t.parcatsViewModel)}}function O(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll(\"text\").attr(\"font-weight\",\"normal\");var e={},r=z(t.parcatsViewModel),i=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),o=t.initialDragDimensionDisplayInds.some((function(t,e){return t!==i[e]}));o&&i.forEach((function(r,n){var i=t.parcatsViewModel.model.dimensions[n].containerInd;e[\"dimensions[\"+i+\"].displayindex\"]=r}));var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map((function(t){return t.displayInd}));if(s=t.initialDragCategoryDisplayInds.some((function(t,e){return t!==l[e]}))){var c=t.model.categories.slice().sort((function(t,e){return t.displayInd-e.displayInd})),u=c.map((function(t){return t.categoryValue})),f=c.map((function(t){return t.categoryLabel}));e[\"dimensions[\"+t.model.containerInd+\"].categoryarray\"]=[u],e[\"dimensions[\"+t.model.containerInd+\"].ticktext\"]=[f],e[\"dimensions[\"+t.model.containerInd+\"].categoryorder\"]=\"array\"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")&&!t.dragHasMoved&&t.potentialClickBand&&(\"color\"===t.parcatsViewModel.hoveron?S(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent):M(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,j(t.parcatsViewModel),N(t.parcatsViewModel),n.transition().duration(300).ease(\"cubic-in-out\").each((function(){R(t.parcatsViewModel,!0),D(t.parcatsViewModel,!0)})).each(\"end\",(function(){(o||s)&&a.restyle(t.parcatsViewModel.graphDiv,e,[r])}))}}function z(t){for(var e,r=t.graphDiv._fullData,n=0;n=0;s--)u+=\"C\"+c[s]+\",\"+(e[s+1]+n)+\" \"+l[s]+\",\"+(e[s]+n)+\" \"+(t[s]+r[s])+\",\"+(e[s]+n),u+=\"l-\"+r[s]+\",0 \";return u+=\"Z\"}function N(t){var e=t.dimensions,r=t.model,n=e.map((function(t){return t.categories.map((function(t){return t.y}))})),i=t.model.dimensions.map((function(t){return t.categories.map((function(t){return t.displayInd}))})),a=t.model.dimensions.map((function(t){return t.displayInd})),o=t.dimensions.map((function(t){return t.model.dimensionInd})),s=e.map((function(t){return t.x})),l=e.map((function(t){return t.width})),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function f(t){var e=t.categoryInds.map((function(t,e){return i[e][t]}));return o.map((function(t){return e[t]}))}c.sort((function(e,r){var n=f(e),i=f(r);return\"backward\"===t.sortpaths&&(n.reverse(),i.reverse()),n.push(e.valueInds[0]),i.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),i.unshift(r.rawColor)),ni?1:0}));for(var h=new Array(c.length),p=e[0].model.count,d=e[0].categories.map((function(t){return t.height})).reduce((function(t,e){return t+e})),m=0;m0?d*(v.count/p):0;for(var y,x=new Array(n.length),b=0;b1?(t.width-80-16)/(n-1):0)*i;var a,o,s,l,c,u=[],f=t.model.maxCats,h=e.categories.length,p=e.count,d=t.height-8*(f-1),m=8*(f-h)/2,g=e.categories.map((function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}}));for(g.sort((function(t,e){return t.displayInd-e.displayInd})),c=0;c0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:a,y:null!==o.dragY?o.dragY:m,bands:[],parcatsViewModel:t},m=m+a+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){h(r,t,n,e)}},{\"../../components/drawing\":388,\"../../components/fx\":406,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../../plot_api/plot_api\":540,\"@plotly/d3\":58,\"d3-interpolate\":116,tinycolor2:312}],887:[function(t,e,r){\"use strict\";var n=t(\"./parcats\");e.exports=function(t,e,r,i){var a=t._fullLayout,o=a._paper,s=a._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,i)}},{\"./parcats\":886}],888:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/cartesian/layout_attributes\"),a=t(\"../../plots/font_attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/plot_template\").templatedArray;e.exports={domain:o({name:\"parcoords\",trace:!0,editType:\"plot\"}),labelangle:{valType:\"angle\",dflt:0,editType:\"plot\"},labelside:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},labelfont:a({editType:\"plot\"}),tickfont:a({editType:\"plot\"}),rangefont:a({editType:\"plot\"}),dimensions:l(\"dimension\",{label:{valType:\"string\",editType:\"plot\"},tickvals:s({},i.tickvals,{editType:\"plot\"}),ticktext:s({},i.ticktext,{editType:\"plot\"}),tickformat:s({},i.tickformat,{editType:\"plot\"}),visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},constraintrange:{valType:\"info_array\",freeLength:!0,dimensions:\"1-2\",items:[{valType:\"any\",editType:\"plot\"},{valType:\"any\",editType:\"plot\"}],editType:\"plot\"},multiselect:{valType:\"boolean\",dflt:!0,editType:\"plot\"},values:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"}),line:s({editType:\"calc\"},n(\"line\",{colorscaleDflt:\"Viridis\",autoColorDflt:!1,editTypeOverride:\"calc\"}))}},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plot_api/plot_template\":543,\"../../plots/cartesian/layout_attributes\":569,\"../../plots/domain\":584,\"../../plots/font_attributes\":585}],889:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"@plotly/d3\"),a=t(\"../../lib/gup\").keyFun,o=t(\"../../lib/gup\").repeat,s=t(\"../../lib\").sorterAsc,l=t(\"../../lib\").strTranslate,c=n.bar.snapRatio;function u(t,e){return t*(1-c)+e*c}var f=n.bar.snapClose;function h(t,e){return t*(1-f)+e*f}function p(t,e,r,n){if(function(t,e){for(var r=0;r=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var i=t?-1:1,a=0,o=e.length-1;if(i<0){var s=a;a=o,o=s}for(var l=e[a],c=l,f=a;i*fe){h=r;break}}if(a=u,isNaN(a)&&(a=isNaN(f)||isNaN(h)?isNaN(f)?h:f:e-c[f][1]t[1]+r||e=.9*t[1]+.1*t[0]?\"n\":e<=.9*t[0]+.1*t[1]?\"s\":\"ns\"}(d,e);m&&(o.interval=l[a],o.intervalPix=d,o.region=m)}}if(t.ordinal&&!o.region){var g=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function w(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.brush.svgBrush;a.wasDragged=!0,a._dragging=!0,a.grabbingBar?a.newExtent=[r-a.grabPoint,r+a.barLength-a.grabPoint].map(e.unitToPaddedPx.invert):a.newExtent=[a.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,a.extent=a.stayingIntervals.concat([a.newExtent]),a.brushCallback(e),b(t.parentNode)}function T(t,e){var r=_(e,e.height-i.mouse(t)[1]-2*n.verticalPadding),a=\"crosshair\";r.clickableOrdinalRange?a=\"pointer\":r.region&&(a=r.region+\"-resize\"),i.select(document.body).style(\"cursor\",a)}function k(t){t.on(\"mousemove\",(function(t){i.event.preventDefault(),t.parent.inBrushDrag||T(this,t)})).on(\"mouseleave\",(function(t){t.parent.inBrushDrag||y()})).call(i.behavior.drag().on(\"dragstart\",(function(t){!function(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.unitToPaddedPx.invert(r),o=e.brush,s=_(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar=\"ns\"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter((function(t){return t[0]!==l[0]&&t[1]!==l[1]}))),c.startExtent=s.region?l[\"s\"===s.region?1:0]:a,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)})).on(\"drag\",(function(t){w(this,t)})).on(\"dragend\",(function(t){!function(t,e){var r=e.brush,n=r.filter,a=r.svgBrush;a._dragging||(T(t,e),w(t,e),e.brush.svgBrush.wasDragged=!1),a._dragging=!1,i.event.sourceEvent.stopPropagation();var o=a.grabbingBar;if(a.grabbingBar=!1,a.grabLocation=void 0,e.parent.inBrushDrag=!1,y(),!a.wasDragged)return a.wasDragged=void 0,a.clickableOrdinalRange?r.filterSpecified&&e.multiselect?a.extent.push(a.clickableOrdinalRange):(a.extent=[a.clickableOrdinalRange],r.filterSpecified=!0):o?(a.extent=a.stayingIntervals,0===a.extent.length&&M(r)):M(r),a.brushCallback(e),b(t.parentNode),void a.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]a.newExtent[0];a.extent=a.stayingIntervals.concat(c?[a.newExtent]:[]),a.extent.length||M(r),a.brushCallback(e),c?b(t.parentNode,s):(s(),b(t.parentNode))}else s();a.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)})))}function A(t,e){return t[0]-e[0]}function M(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function S(t){for(var e,r=t.slice(),n=[],i=r.shift();i;){for(e=i.slice();(i=r.shift())&&i[0]<=e[1];)e[1]=Math.max(e[1],i[1]);n.push(e)}return 1===n.length&&n[0][0]>n[0][1]&&(n=[]),n}e.exports={makeBrush:function(t,e,r,n,i,a){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map((function(t){return t.slice().sort(s)})).sort(A)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=S(r),e=r.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=i,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map((function(t){return t.slice()}))}(e).slice();e.filter.set(r),o()}),brushEndCallback:a}}},ensureAxisBrush:function(t,e){var r=t.selectAll(\".\"+n.cn.axisBrush).data(o,a);r.enter().append(\"g\").classed(n.cn.axisBrush,!0),function(t,e){var r=t.selectAll(\".background\").data(o);r.enter().append(\"rect\").classed(\"background\",!0).call(d).call(m).style(\"pointer-events\",\"auto\").attr(\"transform\",l(0,n.verticalPadding)),r.call(k).attr(\"height\",(function(t){return t.height-n.verticalPadding}));var i=t.selectAll(\".highlight-shadow\").data(o);i.enter().append(\"line\").classed(\"highlight-shadow\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width+n.bar.strokeWidth).attr(\"stroke\",e).attr(\"opacity\",n.bar.strokeOpacity).attr(\"stroke-linecap\",\"butt\"),i.attr(\"y1\",(function(t){return t.height})).call(x);var a=t.selectAll(\".highlight\").data(o);a.enter().append(\"line\").classed(\"highlight\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width-n.bar.strokeWidth).attr(\"stroke\",n.bar.fillColor).attr(\"opacity\",n.bar.fillOpacity).attr(\"stroke-linecap\",\"butt\"),a.attr(\"y1\",(function(t){return t.height})).call(x)}(r,e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map((function(t){return t.sort(s)})),t=e.multiselect?S(t.sort(A)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map((function(t){var e=[p(0,r,t[0],[]),p(1,r,t[1],[])];if(e[1]>e[0])return e})).filter((function(t){return t}))).length)return}return t.length>1?t:t[0]}}},{\"../../lib\":503,\"../../lib/gup\":500,\"./constants\":893,\"@plotly/d3\":58}],890:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcoords\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"noOpacity\",\"noHover\"],meta:{}}},{\"./attributes\":888,\"./base_plot\":891,\"./calc\":892,\"./defaults\":894}],891:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\"),o=t(\"../../constants/xmlns_namespaces\");r.name=\"parcoords\",r.plot=function(t){var e=i(t.calcdata,\"parcoords\")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var i=n._has&&n._has(\"parcoords\"),a=e._has&&e._has(\"parcoords\");i&&!a&&(n._paperdiv.selectAll(\".parcoords\").remove(),n._glimages.selectAll(\"*\").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter((function(t,e){return e===r.size()-1})).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each((function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.style.width,height:this.style.height})})),window.setTimeout((function(){n.selectAll(\"#filterBarPattern\").attr(\"id\",\"filterBarPattern\")}),60)}},{\"../../constants/xmlns_namespaces\":480,\"../../plots/get_data\":593,\"./plot\":900,\"@plotly/d3\":58}],892:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../components/colorscale\"),a=t(\"../../lib/gup\").wrap;e.exports=function(t,e){var r,o;return i.hasColorscale(e,\"line\")&&n(e.line.color)?(r=e.line.color,o=i.extractOpts(e.line).colorscale,i.calc(t,e,{vals:r,containerStr:\"line\",cLetter:\"c\"})):(r=function(t){for(var e=new Array(t),r=0;rf&&(n.log(\"parcoords traces support up to \"+f+\" dimensions at the moment\"),d.splice(f));var m=s(t,e,{name:\"dimensions\",layout:l,handleItemDefaults:p}),g=function(t,e,r,o,s){var l=s(\"line.color\",r);if(i(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),a(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(m)&&m.length||(e.visible=!1),h(e,m,\"values\",g);var v={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,\"labelfont\",v),n.coerceFont(u,\"tickfont\",v),n.coerceFont(u,\"rangefont\",v),u(\"labelangle\"),u(\"labelside\")}},{\"../../components/colorscale/defaults\":376,\"../../components/colorscale/helpers\":377,\"../../lib\":503,\"../../plots/array_container_defaults\":549,\"../../plots/cartesian/axes\":554,\"../../plots/domain\":584,\"./attributes\":888,\"./axisbrush\":889,\"./constants\":893,\"./merge_length\":898}],895:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!(\"visible\"in t)}},{\"../../lib\":503}],896:[function(t,e,r){\"use strict\";var n=t(\"./base_index\");n.plot=t(\"./plot\"),e.exports=n},{\"./base_index\":890,\"./plot\":900}],897:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\\n p17_20, p21_24, p25_28, p29_32,\\n p33_36, p37_40, p41_44, p45_48,\\n p49_52, p53_56, p57_60, colors;\\n\\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\\n loA, hiA, loB, hiB, loC, hiC, loD, hiD;\\n\\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\\nuniform float maskHeight;\\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\\nuniform vec4 contextColor;\\nuniform sampler2D maskTexture, palette;\\n\\nbool isPick = (drwLayer > 1.5);\\nbool isContext = (drwLayer < 0.5);\\n\\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\\n\\nfloat val(mat4 p, mat4 v) {\\n return dot(matrixCompMult(p, v) * UNITS, UNITS);\\n}\\n\\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\\n float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\\n float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\\n return y1 * (1.0 - ratio) + y2 * ratio;\\n}\\n\\nint iMod(int a, int b) {\\n return a - b * (a / b);\\n}\\n\\nbool fOutside(float p, float lo, float hi) {\\n return (lo < hi) && (lo > p || p > hi);\\n}\\n\\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\\n return (\\n fOutside(p[0], lo[0], hi[0]) ||\\n fOutside(p[1], lo[1], hi[1]) ||\\n fOutside(p[2], lo[2], hi[2]) ||\\n fOutside(p[3], lo[3], hi[3])\\n );\\n}\\n\\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\\n return (\\n vOutside(p[0], lo[0], hi[0]) ||\\n vOutside(p[1], lo[1], hi[1]) ||\\n vOutside(p[2], lo[2], hi[2]) ||\\n vOutside(p[3], lo[3], hi[3])\\n );\\n}\\n\\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\\n return mOutside(A, loA, hiA) ||\\n mOutside(B, loB, hiB) ||\\n mOutside(C, loC, hiC) ||\\n mOutside(D, loD, hiD);\\n}\\n\\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\\n mat4 pnts[4];\\n pnts[0] = A;\\n pnts[1] = B;\\n pnts[2] = C;\\n pnts[3] = D;\\n\\n for(int i = 0; i < 4; ++i) {\\n for(int j = 0; j < 4; ++j) {\\n for(int k = 0; k < 4; ++k) {\\n if(0 == iMod(\\n int(255.0 * texture2D(maskTexture,\\n vec2(\\n (float(i * 2 + j / 2) + 0.5) / 8.0,\\n (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\\n ))[3]\\n ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\\n 2\\n )) return true;\\n }\\n }\\n }\\n return false;\\n}\\n\\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\\n float x = 0.5 * sign(v) + 0.5;\\n float y = axisY(x, A, B, C, D);\\n float z = 1.0 - abs(v);\\n\\n z += isContext ? 0.0 : 2.0 * float(\\n outsideBoundingBox(A, B, C, D) ||\\n outsideRasterMask(A, B, C, D)\\n );\\n\\n return vec4(\\n 2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\\n z,\\n 1.0\\n );\\n}\\n\\nvoid main() {\\n mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\\n mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\\n mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\\n mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\\n\\n float v = colors[3];\\n\\n gl_Position = position(isContext, v, A, B, C, D);\\n\\n fragColor =\\n isContext ? vec4(contextColor) :\\n isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\\n}\\n\"]),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n gl_FragColor = fragColor;\\n}\\n\"]),o=t(\"./constants\").maxDimensionCount,s=t(\"../../lib\"),l=new Uint8Array(4),c=new Uint8Array(4),u={shape:[256,1],format:\"rgba\",type:\"uint8\",mag:\"nearest\",min:\"nearest\"};function f(t,e,r,n,i){var a=t._gl;a.enable(a.SCISSOR_TEST),a.scissor(e,r,n,i),t.clear({color:[0,0,0,0],depth:1})}function h(t,e,r,n,i,a){var o=a.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:l})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,i-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],f(t,a.scissorX,a.scissorY,a.scissorWidth,a.viewBoxSize[1])),r.clearOnly||(a.count=2*c,a.offset=2*l*n,e(a),l*n+c>>8*e)%256/255}function m(t,e,r){for(var n=new Array(8*e),i=0,a=0;au&&(u=t[i].dim1.canvasX,o=i);0===s&&f(T,0,0,r.canvasWidth,r.canvasHeight);var p=function(t){var e,r,n,i=[[],[]];for(n=0;n<64;n++){var a=!t&&no._length&&(S=S.slice(0,o._length));var L,C=o.tickvals;function P(t,e){return{val:t,text:L[e]}}function I(t,e){return t.val-e.val}if(Array.isArray(C)&&C.length){L=o.ticktext,Array.isArray(L)&&L.length?L.length>C.length?L=L.slice(0,C.length):C.length>L.length&&(C=C.slice(0,L.length)):L=C.map(a(o.tickformat));for(var O=1;O=r||l>=i)return;var c=t.lineLayer.readPixel(s,i-1-l),u=0!==c[3],f=u?c[2]+256*(c[1]+256*c[0]):null,h={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:f};f!==B&&(u?a.hover(h):a.unhover&&a.unhover(h),B=f)}})),F.style(\"opacity\",(function(t){return t.pick?0:1})),h.style(\"background\",\"rgba(255, 255, 255, 0)\");var N=h.selectAll(\".\"+y.cn.parcoords).data(R,d);N.exit().remove(),N.enter().append(\"g\").classed(y.cn.parcoords,!0).style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"none\"),N.attr(\"transform\",(function(t){return c(t.model.translateX,t.model.translateY)}));var j=N.selectAll(\".\"+y.cn.parcoordsControlView).data(m,d);j.enter().append(\"g\").classed(y.cn.parcoordsControlView,!0),j.attr(\"transform\",(function(t){return c(t.model.pad.l,t.model.pad.t)}));var U=j.selectAll(\".\"+y.cn.yAxis).data((function(t){return t.dimensions}),d);U.enter().append(\"g\").classed(y.cn.yAxis,!0),j.each((function(t){O(U,t,_)})),F.each((function(t){if(t.viewModel){!t.lineLayer||a?t.lineLayer=b(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||a;t.lineLayer.render(t.viewModel.panels,e)}})),U.attr(\"transform\",(function(t){return c(t.xScale(t.xIndex),0)})),U.call(n.behavior.drag().origin((function(t){return t})).on(\"drag\",(function(t){var e=t.parent;S.linePickActive(!1),t.x=Math.max(-y.overdrag,Math.min(t.model.width+y.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,U.sort((function(t,e){return t.x-e.x})).each((function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio})),O(U,e,_),U.filter((function(e){return 0!==Math.abs(t.xIndex-e.xIndex)})).attr(\"transform\",(function(t){return c(t.xScale(t.xIndex),0)})),n.select(this).attr(\"transform\",c(t.x,0)),U.each((function(r,n,i){i===t.parent.key&&(e.dimensions[n]=r)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!E(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)})).on(\"dragend\",(function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,O(U,e,_),n.select(this).attr(\"transform\",(function(t){return c(t.x,0)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!E(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),S.linePickActive(!0),a&&a.axesMoved&&a.axesMoved(e.key,e.dimensions.map((function(t){return t.crossfilterDimensionIndex})))}))),U.exit().remove();var V=U.selectAll(\".\"+y.cn.axisOverlays).data(m,d);V.enter().append(\"g\").classed(y.cn.axisOverlays,!0),V.selectAll(\".\"+y.cn.axis).remove();var H=V.selectAll(\".\"+y.cn.axis).data(m,d);H.enter().append(\"g\").classed(y.cn.axis,!0),H.each((function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,i=r.domain();n.select(this).call(n.svg.axis().orient(\"left\").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?i:null).tickFormat((function(e){return v.isOrdinal(t)?e:z(t.model.dimensions[t.visibleIndex],e)})).scale(r)),f.font(H.selectAll(\"text\"),t.model.tickFont)})),H.selectAll(\".domain, .tick>line\").attr(\"fill\",\"none\").attr(\"stroke\",\"black\").attr(\"stroke-opacity\",.25).attr(\"stroke-width\",\"1px\"),H.selectAll(\"text\").style(\"text-shadow\",u.makeTextShadow(T)).style(\"cursor\",\"default\");var q=V.selectAll(\".\"+y.cn.axisHeading).data(m,d);q.enter().append(\"g\").classed(y.cn.axisHeading,!0);var G=q.selectAll(\".\"+y.cn.axisTitle).data(m,d);G.enter().append(\"text\").classed(y.cn.axisTitle,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"ew-resize\").style(\"pointer-events\",\"auto\"),G.text((function(t){return t.label})).each((function(e){var r=n.select(this);f.font(r,e.model.labelFont),u.convertToTspans(r,t)})).attr(\"transform\",(function(t){var e=I(t.model.labelAngle,t.model.labelSide),r=y.axisTitleOffset;return(e.dir>0?\"\":c(0,2*r+t.model.height))+l(e.degrees)+c(-r*e.dx,-r*e.dy)})).attr(\"text-anchor\",(function(t){var e=I(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?\"start\":\"end\":\"middle\"}));var Y=V.selectAll(\".\"+y.cn.axisExtent).data(m,d);Y.enter().append(\"g\").classed(y.cn.axisExtent,!0);var W=Y.selectAll(\".\"+y.cn.axisExtentTop).data(m,d);W.enter().append(\"g\").classed(y.cn.axisExtentTop,!0),W.attr(\"transform\",c(0,-y.axisExtentOffset));var X=W.selectAll(\".\"+y.cn.axisExtentTopText).data(m,d);X.enter().append(\"text\").classed(y.cn.axisExtentTopText,!0).call(P),X.text((function(t){return D(t,!0)})).each((function(t){f.font(n.select(this),t.model.rangeFont)}));var Z=Y.selectAll(\".\"+y.cn.axisExtentBottom).data(m,d);Z.enter().append(\"g\").classed(y.cn.axisExtentBottom,!0),Z.attr(\"transform\",(function(t){return c(0,t.model.height+y.axisExtentOffset)}));var J=Z.selectAll(\".\"+y.cn.axisExtentBottomText).data(m,d);J.enter().append(\"text\").classed(y.cn.axisExtentBottomText,!0).attr(\"dy\",\"0.75em\").call(P),J.text((function(t){return D(t,!1)})).each((function(t){f.font(n.select(this),t.model.rangeFont)})),x.ensureAxisBrush(V,T)}},{\"../../components/colorscale\":378,\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/gup\":500,\"../../lib/svg_text_utils\":529,\"../../plots/cartesian/axes\":554,\"./axisbrush\":889,\"./constants\":893,\"./helpers\":895,\"./lines\":897,\"@plotly/d3\":58,\"color-rgba\":91}],900:[function(t,e,r){\"use strict\";var n=t(\"./parcoords\"),i=t(\"../../lib/prepare_regl\"),a=t(\"./helpers\").isVisible,o={};function s(t,e,r){var n=e.indexOf(r),i=t.indexOf(n);return-1===i&&(i+=e.length),i}(e.exports=function(t,e){var r=t._fullLayout;if(i(t,[],o)){var l={},c={},u={},f={},h=r._size;e.forEach((function(e,r){var n=e[0].trace;u[r]=n.index;var i=f[r]=n._fullInput.index;l[r]=t.data[i].dimensions,c[r]=t.data[i].dimensions.slice()}));n(t,e,{width:h.w,height:h.h,margin:{t:h.t,r:h.r,b:h.b,l:h.l}},{filterChanged:function(e,n,i){var a=c[e][n],o=i.map((function(t){return t.slice()})),s=\"dimensions[\"+n+\"].constraintrange\",l=r._tracePreGUI[t._fullData[u[e]]._fullInput.uid];if(void 0===l[s]){var h=a.constraintrange;l[s]=h||null}var p=t._fullData[u[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),a.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete a.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit(\"plotly_restyle\",[d,[f[e]]])},hover:function(e){t.emit(\"plotly_hover\",e)},unhover:function(e){t.emit(\"plotly_unhover\",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return s(t,e,r)-s(t,e,n)}}(r,c[e].filter(a));l[e].sort(n),c[e].filter((function(t){return!a(t)})).sort((function(t){return c[e].indexOf(t)})).forEach((function(t){l[e].splice(l[e].indexOf(t),1),l[e].splice(c[e].indexOf(t),0,t)})),t.emit(\"plotly_restyle\",[{dimensions:[l[e]]},[f[e]]])}})}}).reglPrecompiled=o},{\"../../lib/prepare_regl\":516,\"./helpers\":895,\"./parcoords\":899}],901:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),i=t(\"../../plots/domain\").attributes,a=t(\"../../plots/font_attributes\"),o=t(\"../../components/color/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/template_attributes\").texttemplateAttrs,c=t(\"../../lib/extend\").extendFlat,u=a({editType:\"plot\",arrayOk:!0,colorEditType:\"plot\"});e.exports={labels:{valType:\"data_array\",editType:\"calc\"},label0:{valType:\"number\",dflt:0,editType:\"calc\"},dlabel:{valType:\"number\",dflt:1,editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},marker:{colors:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:o.defaultLine,arrayOk:!0,editType:\"style\"},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0,editType:\"style\"},editType:\"calc\"},editType:\"calc\"},text:{valType:\"data_array\",editType:\"plot\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"percent\"],extras:[\"none\"],editType:\"calc\"},hoverinfo:c({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:s({},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),texttemplate:l({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"auto\",arrayOk:!0,editType:\"plot\"},textfont:c({},u,{}),insidetextorientation:{valType:\"enumerated\",values:[\"horizontal\",\"radial\",\"tangential\",\"auto\"],dflt:\"auto\",editType:\"plot\"},insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),automargin:{valType:\"boolean\",dflt:!1,editType:\"plot\"},title:{text:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:c({},u,{}),position:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"plot\"},editType:\"plot\"},domain:i({name:\"pie\",trace:!0,editType:\"calc\"}),hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},sort:{valType:\"boolean\",dflt:!0,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"number\",min:-360,max:360,dflt:0,editType:\"calc\"},pull:{valType:\"number\",min:0,max:1,dflt:0,arrayOk:!0,editType:\"calc\"},_deprecated:{title:{valType:\"string\",dflt:\"\",editType:\"calc\"},titlefont:c({},u,{}),titleposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"calc\"}}}},{\"../../components/color/attributes\":365,\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/domain\":584,\"../../plots/font_attributes\":585,\"../../plots/template_attributes\":633}],902:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"pie\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":619}],903:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),a=t(\"../../components/color\"),o={};function s(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=a.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function l(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r=0})),(\"funnelarea\"===e.type?v:e.sort)&&a.sort((function(t,e){return e.v-t.v})),a[0]&&(a[0].vTotal=g),a},crossTraceCalc:function(t,e){var r=(e||{}).type;r||(r=\"pie\");var n=t._fullLayout,i=t.calcdata,a=n[r+\"colorway\"],s=n[\"_\"+r+\"colormap\"];n[\"extend\"+r+\"colors\"]&&(a=l(a,o));for(var c=0,u=0;u0){s=!0;break}}s||(o=0)}return{hasLabels:r,hasValues:a,len:o}}e.exports={handleLabelsAndValues:l,supplyDefaults:function(t,e,r,n){function c(r,n){return i.coerce(t,e,a,r,n)}var u=l(c(\"labels\"),c(\"values\")),f=u.len;if(e._hasLabels=u.hasLabels,e._hasValues=u.hasValues,!e._hasLabels&&e._hasValues&&(c(\"label0\"),c(\"dlabel\")),f){e._length=f,c(\"marker.line.width\")&&c(\"marker.line.color\"),c(\"marker.colors\"),c(\"scalegroup\");var h,p=c(\"text\"),d=c(\"texttemplate\");if(d||(h=c(\"textinfo\",Array.isArray(p)?\"text+percent\":\"percent\")),c(\"hovertext\"),c(\"hovertemplate\"),d||h&&\"none\"!==h){var m=c(\"textposition\");s(t,e,n,c,m,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),(Array.isArray(m)||\"auto\"===m||\"outside\"===m)&&c(\"automargin\"),(\"inside\"===m||\"auto\"===m||Array.isArray(m))&&c(\"insidetextorientation\")}o(e,n,c);var g=c(\"hole\");if(c(\"title.text\")){var v=c(\"title.position\",g?\"middle center\":\"top center\");g||\"middle center\"!==v||(e.title.position=\"top center\"),i.coerceFont(c,\"title.font\",n.font)}c(\"sort\"),c(\"direction\"),c(\"rotation\"),c(\"pull\")}else e.visible=!1}}},{\"../../lib\":503,\"../../plots/domain\":584,\"../bar/defaults\":652,\"./attributes\":901,\"fast-isnumeric\":190}],905:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx/helpers\").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,bbox:t.bbox,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),\"funnelarea\"===e.type&&(delete r.v,delete r.i),r}},{\"../../components/fx/helpers\":402}],906:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");function i(t){return-1!==t.indexOf(\"e\")?t.replace(/[.]?0+e/,\"e\"):-1!==t.indexOf(\".\")?t.replace(/[.]?0+$/,\"\"):t}r.formatPiePercent=function(t,e){var r=i((100*t).toPrecision(3));return n.numSeparate(r,e)+\"%\"},r.formatPieValue=function(t,e){var r=i(t.toPrecision(10));return n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r\"),name:f.hovertemplate||-1!==h.indexOf(\"name\")?f.name:void 0,idealAlign:t.pxmid[0]<0?\"left\":\"right\",color:g.castOption(_.bgcolor,t.pts)||t.color,borderColor:g.castOption(_.bordercolor,t.pts),fontFamily:g.castOption(w.family,t.pts),fontSize:g.castOption(w.size,t.pts),fontColor:g.castOption(w.color,t.pts),nameLength:g.castOption(_.namelength,t.pts),textAlign:g.castOption(_.align,t.pts),hovertemplate:g.castOption(f.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[v(t,f)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e,inOut_bbox:T}),t.bbox=T[0],c._hasHoverLabel=!0}c._hasHoverEvent=!0,e.emit(\"plotly_hover\",{points:[v(t,f)],event:n.event})}})),t.on(\"mouseout\",(function(t){var r=e._fullLayout,i=e._fullData[c.index],o=n.select(this).datum();c._hasHoverEvent&&(t.originalEvent=n.event,e.emit(\"plotly_unhover\",{points:[v(o,i)],event:n.event}),c._hasHoverEvent=!1),c._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),c._hasHoverLabel=!1)})),t.on(\"click\",(function(t){var r=e._fullLayout,i=e._fullData[c.index];e._dragging||!1===r.hovermode||(e._hoverdata=[v(t,i)],a.click(e,n.event))}))}function b(t,e,r){var n=g.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=g.castOption(t._input.textfont.color,e.pts));var i=g.castOption(t.insidetextfont.family,e.pts)||g.castOption(t.textfont.family,e.pts)||r.family,a=g.castOption(t.insidetextfont.size,e.pts)||g.castOption(t.textfont.size,e.pts)||r.size;return{color:n||o.contrast(e.color),family:i,size:a}}function _(t,e){for(var r,n,i=0;ie&&e>n||r=-4;g-=2)v(Math.PI*g,\"tan\");for(g=4;g>=-4;g-=2)v(Math.PI*(g+1),\"tan\")}if(f||p){for(g=4;g>=-4;g-=2)v(Math.PI*(g+1.5),\"rad\");for(g=4;g>=-4;g-=2)v(Math.PI*(g+.5),\"rad\")}}if(s||d||f){var y=Math.sqrt(t.width*t.width+t.height*t.height);if((a={scale:i*n*2/y,rCenter:1-i,rotate:0}).textPosAngle=(e.startangle+e.stopangle)/2,a.scale>=1)return a;m.push(a)}(d||p)&&((a=T(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,m.push(a)),(d||h)&&((a=k(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,m.push(a));for(var x=0,b=0,_=0;_=1)break}return m[x]}function T(t,e,r,n,i){e=Math.max(0,e-2*m);var a=t.width/t.height,o=S(a,n,e,r);return{scale:2*o/t.height,rCenter:A(a,o/e),rotate:M(i)}}function k(t,e,r,n,i){e=Math.max(0,e-2*m);var a=t.height/t.width,o=S(a,n,e,r);return{scale:2*o/t.width,rCenter:A(a,o/e),rotate:M(i+Math.PI/2)}}function A(t,e){return Math.cos(e)-t*e}function M(t){return(180/Math.PI*t+720)%180-90}function S(t,e,r,n){var i=t+1/(2*Math.tan(e));return r*Math.min(1/(Math.sqrt(i*i+.5)+i),n/(Math.sqrt(t*t+n/2)+t))}function E(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function L(t,e){var r=e.pxmid[0],n=e.pxmid[1],i=t.width/2,a=t.height/2;return r<0&&(i*=-1),n<0&&(a*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(a)*(i>0?1:-1)/2,y:a/(1+r*r/(n*n)),outside:!0}}function C(t,e){var r,n,i,a=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=a.title.font.size,i=I(a),-1!==a.title.position.indexOf(\"top\")?(o.y-=(1+i)*t.r,s.ty-=t.titleBox.height):-1!==a.title.position.indexOf(\"bottom\")&&(o.y+=(1+i)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),f=e.w*(a.domain.x[1]-a.domain.x[0])/2;return-1!==a.title.position.indexOf(\"left\")?(f+=u,o.x-=(1+i)*u,s.tx+=t.titleBox.width/2):-1!==a.title.position.indexOf(\"center\")?f*=2:-1!==a.title.position.indexOf(\"right\")&&(f+=u,o.x+=(1+i)*u,s.tx-=t.titleBox.width/2),r=f/t.titleBox.width,n=P(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function P(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function I(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;er&&(r=t.pull[e]);return r}function O(t,e){for(var r=[],n=0;n1?(c=r.r,u=c/i.aspectratio):(u=r.r,c=u*i.aspectratio),c*=(1+i.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n\")}if(a){var x=l.castOption(i,e.i,\"texttemplate\");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:g.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:g.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:l.castOption(i,t.i,\"customdata\")}}(e),_=g.getFirstFilled(i.text,e.pts);(y(_)||\"\"===_)&&(b.text=_),e.text=l.texttemplateString(x,b,t._fullLayout._d3locale,b,i._meta||{})}else e.text=\"\"}}function R(t,e){var r=t.rotate*Math.PI/180,n=Math.cos(r),i=Math.sin(r),a=(e.left+e.right)/2,o=(e.top+e.bottom)/2;t.textX=a*n-o*i,t.textY=a*i+o*n,t.noCenter=!0}e.exports={plot:function(t,e){var r=t._fullLayout,a=r._size;d(\"pie\",r),_(e,t),O(e,a);var h=l.makeTraceGroups(r._pielayer,e,\"trace\").each((function(e){var h=n.select(this),d=e[0],m=d.trace;!function(t){var e,r,n,i=t[0],a=i.r,o=i.trace,s=g.getRotationAngle(o.rotation),l=2*Math.PI/i.vTotal,c=\"px0\",u=\"px1\";if(\"counterclockwise\"===o.direction){for(e=0;ei.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/i.vTotal,.5),r.ring=1-o.hole,r.rInscribed=E(r,i))}(e),h.attr(\"stroke-linejoin\",\"round\"),h.each((function(){var v=n.select(this).selectAll(\"g.slice\").data(e);v.enter().append(\"g\").classed(\"slice\",!0),v.exit().remove();var y=[[[],[]],[[],[]]],_=!1;v.each((function(i,a){if(i.hidden)n.select(this).selectAll(\"path,g\").remove();else{i.pointNumber=i.i,i.curveNumber=m.index,y[i.pxmid[1]<0?0:1][i.pxmid[0]<0?0:1].push(i);var o=d.cx,c=d.cy,u=n.select(this),h=u.selectAll(\"path.surface\").data([i]);if(h.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),u.call(x,t,e),m.pull){var v=+g.castOption(m.pull,i.pts)||0;v>0&&(o+=v*i.pxmid[0],c+=v*i.pxmid[1])}i.cxFinal=o,i.cyFinal=c;var T=m.hole;if(i.v===d.vTotal){var k=\"M\"+(o+i.px0[0])+\",\"+(c+i.px0[1])+C(i.px0,i.pxmid,!0,1)+C(i.pxmid,i.px0,!0,1)+\"Z\";T?h.attr(\"d\",\"M\"+(o+T*i.px0[0])+\",\"+(c+T*i.px0[1])+C(i.px0,i.pxmid,!1,T)+C(i.pxmid,i.px0,!1,T)+\"Z\"+k):h.attr(\"d\",k)}else{var A=C(i.px0,i.px1,!0,1);if(T){var M=1-T;h.attr(\"d\",\"M\"+(o+T*i.px1[0])+\",\"+(c+T*i.px1[1])+C(i.px1,i.px0,!1,T)+\"l\"+M*i.px0[0]+\",\"+M*i.px0[1]+A+\"Z\")}else h.attr(\"d\",\"M\"+o+\",\"+c+\"l\"+i.px0[0]+\",\"+i.px0[1]+A+\"Z\")}D(t,i,d);var S=g.castOption(m.textposition,i.pts),E=u.selectAll(\"g.slicetext\").data(i.text&&\"none\"!==S?[0]:[]);E.enter().append(\"g\").classed(\"slicetext\",!0),E.exit().remove(),E.each((function(){var u=l.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),h=l.ensureUniformFontSize(t,\"outside\"===S?function(t,e,r){var n=g.castOption(t.outsidetextfont.color,e.pts)||g.castOption(t.textfont.color,e.pts)||r.color,i=g.castOption(t.outsidetextfont.family,e.pts)||g.castOption(t.textfont.family,e.pts)||r.family,a=g.castOption(t.outsidetextfont.size,e.pts)||g.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:i,size:a}}(m,i,r.font):b(m,i,r.font));u.text(i.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(s.font,h).call(f.convertToTspans,t);var v,y=s.bBox(u.node());if(\"outside\"===S)v=L(y,i);else if(v=w(y,i,d),\"auto\"===S&&v.scale<1){var x=l.ensureUniformFontSize(t,m.outsidetextfont);u.call(s.font,x),v=L(y=s.bBox(u.node()),i)}var T=v.textPosAngle,k=void 0===T?i.pxmid:z(d.r,T);if(v.targetX=o+k[0]*v.rCenter+(v.x||0),v.targetY=c+k[1]*v.rCenter+(v.y||0),R(v,y),v.outside){var A=v.targetY;i.yLabelMin=A-y.height/2,i.yLabelMid=A,i.yLabelMax=A+y.height/2,i.labelExtraX=0,i.labelExtraY=0,_=!0}v.fontSize=h.size,p(m.type,v,r),e[a].transform=v,u.attr(\"transform\",l.getTextTransform(v))}))}function C(t,e,r,n){var a=n*(e[0]-t[0]),o=n*(e[1]-t[1]);return\"a\"+n*d.r+\",\"+n*d.r+\" 0 \"+i.largeArc+(r?\" 1 \":\" 0 \")+a+\",\"+o}}));var T=n.select(this).selectAll(\"g.titletext\").data(m.title.text?[0]:[]);if(T.enter().append(\"g\").classed(\"titletext\",!0),T.exit().remove(),T.each((function(){var e,r=l.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),i=m.title.text;m._meta&&(i=l.templateString(i,m._meta)),r.text(i).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(s.font,m.title.font).call(f.convertToTspans,t),e=\"middle center\"===m.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(d):C(d,a),r.attr(\"transform\",u(e.x,e.y)+c(Math.min(1,e.scale))+u(e.tx,e.ty))})),_&&function(t,e){var r,n,i,a,o,s,l,c,u,f,h,p,d;function m(t,e){return t.pxmid[1]-e.pxmid[1]}function v(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var i,c,u,h,p=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),d=n?t.yLabelMin:t.yLabelMax,m=n?t.yLabelMax:t.yLabelMin,v=t.cyFinal+o(t.px0[1],t.px1[1]),y=p-d;if(y*l>0&&(t.labelExtraY=y),Array.isArray(e.pull))for(c=0;c=(g.castOption(e.pull,u.pts)||0)||((t.pxmid[1]-u.pxmid[1])*l>0?(y=u.cyFinal+o(u.px0[1],u.px1[1])-d-t.labelExtraY)*l>0&&(t.labelExtraY+=y):(m+t.labelExtraY-v)*l>0&&(i=3*s*Math.abs(c-f.indexOf(t)),(h=u.cxFinal+a(u.px0[0],u.px1[0])+i-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=h)))}for(n=0;n<2;n++)for(i=n?m:v,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(a=r?Math.max:Math.min,s=r?1:-1,(c=t[n][r]).sort(i),u=t[1-n][r],f=u.concat(c),p=[],h=0;hMath.abs(f)?s+=\"l\"+f*t.pxmid[0]/t.pxmid[1]+\",\"+f+\"H\"+(a+t.labelExtraX+c):s+=\"l\"+t.labelExtraX+\",\"+u+\"v\"+(f-u)+\"h\"+c}else s+=\"V\"+(t.yLabelMid+t.labelExtraY)+\"h\"+c;l.ensureSingle(r,\"path\",\"textline\").call(o.stroke,e.outsidetextfont.color).attr({\"stroke-width\":Math.min(2,e.outsidetextfont.size/8),d:s,fill:\"none\"})}else r.select(\"path.textline\").remove()}))}(v,m),_&&m.automargin){var k=s.bBox(h.node()),A=m.domain,M=a.w*(A.x[1]-A.x[0]),S=a.h*(A.y[1]-A.y[0]),E=(.5*M-d.r)/a.w,P=(.5*S-d.r)/a.h;i.autoMargin(t,\"pie.\"+m.uid+\".automargin\",{xl:A.x[0]-E,xr:A.x[1]+E,yb:A.y[0]-P,yt:A.y[1]+P,l:Math.max(d.cx-d.r-k.left,0),r:Math.max(k.right-(d.cx+d.r),0),b:Math.max(k.bottom-(d.cy+d.r),0),t:Math.max(d.cy-d.r-k.top,0),pad:5})}}))}));setTimeout((function(){h.selectAll(\"tspan\").each((function(){var t=n.select(this);t.attr(\"dy\")&&t.attr(\"dy\",t.attr(\"dy\"))}))}),0)},formatSliceLabel:D,transformInsideText:w,determineInsideTextFont:b,positionTitleOutside:C,prerenderTitles:_,layoutAreas:O,attachFxHandlers:x,computeTransform:R}},{\"../../components/color\":366,\"../../components/drawing\":388,\"../../components/fx\":406,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../../plots/plots\":619,\"../bar/constants\":650,\"../bar/uniform_text\":664,\"./event_data\":905,\"./helpers\":906,\"@plotly/d3\":58}],911:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"./style_one\"),a=t(\"../bar/uniform_text\").resizeText;e.exports=function(t){var e=t._fullLayout._pielayer.selectAll(\".trace\");a(t,e,\"pie\"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each((function(t){n.select(this).call(i,t,e)}))}))}},{\"../bar/uniform_text\":664,\"./style_one\":912,\"@plotly/d3\":58}],912:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"./helpers\").castOption;e.exports=function(t,e,r){var a=r.marker.line,o=i(a.color,e.pts)||n.defaultLine,s=i(a.width,e.pts)||0;t.style(\"stroke-width\",s).call(n.fill,e.color).call(n.stroke,o)}},{\"../../components/color\":366,\"./helpers\":906}],913:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\");e.exports={x:n.x,y:n.y,xy:{valType:\"data_array\",editType:\"calc\"},indices:{valType:\"data_array\",editType:\"calc\"},xbounds:{valType:\"data_array\",editType:\"calc\"},ybounds:{valType:\"data_array\",editType:\"calc\"},text:n.text,marker:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,arrayOk:!1,editType:\"calc\"},blend:{valType:\"boolean\",dflt:null,editType:\"calc\"},sizemin:{valType:\"number\",min:.1,max:2,dflt:.5,editType:\"calc\"},sizemax:{valType:\"number\",min:.1,dflt:20,editType:\"calc\"},border:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},arearatio:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},transforms:void 0}},{\"../scatter/attributes\":927}],914:[function(t,e,r){\"use strict\";var n=t(\"../../../stackgl_modules\").gl_pointcloud2d,i=t(\"../../lib/str2rgbarray\"),a=t(\"../../plots/cartesian/autorange\").findExtremes,o=t(\"../scatter/get_trace_color\");function s(t,e){this.scene=t,this.uid=e,this.type=\"pointcloud\",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color=\"rgb(0, 0, 0)\",this.name=\"\",this.hoverinfo=\"all\",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,f=this.pickXYData=t.xy,h=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(f){if(n=f,e=f.length>>>1,h)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var m=i(t.marker.color),g=i(t.marker.border.color),v=t.opacity*t.marker.opacity;m[3]*=v,this.pointcloudOptions.color=m;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,g[3]*=v,this.pointcloudOptions.borderColor=g;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,T=b/2||.5;t._extremes[_._id]=a(_,[d[0],d[2]],{ppad:T}),t._extremes[w._id]=a(w,[d[1],d[3]],{ppad:T})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{\"../../../stackgl_modules\":1124,\"../../lib/str2rgbarray\":528,\"../../plots/cartesian/autorange\":553,\"../scatter/get_trace_color\":937}],915:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\");e.exports=function(t,e,r){function a(r,a){return n.coerce(t,e,i,r,a)}a(\"x\"),a(\"y\"),a(\"xbounds\"),a(\"ybounds\"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),a(\"text\"),a(\"marker.color\",r),a(\"marker.opacity\"),a(\"marker.blend\"),a(\"marker.sizemin\"),a(\"marker.sizemax\"),a(\"marker.border.color\",r),a(\"marker.border.arearatio\"),e._length=null}},{\"../../lib\":503,\"./attributes\":913}],916:[function(t,e,r){\"use strict\";[\"*pointcloud* trace is deprecated!\",\"Please consider switching to the *scattergl* trace type.\"].join(\" \");e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../scatter3d/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"pointcloud\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"showLegend\"],meta:{}}},{\"../../plots/gl2d\":596,\"../scatter3d/calc\":956,\"./attributes\":913,\"./convert\":914,\"./defaults\":915}],917:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../components/color/attributes\"),o=t(\"../../components/fx/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../../plots/template_attributes\").hovertemplateAttrs,c=t(\"../../components/colorscale/attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,f=t(\"../../plots/cartesian/axis_format_attributes\").descriptionOnlyNumbers,h=t(\"../../lib/extend\").extendFlat,p=t(\"../../plot_api/edit_types\").overrideAll;(e.exports=p({hoverinfo:h({},i.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:\"sankey\",trace:!0}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\"},valueformat:{valType:\"string\",dflt:\".3s\",description:f(\"value\")},valuesuffix:{valType:\"string\",dflt:\"\"},arrangement:{valType:\"enumerated\",values:[\"snap\",\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"snap\"},textfont:n({}),customdata:void 0,node:{label:{valType:\"data_array\",dflt:[]},groups:{valType:\"info_array\",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:\"number\",editType:\"calc\"}},x:{valType:\"data_array\",dflt:[]},y:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},customdata:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:a.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:.5,arrayOk:!0}},pad:{valType:\"number\",arrayOk:!1,min:0,dflt:20},thickness:{valType:\"number\",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]})},link:{label:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},customdata:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:a.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0}},source:{valType:\"data_array\",dflt:[]},target:{valType:\"data_array\",dflt:[]},value:{valType:\"data_array\",dflt:[]},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]}),colorscales:u(\"concentrationscales\",{editType:\"calc\",label:{valType:\"string\",editType:\"calc\",dflt:\"\"},cmax:{valType:\"number\",editType:\"calc\",dflt:1},cmin:{valType:\"number\",editType:\"calc\",dflt:0},colorscale:h(c().colorscale,{dflt:[[0,\"white\"],[1,\"black\"]]})})}},\"calc\",\"nested\")).transforms=void 0},{\"../../components/color/attributes\":365,\"../../components/colorscale/attributes\":373,\"../../components/fx/attributes\":397,\"../../lib/extend\":493,\"../../plot_api/edit_types\":536,\"../../plot_api/plot_template\":543,\"../../plots/attributes\":550,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/domain\":584,\"../../plots/font_attributes\":585,\"../../plots/template_attributes\":633}],918:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\"),o=t(\"../../components/fx/layout_attributes\"),s=t(\"../../lib/setcursor\"),l=t(\"../../components/dragelement\"),c=t(\"../../plots/cartesian/select\").prepSelect,u=t(\"../../lib\"),f=t(\"../../registry\");function h(t,e){var r=t._fullData[e],n=t._fullLayout,i=n.dragmode,a=\"pan\"===n.dragmode?\"move\":\"crosshair\",o=r._bgRect;if(\"pan\"!==i&&\"zoom\"!==i){s(o,a);var h={_id:\"x\",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:\"y\",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:h,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[h],yaxes:[p],doneFnCompleted:function(r){var n,i=t._fullData[e],a=i.node.groups.slice(),o=[];function s(t){for(var e=i._sankey.graph.nodes,r=0;ry&&(y=a.source[e]),a.target[e]>y&&(y=a.target[e]);var x,b=y+1;t.node._count=b;var _=t.node.groups,w={};for(e=0;e<_.length;e++){var T=_[e];for(x=0;x0&&s(E,b)&&s(L,b)&&(!w.hasOwnProperty(E)||!w.hasOwnProperty(L)||w[E]!==w[L])){w.hasOwnProperty(L)&&(L=w[L]),w.hasOwnProperty(E)&&(E=w[E]),L=+L,h[E=+E]=h[L]=!0;var C=\"\";a.label&&a.label[e]&&(C=a.label[e]);var P=null;C&&p.hasOwnProperty(C)&&(P=p[C]),c.push({pointNumber:e,label:C,color:u?a.color[e]:a.color,customdata:f?a.customdata[e]:a.customdata,concentrationscale:P,source:E,target:L,value:+S}),M.source.push(E),M.target.push(L)}}var I=b+_.length,O=o(r.color),z=o(r.customdata),D=[];for(e=0;eb-1,childrenNodes:[],pointNumber:e,label:R,color:O?r.color[e]:r.color,customdata:z?r.customdata[e]:r.customdata})}var F=!1;return function(t,e,r){for(var a=i.init2dArray(t,0),o=0;o1}))}(I,M.source,M.target)&&(F=!0),{circular:F,links:c,nodes:D,groups:_,groupLookup:w}}e.exports=function(t,e){var r=c(e);return a({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{\"../../components/colorscale\":378,\"../../lib\":503,\"../../lib/gup\":500,\"strongly-connected-components\":306}],920:[function(t,e,r){\"use strict\";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:\"linear\",cn:{sankey:\"sankey\",sankeyLinks:\"sankey-links\",sankeyLink:\"sankey-link\",sankeyNodeSet:\"sankey-node-set\",sankeyNode:\"sankey-node\",nodeRect:\"node-rect\",nodeLabel:\"node-label\"}}},{}],921:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../components/color\"),o=t(\"tinycolor2\"),s=t(\"../../plots/domain\").defaults,l=t(\"../../components/fx/hoverlabel_defaults\"),c=t(\"../../plot_api/plot_template\"),u=t(\"../../plots/array_container_defaults\");function f(t,e){function r(r,a){return n.coerce(t,e,i.link.colorscales,r,a)}r(\"label\"),r(\"cmin\"),r(\"cmax\"),r(\"colorscale\")}e.exports=function(t,e,r,h){function p(r,a){return n.coerce(t,e,i,r,a)}var d=n.extendDeep(h.hoverlabel,t.hoverlabel),m=t.node,g=c.newContainer(e,\"node\");function v(t,e){return n.coerce(m,g,i.node,t,e)}v(\"label\"),v(\"groups\"),v(\"x\"),v(\"y\"),v(\"pad\"),v(\"thickness\"),v(\"line.color\"),v(\"line.width\"),v(\"hoverinfo\",t.hoverinfo),l(m,g,v,d),v(\"hovertemplate\");var y=h.colorway;v(\"color\",g.label.map((function(t,e){return a.addOpacity(function(t){return y[t%y.length]}(e),.8)}))),v(\"customdata\");var x=t.link||{},b=c.newContainer(e,\"link\");function _(t,e){return n.coerce(x,b,i.link,t,e)}_(\"label\"),_(\"source\"),_(\"target\"),_(\"value\"),_(\"line.color\"),_(\"line.width\"),_(\"hoverinfo\",t.hoverinfo),l(x,b,_,d),_(\"hovertemplate\");var w,T=o(h.paper_bgcolor).getLuminance()<.333?\"rgba(255, 255, 255, 0.6)\":\"rgba(0, 0, 0, 0.2)\";_(\"color\",n.repeat(T,b.value.length)),_(\"customdata\"),u(x,b,{name:\"colorscales\",handleItemDefaults:f}),s(e,h,p),p(\"orientation\"),p(\"valueformat\"),p(\"valuesuffix\"),g.x.length&&g.y.length&&(w=\"freeform\"),p(\"arrangement\",w),n.coerceFont(p,\"textfont\",n.extendFlat({},h.font)),e._length=null}},{\"../../components/color\":366,\"../../components/fx/hoverlabel_defaults\":404,\"../../lib\":503,\"../../plot_api/plot_template\":543,\"../../plots/array_container_defaults\":549,\"../../plots/domain\":584,\"./attributes\":917,tinycolor2:312}],922:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"sankey\",basePlotModule:t(\"./base_plot\"),selectPoints:t(\"./select.js\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":917,\"./base_plot\":918,\"./calc\":919,\"./defaults\":921,\"./plot\":923,\"./select.js\":925}],923:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=i.numberFormat,o=t(\"./render\"),s=t(\"../../components/fx\"),l=t(\"../../components/color\"),c=t(\"./constants\").cn,u=i._;function f(t){return\"\"!==t}function h(t,e){return t.filter((function(t){return t.key===e.traceId}))}function p(t,e){n.select(t).select(\"path\").style(\"fill-opacity\",e),n.select(t).select(\"rect\").style(\"fill-opacity\",e)}function d(t){n.select(t).select(\"text.name\").style(\"fill\",\"black\")}function m(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function v(t,e,r){e&&r&&h(r,e).selectAll(\".\"+c.sankeyLink).filter(m(e)).call(x.bind(0,e,r,!1))}function y(t,e,r){e&&r&&h(r,e).selectAll(\".\"+c.sankeyLink).filter(m(e)).call(b.bind(0,e,r,!1))}function x(t,e,r,n){var i=n.datum().link.label;n.style(\"fill-opacity\",(function(t){if(!t.link.concentrationscale)return.4})),i&&h(e,t).selectAll(\".\"+c.sankeyLink).filter((function(t){return t.link.label===i})).style(\"fill-opacity\",(function(t){if(!t.link.concentrationscale)return.4})),r&&h(e,t).selectAll(\".\"+c.sankeyNode).filter(g(t)).call(v)}function b(t,e,r,n){var i=n.datum().link.label;n.style(\"fill-opacity\",(function(t){return t.tinyColorAlpha})),i&&h(e,t).selectAll(\".\"+c.sankeyLink).filter((function(t){return t.link.label===i})).style(\"fill-opacity\",(function(t){return t.tinyColorAlpha})),r&&h(e,t).selectAll(c.sankeyNode).filter(g(t)).call(y)}function _(t,e){var r=t.hoverlabel||{},n=i.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,i=r._paper,h=r._size,m=0;m\"),color:_(o,\"bgcolor\")||l.addOpacity(m.color,1),borderColor:_(o,\"bordercolor\"),fontFamily:_(o,\"font.family\"),fontSize:_(o,\"font.size\"),fontColor:_(o,\"font.color\"),nameLength:_(o,\"namelength\"),textAlign:_(o,\"align\"),idealAlign:n.event.x\"),color:_(o,\"bgcolor\")||i.tinyColorHue,borderColor:_(o,\"bordercolor\"),fontFamily:_(o,\"font.family\"),fontSize:_(o,\"font.size\"),fontColor:_(o,\"font.color\"),nameLength:_(o,\"namelength\"),textAlign:_(o,\"align\"),idealAlign:\"left\",hovertemplate:o.hovertemplate,hovertemplateLabels:y,eventData:[i.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});p(w,.85),d(w)}}},unhover:function(e,i,a){!1!==t._fullLayout.hovermode&&(n.select(e).call(y,i,a),\"skip\"!==i.node.trace.node.hoverinfo&&(i.node.fullData=i.node.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[i.node]})),s.loneUnhover(r._hoverlayer.node()))},select:function(e,r,i){var a=r.node;a.originalEvent=n.event,t._hoverdata=[a],n.select(e).call(y,r,i),s.click(t,{target:!0})}}})}},{\"../../components/color\":366,\"../../components/fx\":406,\"../../lib\":503,\"./constants\":920,\"./render\":924,\"@plotly/d3\":58}],924:[function(t,e,r){\"use strict\";var n=t(\"d3-force\"),i=t(\"d3-interpolate\").interpolateNumber,a=t(\"@plotly/d3\"),o=t(\"@plotly/d3-sankey\"),s=t(\"@plotly/d3-sankey-circular\"),l=t(\"./constants\"),c=t(\"tinycolor2\"),u=t(\"../../components/color\"),f=t(\"../../components/drawing\"),h=t(\"../../lib\"),p=h.strTranslate,d=h.strRotate,m=t(\"../../lib/gup\"),g=m.keyFun,v=m.repeat,y=m.unwrap,x=t(\"../../lib/svg_text_utils\"),b=t(\"../../registry\"),_=t(\"../../constants/alignment\"),w=_.CAP_SHIFT,T=_.LINE_SPACING;function k(t,e,r){var n,i=y(e),a=i.trace,u=a.domain,f=\"h\"===a.orientation,p=a.node.pad,d=a.node.thickness,m=t.width*(u.x[1]-u.x[0]),g=t.height*(u.y[1]-u.y[0]),v=i._nodes,x=i._links,b=i.circular;(n=b?s.sankeyCircular().circularLinkGap(0):o.sankey()).iterations(l.sankeyIterations).size(f?[m,g]:[g,m]).nodeWidth(d).nodePadding(p).nodeId((function(t){return t.pointNumber})).nodes(v).links(x);var _,w,T,k=n();for(var A in n.nodePadding()=i||(r=i-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),i=e.y1+p}))}(function(t){var e,r,n=t.map((function(t,e){return{x0:t.x0,index:e}})).sort((function(t,e){return t.x0-e.x0})),i=[],a=-1,o=-1/0;for(_=0;_o+d&&(a+=1,e=s.x0),o=s.x0,i[a]||(i[a]=[]),i[a].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return i}(v=k.nodes));n.update(k)}return{circular:b,key:r,trace:a,guid:h.randstr(),horizontal:f,width:m,height:g,nodePad:a.node.pad,nodeLineColor:a.node.line.color,nodeLineWidth:a.node.line.width,linkLineColor:a.link.line.color,linkLineWidth:a.link.line.width,valueFormat:a.valueformat,valueSuffix:a.valuesuffix,textFont:a.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:f?g:m,dragPerpendicular:f?m:g,arrangement:a.arrangement,sankey:n,graph:k,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}function A(t,e,r){var n=c(e.color),i=e.source.label+\"|\"+e.target.label+\"__\"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:i,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:u.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:M,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}function M(){return function(t){if(t.link.circular)return e=t.link,r=e.width/2,n=e.circularPathData,\"top\"===e.circularLinkType?\"M \"+n.targetX+\" \"+(n.targetY+r)+\" L\"+n.rightInnerExtent+\" \"+(n.targetY+r)+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightSmallArcRadius+r)+\" 0 0 1 \"+(n.rightFullExtent-r)+\" \"+(n.targetY-n.rightSmallArcRadius)+\"L\"+(n.rightFullExtent-r)+\" \"+n.verticalRightInnerExtent+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightLargeArcRadius+r)+\" 0 0 1 \"+n.rightInnerExtent+\" \"+(n.verticalFullExtent-r)+\"L\"+n.leftInnerExtent+\" \"+(n.verticalFullExtent-r)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftLargeArcRadius+r)+\" 0 0 1 \"+(n.leftFullExtent+r)+\" \"+n.verticalLeftInnerExtent+\"L\"+(n.leftFullExtent+r)+\" \"+(n.sourceY-n.leftSmallArcRadius)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftSmallArcRadius+r)+\" 0 0 1 \"+n.leftInnerExtent+\" \"+(n.sourceY+r)+\"L\"+n.sourceX+\" \"+(n.sourceY+r)+\"L\"+n.sourceX+\" \"+(n.sourceY-r)+\"L\"+n.leftInnerExtent+\" \"+(n.sourceY-r)+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftSmallArcRadius-r)+\" 0 0 0 \"+(n.leftFullExtent-r)+\" \"+(n.sourceY-n.leftSmallArcRadius)+\"L\"+(n.leftFullExtent-r)+\" \"+n.verticalLeftInnerExtent+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftLargeArcRadius-r)+\" 0 0 0 \"+n.leftInnerExtent+\" \"+(n.verticalFullExtent+r)+\"L\"+n.rightInnerExtent+\" \"+(n.verticalFullExtent+r)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightLargeArcRadius-r)+\" 0 0 0 \"+(n.rightFullExtent+r)+\" \"+n.verticalRightInnerExtent+\"L\"+(n.rightFullExtent+r)+\" \"+(n.targetY-n.rightSmallArcRadius)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightSmallArcRadius-r)+\" 0 0 0 \"+n.rightInnerExtent+\" \"+(n.targetY-r)+\"L\"+n.targetX+\" \"+(n.targetY-r)+\"Z\":\"M \"+n.targetX+\" \"+(n.targetY-r)+\" L\"+n.rightInnerExtent+\" \"+(n.targetY-r)+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightSmallArcRadius+r)+\" 0 0 0 \"+(n.rightFullExtent-r)+\" \"+(n.targetY+n.rightSmallArcRadius)+\"L\"+(n.rightFullExtent-r)+\" \"+n.verticalRightInnerExtent+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightLargeArcRadius+r)+\" 0 0 0 \"+n.rightInnerExtent+\" \"+(n.verticalFullExtent+r)+\"L\"+n.leftInnerExtent+\" \"+(n.verticalFullExtent+r)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftLargeArcRadius+r)+\" 0 0 0 \"+(n.leftFullExtent+r)+\" \"+n.verticalLeftInnerExtent+\"L\"+(n.leftFullExtent+r)+\" \"+(n.sourceY+n.leftSmallArcRadius)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftSmallArcRadius+r)+\" 0 0 0 \"+n.leftInnerExtent+\" \"+(n.sourceY-r)+\"L\"+n.sourceX+\" \"+(n.sourceY-r)+\"L\"+n.sourceX+\" \"+(n.sourceY+r)+\"L\"+n.leftInnerExtent+\" \"+(n.sourceY+r)+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftSmallArcRadius-r)+\" 0 0 1 \"+(n.leftFullExtent-r)+\" \"+(n.sourceY+n.leftSmallArcRadius)+\"L\"+(n.leftFullExtent-r)+\" \"+n.verticalLeftInnerExtent+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftLargeArcRadius-r)+\" 0 0 1 \"+n.leftInnerExtent+\" \"+(n.verticalFullExtent-r)+\"L\"+n.rightInnerExtent+\" \"+(n.verticalFullExtent-r)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightLargeArcRadius-r)+\" 0 0 1 \"+(n.rightFullExtent+r)+\" \"+n.verticalRightInnerExtent+\"L\"+(n.rightFullExtent+r)+\" \"+(n.targetY+n.rightSmallArcRadius)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightSmallArcRadius-r)+\" 0 0 1 \"+n.rightInnerExtent+\" \"+(n.targetY+r)+\"L\"+n.targetX+\" \"+(n.targetY+r)+\"Z\";var e,r,n,a=t.link.source.x1,o=t.link.target.x0,s=i(a,o),l=s(.5),c=s(.5),u=t.link.y0-t.link.width/2,f=t.link.y0+t.link.width/2,h=t.link.y1-t.link.width/2,p=t.link.y1+t.link.width/2;return\"M\"+a+\",\"+u+\"C\"+l+\",\"+u+\" \"+c+\",\"+h+\" \"+o+\",\"+h+\"L\"+o+\",\"+p+\"C\"+c+\",\"+p+\" \"+l+\",\"+f+\" \"+a+\",\"+f+\"Z\"}}function S(t,e){var r=c(e.color),n=l.nodePadAcross,i=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var a=e.dx,o=Math.max(.5,e.dy),s=\"node_\"+e.pointNumber;return e.group&&(s=h.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:s,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(a),visibleHeight:o,zoneX:-n,zoneY:-i,zoneWidth:a+2*n,zoneHeight:o+2*i,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:u.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,s].join(\"_\"),interactionState:t.interactionState,figure:t}}function E(t){t.attr(\"transform\",(function(t){return p(t.node.x0.toFixed(3),t.node.y0.toFixed(3))}))}function L(t){t.call(E)}function C(t,e){t.call(L),e.attr(\"d\",M())}function P(t){t.attr(\"width\",(function(t){return t.node.x1-t.node.x0})).attr(\"height\",(function(t){return t.visibleHeight}))}function I(t){return t.link.width>1||t.linkLineWidth>0}function O(t){return p(t.translateX,t.translateY)+(t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\")}function z(t,e,r){t.on(\".basic\",null).on(\"mouseover.basic\",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])})).on(\"mousemove.basic\",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])})).on(\"mouseout.basic\",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)})).on(\"click.basic\",(function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)}))}function D(t,e,r,i){var o=a.behavior.drag().origin((function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}})).on(\"dragstart\",(function(a){if(\"fixed\"!==a.arrangement&&(h.ensureSingle(i._fullLayout._infolayer,\"g\",\"dragcover\",(function(t){i._fullLayout._dragCover=t})),h.raiseToTop(this),a.interactionState.dragInProgress=a.node,F(a.node),a.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,a.interactionState.hovered),a.interactionState.hovered=!1),\"snap\"===a.arrangement)){var o=a.traceId+\"|\"+a.key;a.forceLayouts[o]?a.forceLayouts[o].alpha(1):function(t,e,r,i){!function(t){for(var e=0;e0&&n.forceLayouts[e].alpha(0)}}(0,e,a,r)).stop()}(0,o,a),function(t,e,r,n,i){window.requestAnimationFrame((function a(){var o;for(o=0;o0)window.requestAnimationFrame(a);else{var s=r.node.originalX;r.node.x0=s-r.visibleWidth/2,r.node.x1=s+r.visibleWidth/2,R(r,i)}}))}(t,e,a,o,i)}})).on(\"drag\",(function(r){if(\"fixed\"!==r.arrangement){var n=a.event.x,i=a.event.y;\"snap\"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2):(\"freeform\"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),i=Math.max(0,Math.min(r.size-r.visibleHeight/2,i)),r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2),F(r.node),\"snap\"!==r.arrangement&&(r.sankey.update(r.graph),C(t.filter(B(r)),e))}})).on(\"dragend\",(function(t){if(\"fixed\"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;el&&C[v].gap;)v--;for(x=C[v].s,m=C.length-1;m>v;m--)C[m].s=x;for(;lM[u]&&u=0;i--){var a=t[i];if(\"scatter\"===a.type&&a.xaxis===r.xaxis&&a.yaxis===r.yaxis){a.opacity=void 0;break}}}}}},{}],934:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"./attributes\"),o=t(\"./constants\"),s=t(\"./subtypes\"),l=t(\"./xy_defaults\"),c=t(\"./period_defaults\"),u=t(\"./stack_defaults\"),f=t(\"./marker_defaults\"),h=t(\"./line_defaults\"),p=t(\"./line_shape_defaults\"),d=t(\"./text_defaults\"),m=t(\"./fillcolor_defaults\"),g=t(\"../../lib\").coercePattern;e.exports=function(t,e,r,v){function y(r,i){return n.coerce(t,e,a,r,i)}var x=l(t,e,v,y);if(x||(e.visible=!1),e.visible){c(t,e,v,y),y(\"xhoverformat\"),y(\"yhoverformat\");var b=u(t,e,v,y),_=!b&&x=Math.min(e,r)&&d<=Math.max(e,r)?0:1/0}var n=Math.max(3,t.mrc||0),i=1-1/n,a=Math.abs(h.c2p(t.x)-d);return a=Math.min(e,r)&&m<=Math.max(e,r)?0:1/0}var n=Math.max(3,t.mrc||0),i=1-1/n,a=Math.abs(p.c2p(t.y)-m);return aW!=(N=z[I][1])>=W&&(R=z[I-1][0],F=z[I][0],N-B&&(D=R+(F-R)*(W-B)/(N-B),H=Math.min(H,D),q=Math.max(q,D)));H=Math.max(H,0),q=Math.min(q,h._length);var X=s.defaultLine;return s.opacity(f.fillcolor)?X=f.fillcolor:s.opacity((f.line||{}).color)&&(X=f.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:H,x1:q,y0:W,y1:W,color:X,hovertemplate:!1}),delete t.index,f.text&&!Array.isArray(f.text)?t.text=String(f.text):t.text=f.name,[t]}}}},{\"../../components/color\":366,\"../../components/fx\":406,\"../../lib\":503,\"../../registry\":638,\"./get_trace_color\":937}],939:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./cross_trace_calc\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\"),colorbar:t(\"./marker_colorbar\"),formatLabels:t(\"./format_labels\"),style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"./select\"),animatable:!0,moduleType:\"trace\",name:\"scatter\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":568,\"./arrays_to_calcdata\":926,\"./attributes\":927,\"./calc\":928,\"./cross_trace_calc\":932,\"./cross_trace_defaults\":933,\"./defaults\":934,\"./format_labels\":936,\"./hover\":938,\"./marker_colorbar\":945,\"./plot\":948,\"./select\":949,\"./style\":951,\"./subtypes\":952}],940:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s(\"line.color\",r),i(t,\"line\"))?a(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}):s(\"line.color\",!n(c)&&c||r);s(\"line.width\"),(l||{}).noDash||s(\"line.dash\")}},{\"../../components/colorscale/defaults\":376,\"../../components/colorscale/helpers\":377,\"../../lib\":503}],941:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),i=n.BADNUM,a=n.LOG_CLIP,o=a+.5,s=a-.5,l=t(\"../../lib\"),c=l.segmentsIntersect,u=l.constrain,f=t(\"./constants\");e.exports=function(t,e){var r,n,a,h,p,d,m,g,v,y,x,b,_,w,T,k,A,M,S=e.xaxis,E=e.yaxis,L=\"log\"===S.type,C=\"log\"===E.type,P=S._length,I=E._length,O=e.connectGaps,z=e.baseTolerance,D=e.shape,R=\"linear\"===D,F=e.fill&&\"none\"!==e.fill,B=[],N=f.minTolerance,j=t.length,U=new Array(j),V=0;function H(r){var n=t[r];if(!n)return!1;var a=e.linearized?S.l2p(n.x):S.c2p(n.x),l=e.linearized?E.l2p(n.y):E.c2p(n.y);if(a===i){if(L&&(a=S.c2p(n.x,!0)),a===i)return!1;C&&l===i&&(a*=Math.abs(S._m*I*(S._m>0?o:s)/(E._m*P*(E._m>0?o:s)))),a*=1e3}if(l===i){if(C&&(l=E.c2p(n.y,!0)),l===i)return!1;l*=1e3}return[a,l]}function q(t,e,r,n){var i=r-t,a=n-e,o=.5-t,s=.5-e,l=i*i+a*a,c=i*o+a*s;if(c>0&&crt||t[1]it)return[u(t[0],et,rt),u(t[1],nt,it)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===it)||void 0)}function lt(t,e,r){return function(n,i){var a=ot(n),o=ot(i),s=[];if(a&&o&&st(a,o))return s;a&&s.push(a),o&&s.push(o);var c=2*l.constrain((n[t]+i[t])/2,e,r)-((a||n)[t]+(o||i)[t]);c&&((a&&o?c>0==a[t]>o[t]?a:o:a||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===U[V-1][0],i=r===U[V-1][1];if(!n||!i)if(V>1){var a=e===U[V-2][0],o=r===U[V-2][1];n&&(e===et||e===rt)&&a?o?V--:U[V-1]=t:i&&(r===nt||r===it)&&o?a?V--:U[V-1]=t:U[V++]=t}else U[V++]=t}function ut(t){U[V-1][0]!==t[0]&&U[V-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ft(t){if(A=t[0]/P,M=t[1]/I,W=t[0]rt?rt:0,X=t[1]it?it:0,W||X){if(V)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),U[V++]=e[1])}else Q=$(U[V-1],t)[0],U[V++]=Q;else U[V++]=[W||t[0],X||t[1]];var r=U[V-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,a=(i=t)[0]-n[0],o=(i[1]-n[1])/a,(n[1]*i[0]-i[1]*n[0])/a>0?[o>0?et:rt,it]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),U[V++]=t;var n,i,a,o}for(\"linear\"===D||\"spline\"===D?$=function(t,e){for(var r=[],n=0,i=0;i<4;i++){var a=at[i],o=c(t[0],t[1],e[0],e[1],a[0],a[1],a[2],a[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)G(d,ht))break;a=d,(_=v[0]*g[0]+v[1]*g[1])>x?(x=_,h=d,m=!1):_=t.length||!d)break;ft(d),n=d}}else ft(h)}K&&ct([Z||K[0],J||K[1]]),B.push(U.slice(0,V))}return B}},{\"../../constants/numerical\":479,\"../../lib\":503,\"./constants\":931}],942:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){\"spline\"===r(\"line.shape\")&&r(\"line.smoothing\")}},{}],943:[function(t,e,r){\"use strict\";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var i,a,o,s,l,c={},u=!1,f=-1,h=0,p=-1;for(a=0;a=0?l=p:(l=p=h,h++),l0?Math.max(r,a):0}}},{\"fast-isnumeric\":190}],945:[function(t,e,r){\"use strict\";e.exports={container:\"marker\",min:\"cmin\",max:\"cmax\"}},{}],946:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\"),o=t(\"./subtypes\");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),f=(t.line||{}).color;(c=c||{},f&&(r=f),l(\"marker.symbol\"),l(\"marker.opacity\",u?.7:1),l(\"marker.size\"),l(\"marker.color\",r),i(t,\"marker\")&&a(t,e,s,l,{prefix:\"marker.\",cLetter:\"c\"}),c.noSelect||(l(\"selected.marker.color\"),l(\"unselected.marker.color\"),l(\"selected.marker.size\"),l(\"unselected.marker.size\")),c.noLine||(l(\"marker.line.color\",f&&!Array.isArray(f)&&e.marker.color!==f?f:u?n.background:n.defaultLine),i(t,\"marker.line\")&&a(t,e,s,l,{prefix:\"marker.line.\",cLetter:\"c\"}),l(\"marker.line.width\",u?1:0)),u&&(l(\"marker.sizeref\"),l(\"marker.sizemin\"),l(\"marker.sizemode\")),c.gradient)&&(\"none\"!==l(\"marker.gradient.type\")&&l(\"marker.gradient.color\"))}},{\"../../components/color\":366,\"../../components/colorscale/defaults\":376,\"../../components/colorscale/helpers\":377,\"./subtypes\":952}],947:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").dateTick0,i=t(\"../../constants/numerical\").ONEWEEK;function a(t,e){return n(e,t%i==0?1:0)}e.exports=function(t,e,r,n,i){if(i||(i={x:!0,y:!0}),i.x){var o=n(\"xperiod\");o&&(n(\"xperiod0\",a(o,e.xcalendar)),n(\"xperiodalignment\"))}if(i.y){var s=n(\"yperiod\");s&&(n(\"yperiod0\",a(s,e.ycalendar)),n(\"yperiodalignment\"))}}},{\"../../constants/numerical\":479,\"../../lib\":503}],948:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=a.ensureSingle,s=a.identity,l=t(\"../../components/drawing\"),c=t(\"./subtypes\"),u=t(\"./line_points\"),f=t(\"./link_traces\"),h=t(\"../../lib/polygon\").tester;function p(t,e,r,f,p,d,m){var g;!function(t,e,r,i,o){var s=r.xaxis,l=r.yaxis,u=n.extent(a.simpleMap(s.range,s.r2c)),f=n.extent(a.simpleMap(l.range,l.r2c)),h=i[0].trace;if(!c.hasMarkers(h))return;var p=h.marker.maxdisplayed;if(0===p)return;var d=i.filter((function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=f[0]&&t.y<=f[1]})),m=Math.ceil(d.length/p),g=0;o.forEach((function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r0;function y(t){return v?t.transition():t}var x=r.xaxis,b=r.yaxis,_=f[0].trace,w=_.line,T=n.select(d),k=o(T,\"g\",\"errorbars\"),A=o(T,\"g\",\"lines\"),M=o(T,\"g\",\"points\"),S=o(T,\"g\",\"text\");if(i.getComponentMethod(\"errorbars\",\"plot\")(t,k,r,m),!0===_.visible){var E,L;y(T).style(\"opacity\",_.opacity);var C=_.fill.charAt(_.fill.length-1);\"x\"!==C&&\"y\"!==C&&(C=\"\"),f[0][r.isRangePlot?\"nodeRangePlot3\":\"node3\"]=T;var P,I,O=\"\",z=[],D=_._prevtrace;D&&(O=D._prevRevpath||\"\",L=D._nextFill,z=D._polygons);var R,F,B,N,j,U,V,H=\"\",q=\"\",G=[],Y=a.noop;if(E=_._ownFill,c.hasLines(_)||\"none\"!==_.fill){for(L&&L.datum(f),-1!==[\"hv\",\"vh\",\"hvh\",\"vhv\"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split(\"\").reverse().join(\"\"))):R=F=\"spline\"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return\"M\"+t.join(\"L\")},B=function(t){return F(t.reverse())},G=u(f,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),V=_._polygons=new Array(G.length),g=0;g1){var r=n.select(this);if(r.datum(f),t)y(r.style(\"opacity\",0).attr(\"d\",P).call(l.lineGroupStyle)).style(\"opacity\",1);else{var i=y(r);i.attr(\"d\",P),l.singleLineStyle(f,i)}}}}}var W=A.selectAll(\".js-line\").data(G);y(W.exit()).style(\"opacity\",0).remove(),W.each(Y(!1)),W.enter().append(\"path\").classed(\"js-line\",!0).style(\"vector-effect\",\"non-scaling-stroke\").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(f),N&&U&&(C?(\"y\"===C?N[1]=U[1]=b.c2p(0,!0):\"x\"===C&&(N[0]=U[0]=x.c2p(0,!0)),y(E).attr(\"d\",\"M\"+U+\"L\"+N+\"L\"+H.substr(1)).call(l.singleFillStyle,t)):y(E).attr(\"d\",H+\"Z\").call(l.singleFillStyle,t))):L&&(\"tonext\"===_.fill.substr(0,6)&&H&&O?(\"tonext\"===_.fill?y(L).attr(\"d\",H+\"Z\"+O+\"Z\").call(l.singleFillStyle,t):y(L).attr(\"d\",H+\"L\"+O.substr(1)+\"Z\").call(l.singleFillStyle,t),_._polygons=_._polygons.concat(z)):(Z(L),_._polygons=null)),_._prevRevpath=q,_._prevPolygons=V):(E?Z(E):L&&Z(L),_._polygons=_._prevRevpath=_._prevPolygons=null),M.datum(f),S.datum(f),function(e,i,a){var o,u=a[0].trace,f=c.hasMarkers(u),h=c.hasText(u),p=tt(u),d=et,m=et;if(f||h){var g=s,_=u.stackgroup,w=_&&\"infer zero\"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?g=w?K:J:_&&!w&&(g=Q),f&&(d=g),h&&(m=g)}var T,k=(o=e.selectAll(\"path.point\").data(d,p)).enter().append(\"path\").classed(\"point\",!0);v&&k.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style(\"opacity\",0).transition().style(\"opacity\",1),o.order(),f&&(T=l.makePointStyleFns(u)),o.each((function(e){var i=n.select(this),a=y(i);l.translatePoint(e,a,x,b)?(l.singlePointStyle(e,a,u,T,t),r.layerClipId&&l.hideOutsideRangePoint(e,a,x,b,u.xcalendar,u.ycalendar),u.customdata&&i.classed(\"plotly-customdata\",null!==e.data&&void 0!==e.data)):a.remove()})),v?o.exit().transition().style(\"opacity\",0).remove():o.exit().remove(),(o=i.selectAll(\"g\").data(m,p)).enter().append(\"g\").classed(\"textpoint\",!0).append(\"text\"),o.order(),o.each((function(t){var e=n.select(this),i=y(e.select(\"text\"));l.translatePoint(t,i,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()})),o.selectAll(\"text\").call(l.textPointStyle,u,t).each((function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll(\"tspan.line\").each((function(){y(n.select(this)).attr({x:e,y:r})}))})),o.exit().remove()}(M,S,f);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(M,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr(\"d\",\"M0,0Z\")}function J(t){return t.filter((function(t){return!t.gap&&t.vis}))}function K(t){return t.filter((function(t){return t.vis}))}function Q(t){return t.filter((function(t){return!t.gap}))}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,i,a,c){var u,h,d=!a,m=!!a&&a.duration>0,g=f(t,e,r);((u=i.selectAll(\"g.trace\").data(g,(function(t){return t[0].trace.uid}))).enter().append(\"g\").attr(\"class\",(function(t){return\"trace scatter trace\"+t[0].trace.uid})).style(\"stroke-miterlimit\",2),u.order(),function(t,e,r){e.each((function(e){var i=o(n.select(this),\"g\",\"fills\");l.setClipUrl(i,r.layerClipId,t);var a=e[0].trace,c=[];a._ownfill&&c.push(\"_ownFill\"),a._nexttrace&&c.push(\"_nextFill\");var u=i.selectAll(\"g\").data(c,s);u.enter().append(\"g\"),u.exit().each((function(t){a[t]=null})).remove(),u.order().each((function(t){a[t]=o(n.select(this),\"path\",\"js-fill\")}))}))}(t,u,e),m)?(c&&(h=c()),n.transition().duration(a.duration).ease(a.easing).each(\"end\",(function(){h&&h()})).each(\"interrupt\",(function(){h&&h()})).each((function(){i.selectAll(\"g.trace\").each((function(r,n){p(t,n,e,r,g,this,a)}))}))):u.each((function(r,n){p(t,n,e,r,g,this,a)}));d&&u.exit().remove(),i.selectAll(\"path:not([d])\").remove()}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/polygon\":515,\"../../registry\":638,\"./line_points\":941,\"./link_traces\":943,\"./subtypes\":952,\"@plotly/d3\":58}],949:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports=function(t,e){var r,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],f=s[0].trace;if(!n.hasMarkers(f)&&!n.hasText(f))return[];if(!1===e)for(r=0;r0){var h=i.c2l(u);i._lowerLogErrorBound||(i._lowerLogErrorBound=h),i._lowerErrorBound=Math.min(i._lowerLogErrorBound,h)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[i(t.x,t.error_x,e[0],r.xaxis),i(t.y,t.error_y,e[1],r.yaxis),i(t.z,t.error_z,e[2],r.zaxis)],a=function(t){for(var e=0;e-1?-1:t.indexOf(\"right\")>-1?1:0}function b(t){return null==t?0:t.indexOf(\"top\")>-1?-1:t.indexOf(\"bottom\")>-1?1:0}function _(t,e){return e(4*t)}function w(t){return p[t]}function T(t,e,r,n,i){var a=null;if(l.isArrayOrTypedArray(t)){a=[];for(var o=0;o=0){var m=function(t,e,r){var n,i=(r+1)%3,a=(r+2)%3,o=[],l=[];for(n=0;n=0&&f(\"surfacecolor\",h||p);for(var d=[\"x\",\"y\",\"z\"],m=0;m<3;++m){var g=\"projection.\"+d[m];f(g+\".show\")&&(f(g+\".opacity\"),f(g+\".scale\"))}var v=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");v(t,e,h||p||r,{axis:\"z\"}),v(t,e,h||p||r,{axis:\"y\",inherit:\"z\"}),v(t,e,h||p||r,{axis:\"x\",inherit:\"z\"})}else e.visible=!1}},{\"../../lib\":503,\"../../registry\":638,\"../scatter/line_defaults\":940,\"../scatter/marker_defaults\":946,\"../scatter/subtypes\":952,\"../scatter/text_defaults\":953,\"./attributes\":955}],960:[function(t,e,r){\"use strict\";e.exports={plot:t(\"./convert\"),attributes:t(\"./attributes\"),markerSymbols:t(\"../../constants/gl3d_markers\"),supplyDefaults:t(\"./defaults\"),colorbar:[{container:\"marker\",min:\"cmin\",max:\"cmax\"},{container:\"line\",min:\"cmin\",max:\"cmax\"}],calc:t(\"./calc\"),moduleType:\"trace\",name:\"scatter3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../constants/gl3d_markers\":477,\"../../plots/gl3d\":598,\"./attributes\":955,\"./calc\":956,\"./convert\":958,\"./defaults\":959}],961:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../components/colorscale/attributes\"),l=t(\"../../lib/extend\").extendFlat,c=n.marker,u=n.line,f=c.line;e.exports={carpet:{valType:\"string\",editType:\"calc\"},a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},mode:l({},n.mode,{dflt:\"markers\"}),text:l({},n.text,{}),texttemplate:o({editType:\"plot\"},{keys:[\"a\",\"b\",\"text\"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:[\"linear\",\"spline\"]}),smoothing:u.smoothing,editType:\"calc\"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:f.width,editType:\"calc\"},s(\"marker.line\")),gradient:c.gradient,editType:\"calc\"},s(\"marker\")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},i.hoverinfo,{flags:[\"a\",\"b\",\"text\",\"name\"]}),hoveron:n.hoveron,hovertemplate:a()}},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/template_attributes\":633,\"../scatter/attributes\":927}],962:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../scatter/colorscale_calc\"),a=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=t(\"../carpet/lookup_carpetid\");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,f,h=e._length,p=new Array(h),d=!1;for(c=0;c\")}return o}function y(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,\"\"):t._hovertitle,g.push(r+\": \"+e.toFixed(3)+t.labelsuffix)}}},{\"../../lib\":503,\"../scatter/hover\":938}],967:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scattercarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"svg\",\"carpet\",\"symbols\",\"showLegend\",\"carpetDependent\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":568,\"../scatter/marker_colorbar\":945,\"../scatter/select\":949,\"../scatter/style\":951,\"./attributes\":961,\"./calc\":962,\"./defaults\":963,\"./event_data\":964,\"./format_labels\":965,\"./hover\":966,\"./plot\":968}],968:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../components/drawing\");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,f={xaxis:i.getFromId(t,u.xaxis||\"x\"),yaxis:i.getFromId(t,u.yaxis||\"y\"),plot:e.plot};for(n(t,f,r,o),s=0;s\")}(c,m,t,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{\"../../components/fx\":406,\"../../constants/numerical\":479,\"../../lib\":503,\"../scatter/get_trace_color\":937,\"./attributes\":969}],975:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),calcGeoJSON:t(\"./plot\").calcGeoJSON,plot:t(\"./plot\").plot,style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"scattergeo\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/geo\":589,\"../scatter/marker_colorbar\":945,\"../scatter/style\":951,\"./attributes\":969,\"./calc\":970,\"./defaults\":971,\"./event_data\":972,\"./format_labels\":973,\"./hover\":974,\"./plot\":976,\"./select\":977,\"./style\":978}],976:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=t(\"../../lib/topojson_utils\").getTopojsonFeatures,o=t(\"../../lib/geojson_utils\"),s=t(\"../../lib/geo_location_utils\"),l=t(\"../../plots/cartesian/autorange\").findExtremes,c=t(\"../../constants/numerical\").BADNUM,u=t(\"../scatter/calc\").calcMarkerSize,f=t(\"../scatter/subtypes\"),h=t(\"./style\");e.exports={calcGeoJSON:function(t,e){var r,n,i=t[0].trace,o=e[i.geo],f=o._subplot,h=i._length;if(Array.isArray(i.locations)){var p=i.locationmode,d=\"geojson-id\"===p?s.extractTraceFeature(t):a(i,f.topojson);for(r=0;r=g,w=2*b,T={},k=l.makeCalcdata(e,\"x\"),A=y.makeCalcdata(e,\"y\"),M=s(e,l,\"x\",k),S=s(e,y,\"y\",A),E=M.vals,L=S.vals;e._x=E,e._y=L,e.xperiodalignment&&(e._origX=k,e._xStarts=M.starts,e._xEnds=M.ends),e.yperiodalignment&&(e._origY=A,e._yStarts=S.starts,e._yEnds=S.ends);var C=new Array(w),P=new Array(b);for(r=0;r1&&i.extendFlat(s.line,p.linePositions(t,r,n));if(s.errorX||s.errorY){var l=p.errorBarPositions(t,r,n,a,o);s.errorX&&i.extendFlat(s.errorX,l.x),s.errorY&&i.extendFlat(s.errorY,l.y)}s.text&&(i.extendFlat(s.text,{positions:n},p.textPosition(t,r,s.text,s.marker)),i.extendFlat(s.textSel,{positions:n},p.textPosition(t,r,s.text,s.markerSel)),i.extendFlat(s.textUnsel,{positions:n},p.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,C,E,L),z=d(t,x);return f(o,e),_?O.marker&&(I=O.marker.sizeAvg||Math.max(O.marker.size,3)):I=c(e,b),u(t,e,l,y,E,L,I),O.errorX&&v(e,l,O.errorX),O.errorY&&v(e,y,O.errorY),O.fill&&!z.fill2d&&(z.fill2d=!0),O.marker&&!z.scatter2d&&(z.scatter2d=!0),O.line&&!z.line2d&&(z.line2d=!0),!O.errorX&&!O.errorY||z.error2d||(z.error2d=!0),O.text&&!z.glText&&(z.glText=!0),O.marker&&(O.marker.snap=b),z.lineOptions.push(O.line),z.errorXOptions.push(O.errorX),z.errorYOptions.push(O.errorY),z.fillOptions.push(O.fill),z.markerOptions.push(O.marker),z.markerSelectedOptions.push(O.markerSel),z.markerUnselectedOptions.push(O.markerUnsel),z.textOptions.push(O.text),z.textSelectedOptions.push(O.textSel),z.textUnselectedOptions.push(O.textUnsel),z.selectBatch.push([]),z.unselectBatch.push([]),T._scene=z,T.index=z.count,T.x=E,T.y=L,T.positions=C,z.count++,[{x:!1,y:!1,t:T,trace:e}]}},{\"../../constants/numerical\":479,\"../../lib\":503,\"../../plots/cartesian/align_period\":551,\"../../plots/cartesian/autorange\":553,\"../../plots/cartesian/axis_ids\":558,\"../scatter/calc\":928,\"../scatter/colorscale_calc\":930,\"./constants\":982,\"./convert\":983,\"./scene_update\":991,\"@plotly/point-cluster\":59}],982:[function(t,e,r){\"use strict\";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],983:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"svg-path-sdf\"),a=t(\"color-normalize\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../components/drawing\"),c=t(\"../../plots/cartesian/axis_ids\"),u=t(\"../../lib/gl_format_color\").formatColor,f=t(\"../scatter/subtypes\"),h=t(\"../scatter/make_bubble_size_func\"),p=t(\"./helpers\"),d=t(\"./constants\"),m=t(\"../../constants/interactions\").DESELECTDIM,g={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t(\"../../components/fx/helpers\").appendArrayPointValue;function y(t,e){var r,i=t._fullLayout,a=e._length,o=e.textfont,l=e.textposition,c=Array.isArray(l)?l:[l],u=o.color,f=o.size,h=o.family,p={},d=t._context.plotGlPixelRatio,m=e.texttemplate;if(m){p.text=[];var g=i._d3locale,y=Array.isArray(m),x=y?Math.min(m.length,a):a,b=y?function(t){return m[t]}:function(){return m};for(r=0;rd.TOO_MANY_POINTS||f.hasMarkers(e)?\"rect\":\"round\";if(c&&e.connectgaps){var h=n[0],p=n[1];for(i=0;i1?l[i]:l[0]:l,d=Array.isArray(c)?c.length>1?c[i]:c[0]:c,m=g[p],v=g[d],y=u?u/.8+1:0,x=-v*y-.5*v;o.offset[i]=[m*y/h,x/h]}}return o}}},{\"../../components/drawing\":388,\"../../components/fx/helpers\":402,\"../../constants/interactions\":478,\"../../lib\":503,\"../../lib/gl_format_color\":499,\"../../plots/cartesian/axis_ids\":558,\"../../registry\":638,\"../scatter/make_bubble_size_func\":944,\"../scatter/subtypes\":952,\"./constants\":982,\"./helpers\":987,\"color-normalize\":89,\"fast-isnumeric\":190,\"svg-path-sdf\":310}],984:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"./helpers\"),o=t(\"./attributes\"),s=t(\"../scatter/constants\"),l=t(\"../scatter/subtypes\"),c=t(\"../scatter/xy_defaults\"),u=t(\"../scatter/period_defaults\"),f=t(\"../scatter/marker_defaults\"),h=t(\"../scatter/line_defaults\"),p=t(\"../scatter/fillcolor_defaults\"),d=t(\"../scatter/text_defaults\");e.exports=function(t,e,r,m){function g(r,i){return n.coerce(t,e,o,r,i)}var v=!!t.marker&&a.isOpenSymbol(t.marker.symbol),y=l.isBubble(t),x=c(t,e,m,g);if(x){u(t,e,m,g),g(\"xhoverformat\"),g(\"yhoverformat\");var b=x100},r.isDotSymbol=function(t){return\"string\"==typeof t?n.DOT_RE.test(t):t>200}},{\"./constants\":982}],988:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../scatter/get_trace_color\");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,f=t.index,h={pointNumber:f,x:e[f],y:r[f]};h.tx=Array.isArray(o.text)?o.text[f]:o.text,h.htx=Array.isArray(o.hovertext)?o.hovertext[f]:o.hovertext,h.data=Array.isArray(o.customdata)?o.customdata[f]:o.customdata,h.tp=Array.isArray(o.textposition)?o.textposition[f]:o.textposition;var p=o.textfont;p&&(h.ts=i.isArrayOrTypedArray(p.size)?p.size[f]:p.size,h.tc=Array.isArray(p.color)?p.color[f]:p.color,h.tf=Array.isArray(p.family)?p.family[f]:p.family);var d=o.marker;d&&(h.ms=i.isArrayOrTypedArray(d.size)?d.size[f]:d.size,h.mo=i.isArrayOrTypedArray(d.opacity)?d.opacity[f]:d.opacity,h.mx=i.isArrayOrTypedArray(d.symbol)?d.symbol[f]:d.symbol,h.mc=i.isArrayOrTypedArray(d.color)?d.color[f]:d.color);var m=d&&d.line;m&&(h.mlc=Array.isArray(m.color)?m.color[f]:m.color,h.mlw=i.isArrayOrTypedArray(m.width)?m.width[f]:m.width);var g=d&&d.gradient;g&&\"none\"!==g.type&&(h.mgt=Array.isArray(g.type)?g.type[f]:g.type,h.mgc=Array.isArray(g.color)?g.color[f]:g.color);var v=s.c2p(h.x,!0),y=l.c2p(h.y,!0),x=h.mrc||1,b=o.hoverlabel;b&&(h.hbg=Array.isArray(b.bgcolor)?b.bgcolor[f]:b.bgcolor,h.hbc=Array.isArray(b.bordercolor)?b.bordercolor[f]:b.bordercolor,h.hts=i.isArrayOrTypedArray(b.font.size)?b.font.size[f]:b.font.size,h.htc=Array.isArray(b.font.color)?b.font.color[f]:b.font.color,h.htf=Array.isArray(b.font.family)?b.font.family[f]:b.font.family,h.hnl=i.isArrayOrTypedArray(b.namelength)?b.namelength[f]:b.namelength);var _=o.hoverinfo;_&&(h.hi=Array.isArray(_)?_[f]:_);var w=o.hovertemplate;w&&(h.ht=Array.isArray(w)?w[f]:w);var T={};T[t.index]=h;var k=o._origX,A=o._origY,M=i.extendFlat({},t,{color:a(o,h),x0:v-x,x1:v+x,xLabelVal:k?k[f]:h.x,y0:y-x,y1:y+x,yLabelVal:A?A[f]:h.y,cd:T,distance:c,spikeDistance:u,hovertemplate:h.ht});return h.htx?M.text=h.htx:h.tx?M.text=h.tx:o.text&&(M.text=o.text),i.fillText(h,o,M),n.getComponentMethod(\"errorbars\",\"hoverInfo\")(h,o,M),M}e.exports={hoverPoints:function(t,e,r,n){var i,a,s,l,c,u,f,h,p,d,m=t.cd,g=m[0].t,v=m[0].trace,y=t.xa,x=t.ya,b=g.x,_=g.y,w=y.c2p(e),T=x.c2p(r),k=t.distance;if(g.tree){var A=y.p2c(w-k),M=y.p2c(w+k),S=x.p2c(T-k),E=x.p2c(T+k);i=\"x\"===n?g.tree.range(Math.min(A,M),Math.min(x._rl[0],x._rl[1]),Math.max(A,M),Math.max(x._rl[0],x._rl[1])):g.tree.range(Math.min(A,M),Math.min(S,E),Math.max(A,M),Math.max(S,E))}else i=g.ids;var L=k;if(\"x\"===n){var C=!!v.xperiodalignment,P=!!v.yperiodalignment;for(u=0;u=Math.min(I,O)&&w<=Math.max(I,O)?0:1/0}if(f=Math.min(z,D)&&T<=Math.max(z,D)?0:1/0}d=Math.sqrt(f*f+h*h),s=i[u]}}}else for(u=i.length-1;u>-1;u--)l=b[a=i[u]],c=_[a],f=y.c2p(l)-w,h=x.c2p(c)-T,(p=Math.sqrt(f*f+h*h))y.glText.length){var T=_-y.glText.length;for(m=0;mr&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t})),y.line2d.update(y.lineOptions)),y.error2d){var A=(y.errorXOptions||[]).concat(y.errorYOptions||[]);y.error2d.update(A)}y.scatter2d&&y.scatter2d.update(y.markerOptions),y.fillOrder=s.repeat(null,_),y.fill2d&&(y.fillOptions=y.fillOptions.map((function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var i,a,o=n[0],s=o.trace,l=o.t,c=y.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(y.fillOrder[e]=u);var f,h,p=[],d=c&&c.positions||l.positions;if(\"tozeroy\"===s.fill){for(f=0;ff&&isNaN(d[h+1]);)h-=2;0!==d[f+1]&&(p=[d[f],0]),p=p.concat(d.slice(f,h+2)),0!==d[h+1]&&(p=p.concat([d[h],0]))}else if(\"tozerox\"===s.fill){for(f=0;ff&&isNaN(d[h]);)h-=2;0!==d[f]&&(p=[0,d[f+1]]),p=p.concat(d.slice(f,h+2)),0!==d[h]&&(p=p.concat([0,d[h+1]]))}else if(\"toself\"===s.fill||\"tonext\"===s.fill){for(p=[],i=0,t.splitNull=!0,a=0;a-1;for(m=0;m<_;m++){var L=r[m][0],C=L.trace,P=L.t,I=P.index,O=C._length,z=P.x,D=P.y;if(C.selectedpoints||S||E){if(S||(S=!0),C.selectedpoints){var R=y.selectBatch[I]=s.selIndices2selPoints(C),F={};for(g=0;g\")}function u(t){return t+\"\\xb0\"}}e.exports={hoverPoints:function(t,e,r){var o=t.cd,c=o[0].trace,u=t.xa,f=t.ya,h=t.subplot,p=360*(e>=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(o,(function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=i.modHalf(e[0],360),a=e[1],o=h.project([n,a]),l=o.x-u.c2p([d,a]),c=o.y-f.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)}),t),!1!==t.index){var m=o[t.index],g=m.lonlat,v=[i.modHalf(g[0],360)+p,g[1]],y=u.c2p(v),x=f.c2p(v),b=m.mrc||1;t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b;var _={};_[c.subplot]={_subplot:h};var w=c._module.formatLabels(m,c,_);return t.lonLabel=w.lonLabel,t.latLabel=w.latLabel,t.color=a(c,m),t.extraText=l(c,m,o[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}},getExtraText:l}},{\"../../components/fx\":406,\"../../constants/numerical\":479,\"../../lib\":503,\"../scatter/get_trace_color\":937}],999:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"../scattergeo/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:\"trace\",name:\"scattermapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/mapbox\":613,\"../scatter/marker_colorbar\":945,\"../scattergeo/calc\":970,\"./attributes\":993,\"./defaults\":995,\"./event_data\":996,\"./format_labels\":997,\"./hover\":998,\"./plot\":1e3,\"./select\":1001}],1e3:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),i=t(\"../../plots/mapbox/constants\").traceLayerPrefix,a=[\"fill\",\"line\",\"circle\",\"symbol\"];function o(t,e){this.type=\"scattermapbox\",this.subplot=t,this.uid=e,this.sourceIds={fill:\"source-\"+e+\"-fill\",line:\"source-\"+e+\"-line\",circle:\"source-\"+e+\"-circle\",symbol:\"source-\"+e+\"-symbol\"},this.layerIds={fill:i+e+\"-fill\",line:i+e+\"-line\",circle:i+e+\"-circle\",symbol:i+e+\"-symbol\"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:\"geojson\",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,i,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup[\"trace-\"+this.uid];if(c!==this.below){for(e=a.length-1;e>=0;e--)r=a[e],s.removeLayer(this.layerIds[r]);for(e=0;e=0;e--){var r=a[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,i=new o(t,r.uid),s=n(t.gd,e),l=i.below=t.belowLookup[\"trace-\"+r.uid],c=0;c\")}}e.exports={hoverPoints:function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},{\"../scatter/hover\":938}],1007:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scatter/select\"),meta:{}}},{\"../../plots/polar\":622,\"../scatter/marker_colorbar\":945,\"../scatter/select\":949,\"../scatter/style\":951,\"./attributes\":1002,\"./calc\":1003,\"./defaults\":1004,\"./format_labels\":1005,\"./hover\":1006,\"./plot\":1008}],1008:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){for(var a=e.layers.frontplot.select(\"g.scatterlayer\"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!h.fill2d&&(h.fill2d=!0),y.marker&&!h.scatter2d&&(h.scatter2d=!0),y.line&&!h.line2d&&(h.line2d=!0),y.text&&!h.glText&&(h.glText=!0),h.lineOptions.push(y.line),h.fillOptions.push(y.fill),h.markerOptions.push(y.marker),h.markerSelectedOptions.push(y.markerSel),h.markerUnselectedOptions.push(y.markerUnsel),h.textOptions.push(y.text),h.textSelectedOptions.push(y.textSel),h.textUnselectedOptions.push(y.textUnsel),h.selectBatch.push([]),h.unselectBatch.push([]),d.x=w,d.y=T,d.rawx=w,d.rawy=T,d.r=g,d.theta=v,d.positions=_,d._scene=h,d.index=h.count,h.count++}})),a(t,e,r)}},e.exports.reglPrecompiled={}},{\"../../lib\":503,\"../scattergl/constants\":982,\"../scattergl/convert\":983,\"../scattergl/plot\":990,\"../scattergl/scene_update\":991,\"@plotly/point-cluster\":59,\"fast-isnumeric\":190}],1017:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../../lib/extend\").extendFlat,o=t(\"../scatter/attributes\"),s=t(\"../../plots/attributes\"),l=o.line;e.exports={mode:o.mode,real:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},imag:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},text:o.text,texttemplate:i({editType:\"plot\"},{keys:[\"real\",\"imag\",\"text\"]}),hovertext:o.hovertext,line:{color:l.color,width:l.width,dash:l.dash,shape:a({},l.shape,{values:[\"linear\",\"spline\"]}),smoothing:l.smoothing,editType:\"calc\"},connectgaps:o.connectgaps,marker:o.marker,cliponaxis:a({},o.cliponaxis,{dflt:!1}),textposition:o.textposition,textfont:o.textfont,fill:a({},o.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:o.fillcolor,hoverinfo:a({},s.hoverinfo,{flags:[\"real\",\"imag\",\"text\",\"name\"]}),hoveron:o.hoveron,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":493,\"../../plots/attributes\":550,\"../../plots/template_attributes\":633,\"../scatter/attributes\":927}],1018:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../scatter/colorscale_calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\"),l=t(\"../scatter/calc\").calcMarkerSize;e.exports=function(t,e){for(var r=t._fullLayout,c=e.subplot,u=r[c].realaxis,f=r[c].imaginaryaxis,h=u.makeCalcdata(e,\"real\"),p=f.makeCalcdata(e,\"imag\"),d=e._length,m=new Array(d),g=0;g\")}}e.exports={hoverPoints:function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},{\"../scatter/hover\":938}],1022:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scattersmith\",basePlotModule:t(\"../../plots/smith\"),categories:[\"smith\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scatter/select\"),meta:{}}},{\"../../plots/smith\":629,\"../scatter/marker_colorbar\":945,\"../scatter/select\":949,\"../scatter/style\":951,\"./attributes\":1017,\"./calc\":1018,\"./defaults\":1019,\"./format_labels\":1020,\"./hover\":1021,\"./plot\":1023}],1023:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../../plots/smith/helpers\").smith;e.exports=function(t,e,r){for(var o=e.layers.frontplot.select(\"g.scatterlayer\"),s={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},l=0;l\"),o.hovertemplate=h.hovertemplate,a}function x(t,e){v.push(t._hovertitle+\": \"+e)}}},{\"../scatter/hover\":938}],1030:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scatterternary\",basePlotModule:t(\"../../plots/ternary\"),categories:[\"ternary\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/ternary\":634,\"../scatter/marker_colorbar\":945,\"../scatter/select\":949,\"../scatter/style\":951,\"./attributes\":1024,\"./calc\":1025,\"./defaults\":1026,\"./event_data\":1027,\"./format_labels\":1028,\"./hover\":1029,\"./plot\":1031}],1031:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\");e.exports=function(t,e,r){var i=e.plotContainer;i.select(\".scatterlayer\").selectAll(\"*\").remove();var a={xaxis:e.xaxis,yaxis:e.yaxis,plot:i,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select(\"g.scatterlayer\");n(t,a,r,o)}},{\"../scatter/plot\":948}],1032:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../scattergl/attributes\"),l=t(\"../../plots/cartesian/constants\").idRegex,c=t(\"../../plot_api/plot_template\").templatedArray,u=t(\"../../lib/extend\").extendFlat,f=n.marker,h=f.line,p=u(i(\"marker.line\",{editTypeOverride:\"calc\"}),{width:u({},h.width,{editType:\"calc\"}),editType:\"calc\"}),d=u(i(\"marker\"),{symbol:f.symbol,size:u({},f.size,{editType:\"markerSize\"}),sizeref:f.sizeref,sizemin:f.sizemin,sizemode:f.sizemode,opacity:f.opacity,colorbar:f.colorbar,line:p,editType:\"calc\"});function m(t){return{valType:\"info_array\",freeLength:!0,editType:\"calc\",items:{valType:\"subplotid\",regex:l[t],editType:\"plot\"}}}d.color.editType=d.cmin.editType=d.cmax.editType=\"style\",e.exports={dimensions:c(\"dimension\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},label:{valType:\"string\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},axis:{type:{valType:\"enumerated\",values:[\"linear\",\"log\",\"date\",\"category\"],editType:\"calc+clearAxisTypes\"},matches:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc+clearAxisTypes\"},editType:\"calc+clearAxisTypes\"}),text:u({},s.text,{}),hovertext:u({},s.hovertext,{}),hovertemplate:o(),xhoverformat:a(\"x\"),yhoverformat:a(\"y\"),marker:d,xaxes:m(\"x\"),yaxes:m(\"y\"),diagonal:{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},showupperhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},showlowerhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},selected:{marker:s.selected.marker,editType:\"calc\"},unselected:{marker:s.unselected.marker,editType:\"calc\"},opacity:s.opacity}},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plot_api/plot_template\":543,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/cartesian/constants\":561,\"../../plots/template_attributes\":633,\"../scatter/attributes\":927,\"../scattergl/attributes\":979}],1033:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../components/grid\");e.exports={moduleType:\"trace\",name:\"splom\",categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\"),editStyle:t(\"./edit_style\"),meta:{}},n.register(i)},{\"../../components/grid\":410,\"../../registry\":638,\"../scatter/marker_colorbar\":945,\"./attributes\":1032,\"./calc\":1035,\"./defaults\":1036,\"./edit_style\":1037,\"./hover\":1039,\"./plot\":1041,\"./select\":1043}],1034:[function(t,e,r){\"use strict\";var n=t(\"regl-line2d\"),i=t(\"../../registry\"),a=t(\"../../lib/prepare_regl\"),o=t(\"../../plots/get_data\").getModuleCalcData,s=t(\"../../plots/cartesian\"),l=t(\"../../plots/cartesian/axis_ids\").getFromId,c=t(\"../../plots/cartesian/axes\").shouldShowZeroLine,u={};function f(t,e,r){for(var n=r.matrixOptions.data.length,i=e._visibleDims,a=r.viewOpts.ranges=new Array(n),o=0;oh?b.sizeAvg||Math.max(b.size,3):a(e,x),p=0;pa&&l||i-1,P=!0;if(o(x)||!!p.selectedpoints||C){var I=p._length;if(p.selectedpoints){m.selectBatch=p.selectedpoints;var O=p.selectedpoints,z={};for(l=0;l1&&(u=m[y-1],h=g[y-1],d=v[y-1]),e=0;eu?\"-\":\"+\")+\"x\")).replace(\"y\",(f>h?\"-\":\"+\")+\"y\")).replace(\"z\",(p>d?\"-\":\"+\")+\"z\");var L=function(){y=0,M=[],S=[],E=[]};(!y||y2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function p(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function d(t,e){var r=t.fullSceneLayout,i=t.dataScale,u=e._len,f={};function d(t,e){var n=r[e],o=i[c[e]];return a.simpleMap(t,(function(t){return n.d2l(t)*o}))}if(f.vectors=l(d(e._u,\"xaxis\"),d(e._v,\"yaxis\"),d(e._w,\"zaxis\"),u),!u)return{positions:[],cells:[]};var m=d(e._Xs,\"xaxis\"),g=d(e._Ys,\"yaxis\"),v=d(e._Zs,\"zaxis\");if(f.meshgrid=[m,g,v],f.gridFill=e._gridFill,e._slen)f.startingPositions=l(d(e._startsX,\"xaxis\"),d(e._startsY,\"yaxis\"),d(e._startsZ,\"zaxis\"));else{for(var y=g[0],x=h(m),b=h(v),_=new Array(x.length*b.length),w=0,T=0;T=0};v?(r=Math.min(g.length,x.length),l=function(t){return A(g[t])&&M(t)},f=function(t){return String(g[t])}):(r=Math.min(y.length,x.length),l=function(t){return A(y[t])&&M(t)},f=function(t){return String(y[t])}),_&&(r=Math.min(r,b.length));for(var S=0;S1){for(var P=a.randstr(),I=0;I\"),name:A||z(\"name\")?y.name:void 0,color:k(\"hoverlabel.bgcolor\")||x.color,borderColor:k(\"hoverlabel.bordercolor\"),fontFamily:k(\"hoverlabel.font.family\"),fontSize:k(\"hoverlabel.font.size\"),fontColor:k(\"hoverlabel.font.color\"),nameLength:k(\"hoverlabel.namelength\"),textAlign:k(\"hoverlabel.align\"),hovertemplate:A,hovertemplateLabels:P,eventData:l};g&&(F.x0=E-i.rInscribed*i.rpx1,F.x1=E+i.rInscribed*i.rpx1,F.idealAlign=i.pxmid[0]<0?\"left\":\"right\"),v&&(F.x=E,F.idealAlign=E<0?\"left\":\"right\");var B=[];o.loneHover(F,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r,inOut_bbox:B}),l[0].bbox=B[0],d._hasHoverLabel=!0}if(v){var N=t.select(\"path.surface\");h.styleOne(N,i,y,{hovered:!0})}d._hasHoverEvent=!0,r.emit(\"plotly_hover\",{points:l||[f(i,y,h.eventDataKeys)],event:n.event})}})),t.on(\"mouseout\",(function(e){var i=r._fullLayout,a=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit(\"plotly_unhover\",{points:[f(s,a,h.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(i._hoverlayer.node()),d._hasHoverLabel=!1),v){var l=t.select(\"path.surface\");h.styleOne(l,s,a,{hovered:!1})}})),t.on(\"click\",(function(t){var e=r._fullLayout,a=r._fullData[d.index],s=g&&(c.isHierarchyRoot(t)||c.isLeaf(t)),u=c.getPtId(t),p=c.isEntry(t)?c.findEntryWithChild(m,u):c.findEntryWithLevel(m,u),v=c.getPtId(p),y={points:[f(t,a,h.eventDataKeys)],event:n.event};s||(y.nextLevel=v);var x=l.triggerHandler(r,\"plotly_\"+d.type+\"click\",y);if(!1!==x&&e.hovermode&&(r._hoverdata=[f(t,a,h.eventDataKeys)],o.click(r,n.event)),!s&&!1!==x&&!r._dragging&&!r._transitioning){i.call(\"_storeDirectGUIEdit\",a,e._tracePreGUI[a.uid],{level:a.level});var b={data:[{level:v}],traces:[d.index]},_={frame:{redraw:!1,duration:h.transitionTime},transition:{duration:h.transitionTime,easing:h.transitionEasing},mode:\"immediate\",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),i.call(\"animate\",r,b,_)}}))}},{\"../../components/fx\":406,\"../../components/fx/helpers\":402,\"../../lib\":503,\"../../lib/events\":492,\"../../registry\":638,\"../pie/helpers\":906,\"./helpers\":1055,\"@plotly/d3\":58}],1055:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../../lib/setcursor\"),o=t(\"../pie/helpers\");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter((function(t){if(r.getPtId(t)===e)return n=t.copy()})),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter((function(t){for(var i=t.children||[],a=0;a0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var i=e?[n.data[e]]:[n];return r.listPath(n,e).concat(i)},r.getPath=function(t){return r.listPath(t,\"label\").join(\"/\")+\"/\"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return\"0%\"===r&&(r=o.formatPiePercent(t,e)),r}},{\"../../components/color\":366,\"../../lib\":503,\"../../lib/setcursor\":524,\"../pie/helpers\":906}],1056:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"sunburst\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":945,\"./attributes\":1049,\"./base_plot\":1050,\"./calc\":1051,\"./defaults\":1053,\"./layout_attributes\":1057,\"./layout_defaults\":1058,\"./plot\":1059,\"./style\":1060}],1057:[function(t,e,r){\"use strict\";e.exports={sunburstcolorway:{valType:\"colorlist\",editType:\"calc\"},extendsunburstcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1058:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"sunburstcolorway\",e.colorway),r(\"extendsunburstcolors\")}},{\"../../lib\":503,\"./layout_attributes\":1057}],1059:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"d3-hierarchy\"),a=t(\"d3-interpolate\").interpolate,o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../bar/uniform_text\"),u=c.recordMinTextSize,f=c.clearMinTextSize,h=t(\"../pie/plot\"),p=t(\"../pie/helpers\").getRotationAngle,d=h.computeTransform,m=h.transformInsideText,g=t(\"./style\").styleOne,v=t(\"../bar/style\").resizeText,y=t(\"./fx\"),x=t(\"./constants\"),b=t(\"./helpers\");function _(t,e,c,f){var h=t._fullLayout,v=!h.uniformtext.mode&&b.hasTransition(f),_=n.select(c).selectAll(\"g.slice\"),T=e[0],k=T.trace,A=T.hierarchy,M=b.findEntryWithLevel(A,k.level),S=b.getMaxDepth(k),E=h._size,L=k.domain,C=E.w*(L.x[1]-L.x[0]),P=E.h*(L.y[1]-L.y[0]),I=.5*Math.min(C,P),O=T.cx=E.l+E.w*(L.x[1]+L.x[0])/2,z=T.cy=E.t+E.h*(1-L.y[0])-P/2;if(!M)return _.remove();var D=null,R={};v&&_.each((function(t){R[b.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!D&&b.isEntry(t)&&(D=t)}));var F=function(t){return i.partition().size([2*Math.PI,t.height+1])(t)}(M).descendants(),B=M.height+1,N=0,j=S;T.hasMultipleRoots&&b.isHierarchyRoot(M)&&(F=F.slice(1),B-=1,N=1,j+=1),F=F.filter((function(t){return t.y1<=j}));var U=p(k.rotation);U&&F.forEach((function(t){t.x0+=U,t.x1+=U}));var V=Math.min(B,S),H=function(t){return(t-N)/V*I},q=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},G=function(t){return s.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,O,z)},Y=function(t){return O+w(t)[0]*(t.transform.rCenter||0)+(t.transform.x||0)},W=function(t){return z+w(t)[1]*(t.transform.rCenter||0)+(t.transform.y||0)};(_=_.data(F,b.getPtId)).enter().append(\"g\").classed(\"slice\",!0),v?_.exit().transition().each((function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",(function(t){var e=function(t){var e,r=b.getPtId(t),n=R[r],i=R[b.getPtId(M)];if(i){var o=(t.x1>i.x1?2*Math.PI:0)+U;e=t.rpx1X?2*Math.PI:0)+U;e={x0:i,x1:i}}else e={rpx0:I,rpx1:I},s.extendFlat(e,K(t));else e={rpx0:0,rpx1:0};else e={x0:U,x1:U};return a(e,n)}(t);return function(t){return G(e(t))}})):f.attr(\"d\",G),c.call(y,M,t,e,{eventDataKeys:x.eventDataKeys,transitionTime:x.CLICK_TRANSITION_TIME,transitionEasing:x.CLICK_TRANSITION_EASING}).call(b.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),f.call(g,i,k);var p=s.ensureSingle(c,\"g\",\"slicetext\"),_=s.ensureSingle(p,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),w=s.ensureUniformFontSize(t,b.determineTextFont(k,i,h.font));_.text(r.formatSliceLabel(i,M,k,e,h)).classed(\"slicetext\",!0).attr(\"text-anchor\",\"middle\").call(o.font,w).call(l.convertToTspans,t);var A=o.bBox(_.node());i.transform=m(A,i,T),i.transform.targetX=Y(i),i.transform.targetY=W(i);var S=function(t,e){var r=t.transform;return d(r,e),r.fontSize=w.size,u(k.type,r,h),s.getTextTransform(r)};v?_.transition().attrTween(\"transform\",(function(t){var e=function(t){var e,r=R[b.getPtId(t)],n=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{textPosAngle:n.textPosAngle,scale:0,rotate:n.rotate,rCenter:n.rCenter,x:n.x,y:n.y}},D)if(t.parent)if(X){var i=t.x1>X?2*Math.PI:0;e.x0=e.x1=i}else s.extendFlat(e,K(t));else e.x0=e.x1=U;else e.x0=e.x1=U;var o=a(e.transform.textPosAngle,t.transform.textPosAngle),l=a(e.rpx1,t.rpx1),c=a(e.x0,t.x0),f=a(e.x1,t.x1),p=a(e.transform.scale,n.scale),d=a(e.transform.rotate,n.rotate),m=0===n.rCenter?3:0===e.transform.rCenter?1/3:1,g=a(e.transform.rCenter,n.rCenter);return function(t){var e=l(t),r=c(t),i=f(t),a=function(t){return g(Math.pow(t,m))}(t),s={pxmid:q(e,(r+i)/2),rpx1:e,transform:{textPosAngle:o(t),rCenter:a,x:n.x,y:n.y}};return u(k.type,n,h),{transform:{targetX:Y(s),targetY:W(s),scale:p(t),rotate:d(t),rCenter:a}}}}(t);return function(t){return S(e(t),A)}})):_.attr(\"transform\",S(i,A))}))}function w(t){return e=t.rpx1,r=t.transform.textPosAngle,[e*Math.sin(r),-e*Math.cos(r)];var e,r}r.plot=function(t,e,r,i){var a,o,s=t._fullLayout,l=s._sunburstlayer,c=!r,u=!s.uniformtext.mode&&b.hasTransition(r);(f(\"sunburst\",s),(a=l.selectAll(\"g.trace.sunburst\").data(e,(function(t){return t[0].trace.uid}))).enter().append(\"g\").classed(\"trace\",!0).classed(\"sunburst\",!0).attr(\"stroke-linejoin\",\"round\"),a.order(),u)?(i&&(o=i()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",(function(){o&&o()})).each(\"interrupt\",(function(){o&&o()})).each((function(){l.selectAll(\"g.trace\").each((function(e){_(t,e,this,r)}))}))):(a.each((function(e){_(t,e,this,r)})),s.uniformtext.mode&&v(t,s._sunburstlayer.selectAll(\".trace\"),\"sunburst\"));c&&a.exit().remove()},r.formatSliceLabel=function(t,e,r,n,i){var a=r.texttemplate,o=r.textinfo;if(!(a||o&&\"none\"!==o))return\"\";var l=i.separators,c=n[0],u=t.data.data,f=c.hierarchy,h=b.isHierarchyRoot(t),p=b.getParent(f,t),d=b.getValue(t);if(!a){var m,g=o.split(\"+\"),v=function(t){return-1!==g.indexOf(t)},y=[];if(v(\"label\")&&u.label&&y.push(u.label),u.hasOwnProperty(\"v\")&&v(\"value\")&&y.push(b.formatValue(u.v,l)),!h){v(\"current path\")&&y.push(b.getPath(t.data));var x=0;v(\"percent parent\")&&x++,v(\"percent entry\")&&x++,v(\"percent root\")&&x++;var _=x>1;if(x){var w,T=function(t){m=b.formatPercent(w,l),_&&(m+=\" of \"+t),y.push(m)};v(\"percent parent\")&&!h&&(w=d/b.getValue(p),T(\"parent\")),v(\"percent entry\")&&(w=d/b.getValue(e),T(\"entry\")),v(\"percent root\")&&(w=d/b.getValue(f),T(\"root\"))}}return v(\"text\")&&(m=s.castOption(r,u.i,\"text\"),s.isValidTextValue(m)&&y.push(m)),y.join(\"
\")}var k=s.castOption(r,u.i,\"texttemplate\");if(!k)return\"\";var A={};u.label&&(A.label=u.label),u.hasOwnProperty(\"v\")&&(A.value=u.v,A.valueLabel=b.formatValue(u.v,l)),A.currentPath=b.getPath(t.data),h||(A.percentParent=d/b.getValue(p),A.percentParentLabel=b.formatPercent(A.percentParent,l),A.parent=b.getPtLabel(p)),A.percentEntry=d/b.getValue(e),A.percentEntryLabel=b.formatPercent(A.percentEntry,l),A.entry=b.getPtLabel(e),A.percentRoot=d/b.getValue(f),A.percentRootLabel=b.formatPercent(A.percentRoot,l),A.root=b.getPtLabel(f),u.hasOwnProperty(\"color\")&&(A.color=u.color);var M=s.castOption(r,u.i,\"text\");return(s.isValidTextValue(M)||\"\"===M)&&(A.text=M),A.customdata=s.castOption(r,u.i,\"customdata\"),s.texttemplateString(k,A,i._d3locale,A,r._meta||{})}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../bar/style\":662,\"../bar/uniform_text\":664,\"../pie/helpers\":906,\"../pie/plot\":910,\"./constants\":1052,\"./fx\":1054,\"./helpers\":1055,\"./style\":1060,\"@plotly/d3\":58,\"d3-hierarchy\":115,\"d3-interpolate\":116}],1060:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../components/color\"),a=t(\"../../lib\"),o=t(\"../bar/uniform_text\").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,\"marker.line.color\")||i.defaultLine,c=a.castOption(r,s,\"marker.line.width\")||0;t.style(\"stroke-width\",c).call(i.fill,n.color).call(i.stroke,l).style(\"opacity\",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._sunburstlayer.selectAll(\".trace\");o(t,e,\"sunburst\"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{\"../../components/color\":366,\"../../lib\":503,\"../bar/uniform_text\":664,\"@plotly/d3\":58}],1061:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/cartesian/axis_format_attributes\").axisHoverFormat,o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/attributes\"),l=t(\"../../lib/extend\").extendFlat,c=t(\"../../plot_api/edit_types\").overrideAll;function u(t){return{show:{valType:\"boolean\",dflt:!1},start:{valType:\"number\",dflt:null,editType:\"plot\"},end:{valType:\"number\",dflt:null,editType:\"plot\"},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\"},project:{x:{valType:\"boolean\",dflt:!1},y:{valType:\"boolean\",dflt:!1},z:{valType:\"boolean\",dflt:!1}},color:{valType:\"color\",dflt:n.defaultLine},usecolormap:{valType:\"boolean\",dflt:!1},width:{valType:\"number\",min:1,max:16,dflt:2},highlight:{valType:\"boolean\",dflt:!0},highlightcolor:{valType:\"color\",dflt:n.defaultLine},highlightwidth:{valType:\"number\",min:1,max:16,dflt:2}}}var f=e.exports=c(l({z:{valType:\"data_array\"},x:{valType:\"data_array\"},y:{valType:\"data_array\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:o(),xhoverformat:a(\"x\"),yhoverformat:a(\"y\"),zhoverformat:a(\"z\"),connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},surfacecolor:{valType:\"data_array\"}},i(\"\",{colorAttr:\"z or surfacecolor\",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:\"calc\"}),{contours:{x:u(),y:u(),z:u()},hidesurface:{valType:\"boolean\",dflt:!1},lightposition:{x:{valType:\"number\",min:-1e5,max:1e5,dflt:10},y:{valType:\"number\",min:-1e5,max:1e5,dflt:1e4},z:{valType:\"number\",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:\"number\",min:0,max:1,dflt:.8},diffuse:{valType:\"number\",min:0,max:1,dflt:.8},specular:{valType:\"number\",min:0,max:2,dflt:.05},roughness:{valType:\"number\",min:0,max:1,dflt:.5},fresnel:{valType:\"number\",min:0,max:5,dflt:.2}},opacity:{valType:\"number\",min:0,max:1,dflt:1},opacityscale:{valType:\"any\",editType:\"calc\"},_deprecated:{zauto:l({},i.zauto,{}),zmin:l({},i.zmin,{}),zmax:l({},i.zmax,{})},hoverinfo:l({},s.hoverinfo),showlegend:l({},s.showlegend,{dflt:!1})}),\"calc\",\"nested\");f.x.editType=f.y.editType=f.z.editType=\"calc+clearAxisTypes\",f.transforms=void 0},{\"../../components/color\":366,\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plot_api/edit_types\":536,\"../../plots/attributes\":550,\"../../plots/cartesian/axis_format_attributes\":557,\"../../plots/template_attributes\":633}],1062:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:\"\",cLetter:\"c\"}):n(t,e,{vals:e.z,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":374}],1063:[function(t,e,r){\"use strict\";var n=t(\"../../../stackgl_modules\").gl_surface3d,i=t(\"../../../stackgl_modules\").ndarray,a=t(\"../../../stackgl_modules\").ndarray_linear_interpolate.d2,o=t(\"../heatmap/interp2d\"),s=t(\"../heatmap/find_empties\"),l=t(\"../../lib\").isArrayOrTypedArray,c=t(\"../../lib/gl_format_color\").parseColorScale,u=t(\"../../lib/str2rgbarray\"),f=t(\"../../components/colorscale\").extractOpts;function h(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var p=h.prototype;p.getXat=function(t,e,r,n){var i=l(this.data.x)?l(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?i:n.d2l(i,0,r)},p.getYat=function(t,e,r,n){var i=l(this.data.y)?l(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?i:n.d2l(i,0,r)},p.getZat=function(t,e,r,n){var i=this.data.z[e][t];return null===i&&this.data.connectgaps&&this.data._interpolatedZ&&(i=this.data._interpolatedZ[e][t]),void 0===r?i:n.d2l(i,0,r)},p.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),i=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,i],t.traceCoordinate=[this.getXat(n,i),this.getYat(n,i),this.getZat(n,i)],t.dataCoordinate=[this.getXat(n,i,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,i,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,i,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var a=0;a<3;a++){var o=t.dataCoordinate[a];null!=o&&(t.dataCoordinate[a]*=this.scene.dataScale[a])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[i]&&void 0!==s[i][n]?t.textLabel=s[i][n]:t.textLabel=s||\"\",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var d=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function m(t,e){if(t0){r=d[n];break}return r}function y(t,e){if(!(t<1||e<1)){for(var r=g(t),n=g(e),i=1,a=0;a_;)r--,r/=v(r),++r1?n:1},p.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],a=t[0].shape[1],o=0|Math.floor(t[0].shape[0]*e+1),s=0|Math.floor(t[0].shape[1]*r+1),l=1+n+1,c=1+a+1,u=i(new Float32Array(l*c),[l,c]),f=[1/e,0,0,0,1/r,0,0,0,1],h=0;h0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(i[t]=!0,e=this.contourStart[t];ea&&(this.minValues[e]=a),this.maxValues[e]\",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:\"cubic-out\",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:\"cubic-out\",uplift:5,wrapSpacer:\" \",wrapSplitCharacter:\" \",cn:{table:\"table\",tableControlView:\"table-control-view\",scrollBackground:\"scroll-background\",yColumn:\"y-column\",columnBlock:\"column-block\",scrollAreaClip:\"scroll-area-clip\",scrollAreaClipRect:\"scroll-area-clip-rect\",columnBoundary:\"column-boundary\",columnBoundaryClippath:\"column-boundary-clippath\",columnBoundaryRect:\"column-boundary-rect\",columnCells:\"column-cells\",columnCell:\"column-cell\",cellRect:\"cell-rect\",cellText:\"cell-text\",cellTextHolder:\"cell-text-holder\",scrollbarKit:\"scrollbar-kit\",scrollbar:\"scrollbar\",scrollbarSlider:\"scrollbar-slider\",scrollbarGlyph:\"scrollbar-glyph\",scrollbarCaptureZone:\"scrollbar-capture-zone\"}}},{}],1070:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"../../lib/extend\").extendFlat,a=t(\"fast-isnumeric\");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r=e||c===t.length-1)&&(n[i]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},i+=a,s=c+1,a=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[\"\"],d=l(d));var m=d.concat(p(r).map((function(){return c((d[0]||[\"\"]).length)}))),g=e.domain,v=Math.floor(t._fullLayout._size.w*(g.x[1]-g.x[0])),y=Math.floor(t._fullLayout._size.h*(g.y[1]-g.y[0])),x=e.header.values.length?m[0].map((function(){return e.header.height})):[n.emptyHeaderHeight],b=r.length?r[0].map((function(){return e.cells.height})):[],_=x.reduce(s,0),w=h(b,y-_+n.uplift),T=f(h(x,_),[]),k=f(w,T),A={},M=e._fullInput.columnorder.concat(p(r.map((function(t,e){return e})))),S=m.map((function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return a(n)?Number(n):1})),E=S.reduce(s,0);S=S.map((function(t){return t/E*v}));var L=Math.max(o(e.header.line.width),o(e.cells.line.width)),C={key:e.uid+t._context.staticPlot,translateX:g.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-g.y[1]),size:t._fullLayout._size,width:v,maxLineWidth:L,height:y,columnOrder:M,groupHeight:y,rowBlocks:k,headerRowBlocks:T,scrollY:0,cells:i({},e.cells,{values:r}),headerCells:i({},e.header,{values:m}),gdColumns:m.map((function(t){return t[0]})),gdColumnsOriginalOrder:m.map((function(t){return t[0]})),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:m.map((function(t,e){var r=A[t];return A[t]=(r||0)+1,{key:t+\"__\"+A[t],label:t,specIndex:e,xIndex:M[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}}))};return C.columns.forEach((function(t){t.calcdata=C,t.x=u(t)})),C}},{\"../../lib/extend\":493,\"./constants\":1069,\"fast-isnumeric\":190}],1071:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:\"header\",type:\"header\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:\"cells1\",type:\"cells\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:\"cells2\",type:\"cells\",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map((function(r,n){return{keyWithinBlock:n+(\"string\"==typeof r&&r.match(/[<$&> ]/)?\"_keybuster_\"+Math.random():\"\"),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}}))}},{\"../../lib/extend\":493}],1072:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../plots/domain\").defaults;e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}a(e,o,s),s(\"columnwidth\"),s(\"header.values\"),s(\"header.format\"),s(\"header.align\"),s(\"header.prefix\"),s(\"header.suffix\"),s(\"header.height\"),s(\"header.line.width\"),s(\"header.line.color\"),s(\"header.fill.color\"),n.coerceFont(s,\"header.font\",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,i=r.slice(0,n),a=i.slice().sort((function(t,e){return t-e})),o=i.map((function(t){return a.indexOf(t)})),s=o.length;s/i),l=!o||s;t.mayHaveMarkup=o&&i.match(/[<&>]/);var c,u=\"string\"==typeof(c=i)&&c.match(n.latexCheck);t.latex=u;var f,h,p=u?\"\":T(t.calcdata.cells.prefix,e,r)||\"\",d=u?\"\":T(t.calcdata.cells.suffix,e,r)||\"\",m=u?null:T(t.calcdata.cells.format,e,r)||null,g=p+(m?a(m)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(f=w(g)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===f?w(g):f),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var v=(\" \"===n.wrapSplitCharacter?g.replace(/i&&n.push(a),i+=l}return n}(i,l,s);1===c.length&&(c[0]===i.length-1?c.unshift(c[0]-1):c.push(c[0]+1)),c[0]%2&&c.reverse(),e.each((function(t,e){t.page=c[e],t.scrollY=l})),e.attr(\"transform\",(function(t){var e=D(t.rowBlocks,t.page)-t.scrollY;return u(0,e)})),t&&(C(t,r,e,c,n.prevPages,n,0),C(t,r,e,c,n.prevPages,n,1),x(r,t))}}function L(t,e,r,a){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter((function(t){return s.key===t.key})),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===a?s.scrollY+c*i.event.dy:a;var f=l.selectAll(\".\"+n.cn.yColumn).selectAll(\".\"+n.cn.columnBlock).filter(A);return E(t,f,l),s.scrollY===u}}function C(t,e,r,n,i,a,o){n[o]!==i[o]&&(clearTimeout(a.currentRepaint[o]),a.currentRepaint[o]=setTimeout((function(){var a=r.filter((function(t,e){return e===o&&n[e]!==i[e]}));b(t,e,a,r),i[o]=n[o]})))}function P(t,e,r,a){return function(){var o=i.select(e.parentNode);o.each((function(t){var e=t.fragments;o.selectAll(\"tspan.line\").each((function(t,r){e[r].width=this.getComputedTextLength()}));var r,i,a=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value=\"\";s.length;)c+(i=(r=s.shift()).width+a)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=i;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0})),o.selectAll(\"tspan.line\").remove(),_(o.select(\".\"+n.cn.cellText),r,t,a),i.select(e.parentNode.parentNode).call(z)}}function I(t,e,r,a,o){return function(){if(!o.settledY){var s=i.select(e.parentNode),l=B(o),c=o.key-l.firstRowIndex,f=l.rows[c].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:f,p=Math.max(h,f);p-l.rows[c].rowHeight&&(l.rows[c].rowHeight=p,t.selectAll(\".\"+n.cn.columnCell).call(z),E(null,t.filter(A),0),x(r,a,!0)),s.attr(\"transform\",(function(){var t=this.parentNode.getBoundingClientRect(),e=i.select(this.parentNode).select(\".\"+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),a=e.top-t.top+(r?r.matrix.f:n.cellPad);return u(O(o,i.select(this.parentNode).select(\".\"+n.cn.cellTextHolder).node().getBoundingClientRect().width),a)})),o.settledY=!0}}}function O(t,e){switch(t.align){case\"left\":return n.cellPad;case\"right\":return t.column.columnWidth-(e||0)-n.cellPad;case\"center\":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function z(t){t.attr(\"transform\",(function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce((function(t,e){return t+R(e,1/0)}),0),r=R(B(t),t.key);return u(0,r+e)})).selectAll(\".\"+n.cn.cellRect).attr(\"height\",(function(t){return(e=B(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r}))}function D(t,e){for(var r=0,n=e-1;n>=0;n--)r+=F(t[n]);return r}function R(t,e){for(var r=0,n=0;n\",\"<\",\"|\",\"/\",\"\\\\\"],dflt:\">\",editType:\"plot\"},thickness:{valType:\"number\",min:12,editType:\"plot\"},textfont:u({},s.textfont,{}),editType:\"calc\"},text:s.text,textinfo:l.textinfo,texttemplate:i({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:u({},s.outsidetextfont,{}),textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"top left\",editType:\"plot\"},sort:s.sort,root:l.root,domain:o({name:\"treemap\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":373,\"../../lib/extend\":493,\"../../plots/domain\":584,\"../../plots/template_attributes\":633,\"../pie/attributes\":901,\"../sunburst/attributes\":1049,\"./constants\":1078}],1076:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"treemap\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":619}],1077:[function(t,e,r){\"use strict\";var n=t(\"../sunburst/calc\");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc(\"treemap\",t)}},{\"../sunburst/calc\":1051}],1078:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"poly\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"],gapWithPathbar:1}},{}],1079:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../components/color\"),o=t(\"../../plots/domain\").defaults,s=t(\"../bar/defaults\").handleText,l=t(\"../bar/constants\").TEXTPAD,c=t(\"../../components/colorscale\"),u=c.hasColorscale,f=c.handleDefaults;e.exports=function(t,e,r,c){function h(r,a){return n.coerce(t,e,i,r,a)}var p=h(\"labels\"),d=h(\"parents\");if(p&&p.length&&d&&d.length){var m=h(\"values\");m&&m.length?h(\"branchvalues\"):h(\"count\"),h(\"level\"),h(\"maxdepth\"),\"squarify\"===h(\"tiling.packing\")&&h(\"tiling.squarifyratio\"),h(\"tiling.flip\"),h(\"tiling.pad\");var g=h(\"text\");h(\"texttemplate\"),e.texttemplate||h(\"textinfo\",Array.isArray(g)?\"text+label\":\"label\"),h(\"hovertext\"),h(\"hovertemplate\");var v=h(\"pathbar.visible\");s(t,e,c,h,\"auto\",{hasPathbar:v,moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),h(\"textposition\");var y=-1!==e.textposition.indexOf(\"bottom\");h(\"marker.line.width\")&&h(\"marker.line.color\",c.paper_bgcolor);var x=h(\"marker.colors\");(e._hasColorscale=u(t,\"marker\",\"colors\")||(t.marker||{}).coloraxis)?f(t,e,c,h,{prefix:\"marker.\",cLetter:\"c\"}):h(\"marker.depthfade\",!(x||[]).length);var b=2*e.textfont.size;h(\"marker.pad.t\",y?b/4:b),h(\"marker.pad.l\",b/4),h(\"marker.pad.r\",b/4),h(\"marker.pad.b\",y?b:b/4),e._hovered={marker:{line:{width:2,color:a.contrast(c.paper_bgcolor)}}},v&&(h(\"pathbar.thickness\",e.pathbar.textfont.size+2*l),h(\"pathbar.side\"),h(\"pathbar.edgeshape\")),h(\"sort\"),h(\"root.color\"),o(e,c,h),e._length=null}else e.visible=!1}},{\"../../components/color\":366,\"../../components/colorscale\":378,\"../../lib\":503,\"../../plots/domain\":584,\"../bar/constants\":650,\"../bar/defaults\":652,\"./attributes\":1075}],1080:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../sunburst/helpers\"),a=t(\"../bar/uniform_text\").clearMinTextSize,o=t(\"../bar/style\").resizeText,s=t(\"./plot_one\");e.exports=function(t,e,r,l,c){var u,f,h=c.type,p=c.drawDescendants,d=t._fullLayout,m=d[\"_\"+h+\"layer\"],g=!r;(a(h,d),(u=m.selectAll(\"g.trace.\"+h).data(e,(function(t){return t[0].trace.uid}))).enter().append(\"g\").classed(\"trace\",!0).classed(h,!0),u.order(),!d.uniformtext.mode&&i.hasTransition(r))?(l&&(f=l()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",(function(){f&&f()})).each(\"interrupt\",(function(){f&&f()})).each((function(){m.selectAll(\"g.trace\").each((function(e){s(t,e,this,r,p)}))}))):(u.each((function(e){s(t,e,this,r,p)})),d.uniformtext.mode&&o(t,m.selectAll(\".trace\"),h));g&&u.exit().remove()}},{\"../bar/style\":662,\"../bar/uniform_text\":664,\"../sunburst/helpers\":1055,\"./plot_one\":1089,\"@plotly/d3\":58}],1081:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),f=t(\"../sunburst/fx\");e.exports=function(t,e,r,h,p){var d=p.barDifY,m=p.width,g=p.height,v=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,T=p.handleSlicesExit,k=p.makeUpdateSliceInterpolator,A=p.makeUpdateTextInterpolator,M={},S=t._fullLayout,E=e[0],L=E.trace,C=E.hierarchy,P=m/L._entryDepth,I=u.listPath(r.data,\"id\"),O=s(C.copy(),[m,g],{packing:\"dice\",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(O=O.filter((function(t){var e=I.indexOf(t.data.id);return-1!==e&&(t.x0=P*e,t.x1=P*(e+1),t.y0=d,t.y1=d+g,t.onPathbar=!0,!0)}))).reverse(),(h=h.data(O,u.getPtId)).enter().append(\"g\").classed(\"pathbar\",!0),T(h,!0,M,[m,g],x),h.order();var z=h;w&&(z=z.transition().each(\"end\",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})}))),z.each((function(s){s._x0=v(s.x0),s._x1=v(s.x1),s._y0=y(s.y0),s._y1=y(s.y1),s._hoverX=v(s.x1-Math.min(m,g)/2),s._hoverY=y(s.y1-g/2);var h=n.select(this),p=i.ensureSingle(h,\"path\",\"surface\",(function(t){t.style(\"pointer-events\",\"all\")}));w?p.transition().attrTween(\"d\",(function(t){var e=k(t,!0,M,[m,g]);return function(t){return x(e(t))}})):p.attr(\"d\",x),h.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,L,{hovered:!1}),s._text=(u.getPtLabel(s)||\"\").split(\"
\").join(\" \")||\"\";var d=i.ensureSingle(h,\"g\",\"slicetext\"),T=i.ensureSingle(d,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),E=i.ensureUniformFontSize(t,u.determineTextFont(L,s,S.font,{onPathbar:!0}));T.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",\"start\").call(a.font,E).call(o.convertToTspans,t),s.textBB=a.bBox(T.node()),s.transform=b(s,{fontSize:E.size,onPathbar:!0}),s.transform.fontSize=E.size,w?T.transition().attrTween(\"transform\",(function(t){var e=A(t,!0,M,[m,g]);return function(t){return _(e(t))}})):T.attr(\"transform\",_(s))}))}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../sunburst/fx\":1054,\"../sunburst/helpers\":1055,\"./constants\":1078,\"./partition\":1087,\"./style\":1090,\"@plotly/d3\":58}],1082:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),f=t(\"../sunburst/fx\"),h=t(\"../sunburst/plot\").formatSliceLabel;e.exports=function(t,e,r,p,d){var m=d.width,g=d.height,v=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,T=d.handleSlicesExit,k=d.makeUpdateSliceInterpolator,A=d.makeUpdateTextInterpolator,M=d.prevEntry,S=t._fullLayout,E=e[0].trace,L=-1!==E.textposition.indexOf(\"left\"),C=-1!==E.textposition.indexOf(\"right\"),P=-1!==E.textposition.indexOf(\"bottom\"),I=!P&&!E.marker.pad.t||P&&!E.marker.pad.b,O=s(r,[m,g],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf(\"x\")>-1,flipY:E.tiling.flip.indexOf(\"y\")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),z=1/0,D=-1/0;O.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(z=Math.min(z,e),D=Math.max(D,e))})),p=p.data(O,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-z+1:0,p.enter().append(\"g\").classed(\"slice\",!0),T(p,!1,{},[m,g],x),p.order();var R=null;if(w&&M){var F=u.getPtId(M);p.each((function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var B=function(){return R||{x0:0,x1:m,y0:0,y1:g}},N=p;return w&&(N=N.transition().each(\"end\",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),N.each((function(s){var p=u.isHeader(s,E);s._x0=v(s.x0),s._x1=v(s.x1),s._y0=y(s.y0),s._y1=y(s.y1),s._hoverX=v(s.x1-E.marker.pad.r),s._hoverY=y(P?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),T=i.ensureSingle(d,\"path\",\"surface\",(function(t){t.style(\"pointer-events\",\"all\")}));w?T.transition().attrTween(\"d\",(function(t){var e=k(t,!1,B(),[m,g]);return function(t){return x(e(t))}})):T.attr(\"d\",x),d.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),T.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text=\"\":s._text=p?I?\"\":u.getPtLabel(s)||\"\":h(s,r,E,e,S)||\"\";var M=i.ensureSingle(d,\"g\",\"slicetext\"),O=i.ensureSingle(M,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),z=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));O.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",C?\"end\":L||p?\"start\":\"middle\").call(a.font,z).call(o.convertToTspans,t),s.textBB=a.bBox(O.node()),s.transform=b(s,{fontSize:z.size,isHeader:p}),s.transform.fontSize=z.size,w?O.transition().attrTween(\"transform\",(function(t){var e=A(t,!1,B(),[m,g]);return function(t){return _(e(t))}})):O.attr(\"transform\",_(s))})),R}},{\"../../components/drawing\":388,\"../../lib\":503,\"../../lib/svg_text_utils\":529,\"../sunburst/fx\":1054,\"../sunburst/helpers\":1055,\"../sunburst/plot\":1059,\"./constants\":1078,\"./partition\":1087,\"./style\":1090,\"@plotly/d3\":58}],1083:[function(t,e,r){\"use strict\";e.exports=function t(e,r,n){var i;n.swapXY&&(i=e.x0,e.x0=e.y0,e.y0=i,i=e.x1,e.x1=e.y1,e.y1=i),n.flipX&&(i=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-i),n.flipY&&(i=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-i);var a=e.children;if(a)for(var o=0;o-1?C+O:-(I+O):0,D={x0:P,x1:P,y0:z,y1:z+I},R=function(t,e,r){var n=v.tiling.pad,i=function(t){return t-n<=e.x0},a=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return t.x0===e.x0&&t.x1===e.x1&&t.y0===e.y0&&t.y1===e.y1?{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1}:{x0:i(t.x0-n)?0:a(t.x0-n)?r[0]:t.x0,x1:i(t.x1+n)?0:a(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},F=null,B={},N={},j=null,U=function(t,e){return e?B[h(t)]:N[h(t)]},V=function(t,e,r,n){if(e)return B[h(x)]||D;var i=N[v.level]||r;return function(t){return t.data.depth-b.data.depth=(n-=(y?g:g.r)-s)){var x=(r+n)/2;r=x,n=x}var b;f?i<(b=a-(y?g:g.b))&&b\"===tt?(l.x-=a,c.x-=a,u.x-=a,f.x-=a):\"/\"===tt?(u.x-=a,f.x-=a,o.x-=a/2,s.x-=a/2):\"\\\\\"===tt?(l.x-=a,c.x-=a,o.x-=a/2,s.x-=a/2):\"<\"===tt&&(o.x-=a,s.x-=a),$(l),$(f),$(o),$(c),$(u),$(s),\"M\"+K(l.x,l.y)+\"L\"+K(c.x,c.y)+\"L\"+K(s.x,s.y)+\"L\"+K(u.x,u.y)+\"L\"+K(f.x,f.y)+\"L\"+K(o.x,o.y)+\"Z\"},toMoveInsideSlice:et,makeUpdateSliceInterpolator:nt,makeUpdateTextInterpolator:it,handleSlicesExit:at,hasTransition:A,strTransform:ot}):w.remove()}},{\"../../lib\":503,\"../bar/constants\":650,\"../bar/plot\":659,\"../bar/uniform_text\":664,\"../sunburst/helpers\":1055,\"./constants\":1078,\"./draw_ancestors\":1081,\"@plotly/d3\":58,\"d3-interpolate\":116}],1090:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../components/color\"),a=t(\"../../lib\"),o=t(\"../sunburst/helpers\"),s=t(\"../bar/uniform_text\").resizeText;function l(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,f=u.i,h=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&h===r.root.color)d=100,s=\"rgba(0,0,0,0)\",l=0;else if(s=a.castOption(r,f,\"marker.line.color\")||i.defaultLine,l=a.castOption(r,f,\"marker.line.width\")||0,!r._hasColorscale&&!e.onPathbar){var m=r.marker.depthfade;if(m){var g,v=i.combine(i.addOpacity(r._backgroundColor,.75),h);if(!0===m){var y=o.getMaxDepth(r);g=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else g=e.data.depth-r._entryDepth,r._atRootLevel||g++;if(g>0)for(var x=0;x0){var x,b,_,w,T,k=t.xa,A=t.ya;\"h\"===p.orientation?(T=e,x=\"y\",_=A,b=\"x\",w=k):(T=r,x=\"x\",_=k,b=\"y\",w=A);var M=h[t.index];if(T>=M.span[0]&&T<=M.span[1]){var S=n.extendFlat({},t),E=w.c2p(T,!0),L=o.getKdeValue(M,p,T),C=o.getPositionOnKdePath(M,p,E),P=_._offset,I=_._length;S[x+\"0\"]=C[0],S[x+\"1\"]=C[1],S[b+\"0\"]=S[b+\"1\"]=E,S[b+\"Label\"]=b+\": \"+i.hoverLabelText(w,T,p[b+\"hoverformat\"])+\", \"+h[0].t.labels.kde+\" \"+L.toFixed(3),S.spikeDistance=y[0].spikeDistance;var O=x+\"Spike\";S[O]=y[0][O],y[0].spikeDistance=void 0,y[0][O]=void 0,S.hovertemplate=!1,v.push(S),(u={stroke:t.color})[x+\"1\"]=n.constrain(P+C[0],P,P+I),u[x+\"2\"]=n.constrain(P+C[1],P,P+I),u[b+\"1\"]=u[b+\"2\"]=w._offset+E}}m&&(v=v.concat(y))}-1!==d.indexOf(\"points\")&&(c=a.hoverOnPoints(t,e,r));var z=f.selectAll(\".violinline-\"+p.uid).data(u?[0]:[]);return z.enter().append(\"line\").classed(\"violinline-\"+p.uid,!0).attr(\"stroke-width\",1.5),z.exit().remove(),z.attr(u),\"closest\"===s?c?[c]:v:c?(v.push(c),v):v}},{\"../../lib\":503,\"../../plots/cartesian/axes\":554,\"../box/hover\":678,\"./helpers\":1095}],1097:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../box/defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../box/select\"),moduleType:\"trace\",name:\"violin\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"violinLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":568,\"../box/defaults\":676,\"../box/select\":683,\"../scatter/style\":951,\"./attributes\":1091,\"./calc\":1092,\"./cross_trace_calc\":1093,\"./defaults\":1094,\"./hover\":1096,\"./layout_attributes\":1098,\"./layout_defaults\":1099,\"./plot\":1100,\"./style\":1101}],1098:[function(t,e,r){\"use strict\";var n=t(\"../box/layout_attributes\"),i=t(\"../../lib\").extendFlat;e.exports={violinmode:i({},n.boxmode,{}),violingap:i({},n.boxgap,{}),violingroupgap:i({},n.boxgroupgap,{})}},{\"../../lib\":503,\"../box/layout_attributes\":680}],1099:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\"),a=t(\"../box/layout_defaults\");e.exports=function(t,e,r){a._supply(t,e,r,(function(r,a){return n.coerce(t,e,i,r,a)}),\"violin\")}},{\"../../lib\":503,\"../box/layout_defaults\":681,\"./layout_attributes\":1098}],1100:[function(t,e,r){\"use strict\";var n=t(\"@plotly/d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../box/plot\"),s=t(\"../scatter/line_points\"),l=t(\"./helpers\");e.exports=function(t,e,r,c){var u=t._fullLayout,f=e.xaxis,h=e.yaxis;function p(t){var e=s(t,{xaxis:f,yaxis:h,connectGaps:!0,baseTolerance:.75,shape:\"spline\",simplify:!0,linearized:!0});return a.smoothopen(e[0],1)}i.makeTraceGroups(c,r,\"trace violins\").each((function(t){var r=n.select(this),a=t[0],s=a.t,c=a.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,m=s.bdPos,g=e[s.valLetter+\"axis\"],v=e[s.posLetter+\"axis\"],y=\"both\"===c.side,x=y||\"positive\"===c.side,b=y||\"negative\"===c.side,_=r.selectAll(\"path.violin\").data(i.identity);_.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"violin\"),_.exit().remove(),_.each((function(t){var e,r,i,a,o,l,f,h,_=n.select(this),w=t.density,T=w.length,k=v.c2l(t.pos+d,!0),A=v.l2p(k);if(c.width)e=s.maxKDE/m;else{var M=u._violinScaleGroupStats[c.scalegroup];e=\"count\"===c.scalemode?M.maxKDE/m*(M.maxCount/t.pts.length):M.maxKDE/m}if(x){for(f=new Array(T),o=0;o\")),u.color=function(t,e){var r=t[e.dir].marker,n=r.color,a=r.line.color,o=r.line.width;if(i(n))return n;if(i(a)&&o)return a}(h,g),[u]}function k(t){return n(m,t,h[d+\"hoverformat\"])}}},{\"../../components/color\":366,\"../../constants/delta.js\":473,\"../../plots/cartesian/axes\":554,\"../bar/hover\":655}],1113:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"waterfall\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":568,\"../bar/select\":660,\"./attributes\":1106,\"./calc\":1107,\"./cross_trace_calc\":1109,\"./defaults\":1110,\"./event_data\":1111,\"./hover\":1112,\"./layout_attributes\":1114,\"./layout_defaults\":1115,\"./plot\":1116,\"./style\":1117}],1114:[function(t,e,r){\"use strict\";e.exports={waterfallmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"group\",editType:\"calc\"},waterfallgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},waterfallgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],1115:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s0&&(g+=h?\"M\"+f[0]+\",\"+d[1]+\"V\"+d[0]:\"M\"+f[1]+\",\"+d[0]+\"H\"+f[0]),\"between\"!==p&&(r.isSum||s path\").each((function(t){if(!t.isBlank){var e=s[t.dir].marker;n.select(this).call(a.fill,e.color).call(a.stroke,e.line.color).call(i.dashLine,e.line.dash,e.line.width).style(\"opacity\",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(\".lines\").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)}))}))}}},{\"../../components/color\":366,\"../../components/drawing\":388,\"../../constants/interactions\":478,\"../bar/style\":662,\"../bar/uniform_text\":664,\"@plotly/d3\":58}],1118:[function(t,e,r){\"use strict\";var n=t(\"../plots/cartesian/axes\"),i=t(\"../lib\"),a=t(\"../plot_api/plot_schema\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/numerical\").BADNUM;r.moduleType=\"transform\",r.name=\"aggregate\";var l=r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},aggregations:{_isLinkedToArray:\"aggregation\",target:{valType:\"string\",editType:\"calc\"},func:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"median\",\"mode\",\"rms\",\"stddev\",\"min\",\"max\",\"first\",\"last\",\"change\",\"range\"],dflt:\"first\",editType:\"calc\"},funcmode:{valType:\"enumerated\",values:[\"sample\",\"population\"],dflt:\"sample\",editType:\"calc\"},enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},c=l.aggregations;function u(t,e,r,a){if(a.enabled){for(var o=a.target,l=i.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case\"count\":return f;case\"first\":return h;case\"last\":return p;case\"sum\":return function(t,e){for(var r=0,i=0;ii&&(i=u,o=c)}}return i?a(o):s};case\"rms\":return function(t,e){for(var r=0,i=0,o=0;o\":return function(t){return h(t)>s};case\">=\":return function(t){return h(t)>=s};case\"[]\":return function(t){var e=h(t);return e>=s[0]&&e<=s[1]};case\"()\":return function(t){var e=h(t);return e>s[0]&&e=s[0]&&es[0]&&e<=s[1]};case\"][\":return function(t){var e=h(t);return e<=s[0]||e>=s[1]};case\")(\":return function(t){var e=h(t);return es[1]};case\"](\":return function(t){var e=h(t);return e<=s[0]||e>s[1]};case\")[\":return function(t){var e=h(t);return e=s[1]};case\"{}\":return function(t){return-1!==s.indexOf(h(t))};case\"}{\":return function(t){return-1===s.indexOf(h(t))}}}(r,a.getDataToCoordFunc(t,e,s,i),h),x={},b={},_=0;d?(g=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(f))},v=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(g=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},v=function(t,e){var r=x[t.astr][e];t.get().push(r)}),k(g);for(var w=o(e.transforms,r),T=0;T1?\"%{group} (%{trace})\":\"%{group}\");var l=t.styles,c=o.styles=[];if(l)for(a=0;a0?o-4:o;for(r=0;r>16&255,l[u++]=e>>8&255,l[u++]=255&e;2===s&&(e=i[t.charCodeAt(r)]<<2|i[t.charCodeAt(r+1)]>>4,l[u++]=255&e);1===s&&(e=i[t.charCodeAt(r)]<<10|i[t.charCodeAt(r+1)]<<4|i[t.charCodeAt(r+2)]>>2,l[u++]=e>>8&255,l[u++]=255&e);return l},r.fromByteArray=function(t){for(var e,r=t.length,i=r%3,a=[],o=0,s=r-i;os?s:o+16383));1===i?(e=t[r-1],a.push(n[e>>2]+n[e<<4&63]+\"==\")):2===i&&(e=(t[r-2]<<8)+t[r-1],a.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+\"=\"));return a.join(\"\")};for(var n=[],i=[],a=\"undefined\"!=typeof Uint8Array?Uint8Array:Array,o=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\",s=0,l=o.length;s0)throw new Error(\"Invalid string. Length must be a multiple of 4\");var r=t.indexOf(\"=\");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function u(t,e,r){for(var i,a,o=[],s=e;s>18&63]+n[a>>12&63]+n[a>>6&63]+n[63&a]);return o.join(\"\")}i[\"-\".charCodeAt(0)]=62,i[\"_\".charCodeAt(0)]=63},{}],2:[function(t,e,r){},{}],3:[function(t,e,r){(function(e){(function(){\n", + "/*!\n", + " * The buffer module from node.js, for the browser.\n", + " *\n", + " * @author Feross Aboukhadijeh \n", + " * @license MIT\n", + " */\n", + "\"use strict\";var e=t(\"base64-js\"),n=t(\"ieee754\");r.Buffer=a,r.SlowBuffer=function(t){+t!=t&&(t=0);return a.alloc(+t)},r.INSPECT_MAX_BYTES=50;function i(t){if(t>2147483647)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"');var e=new Uint8Array(t);return e.__proto__=a.prototype,e}function a(t,e,r){if(\"number\"==typeof t){if(\"string\"==typeof e)throw new TypeError('The \"string\" argument must be of type string. Received type number');return l(t)}return o(t,e,r)}function o(t,e,r){if(\"string\"==typeof t)return function(t,e){\"string\"==typeof e&&\"\"!==e||(e=\"utf8\");if(!a.isEncoding(e))throw new TypeError(\"Unknown encoding: \"+e);var r=0|f(t,e),n=i(r),o=n.write(t,e);o!==r&&(n=n.slice(0,o));return n}(t,e);if(ArrayBuffer.isView(t))return c(t);if(null==t)throw TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t);if(B(t,ArrayBuffer)||t&&B(t.buffer,ArrayBuffer))return function(t,e,r){if(e<0||t.byteLength=2147483647)throw new RangeError(\"Attempt to allocate Buffer larger than maximum size: 0x\"+2147483647..toString(16)+\" bytes\");return 0|t}function f(t,e){if(a.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||B(t,ArrayBuffer))return t.byteLength;if(\"string\"!=typeof t)throw new TypeError('The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(e){case\"ascii\":case\"latin1\":case\"binary\":return r;case\"utf8\":case\"utf-8\":return D(t).length;case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return 2*r;case\"hex\":return r>>>1;case\"base64\":return R(t).length;default:if(i)return n?-1:D(t).length;e=(\"\"+e).toLowerCase(),i=!0}}function h(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return\"\";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return\"\";if((r>>>=0)<=(e>>>=0))return\"\";for(t||(t=\"utf8\");;)switch(t){case\"hex\":return M(this,e,r);case\"utf8\":case\"utf-8\":return T(this,e,r);case\"ascii\":return k(this,e,r);case\"latin1\":case\"binary\":return A(this,e,r);case\"base64\":return w(this,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return S(this,e,r);default:if(n)throw new TypeError(\"Unknown encoding: \"+t);t=(t+\"\").toLowerCase(),n=!0}}function p(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function d(t,e,r,n,i){if(0===t.length)return-1;if(\"string\"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),N(r=+r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0){if(!i)return-1;r=0}if(\"string\"==typeof e&&(e=a.from(e,n)),a.isBuffer(e))return 0===e.length?-1:m(t,e,r,n,i);if(\"number\"==typeof e)return e&=255,\"function\"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):m(t,[e],r,n,i);throw new TypeError(\"val must be string, number or Buffer\")}function m(t,e,r,n,i){var a,o=1,s=t.length,l=e.length;if(void 0!==n&&(\"ucs2\"===(n=String(n).toLowerCase())||\"ucs-2\"===n||\"utf16le\"===n||\"utf-16le\"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(i){var u=-1;for(a=r;as&&(r=s-l),a=r;a>=0;a--){for(var f=!0,h=0;hi&&(n=i):n=i;var a=e.length;n>a/2&&(n=a/2);for(var o=0;o>8,i=r%256,a.push(i),a.push(n);return a}(e,t.length-r),t,r,n)}function w(t,r,n){return 0===r&&n===t.length?e.fromByteArray(t):e.fromByteArray(t.slice(r,n))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i239?4:c>223?3:c>191?2:1;if(i+f<=r)switch(f){case 1:c<128&&(u=c);break;case 2:128==(192&(a=t[i+1]))&&(l=(31&c)<<6|63&a)>127&&(u=l);break;case 3:a=t[i+1],o=t[i+2],128==(192&a)&&128==(192&o)&&(l=(15&c)<<12|(63&a)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:a=t[i+1],o=t[i+2],s=t[i+3],128==(192&a)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&a)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,f=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),i+=f}return function(t){var e=t.length;if(e<=4096)return String.fromCharCode.apply(String,t);var r=\"\",n=0;for(;ne&&(t+=\" ... \"),\"\"},a.prototype.compare=function(t,e,r,n,i){if(B(t,Uint8Array)&&(t=a.from(t,t.offset,t.byteLength)),!a.isBuffer(t))throw new TypeError('The \"target\" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||r>t.length||n<0||i>this.length)throw new RangeError(\"out of range index\");if(n>=i&&e>=r)return 0;if(n>=i)return-1;if(e>=r)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),s=(r>>>=0)-(e>>>=0),l=Math.min(o,s),c=this.slice(n,i),u=t.slice(e,r),f=0;f>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n=\"utf8\")):(n=r,r=void 0)}var i=this.length-e;if((void 0===r||r>i)&&(r=i),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError(\"Attempt to write outside buffer bounds\");n||(n=\"utf8\");for(var a=!1;;)switch(n){case\"hex\":return g(this,t,e,r);case\"utf8\":case\"utf-8\":return v(this,t,e,r);case\"ascii\":return y(this,t,e,r);case\"latin1\":case\"binary\":return x(this,t,e,r);case\"base64\":return b(this,t,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return _(this,t,e,r);default:if(a)throw new TypeError(\"Unknown encoding: \"+n);n=(\"\"+n).toLowerCase(),a=!0}},a.prototype.toJSON=function(){return{type:\"Buffer\",data:Array.prototype.slice.call(this._arr||this,0)}};function k(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var i=e;in)&&(r=n);for(var i=\"\",a=e;ar)throw new RangeError(\"Trying to access beyond buffer length\")}function L(t,e,r,n,i,o){if(!a.isBuffer(t))throw new TypeError('\"buffer\" argument must be a Buffer instance');if(e>i||et.length)throw new RangeError(\"Index out of range\")}function C(t,e,r,n,i,a){if(r+n>t.length)throw new RangeError(\"Index out of range\");if(r<0)throw new RangeError(\"Index out of range\")}function P(t,e,r,i,a){return e=+e,r>>>=0,a||C(t,0,r,4),n.write(t,e,r,i,23,4),r+4}function I(t,e,r,i,a){return e=+e,r>>>=0,a||C(t,0,r,8),n.write(t,e,r,i,52,8),r+8}a.prototype.slice=function(t,e){var r=this.length;(t=~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),(e=void 0===e?r:~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),e>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t],i=1,a=0;++a>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},a.prototype.readUInt8=function(t,e){return t>>>=0,e||E(t,1,this.length),this[t]},a.prototype.readUInt16LE=function(t,e){return t>>>=0,e||E(t,2,this.length),this[t]|this[t+1]<<8},a.prototype.readUInt16BE=function(t,e){return t>>>=0,e||E(t,2,this.length),this[t]<<8|this[t+1]},a.prototype.readUInt32LE=function(t,e){return t>>>=0,e||E(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},a.prototype.readUInt32BE=function(t,e){return t>>>=0,e||E(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},a.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t],i=1,a=0;++a=(i*=128)&&(n-=Math.pow(2,8*e)),n},a.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=e,i=1,a=this[t+--n];n>0&&(i*=256);)a+=this[t+--n]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*e)),a},a.prototype.readInt8=function(t,e){return t>>>=0,e||E(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},a.prototype.readInt16LE=function(t,e){t>>>=0,e||E(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},a.prototype.readInt16BE=function(t,e){t>>>=0,e||E(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},a.prototype.readInt32LE=function(t,e){return t>>>=0,e||E(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},a.prototype.readInt32BE=function(t,e){return t>>>=0,e||E(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},a.prototype.readFloatLE=function(t,e){return t>>>=0,e||E(t,4,this.length),n.read(this,t,!0,23,4)},a.prototype.readFloatBE=function(t,e){return t>>>=0,e||E(t,4,this.length),n.read(this,t,!1,23,4)},a.prototype.readDoubleLE=function(t,e){return t>>>=0,e||E(t,8,this.length),n.read(this,t,!0,52,8)},a.prototype.readDoubleBE=function(t,e){return t>>>=0,e||E(t,8,this.length),n.read(this,t,!1,52,8)},a.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||L(this,t,e,r,Math.pow(2,8*r)-1,0);var i=1,a=0;for(this[e]=255&t;++a>>=0,r>>>=0,n)||L(this,t,e,r,Math.pow(2,8*r)-1,0);var i=r-1,a=1;for(this[e+i]=255&t;--i>=0&&(a*=256);)this[e+i]=t/a&255;return e+r},a.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,1,255,0),this[e]=255&t,e+1},a.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},a.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},a.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},a.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},a.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var i=Math.pow(2,8*r-1);L(this,t,e,r,i-1,-i)}var a=0,o=1,s=0;for(this[e]=255&t;++a>0)-s&255;return e+r},a.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var i=Math.pow(2,8*r-1);L(this,t,e,r,i-1,-i)}var a=r-1,o=1,s=0;for(this[e+a]=255&t;--a>=0&&(o*=256);)t<0&&0===s&&0!==this[e+a+1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+r},a.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},a.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},a.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},a.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},a.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},a.prototype.writeFloatLE=function(t,e,r){return P(this,t,e,!0,r)},a.prototype.writeFloatBE=function(t,e,r){return P(this,t,e,!1,r)},a.prototype.writeDoubleLE=function(t,e,r){return I(this,t,e,!0,r)},a.prototype.writeDoubleBE=function(t,e,r){return I(this,t,e,!1,r)},a.prototype.copy=function(t,e,r,n){if(!a.isBuffer(t))throw new TypeError(\"argument should be a Buffer\");if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n=this.length)throw new RangeError(\"Index out of range\");if(n<0)throw new RangeError(\"sourceEnd out of bounds\");n>this.length&&(n=this.length),t.length-e=0;--o)t[o+e]=this[o+r];else Uint8Array.prototype.set.call(t,this.subarray(r,n),e);return i},a.prototype.fill=function(t,e,r,n){if(\"string\"==typeof t){if(\"string\"==typeof e?(n=e,e=0,r=this.length):\"string\"==typeof r&&(n=r,r=this.length),void 0!==n&&\"string\"!=typeof n)throw new TypeError(\"encoding must be a string\");if(\"string\"==typeof n&&!a.isEncoding(n))throw new TypeError(\"Unknown encoding: \"+n);if(1===t.length){var i=t.charCodeAt(0);(\"utf8\"===n&&i<128||\"latin1\"===n)&&(t=i)}}else\"number\"==typeof t&&(t&=255);if(e<0||this.length>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),\"number\"==typeof t)for(o=e;o55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&a.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&a.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&a.push(239,191,189),i=r;continue}r=65536+(i-55296<<10|r-56320)}else i&&(e-=3)>-1&&a.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;a.push(r)}else if(r<2048){if((e-=2)<0)break;a.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;a.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error(\"Invalid code point\");if((e-=4)<0)break;a.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return a}function R(t){return e.toByteArray(function(t){if((t=(t=t.split(\"=\")[0]).trim().replace(O,\"\")).length<2)return\"\";for(;t.length%4!=0;)t+=\"=\";return t}(t))}function F(t,e,r,n){for(var i=0;i=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function B(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function N(t){return t!=t}}).call(this)}).call(this,t(\"buffer\").Buffer)},{\"base64-js\":1,buffer:3,ieee754:4}],4:[function(t,e,r){r.read=function(t,e,r,n,i){var a,o,s=8*i-n-1,l=(1<>1,u=-7,f=r?i-1:0,h=r?-1:1,p=t[e+f];for(f+=h,a=p&(1<<-u)-1,p>>=-u,u+=s;u>0;a=256*a+t[e+f],f+=h,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=n;u>0;o=256*o+t[e+f],f+=h,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),a-=c}return(p?-1:1)*o*Math.pow(2,a-n)},r.write=function(t,e,r,n,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:a-1,d=n?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+f>=1?h/l:h*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(e*l-1)*Math.pow(2,i),o+=f):(s=e*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;t[r+p]=255&s,p+=d,s/=256,i-=8);for(o=o<0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*m}},{}],5:[function(t,e,r){var n,i,a=e.exports={};function o(){throw new Error(\"setTimeout has not been defined\")}function s(){throw new Error(\"clearTimeout has not been defined\")}function l(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n=\"function\"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{i=\"function\"==typeof clearTimeout?clearTimeout:s}catch(t){i=s}}();var c,u=[],f=!1,h=-1;function p(){f&&c&&(f=!1,c.length?u=c.concat(u):h=-1,u.length&&d())}function d(){if(!f){var t=l(p);f=!0;for(var e=u.length;e;){for(c=u,u=[];++h1)for(var r=1;r0?c=c.ushln(f):f<0&&(u=u.ushln(-f));return s(c,u)}},{\"./div\":17,\"./is-rat\":19,\"./lib/is-bn\":23,\"./lib/num-to-bn\":24,\"./lib/rationalize\":25,\"./lib/str-to-bn\":26}],19:[function(t,e,r){\"use strict\";var n=t(\"./lib/is-bn\");e.exports=function(t){return Array.isArray(t)&&2===t.length&&n(t[0])&&n(t[1])}},{\"./lib/is-bn\":23}],20:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return t.cmp(new n(0))}},{\"bn.js\":33}],21:[function(t,e,r){\"use strict\";var n=t(\"./bn-sign\");e.exports=function(t){var e=t.length,r=t.words,i=0;if(1===e)i=r[0];else if(2===e)i=r[0]+67108864*r[1];else for(var a=0;a20)return 52;return r+32}},{\"bit-twiddle\":32,\"double-bits\":64}],23:[function(t,e,r){\"use strict\";t(\"bn.js\");e.exports=function(t){return t&&\"object\"==typeof t&&Boolean(t.words)}},{\"bn.js\":33}],24:[function(t,e,r){\"use strict\";var n=t(\"bn.js\"),i=t(\"double-bits\");e.exports=function(t){var e=i.exponent(t);return e<52?new n(t):new n(t*Math.pow(2,52-e)).ushln(e-52)}},{\"bn.js\":33,\"double-bits\":64}],25:[function(t,e,r){\"use strict\";var n=t(\"./num-to-bn\"),i=t(\"./bn-sign\");e.exports=function(t,e){var r=i(t),a=i(e);if(0===r)return[n(0),n(1)];if(0===a)return[n(0),n(0)];a<0&&(t=t.neg(),e=e.neg());var o=t.gcd(e);if(o.cmpn(1))return[t.div(o),e.div(o)];return[t,e]}},{\"./bn-sign\":20,\"./num-to-bn\":24}],26:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return new n(t)}},{\"bn.js\":33}],27:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[0]),t[1].mul(e[1]))}},{\"./lib/rationalize\":25}],28:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-sign\");e.exports=function(t){return n(t[0])*n(t[1])}},{\"./lib/bn-sign\":20}],29:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}},{\"./lib/rationalize\":25}],30:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-to-num\"),i=t(\"./lib/ctz\");e.exports=function(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var a=e.abs().divmod(r.abs()),o=a.div,s=n(o),l=a.mod,c=e.negative!==r.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=i(s)+4,f=n(l.ushln(u).divRound(r));return c*(s+f*Math.pow(2,-u))}var h=r.bitLength()-l.bitLength()+53;f=n(l.ushln(h).divRound(r));return h<1023?c*f*Math.pow(2,-h):(f*=Math.pow(2,-1023),c*f*Math.pow(2,1023-h))}},{\"./lib/bn-to-num\":21,\"./lib/ctz\":22}],31:[function(t,e,r){\"use strict\";function n(t,e,r,n,i){for(var a=i+1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)>=0?(a=o,i=o-1):n=o+1}return a}function i(t,e,r,n,i){for(var a=i+1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)>0?(a=o,i=o-1):n=o+1}return a}function a(t,e,r,n,i){for(var a=n-1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)<0?(a=o,n=o+1):i=o-1}return a}function o(t,e,r,n,i){for(var a=n-1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)<=0?(a=o,n=o+1):i=o-1}return a}function s(t,e,r,n,i){for(;n<=i;){var a=n+i>>>1,o=t[a],s=void 0!==r?r(o,e):o-e;if(0===s)return a;s<=0?n=a+1:i=a-1}return-1}function l(t,e,r,n,i,a){return\"function\"==typeof r?a(t,e,r,void 0===n?0:0|n,void 0===i?t.length-1:0|i):a(t,e,void 0,void 0===r?0:0|r,void 0===n?t.length-1:0|n)}e.exports={ge:function(t,e,r,i,a){return l(t,e,r,i,a,n)},gt:function(t,e,r,n,a){return l(t,e,r,n,a,i)},lt:function(t,e,r,n,i){return l(t,e,r,n,i,a)},le:function(t,e,r,n,i){return l(t,e,r,n,i,o)},eq:function(t,e,r,n,i){return l(t,e,r,n,i,s)}}},{}],32:[function(t,e,r){\"use strict\";function n(t){var e=32;return(t&=-t)&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}r.INT_BITS=32,r.INT_MAX=2147483647,r.INT_MIN=-1<<31,r.sign=function(t){return(t>0)-(t<0)},r.abs=function(t){var e=t>>31;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(t65535)<<4,e|=r=((t>>>=e)>255)<<3,e|=r=((t>>>=r)>15)<<2,(e|=r=((t>>>=r)>3)<<1)|(t>>>=r)>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return 16843009*((t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,27030>>>(t&=15)&1};var i=new Array(256);!function(t){for(var e=0;e<256;++e){var r=e,n=e,i=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--i;t[e]=n<>>8&255]<<16|i[t>>>16&255]<<8|i[t>>>24&255]},r.interleave2=function(t,e){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))<<1},r.deinterleave2=function(t,e){return(t=65535&((t=16711935&((t=252645135&((t=858993459&((t=t>>>e&1431655765)|t>>>1))|t>>>2))|t>>>4))|t>>>16))<<16>>16},r.interleave3=function(t,e,r){return t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2),(t|=(e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2))<<1)|(r=1227133513&((r=3272356035&((r=251719695&((r=4278190335&((r&=1023)|r<<16))|r<<8))|r<<4))|r<<2))<<2},r.deinterleave3=function(t,e){return(t=1023&((t=4278190335&((t=251719695&((t=3272356035&((t=t>>>e&1227133513)|t>>>2))|t>>>4))|t>>>8))|t>>>16))<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],33:[function(t,e,r){!function(e,r){\"use strict\";function n(t,e){if(!t)throw new Error(e||\"Assertion failed\")}function i(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function a(t,e,r){if(a.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&(\"le\"!==e&&\"be\"!==e||(r=e,e=10),this._init(t||0,e||10,r||\"be\"))}var o;\"object\"==typeof e?e.exports=a:r.BN=a,a.BN=a,a.wordSize=26;try{o=\"undefined\"!=typeof window&&void 0!==window.Buffer?window.Buffer:t(\"buffer\").Buffer}catch(t){}function s(t,e){var r=t.charCodeAt(e);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function l(t,e,r){var n=s(t,r);return r-1>=e&&(n|=s(t,r-1)<<4),n}function c(t,e,r,n){for(var i=0,a=Math.min(t.length,r),o=e;o=49?s-49+10:s>=17?s-17+10:s}return i}a.isBN=function(t){return t instanceof a||null!==t&&\"object\"==typeof t&&t.constructor.wordSize===a.wordSize&&Array.isArray(t.words)},a.max=function(t,e){return t.cmp(e)>0?t:e},a.min=function(t,e){return t.cmp(e)<0?t:e},a.prototype._init=function(t,e,r){if(\"number\"==typeof t)return this._initNumber(t,e,r);if(\"object\"==typeof t)return this._initArray(t,e,r);\"hex\"===e&&(e=16),n(e===(0|e)&&e>=2&&e<=36);var i=0;\"-\"===(t=t.toString().replace(/\\s+/g,\"\"))[0]&&(i++,this.negative=1),i=0;i-=3)o=t[i]|t[i-1]<<8|t[i-2]<<16,this.words[a]|=o<>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);else if(\"le\"===r)for(i=0,a=0;i>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);return this.strip()},a.prototype._parseHex=function(t,e,r){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var n=0;n=e;n-=2)i=l(t,e,n)<=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;else for(n=(t.length-e)%2==0?e+1:e;n=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;this.strip()},a.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,i=1;i<=67108863;i*=e)n++;n--,i=i/e|0;for(var a=t.length-r,o=a%n,s=Math.min(a,a-o)+r,l=0,u=r;u1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?\"\"};var u=[\"\",\"0\",\"00\",\"000\",\"0000\",\"00000\",\"000000\",\"0000000\",\"00000000\",\"000000000\",\"0000000000\",\"00000000000\",\"000000000000\",\"0000000000000\",\"00000000000000\",\"000000000000000\",\"0000000000000000\",\"00000000000000000\",\"000000000000000000\",\"0000000000000000000\",\"00000000000000000000\",\"000000000000000000000\",\"0000000000000000000000\",\"00000000000000000000000\",\"000000000000000000000000\",\"0000000000000000000000000\"],f=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],h=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function p(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var i=0|t.words[0],a=0|e.words[0],o=i*a,s=67108863&o,l=o/67108864|0;r.words[0]=s;for(var c=1;c>>26,f=67108863&l,h=Math.min(c,e.length-1),p=Math.max(0,c-t.length+1);p<=h;p++){var d=c-p|0;u+=(o=(i=0|t.words[d])*(a=0|e.words[p])+f)/67108864|0,f=67108863&o}r.words[c]=0|f,l=0|u}return 0!==l?r.words[c]=0|l:r.length--,r.strip()}a.prototype.toString=function(t,e){var r;if(e=0|e||1,16===(t=t||10)||\"hex\"===t){r=\"\";for(var i=0,a=0,o=0;o>>24-i&16777215)||o!==this.length-1?u[6-l.length]+l+r:l+r,(i+=2)>=26&&(i-=26,o--)}for(0!==a&&(r=a.toString(16)+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}if(t===(0|t)&&t>=2&&t<=36){var c=f[t],p=h[t];r=\"\";var d=this.clone();for(d.negative=0;!d.isZero();){var m=d.modn(p).toString(t);r=(d=d.idivn(p)).isZero()?m+r:u[c-m.length]+m+r}for(this.isZero()&&(r=\"0\"+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}n(!1,\"Base should be between 2 and 36\")},a.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&n(!1,\"Number can only safely store up to 53 bits\"),0!==this.negative?-t:t},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(t,e){return n(void 0!==o),this.toArrayLike(o,t,e)},a.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},a.prototype.toArrayLike=function(t,e,r){var i=this.byteLength(),a=r||Math.max(1,i);n(i<=a,\"byte array longer than desired length\"),n(a>0,\"Requested array length <= 0\"),this.strip();var o,s,l=\"le\"===e,c=new t(a),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},a.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},a.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;et.length?this.clone().ior(t):t.clone().ior(this)},a.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},a.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;rt.length?this.clone().iand(t):t.clone().iand(this)},a.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},a.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;nt.length?this.clone().ixor(t):t.clone().ixor(this)},a.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},a.prototype.inotn=function(t){n(\"number\"==typeof t&&t>=0);var e=0|Math.ceil(t/26),r=t%26;this._expand(e),r>0&&e--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-r),this.strip()},a.prototype.notn=function(t){return this.clone().inotn(t)},a.prototype.setn=function(t,e){n(\"number\"==typeof t&&t>=0);var r=t/26|0,i=t%26;return this._expand(r+1),this.words[r]=e?this.words[r]|1<t.length?(r=this,n=t):(r=t,n=this);for(var i=0,a=0;a>>26;for(;0!==i&&a>>26;if(this.length=r.length,0!==i)this.words[this.length]=i,this.length++;else if(r!==this)for(;at.length?this.clone().iadd(t):t.clone().iadd(this)},a.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var r,n,i=this.cmp(t);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(r=this,n=t):(r=t,n=this);for(var a=0,o=0;o>26,this.words[o]=67108863&e;for(;0!==a&&o>26,this.words[o]=67108863&e;if(0===a&&o>>13,p=0|o[1],d=8191&p,m=p>>>13,g=0|o[2],v=8191&g,y=g>>>13,x=0|o[3],b=8191&x,_=x>>>13,w=0|o[4],T=8191&w,k=w>>>13,A=0|o[5],M=8191&A,S=A>>>13,E=0|o[6],L=8191&E,C=E>>>13,P=0|o[7],I=8191&P,O=P>>>13,z=0|o[8],D=8191&z,R=z>>>13,F=0|o[9],B=8191&F,N=F>>>13,j=0|s[0],U=8191&j,V=j>>>13,H=0|s[1],q=8191&H,G=H>>>13,Y=0|s[2],W=8191&Y,X=Y>>>13,Z=0|s[3],J=8191&Z,K=Z>>>13,Q=0|s[4],$=8191&Q,tt=Q>>>13,et=0|s[5],rt=8191&et,nt=et>>>13,it=0|s[6],at=8191&it,ot=it>>>13,st=0|s[7],lt=8191&st,ct=st>>>13,ut=0|s[8],ft=8191&ut,ht=ut>>>13,pt=0|s[9],dt=8191&pt,mt=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var gt=(c+(n=Math.imul(f,U))|0)+((8191&(i=(i=Math.imul(f,V))+Math.imul(h,U)|0))<<13)|0;c=((a=Math.imul(h,V))+(i>>>13)|0)+(gt>>>26)|0,gt&=67108863,n=Math.imul(d,U),i=(i=Math.imul(d,V))+Math.imul(m,U)|0,a=Math.imul(m,V);var vt=(c+(n=n+Math.imul(f,q)|0)|0)+((8191&(i=(i=i+Math.imul(f,G)|0)+Math.imul(h,q)|0))<<13)|0;c=((a=a+Math.imul(h,G)|0)+(i>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(v,U),i=(i=Math.imul(v,V))+Math.imul(y,U)|0,a=Math.imul(y,V),n=n+Math.imul(d,q)|0,i=(i=i+Math.imul(d,G)|0)+Math.imul(m,q)|0,a=a+Math.imul(m,G)|0;var yt=(c+(n=n+Math.imul(f,W)|0)|0)+((8191&(i=(i=i+Math.imul(f,X)|0)+Math.imul(h,W)|0))<<13)|0;c=((a=a+Math.imul(h,X)|0)+(i>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(b,U),i=(i=Math.imul(b,V))+Math.imul(_,U)|0,a=Math.imul(_,V),n=n+Math.imul(v,q)|0,i=(i=i+Math.imul(v,G)|0)+Math.imul(y,q)|0,a=a+Math.imul(y,G)|0,n=n+Math.imul(d,W)|0,i=(i=i+Math.imul(d,X)|0)+Math.imul(m,W)|0,a=a+Math.imul(m,X)|0;var xt=(c+(n=n+Math.imul(f,J)|0)|0)+((8191&(i=(i=i+Math.imul(f,K)|0)+Math.imul(h,J)|0))<<13)|0;c=((a=a+Math.imul(h,K)|0)+(i>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(T,U),i=(i=Math.imul(T,V))+Math.imul(k,U)|0,a=Math.imul(k,V),n=n+Math.imul(b,q)|0,i=(i=i+Math.imul(b,G)|0)+Math.imul(_,q)|0,a=a+Math.imul(_,G)|0,n=n+Math.imul(v,W)|0,i=(i=i+Math.imul(v,X)|0)+Math.imul(y,W)|0,a=a+Math.imul(y,X)|0,n=n+Math.imul(d,J)|0,i=(i=i+Math.imul(d,K)|0)+Math.imul(m,J)|0,a=a+Math.imul(m,K)|0;var bt=(c+(n=n+Math.imul(f,$)|0)|0)+((8191&(i=(i=i+Math.imul(f,tt)|0)+Math.imul(h,$)|0))<<13)|0;c=((a=a+Math.imul(h,tt)|0)+(i>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(M,U),i=(i=Math.imul(M,V))+Math.imul(S,U)|0,a=Math.imul(S,V),n=n+Math.imul(T,q)|0,i=(i=i+Math.imul(T,G)|0)+Math.imul(k,q)|0,a=a+Math.imul(k,G)|0,n=n+Math.imul(b,W)|0,i=(i=i+Math.imul(b,X)|0)+Math.imul(_,W)|0,a=a+Math.imul(_,X)|0,n=n+Math.imul(v,J)|0,i=(i=i+Math.imul(v,K)|0)+Math.imul(y,J)|0,a=a+Math.imul(y,K)|0,n=n+Math.imul(d,$)|0,i=(i=i+Math.imul(d,tt)|0)+Math.imul(m,$)|0,a=a+Math.imul(m,tt)|0;var _t=(c+(n=n+Math.imul(f,rt)|0)|0)+((8191&(i=(i=i+Math.imul(f,nt)|0)+Math.imul(h,rt)|0))<<13)|0;c=((a=a+Math.imul(h,nt)|0)+(i>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(L,U),i=(i=Math.imul(L,V))+Math.imul(C,U)|0,a=Math.imul(C,V),n=n+Math.imul(M,q)|0,i=(i=i+Math.imul(M,G)|0)+Math.imul(S,q)|0,a=a+Math.imul(S,G)|0,n=n+Math.imul(T,W)|0,i=(i=i+Math.imul(T,X)|0)+Math.imul(k,W)|0,a=a+Math.imul(k,X)|0,n=n+Math.imul(b,J)|0,i=(i=i+Math.imul(b,K)|0)+Math.imul(_,J)|0,a=a+Math.imul(_,K)|0,n=n+Math.imul(v,$)|0,i=(i=i+Math.imul(v,tt)|0)+Math.imul(y,$)|0,a=a+Math.imul(y,tt)|0,n=n+Math.imul(d,rt)|0,i=(i=i+Math.imul(d,nt)|0)+Math.imul(m,rt)|0,a=a+Math.imul(m,nt)|0;var wt=(c+(n=n+Math.imul(f,at)|0)|0)+((8191&(i=(i=i+Math.imul(f,ot)|0)+Math.imul(h,at)|0))<<13)|0;c=((a=a+Math.imul(h,ot)|0)+(i>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(I,U),i=(i=Math.imul(I,V))+Math.imul(O,U)|0,a=Math.imul(O,V),n=n+Math.imul(L,q)|0,i=(i=i+Math.imul(L,G)|0)+Math.imul(C,q)|0,a=a+Math.imul(C,G)|0,n=n+Math.imul(M,W)|0,i=(i=i+Math.imul(M,X)|0)+Math.imul(S,W)|0,a=a+Math.imul(S,X)|0,n=n+Math.imul(T,J)|0,i=(i=i+Math.imul(T,K)|0)+Math.imul(k,J)|0,a=a+Math.imul(k,K)|0,n=n+Math.imul(b,$)|0,i=(i=i+Math.imul(b,tt)|0)+Math.imul(_,$)|0,a=a+Math.imul(_,tt)|0,n=n+Math.imul(v,rt)|0,i=(i=i+Math.imul(v,nt)|0)+Math.imul(y,rt)|0,a=a+Math.imul(y,nt)|0,n=n+Math.imul(d,at)|0,i=(i=i+Math.imul(d,ot)|0)+Math.imul(m,at)|0,a=a+Math.imul(m,ot)|0;var Tt=(c+(n=n+Math.imul(f,lt)|0)|0)+((8191&(i=(i=i+Math.imul(f,ct)|0)+Math.imul(h,lt)|0))<<13)|0;c=((a=a+Math.imul(h,ct)|0)+(i>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(D,U),i=(i=Math.imul(D,V))+Math.imul(R,U)|0,a=Math.imul(R,V),n=n+Math.imul(I,q)|0,i=(i=i+Math.imul(I,G)|0)+Math.imul(O,q)|0,a=a+Math.imul(O,G)|0,n=n+Math.imul(L,W)|0,i=(i=i+Math.imul(L,X)|0)+Math.imul(C,W)|0,a=a+Math.imul(C,X)|0,n=n+Math.imul(M,J)|0,i=(i=i+Math.imul(M,K)|0)+Math.imul(S,J)|0,a=a+Math.imul(S,K)|0,n=n+Math.imul(T,$)|0,i=(i=i+Math.imul(T,tt)|0)+Math.imul(k,$)|0,a=a+Math.imul(k,tt)|0,n=n+Math.imul(b,rt)|0,i=(i=i+Math.imul(b,nt)|0)+Math.imul(_,rt)|0,a=a+Math.imul(_,nt)|0,n=n+Math.imul(v,at)|0,i=(i=i+Math.imul(v,ot)|0)+Math.imul(y,at)|0,a=a+Math.imul(y,ot)|0,n=n+Math.imul(d,lt)|0,i=(i=i+Math.imul(d,ct)|0)+Math.imul(m,lt)|0,a=a+Math.imul(m,ct)|0;var kt=(c+(n=n+Math.imul(f,ft)|0)|0)+((8191&(i=(i=i+Math.imul(f,ht)|0)+Math.imul(h,ft)|0))<<13)|0;c=((a=a+Math.imul(h,ht)|0)+(i>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(B,U),i=(i=Math.imul(B,V))+Math.imul(N,U)|0,a=Math.imul(N,V),n=n+Math.imul(D,q)|0,i=(i=i+Math.imul(D,G)|0)+Math.imul(R,q)|0,a=a+Math.imul(R,G)|0,n=n+Math.imul(I,W)|0,i=(i=i+Math.imul(I,X)|0)+Math.imul(O,W)|0,a=a+Math.imul(O,X)|0,n=n+Math.imul(L,J)|0,i=(i=i+Math.imul(L,K)|0)+Math.imul(C,J)|0,a=a+Math.imul(C,K)|0,n=n+Math.imul(M,$)|0,i=(i=i+Math.imul(M,tt)|0)+Math.imul(S,$)|0,a=a+Math.imul(S,tt)|0,n=n+Math.imul(T,rt)|0,i=(i=i+Math.imul(T,nt)|0)+Math.imul(k,rt)|0,a=a+Math.imul(k,nt)|0,n=n+Math.imul(b,at)|0,i=(i=i+Math.imul(b,ot)|0)+Math.imul(_,at)|0,a=a+Math.imul(_,ot)|0,n=n+Math.imul(v,lt)|0,i=(i=i+Math.imul(v,ct)|0)+Math.imul(y,lt)|0,a=a+Math.imul(y,ct)|0,n=n+Math.imul(d,ft)|0,i=(i=i+Math.imul(d,ht)|0)+Math.imul(m,ft)|0,a=a+Math.imul(m,ht)|0;var At=(c+(n=n+Math.imul(f,dt)|0)|0)+((8191&(i=(i=i+Math.imul(f,mt)|0)+Math.imul(h,dt)|0))<<13)|0;c=((a=a+Math.imul(h,mt)|0)+(i>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(B,q),i=(i=Math.imul(B,G))+Math.imul(N,q)|0,a=Math.imul(N,G),n=n+Math.imul(D,W)|0,i=(i=i+Math.imul(D,X)|0)+Math.imul(R,W)|0,a=a+Math.imul(R,X)|0,n=n+Math.imul(I,J)|0,i=(i=i+Math.imul(I,K)|0)+Math.imul(O,J)|0,a=a+Math.imul(O,K)|0,n=n+Math.imul(L,$)|0,i=(i=i+Math.imul(L,tt)|0)+Math.imul(C,$)|0,a=a+Math.imul(C,tt)|0,n=n+Math.imul(M,rt)|0,i=(i=i+Math.imul(M,nt)|0)+Math.imul(S,rt)|0,a=a+Math.imul(S,nt)|0,n=n+Math.imul(T,at)|0,i=(i=i+Math.imul(T,ot)|0)+Math.imul(k,at)|0,a=a+Math.imul(k,ot)|0,n=n+Math.imul(b,lt)|0,i=(i=i+Math.imul(b,ct)|0)+Math.imul(_,lt)|0,a=a+Math.imul(_,ct)|0,n=n+Math.imul(v,ft)|0,i=(i=i+Math.imul(v,ht)|0)+Math.imul(y,ft)|0,a=a+Math.imul(y,ht)|0;var Mt=(c+(n=n+Math.imul(d,dt)|0)|0)+((8191&(i=(i=i+Math.imul(d,mt)|0)+Math.imul(m,dt)|0))<<13)|0;c=((a=a+Math.imul(m,mt)|0)+(i>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(B,W),i=(i=Math.imul(B,X))+Math.imul(N,W)|0,a=Math.imul(N,X),n=n+Math.imul(D,J)|0,i=(i=i+Math.imul(D,K)|0)+Math.imul(R,J)|0,a=a+Math.imul(R,K)|0,n=n+Math.imul(I,$)|0,i=(i=i+Math.imul(I,tt)|0)+Math.imul(O,$)|0,a=a+Math.imul(O,tt)|0,n=n+Math.imul(L,rt)|0,i=(i=i+Math.imul(L,nt)|0)+Math.imul(C,rt)|0,a=a+Math.imul(C,nt)|0,n=n+Math.imul(M,at)|0,i=(i=i+Math.imul(M,ot)|0)+Math.imul(S,at)|0,a=a+Math.imul(S,ot)|0,n=n+Math.imul(T,lt)|0,i=(i=i+Math.imul(T,ct)|0)+Math.imul(k,lt)|0,a=a+Math.imul(k,ct)|0,n=n+Math.imul(b,ft)|0,i=(i=i+Math.imul(b,ht)|0)+Math.imul(_,ft)|0,a=a+Math.imul(_,ht)|0;var St=(c+(n=n+Math.imul(v,dt)|0)|0)+((8191&(i=(i=i+Math.imul(v,mt)|0)+Math.imul(y,dt)|0))<<13)|0;c=((a=a+Math.imul(y,mt)|0)+(i>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(B,J),i=(i=Math.imul(B,K))+Math.imul(N,J)|0,a=Math.imul(N,K),n=n+Math.imul(D,$)|0,i=(i=i+Math.imul(D,tt)|0)+Math.imul(R,$)|0,a=a+Math.imul(R,tt)|0,n=n+Math.imul(I,rt)|0,i=(i=i+Math.imul(I,nt)|0)+Math.imul(O,rt)|0,a=a+Math.imul(O,nt)|0,n=n+Math.imul(L,at)|0,i=(i=i+Math.imul(L,ot)|0)+Math.imul(C,at)|0,a=a+Math.imul(C,ot)|0,n=n+Math.imul(M,lt)|0,i=(i=i+Math.imul(M,ct)|0)+Math.imul(S,lt)|0,a=a+Math.imul(S,ct)|0,n=n+Math.imul(T,ft)|0,i=(i=i+Math.imul(T,ht)|0)+Math.imul(k,ft)|0,a=a+Math.imul(k,ht)|0;var Et=(c+(n=n+Math.imul(b,dt)|0)|0)+((8191&(i=(i=i+Math.imul(b,mt)|0)+Math.imul(_,dt)|0))<<13)|0;c=((a=a+Math.imul(_,mt)|0)+(i>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(B,$),i=(i=Math.imul(B,tt))+Math.imul(N,$)|0,a=Math.imul(N,tt),n=n+Math.imul(D,rt)|0,i=(i=i+Math.imul(D,nt)|0)+Math.imul(R,rt)|0,a=a+Math.imul(R,nt)|0,n=n+Math.imul(I,at)|0,i=(i=i+Math.imul(I,ot)|0)+Math.imul(O,at)|0,a=a+Math.imul(O,ot)|0,n=n+Math.imul(L,lt)|0,i=(i=i+Math.imul(L,ct)|0)+Math.imul(C,lt)|0,a=a+Math.imul(C,ct)|0,n=n+Math.imul(M,ft)|0,i=(i=i+Math.imul(M,ht)|0)+Math.imul(S,ft)|0,a=a+Math.imul(S,ht)|0;var Lt=(c+(n=n+Math.imul(T,dt)|0)|0)+((8191&(i=(i=i+Math.imul(T,mt)|0)+Math.imul(k,dt)|0))<<13)|0;c=((a=a+Math.imul(k,mt)|0)+(i>>>13)|0)+(Lt>>>26)|0,Lt&=67108863,n=Math.imul(B,rt),i=(i=Math.imul(B,nt))+Math.imul(N,rt)|0,a=Math.imul(N,nt),n=n+Math.imul(D,at)|0,i=(i=i+Math.imul(D,ot)|0)+Math.imul(R,at)|0,a=a+Math.imul(R,ot)|0,n=n+Math.imul(I,lt)|0,i=(i=i+Math.imul(I,ct)|0)+Math.imul(O,lt)|0,a=a+Math.imul(O,ct)|0,n=n+Math.imul(L,ft)|0,i=(i=i+Math.imul(L,ht)|0)+Math.imul(C,ft)|0,a=a+Math.imul(C,ht)|0;var Ct=(c+(n=n+Math.imul(M,dt)|0)|0)+((8191&(i=(i=i+Math.imul(M,mt)|0)+Math.imul(S,dt)|0))<<13)|0;c=((a=a+Math.imul(S,mt)|0)+(i>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(B,at),i=(i=Math.imul(B,ot))+Math.imul(N,at)|0,a=Math.imul(N,ot),n=n+Math.imul(D,lt)|0,i=(i=i+Math.imul(D,ct)|0)+Math.imul(R,lt)|0,a=a+Math.imul(R,ct)|0,n=n+Math.imul(I,ft)|0,i=(i=i+Math.imul(I,ht)|0)+Math.imul(O,ft)|0,a=a+Math.imul(O,ht)|0;var Pt=(c+(n=n+Math.imul(L,dt)|0)|0)+((8191&(i=(i=i+Math.imul(L,mt)|0)+Math.imul(C,dt)|0))<<13)|0;c=((a=a+Math.imul(C,mt)|0)+(i>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(B,lt),i=(i=Math.imul(B,ct))+Math.imul(N,lt)|0,a=Math.imul(N,ct),n=n+Math.imul(D,ft)|0,i=(i=i+Math.imul(D,ht)|0)+Math.imul(R,ft)|0,a=a+Math.imul(R,ht)|0;var It=(c+(n=n+Math.imul(I,dt)|0)|0)+((8191&(i=(i=i+Math.imul(I,mt)|0)+Math.imul(O,dt)|0))<<13)|0;c=((a=a+Math.imul(O,mt)|0)+(i>>>13)|0)+(It>>>26)|0,It&=67108863,n=Math.imul(B,ft),i=(i=Math.imul(B,ht))+Math.imul(N,ft)|0,a=Math.imul(N,ht);var Ot=(c+(n=n+Math.imul(D,dt)|0)|0)+((8191&(i=(i=i+Math.imul(D,mt)|0)+Math.imul(R,dt)|0))<<13)|0;c=((a=a+Math.imul(R,mt)|0)+(i>>>13)|0)+(Ot>>>26)|0,Ot&=67108863;var zt=(c+(n=Math.imul(B,dt))|0)+((8191&(i=(i=Math.imul(B,mt))+Math.imul(N,dt)|0))<<13)|0;return c=((a=Math.imul(N,mt))+(i>>>13)|0)+(zt>>>26)|0,zt&=67108863,l[0]=gt,l[1]=vt,l[2]=yt,l[3]=xt,l[4]=bt,l[5]=_t,l[6]=wt,l[7]=Tt,l[8]=kt,l[9]=At,l[10]=Mt,l[11]=St,l[12]=Et,l[13]=Lt,l[14]=Ct,l[15]=Pt,l[16]=It,l[17]=Ot,l[18]=zt,0!==c&&(l[19]=c,r.length++),r};function m(t,e,r){return(new g).mulp(t,e,r)}function g(t,e){this.x=t,this.y=e}Math.imul||(d=p),a.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?d(this,t,e):r<63?p(this,t,e):r<1024?function(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,i=0,a=0;a>>26)|0)>>>26,o&=67108863}r.words[a]=s,n=o,o=i}return 0!==n?r.words[a]=n:r.length--,r.strip()}(this,t,e):m(this,t,e)},g.prototype.makeRBT=function(t){for(var e=new Array(t),r=a.prototype._countBits(t)-1,n=0;n>=1;return n},g.prototype.permute=function(t,e,r,n,i,a){for(var o=0;o>>=1)i++;return 1<>>=13,r[2*o+1]=8191&a,a>>>=13;for(o=2*e;o>=26,e+=i/67108864|0,e+=a>>>26,this.words[r]=67108863&a}return 0!==e&&(this.words[r]=e,this.length++),this},a.prototype.muln=function(t){return this.clone().imuln(t)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r>>i}return e}(t);if(0===e.length)return new a(1);for(var r=this,n=0;n=0);var e,r=t%26,i=(t-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(e=0;e>>26-r}o&&(this.words[e]=o,this.length++)}if(0!==i){for(e=this.length-1;e>=0;e--)this.words[e+i]=this.words[e];for(e=0;e=0),i=e?(e-e%26)/26:0;var a=t%26,o=Math.min((t-a)/26,this.length),s=67108863^67108863>>>a<o)for(this.length-=o,c=0;c=0&&(0!==u||c>=i);c--){var f=0|this.words[c];this.words[c]=u<<26-a|f>>>a,u=f&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(t,e,r){return n(0===this.negative),this.iushrn(t,e,r)},a.prototype.shln=function(t){return this.clone().ishln(t)},a.prototype.ushln=function(t){return this.clone().iushln(t)},a.prototype.shrn=function(t){return this.clone().ishrn(t)},a.prototype.ushrn=function(t){return this.clone().iushrn(t)},a.prototype.testn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26,i=1<=0);var e=t%26,r=(t-e)/26;if(n(0===this.negative,\"imaskn works only with positive numbers\"),this.length<=r)return this;if(0!==e&&r++,this.length=Math.min(r,this.length),0!==e){var i=67108863^67108863>>>e<=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},a.prototype.isubn=function(t){if(n(\"number\"==typeof t),n(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e>26)-(l/67108864|0),this.words[i+r]=67108863&a}for(;i>26,this.words[i+r]=67108863&a;if(0===s)return this.strip();for(n(-1===s),s=0,i=0;i>26,this.words[i]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),i=t,o=0|i.words[i.length-1];0!==(r=26-this._countBits(o))&&(i=i.ushln(r),n.iushln(r),o=0|i.words[i.length-1]);var s,l=n.length-i.length;if(\"mod\"!==e){(s=new a(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c=0;f--){var h=67108864*(0|n.words[i.length+f])+(0|n.words[i.length+f-1]);for(h=Math.min(h/o|0,67108863),n._ishlnsubmul(i,h,f);0!==n.negative;)h--,n.negative=0,n._ishlnsubmul(i,1,f),n.isZero()||(n.negative^=1);s&&(s.words[f]=h)}return s&&s.strip(),n.strip(),\"div\"!==e&&0!==r&&n.iushrn(r),{div:s||null,mod:n}},a.prototype.divmod=function(t,e,r){return n(!t.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===t.negative?(s=this.neg().divmod(t,e),\"mod\"!==e&&(i=s.div.neg()),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.iadd(t)),{div:i,mod:o}):0===this.negative&&0!==t.negative?(s=this.divmod(t.neg(),e),\"mod\"!==e&&(i=s.div.neg()),{div:i,mod:s.mod}):0!=(this.negative&t.negative)?(s=this.neg().divmod(t.neg(),e),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.isub(t)),{div:s.div,mod:o}):t.length>this.length||this.cmp(t)<0?{div:new a(0),mod:this}:1===t.length?\"div\"===e?{div:this.divn(t.words[0]),mod:null}:\"mod\"===e?{div:null,mod:new a(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new a(this.modn(t.words[0]))}:this._wordDiv(t,e);var i,o,s},a.prototype.div=function(t){return this.divmod(t,\"div\",!1).div},a.prototype.mod=function(t){return this.divmod(t,\"mod\",!1).mod},a.prototype.umod=function(t){return this.divmod(t,\"mod\",!0).mod},a.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),i=t.andln(1),a=r.cmp(n);return a<0||1===i&&0===a?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},a.prototype.modn=function(t){n(t<=67108863);for(var e=(1<<26)%t,r=0,i=this.length-1;i>=0;i--)r=(e*r+(0|this.words[i]))%t;return r},a.prototype.idivn=function(t){n(t<=67108863);for(var e=0,r=this.length-1;r>=0;r--){var i=(0|this.words[r])+67108864*e;this.words[r]=i/t|0,e=i%t}return this.strip()},a.prototype.divn=function(t){return this.clone().idivn(t)},a.prototype.egcd=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var i=new a(1),o=new a(0),s=new a(0),l=new a(1),c=0;e.isEven()&&r.isEven();)e.iushrn(1),r.iushrn(1),++c;for(var u=r.clone(),f=e.clone();!e.isZero();){for(var h=0,p=1;0==(e.words[0]&p)&&h<26;++h,p<<=1);if(h>0)for(e.iushrn(h);h-- >0;)(i.isOdd()||o.isOdd())&&(i.iadd(u),o.isub(f)),i.iushrn(1),o.iushrn(1);for(var d=0,m=1;0==(r.words[0]&m)&&d<26;++d,m<<=1);if(d>0)for(r.iushrn(d);d-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(f)),s.iushrn(1),l.iushrn(1);e.cmp(r)>=0?(e.isub(r),i.isub(s),o.isub(l)):(r.isub(e),s.isub(i),l.isub(o))}return{a:s,b:l,gcd:r.iushln(c)}},a.prototype._invmp=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var i,o=new a(1),s=new a(0),l=r.clone();e.cmpn(1)>0&&r.cmpn(1)>0;){for(var c=0,u=1;0==(e.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(e.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var f=0,h=1;0==(r.words[0]&h)&&f<26;++f,h<<=1);if(f>0)for(r.iushrn(f);f-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);e.cmp(r)>=0?(e.isub(r),o.isub(s)):(r.isub(e),s.isub(o))}return(i=0===e.cmpn(1)?o:s).cmpn(0)<0&&i.iadd(t),i},a.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var i=e.cmp(r);if(i<0){var a=e;e=r,r=a}else if(0===i||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},a.prototype.invm=function(t){return this.egcd(t).a.umod(t)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(t){return this.words[0]&t},a.prototype.bincn=function(t){n(\"number\"==typeof t);var e=t%26,r=(t-e)/26,i=1<>>26,s&=67108863,this.words[o]=s}return 0!==a&&(this.words[o]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(t){var e,r=t<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)e=1;else{r&&(t=-t),n(t<=67108863,\"Number is too big\");var i=0|this.words[0];e=i===t?0:it.length)return 1;if(this.length=0;r--){var n=0|this.words[r],i=0|t.words[r];if(n!==i){ni&&(e=1);break}}return e},a.prototype.gtn=function(t){return 1===this.cmpn(t)},a.prototype.gt=function(t){return 1===this.cmp(t)},a.prototype.gten=function(t){return this.cmpn(t)>=0},a.prototype.gte=function(t){return this.cmp(t)>=0},a.prototype.ltn=function(t){return-1===this.cmpn(t)},a.prototype.lt=function(t){return-1===this.cmp(t)},a.prototype.lten=function(t){return this.cmpn(t)<=0},a.prototype.lte=function(t){return this.cmp(t)<=0},a.prototype.eqn=function(t){return 0===this.cmpn(t)},a.prototype.eq=function(t){return 0===this.cmp(t)},a.red=function(t){return new T(t)},a.prototype.toRed=function(t){return n(!this.red,\"Already a number in reduction context\"),n(0===this.negative,\"red works only with positives\"),t.convertTo(this)._forceRed(t)},a.prototype.fromRed=function(){return n(this.red,\"fromRed works only with numbers in reduction context\"),this.red.convertFrom(this)},a.prototype._forceRed=function(t){return this.red=t,this},a.prototype.forceRed=function(t){return n(!this.red,\"Already a number in reduction context\"),this._forceRed(t)},a.prototype.redAdd=function(t){return n(this.red,\"redAdd works only with red numbers\"),this.red.add(this,t)},a.prototype.redIAdd=function(t){return n(this.red,\"redIAdd works only with red numbers\"),this.red.iadd(this,t)},a.prototype.redSub=function(t){return n(this.red,\"redSub works only with red numbers\"),this.red.sub(this,t)},a.prototype.redISub=function(t){return n(this.red,\"redISub works only with red numbers\"),this.red.isub(this,t)},a.prototype.redShl=function(t){return n(this.red,\"redShl works only with red numbers\"),this.red.shl(this,t)},a.prototype.redMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.mul(this,t)},a.prototype.redIMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.imul(this,t)},a.prototype.redSqr=function(){return n(this.red,\"redSqr works only with red numbers\"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return n(this.red,\"redISqr works only with red numbers\"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return n(this.red,\"redSqrt works only with red numbers\"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return n(this.red,\"redInvm works only with red numbers\"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return n(this.red,\"redNeg works only with red numbers\"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(t){return n(this.red&&!t.red,\"redPow(normalNum)\"),this.red._verify1(this),this.red.pow(this,t)};var v={k256:null,p224:null,p192:null,p25519:null};function y(t,e){this.name=t,this.p=new a(e,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function x(){y.call(this,\"k256\",\"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f\")}function b(){y.call(this,\"p224\",\"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001\")}function _(){y.call(this,\"p192\",\"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff\")}function w(){y.call(this,\"25519\",\"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed\")}function T(t){if(\"string\"==typeof t){var e=a._prime(t);this.m=e.p,this.prime=e}else n(t.gtn(1),\"modulus must be greater than 1\"),this.m=t,this.prime=null}function k(t){T.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}y.prototype._tmp=function(){var t=new a(null);return t.words=new Array(Math.ceil(this.n/13)),t},y.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},y.prototype.split=function(t,e){t.iushrn(this.n,0,e)},y.prototype.imulK=function(t){return t.imul(this.k)},i(x,y),x.prototype.split=function(t,e){for(var r=Math.min(t.length,9),n=0;n>>22,i=a}i>>>=22,t.words[n-10]=i,0===i&&t.length>10?t.length-=10:t.length-=9},x.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r>>=26,t.words[r]=i,e=n}return 0!==e&&(t.words[t.length++]=e),t},a._prime=function(t){if(v[t])return v[t];var e;if(\"k256\"===t)e=new x;else if(\"p224\"===t)e=new b;else if(\"p192\"===t)e=new _;else{if(\"p25519\"!==t)throw new Error(\"Unknown prime \"+t);e=new w}return v[t]=e,e},T.prototype._verify1=function(t){n(0===t.negative,\"red works only with positives\"),n(t.red,\"red works only with red numbers\")},T.prototype._verify2=function(t,e){n(0==(t.negative|e.negative),\"red works only with positives\"),n(t.red&&t.red===e.red,\"red works only with red numbers\")},T.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.umod(this.m)._forceRed(this)},T.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},T.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},T.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},T.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},T.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},T.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},T.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},T.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},T.prototype.isqr=function(t){return this.imul(t,t.clone())},T.prototype.sqr=function(t){return this.mul(t,t)},T.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(n(e%2==1),3===e){var r=this.m.add(new a(1)).iushrn(2);return this.pow(t,r)}for(var i=this.m.subn(1),o=0;!i.isZero()&&0===i.andln(1);)o++,i.iushrn(1);n(!i.isZero());var s=new a(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new a(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var f=this.pow(u,i),h=this.pow(t,i.addn(1).iushrn(1)),p=this.pow(t,i),d=o;0!==p.cmp(s);){for(var m=p,g=0;0!==m.cmp(s);g++)m=m.redSqr();n(g=0;n--){for(var c=e.words[n],u=l-1;u>=0;u--){var f=c>>u&1;i!==r[0]&&(i=this.sqr(i)),0!==f||0!==o?(o<<=1,o|=f,(4===++s||0===n&&0===u)&&(i=this.mul(i,r[o]),s=0,o=0)):s=0}l=26}return i},T.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},T.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},a.mont=function(t){return new k(t)},i(k,T),k.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},k.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},k.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),a=i;return i.cmp(this.m)>=0?a=i.isub(this.m):i.cmpn(0)<0&&(a=i.iadd(this.m)),a._forceRed(this)},k.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new a(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},k.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(void 0===e||e,this)},{buffer:2}],34:[function(t,e,r){\"use strict\";e.exports=function(t){var e,r,n,i=t.length,a=0;for(e=0;e>>1;if(!(u<=0)){var f,h=i.mallocDouble(2*u*s),p=i.mallocInt32(s);if((s=l(t,u,h,p))>0){if(1===u&&n)a.init(s),f=a.sweepComplete(u,r,0,s,h,p,0,s,h,p);else{var d=i.mallocDouble(2*u*c),m=i.mallocInt32(c);(c=l(e,u,d,m))>0&&(a.init(s+c),f=1===u?a.sweepBipartite(u,r,0,s,h,p,0,c,d,m):o(u,r,n,s,h,p,c,d,m),i.free(d),i.free(m))}i.free(h),i.free(p)}return f}}}function u(t,e){n.push([t,e])}function f(t){return n=[],c(t,t,u,!0),n}function h(t,e){return n=[],c(t,e,u,!1),n}},{\"./lib/intersect\":37,\"./lib/sweep\":41,\"typedarray-pool\":308}],36:[function(t,e,r){\"use strict\";function n(t){return t?function(t,e,r,n,i,a,o,s,l,c,u){return i-n>l-s?function(t,e,r,n,i,a,o,s,l,c,u){for(var f=2*t,h=n,p=f*n;hc-l?n?function(t,e,r,n,i,a,o,s,l,c,u){for(var f=2*t,h=n,p=f*n;h0;){var L=6*(S-=1),C=v[L],P=v[L+1],I=v[L+2],O=v[L+3],z=v[L+4],D=v[L+5],R=2*S,F=y[R],B=y[R+1],N=1&D,j=!!(16&D),U=u,V=w,H=k,q=A;if(N&&(U=k,V=A,H=u,q=w),!(2&D&&(I=p(t,C,P,I,U,V,B),P>=I)||4&D&&(P=d(t,C,P,I,U,V,F))>=I)){var G=I-P,Y=z-O;if(j){if(t*G*(G+Y)<1<<22){if(void 0!==(M=l.scanComplete(t,C,e,P,I,U,V,O,z,H,q)))return M;continue}}else{if(t*Math.min(G,Y)<128){if(void 0!==(M=o(t,C,e,N,P,I,U,V,O,z,H,q)))return M;continue}if(t*G*Y<1<<22){if(void 0!==(M=l.scanBipartite(t,C,e,N,P,I,U,V,O,z,H,q)))return M;continue}}var W=f(t,C,P,I,U,V,F,B);if(P=p0)&&!(p1>=hi)\"),h=u(\"lo===p0\"),p=u(\"lo>>1,f=2*t,h=u,p=o[f*u+e];for(;l=y?(h=v,p=y):g>=b?(h=m,p=g):(h=x,p=b):y>=b?(h=v,p=y):b>=g?(h=m,p=g):(h=x,p=b);for(var _=f*(c-1),w=f*h,T=0;Tr&&i[f+e]>c;--u,f-=o){for(var h=f,p=f+o,d=0;dh;++h,l+=s){if(i[l+f]===o)if(u===h)u+=1,c+=s;else{for(var p=0;s>p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},\"loh;++h,l+=s){if(i[l+f]p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},\"lo<=p0\":function(t,e,r,n,i,a,o){for(var s=2*t,l=s*r,c=l,u=r,f=t+e,h=r;n>h;++h,l+=s){if(i[l+f]<=o)if(u===h)u+=1,c+=s;else{for(var p=0;s>p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},\"hi<=p0\":function(t,e,r,n,i,a,o){for(var s=2*t,l=s*r,c=l,u=r,f=t+e,h=r;n>h;++h,l+=s){if(i[l+f]<=o)if(u===h)u+=1,c+=s;else{for(var p=0;s>p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},\"lop;++p,l+=s){var d=i[l+f],m=i[l+h];if(dg;++g){var v=i[l+g];i[l+g]=i[c],i[c++]=v}var y=a[p];a[p]=a[u],a[u++]=y}}return u},\"lo<=p0&&p0<=hi\":function(t,e,r,n,i,a,o){for(var s=2*t,l=s*r,c=l,u=r,f=e,h=t+e,p=r;n>p;++p,l+=s){var d=i[l+f],m=i[l+h];if(d<=o&&o<=m)if(u===p)u+=1,c+=s;else{for(var g=0;s>g;++g){var v=i[l+g];i[l+g]=i[c],i[c++]=v}var y=a[p];a[p]=a[u],a[u++]=y}}return u},\"!(lo>=p0)&&!(p1>=hi)\":function(t,e,r,n,i,a,o,s){for(var l=2*t,c=l*r,u=c,f=r,h=e,p=t+e,d=r;n>d;++d,c+=l){var m=i[c+h],g=i[c+p];if(!(m>=o||s>=g))if(f===d)f+=1,u+=l;else{for(var v=0;l>v;++v){var y=i[c+v];i[c+v]=i[u],i[u++]=y}var x=a[d];a[d]=a[f],a[f++]=x}}return f}}},{}],40:[function(t,e,r){\"use strict\";e.exports=function(t,e){e<=128?n(0,e-1,t):function t(e,r,u){var f=(r-e+1)/6|0,h=e+f,p=r-f,d=e+r>>1,m=d-f,g=d+f,v=h,y=m,x=d,b=g,_=p,w=e+1,T=r-1,k=0;l(v,y,u)&&(k=v,v=y,y=k);l(b,_,u)&&(k=b,b=_,_=k);l(v,x,u)&&(k=v,v=x,x=k);l(y,x,u)&&(k=y,y=x,x=k);l(v,b,u)&&(k=v,v=b,b=k);l(x,b,u)&&(k=x,x=b,b=k);l(y,_,u)&&(k=y,y=_,_=k);l(y,x,u)&&(k=y,y=x,x=k);l(b,_,u)&&(k=b,b=_,_=k);for(var A=u[2*y],M=u[2*y+1],S=u[2*b],E=u[2*b+1],L=2*v,C=2*x,P=2*_,I=2*h,O=2*d,z=2*p,D=0;D<2;++D){var R=u[L+D],F=u[C+D],B=u[P+D];u[I+D]=R,u[O+D]=F,u[z+D]=B}a(m,e,u),a(g,r,u);for(var N=w;N<=T;++N)if(c(N,A,M,u))N!==w&&i(N,w,u),++w;else if(!c(N,S,E,u))for(;;){if(c(T,S,E,u)){c(T,A,M,u)?(o(N,w,T,u),++w,--T):(i(N,T,u),--T);break}if(--Tt;){var c=r[l-2],u=r[l-1];if(cr[e+1])}function c(t,e,r,n){var i=n[t*=2];return i>>1;a(h,M);var S=0,E=0;for(w=0;w=1<<28)p(l,c,E--,L=L-(1<<28)|0);else if(L>=0)p(o,s,S--,L);else if(L<=-(1<<28)){L=-L-(1<<28)|0;for(var C=0;C>>1;a(h,E);var L=0,C=0,P=0;for(k=0;k>1==h[2*k+3]>>1&&(O=2,k+=1),I<0){for(var z=-(I>>1)-1,D=0;D>1)-1;0===O?p(o,s,L--,z):1===O?p(l,c,C--,z):2===O&&p(u,f,P--,z)}}},scanBipartite:function(t,e,r,n,i,l,c,u,f,m,g,v){var y=0,x=2*t,b=e,_=e+t,w=1,T=1;n?T=1<<28:w=1<<28;for(var k=i;k>>1;a(h,E);var L=0;for(k=0;k=1<<28?(P=!n,A-=1<<28):(P=!!n,A-=1),P)d(o,s,L++,A);else{var I=v[A],O=x*A,z=g[O+e+1],D=g[O+e+1+t];t:for(var R=0;R>>1;a(h,w);var T=0;for(y=0;y=1<<28)o[T++]=x-(1<<28);else{var A=p[x-=1],M=m*x,S=f[M+e+1],E=f[M+e+1+t];t:for(var L=0;L=0;--L)if(o[L]===x){for(O=L+1;O0;){for(var p=r.pop(),d=(s=r.pop(),u=-1,f=-1,l=o[s],1);d=0||(e.flip(s,p),i(t,e,r,u,s,f),i(t,e,r,s,f,u),i(t,e,r,f,p,u),i(t,e,r,p,u,f)))}}},{\"binary-search-bounds\":31,\"robust-in-sphere\":282}],44:[function(t,e,r){\"use strict\";var n,i=t(\"binary-search-bounds\");function a(t,e,r,n,i,a,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=i,this.next=a,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,i=0;i0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-i){c[p]=i;u[p];for(var d=0;d<3;++d){var m=h[3*p+d];m>=0&&0===c[m]&&(f[3*p+d]?l.push(m):(s.push(m),c[m]=i))}}}var g=l;l=s,s=g,l.length=0,i=-i}var v=function(t,e,r){for(var n=0,i=0;i1&&i(r[h[p-2]],r[h[p-1]],a)>0;)t.push([h[p-1],h[p-2],o]),p-=1;h.length=p,h.push(o);var d=f.upperIds;for(p=d.length;p>1&&i(r[d[p-2]],r[d[p-1]],a)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function u(t,e){var r;return(r=t.a[0]d[0]&&i.push(new o(d,p,2,l),new o(p,d,1,l))}i.sort(s);for(var m=i[0].a[0]-(1+Math.abs(i[0].a[0]))*Math.pow(2,-52),g=[new a([m,1],[m,0],-1,[],[],[],[])],v=[],y=(l=0,i.length);l=0}}(),a.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},a.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},a.opposite=function(t,e){for(var r=this.stars[e],n=1,i=r.length;ne[2]?1:0)}function v(t,e,r){if(0!==t.length){if(e)for(var n=0;n=0;--a){var x=e[u=(S=n[a])[0]],b=x[0],_=x[1],w=t[b],T=t[_];if((w[0]-T[0]||w[1]-T[1])<0){var k=b;b=_,_=k}x[0]=b;var A,M=x[1]=S[1];for(i&&(A=x[2]);a>0&&n[a-1][0]===u;){var S,E=(S=n[--a])[1];i?e.push([M,E,A]):e.push([M,E]),M=E}i?e.push([M,_,A]):e.push([M,_])}return h}(t,e,h,g,r));return v(e,y,r),!!y||(h.length>0||g.length>0)}},{\"./lib/rat-seg-intersect\":51,\"big-rat\":18,\"big-rat/cmp\":16,\"big-rat/to-float\":30,\"box-intersect\":35,nextafter:260,\"rat-vec\":273,\"robust-segment-intersect\":287,\"union-find\":309}],51:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a=s(e,t),f=s(n,r),h=u(a,f);if(0===o(h))return null;var p=s(t,r),d=u(f,p),m=i(d,h),g=c(a,m);return l(t,g)};var n=t(\"big-rat/mul\"),i=t(\"big-rat/div\"),a=t(\"big-rat/sub\"),o=t(\"big-rat/sign\"),s=t(\"rat-vec/sub\"),l=t(\"rat-vec/add\"),c=t(\"rat-vec/muls\");function u(t,e){return a(n(t[0],e[1]),n(t[1],e[0]))}},{\"big-rat/div\":17,\"big-rat/mul\":27,\"big-rat/sign\":28,\"big-rat/sub\":29,\"rat-vec/add\":272,\"rat-vec/muls\":274,\"rat-vec/sub\":275}],52:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],\"rainbow-soft\":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],\"freesurface-blue\":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],\"freesurface-red\":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],\"velocity-blue\":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],\"velocity-green\":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],53:[function(t,e,r){\"use strict\";var n=t(\"./colorScale\"),i=t(\"lerp\");function a(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r=\"#\",n=0;n<3;++n)r+=(\"00\"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return\"rgba(\"+t.join(\",\")+\")\"}e.exports=function(t){var e,r,l,c,u,f,h,p,d,m;t||(t={});p=(t.nshades||72)-1,h=t.format||\"hex\",(f=t.colormap)||(f=\"jet\");if(\"string\"==typeof f){if(f=f.toLowerCase(),!n[f])throw Error(f+\" not a supported colorscale\");u=n[f]}else{if(!Array.isArray(f))throw Error(\"unsupported colormap option\",f);u=f.slice()}if(u.length>p+1)throw new Error(f+\" map requires nshades to be at least size \"+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():\"number\"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map((function(t){return Math.round(t.index*p)})),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var g=u.map((function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1||(n[3]=d[0]+(d[1]-d[0])*r),n})),v=[];for(m=0;m0||l(t,e,a)?-1:1:0===s?c>0||l(t,e,r)?1:-1:i(c-s)}var h=n(t,e,r);return h>0?o>0&&n(t,e,a)>0?1:-1:h<0?o>0||n(t,e,a)>0?1:-1:n(t,e,a)>0||l(t,e,r)?1:-1};var n=t(\"robust-orientation\"),i=t(\"signum\"),a=t(\"two-sum\"),o=t(\"robust-product\"),s=t(\"robust-sum\");function l(t,e,r){var n=a(t[0],-e[0]),i=a(t[1],-e[1]),l=a(r[0],-e[0]),c=a(r[1],-e[1]),u=s(o(n,l),o(i,c));return u[u.length-1]>=0}},{\"robust-orientation\":284,\"robust-product\":285,\"robust-sum\":289,signum:55,\"two-sum\":307}],55:[function(t,e,r){\"use strict\";e.exports=function(t){return t<0?-1:t>0?1:0}},{}],56:[function(t,e,r){e.exports=function(t,e){var r=t.length,a=t.length-e.length;if(a)return a;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(a=o+t[2]-(s+e[2]))return a;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],f=t[1],h=t[2],p=t[3],d=e[0],m=e[1],g=e[2],v=e[3];return u+f+h+p-(d+m+g+v)||n(u,f,h,p)-n(d,m,g,v,d)||n(u+f,u+h,u+p,f+h,f+p,h+p)-n(d+m,d+g,d+v,m+g,m+v,g+v)||n(u+f+h,u+f+p,u+h+p,f+h+p)-n(d+m+g,d+m+v,d+g+v,m+g+v);default:for(var y=t.slice().sort(i),x=e.slice().sort(i),b=0;bt[r][0]&&(r=n);return er?[[r],[e]]:[[e]]}},{}],60:[function(t,e,r){\"use strict\";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var i=new Array(r),a=e[r-1],o=0;o=e[l]&&(s+=1);a[o]=s}}return t}(n(a,!0),r)}};var n=t(\"incremental-convex-hull\"),i=t(\"affine-hull\")},{\"affine-hull\":10,\"incremental-convex-hull\":233}],62:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i,a){var o=i-1,s=i*i,l=o*o,c=(1+2*i)*l,u=i*l,f=s*(3-2*i),h=s*o;if(t.length){a||(a=new Array(t.length));for(var p=t.length-1;p>=0;--p)a[p]=c*t[p]+u*e[p]+f*r[p]+h*n[p];return a}return c*t+u*e+f*r+h*n},e.exports.derivative=function(t,e,r,n,i,a){var o=6*i*i-6*i,s=3*i*i-4*i+1,l=-6*i*i+6*i,c=3*i*i-2*i;if(t.length){a||(a=new Array(t.length));for(var u=t.length-1;u>=0;--u)a[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return a}return o*t+s*e+l*r[u]+c*n}},{}],63:[function(t,e,r){\"use strict\";var n=t(\"incremental-convex-hull\"),i=t(\"uniq\");function a(t,e){this.point=t,this.index=e}function o(t,e){for(var r=t.point,n=e.point,i=r.length,a=0;a=2)return!1;t[r]=n}return!0})):_.filter((function(t){for(var e=0;e<=s;++e){var r=v[t[e]];if(r<0)return!1;t[e]=r}return!0}));if(1&s)for(u=0;u<_.length;++u){h=(b=_[u])[0];b[0]=b[1],b[1]=h}return _}},{\"incremental-convex-hull\":233,uniq:310}],64:[function(t,e,r){(function(t){(function(){var r=!1;if(\"undefined\"!=typeof Float64Array){var n=new Float64Array(1),i=new Uint32Array(n.buffer);if(n[0]=1,r=!0,1072693248===i[1]){e.exports=function(t){return n[0]=t,[i[0],i[1]]},e.exports.pack=function(t,e){return i[0]=t,i[1]=e,n[0]},e.exports.lo=function(t){return n[0]=t,i[0]},e.exports.hi=function(t){return n[0]=t,i[1]}}else if(1072693248===i[0]){e.exports=function(t){return n[0]=t,[i[1],i[0]]},e.exports.pack=function(t,e){return i[1]=t,i[0]=e,n[0]},e.exports.lo=function(t){return n[0]=t,i[1]},e.exports.hi=function(t){return n[0]=t,i[0]}}else r=!1}if(!r){var a=new t(8);e.exports=function(t){return a.writeDoubleLE(t,0,!0),[a.readUInt32LE(0,!0),a.readUInt32LE(4,!0)]},e.exports.pack=function(t,e){return a.writeUInt32LE(t,0,!0),a.writeUInt32LE(e,4,!0),a.readDoubleLE(0,!0)},e.exports.lo=function(t){return a.writeDoubleLE(t,0,!0),a.readUInt32LE(0,!0)},e.exports.hi=function(t){return a.writeDoubleLE(t,0,!0),a.readUInt32LE(4,!0)}}e.exports.sign=function(t){return e.exports.hi(t)>>>31},e.exports.exponent=function(t){return(e.exports.hi(t)<<1>>>21)-1023},e.exports.fraction=function(t){var r=e.exports.lo(t),n=e.exports.hi(t),i=1048575&n;return 2146435072&n&&(i+=1<<20),[r,i]},e.exports.denormalized=function(t){return!(2146435072&e.exports.hi(t))}}).call(this)}).call(this,t(\"buffer\").Buffer)},{buffer:3}],65:[function(t,e,r){\"use strict\";e.exports=function(t,e){switch(void 0===e&&(e=0),typeof t){case\"number\":if(t>0)return function(t,e){var r,n;for(r=new Array(t),n=0;n=r-1){h=l.length-1;var d=t-e[r-1];for(p=0;p=r-1)for(var u=s.length-1,f=(e[r-1],0);f=0;--r)if(t[--e])return!1;return!0},s.jump=function(t){var e=this.lastT(),r=this.dimension;if(!(t0;--f)n.push(a(l[f-1],c[f-1],arguments[f])),i.push(0)}},s.push=function(t){var e=this.lastT(),r=this.dimension;if(!(t1e-6?1/s:0;this._time.push(t);for(var h=r;h>0;--h){var p=a(c[h-1],u[h-1],arguments[h]);n.push(p),i.push((p-n[o++])*f)}}},s.set=function(t){var e=this.dimension;if(!(t0;--l)r.push(a(o[l-1],s[l-1],arguments[l])),n.push(0)}},s.move=function(t){var e=this.lastT(),r=this.dimension;if(!(t<=e||arguments.length!==r+1)){var n=this._state,i=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=t-e,f=u>1e-6?1/u:0;this._time.push(t);for(var h=r;h>0;--h){var p=arguments[h];n.push(a(l[h-1],c[h-1],n[o++]+p)),i.push(p*f)}}},s.idle=function(t){var e=this.lastT();if(!(t=0;--f)n.push(a(l[f],c[f],n[o]+u*i[o])),i.push(0),o+=1}}},{\"binary-search-bounds\":31,\"cubic-hermite\":62}],69:[function(t,e,r){\"use strict\";e.exports=function(t){return new s(t||m,null)};function n(t,e,r,n,i,a){this._color=t,this.key=e,this.value=r,this.left=n,this.right=i,this._count=a}function i(t){return new n(t._color,t.key,t.value,t.left,t.right,t._count)}function a(t,e){return new n(t,e.key,e.value,e.left,e.right,e._count)}function o(t){t._count=1+(t.left?t.left._count:0)+(t.right?t.right._count:0)}function s(t,e){this._compare=t,this.root=e}var l=s.prototype;function c(t,e){var r;if(e.left&&(r=c(t,e.left)))return r;return(r=t(e.key,e.value))||(e.right?c(t,e.right):void 0)}function u(t,e,r,n){if(e(t,n.key)<=0){var i;if(n.left)if(i=u(t,e,r,n.left))return i;if(i=r(n.key,n.value))return i}if(n.right)return u(t,e,r,n.right)}function f(t,e,r,n,i){var a,o=r(t,i.key),s=r(e,i.key);if(o<=0){if(i.left&&(a=f(t,e,r,n,i.left)))return a;if(s>0&&(a=n(i.key,i.value)))return a}if(s>0&&i.right)return f(t,e,r,n,i.right)}function h(t,e){this.tree=t,this._stack=e}Object.defineProperty(l,\"keys\",{get:function(){var t=[];return this.forEach((function(e,r){t.push(e)})),t}}),Object.defineProperty(l,\"values\",{get:function(){var t=[];return this.forEach((function(e,r){t.push(r)})),t}}),Object.defineProperty(l,\"length\",{get:function(){return this.root?this.root._count:0}}),l.insert=function(t,e){for(var r=this._compare,i=this.root,l=[],c=[];i;){var u=r(t,i.key);l.push(i),c.push(u),i=u<=0?i.left:i.right}l.push(new n(0,t,e,null,null,1));for(var f=l.length-2;f>=0;--f){i=l[f];c[f]<=0?l[f]=new n(i._color,i.key,i.value,l[f+1],i.right,i._count+1):l[f]=new n(i._color,i.key,i.value,i.left,l[f+1],i._count+1)}for(f=l.length-1;f>1;--f){var h=l[f-1];i=l[f];if(1===h._color||1===i._color)break;var p=l[f-2];if(p.left===h)if(h.left===i){if(!(d=p.right)||0!==d._color){if(p._color=0,p.left=h.right,h._color=1,h.right=p,l[f-2]=h,l[f-1]=i,o(p),o(h),f>=3)(m=l[f-3]).left===p?m.left=h:m.right=h;break}h._color=1,p.right=a(1,d),p._color=0,f-=1}else{if(!(d=p.right)||0!==d._color){if(h.right=i.left,p._color=0,p.left=i.right,i._color=1,i.left=h,i.right=p,l[f-2]=i,l[f-1]=h,o(p),o(h),o(i),f>=3)(m=l[f-3]).left===p?m.left=i:m.right=i;break}h._color=1,p.right=a(1,d),p._color=0,f-=1}else if(h.right===i){if(!(d=p.left)||0!==d._color){if(p._color=0,p.right=h.left,h._color=1,h.left=p,l[f-2]=h,l[f-1]=i,o(p),o(h),f>=3)(m=l[f-3]).right===p?m.right=h:m.left=h;break}h._color=1,p.left=a(1,d),p._color=0,f-=1}else{var d;if(!(d=p.left)||0!==d._color){var m;if(h.left=i.right,p._color=0,p.right=i.left,i._color=1,i.right=h,i.left=p,l[f-2]=i,l[f-1]=h,o(p),o(h),o(i),f>=3)(m=l[f-3]).right===p?m.right=i:m.left=i;break}h._color=1,p.left=a(1,d),p._color=0,f-=1}}return l[0]._color=1,new s(r,l[0])},l.forEach=function(t,e,r){if(this.root)switch(arguments.length){case 1:return c(t,this.root);case 2:return u(e,this._compare,t,this.root);case 3:if(this._compare(e,r)>=0)return;return f(e,r,this._compare,t,this.root)}},Object.defineProperty(l,\"begin\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.left;return new h(this,t)}}),Object.defineProperty(l,\"end\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.right;return new h(this,t)}}),l.at=function(t){if(t<0)return new h(this,[]);for(var e=this.root,r=[];;){if(r.push(e),e.left){if(t=e.right._count)break;e=e.right}return new h(this,[])},l.ge=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a<=0&&(i=n.length),r=a<=0?r.left:r.right}return n.length=i,new h(this,n)},l.gt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a<0&&(i=n.length),r=a<0?r.left:r.right}return n.length=i,new h(this,n)},l.lt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a>0&&(i=n.length),r=a<=0?r.left:r.right}return n.length=i,new h(this,n)},l.le=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a>=0&&(i=n.length),r=a<0?r.left:r.right}return n.length=i,new h(this,n)},l.find=function(t){for(var e=this._compare,r=this.root,n=[];r;){var i=e(t,r.key);if(n.push(r),0===i)return new h(this,n);r=i<=0?r.left:r.right}return new h(this,[])},l.remove=function(t){var e=this.find(t);return e?e.remove():this},l.get=function(t){for(var e=this._compare,r=this.root;r;){var n=e(t,r.key);if(0===n)return r.value;r=n<=0?r.left:r.right}};var p=h.prototype;function d(t,e){t.key=e.key,t.value=e.value,t.left=e.left,t.right=e.right,t._color=e._color,t._count=e._count}function m(t,e){return te?1:0}Object.defineProperty(p,\"valid\",{get:function(){return this._stack.length>0}}),Object.defineProperty(p,\"node\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),p.clone=function(){return new h(this.tree,this._stack.slice())},p.remove=function(){var t=this._stack;if(0===t.length)return this.tree;var e=new Array(t.length),r=t[t.length-1];e[e.length-1]=new n(r._color,r.key,r.value,r.left,r.right,r._count);for(var l=t.length-2;l>=0;--l){(r=t[l]).left===t[l+1]?e[l]=new n(r._color,r.key,r.value,e[l+1],r.right,r._count):e[l]=new n(r._color,r.key,r.value,r.left,e[l+1],r._count)}if((r=e[e.length-1]).left&&r.right){var c=e.length;for(r=r.left;r.right;)e.push(r),r=r.right;var u=e[c-1];e.push(new n(r._color,u.key,u.value,r.left,r.right,r._count)),e[c-1].key=r.key,e[c-1].value=r.value;for(l=e.length-2;l>=c;--l)r=e[l],e[l]=new n(r._color,r.key,r.value,r.left,e[l+1],r._count);e[c-1].left=e[c]}if(0===(r=e[e.length-1])._color){var f=e[e.length-2];f.left===r?f.left=null:f.right===r&&(f.right=null),e.pop();for(l=0;l=0;--l){if(e=t[l],0===l)return void(e._color=1);if((r=t[l-1]).left===e){if((n=r.right).right&&0===n.right._color){if(s=(n=r.right=i(n)).right=i(n.right),r.right=n.left,n.left=r,n.right=s,n._color=r._color,e._color=1,r._color=1,s._color=1,o(r),o(n),l>1)(c=t[l-2]).left===r?c.left=n:c.right=n;return void(t[l-1]=n)}if(n.left&&0===n.left._color){if(s=(n=r.right=i(n)).left=i(n.left),r.right=s.left,n.left=s.right,s.left=r,s.right=n,s._color=r._color,r._color=1,n._color=1,e._color=1,o(r),o(n),o(s),l>1)(c=t[l-2]).left===r?c.left=s:c.right=s;return void(t[l-1]=s)}if(1===n._color){if(0===r._color)return r._color=1,void(r.right=a(0,n));r.right=a(0,n);continue}n=i(n),r.right=n.left,n.left=r,n._color=r._color,r._color=0,o(r),o(n),l>1&&((c=t[l-2]).left===r?c.left=n:c.right=n),t[l-1]=n,t[l]=r,l+11)(c=t[l-2]).right===r?c.right=n:c.left=n;return void(t[l-1]=n)}if(n.right&&0===n.right._color){if(s=(n=r.left=i(n)).right=i(n.right),r.left=s.right,n.right=s.left,s.right=r,s.left=n,s._color=r._color,r._color=1,n._color=1,e._color=1,o(r),o(n),o(s),l>1)(c=t[l-2]).right===r?c.right=s:c.left=s;return void(t[l-1]=s)}if(1===n._color){if(0===r._color)return r._color=1,void(r.left=a(0,n));r.left=a(0,n);continue}var c;n=i(n),r.left=n.right,n.right=r,n._color=r._color,r._color=0,o(r),o(n),l>1&&((c=t[l-2]).right===r?c.right=n:c.left=n),t[l-1]=n,t[l]=r,l+10)return this._stack[this._stack.length-1].key},enumerable:!0}),Object.defineProperty(p,\"value\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].value},enumerable:!0}),Object.defineProperty(p,\"index\",{get:function(){var t=0,e=this._stack;if(0===e.length){var r=this.tree.root;return r?r._count:0}e[e.length-1].left&&(t=e[e.length-1].left._count);for(var n=e.length-2;n>=0;--n)e[n+1]===e[n].right&&(++t,e[n].left&&(t+=e[n].left._count));return t},enumerable:!0}),p.next=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.right)for(e=e.right;e;)t.push(e),e=e.left;else for(t.pop();t.length>0&&t[t.length-1].right===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(p,\"hasNext\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].right)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].left===t[e])return!0;return!1}}),p.update=function(t){var e=this._stack;if(0===e.length)throw new Error(\"Can't update empty node!\");var r=new Array(e.length),i=e[e.length-1];r[r.length-1]=new n(i._color,i.key,t,i.left,i.right,i._count);for(var a=e.length-2;a>=0;--a)(i=e[a]).left===e[a+1]?r[a]=new n(i._color,i.key,i.value,r[a+1],i.right,i._count):r[a]=new n(i._color,i.key,i.value,i.left,r[a+1],i._count);return new s(this.tree._compare,r[0])},p.prev=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.left)for(e=e.left;e;)t.push(e),e=e.right;else for(t.pop();t.length>0&&t[t.length-1].left===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(p,\"hasPrev\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].left)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].right===t[e])return!0;return!1}})},{}],70:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=new u(t);return r.update(e),r};var n=t(\"./lib/text.js\"),i=t(\"./lib/lines.js\"),a=t(\"./lib/background.js\"),o=t(\"./lib/cube.js\"),s=t(\"./lib/ticks.js\"),l=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);function c(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function u(t){this.gl=t,this.pixelRatio=1,this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.autoTicks=!0,this.tickSpacing=[1,1,1],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickAlign=[\"auto\",\"auto\",\"auto\"],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[10,10,10],this.lastCubeProps={cubeEdges:[0,0,0],axis:[0,0,0]},this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=\"sans-serif\",this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelAlign=[\"auto\",\"auto\",\"auto\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[10,10,10],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[0,0,0],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!1,!1,!1],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._firstInit=!0,this._text=null,this._lines=null,this._background=a(t)}var f=u.prototype;function h(){this.primalOffset=[0,0,0],this.primalMinor=[0,0,0],this.mirrorOffset=[0,0,0],this.mirrorMinor=[0,0,0]}f.update=function(t){function e(e,r,n){if(n in t){var i,a=t[n],o=this[n];(e?Array.isArray(a)&&Array.isArray(a[0]):Array.isArray(a))?this[n]=i=[r(a[0]),r(a[1]),r(a[2])]:this[n]=i=[r(a),r(a),r(a)];for(var s=0;s<3;++s)if(i[s]!==o[s])return!0}return!1}t=t||{};var r,a=e.bind(this,!1,Number),o=e.bind(this,!1,Boolean),l=e.bind(this,!1,String),c=e.bind(this,!0,(function(t){if(Array.isArray(t)){if(3===t.length)return[+t[0],+t[1],+t[2],1];if(4===t.length)return[+t[0],+t[1],+t[2],+t[3]]}return[0,0,0,1]})),u=!1,f=!1;if(\"bounds\"in t)for(var h=t.bounds,p=0;p<2;++p)for(var d=0;d<3;++d)h[p][d]!==this.bounds[p][d]&&(f=!0),this.bounds[p][d]=h[p][d];if(\"ticks\"in t){r=t.ticks,u=!0,this.autoTicks=!1;for(p=0;p<3;++p)this.tickSpacing[p]=0}else a(\"tickSpacing\")&&(this.autoTicks=!0,f=!0);if(this._firstInit&&(\"ticks\"in t||\"tickSpacing\"in t||(this.autoTicks=!0),f=!0,u=!0,this._firstInit=!1),f&&this.autoTicks&&(r=s.create(this.bounds,this.tickSpacing),u=!0),u){for(p=0;p<3;++p)r[p].sort((function(t,e){return t.x-e.x}));s.equal(r,this.ticks)?u=!1:this.ticks=r}o(\"tickEnable\"),l(\"tickFont\")&&(u=!0),a(\"tickSize\"),a(\"tickAngle\"),a(\"tickPad\"),c(\"tickColor\");var m=l(\"labels\");l(\"labelFont\")&&(m=!0),o(\"labelEnable\"),a(\"labelSize\"),a(\"labelPad\"),c(\"labelColor\"),o(\"lineEnable\"),o(\"lineMirror\"),a(\"lineWidth\"),c(\"lineColor\"),o(\"lineTickEnable\"),o(\"lineTickMirror\"),a(\"lineTickLength\"),a(\"lineTickWidth\"),c(\"lineTickColor\"),o(\"gridEnable\"),a(\"gridWidth\"),c(\"gridColor\"),o(\"zeroEnable\"),c(\"zeroLineColor\"),a(\"zeroLineWidth\"),o(\"backgroundEnable\"),c(\"backgroundColor\"),this._text?this._text&&(m||u)&&this._text.update(this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont):this._text=n(this.gl,this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont),this._lines&&u&&(this._lines.dispose(),this._lines=null),this._lines||(this._lines=i(this.gl,this.bounds,this.ticks))};var p=[new h,new h,new h];function d(t,e,r,n,i){for(var a=t.primalOffset,o=t.primalMinor,s=t.mirrorOffset,l=t.mirrorMinor,c=n[e],u=0;u<3;++u)if(e!==u){var f=a,h=s,p=o,d=l;c&1<0?(p[u]=-1,d[u]=0):(p[u]=0,d[u]=1)}}var m=[0,0,0],g={model:l,view:l,projection:l,_ortho:!1};f.isOpaque=function(){return!0},f.isTransparent=function(){return!1},f.drawTransparent=function(t){};var v=[0,0,0],y=[0,0,0],x=[0,0,0];f.draw=function(t){t=t||g;for(var e=this.gl,r=t.model||l,n=t.view||l,i=t.projection||l,a=this.bounds,s=t._ortho||!1,u=o(r,n,i,a,s),f=u.cubeEdges,h=u.axis,b=n[12],_=n[13],w=n[14],T=n[15],k=(s?2:1)*this.pixelRatio*(i[3]*b+i[7]*_+i[11]*w+i[15]*T)/e.drawingBufferHeight,A=0;A<3;++A)this.lastCubeProps.cubeEdges[A]=f[A],this.lastCubeProps.axis[A]=h[A];var M=p;for(A=0;A<3;++A)d(p[A],A,this.bounds,f,h);e=this.gl;var S,E=m;for(A=0;A<3;++A)this.backgroundEnable[A]?E[A]=h[A]:E[A]=0;this._background.draw(r,n,i,a,E,this.backgroundColor),this._lines.bind(r,n,i,this);for(A=0;A<3;++A){var L=[0,0,0];h[A]>0?L[A]=a[1][A]:L[A]=a[0][A];for(var C=0;C<2;++C){var P=(A+1+C)%3,I=(A+1+(1^C))%3;this.gridEnable[P]&&this._lines.drawGrid(P,I,this.bounds,L,this.gridColor[P],this.gridWidth[P]*this.pixelRatio)}for(C=0;C<2;++C){P=(A+1+C)%3,I=(A+1+(1^C))%3;this.zeroEnable[I]&&Math.min(a[0][I],a[1][I])<=0&&Math.max(a[0][I],a[1][I])>=0&&this._lines.drawZero(P,I,this.bounds,L,this.zeroLineColor[I],this.zeroLineWidth[I]*this.pixelRatio)}}for(A=0;A<3;++A){this.lineEnable[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].primalOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio),this.lineMirror[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].mirrorOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio);var O=c(v,M[A].primalMinor),z=c(y,M[A].mirrorMinor),D=this.lineTickLength;for(C=0;C<3;++C){var R=k/r[5*C];O[C]*=D[C]*R,z[C]*=D[C]*R}this.lineTickEnable[A]&&this._lines.drawAxisTicks(A,M[A].primalOffset,O,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio),this.lineTickMirror[A]&&this._lines.drawAxisTicks(A,M[A].mirrorOffset,z,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio)}this._lines.unbind(),this._text.bind(r,n,i,this.pixelRatio);var F,B;function N(t){(B=[0,0,0])[t]=1}function j(t,e,r){var n=(t+1)%3,i=(t+2)%3,a=e[n],o=e[i],s=r[n],l=r[i];a>0&&l>0||a>0&&l<0||a<0&&l>0||a<0&&l<0?N(n):(o>0&&s>0||o>0&&s<0||o<0&&s>0||o<0&&s<0)&&N(i)}for(A=0;A<3;++A){var U=M[A].primalMinor,V=M[A].mirrorMinor,H=c(x,M[A].primalOffset);for(C=0;C<3;++C)this.lineTickEnable[A]&&(H[C]+=k*U[C]*Math.max(this.lineTickLength[C],0)/r[5*C]);var q=[0,0,0];if(q[A]=1,this.tickEnable[A]){-3600===this.tickAngle[A]?(this.tickAngle[A]=0,this.tickAlign[A]=\"auto\"):this.tickAlign[A]=-1,F=1,\"auto\"===(S=[this.tickAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]),B=[0,0,0],j(A,U,V);for(C=0;C<3;++C)H[C]+=k*U[C]*this.tickPad[C]/r[5*C];this._text.drawTicks(A,this.tickSize[A],this.tickAngle[A],H,this.tickColor[A],q,B,S)}if(this.labelEnable[A]){F=0,B=[0,0,0],this.labels[A].length>4&&(N(A),F=1),\"auto\"===(S=[this.labelAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]);for(C=0;C<3;++C)H[C]+=k*U[C]*this.labelPad[C]/r[5*C];H[A]+=.5*(a[0][A]+a[1][A]),this._text.drawLabel(A,this.labelSize[A],this.labelAngle[A],H,this.labelColor[A],[0,0,0],B,S)}}this._text.unbind()},f.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},{\"./lib/background.js\":71,\"./lib/cube.js\":72,\"./lib/lines.js\":73,\"./lib/text.js\":75,\"./lib/ticks.js\":76}],71:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=[],r=[],s=0,l=0;l<3;++l)for(var c=(l+1)%3,u=(l+2)%3,f=[0,0,0],h=[0,0,0],p=-1;p<=1;p+=2){r.push(s,s+2,s+1,s+1,s+2,s+3),f[l]=p,h[l]=p;for(var d=-1;d<=1;d+=2){f[c]=d;for(var m=-1;m<=1;m+=2)f[u]=m,e.push(f[0],f[1],f[2],h[0],h[1],h[2]),s+=1}var g=c;c=u,u=g}var v=n(t,new Float32Array(e)),y=n(t,new Uint16Array(r),t.ELEMENT_ARRAY_BUFFER),x=i(t,[{buffer:v,type:t.FLOAT,size:3,offset:0,stride:24},{buffer:v,type:t.FLOAT,size:3,offset:12,stride:24}],y),b=a(t);return b.attributes.position.location=0,b.attributes.normal.location=1,new o(t,v,x,b)};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"./shaders\").bg;function o(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n}var s=o.prototype;s.draw=function(t,e,r,n,i,a){for(var o=!1,s=0;s<3;++s)o=o||i[s];if(o){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:t,view:e,projection:r,bounds:n,enable:i,colors:a},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),this.vao.unbind(),l.disable(l.POLYGON_OFFSET_FILL)}},s.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders\":74,\"gl-buffer\":78,\"gl-vao\":150}],72:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a,p){i(s,e,t),i(s,r,s);for(var y=0,x=0;x<2;++x){u[2]=a[x][2];for(var b=0;b<2;++b){u[1]=a[b][1];for(var _=0;_<2;++_)u[0]=a[_][0],h(l[y],u,s),y+=1}}var w=-1;for(x=0;x<8;++x){for(var T=l[x][3],k=0;k<3;++k)c[x][k]=l[x][k]/T;p&&(c[x][2]*=-1),T<0&&(w<0||c[x][2]E&&(w|=1<E&&(w|=1<c[x][1])&&(R=x);var F=-1;for(x=0;x<3;++x){if((N=R^1<c[B][0]&&(B=N)}var j=m;j[0]=j[1]=j[2]=0,j[n.log2(F^R)]=R&F,j[n.log2(R^B)]=R&B;var U=7^B;U===w||U===D?(U=7^F,j[n.log2(B^U)]=U&B):j[n.log2(F^U)]=U&F;var V=g,H=w;for(A=0;A<3;++A)V[A]=H&1< HALF_PI) && (b <= ONE_AND_HALF_PI)) ?\\n b - PI :\\n b;\\n}\\n\\nfloat look_horizontal_or_vertical(float a, float ratio) {\\n // ratio controls the ratio between being horizontal to (vertical + horizontal)\\n // if ratio is set to 0.5 then it is 50%, 50%.\\n // when using a higher ratio e.g. 0.75 the result would\\n // likely be more horizontal than vertical.\\n\\n float b = positive_angle(a);\\n\\n return\\n (b < ( ratio) * HALF_PI) ? 0.0 :\\n (b < (2.0 - ratio) * HALF_PI) ? -HALF_PI :\\n (b < (2.0 + ratio) * HALF_PI) ? 0.0 :\\n (b < (4.0 - ratio) * HALF_PI) ? HALF_PI :\\n 0.0;\\n}\\n\\nfloat roundTo(float a, float b) {\\n return float(b * floor((a + 0.5 * b) / b));\\n}\\n\\nfloat look_round_n_directions(float a, int n) {\\n float b = positive_angle(a);\\n float div = TWO_PI / float(n);\\n float c = roundTo(b, div);\\n return look_upwards(c);\\n}\\n\\nfloat applyAlignOption(float rawAngle, float delta) {\\n return\\n (option > 2) ? look_round_n_directions(rawAngle + delta, option) : // option 3-n: round to n directions\\n (option == 2) ? look_horizontal_or_vertical(rawAngle + delta, hv_ratio) : // horizontal or vertical\\n (option == 1) ? rawAngle + delta : // use free angle, and flip to align with one direction of the axis\\n (option == 0) ? look_upwards(rawAngle) : // use free angle, and stay upwards\\n (option ==-1) ? 0.0 : // useful for backward compatibility, all texts remains horizontal\\n rawAngle; // otherwise return back raw input angle\\n}\\n\\nbool isAxisTitle = (axis.x == 0.0) &&\\n (axis.y == 0.0) &&\\n (axis.z == 0.0);\\n\\nvoid main() {\\n //Compute world offset\\n float axisDistance = position.z;\\n vec3 dataPosition = axisDistance * axis + offset;\\n\\n float beta = angle; // i.e. user defined attributes for each tick\\n\\n float axisAngle;\\n float clipAngle;\\n float flip;\\n\\n if (enableAlign) {\\n axisAngle = (isAxisTitle) ? HALF_PI :\\n computeViewAngle(dataPosition, dataPosition + axis);\\n clipAngle = computeViewAngle(dataPosition, dataPosition + alignDir);\\n\\n axisAngle += (sin(axisAngle) < 0.0) ? PI : 0.0;\\n clipAngle += (sin(clipAngle) < 0.0) ? PI : 0.0;\\n\\n flip = (dot(vec2(cos(axisAngle), sin(axisAngle)),\\n vec2(sin(clipAngle),-cos(clipAngle))) > 0.0) ? 1.0 : 0.0;\\n\\n beta += applyAlignOption(clipAngle, flip * PI);\\n }\\n\\n //Compute plane offset\\n vec2 planeCoord = position.xy * pixelScale;\\n\\n mat2 planeXform = scale * mat2(\\n cos(beta), sin(beta),\\n -sin(beta), cos(beta)\\n );\\n\\n vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\\n\\n //Compute clip position\\n vec3 clipPosition = project(dataPosition);\\n\\n //Apply text offset in clip coordinates\\n clipPosition += vec3(viewOffset, 0.0);\\n\\n //Done\\n gl_Position = vec4(clipPosition, 1.0);\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n gl_FragColor = color;\\n}\"]);r.text=function(t){return i(t,s,l,null,[{name:\"position\",type:\"vec3\"}])};var c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec3 normal;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 enable;\\nuniform vec3 bounds[2];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n\\n vec3 signAxis = sign(bounds[1] - bounds[0]);\\n\\n vec3 realNormal = signAxis * normal;\\n\\n if(dot(realNormal, enable) > 0.0) {\\n vec3 minRange = min(bounds[0], bounds[1]);\\n vec3 maxRange = max(bounds[0], bounds[1]);\\n vec3 nPosition = mix(minRange, maxRange, 0.5 * (position + 1.0));\\n gl_Position = projection * view * model * vec4(nPosition, 1.0);\\n } else {\\n gl_Position = vec4(0,0,0,0);\\n }\\n\\n colorChannel = abs(realNormal);\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 colors[3];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n gl_FragColor = colorChannel.x * colors[0] +\\n colorChannel.y * colors[1] +\\n colorChannel.z * colors[2];\\n}\"]);r.bg=function(t){return i(t,c,u,null,[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}])}},{\"gl-shader\":132,glslify:231}],75:[function(t,e,r){(function(r){(function(){\"use strict\";e.exports=function(t,e,r,a,s,l){var u=n(t),f=i(t,[{buffer:u,size:3}]),h=o(t);h.attributes.position.location=0;var p=new c(t,h,u,f);return p.update(e,r,a,s,l),p};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"vectorize-text\"),o=t(\"./shaders\").text,s=window||r.global||{},l=s.__TEXT_CACHE||{};s.__TEXT_CACHE={};function c(t,e,r,n){this.gl=t,this.shader=e,this.buffer=r,this.vao=n,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}var u=c.prototype,f=[0,0];u.bind=function(t,e,r,n){this.vao.bind(),this.shader.bind();var i=this.shader.uniforms;i.model=t,i.view=e,i.projection=r,i.pixelScale=n,f[0]=this.gl.drawingBufferWidth,f[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=f},u.unbind=function(){this.vao.unbind()},u.update=function(t,e,r,n,i){var o=[];function s(t,e,r,n,i,s){var c=l[r];c||(c=l[r]={});var u=c[e];u||(u=c[e]=function(t,e){try{return a(t,e)}catch(e){return console.warn('error vectorizing text:\"'+t+'\" error:',e),{cells:[],positions:[]}}}(e,{triangles:!0,font:r,textAlign:\"center\",textBaseline:\"middle\",lineSpacing:i,styletags:s}));for(var f=(n||12)/12,h=u.positions,p=u.cells,d=0,m=p.length;d=0;--v){var y=h[g[v]];o.push(f*y[0],-f*y[1],t)}}for(var c=[0,0,0],u=[0,0,0],f=[0,0,0],h=[0,0,0],p={breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},d=0;d<3;++d){f[d]=o.length/3|0,s(.5*(t[0][d]+t[1][d]),e[d],r[d],12,1.25,p),h[d]=(o.length/3|0)-f[d],c[d]=o.length/3|0;for(var m=0;m=0&&(i=r.length-n-1);var a=Math.pow(10,i),o=Math.round(t*e*a),s=o+\"\";if(s.indexOf(\"e\")>=0)return s;var l=o/a,c=o%a;o<0?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c|=0);var u=\"\"+l;if(o<0&&(u=\"-\"+u),i){for(var f=\"\"+c;f.length=t[0][i];--o)a.push({x:o*e[i],text:n(e[i],o)});r.push(a)}return r},r.equal=function(t,e){for(var r=0;r<3;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;nr)throw new Error(\"gl-buffer: If resizing buffer, must not specify offset\");return t.bufferSubData(e,a,i),r}function u(t,e){for(var r=n.malloc(t.length,e),i=t.length,a=0;a=0;--n){if(e[n]!==r)return!1;r*=t[n]}return!0}(t.shape,t.stride))0===t.offset&&t.data.length===t.shape[0]?this.length=c(this.gl,this.type,this.length,this.usage,t.data,e):this.length=c(this.gl,this.type,this.length,this.usage,t.data.subarray(t.offset,t.shape[0]),e);else{var s=n.malloc(t.size,r),l=a(s,t.shape);i.assign(l,t),this.length=c(this.gl,this.type,this.length,this.usage,e<0?s:s.subarray(0,t.size),e),n.free(s)}}else if(Array.isArray(t)){var f;f=this.type===this.gl.ELEMENT_ARRAY_BUFFER?u(t,\"uint16\"):u(t,\"float32\"),this.length=c(this.gl,this.type,this.length,this.usage,e<0?f:f.subarray(0,t.length),e),n.free(f)}else if(\"object\"==typeof t&&\"number\"==typeof t.length)this.length=c(this.gl,this.type,this.length,this.usage,t,e);else{if(\"number\"!=typeof t&&void 0!==t)throw new Error(\"gl-buffer: Invalid data type\");if(e>=0)throw new Error(\"gl-buffer: Cannot specify offset when resizing buffer\");(t|=0)<=0&&(t=1),this.gl.bufferData(this.type,0|t,this.usage),this.length=t}},e.exports=function(t,e,r,n){if(r=r||t.ARRAY_BUFFER,n=n||t.DYNAMIC_DRAW,r!==t.ARRAY_BUFFER&&r!==t.ELEMENT_ARRAY_BUFFER)throw new Error(\"gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER\");if(n!==t.DYNAMIC_DRAW&&n!==t.STATIC_DRAW&&n!==t.STREAM_DRAW)throw new Error(\"gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW\");var i=t.createBuffer(),a=new s(t,r,i,0,n);return a.update(e),a}},{ndarray:259,\"ndarray-ops\":254,\"typedarray-pool\":308}],79:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\");e.exports=function(t,e){var r=t.positions,i=t.vectors,a={positions:[],vertexIntensity:[],vertexIntensityBounds:t.vertexIntensityBounds,vectors:[],cells:[],coneOffset:t.coneOffset,colormap:t.colormap};if(0===t.positions.length)return e&&(e[0]=[0,0,0],e[1]=[0,0,0]),a;for(var o=0,s=1/0,l=-1/0,c=1/0,u=-1/0,f=1/0,h=-1/0,p=null,d=null,m=[],g=1/0,v=!1,y=0;yo&&(o=n.length(b)),y){var _=2*n.distance(p,x)/(n.length(d)+n.length(b));_?(g=Math.min(g,_),v=!1):v=!0}v||(p=x,d=b),m.push(b)}var w=[s,c,f],T=[l,u,h];e&&(e[0]=w,e[1]=T),0===o&&(o=1);var k=1/o;isFinite(g)||(g=1),a.vectorScale=g;var A=t.coneSize||.5;t.absoluteConeSize&&(A=t.absoluteConeSize*k),a.coneScale=A;y=0;for(var M=0;y=1},p.isTransparent=function(){return this.opacity<1},p.pickSlots=1,p.setPickBase=function(t){this.pickId=t},p.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),\"opacity\"in t&&(this.opacity=t.opacity),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),void 0!==t.tubeScale&&(this.tubeScale=t.tubeScale),void 0!==t.vectorScale&&(this.vectorScale=t.vectorScale),void 0!==t.coneScale&&(this.coneScale=t.coneScale),void 0!==t.coneOffset&&(this.coneOffset=t.coneOffset),t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=u({colormap:t,nshades:256,format:\"rgba\"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var i=e[n],a=0;a<3;++a)r[4*n+a]=i[a];r[4*n+3]=255*i[3]}return c(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,i=t.vectors;if(n&&r&&i){var a=[],o=[],s=[],l=[],f=[];this.cells=r,this.positions=n,this.vectors=i;var h=t.meshColor||[1,1,1,1],p=t.vertexIntensity,d=1/0,m=-1/0;if(p)if(t.vertexIntensityBounds)d=+t.vertexIntensityBounds[0],m=+t.vertexIntensityBounds[1];else for(var g=0;g0){var m=this.triShader;m.bind(),m.uniforms=c,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},p.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||f,n=t.view||f,i=t.projection||f,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:i,clipBounds:a,tubeScale:this.tubeScale,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind())},p.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3),i={position:n,dataCoordinate:n,index:Math.floor(r[1]/48)};return\"cone\"===this.traceType?i.index=Math.floor(r[1]/48):\"streamtube\"===this.traceType&&(i.intensity=this.intensity[r[1]],i.velocity=this.vectors[r[1]].slice(0,3),i.divergence=this.vectors[r[1]][3],i.index=e),i},p.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleIds.dispose()},e.exports=function(t,e,r){var n=r.shaders;1===arguments.length&&(t=(e=t).gl);var s=d(t,n),l=m(t,n),u=o(t,c(new Uint8Array([255,255,255,255]),[1,1,4]));u.generateMipmap(),u.minFilter=t.LINEAR_MIPMAP_LINEAR,u.magFilter=t.LINEAR;var f=i(t),p=i(t),g=i(t),v=i(t),y=i(t),x=a(t,[{buffer:f,type:t.FLOAT,size:4},{buffer:y,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:g,type:t.FLOAT,size:4},{buffer:v,type:t.FLOAT,size:2},{buffer:p,type:t.FLOAT,size:4}]),b=new h(t,u,s,l,f,p,y,g,v,x,r.traceType||\"cone\");return b.update(e),b}},{colormap:53,\"gl-buffer\":78,\"gl-mat4/invert\":98,\"gl-mat4/multiply\":100,\"gl-shader\":132,\"gl-texture2d\":146,\"gl-vao\":150,ndarray:259}],81:[function(t,e,r){var n=t(\"glslify\"),i=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n // Return up-vector for only-z vector.\\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\\n // Assign z = 0, x = -b, y = a:\\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n return normalize(vec3(-v.y, v.x, 0.0));\\n } else {\\n return normalize(vec3(0.0, v.z, -v.y));\\n }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n// segment + 0 top vertex\\n// segment + 1 perimeter vertex a+1\\n// segment + 2 perimeter vertex a\\n// segment + 3 center base vertex\\n// segment + 4 perimeter vertex a\\n// segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n const float segmentCount = 8.0;\\n\\n float index = rawIndex - floor(rawIndex /\\n (segmentCount * 6.0)) *\\n (segmentCount * 6.0);\\n\\n float segment = floor(0.001 + index/6.0);\\n float segmentIndex = index - (segment*6.0);\\n\\n normal = -normalize(d);\\n\\n if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n return mix(vec3(0.0), -d, coneOffset);\\n }\\n\\n float nextAngle = (\\n (segmentIndex > 0.99 && segmentIndex < 1.01) ||\\n (segmentIndex > 4.99 && segmentIndex < 5.01)\\n ) ? 1.0 : 0.0;\\n float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n vec3 v2 = v1 - d;\\n\\n vec3 u = getOrthogonalVector(d);\\n vec3 v = normalize(cross(u, d));\\n\\n vec3 x = u * cos(angle) * length(d)*0.25;\\n vec3 y = v * sin(angle) * length(d)*0.25;\\n vec3 v3 = v2 + x + y;\\n if (segmentIndex < 3.0) {\\n vec3 tx = u * sin(angle);\\n vec3 ty = v * -cos(angle);\\n vec3 tangent = tx + ty;\\n normal = normalize(cross(v3 - v1, tangent));\\n }\\n\\n if (segmentIndex == 0.0) {\\n return mix(d, vec3(0.0), coneOffset);\\n }\\n return v3;\\n}\\n\\nattribute vec3 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\n\\nuniform float vectorScale, coneScale, coneOffset;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 eyePosition, lightPosition;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n // Scale the vector magnitude to stay constant with\\n // model & view changes.\\n vec3 normal;\\n vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\\n vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n //Lighting geometry parameters\\n vec4 cameraCoordinate = view * conePosition;\\n cameraCoordinate.xyz /= cameraCoordinate.w;\\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n // vec4 m_position = model * vec4(conePosition, 1.0);\\n vec4 t_position = view * conePosition;\\n gl_Position = projection * t_position;\\n\\n f_color = color;\\n f_data = conePosition.xyz;\\n f_position = position.xyz;\\n f_uv = uv;\\n}\\n\"]),a=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n float NdotH = max(x, 0.0001);\\n float cos2Alpha = NdotH * NdotH;\\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n float roughness2 = roughness * roughness;\\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n vec3 lightDirection,\\n vec3 viewDirection,\\n vec3 surfaceNormal,\\n float roughness,\\n float fresnel) {\\n\\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n //Half angle vector\\n vec3 H = normalize(lightDirection + viewDirection);\\n\\n //Geometric term\\n float NdotH = max(dot(surfaceNormal, H), 0.0);\\n float VdotH = max(dot(viewDirection, H), 0.000001);\\n float LdotH = max(dot(lightDirection, H), 0.000001);\\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n float G = min(1.0, min(G1, G2));\\n \\n //Distribution term\\n float D = beckmannDistribution(NdotH, roughness);\\n\\n //Fresnel term\\n float F = pow(1.0 - VdotN, fresnel);\\n\\n //Multiply terms and done\\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n vec3 N = normalize(f_normal);\\n vec3 L = normalize(f_lightDirection);\\n vec3 V = normalize(f_eyeDirection);\\n\\n if(gl_FrontFacing) {\\n N = -N;\\n }\\n\\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\\n\\n gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n // Return up-vector for only-z vector.\\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\\n // Assign z = 0, x = -b, y = a:\\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n return normalize(vec3(-v.y, v.x, 0.0));\\n } else {\\n return normalize(vec3(0.0, v.z, -v.y));\\n }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n// segment + 0 top vertex\\n// segment + 1 perimeter vertex a+1\\n// segment + 2 perimeter vertex a\\n// segment + 3 center base vertex\\n// segment + 4 perimeter vertex a\\n// segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n const float segmentCount = 8.0;\\n\\n float index = rawIndex - floor(rawIndex /\\n (segmentCount * 6.0)) *\\n (segmentCount * 6.0);\\n\\n float segment = floor(0.001 + index/6.0);\\n float segmentIndex = index - (segment*6.0);\\n\\n normal = -normalize(d);\\n\\n if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n return mix(vec3(0.0), -d, coneOffset);\\n }\\n\\n float nextAngle = (\\n (segmentIndex > 0.99 && segmentIndex < 1.01) ||\\n (segmentIndex > 4.99 && segmentIndex < 5.01)\\n ) ? 1.0 : 0.0;\\n float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n vec3 v2 = v1 - d;\\n\\n vec3 u = getOrthogonalVector(d);\\n vec3 v = normalize(cross(u, d));\\n\\n vec3 x = u * cos(angle) * length(d)*0.25;\\n vec3 y = v * sin(angle) * length(d)*0.25;\\n vec3 v3 = v2 + x + y;\\n if (segmentIndex < 3.0) {\\n vec3 tx = u * sin(angle);\\n vec3 ty = v * -cos(angle);\\n vec3 tangent = tx + ty;\\n normal = normalize(cross(v3 - v1, tangent));\\n }\\n\\n if (segmentIndex == 0.0) {\\n return mix(d, vec3(0.0), coneOffset);\\n }\\n return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform float vectorScale, coneScale, coneOffset;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n vec3 normal;\\n vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector.xyz), position.w, coneOffset, normal);\\n vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n gl_Position = projection * view * conePosition;\\n f_id = id;\\n f_position = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:\"position\",type:\"vec4\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec3\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec3\"}]}},{glslify:231}],82:[function(t,e,r){e.exports={0:\"NONE\",1:\"ONE\",2:\"LINE_LOOP\",3:\"LINE_STRIP\",4:\"TRIANGLES\",5:\"TRIANGLE_STRIP\",6:\"TRIANGLE_FAN\",256:\"DEPTH_BUFFER_BIT\",512:\"NEVER\",513:\"LESS\",514:\"EQUAL\",515:\"LEQUAL\",516:\"GREATER\",517:\"NOTEQUAL\",518:\"GEQUAL\",519:\"ALWAYS\",768:\"SRC_COLOR\",769:\"ONE_MINUS_SRC_COLOR\",770:\"SRC_ALPHA\",771:\"ONE_MINUS_SRC_ALPHA\",772:\"DST_ALPHA\",773:\"ONE_MINUS_DST_ALPHA\",774:\"DST_COLOR\",775:\"ONE_MINUS_DST_COLOR\",776:\"SRC_ALPHA_SATURATE\",1024:\"STENCIL_BUFFER_BIT\",1028:\"FRONT\",1029:\"BACK\",1032:\"FRONT_AND_BACK\",1280:\"INVALID_ENUM\",1281:\"INVALID_VALUE\",1282:\"INVALID_OPERATION\",1285:\"OUT_OF_MEMORY\",1286:\"INVALID_FRAMEBUFFER_OPERATION\",2304:\"CW\",2305:\"CCW\",2849:\"LINE_WIDTH\",2884:\"CULL_FACE\",2885:\"CULL_FACE_MODE\",2886:\"FRONT_FACE\",2928:\"DEPTH_RANGE\",2929:\"DEPTH_TEST\",2930:\"DEPTH_WRITEMASK\",2931:\"DEPTH_CLEAR_VALUE\",2932:\"DEPTH_FUNC\",2960:\"STENCIL_TEST\",2961:\"STENCIL_CLEAR_VALUE\",2962:\"STENCIL_FUNC\",2963:\"STENCIL_VALUE_MASK\",2964:\"STENCIL_FAIL\",2965:\"STENCIL_PASS_DEPTH_FAIL\",2966:\"STENCIL_PASS_DEPTH_PASS\",2967:\"STENCIL_REF\",2968:\"STENCIL_WRITEMASK\",2978:\"VIEWPORT\",3024:\"DITHER\",3042:\"BLEND\",3088:\"SCISSOR_BOX\",3089:\"SCISSOR_TEST\",3106:\"COLOR_CLEAR_VALUE\",3107:\"COLOR_WRITEMASK\",3317:\"UNPACK_ALIGNMENT\",3333:\"PACK_ALIGNMENT\",3379:\"MAX_TEXTURE_SIZE\",3386:\"MAX_VIEWPORT_DIMS\",3408:\"SUBPIXEL_BITS\",3410:\"RED_BITS\",3411:\"GREEN_BITS\",3412:\"BLUE_BITS\",3413:\"ALPHA_BITS\",3414:\"DEPTH_BITS\",3415:\"STENCIL_BITS\",3553:\"TEXTURE_2D\",4352:\"DONT_CARE\",4353:\"FASTEST\",4354:\"NICEST\",5120:\"BYTE\",5121:\"UNSIGNED_BYTE\",5122:\"SHORT\",5123:\"UNSIGNED_SHORT\",5124:\"INT\",5125:\"UNSIGNED_INT\",5126:\"FLOAT\",5386:\"INVERT\",5890:\"TEXTURE\",6401:\"STENCIL_INDEX\",6402:\"DEPTH_COMPONENT\",6406:\"ALPHA\",6407:\"RGB\",6408:\"RGBA\",6409:\"LUMINANCE\",6410:\"LUMINANCE_ALPHA\",7680:\"KEEP\",7681:\"REPLACE\",7682:\"INCR\",7683:\"DECR\",7936:\"VENDOR\",7937:\"RENDERER\",7938:\"VERSION\",9728:\"NEAREST\",9729:\"LINEAR\",9984:\"NEAREST_MIPMAP_NEAREST\",9985:\"LINEAR_MIPMAP_NEAREST\",9986:\"NEAREST_MIPMAP_LINEAR\",9987:\"LINEAR_MIPMAP_LINEAR\",10240:\"TEXTURE_MAG_FILTER\",10241:\"TEXTURE_MIN_FILTER\",10242:\"TEXTURE_WRAP_S\",10243:\"TEXTURE_WRAP_T\",10497:\"REPEAT\",10752:\"POLYGON_OFFSET_UNITS\",16384:\"COLOR_BUFFER_BIT\",32769:\"CONSTANT_COLOR\",32770:\"ONE_MINUS_CONSTANT_COLOR\",32771:\"CONSTANT_ALPHA\",32772:\"ONE_MINUS_CONSTANT_ALPHA\",32773:\"BLEND_COLOR\",32774:\"FUNC_ADD\",32777:\"BLEND_EQUATION_RGB\",32778:\"FUNC_SUBTRACT\",32779:\"FUNC_REVERSE_SUBTRACT\",32819:\"UNSIGNED_SHORT_4_4_4_4\",32820:\"UNSIGNED_SHORT_5_5_5_1\",32823:\"POLYGON_OFFSET_FILL\",32824:\"POLYGON_OFFSET_FACTOR\",32854:\"RGBA4\",32855:\"RGB5_A1\",32873:\"TEXTURE_BINDING_2D\",32926:\"SAMPLE_ALPHA_TO_COVERAGE\",32928:\"SAMPLE_COVERAGE\",32936:\"SAMPLE_BUFFERS\",32937:\"SAMPLES\",32938:\"SAMPLE_COVERAGE_VALUE\",32939:\"SAMPLE_COVERAGE_INVERT\",32968:\"BLEND_DST_RGB\",32969:\"BLEND_SRC_RGB\",32970:\"BLEND_DST_ALPHA\",32971:\"BLEND_SRC_ALPHA\",33071:\"CLAMP_TO_EDGE\",33170:\"GENERATE_MIPMAP_HINT\",33189:\"DEPTH_COMPONENT16\",33306:\"DEPTH_STENCIL_ATTACHMENT\",33635:\"UNSIGNED_SHORT_5_6_5\",33648:\"MIRRORED_REPEAT\",33901:\"ALIASED_POINT_SIZE_RANGE\",33902:\"ALIASED_LINE_WIDTH_RANGE\",33984:\"TEXTURE0\",33985:\"TEXTURE1\",33986:\"TEXTURE2\",33987:\"TEXTURE3\",33988:\"TEXTURE4\",33989:\"TEXTURE5\",33990:\"TEXTURE6\",33991:\"TEXTURE7\",33992:\"TEXTURE8\",33993:\"TEXTURE9\",33994:\"TEXTURE10\",33995:\"TEXTURE11\",33996:\"TEXTURE12\",33997:\"TEXTURE13\",33998:\"TEXTURE14\",33999:\"TEXTURE15\",34e3:\"TEXTURE16\",34001:\"TEXTURE17\",34002:\"TEXTURE18\",34003:\"TEXTURE19\",34004:\"TEXTURE20\",34005:\"TEXTURE21\",34006:\"TEXTURE22\",34007:\"TEXTURE23\",34008:\"TEXTURE24\",34009:\"TEXTURE25\",34010:\"TEXTURE26\",34011:\"TEXTURE27\",34012:\"TEXTURE28\",34013:\"TEXTURE29\",34014:\"TEXTURE30\",34015:\"TEXTURE31\",34016:\"ACTIVE_TEXTURE\",34024:\"MAX_RENDERBUFFER_SIZE\",34041:\"DEPTH_STENCIL\",34055:\"INCR_WRAP\",34056:\"DECR_WRAP\",34067:\"TEXTURE_CUBE_MAP\",34068:\"TEXTURE_BINDING_CUBE_MAP\",34069:\"TEXTURE_CUBE_MAP_POSITIVE_X\",34070:\"TEXTURE_CUBE_MAP_NEGATIVE_X\",34071:\"TEXTURE_CUBE_MAP_POSITIVE_Y\",34072:\"TEXTURE_CUBE_MAP_NEGATIVE_Y\",34073:\"TEXTURE_CUBE_MAP_POSITIVE_Z\",34074:\"TEXTURE_CUBE_MAP_NEGATIVE_Z\",34076:\"MAX_CUBE_MAP_TEXTURE_SIZE\",34338:\"VERTEX_ATTRIB_ARRAY_ENABLED\",34339:\"VERTEX_ATTRIB_ARRAY_SIZE\",34340:\"VERTEX_ATTRIB_ARRAY_STRIDE\",34341:\"VERTEX_ATTRIB_ARRAY_TYPE\",34342:\"CURRENT_VERTEX_ATTRIB\",34373:\"VERTEX_ATTRIB_ARRAY_POINTER\",34466:\"NUM_COMPRESSED_TEXTURE_FORMATS\",34467:\"COMPRESSED_TEXTURE_FORMATS\",34660:\"BUFFER_SIZE\",34661:\"BUFFER_USAGE\",34816:\"STENCIL_BACK_FUNC\",34817:\"STENCIL_BACK_FAIL\",34818:\"STENCIL_BACK_PASS_DEPTH_FAIL\",34819:\"STENCIL_BACK_PASS_DEPTH_PASS\",34877:\"BLEND_EQUATION_ALPHA\",34921:\"MAX_VERTEX_ATTRIBS\",34922:\"VERTEX_ATTRIB_ARRAY_NORMALIZED\",34930:\"MAX_TEXTURE_IMAGE_UNITS\",34962:\"ARRAY_BUFFER\",34963:\"ELEMENT_ARRAY_BUFFER\",34964:\"ARRAY_BUFFER_BINDING\",34965:\"ELEMENT_ARRAY_BUFFER_BINDING\",34975:\"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING\",35040:\"STREAM_DRAW\",35044:\"STATIC_DRAW\",35048:\"DYNAMIC_DRAW\",35632:\"FRAGMENT_SHADER\",35633:\"VERTEX_SHADER\",35660:\"MAX_VERTEX_TEXTURE_IMAGE_UNITS\",35661:\"MAX_COMBINED_TEXTURE_IMAGE_UNITS\",35663:\"SHADER_TYPE\",35664:\"FLOAT_VEC2\",35665:\"FLOAT_VEC3\",35666:\"FLOAT_VEC4\",35667:\"INT_VEC2\",35668:\"INT_VEC3\",35669:\"INT_VEC4\",35670:\"BOOL\",35671:\"BOOL_VEC2\",35672:\"BOOL_VEC3\",35673:\"BOOL_VEC4\",35674:\"FLOAT_MAT2\",35675:\"FLOAT_MAT3\",35676:\"FLOAT_MAT4\",35678:\"SAMPLER_2D\",35680:\"SAMPLER_CUBE\",35712:\"DELETE_STATUS\",35713:\"COMPILE_STATUS\",35714:\"LINK_STATUS\",35715:\"VALIDATE_STATUS\",35716:\"INFO_LOG_LENGTH\",35717:\"ATTACHED_SHADERS\",35718:\"ACTIVE_UNIFORMS\",35719:\"ACTIVE_UNIFORM_MAX_LENGTH\",35720:\"SHADER_SOURCE_LENGTH\",35721:\"ACTIVE_ATTRIBUTES\",35722:\"ACTIVE_ATTRIBUTE_MAX_LENGTH\",35724:\"SHADING_LANGUAGE_VERSION\",35725:\"CURRENT_PROGRAM\",36003:\"STENCIL_BACK_REF\",36004:\"STENCIL_BACK_VALUE_MASK\",36005:\"STENCIL_BACK_WRITEMASK\",36006:\"FRAMEBUFFER_BINDING\",36007:\"RENDERBUFFER_BINDING\",36048:\"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE\",36049:\"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME\",36050:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL\",36051:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE\",36053:\"FRAMEBUFFER_COMPLETE\",36054:\"FRAMEBUFFER_INCOMPLETE_ATTACHMENT\",36055:\"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT\",36057:\"FRAMEBUFFER_INCOMPLETE_DIMENSIONS\",36061:\"FRAMEBUFFER_UNSUPPORTED\",36064:\"COLOR_ATTACHMENT0\",36096:\"DEPTH_ATTACHMENT\",36128:\"STENCIL_ATTACHMENT\",36160:\"FRAMEBUFFER\",36161:\"RENDERBUFFER\",36162:\"RENDERBUFFER_WIDTH\",36163:\"RENDERBUFFER_HEIGHT\",36164:\"RENDERBUFFER_INTERNAL_FORMAT\",36168:\"STENCIL_INDEX8\",36176:\"RENDERBUFFER_RED_SIZE\",36177:\"RENDERBUFFER_GREEN_SIZE\",36178:\"RENDERBUFFER_BLUE_SIZE\",36179:\"RENDERBUFFER_ALPHA_SIZE\",36180:\"RENDERBUFFER_DEPTH_SIZE\",36181:\"RENDERBUFFER_STENCIL_SIZE\",36194:\"RGB565\",36336:\"LOW_FLOAT\",36337:\"MEDIUM_FLOAT\",36338:\"HIGH_FLOAT\",36339:\"LOW_INT\",36340:\"MEDIUM_INT\",36341:\"HIGH_INT\",36346:\"SHADER_COMPILER\",36347:\"MAX_VERTEX_UNIFORM_VECTORS\",36348:\"MAX_VARYING_VECTORS\",36349:\"MAX_FRAGMENT_UNIFORM_VECTORS\",37440:\"UNPACK_FLIP_Y_WEBGL\",37441:\"UNPACK_PREMULTIPLY_ALPHA_WEBGL\",37442:\"CONTEXT_LOST_WEBGL\",37443:\"UNPACK_COLORSPACE_CONVERSION_WEBGL\",37444:\"BROWSER_DEFAULT_WEBGL\"}},{}],83:[function(t,e,r){var n=t(\"./1.0/numbers\");e.exports=function(t){return n[t]}},{\"./1.0/numbers\":82}],84:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),o=i(e,[{buffer:r,type:e.FLOAT,size:3,offset:0,stride:40},{buffer:r,type:e.FLOAT,size:4,offset:12,stride:40},{buffer:r,type:e.FLOAT,size:3,offset:28,stride:40}]),l=a(e);l.attributes.position.location=0,l.attributes.color.location=1,l.attributes.offset.location=2;var c=new s(e,r,o,l);return c.update(t),c};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"./shaders/index\"),o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.shader=n,this.buffer=e,this.vao=r,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1,this.hasAlpha=!1}var l=s.prototype;function c(t,e){for(var r=0;r<3;++r)t[0][r]=Math.min(t[0][r],e[r]),t[1][r]=Math.max(t[1][r],e[r])}l.isOpaque=function(){return!this.hasAlpha},l.isTransparent=function(){return this.hasAlpha},l.drawTransparent=l.draw=function(t){var e=this.gl,r=this.shader.uniforms;this.shader.bind();var n=r.view=t.view||o,i=r.projection=t.projection||o;r.model=t.model||o,r.clipBounds=this.clipBounds,r.opacity=this.opacity;var a=n[12],s=n[13],l=n[14],c=n[15],u=(t._ortho||!1?2:1)*this.pixelRatio*(i[3]*a+i[7]*s+i[11]*l+i[15]*c)/e.drawingBufferHeight;this.vao.bind();for(var f=0;f<3;++f)e.lineWidth(this.lineWidth[f]*this.pixelRatio),r.capSize=this.capSize[f]*u,this.lineCount[f]&&e.drawArrays(e.LINES,this.lineOffset[f],this.lineCount[f]);this.vao.unbind()};var u=function(){for(var t=new Array(3),e=0;e<3;++e){for(var r=[],n=1;n<=2;++n)for(var i=-1;i<=1;i+=2){var a=[0,0,0];a[(n+e)%3]=i,r.push(a)}t[e]=r}return t}();function f(t,e,r,n){for(var i=u[n],a=0;a0)(m=u.slice())[s]+=p[1][s],i.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,m[0],m[1],m[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,m),o+=2+f(i,m,d,s)}}this.lineCount[s]=o-this.lineOffset[s]}this.buffer.update(i)}},l.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},{\"./shaders/index\":85,\"gl-buffer\":78,\"gl-vao\":150}],85:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, offset;\\nattribute vec4 color;\\nuniform mat4 model, view, projection;\\nuniform float capSize;\\nvarying vec4 fragColor;\\nvarying vec3 fragPosition;\\n\\nvoid main() {\\n vec4 worldPosition = model * vec4(position, 1.0);\\n worldPosition = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\\n gl_Position = projection * view * worldPosition;\\n fragColor = color;\\n fragPosition = position;\\n}\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float opacity;\\nvarying vec3 fragPosition;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n if (\\n outOfRange(clipBounds[0], clipBounds[1], fragPosition) ||\\n fragColor.a * opacity == 0.\\n ) discard;\\n\\n gl_FragColor = opacity * fragColor;\\n}\"]);e.exports=function(t){return i(t,a,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"offset\",type:\"vec3\"}])}},{\"gl-shader\":132,glslify:231}],86:[function(t,e,r){\"use strict\";var n=t(\"gl-texture2d\");e.exports=function(t,e,r,n){i||(i=t.FRAMEBUFFER_UNSUPPORTED,a=t.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,o=t.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,s=t.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var c=t.getExtension(\"WEBGL_draw_buffers\");!l&&c&&function(t,e){var r=t.getParameter(e.MAX_COLOR_ATTACHMENTS_WEBGL);l=new Array(r+1);for(var n=0;n<=r;++n){for(var i=new Array(r),a=0;au||r<0||r>u)throw new Error(\"gl-fbo: Parameters are too large for FBO\");var f=1;if(\"color\"in(n=n||{})){if((f=Math.max(0|n.color,0))<0)throw new Error(\"gl-fbo: Must specify a nonnegative number of colors\");if(f>1){if(!c)throw new Error(\"gl-fbo: Multiple draw buffer extension not supported\");if(f>t.getParameter(c.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error(\"gl-fbo: Context does not support \"+f+\" draw buffers\")}}var h=t.UNSIGNED_BYTE,p=t.getExtension(\"OES_texture_float\");if(n.float&&f>0){if(!p)throw new Error(\"gl-fbo: Context does not support floating point textures\");h=t.FLOAT}else n.preferFloat&&f>0&&p&&(h=t.FLOAT);var m=!0;\"depth\"in n&&(m=!!n.depth);var g=!1;\"stencil\"in n&&(g=!!n.stencil);return new d(t,e,r,h,f,m,g,c)};var i,a,o,s,l=null;function c(t){return[t.getParameter(t.FRAMEBUFFER_BINDING),t.getParameter(t.RENDERBUFFER_BINDING),t.getParameter(t.TEXTURE_BINDING_2D)]}function u(t,e){t.bindFramebuffer(t.FRAMEBUFFER,e[0]),t.bindRenderbuffer(t.RENDERBUFFER,e[1]),t.bindTexture(t.TEXTURE_2D,e[2])}function f(t){switch(t){case i:throw new Error(\"gl-fbo: Framebuffer unsupported\");case a:throw new Error(\"gl-fbo: Framebuffer incomplete attachment\");case o:throw new Error(\"gl-fbo: Framebuffer incomplete dimensions\");case s:throw new Error(\"gl-fbo: Framebuffer incomplete missing attachment\");default:throw new Error(\"gl-fbo: Framebuffer failed for unspecified reason\")}}function h(t,e,r,i,a,o){if(!i)return null;var s=n(t,e,r,a,i);return s.magFilter=t.NEAREST,s.minFilter=t.NEAREST,s.mipSamples=1,s.bind(),t.framebufferTexture2D(t.FRAMEBUFFER,o,t.TEXTURE_2D,s.handle,0),s}function p(t,e,r,n,i){var a=t.createRenderbuffer();return t.bindRenderbuffer(t.RENDERBUFFER,a),t.renderbufferStorage(t.RENDERBUFFER,n,e,r),t.framebufferRenderbuffer(t.FRAMEBUFFER,i,t.RENDERBUFFER,a),a}function d(t,e,r,n,i,a,o,s){this.gl=t,this._shape=[0|e,0|r],this._destroyed=!1,this._ext=s,this.color=new Array(i);for(var d=0;d1&&s.drawBuffersWEBGL(l[o]);var y=r.getExtension(\"WEBGL_depth_texture\");y?d?t.depth=h(r,i,a,y.UNSIGNED_INT_24_8_WEBGL,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):m&&(t.depth=h(r,i,a,r.UNSIGNED_SHORT,r.DEPTH_COMPONENT,r.DEPTH_ATTACHMENT)):m&&d?t._depth_rb=p(r,i,a,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):m?t._depth_rb=p(r,i,a,r.DEPTH_COMPONENT16,r.DEPTH_ATTACHMENT):d&&(t._depth_rb=p(r,i,a,r.STENCIL_INDEX,r.STENCIL_ATTACHMENT));var x=r.checkFramebufferStatus(r.FRAMEBUFFER);if(x!==r.FRAMEBUFFER_COMPLETE){t._destroyed=!0,r.bindFramebuffer(r.FRAMEBUFFER,null),r.deleteFramebuffer(t.handle),t.handle=null,t.depth&&(t.depth.dispose(),t.depth=null),t._depth_rb&&(r.deleteRenderbuffer(t._depth_rb),t._depth_rb=null);for(v=0;vi||r<0||r>i)throw new Error(\"gl-fbo: Can't resize FBO, invalid dimensions\");t._shape[0]=e,t._shape[1]=r;for(var a=c(n),o=0;o>8*p&255;this.pickOffset=r,i.bind();var d=i.uniforms;d.viewTransform=t,d.pickOffset=e,d.shape=this.shape;var m=i.attributes;return this.positionBuffer.bind(),m.position.pointer(),this.weightBuffer.bind(),m.weight.pointer(s.UNSIGNED_BYTE,!1),this.idBuffer.bind(),m.pickId.pointer(s.UNSIGNED_BYTE,!1),s.drawArrays(s.TRIANGLES,0,o),r+this.shape[0]*this.shape[1]}}}(),f.pick=function(t,e,r){var n=this.pickOffset,i=this.shape[0]*this.shape[1];if(r=n+i)return null;var a=r-n,o=this.xData,s=this.yData;return{object:this,pointId:a,dataCoord:[o[a%this.shape[0]],s[a/this.shape[0]|0]]}},f.update=function(t){var e=(t=t||{}).shape||[0,0],r=t.x||i(e[0]),o=t.y||i(e[1]),s=t.z||new Float32Array(e[0]*e[1]),l=!1!==t.zsmooth;this.xData=r,this.yData=o;var c,u,f,p,d=t.colorLevels||[0],m=t.colorValues||[0,0,0,1],g=d.length,v=this.bounds;l?(c=v[0]=r[0],u=v[1]=o[0],f=v[2]=r[r.length-1],p=v[3]=o[o.length-1]):(c=v[0]=r[0]+(r[1]-r[0])/2,u=v[1]=o[0]+(o[1]-o[0])/2,f=v[2]=r[r.length-1]+(r[r.length-1]-r[r.length-2])/2,p=v[3]=o[o.length-1]+(o[o.length-1]-o[o.length-2])/2);var y=1/(f-c),x=1/(p-u),b=e[0],_=e[1];this.shape=[b,_];var w=(l?(b-1)*(_-1):b*_)*(h.length>>>1);this.numVertices=w;for(var T=a.mallocUint8(4*w),k=a.mallocFloat32(2*w),A=a.mallocUint8(2*w),M=a.mallocUint32(w),S=0,E=l?b-1:b,L=l?_-1:_,C=0;C max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform sampler2D dashTexture;\\nuniform float dashScale;\\nuniform float opacity;\\n\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n if (\\n outOfRange(clipBounds[0], clipBounds[1], worldPosition) ||\\n fragColor.a * opacity == 0.\\n ) discard;\\n\\n float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\\n if(dashWeight < 0.5) {\\n discard;\\n }\\n gl_FragColor = fragColor * opacity;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\n#define FLOAT_MAX 1.70141184e38\\n#define FLOAT_MIN 1.17549435e-38\\n\\n// https://github.com/mikolalysenko/glsl-read-float/blob/master/index.glsl\\nvec4 packFloat(float v) {\\n float av = abs(v);\\n\\n //Handle special cases\\n if(av < FLOAT_MIN) {\\n return vec4(0.0, 0.0, 0.0, 0.0);\\n } else if(v > FLOAT_MAX) {\\n return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\\n } else if(v < -FLOAT_MAX) {\\n return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\\n }\\n\\n vec4 c = vec4(0,0,0,0);\\n\\n //Compute exponent and mantissa\\n float e = floor(log2(av));\\n float m = av * pow(2.0, -e) - 1.0;\\n\\n //Unpack mantissa\\n c[1] = floor(128.0 * m);\\n m -= c[1] / 128.0;\\n c[2] = floor(32768.0 * m);\\n m -= c[2] / 32768.0;\\n c[3] = floor(8388608.0 * m);\\n\\n //Unpack exponent\\n float ebias = e + 127.0;\\n c[0] = floor(ebias / 2.0);\\n ebias -= c[0] * 2.0;\\n c[1] += floor(ebias) * 128.0;\\n\\n //Unpack sign bit\\n c[0] += 128.0 * step(0.0, -v);\\n\\n //Scale back to range\\n return c / 255.0;\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform float pickId;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], worldPosition)) discard;\\n\\n gl_FragColor = vec4(pickId/255.0, packFloat(pixelArcLength).xyz);\\n}\"]),l=[{name:\"position\",type:\"vec3\"},{name:\"nextPosition\",type:\"vec3\"},{name:\"arcLength\",type:\"float\"},{name:\"lineWidth\",type:\"float\"},{name:\"color\",type:\"vec4\"}];r.createShader=function(t){return i(t,a,o,null,l)},r.createPickShader=function(t){return i(t,a,s,null,l)}},{\"gl-shader\":132,glslify:231}],91:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl||t.scene&&t.scene.gl,r=f(e);r.attributes.position.location=0,r.attributes.nextPosition.location=1,r.attributes.arcLength.location=2,r.attributes.lineWidth.location=3,r.attributes.color.location=4;var o=h(e);o.attributes.position.location=0,o.attributes.nextPosition.location=1,o.attributes.arcLength.location=2,o.attributes.lineWidth.location=3,o.attributes.color.location=4;for(var s=n(e),l=i(e,[{buffer:s,size:3,offset:0,stride:48},{buffer:s,size:3,offset:12,stride:48},{buffer:s,size:1,offset:24,stride:48},{buffer:s,size:1,offset:28,stride:48},{buffer:s,size:4,offset:32,stride:48}]),u=c(new Array(1024),[256,1,4]),p=0;p<1024;++p)u.data[p]=255;var d=a(e,u);d.wrap=e.REPEAT;var m=new v(e,r,o,s,l,d);return m.update(t),m};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"gl-texture2d\"),o=new Uint8Array(4),s=new Float32Array(o.buffer);var l=t(\"binary-search-bounds\"),c=t(\"ndarray\"),u=t(\"./lib/shaders\"),f=u.createShader,h=u.createPickShader,p=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function d(t,e){for(var r=0,n=0;n<3;++n){var i=t[n]-e[n];r+=i*i}return Math.sqrt(r)}function m(t){for(var e=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],r=0;r<3;++r)e[0][r]=Math.max(t[0][r],e[0][r]),e[1][r]=Math.min(t[1][r],e[1][r]);return e}function g(t,e,r,n){this.arcLength=t,this.position=e,this.index=r,this.dataCoordinate=n}function v(t,e,r,n,i,a){this.gl=t,this.shader=e,this.pickShader=r,this.buffer=n,this.vao=i,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=a,this.dashScale=1,this.opacity=1,this.hasAlpha=!1,this.dirty=!0,this.pixelRatio=1}var y=v.prototype;y.isTransparent=function(){return this.hasAlpha},y.isOpaque=function(){return!this.hasAlpha},y.pickSlots=1,y.setPickBase=function(t){this.pickId=t},y.drawTransparent=y.draw=function(t){if(this.vertexCount){var e=this.gl,r=this.shader,n=this.vao;r.bind(),r.uniforms={model:t.model||p,view:t.view||p,projection:t.projection||p,clipBounds:m(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},y.drawPick=function(t){if(this.vertexCount){var e=this.gl,r=this.pickShader,n=this.vao;r.bind(),r.uniforms={model:t.model||p,view:t.view||p,projection:t.projection||p,pickId:this.pickId,clipBounds:m(this.clipBounds),screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},y.update=function(t){var e,r;this.dirty=!0;var n=!!t.connectGaps;\"dashScale\"in t&&(this.dashScale=t.dashScale),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var i=[],a=[],o=[],s=0,u=0,f=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],h=t.position||t.positions;if(h){var p=t.color||t.colors||[0,0,0,1],m=t.lineWidth||1,g=!1;t:for(e=1;e0){for(var w=0;w<24;++w)i.push(i[i.length-12]);u+=2,g=!0}continue t}f[0][r]=Math.min(f[0][r],b[r],_[r]),f[1][r]=Math.max(f[1][r],b[r],_[r])}Array.isArray(p[0])?(v=p.length>e-1?p[e-1]:p.length>0?p[p.length-1]:[0,0,0,1],y=p.length>e?p[e]:p.length>0?p[p.length-1]:[0,0,0,1]):v=y=p,3===v.length&&(v=[v[0],v[1],v[2],1]),3===y.length&&(y=[y[0],y[1],y[2],1]),!this.hasAlpha&&v[3]<1&&(this.hasAlpha=!0),x=Array.isArray(m)?m.length>e-1?m[e-1]:m.length>0?m[m.length-1]:[0,0,0,1]:m;var T=s;if(s+=d(b,_),g){for(r=0;r<2;++r)i.push(b[0],b[1],b[2],_[0],_[1],_[2],T,x,v[0],v[1],v[2],v[3]);u+=2,g=!1}i.push(b[0],b[1],b[2],_[0],_[1],_[2],T,x,v[0],v[1],v[2],v[3],b[0],b[1],b[2],_[0],_[1],_[2],T,-x,v[0],v[1],v[2],v[3],_[0],_[1],_[2],b[0],b[1],b[2],s,-x,y[0],y[1],y[2],y[3],_[0],_[1],_[2],b[0],b[1],b[2],s,x,y[0],y[1],y[2],y[3]),u+=4}}if(this.buffer.update(i),a.push(s),o.push(h[h.length-1].slice()),this.bounds=f,this.vertexCount=u,this.points=o,this.arcLength=a,\"dashes\"in t){var k=t.dashes.slice();for(k.unshift(0),e=1;e1.0001)return null;v+=g[f]}if(Math.abs(v-1)>.001)return null;return[h,s(t,g),g]}},{barycentric:14,\"polytope-closest-point/lib/closest_point_2d.js\":270}],111:[function(t,e,r){var n=t(\"glslify\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, normal;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model\\n , view\\n , projection\\n , inverseModel;\\nuniform vec3 eyePosition\\n , lightPosition;\\n\\nvarying vec3 f_normal\\n , f_lightDirection\\n , f_eyeDirection\\n , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvec4 project(vec3 p) {\\n return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n gl_Position = project(position);\\n\\n //Lighting geometry parameters\\n vec4 cameraCoordinate = view * vec4(position , 1.0);\\n cameraCoordinate.xyz /= cameraCoordinate.w;\\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n f_color = color;\\n f_data = position;\\n f_uv = uv;\\n}\\n\"]),a=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n float NdotH = max(x, 0.0001);\\n float cos2Alpha = NdotH * NdotH;\\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n float roughness2 = roughness * roughness;\\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n vec3 lightDirection,\\n vec3 viewDirection,\\n vec3 surfaceNormal,\\n float roughness,\\n float fresnel) {\\n\\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n //Half angle vector\\n vec3 H = normalize(lightDirection + viewDirection);\\n\\n //Geometric term\\n float NdotH = max(dot(surfaceNormal, H), 0.0);\\n float VdotH = max(dot(viewDirection, H), 0.000001);\\n float LdotH = max(dot(lightDirection, H), 0.000001);\\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n float G = min(1.0, min(G1, G2));\\n \\n //Distribution term\\n float D = beckmannDistribution(NdotH, roughness);\\n\\n //Fresnel term\\n float F = pow(1.0 - VdotN, fresnel);\\n\\n //Multiply terms and done\\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\n//#pragma glslify: beckmann = require(glsl-specular-beckmann) // used in gl-surface3d\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n , fresnel\\n , kambient\\n , kdiffuse\\n , kspecular;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n , f_lightDirection\\n , f_eyeDirection\\n , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n if (f_color.a == 0.0 ||\\n outOfRange(clipBounds[0], clipBounds[1], f_data)\\n ) discard;\\n\\n vec3 N = normalize(f_normal);\\n vec3 L = normalize(f_lightDirection);\\n vec3 V = normalize(f_eyeDirection);\\n\\n if(gl_FrontFacing) {\\n N = -N;\\n }\\n\\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n //float specular = max(0.0, beckmann(L, V, N, roughness)); // used in gl-surface3d\\n\\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n vec4 surfaceColor = vec4(f_color.rgb, 1.0) * texture2D(texture, f_uv);\\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\\n\\n gl_FragColor = litColor * f_color.a;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n gl_Position = projection * view * model * vec4(position, 1.0);\\n f_color = color;\\n f_data = position;\\n f_uv = uv;\\n}\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], f_data)) discard;\\n\\n gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\nattribute float pointSize;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n gl_Position = vec4(0.0, 0.0 ,0.0 ,0.0);\\n } else {\\n gl_Position = projection * view * model * vec4(position, 1.0);\\n }\\n gl_PointSize = pointSize;\\n f_color = color;\\n f_uv = uv;\\n}\"]),c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n vec2 pointR = gl_PointCoord.xy - vec2(0.5, 0.5);\\n if(dot(pointR, pointR) > 0.25) {\\n discard;\\n }\\n gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n gl_Position = projection * view * model * vec4(position, 1.0);\\n f_id = id;\\n f_position = position;\\n}\"]),f=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]),h=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute float pointSize;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n gl_Position = vec4(0.0, 0.0, 0.0, 0.0);\\n } else {\\n gl_Position = projection * view * model * vec4(position, 1.0);\\n gl_PointSize = pointSize;\\n }\\n f_id = id;\\n f_position = position;\\n}\"]),p=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\n\\nvoid main() {\\n gl_Position = projection * view * model * vec4(position, 1.0);\\n}\"]),d=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec3 contourColor;\\n\\nvoid main() {\\n gl_FragColor = vec4(contourColor, 1.0);\\n}\\n\"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.wireShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.pointShader={vertex:l,fragment:c,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"pointSize\",type:\"float\"}]},r.pickShader={vertex:u,fragment:f,attributes:[{name:\"position\",type:\"vec3\"},{name:\"id\",type:\"vec4\"}]},r.pointPickShader={vertex:h,fragment:f,attributes:[{name:\"position\",type:\"vec3\"},{name:\"pointSize\",type:\"float\"},{name:\"id\",type:\"vec4\"}]},r.contourShader={vertex:p,fragment:d,attributes:[{name:\"position\",type:\"vec3\"}]}},{glslify:231}],112:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),f=t(\"colormap\"),h=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./lib/shaders\"),m=t(\"./lib/closest-point\"),g=d.meshShader,v=d.wireShader,y=d.pointShader,x=d.pickShader,b=d.pointPickShader,_=d.contourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function T(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v,y,x,b,_,T,k,A,M,S){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.lineShader=n,this.pointShader=i,this.pickShader=a,this.pointPickShader=o,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=h,this.triangleUVs=f,this.triangleIds=c,this.triangleVAO=p,this.triangleCount=0,this.lineWidth=1,this.edgePositions=d,this.edgeColors=g,this.edgeUVs=v,this.edgeIds=m,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=x,this.pointColors=_,this.pointUVs=T,this.pointSizes=k,this.pointIds=b,this.pointVAO=A,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=M,this.contourVAO=S,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickVertex=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.hasAlpha=!1,this.opacityscale=!1,this._model=w,this._view=w,this._projection=w,this._resolution=[1,1]}var k=T.prototype;function A(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;rt&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}function M(t){var e=n(t,g.vertex,g.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.normal.location=4,e}function S(t){var e=n(t,v.vertex,v.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e}function E(t){var e=n(t,y.vertex,y.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.pointSize.location=4,e}function L(t){var e=n(t,x.vertex,x.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e}function C(t){var e=n(t,b.vertex,b.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.pointSize.location=4,e}function P(t){var e=n(t,_.vertex,_.fragment);return e.attributes.position.location=0,e}k.isOpaque=function(){return!this.hasAlpha},k.isTransparent=function(){return this.hasAlpha},k.pickSlots=1,k.setPickBase=function(t){this.pickId=t},k.highlight=function(t){if(t&&this.contourEnable){for(var e=h(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,i=e.vertexWeights,a=r.length,o=p.mallocFloat32(6*a),s=0,l=0;l0&&((f=this.triShader).bind(),f.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind());this.edgeCount>0&&this.lineWidth>0&&((f=this.lineShader).bind(),f.uniforms=s,this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind());this.pointCount>0&&((f=this.pointShader).bind(),f.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind());this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0&&((f=this.contourShader).bind(),f.uniforms=s,this.contourVAO.bind(),e.drawArrays(e.LINES,0,this.contourCount),this.contourVAO.unbind())},k.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,i=t.projection||w,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s,l={model:r,view:n,projection:i,clipBounds:a,pickId:this.pickId/255};((s=this.pickShader).bind(),s.uniforms=l,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0)&&((s=this.pointPickShader).bind(),s.uniforms=l,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind())},k.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;for(var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions,i=new Array(r.length),a=0;ai[k]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=g[t],r.uniforms.angle=v[t],a.drawArrays(a.TRIANGLES,i[k],i[A]-i[k]))),y[t]&&T&&(u[1^t]-=M*p*x[t],r.uniforms.dataAxis=f,r.uniforms.screenOffset=u,r.uniforms.color=b[t],r.uniforms.angle=_[t],a.drawArrays(a.TRIANGLES,w,T)),u[1^t]=M*s[2+(1^t)]-1,d[t+2]&&(u[1^t]+=M*p*m[t+2],ki[k]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=g[t+2],r.uniforms.angle=v[t+2],a.drawArrays(a.TRIANGLES,i[k],i[A]-i[k]))),y[t+2]&&T&&(u[1^t]+=M*p*x[t+2],r.uniforms.dataAxis=f,r.uniforms.screenOffset=u,r.uniforms.color=b[t+2],r.uniforms.angle=_[t+2],a.drawArrays(a.TRIANGLES,w,T))}),m.drawTitle=function(){var t=[0,0],e=[0,0];return function(){var r=this.plot,n=this.shader,i=r.gl,a=r.screenBox,o=r.titleCenter,s=r.titleAngle,l=r.titleColor,c=r.pixelRatio;if(this.titleCount){for(var u=0;u<2;++u)e[u]=2*(o[u]*c-a[u])/(a[2+u]-a[u])-1;n.bind(),n.uniforms.dataAxis=t,n.uniforms.screenOffset=e,n.uniforms.angle=s,n.uniforms.color=l,i.drawArrays(i.TRIANGLES,this.titleOffset,this.titleCount)}}}(),m.bind=(h=[0,0],p=[0,0],d=[0,0],function(){var t=this.plot,e=this.shader,r=t._tickBounds,n=t.dataBox,i=t.screenBox,a=t.viewBox;e.bind();for(var o=0;o<2;++o){var s=r[o],l=r[o+2]-s,c=.5*(n[o+2]+n[o]),u=n[o+2]-n[o],f=a[o],m=a[o+2]-f,g=i[o],v=i[o+2]-g;p[o]=2*l/u*m/v,h[o]=2*(s-c)/u*m/v}d[1]=2*t.pixelRatio/(i[3]-i[1]),d[0]=d[1]*(i[3]-i[1])/(i[2]-i[0]),e.uniforms.dataScale=p,e.uniforms.dataShift=h,e.uniforms.textScale=d,this.vbo.bind(),e.attributes.textCoordinate.pointer()}),m.update=function(t){var e,r,n,i,o,s=[],l=t.ticks,c=t.bounds;for(o=0;o<2;++o){var u=[Math.floor(s.length/3)],f=[-1/0],h=l[o];for(e=0;e=0){var m=e[d]-n[d]*(e[d+2]-e[d])/(n[d+2]-n[d]);0===d?o.drawLine(m,e[1],m,e[3],p[d],h[d]):o.drawLine(e[0],m,e[2],m,p[d],h[d])}}for(d=0;d=0;--t)this.objects[t].dispose();this.objects.length=0;for(t=this.overlays.length-1;t>=0;--t)this.overlays[t].dispose();this.overlays.length=0,this.gl=null},c.addObject=function(t){this.objects.indexOf(t)<0&&(this.objects.push(t),this.setDirty())},c.removeObject=function(t){for(var e=this.objects,r=0;rMath.abs(e))c.rotate(a,0,0,-t*r*Math.PI*d.rotateSpeed/window.innerWidth);else if(!d._ortho){var o=-d.zoomSpeed*i*e/window.innerHeight*(a-c.lastT())/20;c.pan(a,0,0,f*(Math.exp(o)-1))}}}),!0)},d.enableMouseListeners(),d};var n=t(\"right-now\"),i=t(\"3d-view\"),a=t(\"mouse-change\"),o=t(\"mouse-wheel\"),s=t(\"mouse-event-offset\"),l=t(\"has-passive-events\")},{\"3d-view\":7,\"has-passive-events\":232,\"mouse-change\":247,\"mouse-event-offset\":248,\"mouse-wheel\":250,\"right-now\":278}],120:[function(t,e,r){var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision mediump float;\\n#define GLSLIFY 1\\nattribute vec2 position;\\nvarying vec2 uv;\\nvoid main() {\\n uv = position;\\n gl_Position = vec4(position, 0, 1);\\n}\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D accumBuffer;\\nvarying vec2 uv;\\n\\nvoid main() {\\n vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\\n gl_FragColor = min(vec4(1,1,1,1), accum);\\n}\"]);e.exports=function(t){return i(t,a,o,null,[{name:\"position\",type:\"vec2\"}])}},{\"gl-shader\":132,glslify:231}],121:[function(t,e,r){\"use strict\";var n=t(\"./camera.js\"),i=t(\"gl-axes3d\"),a=t(\"gl-axes3d/properties\"),o=t(\"gl-spikes3d\"),s=t(\"gl-select-static\"),l=t(\"gl-fbo\"),c=t(\"a-big-triangle\"),u=t(\"mouse-change\"),f=t(\"gl-mat4/perspective\"),h=t(\"gl-mat4/ortho\"),p=t(\"./lib/shader\"),d=t(\"is-mobile\")({tablet:!0,featureDetect:!0});function m(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function g(t){var e=Math.round(Math.log(Math.abs(t))/Math.log(10));if(e<0){var r=Math.round(Math.pow(10,-e));return Math.ceil(t*r)/r}if(e>0){r=Math.round(Math.pow(10,e));return Math.ceil(t/r)*r}return Math.ceil(t)}function v(t){return\"boolean\"!=typeof t||t}e.exports={createScene:function(t){(t=t||{}).camera=t.camera||{};var e=t.canvas;if(!e){if(e=document.createElement(\"canvas\"),t.container)t.container.appendChild(e);else document.body.appendChild(e)}var r=t.gl;r||(t.glOptions&&(d=!!t.glOptions.preserveDrawingBuffer),r=function(t,e){var r=null;try{(r=t.getContext(\"webgl\",e))||(r=t.getContext(\"experimental-webgl\",e))}catch(t){return null}return r}(e,t.glOptions||{premultipliedAlpha:!0,antialias:!0,preserveDrawingBuffer:d}));if(!r)throw new Error(\"webgl not supported\");var y=t.bounds||[[-10,-10,-10],[10,10,10]],x=new m,b=l(r,r.drawingBufferWidth,r.drawingBufferHeight,{preferFloat:!d}),_=p(r),w=t.cameraObject&&!0===t.cameraObject._ortho||t.camera.projection&&\"orthographic\"===t.camera.projection.type||!1,T={eye:t.camera.eye||[2,0,0],center:t.camera.center||[0,0,0],up:t.camera.up||[0,1,0],zoomMin:t.camera.zoomMax||.1,zoomMax:t.camera.zoomMin||100,mode:t.camera.mode||\"turntable\",_ortho:w},k=t.axes||{},A=i(r,k);A.enable=!k.disable;var M=t.spikes||{},S=o(r,M),E=[],L=[],C=[],P=[],I=!0,O=!0,z=new Array(16),D=new Array(16),R={view:null,projection:z,model:D,_ortho:!1},F=(O=!0,[r.drawingBufferWidth,r.drawingBufferHeight]),B=t.cameraObject||n(e,T),N={gl:r,contextLost:!1,pixelRatio:t.pixelRatio||1,canvas:e,selection:x,camera:B,axes:A,axesPixels:null,spikes:S,bounds:y,objects:E,shape:F,aspect:t.aspectRatio||[1,1,1],pickRadius:t.pickRadius||10,zNear:t.zNear||.01,zFar:t.zFar||1e3,fovy:t.fovy||Math.PI/4,clearColor:t.clearColor||[0,0,0,0],autoResize:v(t.autoResize),autoBounds:v(t.autoBounds),autoScale:!!t.autoScale,autoCenter:v(t.autoCenter),clipToBounds:v(t.clipToBounds),snapToData:!!t.snapToData,onselect:t.onselect||null,onrender:t.onrender||null,onclick:t.onclick||null,cameraParams:R,oncontextloss:null,mouseListener:null,_stopped:!1,getAspectratio:function(){return{x:this.aspect[0],y:this.aspect[1],z:this.aspect[2]}},setAspectratio:function(t){this.aspect[0]=t.x,this.aspect[1]=t.y,this.aspect[2]=t.z,O=!0},setBounds:function(t,e){this.bounds[0][t]=e.min,this.bounds[1][t]=e.max},setClearColor:function(t){this.clearColor=t},clearRGBA:function(){this.gl.clearColor(this.clearColor[0],this.clearColor[1],this.clearColor[2],this.clearColor[3]),this.gl.clear(this.gl.COLOR_BUFFER_BIT|this.gl.DEPTH_BUFFER_BIT)}},j=[r.drawingBufferWidth/N.pixelRatio|0,r.drawingBufferHeight/N.pixelRatio|0];function U(){if(!N._stopped&&N.autoResize){var t=e.parentNode,r=1,n=1;t&&t!==document.body?(r=t.clientWidth,n=t.clientHeight):(r=window.innerWidth,n=window.innerHeight);var i=0|Math.ceil(r*N.pixelRatio),a=0|Math.ceil(n*N.pixelRatio);if(i!==e.width||a!==e.height){e.width=i,e.height=a;var o=e.style;o.position=o.position||\"absolute\",o.left=\"0px\",o.top=\"0px\",o.width=r+\"px\",o.height=n+\"px\",I=!0}}}N.autoResize&&U();function V(){for(var t=E.length,e=P.length,n=0;n0&&0===C[e-1];)C.pop(),P.pop().dispose()}function H(){if(N.contextLost)return!0;r.isContextLost()&&(N.contextLost=!0,N.mouseListener.enabled=!1,N.selection.object=null,N.oncontextloss&&N.oncontextloss())}window.addEventListener(\"resize\",U),N.update=function(t){N._stopped||(t=t||{},I=!0,O=!0)},N.add=function(t){N._stopped||(t.axes=A,E.push(t),L.push(-1),I=!0,O=!0,V())},N.remove=function(t){if(!N._stopped){var e=E.indexOf(t);e<0||(E.splice(e,1),L.pop(),I=!0,O=!0,V())}},N.dispose=function(){if(!N._stopped&&(N._stopped=!0,window.removeEventListener(\"resize\",U),e.removeEventListener(\"webglcontextlost\",H),N.mouseListener.enabled=!1,!N.contextLost)){A.dispose(),S.dispose();for(var t=0;tx.distance)continue;for(var c=0;c 1.0) {\\n discard;\\n }\\n baseColor = mix(borderColor, color, step(radius, centerFraction));\\n gl_FragColor = vec4(baseColor.rgb * baseColor.a, baseColor.a);\\n }\\n}\\n\"]),r.pickVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform vec4 pickOffset;\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n vec3 hgPosition = matrix * vec3(position, 1);\\n gl_Position = vec4(hgPosition.xy, 0, hgPosition.z);\\n gl_PointSize = pointSize;\\n\\n vec4 id = pickId + pickOffset;\\n id.y += floor(id.x / 256.0);\\n id.x -= floor(id.x / 256.0) * 256.0;\\n\\n id.z += floor(id.y / 256.0);\\n id.y -= floor(id.y / 256.0) * 256.0;\\n\\n id.w += floor(id.z / 256.0);\\n id.z -= floor(id.z / 256.0) * 256.0;\\n\\n fragId = id;\\n}\\n\"]),r.pickFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n float radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n if(radius > 1.0) {\\n discard;\\n }\\n gl_FragColor = fragId / 255.0;\\n}\\n\"])},{glslify:231}],123:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),i=t(\"gl-buffer\"),a=t(\"typedarray-pool\"),o=t(\"./lib/shader\");function s(t,e,r,n,i){this.plot=t,this.offsetBuffer=e,this.pickBuffer=r,this.shader=n,this.pickShader=i,this.sizeMin=.5,this.sizeMinCap=2,this.sizeMax=20,this.areaRatio=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.blend=!1,this.pickOffset=0,this.points=null}e.exports=function(t,e){var r=t.gl,a=i(r),l=i(r),c=n(r,o.pointVertex,o.pointFragment),u=n(r,o.pickVertex,o.pickFragment),f=new s(t,a,l,c,u);return f.update(e),t.addObject(f),f};var l,c,u=s.prototype;u.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.plot.removeObject(this)},u.update=function(t){var e;function r(e,r){return e in t?t[e]:r}t=t||{},this.sizeMin=r(\"sizeMin\",.5),this.sizeMax=r(\"sizeMax\",20),this.color=r(\"color\",[1,0,0,1]).slice(),this.areaRatio=r(\"areaRatio\",1),this.borderColor=r(\"borderColor\",[0,0,0,1]).slice(),this.blend=r(\"blend\",!1);var n=t.positions.length>>>1,i=t.positions instanceof Float32Array,o=t.idToIndex instanceof Int32Array&&t.idToIndex.length>=n,s=t.positions,l=i?s:a.mallocFloat32(s.length),c=o?t.idToIndex:a.mallocInt32(n);if(i||l.set(s),!o)for(l.set(s),e=0;e>>1;for(r=0;r=e[0]&&a<=e[2]&&o>=e[1]&&o<=e[3]&&n++}return n}(this.points,i),u=this.plot.pickPixelRatio*Math.max(Math.min(this.sizeMinCap,this.sizeMin),Math.min(this.sizeMax,this.sizeMax/Math.pow(s,.33333)));l[0]=2/a,l[4]=2/o,l[6]=-2*i[0]/a-1,l[7]=-2*i[1]/o-1,this.offsetBuffer.bind(),r.bind(),r.attributes.position.pointer(),r.uniforms.matrix=l,r.uniforms.color=this.color,r.uniforms.borderColor=this.borderColor,r.uniforms.pointCloud=u<5,r.uniforms.pointSize=u,r.uniforms.centerFraction=Math.min(1,Math.max(0,Math.sqrt(1-this.areaRatio))),e&&(c[0]=255&t,c[1]=t>>8&255,c[2]=t>>16&255,c[3]=t>>24&255,this.pickBuffer.bind(),r.attributes.pickId.pointer(n.UNSIGNED_BYTE),r.uniforms.pickOffset=c,this.pickOffset=t);var f=n.getParameter(n.BLEND),h=n.getParameter(n.DITHER);return f&&!this.blend&&n.disable(n.BLEND),h&&n.disable(n.DITHER),n.drawArrays(n.POINTS,0,this.pointCount),f&&!this.blend&&n.enable(n.BLEND),h&&n.enable(n.DITHER),t+this.pointCount}),u.draw=u.unifiedDraw,u.drawPick=u.unifiedDraw,u.pick=function(t,e,r){var n=this.pickOffset,i=this.pointCount;if(r=n+i)return null;var a=r-n,o=this.points;return{object:this,pointId:a,dataCoord:[o[2*a],o[2*a+1]]}}},{\"./lib/shader\":122,\"gl-buffer\":78,\"gl-shader\":132,\"typedarray-pool\":308}],124:[function(t,e,r){e.exports=function(t,e,r,n){var i,a,o,s,l,c=e[0],u=e[1],f=e[2],h=e[3],p=r[0],d=r[1],m=r[2],g=r[3];(a=c*p+u*d+f*m+h*g)<0&&(a=-a,p=-p,d=-d,m=-m,g=-g);1-a>1e-6?(i=Math.acos(a),o=Math.sin(i),s=Math.sin((1-n)*i)/o,l=Math.sin(n*i)/o):(s=1-n,l=n);return t[0]=s*c+l*p,t[1]=s*u+l*d,t[2]=s*f+l*m,t[3]=s*h+l*g,t}},{}],125:[function(t,e,r){\"use strict\";e.exports=function(t){return t||0===t?t.toString():\"\"}},{}],126:[function(t,e,r){\"use strict\";var n=t(\"vectorize-text\");e.exports=function(t,e,r){var a=i[e];a||(a=i[e]={});if(t in a)return a[t];var o={textAlign:\"center\",textBaseline:\"middle\",lineHeight:1,font:e,lineSpacing:1.25,styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},triangles:!0},s=n(t,o);o.triangles=!1;var l,c,u=n(t,o);if(r&&1!==r){for(l=0;l max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform vec4 highlightId;\\nuniform float highlightScale;\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n gl_Position = vec4(0,0,0,0);\\n } else {\\n float scale = 1.0;\\n if(distance(highlightId, id) < 0.0001) {\\n scale = highlightScale;\\n }\\n\\n vec4 worldPosition = model * vec4(position, 1);\\n vec4 viewPosition = view * worldPosition;\\n viewPosition = viewPosition / viewPosition.w;\\n vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\\n\\n gl_Position = clipPosition;\\n interpColor = color;\\n pickId = id;\\n dataCoordinate = position;\\n }\\n}\"]),o=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float highlightScale, pixelRatio;\\nuniform vec4 highlightId;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n gl_Position = vec4(0,0,0,0);\\n } else {\\n float scale = pixelRatio;\\n if(distance(highlightId.bgr, id.bgr) < 0.001) {\\n scale *= highlightScale;\\n }\\n\\n vec4 worldPosition = model * vec4(position, 1.0);\\n vec4 viewPosition = view * worldPosition;\\n vec4 clipPosition = projection * viewPosition;\\n clipPosition /= clipPosition.w;\\n\\n gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\\n interpColor = color;\\n pickId = id;\\n dataCoordinate = position;\\n }\\n}\"]),s=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform float highlightScale;\\nuniform vec4 highlightId;\\nuniform vec3 axes[2];\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float scale, pixelRatio;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n gl_Position = vec4(0,0,0,0);\\n } else {\\n float lscale = pixelRatio * scale;\\n if(distance(highlightId, id) < 0.0001) {\\n lscale *= highlightScale;\\n }\\n\\n vec4 clipCenter = projection * view * model * vec4(position, 1);\\n vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\\n vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\\n\\n gl_Position = clipPosition;\\n interpColor = color;\\n pickId = id;\\n dataCoordinate = dataPosition;\\n }\\n}\\n\"]),l=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float opacity;\\n\\nvarying vec4 interpColor;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n if (\\n outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate) ||\\n interpColor.a * opacity == 0.\\n ) discard;\\n gl_FragColor = interpColor * opacity;\\n}\\n\"]),c=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float pickGroup;\\n\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n if (outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate)) discard;\\n\\n gl_FragColor = vec4(pickGroup, pickId.bgr);\\n}\"]),u=[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"glyph\",type:\"vec2\"},{name:\"id\",type:\"vec4\"}],f={vertex:a,fragment:l,attributes:u},h={vertex:o,fragment:l,attributes:u},p={vertex:s,fragment:l,attributes:u},d={vertex:a,fragment:c,attributes:u},m={vertex:o,fragment:c,attributes:u},g={vertex:s,fragment:c,attributes:u};function v(t,e){var r=n(t,e),i=r.attributes;return i.position.location=0,i.color.location=1,i.glyph.location=2,i.id.location=3,r}r.createPerspective=function(t){return v(t,f)},r.createOrtho=function(t){return v(t,h)},r.createProject=function(t){return v(t,p)},r.createPickPerspective=function(t){return v(t,d)},r.createPickOrtho=function(t){return v(t,m)},r.createPickProject=function(t){return v(t,g)}},{\"gl-shader\":132,glslify:231}],128:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"typedarray-pool\"),s=t(\"gl-mat4/multiply\"),l=t(\"./lib/shaders\"),c=t(\"./lib/glyphs\"),u=t(\"./lib/get-simple-string\"),f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function h(t,e){var r=t[0],n=t[1],i=t[2],a=t[3];return t[0]=e[0]*r+e[4]*n+e[8]*i+e[12]*a,t[1]=e[1]*r+e[5]*n+e[9]*i+e[13]*a,t[2]=e[2]*r+e[6]*n+e[10]*i+e[14]*a,t[3]=e[3]*r+e[7]*n+e[11]*i+e[15]*a,t}function p(t,e,r,n){return h(n,n),h(n,n),h(n,n)}function d(t,e){this.index=t,this.dataCoordinate=this.position=e}function m(t){return!0===t||t>1?1:t}function g(t,e,r,n,i,a,o,s,l,c,u,f){this.gl=t,this.pixelRatio=1,this.shader=e,this.orthoShader=r,this.projectShader=n,this.pointBuffer=i,this.colorBuffer=a,this.glyphBuffer=o,this.idBuffer=s,this.vao=l,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.hasAlpha=!1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.projectHasAlpha=!1,this.pickId=0,this.pickPerspectiveShader=c,this.pickOrthoShader=u,this.pickProjectShader=f,this.points=[],this._selectResult=new d(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.dirty=!0}e.exports=function(t){var e=t.gl,r=l.createPerspective(e),n=l.createOrtho(e),o=l.createProject(e),s=l.createPickPerspective(e),c=l.createPickOrtho(e),u=l.createPickProject(e),f=i(e),h=i(e),p=i(e),d=i(e),m=a(e,[{buffer:f,size:3,type:e.FLOAT},{buffer:h,size:4,type:e.FLOAT},{buffer:p,size:2,type:e.FLOAT},{buffer:d,size:4,type:e.UNSIGNED_BYTE,normalized:!0}]),v=new g(e,r,n,o,f,h,p,d,m,s,c,u);return v.update(t),v};var v=g.prototype;v.pickSlots=1,v.setPickBase=function(t){this.pickId=t},v.isTransparent=function(){if(this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&this.projectHasAlpha)return!0;return!1},v.isOpaque=function(){if(!this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&!this.projectHasAlpha)return!0;return!1};var y=[0,0],x=[0,0,0],b=[0,0,0],_=[0,0,0,1],w=[0,0,0,1],T=f.slice(),k=[0,0,0],A=[[0,0,0],[0,0,0]];function M(t){return t[0]=t[1]=t[2]=0,t}function S(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=1,t}function E(t,e,r,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[r]=n,t}function L(t,e,r,n){var i,a=e.axesProject,o=e.gl,l=t.uniforms,c=r.model||f,u=r.view||f,h=r.projection||f,d=e.axesBounds,m=function(t){for(var e=A,r=0;r<2;++r)for(var n=0;n<3;++n)e[r][n]=Math.max(Math.min(t[r][n],1e8),-1e8);return e}(e.clipBounds);i=e.axes&&e.axes.lastCubeProps?e.axes.lastCubeProps.axis:[1,1,1],y[0]=2/o.drawingBufferWidth,y[1]=2/o.drawingBufferHeight,t.bind(),l.view=u,l.projection=h,l.screenSize=y,l.highlightId=e.highlightId,l.highlightScale=e.highlightScale,l.clipBounds=m,l.pickGroup=e.pickId/255,l.pixelRatio=n;for(var g=0;g<3;++g)if(a[g]){l.scale=e.projectScale[g],l.opacity=e.projectOpacity[g];for(var v=T,L=0;L<16;++L)v[L]=0;for(L=0;L<4;++L)v[5*L]=1;v[5*g]=0,i[g]<0?v[12+g]=d[0][g]:v[12+g]=d[1][g],s(v,c,v),l.model=v;var C=(g+1)%3,P=(g+2)%3,I=M(x),O=M(b);I[C]=1,O[P]=1;var z=p(0,0,0,S(_,I)),D=p(0,0,0,S(w,O));if(Math.abs(z[1])>Math.abs(D[1])){var R=z;z=D,D=R,R=I,I=O,O=R;var F=C;C=P,P=F}z[0]<0&&(I[C]=-1),D[1]>0&&(O[P]=-1);var B=0,N=0;for(L=0;L<4;++L)B+=Math.pow(c[4*C+L],2),N+=Math.pow(c[4*P+L],2);I[C]/=Math.sqrt(B),O[P]/=Math.sqrt(N),l.axes[0]=I,l.axes[1]=O,l.fragClipBounds[0]=E(k,m[0],g,-1e8),l.fragClipBounds[1]=E(k,m[1],g,1e8),e.vao.bind(),e.vao.draw(o.TRIANGLES,e.vertexCount),e.lineWidth>0&&(o.lineWidth(e.lineWidth*n),e.vao.draw(o.LINES,e.lineVertexCount,e.vertexCount)),e.vao.unbind()}}var C=[[-1e8,-1e8,-1e8],[1e8,1e8,1e8]];function P(t,e,r,n,i,a,o){var s=r.gl;if((a===r.projectHasAlpha||o)&&L(e,r,n,i),a===r.hasAlpha||o){t.bind();var l=t.uniforms;l.model=n.model||f,l.view=n.view||f,l.projection=n.projection||f,y[0]=2/s.drawingBufferWidth,y[1]=2/s.drawingBufferHeight,l.screenSize=y,l.highlightId=r.highlightId,l.highlightScale=r.highlightScale,l.fragClipBounds=C,l.clipBounds=r.axes.bounds,l.opacity=r.opacity,l.pickGroup=r.pickId/255,l.pixelRatio=i,r.vao.bind(),r.vao.draw(s.TRIANGLES,r.vertexCount),r.lineWidth>0&&(s.lineWidth(r.lineWidth*i),r.vao.draw(s.LINES,r.lineVertexCount,r.vertexCount)),r.vao.unbind()}}function I(t,e,r,i){var a;a=Array.isArray(t)?e=this.pointCount||e<0)return null;var r=this.points[e],n=this._selectResult;n.index=e;for(var i=0;i<3;++i)n.position[i]=n.dataCoordinate[i]=r[i];return n},v.highlight=function(t){if(t){var e=t.index,r=255&e,n=e>>8&255,i=e>>16&255;this.highlightId=[r/255,n/255,i/255,0]}else this.highlightId=[1,1,1,1]},v.update=function(t){if(\"perspective\"in(t=t||{})&&(this.useOrtho=!t.perspective),\"orthographic\"in t&&(this.useOrtho=!!t.orthographic),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"project\"in t)if(Array.isArray(t.project))this.axesProject=t.project;else{var e=!!t.project;this.axesProject=[e,e,e]}if(\"projectScale\"in t)if(Array.isArray(t.projectScale))this.projectScale=t.projectScale.slice();else{var r=+t.projectScale;this.projectScale=[r,r,r]}if(this.projectHasAlpha=!1,\"projectOpacity\"in t){if(Array.isArray(t.projectOpacity))this.projectOpacity=t.projectOpacity.slice();else{r=+t.projectOpacity;this.projectOpacity=[r,r,r]}for(var n=0;n<3;++n)this.projectOpacity[n]=m(this.projectOpacity[n]),this.projectOpacity[n]<1&&(this.projectHasAlpha=!0)}this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=m(t.opacity),this.opacity<1&&(this.hasAlpha=!0)),this.dirty=!0;var i,a,s=t.position,l=t.font||\"normal\",c=t.alignment||[0,0];if(2===c.length)i=c[0],a=c[1];else{i=[],a=[];for(n=0;n0){var O=0,z=x,D=[0,0,0,1],R=[0,0,0,1],F=Array.isArray(p)&&Array.isArray(p[0]),B=Array.isArray(v)&&Array.isArray(v[0]);t:for(n=0;n<_;++n){y+=1;for(w=s[n],T=0;T<3;++T){if(isNaN(w[T])||!isFinite(w[T]))continue t;f[T]=Math.max(f[T],w[T]),u[T]=Math.min(u[T],w[T])}k=(N=I(h,n,l,this.pixelRatio)).mesh,A=N.lines,M=N.bounds;var N,j=N.visible;if(j)if(Array.isArray(p)){if(3===(U=F?n0?1-M[0][0]:Y<0?1+M[1][0]:1,W*=W>0?1-M[0][1]:W<0?1+M[1][1]:1],Z=k.cells||[],J=k.positions||[];for(T=0;T0){var v=r*u;o.drawBox(f-v,h-v,p+v,h+v,a),o.drawBox(f-v,d-v,p+v,d+v,a),o.drawBox(f-v,h-v,f+v,d+v,a),o.drawBox(p-v,h-v,p+v,d+v,a)}}}},s.update=function(t){t=t||{},this.innerFill=!!t.innerFill,this.outerFill=!!t.outerFill,this.innerColor=(t.innerColor||[0,0,0,.5]).slice(),this.outerColor=(t.outerColor||[0,0,0,.5]).slice(),this.borderColor=(t.borderColor||[0,0,0,1]).slice(),this.borderWidth=t.borderWidth||0,this.selectBox=(t.selectBox||this.selectBox).slice()},s.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},{\"./lib/shaders\":129,\"gl-buffer\":78,\"gl-shader\":132}],131:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=e[0],a=e[1],o=n(t,r,a,{}),s=i.mallocUint8(r*a*4);return new l(t,o,s)};var n=t(\"gl-fbo\"),i=t(\"typedarray-pool\"),a=t(\"ndarray\"),o=t(\"bit-twiddle\").nextPow2;function s(t,e,r,n,i){this.coord=[t,e],this.id=r,this.value=n,this.distance=i}function l(t,e,r){this.gl=t,this.fbo=e,this.buffer=r,this._readTimeout=null;var n=this;this._readCallback=function(){n.gl&&(e.bind(),t.readPixels(0,0,e.shape[0],e.shape[1],t.RGBA,t.UNSIGNED_BYTE,n.buffer),n._readTimeout=null)}}var c=l.prototype;Object.defineProperty(c,\"shape\",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(t){if(this.gl){this.fbo.shape=t;var e=this.fbo.shape[0],r=this.fbo.shape[1];if(r*e*4>this.buffer.length){i.free(this.buffer);for(var n=this.buffer=i.mallocUint8(o(r*e*4)),a=0;ar)for(t=r;te)for(t=e;t=0){for(var T=0|w.type.charAt(w.type.length-1),k=new Array(T),A=0;A=0;)M+=1;_[y]=M}var S=new Array(r.length);function E(){h.program=o.program(p,h._vref,h._fref,b,_);for(var t=0;t=0){if((d=h.charCodeAt(h.length-1)-48)<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+f+\": \"+h);s(t,e,p[0],i,d,a,f)}else{if(!(h.indexOf(\"mat\")>=0))throw new n(\"\",\"Unknown data type for attribute \"+f+\": \"+h);var d;if((d=h.charCodeAt(h.length-1)-48)<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+f+\": \"+h);l(t,e,p,i,d,a,f)}}}return a};var n=t(\"./GLError\");function i(t,e,r,n,i,a){this._gl=t,this._wrapper=e,this._index=r,this._locations=n,this._dimension=i,this._constFunc=a}var a=i.prototype;a.pointer=function(t,e,r,n){var i=this._gl,a=this._locations[this._index];i.vertexAttribPointer(a,this._dimension,t||i.FLOAT,!!e,r||0,n||0),i.enableVertexAttribArray(a)},a.set=function(t,e,r,n){return this._constFunc(this._locations[this._index],t,e,r,n)},Object.defineProperty(a,\"location\",{get:function(){return this._locations[this._index]},set:function(t){return t!==this._locations[this._index]&&(this._locations[this._index]=0|t,this._wrapper.program=null),0|t}});var o=[function(t,e,r){return void 0===r.length?t.vertexAttrib1f(e,r):t.vertexAttrib1fv(e,r)},function(t,e,r,n){return void 0===r.length?t.vertexAttrib2f(e,r,n):t.vertexAttrib2fv(e,r)},function(t,e,r,n,i){return void 0===r.length?t.vertexAttrib3f(e,r,n,i):t.vertexAttrib3fv(e,r)},function(t,e,r,n,i,a){return void 0===r.length?t.vertexAttrib4f(e,r,n,i,a):t.vertexAttrib4fv(e,r)}];function s(t,e,r,n,a,s,l){var c=o[a],u=new i(t,e,r,n,a,c);Object.defineProperty(s,l,{set:function(e){return t.disableVertexAttribArray(n[r]),c(t,n[r],e),e},get:function(){return u},enumerable:!0})}function l(t,e,r,n,i,a,o){for(var l=new Array(i),c=new Array(i),u=0;u4)throw new i(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+v);t[\"uniformMatrix\"+g+\"fv\"](s[u],!1,f);break}throw new i(\"\",\"Unknown uniform data type for \"+name+\": \"+v)}if((g=v.charCodeAt(v.length-1)-48)<2||g>4)throw new i(\"\",\"Invalid data type\");switch(v.charAt(0)){case\"b\":case\"i\":t[\"uniform\"+g+\"iv\"](s[u],f);break;case\"v\":t[\"uniform\"+g+\"fv\"](s[u],f);break;default:throw new i(\"\",\"Unrecognized data type for vector \"+name+\": \"+v)}}}}}}function c(t,e,n){if(\"object\"==typeof n){var c=u(n);Object.defineProperty(t,e,{get:a(c),set:l(n),enumerable:!0,configurable:!1})}else s[n]?Object.defineProperty(t,e,{get:(f=n,function(t,e,r){return t.getUniform(e.program,r[f])}),set:l(n),enumerable:!0,configurable:!1}):t[e]=function(t){switch(t){case\"bool\":return!1;case\"int\":case\"sampler2D\":case\"samplerCube\":case\"float\":return 0;default:var e=t.indexOf(\"vec\");if(0<=e&&e<=1&&t.length===4+e){if((r=t.charCodeAt(t.length-1)-48)<2||r>4)throw new i(\"\",\"Invalid data type\");return\"b\"===t.charAt(0)?o(r,!1):o(r,0)}if(0===t.indexOf(\"mat\")&&4===t.length){var r;if((r=t.charCodeAt(t.length-1)-48)<2||r>4)throw new i(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+t);return o(r*r,0)}throw new i(\"\",\"Unknown uniform data type for \"+name+\": \"+t)}}(r[n].type);var f}function u(t){var e;if(Array.isArray(t)){e=new Array(t.length);for(var r=0;r1){s[0]in a||(a[s[0]]=[]),a=a[s[0]];for(var l=1;l1)for(var l=0;l 0 U ||b|| > 0.\\n // Assign z = 0, x = -b, y = a:\\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n return normalize(vec3(-v.y, v.x, 0.0));\\n } else {\\n return normalize(vec3(0.0, v.z, -v.y));\\n }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n float segmentCount = 8.0;\\n\\n float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n vec3 u = getOrthogonalVector(d);\\n vec3 v = normalize(cross(u, d));\\n\\n vec3 x = u * cos(angle) * length(d);\\n vec3 y = v * sin(angle) * length(d);\\n vec3 v3 = x + y;\\n\\n normal = normalize(v3);\\n\\n return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\n\\nuniform float vectorScale, tubeScale;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 eyePosition, lightPosition;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n // Scale the vector magnitude to stay constant with\\n // model & view changes.\\n vec3 normal;\\n vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n //Lighting geometry parameters\\n vec4 cameraCoordinate = view * tubePosition;\\n cameraCoordinate.xyz /= cameraCoordinate.w;\\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n // vec4 m_position = model * vec4(tubePosition, 1.0);\\n vec4 t_position = view * tubePosition;\\n gl_Position = projection * t_position;\\n\\n f_color = color;\\n f_data = tubePosition.xyz;\\n f_position = position.xyz;\\n f_uv = uv;\\n}\\n\"]),a=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n float NdotH = max(x, 0.0001);\\n float cos2Alpha = NdotH * NdotH;\\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n float roughness2 = roughness * roughness;\\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n vec3 lightDirection,\\n vec3 viewDirection,\\n vec3 surfaceNormal,\\n float roughness,\\n float fresnel) {\\n\\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n //Half angle vector\\n vec3 H = normalize(lightDirection + viewDirection);\\n\\n //Geometric term\\n float NdotH = max(dot(surfaceNormal, H), 0.0);\\n float VdotH = max(dot(viewDirection, H), 0.000001);\\n float LdotH = max(dot(lightDirection, H), 0.000001);\\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n float G = min(1.0, min(G1, G2));\\n \\n //Distribution term\\n float D = beckmannDistribution(NdotH, roughness);\\n\\n //Fresnel term\\n float F = pow(1.0 - VdotN, fresnel);\\n\\n //Multiply terms and done\\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n vec3 N = normalize(f_normal);\\n vec3 L = normalize(f_lightDirection);\\n vec3 V = normalize(f_eyeDirection);\\n\\n if(gl_FrontFacing) {\\n N = -N;\\n }\\n\\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\\n\\n gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n // Return up-vector for only-z vector.\\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\\n // Assign z = 0, x = -b, y = a:\\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n return normalize(vec3(-v.y, v.x, 0.0));\\n } else {\\n return normalize(vec3(0.0, v.z, -v.y));\\n }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n float segmentCount = 8.0;\\n\\n float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n vec3 u = getOrthogonalVector(d);\\n vec3 v = normalize(cross(u, d));\\n\\n vec3 x = u * cos(angle) * length(d);\\n vec3 y = v * sin(angle) * length(d);\\n vec3 v3 = x + y;\\n\\n normal = normalize(v3);\\n\\n return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform float tubeScale;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n vec3 normal;\\n vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n gl_Position = projection * view * tubePosition;\\n f_id = id;\\n f_position = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:\"position\",type:\"vec4\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec4\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec4\"}]}},{glslify:231}],143:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\"),i=t(\"gl-vec4\"),a=[\"xyz\",\"xzy\",\"yxz\",\"yzx\",\"zxy\",\"zyx\"],o=function(t,e,r,a){for(var o=0,s=0;s0)for(T=0;T<8;T++){var k=(T+1)%8;c.push(h[T],p[T],p[k],p[k],h[k],h[T]),f.push(y,v,v,v,y,y),d.push(m,g,g,g,m,m);var A=c.length;u.push([A-6,A-5,A-4],[A-3,A-2,A-1])}var M=h;h=p,p=M;var S=y;y=v,v=S;var E=m;m=g,g=E}return{positions:c,cells:u,vectors:f,vertexIntensity:d}}(t,r,a,o)})),f=[],h=[],p=[],d=[];for(s=0;se)return r-1}return r},l=function(t,e,r){return tr?r:t},c=function(t){var e=1/0;t.sort((function(t,e){return t-e}));for(var r=t.length,n=1;nf-1||y>h-1||x>p-1)return n.create();var b,_,w,T,k,A,M=a[0][d],S=a[0][v],E=a[1][m],L=a[1][y],C=a[2][g],P=(o-M)/(S-M),I=(c-E)/(L-E),O=(u-C)/(a[2][x]-C);switch(isFinite(P)||(P=.5),isFinite(I)||(I=.5),isFinite(O)||(O=.5),r.reversedX&&(d=f-1-d,v=f-1-v),r.reversedY&&(m=h-1-m,y=h-1-y),r.reversedZ&&(g=p-1-g,x=p-1-x),r.filled){case 5:k=g,A=x,w=m*p,T=y*p,b=d*p*h,_=v*p*h;break;case 4:k=g,A=x,b=d*p,_=v*p,w=m*p*f,T=y*p*f;break;case 3:w=m,T=y,k=g*h,A=x*h,b=d*h*p,_=v*h*p;break;case 2:w=m,T=y,b=d*h,_=v*h,k=g*h*f,A=x*h*f;break;case 1:b=d,_=v,k=g*f,A=x*f,w=m*f*p,T=y*f*p;break;default:b=d,_=v,w=m*f,T=y*f,k=g*f*h,A=x*f*h}var z=i[b+w+k],D=i[b+w+A],R=i[b+T+k],F=i[b+T+A],B=i[_+w+k],N=i[_+w+A],j=i[_+T+k],U=i[_+T+A],V=n.create(),H=n.create(),q=n.create(),G=n.create();n.lerp(V,z,B,P),n.lerp(H,D,N,P),n.lerp(q,R,j,P),n.lerp(G,F,U,P);var Y=n.create(),W=n.create();n.lerp(Y,V,q,I),n.lerp(W,H,G,I);var X=n.create();return n.lerp(X,Y,W,O),X}(e,t,p)},m=t.getDivergence||function(t,e){var r=n.create(),i=1e-4;n.add(r,t,[i,0,0]);var a=d(r);n.subtract(a,a,e),n.scale(a,a,1/i),n.add(r,t,[0,i,0]);var o=d(r);n.subtract(o,o,e),n.scale(o,o,1/i),n.add(r,t,[0,0,i]);var s=d(r);return n.subtract(s,s,e),n.scale(s,s,1/i),n.add(r,a,o),n.add(r,r,s),r},g=[],v=e[0][0],y=e[0][1],x=e[0][2],b=e[1][0],_=e[1][1],w=e[1][2],T=function(t){var e=t[0],r=t[1],n=t[2];return!(eb||r_||nw)},k=10*n.distance(e[0],e[1])/i,A=k*k,M=1,S=0,E=r.length;E>1&&(M=function(t){for(var e=[],r=[],n=[],i={},a={},o={},s=t.length,l=0;lS&&(S=F),D.push(F),g.push({points:P,velocities:I,divergences:D});for(var B=0;B<100*i&&P.lengthA&&n.scale(N,N,k/Math.sqrt(j)),n.add(N,N,C),O=d(N),n.squaredDistance(z,N)-A>-1e-4*A){P.push(N),z=N,I.push(O);R=m(N,O),F=n.length(R);isFinite(F)&&F>S&&(S=F),D.push(F)}C=N}}var U=o(g,t.colormap,S,M);return f?U.tubeScale=f:(0===S&&(S=1),U.tubeScale=.5*u*M/S),U};var u=t(\"./lib/shaders\"),f=t(\"gl-cone3d\").createMesh;e.exports.createTubeMesh=function(t,e){return f(t,e,{shaders:u,traceType:\"streamtube\"})}},{\"./lib/shaders\":142,\"gl-cone3d\":79,\"gl-vec3\":169,\"gl-vec4\":205}],144:[function(t,e,r){var n=t(\"gl-shader\"),i=t(\"glslify\"),a=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute vec3 f;\\nattribute vec3 normal;\\n\\nuniform vec3 objectOffset;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 lightPosition, eyePosition;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n vec3 localCoordinate = vec3(uv.zw, f.x);\\n worldCoordinate = objectOffset + localCoordinate;\\n vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n vec4 clipPosition = projection * view * worldPosition;\\n gl_Position = clipPosition;\\n kill = f.y;\\n value = f.z;\\n planeCoordinate = uv.xy;\\n\\n vColor = texture2D(colormap, vec2(value, value));\\n\\n //Lighting geometry parameters\\n vec4 cameraCoordinate = view * worldPosition;\\n cameraCoordinate.xyz /= cameraCoordinate.w;\\n lightDirection = lightPosition - cameraCoordinate.xyz;\\n eyeDirection = eyePosition - cameraCoordinate.xyz;\\n surfaceNormal = normalize((vec4(normal,0) * inverseModel).xyz);\\n}\\n\"]),o=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n float NdotH = max(x, 0.0001);\\n float cos2Alpha = NdotH * NdotH;\\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n float roughness2 = roughness * roughness;\\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat beckmannSpecular(\\n vec3 lightDirection,\\n vec3 viewDirection,\\n vec3 surfaceNormal,\\n float roughness) {\\n return beckmannDistribution(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 lowerBound, upperBound;\\nuniform float contourTint;\\nuniform vec4 contourColor;\\nuniform sampler2D colormap;\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform float vertexColor;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n if (\\n kill > 0.0 ||\\n vColor.a == 0.0 ||\\n outOfRange(clipBounds[0], clipBounds[1], worldCoordinate)\\n ) discard;\\n\\n vec3 N = normalize(surfaceNormal);\\n vec3 V = normalize(eyeDirection);\\n vec3 L = normalize(lightDirection);\\n\\n if(gl_FrontFacing) {\\n N = -N;\\n }\\n\\n float specular = max(beckmannSpecular(L, V, N, roughness), 0.);\\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n //decide how to interpolate color \\u2014 in vertex or in fragment\\n vec4 surfaceColor =\\n step(vertexColor, .5) * texture2D(colormap, vec2(value, value)) +\\n step(.5, vertexColor) * vColor;\\n\\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\\n\\n gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\\n}\\n\"]),s=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute float f;\\n\\nuniform vec3 objectOffset;\\nuniform mat3 permutation;\\nuniform mat4 model, view, projection;\\nuniform float height, zOffset;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n vec3 dataCoordinate = permutation * vec3(uv.xy, height);\\n worldCoordinate = objectOffset + dataCoordinate;\\n vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n\\n vec4 clipPosition = projection * view * worldPosition;\\n clipPosition.z += zOffset;\\n\\n gl_Position = clipPosition;\\n value = f + objectOffset.z;\\n kill = -1.0;\\n planeCoordinate = uv.zw;\\n\\n vColor = texture2D(colormap, vec2(value, value));\\n\\n //Don't do lighting for contours\\n surfaceNormal = vec3(1,0,0);\\n eyeDirection = vec3(0,1,0);\\n lightDirection = vec3(0,0,1);\\n}\\n\"]),l=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n return ((p > max(a, b)) || \\n (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n return (outOfRange(a.x, b.x, p.x) ||\\n outOfRange(a.y, b.y, p.y) ||\\n outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec2 shape;\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 surfaceNormal;\\n\\nvec2 splitFloat(float v) {\\n float vh = 255.0 * v;\\n float upper = floor(vh);\\n float lower = fract(vh);\\n return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\\n}\\n\\nvoid main() {\\n if ((kill > 0.0) ||\\n (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\\n\\n vec2 ux = splitFloat(planeCoordinate.x / shape.x);\\n vec2 uy = splitFloat(planeCoordinate.y / shape.y);\\n gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\\n}\\n\"]);r.createShader=function(t){var e=n(t,a,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createPickShader=function(t){var e=n(t,a,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createContourShader=function(t){var e=n(t,s,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e},r.createPickContourShader=function(t){var e=n(t,s,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e}},{\"gl-shader\":132,glslify:231}],145:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=y(e),n=b(e),s=x(e),l=_(e),c=i(e),u=a(e,[{buffer:c,size:4,stride:40,offset:0},{buffer:c,size:3,stride:40,offset:16},{buffer:c,size:3,stride:40,offset:28}]),f=i(e),h=a(e,[{buffer:f,size:4,stride:20,offset:0},{buffer:f,size:1,stride:20,offset:16}]),p=i(e),d=a(e,[{buffer:p,size:2,type:e.FLOAT}]),m=o(e,1,256,e.RGBA,e.UNSIGNED_BYTE);m.minFilter=e.LINEAR,m.magFilter=e.LINEAR;var g=new M(e,[0,0],[[0,0,0],[0,0,0]],r,n,c,u,m,s,l,f,h,p,d,[0,0,0]),v={levels:[[],[],[]]};for(var w in t)v[w]=t[w];return v.colormap=v.colormap||\"jet\",g.update(v),g};var n=t(\"bit-twiddle\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"typedarray-pool\"),l=t(\"colormap\"),c=t(\"ndarray-ops\"),u=t(\"ndarray-pack\"),f=t(\"ndarray\"),h=t(\"surface-nets\"),p=t(\"gl-mat4/multiply\"),d=t(\"gl-mat4/invert\"),m=t(\"binary-search-bounds\"),g=t(\"ndarray-gradient\"),v=t(\"./lib/shaders\"),y=v.createShader,x=v.createContourShader,b=v.createPickShader,_=v.createPickContourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],T=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],k=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];function A(t,e,r,n,i){this.position=t,this.index=e,this.uv=r,this.level=n,this.dataCoordinate=i}!function(){for(var t=0;t<3;++t){var e=k[t],r=(t+2)%3;e[(t+1)%3+0]=1,e[r+3]=1,e[t+6]=1}}();function M(t,e,r,n,i,a,o,l,c,u,h,p,d,m,g){this.gl=t,this.shape=e,this.bounds=r,this.objectOffset=g,this.intensityBounds=[],this._shader=n,this._pickShader=i,this._coordinateBuffer=a,this._vao=o,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=h,this._contourVAO=p,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new A([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=d,this._dynamicVAO=m,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.snapToData=!1,this.pixelRatio=1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.vertexColor=0,this.dirty=!0}var S=M.prototype;S.genColormap=function(t,e){var r=!1,n=u([l({colormap:t,nshades:256,format:\"rgba\"}).map((function(t,n){var i=e?function(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;rt&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}(n/255,e):t[3];return i<1&&(r=!0),[t[0],t[1],t[2],255*i]}))]);return c.divseq(n,255),this.hasAlphaScale=r,n},S.isTransparent=function(){return this.opacity<1||this.hasAlphaScale},S.isOpaque=function(){return!this.isTransparent()},S.pickSlots=1,S.setPickBase=function(t){this.pickId=t};var E=[0,0,0],L={showSurface:!1,showContour:!1,projections:[w.slice(),w.slice(),w.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]};function C(t,e){var r,n,i,a=e.axes&&e.axes.lastCubeProps.axis||E,o=e.showSurface,s=e.showContour;for(r=0;r<3;++r)for(o=o||e.surfaceProject[r],n=0;n<3;++n)s=s||e.contourProject[r][n];for(r=0;r<3;++r){var l=L.projections[r];for(n=0;n<16;++n)l[n]=0;for(n=0;n<4;++n)l[5*n]=1;l[5*r]=0,l[12+r]=e.axesBounds[+(a[r]>0)][r],p(l,t.model,l);var c=L.clipBounds[r];for(i=0;i<2;++i)for(n=0;n<3;++n)c[i][n]=t.clipBounds[i][n];c[0][r]=-1e8,c[1][r]=1e8}return L.showSurface=o,L.showContour=s,L}var P={model:w,view:w,projection:w,inverseModel:w.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,objectOffset:[0,0,0],kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1,vertexColor:0},I=w.slice(),O=[1,0,0,0,1,0,0,0,1];function z(t,e){t=t||{};var r=this.gl;r.disable(r.CULL_FACE),this._colorMap.bind(0);var n=P;n.model=t.model||w,n.view=t.view||w,n.projection=t.projection||w,n.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],n.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],n.objectOffset=this.objectOffset,n.contourColor=this.contourColor[0],n.inverseModel=d(n.inverseModel,n.model);for(var i=0;i<2;++i)for(var a=n.clipBounds[i],o=0;o<3;++o)a[o]=Math.min(Math.max(this.clipBounds[i][o],-1e8),1e8);n.kambient=this.ambientLight,n.kdiffuse=this.diffuseLight,n.kspecular=this.specularLight,n.roughness=this.roughness,n.fresnel=this.fresnel,n.opacity=this.opacity,n.height=0,n.permutation=O,n.vertexColor=this.vertexColor;var s=I;for(p(s,n.view,n.model),p(s,n.projection,s),d(s,s),i=0;i<3;++i)n.eyePosition[i]=s[12+i]/s[15];var l=s[15];for(i=0;i<3;++i)l+=this.lightPosition[i]*s[4*i+3];for(i=0;i<3;++i){var c=s[12+i];for(o=0;o<3;++o)c+=s[4*o+i]*this.lightPosition[o];n.lightPosition[i]=c/l}var u=C(n,this);if(u.showSurface){for(this._shader.bind(),this._shader.uniforms=n,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(r.TRIANGLES,this._vertexCount),i=0;i<3;++i)this.surfaceProject[i]&&this.vertexCount&&(this._shader.uniforms.model=u.projections[i],this._shader.uniforms.clipBounds=u.clipBounds[i],this._vao.draw(r.TRIANGLES,this._vertexCount));this._vao.unbind()}if(u.showContour){var f=this._contourShader;n.kambient=1,n.kdiffuse=0,n.kspecular=0,n.opacity=1,f.bind(),f.uniforms=n;var h=this._contourVAO;for(h.bind(),i=0;i<3;++i)for(f.uniforms.permutation=k[i],r.lineWidth(this.contourWidth[i]*this.pixelRatio),o=0;o>4)/16)/255,i=Math.floor(n),a=n-i,o=e[1]*(t.value[1]+(15&t.value[2])/16)/255,s=Math.floor(o),l=o-s;i+=1,s+=1;var c=r.position;c[0]=c[1]=c[2]=0;for(var u=0;u<2;++u)for(var f=u?a:1-a,h=0;h<2;++h)for(var p=i+u,d=s+h,g=f*(h?l:1-l),v=0;v<3;++v)c[v]+=this._field[v].get(p,d)*g;for(var y=this._pickResult.level,x=0;x<3;++x)if(y[x]=m.le(this.contourLevels[x],c[x]),y[x]<0)this.contourLevels[x].length>0&&(y[x]=0);else if(y[x]Math.abs(_-c[x])&&(y[x]+=1)}for(r.index[0]=a<.5?i:i+1,r.index[1]=l<.5?s:s+1,r.uv[0]=n/e[0],r.uv[1]=o/e[1],v=0;v<3;++v)r.dataCoordinate[v]=this._field[v].get(r.index[0],r.index[1]);return r},S.padField=function(t,e){var r=e.shape.slice(),n=t.shape.slice();c.assign(t.lo(1,1).hi(r[0],r[1]),e),c.assign(t.lo(1).hi(r[0],1),e.hi(r[0],1)),c.assign(t.lo(1,n[1]-1).hi(r[0],1),e.lo(0,r[1]-1).hi(r[0],1)),c.assign(t.lo(0,1).hi(1,r[1]),e.hi(1)),c.assign(t.lo(n[0]-1,1).hi(1,r[1]),e.lo(r[0]-1)),t.set(0,0,e.get(0,0)),t.set(0,n[1]-1,e.get(0,r[1]-1)),t.set(n[0]-1,0,e.get(r[0]-1,0)),t.set(n[0]-1,n[1]-1,e.get(r[0]-1,r[1]-1))},S.update=function(t){t=t||{},this.objectOffset=t.objectOffset||this.objectOffset,this.dirty=!0,\"contourWidth\"in t&&(this.contourWidth=R(t.contourWidth,Number)),\"showContour\"in t&&(this.showContour=R(t.showContour,Boolean)),\"showSurface\"in t&&(this.showSurface=!!t.showSurface),\"contourTint\"in t&&(this.contourTint=R(t.contourTint,Boolean)),\"contourColor\"in t&&(this.contourColor=B(t.contourColor)),\"contourProject\"in t&&(this.contourProject=R(t.contourProject,(function(t){return R(t,Boolean)}))),\"surfaceProject\"in t&&(this.surfaceProject=t.surfaceProject),\"dynamicColor\"in t&&(this.dynamicColor=B(t.dynamicColor)),\"dynamicTint\"in t&&(this.dynamicTint=R(t.dynamicTint,Number)),\"dynamicWidth\"in t&&(this.dynamicWidth=R(t.dynamicWidth,Number)),\"opacity\"in t&&(this.opacity=t.opacity),\"opacityscale\"in t&&(this.opacityscale=t.opacityscale),\"colorBounds\"in t&&(this.colorBounds=t.colorBounds),\"vertexColor\"in t&&(this.vertexColor=t.vertexColor?1:0),\"colormap\"in t&&this._colorMap.setPixels(this.genColormap(t.colormap,this.opacityscale));var e=t.field||t.coords&&t.coords[2]||null,r=!1;if(e||(e=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),\"field\"in t||\"coords\"in t){var i=(e.shape[0]+2)*(e.shape[1]+2);i>this._field[2].data.length&&(s.freeFloat(this._field[2].data),this._field[2].data=s.mallocFloat(n.nextPow2(i))),this._field[2]=f(this._field[2].data,[e.shape[0]+2,e.shape[1]+2]),this.padField(this._field[2],e),this.shape=e.shape.slice();for(var a=this.shape,o=0;o<2;++o)this._field[2].size>this._field[o].data.length&&(s.freeFloat(this._field[o].data),this._field[o].data=s.mallocFloat(this._field[2].size)),this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2]);if(t.coords){var l=t.coords;if(!Array.isArray(l)||3!==l.length)throw new Error(\"gl-surface: invalid coordinates for x/y\");for(o=0;o<2;++o){var c=l[o];for(v=0;v<2;++v)if(c.shape[v]!==a[v])throw new Error(\"gl-surface: coords have incorrect shape\");this.padField(this._field[o],c)}}else if(t.ticks){var u=t.ticks;if(!Array.isArray(u)||2!==u.length)throw new Error(\"gl-surface: invalid ticks\");for(o=0;o<2;++o){var p=u[o];if((Array.isArray(p)||p.length)&&(p=f(p)),p.shape[0]!==a[o])throw new Error(\"gl-surface: invalid tick length\");var d=f(p.data,a);d.stride[o]=p.stride[0],d.stride[1^o]=0,this.padField(this._field[o],d)}}else{for(o=0;o<2;++o){var m=[0,0];m[o]=1,this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2],m,0)}this._field[0].set(0,0,0);for(var v=0;v0){for(var xt=0;xt<5;++xt)Q.pop();U-=1}continue t}Q.push(nt[0],nt[1],ot[0],ot[1],nt[2]),U+=1}}rt.push(U)}this._contourOffsets[$]=et,this._contourCounts[$]=rt}var bt=s.mallocFloat(Q.length);for(o=0;oi||r<0||r>i)throw new Error(\"gl-texture2d: Invalid texture size\");return t._shape=[e,r],t.bind(),n.texImage2D(n.TEXTURE_2D,0,t.format,e,r,0,t.format,t.type,null),t._mipLevels=[0],t}function p(t,e,r,n,i,a){this.gl=t,this.handle=e,this.format=i,this.type=a,this._shape=[r,n],this._mipLevels=[0],this._magFilter=t.NEAREST,this._minFilter=t.NEAREST,this._wrapS=t.CLAMP_TO_EDGE,this._wrapT=t.CLAMP_TO_EDGE,this._anisoSamples=1;var o=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return o._wrapS},set:function(t){return o.wrapS=t}},{get:function(){return o._wrapT},set:function(t){return o.wrapT=t}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return o._shape[0]},set:function(t){return o.width=t}},{get:function(){return o._shape[1]},set:function(t){return o.height=t}}]),this._shapeVector=l}var d=p.prototype;function m(t,e){return 3===t.length?1===e[2]&&e[1]===t[0]*t[2]&&e[0]===t[2]:1===e[0]&&e[1]===t[0]}function g(t){var e=t.createTexture();return t.bindTexture(t.TEXTURE_2D,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e}function v(t,e,r,n,i){var a=t.getParameter(t.MAX_TEXTURE_SIZE);if(e<0||e>a||r<0||r>a)throw new Error(\"gl-texture2d: Invalid texture shape\");if(i===t.FLOAT&&!t.getExtension(\"OES_texture_float\"))throw new Error(\"gl-texture2d: Floating point textures not supported on this platform\");var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,n,e,r,0,n,i,null),new p(t,o,e,r,n,i)}function y(t,e,r,n,i,a){var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,i,i,a,e),new p(t,o,r,n,i,a)}function x(t,e){var r=e.dtype,o=e.shape.slice(),s=t.getParameter(t.MAX_TEXTURE_SIZE);if(o[0]<0||o[0]>s||o[1]<0||o[1]>s)throw new Error(\"gl-texture2d: Invalid texture size\");var l=m(o,e.stride.slice()),c=0;\"float32\"===r?c=t.FLOAT:\"float64\"===r?(c=t.FLOAT,l=!1,r=\"float32\"):\"uint8\"===r?c=t.UNSIGNED_BYTE:(c=t.UNSIGNED_BYTE,l=!1,r=\"uint8\");var u,h,d=0;if(2===o.length)d=t.LUMINANCE,o=[o[0],o[1],1],e=n(e.data,o,[e.stride[0],e.stride[1],1],e.offset);else{if(3!==o.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===o[2])d=t.ALPHA;else if(2===o[2])d=t.LUMINANCE_ALPHA;else if(3===o[2])d=t.RGB;else{if(4!==o[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");d=t.RGBA}}c!==t.FLOAT||t.getExtension(\"OES_texture_float\")||(c=t.UNSIGNED_BYTE,l=!1);var v=e.size;if(l)u=0===e.offset&&e.data.length===v?e.data:e.data.subarray(e.offset,e.offset+v);else{var y=[o[2],o[2]*o[0],1];h=a.malloc(v,r);var x=n(h,o,y,0);\"float32\"!==r&&\"float64\"!==r||c!==t.UNSIGNED_BYTE?i.assign(x,e):f(x,e),u=h.subarray(0,v)}var b=g(t);return t.texImage2D(t.TEXTURE_2D,0,d,o[0],o[1],0,d,c,u),l||a.free(h),new p(t,b,o[0],o[1],d,c)}Object.defineProperties(d,{minFilter:{get:function(){return this._minFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,t),this._minFilter=t}},magFilter:{get:function(){return this._magFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,t),this._magFilter=t}},mipSamples:{get:function(){return this._anisoSamples},set:function(t){var e=this._anisoSamples;if(this._anisoSamples=0|Math.max(t,1),e!==this._anisoSamples){var r=this.gl.getExtension(\"EXT_texture_filter_anisotropic\");r&&this.gl.texParameterf(this.gl.TEXTURE_2D,r.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,t),this._wrapS=t}},wrapT:{get:function(){return this._wrapT},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,t),this._wrapT=t}},wrap:{get:function(){return this._wrapVector},set:function(t){if(Array.isArray(t)||(t=[t,t]),2!==t.length)throw new Error(\"gl-texture2d: Must specify wrap mode for rows and columns\");for(var e=0;e<2;++e)if(l.indexOf(t[e])<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);this._wrapS=t[0],this._wrapT=t[1];var r=this.gl;return this.bind(),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,this._wrapS),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,this._wrapT),t}},shape:{get:function(){return this._shapeVector},set:function(t){if(Array.isArray(t)){if(2!==t.length)throw new Error(\"gl-texture2d: Invalid texture shape\")}else t=[0|t,0|t];return h(this,0|t[0],0|t[1]),[0|t[0],0|t[1]]}},width:{get:function(){return this._shape[0]},set:function(t){return h(this,t|=0,this._shape[1]),t}},height:{get:function(){return this._shape[1]},set:function(t){return t|=0,h(this,this._shape[0],t),t}}}),d.bind=function(t){var e=this.gl;return void 0!==t&&e.activeTexture(e.TEXTURE0+(0|t)),e.bindTexture(e.TEXTURE_2D,this.handle),void 0!==t?0|t:e.getParameter(e.ACTIVE_TEXTURE)-e.TEXTURE0},d.dispose=function(){this.gl.deleteTexture(this.handle)},d.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var t=Math.min(this._shape[0],this._shape[1]),e=0;t>0;++e,t>>>=1)this._mipLevels.indexOf(e)<0&&this._mipLevels.push(e)},d.setPixels=function(t,e,r,o){var s=this.gl;this.bind(),Array.isArray(e)?(o=r,r=0|e[1],e=0|e[0]):(e=e||0,r=r||0),o=o||0;var l=u(t)?t:t.raw;if(l){this._mipLevels.indexOf(o)<0?(s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,this.type,l),this._mipLevels.push(o)):s.texSubImage2D(s.TEXTURE_2D,o,e,r,this.format,this.type,l)}else{if(!(t.shape&&t.stride&&t.data))throw new Error(\"gl-texture2d: Unsupported data type\");if(t.shape.length<2||e+t.shape[1]>this._shape[1]>>>o||r+t.shape[0]>this._shape[0]>>>o||e<0||r<0)throw new Error(\"gl-texture2d: Texture dimensions are out of bounds\");!function(t,e,r,o,s,l,c,u){var h=u.dtype,p=u.shape.slice();if(p.length<2||p.length>3)throw new Error(\"gl-texture2d: Invalid ndarray, must be 2d or 3d\");var d=0,g=0,v=m(p,u.stride.slice());\"float32\"===h?d=t.FLOAT:\"float64\"===h?(d=t.FLOAT,v=!1,h=\"float32\"):\"uint8\"===h?d=t.UNSIGNED_BYTE:(d=t.UNSIGNED_BYTE,v=!1,h=\"uint8\");if(2===p.length)g=t.LUMINANCE,p=[p[0],p[1],1],u=n(u.data,p,[u.stride[0],u.stride[1],1],u.offset);else{if(3!==p.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===p[2])g=t.ALPHA;else if(2===p[2])g=t.LUMINANCE_ALPHA;else if(3===p[2])g=t.RGB;else{if(4!==p[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");g=t.RGBA}p[2]}g!==t.LUMINANCE&&g!==t.ALPHA||s!==t.LUMINANCE&&s!==t.ALPHA||(g=s);if(g!==s)throw new Error(\"gl-texture2d: Incompatible texture format for setPixels\");var y=u.size,x=c.indexOf(o)<0;x&&c.push(o);if(d===l&&v)0===u.offset&&u.data.length===y?x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,u.data):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,u.data):x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,u.data.subarray(u.offset,u.offset+y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,u.data.subarray(u.offset,u.offset+y));else{var b;b=l===t.FLOAT?a.mallocFloat32(y):a.mallocUint8(y);var _=n(b,p,[p[2],p[2]*p[0],1]);d===t.FLOAT&&l===t.UNSIGNED_BYTE?f(_,u):i.assign(_,u),x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,b.subarray(0,y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,b.subarray(0,y)),l===t.FLOAT?a.freeFloat32(b):a.freeUint8(b)}}(s,e,r,o,this.format,this.type,this._mipLevels,t)}}},{ndarray:259,\"ndarray-ops\":254,\"typedarray-pool\":308}],147:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){e?e.bind():t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,null);var n=0|t.getParameter(t.MAX_VERTEX_ATTRIBS);if(r){if(r.length>n)throw new Error(\"gl-vao: Too many vertex attributes\");for(var i=0;i1?0:Math.acos(s)};var n=t(\"./fromValues\"),i=t(\"./normalize\"),a=t(\"./dot\")},{\"./dot\":162,\"./fromValues\":168,\"./normalize\":179}],153:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.ceil(e[0]),t[1]=Math.ceil(e[1]),t[2]=Math.ceil(e[2]),t}},{}],154:[function(t,e,r){e.exports=function(t){var e=new Float32Array(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}},{}],155:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}},{}],156:[function(t,e,r){e.exports=function(){var t=new Float32Array(3);return t[0]=0,t[1]=0,t[2]=0,t}},{}],157:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2];return t[0]=i*l-a*s,t[1]=a*o-n*l,t[2]=n*s-i*o,t}},{}],158:[function(t,e,r){e.exports=t(\"./distance\")},{\"./distance\":159}],159:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2];return Math.sqrt(r*r+n*n+i*i)}},{}],160:[function(t,e,r){e.exports=t(\"./divide\")},{\"./divide\":161}],161:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t}},{}],162:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}},{}],163:[function(t,e,r){e.exports=1e-6},{}],164:[function(t,e,r){e.exports=function(t,e){var r=t[0],i=t[1],a=t[2],o=e[0],s=e[1],l=e[2];return Math.abs(r-o)<=n*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(i-s)<=n*Math.max(1,Math.abs(i),Math.abs(s))&&Math.abs(a-l)<=n*Math.max(1,Math.abs(a),Math.abs(l))};var n=t(\"./epsilon\")},{\"./epsilon\":163}],165:[function(t,e,r){e.exports=function(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}},{}],166:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.floor(e[0]),t[1]=Math.floor(e[1]),t[2]=Math.floor(e[2]),t}},{}],167:[function(t,e,r){e.exports=function(t,e,r,i,a,o){var s,l;e||(e=3);r||(r=0);l=i?Math.min(i*e+r,t.length):t.length;for(s=r;s0&&(a=1/Math.sqrt(a),t[0]=e[0]*a,t[1]=e[1]*a,t[2]=e[2]*a);return t}},{}],180:[function(t,e,r){e.exports=function(t,e){e=e||1;var r=2*Math.random()*Math.PI,n=2*Math.random()-1,i=Math.sqrt(1-n*n)*e;return t[0]=Math.cos(r)*i,t[1]=Math.sin(r)*i,t[2]=n*e,t}},{}],181:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[1],a=r[2],o=e[1]-i,s=e[2]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=e[0],t[1]=i+o*c-s*l,t[2]=a+o*l+s*c,t}},{}],182:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[0],a=r[2],o=e[0]-i,s=e[2]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=i+s*l+o*c,t[1]=e[1],t[2]=a+s*c-o*l,t}},{}],183:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[0],a=r[1],o=e[0]-i,s=e[1]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=i+o*c-s*l,t[1]=a+o*l+s*c,t[2]=e[2],t}},{}],184:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.round(e[0]),t[1]=Math.round(e[1]),t[2]=Math.round(e[2]),t}},{}],185:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t}},{}],186:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t}},{}],187:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e,t[1]=r,t[2]=n,t}},{}],188:[function(t,e,r){e.exports=t(\"./squaredDistance\")},{\"./squaredDistance\":190}],189:[function(t,e,r){e.exports=t(\"./squaredLength\")},{\"./squaredLength\":191}],190:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2];return r*r+n*n+i*i}},{}],191:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return e*e+r*r+n*n}},{}],192:[function(t,e,r){e.exports=t(\"./subtract\")},{\"./subtract\":193}],193:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t}},{}],194:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2];return t[0]=n*r[0]+i*r[3]+a*r[6],t[1]=n*r[1]+i*r[4]+a*r[7],t[2]=n*r[2]+i*r[5]+a*r[8],t}},{}],195:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[3]*n+r[7]*i+r[11]*a+r[15];return o=o||1,t[0]=(r[0]*n+r[4]*i+r[8]*a+r[12])/o,t[1]=(r[1]*n+r[5]*i+r[9]*a+r[13])/o,t[2]=(r[2]*n+r[6]*i+r[10]*a+r[14])/o,t}},{}],196:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*a-l*i,f=c*i+l*n-o*a,h=c*a+o*i-s*n,p=-o*n-s*i-l*a;return t[0]=u*c+p*-o+f*-l-h*-s,t[1]=f*c+p*-s+h*-o-u*-l,t[2]=h*c+p*-l+u*-s-f*-o,t}},{}],197:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t[3]=e[3]+r[3],t}},{}],198:[function(t,e,r){e.exports=function(t){var e=new Float32Array(4);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}},{}],199:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}},{}],200:[function(t,e,r){e.exports=function(){var t=new Float32Array(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t}},{}],201:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2],a=e[3]-t[3];return Math.sqrt(r*r+n*n+i*i+a*a)}},{}],202:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t[3]=e[3]/r[3],t}},{}],203:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}},{}],204:[function(t,e,r){e.exports=function(t,e,r,n){var i=new Float32Array(4);return i[0]=t,i[1]=e,i[2]=r,i[3]=n,i}},{}],205:[function(t,e,r){e.exports={create:t(\"./create\"),clone:t(\"./clone\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),add:t(\"./add\"),subtract:t(\"./subtract\"),multiply:t(\"./multiply\"),divide:t(\"./divide\"),min:t(\"./min\"),max:t(\"./max\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),squaredDistance:t(\"./squaredDistance\"),length:t(\"./length\"),squaredLength:t(\"./squaredLength\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformQuat:t(\"./transformQuat\")}},{\"./add\":197,\"./clone\":198,\"./copy\":199,\"./create\":200,\"./distance\":201,\"./divide\":202,\"./dot\":203,\"./fromValues\":204,\"./inverse\":206,\"./length\":207,\"./lerp\":208,\"./max\":209,\"./min\":210,\"./multiply\":211,\"./negate\":212,\"./normalize\":213,\"./random\":214,\"./scale\":215,\"./scaleAndAdd\":216,\"./set\":217,\"./squaredDistance\":218,\"./squaredLength\":219,\"./subtract\":220,\"./transformMat4\":221,\"./transformQuat\":222}],206:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t[3]=1/e[3],t}},{}],207:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3];return Math.sqrt(e*e+r*r+n*n+i*i)}},{}],208:[function(t,e,r){e.exports=function(t,e,r,n){var i=e[0],a=e[1],o=e[2],s=e[3];return t[0]=i+n*(r[0]-i),t[1]=a+n*(r[1]-a),t[2]=o+n*(r[2]-o),t[3]=s+n*(r[3]-s),t}},{}],209:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t[3]=Math.max(e[3],r[3]),t}},{}],210:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t[3]=Math.min(e[3],r[3]),t}},{}],211:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t[3]=e[3]*r[3],t}},{}],212:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t[3]=-e[3],t}},{}],213:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=r*r+n*n+i*i+a*a;o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=n*o,t[2]=i*o,t[3]=a*o);return t}},{}],214:[function(t,e,r){var n=t(\"./normalize\"),i=t(\"./scale\");e.exports=function(t,e){return e=e||1,t[0]=Math.random(),t[1]=Math.random(),t[2]=Math.random(),t[3]=Math.random(),n(t,t),i(t,t,e),t}},{\"./normalize\":213,\"./scale\":215}],215:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t}},{}],216:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t[3]=e[3]+r[3]*n,t}},{}],217:[function(t,e,r){e.exports=function(t,e,r,n,i){return t[0]=e,t[1]=r,t[2]=n,t[3]=i,t}},{}],218:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2],a=e[3]-t[3];return r*r+n*n+i*i+a*a}},{}],219:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3];return e*e+r*r+n*n+i*i}},{}],220:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t[3]=e[3]-r[3],t}},{}],221:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*a+r[12]*o,t[1]=r[1]*n+r[5]*i+r[9]*a+r[13]*o,t[2]=r[2]*n+r[6]*i+r[10]*a+r[14]*o,t[3]=r[3]*n+r[7]*i+r[11]*a+r[15]*o,t}},{}],222:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*a-l*i,f=c*i+l*n-o*a,h=c*a+o*i-s*n,p=-o*n-s*i-l*a;return t[0]=u*c+p*-o+f*-l-h*-s,t[1]=f*c+p*-s+h*-o-u*-l,t[2]=h*c+p*-l+u*-s-f*-o,t[3]=e[3],t}},{}],223:[function(t,e,r){var n=t(\"glsl-tokenizer\"),i=t(\"atob-lite\");e.exports=function(t){for(var e=Array.isArray(t)?t:n(t),r=0;r0)continue;r=t.slice(0,1).join(\"\")}return A(r),v+=r.length,(p=p.slice(r.length)).length}}function I(){return/[^a-fA-F0-9]/.test(e)?(A(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function O(){return\".\"===e||/[eE]/.test(e)?(p.push(e),h=5,r=e,u+1):\"x\"===e&&1===p.length&&\"0\"===p[0]?(h=11,p.push(e),r=e,u+1):/[^\\d]/.test(e)?(A(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function z(){return\"f\"===e&&(p.push(e),r=e,u+=1),/[eE]/.test(e)?(p.push(e),r=e,u+1):(\"-\"!==e&&\"+\"!==e||!/[eE]/.test(r))&&/[^\\d]/.test(e)?(A(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function D(){if(/[^\\d\\w_]/.test(e)){var t=p.join(\"\");return h=k[t]?8:T[t]?7:6,A(p.join(\"\")),h=999,u}return p.push(e),r=e,u+1}};var n=t(\"./lib/literals\"),i=t(\"./lib/operators\"),a=t(\"./lib/builtins\"),o=t(\"./lib/literals-300es\"),s=t(\"./lib/builtins-300es\"),l=[\"block-comment\",\"line-comment\",\"preprocessor\",\"operator\",\"integer\",\"float\",\"ident\",\"builtin\",\"keyword\",\"whitespace\",\"eof\",\"integer\"]},{\"./lib/builtins\":226,\"./lib/builtins-300es\":225,\"./lib/literals\":228,\"./lib/literals-300es\":227,\"./lib/operators\":229}],225:[function(t,e,r){var n=t(\"./builtins\");n=n.slice().filter((function(t){return!/^(gl\\_|texture)/.test(t)})),e.exports=n.concat([\"gl_VertexID\",\"gl_InstanceID\",\"gl_Position\",\"gl_PointSize\",\"gl_FragCoord\",\"gl_FrontFacing\",\"gl_FragDepth\",\"gl_PointCoord\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexUniformVectors\",\"gl_MaxVertexOutputVectors\",\"gl_MaxFragmentInputVectors\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxTextureImageUnits\",\"gl_MaxFragmentUniformVectors\",\"gl_MaxDrawBuffers\",\"gl_MinProgramTexelOffset\",\"gl_MaxProgramTexelOffset\",\"gl_DepthRangeParameters\",\"gl_DepthRange\",\"trunc\",\"round\",\"roundEven\",\"isnan\",\"isinf\",\"floatBitsToInt\",\"floatBitsToUint\",\"intBitsToFloat\",\"uintBitsToFloat\",\"packSnorm2x16\",\"unpackSnorm2x16\",\"packUnorm2x16\",\"unpackUnorm2x16\",\"packHalf2x16\",\"unpackHalf2x16\",\"outerProduct\",\"transpose\",\"determinant\",\"inverse\",\"texture\",\"textureSize\",\"textureProj\",\"textureLod\",\"textureOffset\",\"texelFetch\",\"texelFetchOffset\",\"textureProjOffset\",\"textureLodOffset\",\"textureProjLod\",\"textureProjLodOffset\",\"textureGrad\",\"textureGradOffset\",\"textureProjGrad\",\"textureProjGradOffset\"])},{\"./builtins\":226}],226:[function(t,e,r){e.exports=[\"abs\",\"acos\",\"all\",\"any\",\"asin\",\"atan\",\"ceil\",\"clamp\",\"cos\",\"cross\",\"dFdx\",\"dFdy\",\"degrees\",\"distance\",\"dot\",\"equal\",\"exp\",\"exp2\",\"faceforward\",\"floor\",\"fract\",\"gl_BackColor\",\"gl_BackLightModelProduct\",\"gl_BackLightProduct\",\"gl_BackMaterial\",\"gl_BackSecondaryColor\",\"gl_ClipPlane\",\"gl_ClipVertex\",\"gl_Color\",\"gl_DepthRange\",\"gl_DepthRangeParameters\",\"gl_EyePlaneQ\",\"gl_EyePlaneR\",\"gl_EyePlaneS\",\"gl_EyePlaneT\",\"gl_Fog\",\"gl_FogCoord\",\"gl_FogFragCoord\",\"gl_FogParameters\",\"gl_FragColor\",\"gl_FragCoord\",\"gl_FragData\",\"gl_FragDepth\",\"gl_FragDepthEXT\",\"gl_FrontColor\",\"gl_FrontFacing\",\"gl_FrontLightModelProduct\",\"gl_FrontLightProduct\",\"gl_FrontMaterial\",\"gl_FrontSecondaryColor\",\"gl_LightModel\",\"gl_LightModelParameters\",\"gl_LightModelProducts\",\"gl_LightProducts\",\"gl_LightSource\",\"gl_LightSourceParameters\",\"gl_MaterialParameters\",\"gl_MaxClipPlanes\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxDrawBuffers\",\"gl_MaxFragmentUniformComponents\",\"gl_MaxLights\",\"gl_MaxTextureCoords\",\"gl_MaxTextureImageUnits\",\"gl_MaxTextureUnits\",\"gl_MaxVaryingFloats\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxVertexUniformComponents\",\"gl_ModelViewMatrix\",\"gl_ModelViewMatrixInverse\",\"gl_ModelViewMatrixInverseTranspose\",\"gl_ModelViewMatrixTranspose\",\"gl_ModelViewProjectionMatrix\",\"gl_ModelViewProjectionMatrixInverse\",\"gl_ModelViewProjectionMatrixInverseTranspose\",\"gl_ModelViewProjectionMatrixTranspose\",\"gl_MultiTexCoord0\",\"gl_MultiTexCoord1\",\"gl_MultiTexCoord2\",\"gl_MultiTexCoord3\",\"gl_MultiTexCoord4\",\"gl_MultiTexCoord5\",\"gl_MultiTexCoord6\",\"gl_MultiTexCoord7\",\"gl_Normal\",\"gl_NormalMatrix\",\"gl_NormalScale\",\"gl_ObjectPlaneQ\",\"gl_ObjectPlaneR\",\"gl_ObjectPlaneS\",\"gl_ObjectPlaneT\",\"gl_Point\",\"gl_PointCoord\",\"gl_PointParameters\",\"gl_PointSize\",\"gl_Position\",\"gl_ProjectionMatrix\",\"gl_ProjectionMatrixInverse\",\"gl_ProjectionMatrixInverseTranspose\",\"gl_ProjectionMatrixTranspose\",\"gl_SecondaryColor\",\"gl_TexCoord\",\"gl_TextureEnvColor\",\"gl_TextureMatrix\",\"gl_TextureMatrixInverse\",\"gl_TextureMatrixInverseTranspose\",\"gl_TextureMatrixTranspose\",\"gl_Vertex\",\"greaterThan\",\"greaterThanEqual\",\"inversesqrt\",\"length\",\"lessThan\",\"lessThanEqual\",\"log\",\"log2\",\"matrixCompMult\",\"max\",\"min\",\"mix\",\"mod\",\"normalize\",\"not\",\"notEqual\",\"pow\",\"radians\",\"reflect\",\"refract\",\"sign\",\"sin\",\"smoothstep\",\"sqrt\",\"step\",\"tan\",\"texture2D\",\"texture2DLod\",\"texture2DProj\",\"texture2DProjLod\",\"textureCube\",\"textureCubeLod\",\"texture2DLodEXT\",\"texture2DProjLodEXT\",\"textureCubeLodEXT\",\"texture2DGradEXT\",\"texture2DProjGradEXT\",\"textureCubeGradEXT\"]},{}],227:[function(t,e,r){var n=t(\"./literals\");e.exports=n.slice().concat([\"layout\",\"centroid\",\"smooth\",\"case\",\"mat2x2\",\"mat2x3\",\"mat2x4\",\"mat3x2\",\"mat3x3\",\"mat3x4\",\"mat4x2\",\"mat4x3\",\"mat4x4\",\"uvec2\",\"uvec3\",\"uvec4\",\"samplerCubeShadow\",\"sampler2DArray\",\"sampler2DArrayShadow\",\"isampler2D\",\"isampler3D\",\"isamplerCube\",\"isampler2DArray\",\"usampler2D\",\"usampler3D\",\"usamplerCube\",\"usampler2DArray\",\"coherent\",\"restrict\",\"readonly\",\"writeonly\",\"resource\",\"atomic_uint\",\"noperspective\",\"patch\",\"sample\",\"subroutine\",\"common\",\"partition\",\"active\",\"filter\",\"image1D\",\"image2D\",\"image3D\",\"imageCube\",\"iimage1D\",\"iimage2D\",\"iimage3D\",\"iimageCube\",\"uimage1D\",\"uimage2D\",\"uimage3D\",\"uimageCube\",\"image1DArray\",\"image2DArray\",\"iimage1DArray\",\"iimage2DArray\",\"uimage1DArray\",\"uimage2DArray\",\"image1DShadow\",\"image2DShadow\",\"image1DArrayShadow\",\"image2DArrayShadow\",\"imageBuffer\",\"iimageBuffer\",\"uimageBuffer\",\"sampler1DArray\",\"sampler1DArrayShadow\",\"isampler1D\",\"isampler1DArray\",\"usampler1D\",\"usampler1DArray\",\"isampler2DRect\",\"usampler2DRect\",\"samplerBuffer\",\"isamplerBuffer\",\"usamplerBuffer\",\"sampler2DMS\",\"isampler2DMS\",\"usampler2DMS\",\"sampler2DMSArray\",\"isampler2DMSArray\",\"usampler2DMSArray\"])},{\"./literals\":228}],228:[function(t,e,r){e.exports=[\"precision\",\"highp\",\"mediump\",\"lowp\",\"attribute\",\"const\",\"uniform\",\"varying\",\"break\",\"continue\",\"do\",\"for\",\"while\",\"if\",\"else\",\"in\",\"out\",\"inout\",\"float\",\"int\",\"uint\",\"void\",\"bool\",\"true\",\"false\",\"discard\",\"return\",\"mat2\",\"mat3\",\"mat4\",\"vec2\",\"vec3\",\"vec4\",\"ivec2\",\"ivec3\",\"ivec4\",\"bvec2\",\"bvec3\",\"bvec4\",\"sampler1D\",\"sampler2D\",\"sampler3D\",\"samplerCube\",\"sampler1DShadow\",\"sampler2DShadow\",\"struct\",\"asm\",\"class\",\"union\",\"enum\",\"typedef\",\"template\",\"this\",\"packed\",\"goto\",\"switch\",\"default\",\"inline\",\"noinline\",\"volatile\",\"public\",\"static\",\"extern\",\"external\",\"interface\",\"long\",\"short\",\"double\",\"half\",\"fixed\",\"unsigned\",\"input\",\"output\",\"hvec2\",\"hvec3\",\"hvec4\",\"dvec2\",\"dvec3\",\"dvec4\",\"fvec2\",\"fvec3\",\"fvec4\",\"sampler2DRect\",\"sampler3DRect\",\"sampler2DRectShadow\",\"sizeof\",\"cast\",\"namespace\",\"using\"]},{}],229:[function(t,e,r){e.exports=[\"<<=\",\">>=\",\"++\",\"--\",\"<<\",\">>\",\"<=\",\">=\",\"==\",\"!=\",\"&&\",\"||\",\"+=\",\"-=\",\"*=\",\"/=\",\"%=\",\"&=\",\"^^\",\"^=\",\"|=\",\"(\",\")\",\"[\",\"]\",\".\",\"!\",\"~\",\"*\",\"/\",\"%\",\"+\",\"-\",\"<\",\">\",\"&\",\"^\",\"|\",\"?\",\":\",\"=\",\",\",\";\",\"{\",\"}\"]},{}],230:[function(t,e,r){var n=t(\"./index\");e.exports=function(t,e){var r=n(e),i=[];return i=(i=i.concat(r(t))).concat(r(null))}},{\"./index\":224}],231:[function(t,e,r){e.exports=function(t){\"string\"==typeof t&&(t=[t]);for(var e=[].slice.call(arguments,1),r=[],n=0;n0;)for(var s=(t=o.pop()).adjacent,l=0;l<=r;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-n)){for(var u=c.vertices,f=0;f<=r;++f){var h=u[f];i[f]=h<0?e:a[h]}var p=this.orient();if(p>0)return c;c.lastVisited=-n,0===p&&o.push(c)}}return null},u.walk=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,a=this.tuple,o=e?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[o];t:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;u<=n;++u)a[u]=i[l[u]];s.lastVisited=r;for(u=0;u<=n;++u){var f=c[u];if(!(f.lastVisited>=r)){var h=a[u];a[u]=t;var p=this.orient();if(a[u]=h,p<0){s=f;continue t}f.boundary?f.lastVisited=-r:f.lastVisited=r}}return}return s},u.addPeaks=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,f=[e];e.lastVisited=r,e.vertices[e.vertices.indexOf(-1)]=r,e.boundary=!1,c.push(e);for(var h=[];f.length>0;){var p=(e=f.pop()).vertices,d=e.adjacent,m=p.indexOf(r);if(!(m<0))for(var g=0;g<=n;++g)if(g!==m){var v=d[g];if(v.boundary&&!(v.lastVisited>=r)){var y=v.vertices;if(v.lastVisited!==-r){for(var x=0,b=0;b<=n;++b)y[b]<0?(x=b,l[b]=t):l[b]=i[y[b]];if(this.orient()>0){y[x]=r,v.boundary=!1,c.push(v),f.push(v),v.lastVisited=r;continue}v.lastVisited=-r}var _=v.adjacent,w=p.slice(),T=d.slice(),k=new a(w,T,!0);u.push(k);var A=_.indexOf(e);if(!(A<0)){_[A]=k,T[m]=v,w[g]=-1,T[g]=e,d[g]=k,k.flip();for(b=0;b<=n;++b){var M=w[b];if(!(M<0||M===r)){for(var S=new Array(n-1),E=0,L=0;L<=n;++L){var C=w[L];C<0||L===b||(S[E++]=C)}h.push(new o(S,k,b))}}}}}}h.sort(s);for(g=0;g+1=0?o[l++]=s[u]:c=1&u;if(c===(1&t)){var f=o[0];o[0]=o[1],o[1]=f}e.push(o)}}return e}},{\"robust-orientation\":284,\"simplicial-complex\":293}],234:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\");function i(t,e,r,n,i){this.mid=t,this.left=e,this.right=r,this.leftPoints=n,this.rightPoints=i,this.count=(e?e.count:0)+(r?r.count:0)+n.length}e.exports=function(t){if(!t||0===t.length)return new v(null);return new v(g(t))};var a=i.prototype;function o(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function s(t,e){var r=g(e);t.mid=r.mid,t.left=r.left,t.right=r.right,t.leftPoints=r.leftPoints,t.rightPoints=r.rightPoints,t.count=r.count}function l(t,e){var r=t.intervals([]);r.push(e),s(t,r)}function c(t,e){var r=t.intervals([]),n=r.indexOf(e);return n<0?0:(r.splice(n,1),s(t,r),1)}function u(t,e,r){for(var n=0;n=0&&t[n][1]>=e;--n){var i=r(t[n]);if(i)return i}}function h(t,e){for(var r=0;r>1],a=[],o=[],s=[];for(r=0;r3*(e+1)?l(this,t):this.left.insert(t):this.left=g([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?l(this,t):this.right.insert(t):this.right=g([t]);else{var r=n.ge(this.leftPoints,t,d),i=n.ge(this.rightPoints,t,m);this.leftPoints.splice(r,0,t),this.rightPoints.splice(i,0,t)}},a.remove=function(t){var e=this.count-this.leftPoints;if(t[1]3*(e-1)?c(this,t):2===(s=this.left.remove(t))?(this.left=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(t[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(e-1)?c(this,t):2===(s=this.right.remove(t))?(this.right=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(1===this.count)return this.leftPoints[0]===t?2:0;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var r=this,i=this.left;i.right;)r=i,i=i.right;if(r===this)i.right=this.right;else{var a=this.left,s=this.right;r.count-=i.count,r.right=i.left,i.left=a,i.right=s}o(this,i),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?o(this,this.left):o(this,this.right);return 1}for(a=n.ge(this.leftPoints,t,d);athis.mid){var r;if(this.right)if(r=this.right.queryPoint(t,e))return r;return f(this.rightPoints,t,e)}return h(this.leftPoints,e)},a.queryInterval=function(t,e,r){var n;if(tthis.mid&&this.right&&(n=this.right.queryInterval(t,e,r)))return n;return ethis.mid?f(this.rightPoints,t,r):h(this.leftPoints,r)};var y=v.prototype;y.insert=function(t){this.root?this.root.insert(t):this.root=new i(t[0],null,null,[t],[t])},y.remove=function(t){if(this.root){var e=this.root.remove(t);return 2===e&&(this.root=null),0!==e}return!1},y.queryPoint=function(t,e){if(this.root)return this.root.queryPoint(t,e)},y.queryInterval=function(t,e,r){if(t<=e&&this.root)return this.root.queryInterval(t,e,r)},Object.defineProperty(y,\"count\",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(y,\"intervals\",{get:function(){return this.root?this.root.intervals([]):[]}})},{\"binary-search-bounds\":31}],235:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t),r=0;r\n", + " * @license MIT\n", + " */\n", + "e.exports=function(t){return null!=t&&(n(t)||function(t){return\"function\"==typeof t.readFloatLE&&\"function\"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},{}],238:[function(t,e,r){\"use strict\";e.exports=a,e.exports.isMobile=a,e.exports.default=a;var n=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,i=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino|android|ipad|playbook|silk/i;function a(t){t||(t={});var e=t.ua;if(e||\"undefined\"==typeof navigator||(e=navigator.userAgent),e&&e.headers&&\"string\"==typeof e.headers[\"user-agent\"]&&(e=e.headers[\"user-agent\"]),\"string\"!=typeof e)return!1;var r=t.tablet?i.test(e):n.test(e);return!r&&t.tablet&&t.featureDetect&&navigator&&navigator.maxTouchPoints>1&&-1!==e.indexOf(\"Macintosh\")&&-1!==e.indexOf(\"Safari\")&&(r=!0),r}},{}],239:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=t.length,n=0;n13)&&32!==e&&133!==e&&160!==e&&5760!==e&&6158!==e&&(e<8192||e>8205)&&8232!==e&&8233!==e&&8239!==e&&8287!==e&&8288!==e&&12288!==e&&65279!==e)return!1;return!0}},{}],240:[function(t,e,r){e.exports=function(t,e,r){return t*(1-r)+e*r}},{}],241:[function(t,e,r){var n=t(\"./normalize\"),i=t(\"gl-mat4/create\"),a=t(\"gl-mat4/clone\"),o=t(\"gl-mat4/determinant\"),s=t(\"gl-mat4/invert\"),l=t(\"gl-mat4/transpose\"),c={length:t(\"gl-vec3/length\"),normalize:t(\"gl-vec3/normalize\"),dot:t(\"gl-vec3/dot\"),cross:t(\"gl-vec3/cross\")},u=i(),f=i(),h=[0,0,0,0],p=[[0,0,0],[0,0,0],[0,0,0]],d=[0,0,0];function m(t,e,r,n,i){t[0]=e[0]*n+r[0]*i,t[1]=e[1]*n+r[1]*i,t[2]=e[2]*n+r[2]*i}e.exports=function(t,e,r,i,g,v){if(e||(e=[0,0,0]),r||(r=[0,0,0]),i||(i=[0,0,0]),g||(g=[0,0,0,1]),v||(v=[0,0,0,1]),!n(u,t))return!1;if(a(f,u),f[3]=0,f[7]=0,f[11]=0,f[15]=1,Math.abs(o(f)<1e-8))return!1;var y,x,b,_,w,T,k,A=u[3],M=u[7],S=u[11],E=u[12],L=u[13],C=u[14],P=u[15];if(0!==A||0!==M||0!==S){if(h[0]=A,h[1]=M,h[2]=S,h[3]=P,!s(f,f))return!1;l(f,f),y=g,b=f,_=(x=h)[0],w=x[1],T=x[2],k=x[3],y[0]=b[0]*_+b[4]*w+b[8]*T+b[12]*k,y[1]=b[1]*_+b[5]*w+b[9]*T+b[13]*k,y[2]=b[2]*_+b[6]*w+b[10]*T+b[14]*k,y[3]=b[3]*_+b[7]*w+b[11]*T+b[15]*k}else g[0]=g[1]=g[2]=0,g[3]=1;if(e[0]=E,e[1]=L,e[2]=C,function(t,e){t[0][0]=e[0],t[0][1]=e[1],t[0][2]=e[2],t[1][0]=e[4],t[1][1]=e[5],t[1][2]=e[6],t[2][0]=e[8],t[2][1]=e[9],t[2][2]=e[10]}(p,u),r[0]=c.length(p[0]),c.normalize(p[0],p[0]),i[0]=c.dot(p[0],p[1]),m(p[1],p[1],p[0],1,-i[0]),r[1]=c.length(p[1]),c.normalize(p[1],p[1]),i[0]/=r[1],i[1]=c.dot(p[0],p[2]),m(p[2],p[2],p[0],1,-i[1]),i[2]=c.dot(p[1],p[2]),m(p[2],p[2],p[1],1,-i[2]),r[2]=c.length(p[2]),c.normalize(p[2],p[2]),i[1]/=r[2],i[2]/=r[2],c.cross(d,p[1],p[2]),c.dot(p[0],d)<0)for(var I=0;I<3;I++)r[I]*=-1,p[I][0]*=-1,p[I][1]*=-1,p[I][2]*=-1;return v[0]=.5*Math.sqrt(Math.max(1+p[0][0]-p[1][1]-p[2][2],0)),v[1]=.5*Math.sqrt(Math.max(1-p[0][0]+p[1][1]-p[2][2],0)),v[2]=.5*Math.sqrt(Math.max(1-p[0][0]-p[1][1]+p[2][2],0)),v[3]=.5*Math.sqrt(Math.max(1+p[0][0]+p[1][1]+p[2][2],0)),p[2][1]>p[1][2]&&(v[0]=-v[0]),p[0][2]>p[2][0]&&(v[1]=-v[1]),p[1][0]>p[0][1]&&(v[2]=-v[2]),!0}},{\"./normalize\":242,\"gl-mat4/clone\":92,\"gl-mat4/create\":93,\"gl-mat4/determinant\":94,\"gl-mat4/invert\":98,\"gl-mat4/transpose\":109,\"gl-vec3/cross\":157,\"gl-vec3/dot\":162,\"gl-vec3/length\":172,\"gl-vec3/normalize\":179}],242:[function(t,e,r){e.exports=function(t,e){var r=e[15];if(0===r)return!1;for(var n=1/r,i=0;i<16;i++)t[i]=e[i]*n;return!0}},{}],243:[function(t,e,r){var n=t(\"gl-vec3/lerp\"),i=t(\"mat4-recompose\"),a=t(\"mat4-decompose\"),o=t(\"gl-mat4/determinant\"),s=t(\"quat-slerp\"),l=f(),c=f(),u=f();function f(){return{translate:h(),scale:h(1),skew:h(),perspective:[0,0,0,1],quaternion:[0,0,0,1]}}function h(t){return[t||0,t||0,t||0]}e.exports=function(t,e,r,f){if(0===o(e)||0===o(r))return!1;var h=a(e,l.translate,l.scale,l.skew,l.perspective,l.quaternion),p=a(r,c.translate,c.scale,c.skew,c.perspective,c.quaternion);return!(!h||!p)&&(n(u.translate,l.translate,c.translate,f),n(u.skew,l.skew,c.skew,f),n(u.scale,l.scale,c.scale,f),n(u.perspective,l.perspective,c.perspective,f),s(u.quaternion,l.quaternion,c.quaternion,f),i(t,u.translate,u.scale,u.skew,u.perspective,u.quaternion),!0)}},{\"gl-mat4/determinant\":94,\"gl-vec3/lerp\":173,\"mat4-decompose\":241,\"mat4-recompose\":244,\"quat-slerp\":271}],244:[function(t,e,r){var n={identity:t(\"gl-mat4/identity\"),translate:t(\"gl-mat4/translate\"),multiply:t(\"gl-mat4/multiply\"),create:t(\"gl-mat4/create\"),scale:t(\"gl-mat4/scale\"),fromRotationTranslation:t(\"gl-mat4/fromRotationTranslation\")},i=(n.create(),n.create());e.exports=function(t,e,r,a,o,s){return n.identity(t),n.fromRotationTranslation(t,s,e),t[3]=o[0],t[7]=o[1],t[11]=o[2],t[15]=o[3],n.identity(i),0!==a[2]&&(i[9]=a[2],n.multiply(t,t,i)),0!==a[1]&&(i[9]=0,i[8]=a[1],n.multiply(t,t,i)),0!==a[0]&&(i[8]=0,i[4]=a[0],n.multiply(t,t,i)),n.scale(t,t,r),t}},{\"gl-mat4/create\":93,\"gl-mat4/fromRotationTranslation\":96,\"gl-mat4/identity\":97,\"gl-mat4/multiply\":100,\"gl-mat4/scale\":107,\"gl-mat4/translate\":108}],245:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),i=t(\"mat4-interpolate\"),a=t(\"gl-mat4/invert\"),o=t(\"gl-mat4/rotateX\"),s=t(\"gl-mat4/rotateY\"),l=t(\"gl-mat4/rotateZ\"),c=t(\"gl-mat4/lookAt\"),u=t(\"gl-mat4/translate\"),f=(t(\"gl-mat4/scale\"),t(\"gl-vec3/normalize\")),h=[0,0,0];function p(t){this._components=t.slice(),this._time=[0],this.prevMatrix=t.slice(),this.nextMatrix=t.slice(),this.computedMatrix=t.slice(),this.computedInverse=t.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-1/0,1/0]}e.exports=function(t){return new p((t=t||{}).matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};var d=p.prototype;d.recalcMatrix=function(t){var e=this._time,r=n.le(e,t),o=this.computedMatrix;if(!(r<0)){var s=this._components;if(r===e.length-1)for(var l=16*r,c=0;c<16;++c)o[c]=s[l++];else{var u=e[r+1]-e[r],h=(l=16*r,this.prevMatrix),p=!0;for(c=0;c<16;++c)h[c]=s[l++];var d=this.nextMatrix;for(c=0;c<16;++c)d[c]=s[l++],p=p&&h[c]===d[c];if(u<1e-6||p)for(c=0;c<16;++c)o[c]=h[c];else i(o,h,d,(t-e[r])/u)}var m=this.computedUp;m[0]=o[1],m[1]=o[5],m[2]=o[9],f(m,m);var g=this.computedInverse;a(g,o);var v=this.computedEye,y=g[15];v[0]=g[12]/y,v[1]=g[13]/y,v[2]=g[14]/y;var x=this.computedCenter,b=Math.exp(this.computedRadius[0]);for(c=0;c<3;++c)x[c]=v[c]-o[2+4*c]*b}},d.idle=function(t){if(!(t1&&n(t[o[u-2]],t[o[u-1]],c)<=0;)u-=1,o.pop();for(o.push(l),u=s.length;u>1&&n(t[s[u-2]],t[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}r=new Array(s.length+o.length-2);for(var f=0,h=(i=0,o.length);i0;--p)r[f++]=s[p];return r};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":284}],247:[function(t,e,r){\"use strict\";e.exports=function(t,e){e||(e=t,t=window);var r=0,i=0,a=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(t){var e=!1;return\"altKey\"in t&&(e=e||t.altKey!==o.alt,o.alt=!!t.altKey),\"shiftKey\"in t&&(e=e||t.shiftKey!==o.shift,o.shift=!!t.shiftKey),\"ctrlKey\"in t&&(e=e||t.ctrlKey!==o.control,o.control=!!t.ctrlKey),\"metaKey\"in t&&(e=e||t.metaKey!==o.meta,o.meta=!!t.metaKey),e}function c(t,s){var c=n.x(s),u=n.y(s);\"buttons\"in s&&(t=0|s.buttons),(t!==r||c!==i||u!==a||l(s))&&(r=0|t,i=c||0,a=u||0,e&&e(r,i,a,o))}function u(t){c(0,t)}function f(){(r||i||a||o.shift||o.alt||o.meta||o.control)&&(i=a=0,r=0,o.shift=o.alt=o.control=o.meta=!1,e&&e(0,0,0,o))}function h(t){l(t)&&e&&e(r,i,a,o)}function p(t){0===n.buttons(t)?c(0,t):c(r,t)}function d(t){c(r|n.buttons(t),t)}function m(t){c(r&~n.buttons(t),t)}function g(){s||(s=!0,t.addEventListener(\"mousemove\",p),t.addEventListener(\"mousedown\",d),t.addEventListener(\"mouseup\",m),t.addEventListener(\"mouseleave\",u),t.addEventListener(\"mouseenter\",u),t.addEventListener(\"mouseout\",u),t.addEventListener(\"mouseover\",u),t.addEventListener(\"blur\",f),t.addEventListener(\"keyup\",h),t.addEventListener(\"keydown\",h),t.addEventListener(\"keypress\",h),t!==window&&(window.addEventListener(\"blur\",f),window.addEventListener(\"keyup\",h),window.addEventListener(\"keydown\",h),window.addEventListener(\"keypress\",h)))}g();var v={element:t};return Object.defineProperties(v,{enabled:{get:function(){return s},set:function(e){e?g():function(){if(!s)return;s=!1,t.removeEventListener(\"mousemove\",p),t.removeEventListener(\"mousedown\",d),t.removeEventListener(\"mouseup\",m),t.removeEventListener(\"mouseleave\",u),t.removeEventListener(\"mouseenter\",u),t.removeEventListener(\"mouseout\",u),t.removeEventListener(\"mouseover\",u),t.removeEventListener(\"blur\",f),t.removeEventListener(\"keyup\",h),t.removeEventListener(\"keydown\",h),t.removeEventListener(\"keypress\",h),t!==window&&(window.removeEventListener(\"blur\",f),window.removeEventListener(\"keyup\",h),window.removeEventListener(\"keydown\",h),window.removeEventListener(\"keypress\",h))}()},enumerable:!0},buttons:{get:function(){return r},enumerable:!0},x:{get:function(){return i},enumerable:!0},y:{get:function(){return a},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),v};var n=t(\"mouse-event\")},{\"mouse-event\":249}],248:[function(t,e,r){var n={left:0,top:0};e.exports=function(t,e,r){e=e||t.currentTarget||t.srcElement,Array.isArray(r)||(r=[0,0]);var i=t.clientX||0,a=t.clientY||0,o=(s=e,s===window||s===document||s===document.body?n:s.getBoundingClientRect());var s;return r[0]=i-o.left,r[1]=a-o.top,r}},{}],249:[function(t,e,r){\"use strict\";function n(t){return t.target||t.srcElement||window}r.buttons=function(t){if(\"object\"==typeof t){if(\"buttons\"in t)return t.buttons;if(\"which\"in t){if(2===(e=t.which))return 4;if(3===e)return 2;if(e>0)return 1<=0)return 1< 0\");\"function\"!=typeof t.vertex&&e(\"Must specify vertex creation function\");\"function\"!=typeof t.cell&&e(\"Must specify cell creation function\");\"function\"!=typeof t.phase&&e(\"Must specify phase function\");for(var s=t.getters||[],l=new Array(a),c=0;c=0?l[c]=!0:l[c]=!1;return function(t,e,r,a,o,s){var l=[s,o].join(\",\");return(0,i[l])(t,e,r,n.mallocUint32,n.freeUint32)}(t.vertex,t.cell,t.phase,0,r,l)};var i={\"false,0,1\":function(t,e,r,n,i){return function(a,o,s,l){var c,u=0|a.shape[0],f=0|a.shape[1],h=a.data,p=0|a.offset,d=0|a.stride[0],m=0|a.stride[1],g=p,v=0|-d,y=0,x=0|-m,b=0,_=-d-m|0,w=0,T=0|d,k=m-d*u|0,A=0,M=0,S=0,E=2*u|0,L=n(E),C=n(E),P=0,I=0,O=-1,z=-1,D=0,R=0|-u,F=0|u,B=0,N=-u-1|0,j=u-1|0,U=0,V=0,H=0;for(A=0;A0){if(M=1,L[P++]=r(h[g],o,s,l),g+=T,u>0)for(A=1,c=h[g],I=L[P]=r(c,o,s,l),D=L[P+O],B=L[P+R],U=L[P+N],I===D&&I===B&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,D,B,U,o,s,l),V=C[P]=S++),P+=1,g+=T,A=2;A0)for(A=1,c=h[g],I=L[P]=r(c,o,s,l),D=L[P+O],B=L[P+R],U=L[P+N],I===D&&I===B&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,D,B,U,o,s,l),V=C[P]=S++,U!==B&&e(C[P+R],V,b,w,B,U,o,s,l)),P+=1,g+=T,A=2;A0){if(A=1,L[P++]=r(h[g],o,s,l),g+=T,f>0)for(M=1,c=h[g],I=L[P]=r(c,o,s,l),B=L[P+R],D=L[P+O],U=L[P+N],I===B&&I===D&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,B,D,U,o,s,l),V=C[P]=S++),P+=1,g+=T,M=2;M0)for(M=1,c=h[g],I=L[P]=r(c,o,s,l),B=L[P+R],D=L[P+O],U=L[P+N],I===B&&I===D&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,B,D,U,o,s,l),V=C[P]=S++,U!==B&&e(C[P+R],V,w,y,U,B,o,s,l)),P+=1,g+=T,M=2;M2&&a[1]>2&&n(i.pick(-1,-1).lo(1,1).hi(a[0]-2,a[1]-2),t.pick(-1,-1,0).lo(1,1).hi(a[0]-2,a[1]-2),t.pick(-1,-1,1).lo(1,1).hi(a[0]-2,a[1]-2)),a[1]>2&&(r(i.pick(0,-1).lo(1).hi(a[1]-2),t.pick(0,-1,1).lo(1).hi(a[1]-2)),e(t.pick(0,-1,0).lo(1).hi(a[1]-2))),a[1]>2&&(r(i.pick(a[0]-1,-1).lo(1).hi(a[1]-2),t.pick(a[0]-1,-1,1).lo(1).hi(a[1]-2)),e(t.pick(a[0]-1,-1,0).lo(1).hi(a[1]-2))),a[0]>2&&(r(i.pick(-1,0).lo(1).hi(a[0]-2),t.pick(-1,0,0).lo(1).hi(a[0]-2)),e(t.pick(-1,0,1).lo(1).hi(a[0]-2))),a[0]>2&&(r(i.pick(-1,a[1]-1).lo(1).hi(a[0]-2),t.pick(-1,a[1]-1,0).lo(1).hi(a[0]-2)),e(t.pick(-1,a[1]-1,1).lo(1).hi(a[0]-2))),t.set(0,0,0,0),t.set(0,0,1,0),t.set(a[0]-1,0,0,0),t.set(a[0]-1,0,1,0),t.set(0,a[1]-1,0,0),t.set(0,a[1]-1,1,0),t.set(a[0]-1,a[1]-1,0,0),t.set(a[0]-1,a[1]-1,1,0),t}}e.exports=function(t,e,r){return Array.isArray(r)||(r=n(e.dimension,\"string\"==typeof r?r:\"clamp\")),0===e.size?t:0===e.dimension?(t.set(0),t):function(t){var e=t.join();if(a=u[e])return a;for(var r=t.length,n=[f,h],i=1;i<=r;++i)n.push(p(i));var a=d.apply(void 0,n);return u[e]=a,a}(r)(t,e)}},{dup:65}],253:[function(t,e,r){\"use strict\";function n(t,e){var r=Math.floor(e),n=e-r,i=0<=r&&r0;){x<64?(l=x,x=0):(l=64,x-=64);for(var b=0|t[1];b>0;){b<64?(c=b,b=0):(c=64,b-=64),n=v+x*f+b*h,o=y+x*d+b*m;var _=0,w=0,T=0,k=p,A=f-u*p,M=h-l*f,S=g,E=d-u*g,L=m-l*d;for(T=0;T0;){m<64?(l=m,m=0):(l=64,m-=64);for(var g=0|t[0];g>0;){g<64?(s=g,g=0):(s=64,g-=64),n=p+m*u+g*c,o=d+m*h+g*f;var v=0,y=0,x=u,b=c-l*u,_=h,w=f-l*h;for(y=0;y0;){y<64?(c=y,y=0):(c=64,y-=64);for(var x=0|t[0];x>0;){x<64?(s=x,x=0):(s=64,x-=64);for(var b=0|t[1];b>0;){b<64?(l=b,b=0):(l=64,b-=64),n=g+y*h+x*u+b*f,o=v+y*m+x*p+b*d;var _=0,w=0,T=0,k=h,A=u-c*h,M=f-s*u,S=m,E=p-c*m,L=d-s*p;for(T=0;Tr;){v=0,y=m-o;e:for(g=0;gb)break e;y+=f,v+=h}for(v=m,y=m-o,g=0;g>1,q=H-j,G=H+j,Y=U,W=q,X=H,Z=G,J=V,K=i+1,Q=a-1,$=!0,tt=0,et=0,rt=0,nt=f,it=e(nt),at=e(nt);A=l*Y,M=l*W,N=s;t:for(k=0;k0){g=Y,Y=W,W=g;break t}if(rt<0)break t;N+=p}A=l*Z,M=l*J,N=s;t:for(k=0;k0){g=Z,Z=J,J=g;break t}if(rt<0)break t;N+=p}A=l*Y,M=l*X,N=s;t:for(k=0;k0){g=Y,Y=X,X=g;break t}if(rt<0)break t;N+=p}A=l*W,M=l*X,N=s;t:for(k=0;k0){g=W,W=X,X=g;break t}if(rt<0)break t;N+=p}A=l*Y,M=l*Z,N=s;t:for(k=0;k0){g=Y,Y=Z,Z=g;break t}if(rt<0)break t;N+=p}A=l*X,M=l*Z,N=s;t:for(k=0;k0){g=X,X=Z,Z=g;break t}if(rt<0)break t;N+=p}A=l*W,M=l*J,N=s;t:for(k=0;k0){g=W,W=J,J=g;break t}if(rt<0)break t;N+=p}A=l*W,M=l*X,N=s;t:for(k=0;k0){g=W,W=X,X=g;break t}if(rt<0)break t;N+=p}A=l*Z,M=l*J,N=s;t:for(k=0;k0){g=Z,Z=J,J=g;break t}if(rt<0)break t;N+=p}for(A=l*Y,M=l*W,S=l*X,E=l*Z,L=l*J,C=l*U,P=l*H,I=l*V,B=0,N=s,k=0;k0)){if(rt<0){for(A=l*b,M=l*K,S=l*Q,N=s,k=0;k0)for(;;){_=s+Q*l,B=0;t:for(k=0;k0)){_=s+Q*l,B=0;t:for(k=0;kV){t:for(;;){for(_=s+K*l,B=0,N=s,k=0;k1&&n?s(r,n[0],n[1]):s(r)}(t,e,l);return n(l,c)}},{\"typedarray-pool\":308}],258:[function(t,e,r){\"use strict\";var n=t(\"./lib/compile_sort.js\"),i={};e.exports=function(t){var e=t.order,r=t.dtype,a=[e,r].join(\":\"),o=i[a];return o||(i[a]=o=n(e,r)),o(t),t}},{\"./lib/compile_sort.js\":257}],259:[function(t,e,r){var n=t(\"is-buffer\"),i=\"undefined\"!=typeof Float64Array;function a(t,e){return t[0]-e[0]}function o(){var t,e=this.stride,r=new Array(e.length);for(t=0;t=0&&(e+=a*(r=0|t),i-=r),new n(this.data,i,a,e)},i.step=function(t){var e=this.shape[0],r=this.stride[0],i=this.offset,a=0,o=Math.ceil;return\"number\"==typeof t&&((a=0|t)<0?(i+=r*(e-1),e=o(-e/a)):e=o(e/a),r*=a),new n(this.data,e,r,i)},i.transpose=function(t){t=void 0===t?0:0|t;var e=this.shape,r=this.stride;return new n(this.data,e[t],r[t],this.offset)},i.pick=function(t){var r=[],n=[],i=this.offset;return\"number\"==typeof t&&t>=0?i=i+this.stride[0]*t|0:(r.push(this.shape[0]),n.push(this.stride[0])),(0,e[r.length+1])(this.data,r,n,i)},function(t,e,r,i){return new n(t,e[0],r[0],i)}},2:function(t,e,r){function n(t,e,r,n,i,a){this.data=t,this.shape=[e,r],this.stride=[n,i],this.offset=0|a}var i=n.prototype;return i.dtype=t,i.dimension=2,Object.defineProperty(i,\"size\",{get:function(){return this.shape[0]*this.shape[1]}}),Object.defineProperty(i,\"order\",{get:function(){return Math.abs(this.stride[0])>Math.abs(this.stride[1])?[1,0]:[0,1]}}),i.set=function(e,r,n){return\"generic\"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r,n):this.data[this.offset+this.stride[0]*e+this.stride[1]*r]=n},i.get=function(e,r){return\"generic\"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r):this.data[this.offset+this.stride[0]*e+this.stride[1]*r]},i.index=function(t,e){return this.offset+this.stride[0]*t+this.stride[1]*e},i.hi=function(t,e){return new n(this.data,\"number\"!=typeof t||t<0?this.shape[0]:0|t,\"number\"!=typeof e||e<0?this.shape[1]:0|e,this.stride[0],this.stride[1],this.offset)},i.lo=function(t,e){var r=this.offset,i=0,a=this.shape[0],o=this.shape[1],s=this.stride[0],l=this.stride[1];return\"number\"==typeof t&&t>=0&&(r+=s*(i=0|t),a-=i),\"number\"==typeof e&&e>=0&&(r+=l*(i=0|e),o-=i),new n(this.data,a,o,s,l,r)},i.step=function(t,e){var r=this.shape[0],i=this.shape[1],a=this.stride[0],o=this.stride[1],s=this.offset,l=0,c=Math.ceil;return\"number\"==typeof t&&((l=0|t)<0?(s+=a*(r-1),r=c(-r/l)):r=c(r/l),a*=l),\"number\"==typeof e&&((l=0|e)<0?(s+=o*(i-1),i=c(-i/l)):i=c(i/l),o*=l),new n(this.data,r,i,a,o,s)},i.transpose=function(t,e){t=void 0===t?0:0|t,e=void 0===e?1:0|e;var r=this.shape,i=this.stride;return new n(this.data,r[t],r[e],i[t],i[e],this.offset)},i.pick=function(t,r){var n=[],i=[],a=this.offset;return\"number\"==typeof t&&t>=0?a=a+this.stride[0]*t|0:(n.push(this.shape[0]),i.push(this.stride[0])),\"number\"==typeof r&&r>=0?a=a+this.stride[1]*r|0:(n.push(this.shape[1]),i.push(this.stride[1])),(0,e[n.length+1])(this.data,n,i,a)},function(t,e,r,i){return new n(t,e[0],e[1],r[0],r[1],i)}},3:function(t,e,r){function n(t,e,r,n,i,a,o,s){this.data=t,this.shape=[e,r,n],this.stride=[i,a,o],this.offset=0|s}var i=n.prototype;return i.dtype=t,i.dimension=3,Object.defineProperty(i,\"size\",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]}}),Object.defineProperty(i,\"order\",{get:function(){var t=Math.abs(this.stride[0]),e=Math.abs(this.stride[1]),r=Math.abs(this.stride[2]);return t>e?e>r?[2,1,0]:t>r?[1,2,0]:[1,0,2]:t>r?[2,0,1]:r>e?[0,1,2]:[0,2,1]}}),i.set=function(e,r,n,i){return\"generic\"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n,i):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n]=i},i.get=function(e,r,n){return\"generic\"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n]},i.index=function(t,e,r){return this.offset+this.stride[0]*t+this.stride[1]*e+this.stride[2]*r},i.hi=function(t,e,r){return new n(this.data,\"number\"!=typeof t||t<0?this.shape[0]:0|t,\"number\"!=typeof e||e<0?this.shape[1]:0|e,\"number\"!=typeof r||r<0?this.shape[2]:0|r,this.stride[0],this.stride[1],this.stride[2],this.offset)},i.lo=function(t,e,r){var i=this.offset,a=0,o=this.shape[0],s=this.shape[1],l=this.shape[2],c=this.stride[0],u=this.stride[1],f=this.stride[2];return\"number\"==typeof t&&t>=0&&(i+=c*(a=0|t),o-=a),\"number\"==typeof e&&e>=0&&(i+=u*(a=0|e),s-=a),\"number\"==typeof r&&r>=0&&(i+=f*(a=0|r),l-=a),new n(this.data,o,s,l,c,u,f,i)},i.step=function(t,e,r){var i=this.shape[0],a=this.shape[1],o=this.shape[2],s=this.stride[0],l=this.stride[1],c=this.stride[2],u=this.offset,f=0,h=Math.ceil;return\"number\"==typeof t&&((f=0|t)<0?(u+=s*(i-1),i=h(-i/f)):i=h(i/f),s*=f),\"number\"==typeof e&&((f=0|e)<0?(u+=l*(a-1),a=h(-a/f)):a=h(a/f),l*=f),\"number\"==typeof r&&((f=0|r)<0?(u+=c*(o-1),o=h(-o/f)):o=h(o/f),c*=f),new n(this.data,i,a,o,s,l,c,u)},i.transpose=function(t,e,r){t=void 0===t?0:0|t,e=void 0===e?1:0|e,r=void 0===r?2:0|r;var i=this.shape,a=this.stride;return new n(this.data,i[t],i[e],i[r],a[t],a[e],a[r],this.offset)},i.pick=function(t,r,n){var i=[],a=[],o=this.offset;return\"number\"==typeof t&&t>=0?o=o+this.stride[0]*t|0:(i.push(this.shape[0]),a.push(this.stride[0])),\"number\"==typeof r&&r>=0?o=o+this.stride[1]*r|0:(i.push(this.shape[1]),a.push(this.stride[1])),\"number\"==typeof n&&n>=0?o=o+this.stride[2]*n|0:(i.push(this.shape[2]),a.push(this.stride[2])),(0,e[i.length+1])(this.data,i,a,o)},function(t,e,r,i){return new n(t,e[0],e[1],e[2],r[0],r[1],r[2],i)}},4:function(t,e,r){function n(t,e,r,n,i,a,o,s,l,c){this.data=t,this.shape=[e,r,n,i],this.stride=[a,o,s,l],this.offset=0|c}var i=n.prototype;return i.dtype=t,i.dimension=4,Object.defineProperty(i,\"size\",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]*this.shape[3]}}),Object.defineProperty(i,\"order\",{get:r}),i.set=function(e,r,n,i,a){return\"generic\"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i,a):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i]=a},i.get=function(e,r,n,i){return\"generic\"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i]},i.index=function(t,e,r,n){return this.offset+this.stride[0]*t+this.stride[1]*e+this.stride[2]*r+this.stride[3]*n},i.hi=function(t,e,r,i){return new n(this.data,\"number\"!=typeof t||t<0?this.shape[0]:0|t,\"number\"!=typeof e||e<0?this.shape[1]:0|e,\"number\"!=typeof r||r<0?this.shape[2]:0|r,\"number\"!=typeof i||i<0?this.shape[3]:0|i,this.stride[0],this.stride[1],this.stride[2],this.stride[3],this.offset)},i.lo=function(t,e,r,i){var a=this.offset,o=0,s=this.shape[0],l=this.shape[1],c=this.shape[2],u=this.shape[3],f=this.stride[0],h=this.stride[1],p=this.stride[2],d=this.stride[3];return\"number\"==typeof t&&t>=0&&(a+=f*(o=0|t),s-=o),\"number\"==typeof e&&e>=0&&(a+=h*(o=0|e),l-=o),\"number\"==typeof r&&r>=0&&(a+=p*(o=0|r),c-=o),\"number\"==typeof i&&i>=0&&(a+=d*(o=0|i),u-=o),new n(this.data,s,l,c,u,f,h,p,d,a)},i.step=function(t,e,r,i){var a=this.shape[0],o=this.shape[1],s=this.shape[2],l=this.shape[3],c=this.stride[0],u=this.stride[1],f=this.stride[2],h=this.stride[3],p=this.offset,d=0,m=Math.ceil;return\"number\"==typeof t&&((d=0|t)<0?(p+=c*(a-1),a=m(-a/d)):a=m(a/d),c*=d),\"number\"==typeof e&&((d=0|e)<0?(p+=u*(o-1),o=m(-o/d)):o=m(o/d),u*=d),\"number\"==typeof r&&((d=0|r)<0?(p+=f*(s-1),s=m(-s/d)):s=m(s/d),f*=d),\"number\"==typeof i&&((d=0|i)<0?(p+=h*(l-1),l=m(-l/d)):l=m(l/d),h*=d),new n(this.data,a,o,s,l,c,u,f,h,p)},i.transpose=function(t,e,r,i){t=void 0===t?0:0|t,e=void 0===e?1:0|e,r=void 0===r?2:0|r,i=void 0===i?3:0|i;var a=this.shape,o=this.stride;return new n(this.data,a[t],a[e],a[r],a[i],o[t],o[e],o[r],o[i],this.offset)},i.pick=function(t,r,n,i){var a=[],o=[],s=this.offset;return\"number\"==typeof t&&t>=0?s=s+this.stride[0]*t|0:(a.push(this.shape[0]),o.push(this.stride[0])),\"number\"==typeof r&&r>=0?s=s+this.stride[1]*r|0:(a.push(this.shape[1]),o.push(this.stride[1])),\"number\"==typeof n&&n>=0?s=s+this.stride[2]*n|0:(a.push(this.shape[2]),o.push(this.stride[2])),\"number\"==typeof i&&i>=0?s=s+this.stride[3]*i|0:(a.push(this.shape[3]),o.push(this.stride[3])),(0,e[a.length+1])(this.data,a,o,s)},function(t,e,r,i){return new n(t,e[0],e[1],e[2],e[3],r[0],r[1],r[2],r[3],i)}},5:function(t,e,r){function n(t,e,r,n,i,a,o,s,l,c,u,f){this.data=t,this.shape=[e,r,n,i,a],this.stride=[o,s,l,c,u],this.offset=0|f}var i=n.prototype;return i.dtype=t,i.dimension=5,Object.defineProperty(i,\"size\",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]*this.shape[3]*this.shape[4]}}),Object.defineProperty(i,\"order\",{get:r}),i.set=function(e,r,n,i,a,o){return\"generic\"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a,o):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a]=o},i.get=function(e,r,n,i,a){return\"generic\"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a]},i.index=function(t,e,r,n,i){return this.offset+this.stride[0]*t+this.stride[1]*e+this.stride[2]*r+this.stride[3]*n+this.stride[4]*i},i.hi=function(t,e,r,i,a){return new n(this.data,\"number\"!=typeof t||t<0?this.shape[0]:0|t,\"number\"!=typeof e||e<0?this.shape[1]:0|e,\"number\"!=typeof r||r<0?this.shape[2]:0|r,\"number\"!=typeof i||i<0?this.shape[3]:0|i,\"number\"!=typeof a||a<0?this.shape[4]:0|a,this.stride[0],this.stride[1],this.stride[2],this.stride[3],this.stride[4],this.offset)},i.lo=function(t,e,r,i,a){var o=this.offset,s=0,l=this.shape[0],c=this.shape[1],u=this.shape[2],f=this.shape[3],h=this.shape[4],p=this.stride[0],d=this.stride[1],m=this.stride[2],g=this.stride[3],v=this.stride[4];return\"number\"==typeof t&&t>=0&&(o+=p*(s=0|t),l-=s),\"number\"==typeof e&&e>=0&&(o+=d*(s=0|e),c-=s),\"number\"==typeof r&&r>=0&&(o+=m*(s=0|r),u-=s),\"number\"==typeof i&&i>=0&&(o+=g*(s=0|i),f-=s),\"number\"==typeof a&&a>=0&&(o+=v*(s=0|a),h-=s),new n(this.data,l,c,u,f,h,p,d,m,g,v,o)},i.step=function(t,e,r,i,a){var o=this.shape[0],s=this.shape[1],l=this.shape[2],c=this.shape[3],u=this.shape[4],f=this.stride[0],h=this.stride[1],p=this.stride[2],d=this.stride[3],m=this.stride[4],g=this.offset,v=0,y=Math.ceil;return\"number\"==typeof t&&((v=0|t)<0?(g+=f*(o-1),o=y(-o/v)):o=y(o/v),f*=v),\"number\"==typeof e&&((v=0|e)<0?(g+=h*(s-1),s=y(-s/v)):s=y(s/v),h*=v),\"number\"==typeof r&&((v=0|r)<0?(g+=p*(l-1),l=y(-l/v)):l=y(l/v),p*=v),\"number\"==typeof i&&((v=0|i)<0?(g+=d*(c-1),c=y(-c/v)):c=y(c/v),d*=v),\"number\"==typeof a&&((v=0|a)<0?(g+=m*(u-1),u=y(-u/v)):u=y(u/v),m*=v),new n(this.data,o,s,l,c,u,f,h,p,d,m,g)},i.transpose=function(t,e,r,i,a){t=void 0===t?0:0|t,e=void 0===e?1:0|e,r=void 0===r?2:0|r,i=void 0===i?3:0|i,a=void 0===a?4:0|a;var o=this.shape,s=this.stride;return new n(this.data,o[t],o[e],o[r],o[i],o[a],s[t],s[e],s[r],s[i],s[a],this.offset)},i.pick=function(t,r,n,i,a){var o=[],s=[],l=this.offset;return\"number\"==typeof t&&t>=0?l=l+this.stride[0]*t|0:(o.push(this.shape[0]),s.push(this.stride[0])),\"number\"==typeof r&&r>=0?l=l+this.stride[1]*r|0:(o.push(this.shape[1]),s.push(this.stride[1])),\"number\"==typeof n&&n>=0?l=l+this.stride[2]*n|0:(o.push(this.shape[2]),s.push(this.stride[2])),\"number\"==typeof i&&i>=0?l=l+this.stride[3]*i|0:(o.push(this.shape[3]),s.push(this.stride[3])),\"number\"==typeof a&&a>=0?l=l+this.stride[4]*a|0:(o.push(this.shape[4]),s.push(this.stride[4])),(0,e[o.length+1])(this.data,o,s,l)},function(t,e,r,i){return new n(t,e[0],e[1],e[2],e[3],e[4],r[0],r[1],r[2],r[3],r[4],i)}}};function l(t,e){var r=-1===e?\"T\":String(e),n=s[r];return-1===e?n(t):0===e?n(t,c[t][0]):n(t,c[t],o)}var c={generic:[],buffer:[],array:[],float32:[],float64:[],int8:[],int16:[],int32:[],uint8_clamped:[],uint8:[],uint16:[],uint32:[],bigint64:[],biguint64:[]};e.exports=function(t,e,r,a){if(void 0===t)return(0,c.array[0])([]);\"number\"==typeof t&&(t=[t]),void 0===e&&(e=[t.length]);var o=e.length;if(void 0===r){r=new Array(o);for(var s=o-1,u=1;s>=0;--s)r[s]=u,u*=e[s]}if(void 0===a){a=0;for(s=0;st==t>0?a===-1>>>0?(r+=1,a=0):a+=1:0===a?(a=-1>>>0,r-=1):a-=1;return n.pack(a,r)}},{\"double-bits\":64}],261:[function(t,e,r){r.vertexNormals=function(t,e,r){for(var n=e.length,i=new Array(n),a=void 0===r?1e-6:r,o=0;oa){var b=i[c],_=1/Math.sqrt(g*y);for(x=0;x<3;++x){var w=(x+1)%3,T=(x+2)%3;b[x]+=_*(v[w]*m[T]-v[T]*m[w])}}}for(o=0;oa)for(_=1/Math.sqrt(k),x=0;x<3;++x)b[x]*=_;else for(x=0;x<3;++x)b[x]=0}return i},r.faceNormals=function(t,e,r){for(var n=t.length,i=new Array(n),a=void 0===r?1e-6:r,o=0;oa?1/Math.sqrt(p):0;for(c=0;c<3;++c)h[c]*=p;i[o]=h}return i}},{}],262:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i,a,o,s,l,c){var u=e+a+c;if(f>0){var f=Math.sqrt(u+1);t[0]=.5*(o-l)/f,t[1]=.5*(s-n)/f,t[2]=.5*(r-a)/f,t[3]=.5*f}else{var h=Math.max(e,a,c);f=Math.sqrt(2*h-u+1);e>=h?(t[0]=.5*f,t[1]=.5*(i+r)/f,t[2]=.5*(s+n)/f,t[3]=.5*(o-l)/f):a>=h?(t[0]=.5*(r+i)/f,t[1]=.5*f,t[2]=.5*(l+o)/f,t[3]=.5*(s-n)/f):(t[0]=.5*(n+s)/f,t[1]=.5*(o+l)/f,t[2]=.5*f,t[3]=.5*(r-i)/f)}return t}},{}],263:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.rotation||[0,0,0,1],n=t.radius||1;e=[].slice.call(e,0,3),u(r=[].slice.call(r,0,4),r);var i=new f(r,e,Math.log(n));i.setDistanceLimits(t.zoomMin,t.zoomMax),(\"eye\"in t||\"up\"in t)&&i.lookAt(0,t.eye,t.center,t.up);return i};var n=t(\"filtered-vector\"),i=t(\"gl-mat4/lookAt\"),a=t(\"gl-mat4/fromQuat\"),o=t(\"gl-mat4/invert\"),s=t(\"./lib/quatFromFrame\");function l(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function c(t,e,r,n){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2)+Math.pow(n,2))}function u(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=c(r,n,i,a);o>1e-6?(t[0]=r/o,t[1]=n/o,t[2]=i/o,t[3]=a/o):(t[0]=t[1]=t[2]=0,t[3]=1)}function f(t,e,r){this.radius=n([r]),this.center=n(e),this.rotation=n(t),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}var h=f.prototype;h.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},h.recalcMatrix=function(t){this.radius.curve(t),this.center.curve(t),this.rotation.curve(t);var e=this.computedRotation;u(e,e);var r=this.computedMatrix;a(r,e);var n=this.computedCenter,i=this.computedEye,o=this.computedUp,s=Math.exp(this.computedRadius[0]);i[0]=n[0]+s*r[2],i[1]=n[1]+s*r[6],i[2]=n[2]+s*r[10],o[0]=r[1],o[1]=r[5],o[2]=r[9];for(var l=0;l<3;++l){for(var c=0,f=0;f<3;++f)c+=r[l+4*f]*i[f];r[12+l]=-c}},h.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r},h.idle=function(t){this.center.idle(t),this.radius.idle(t),this.rotation.idle(t)},h.flush=function(t){this.center.flush(t),this.radius.flush(t),this.rotation.flush(t)},h.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var i=this.computedMatrix,a=i[1],o=i[5],s=i[9],c=l(a,o,s);a/=c,o/=c,s/=c;var u=i[0],f=i[4],h=i[8],p=u*a+f*o+h*s,d=l(u-=a*p,f-=o*p,h-=s*p);u/=d,f/=d,h/=d;var m=i[2],g=i[6],v=i[10],y=m*a+g*o+v*s,x=m*u+g*f+v*h,b=l(m-=y*a+x*u,g-=y*o+x*f,v-=y*s+x*h);m/=b,g/=b,v/=b;var _=u*e+a*r,w=f*e+o*r,T=h*e+s*r;this.center.move(t,_,w,T);var k=Math.exp(this.computedRadius[0]);k=Math.max(1e-4,k+n),this.radius.set(t,Math.log(k))},h.rotate=function(t,e,r,n){this.recalcMatrix(t),e=e||0,r=r||0;var i=this.computedMatrix,a=i[0],o=i[4],s=i[8],u=i[1],f=i[5],h=i[9],p=i[2],d=i[6],m=i[10],g=e*a+r*u,v=e*o+r*f,y=e*s+r*h,x=-(d*y-m*v),b=-(m*g-p*y),_=-(p*v-d*g),w=Math.sqrt(Math.max(0,1-Math.pow(x,2)-Math.pow(b,2)-Math.pow(_,2))),T=c(x,b,_,w);T>1e-6?(x/=T,b/=T,_/=T,w/=T):(x=b=_=0,w=1);var k=this.computedRotation,A=k[0],M=k[1],S=k[2],E=k[3],L=A*w+E*x+M*_-S*b,C=M*w+E*b+S*x-A*_,P=S*w+E*_+A*b-M*x,I=E*w-A*x-M*b-S*_;if(n){x=p,b=d,_=m;var O=Math.sin(n)/l(x,b,_);x*=O,b*=O,_*=O,I=I*(w=Math.cos(e))-(L=L*w+I*x+C*_-P*b)*x-(C=C*w+I*b+P*x-L*_)*b-(P=P*w+I*_+L*b-C*x)*_}var z=c(L,C,P,I);z>1e-6?(L/=z,C/=z,P/=z,I/=z):(L=C=P=0,I=1),this.rotation.set(t,L,C,P,I)},h.lookAt=function(t,e,r,n){this.recalcMatrix(t),r=r||this.computedCenter,e=e||this.computedEye,n=n||this.computedUp;var a=this.computedMatrix;i(a,e,r,n);var o=this.computedRotation;s(o,a[0],a[1],a[2],a[4],a[5],a[6],a[8],a[9],a[10]),u(o,o),this.rotation.set(t,o[0],o[1],o[2],o[3]);for(var l=0,c=0;c<3;++c)l+=Math.pow(r[c]-e[c],2);this.radius.set(t,.5*Math.log(Math.max(l,1e-6))),this.center.set(t,r[0],r[1],r[2])},h.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},h.setMatrix=function(t,e){var r=this.computedRotation;s(r,e[0],e[1],e[2],e[4],e[5],e[6],e[8],e[9],e[10]),u(r,r),this.rotation.set(t,r[0],r[1],r[2],r[3]);var n=this.computedMatrix;o(n,e);var i=n[15];if(Math.abs(i)>1e-6){var a=n[12]/i,l=n[13]/i,c=n[14]/i;this.recalcMatrix(t);var f=Math.exp(this.computedRadius[0]);this.center.set(t,a-n[2]*f,l-n[6]*f,c-n[10]*f),this.radius.idle(t)}else this.center.idle(t),this.radius.idle(t)},h.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},h.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},h.getDistanceLimits=function(t){var e=this.radius.bounds;return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},h.toJSON=function(){return this.recalcMatrix(this.lastT()),{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},h.fromJSON=function(t){var e=this.lastT(),r=t.center;r&&this.center.set(e,r[0],r[1],r[2]);var n=t.rotation;n&&this.rotation.set(e,n[0],n[1],n[2],n[3]);var i=t.distance;i&&i>0&&this.radius.set(e,Math.log(i)),this.setDistanceLimits(t.zoomMin,t.zoomMax)}},{\"./lib/quatFromFrame\":262,\"filtered-vector\":68,\"gl-mat4/fromQuat\":95,\"gl-mat4/invert\":98,\"gl-mat4/lookAt\":99}],264:[function(t,e,r){\n", + "/*!\n", + " * pad-left \n", + " *\n", + " * Copyright (c) 2014-2015, Jon Schlinkert.\n", + " * Licensed under the MIT license.\n", + " */\n", + "\"use strict\";var n=t(\"repeat-string\");e.exports=function(t,e,r){return n(r=void 0!==r?r+\"\":\" \",e)+t}},{\"repeat-string\":277}],265:[function(t,e,r){e.exports=function(t,e){e||(e=[0,\"\"]),t=String(t);var r=parseFloat(t,10);return e[0]=r,e[1]=t.match(/[\\d.\\-\\+]*\\s*(.*)/)[1]||\"\",e}},{}],266:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=0|e.length,i=t.length,a=[new Array(r),new Array(r)],o=0;o0){o=a[u][r][0],l=u;break}s=o[1^l];for(var f=0;f<2;++f)for(var h=a[f][r],p=0;p0&&(o=d,s=m,l=f)}return i||o&&c(o,l),s}function f(t,r){var i=a[r][t][0],o=[t];c(i,r);for(var s=i[1^r];;){for(;s!==t;)o.push(s),s=u(o[o.length-2],s,!1);if(a[0][t].length+a[1][t].length===0)break;var l=o[o.length-1],f=t,h=o[1],p=u(l,f,!0);if(n(e[l],e[f],e[h],e[p])<0)break;o.push(t),s=u(l,f)}return o}function h(t,e){return e[1]===e[e.length-1]}for(o=0;o0;){a[0][o].length;var m=f(o,p);h(0,m)?d.push.apply(d,m):(d.length>0&&l.push(d),d=m)}d.length>0&&l.push(d)}return l};var n=t(\"compare-angle\")},{\"compare-angle\":54}],267:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=n(t,e.length),i=new Array(e.length),a=new Array(e.length),o=[],s=0;s0;){var c=o.pop();i[c]=!1;var u=r[c];for(s=0;s0}))).length,g=new Array(m),v=new Array(m);for(p=0;p0;){var B=R.pop(),N=E[B];l(N,(function(t,e){return t-e}));var j,U=N.length,V=F[B];if(0===V){var H=d[B];j=[H]}for(p=0;p=0))if(F[q]=1^V,R.push(q),0===V)D(H=d[q])||(H.reverse(),j.push(H))}0===V&&r.push(j)}return r};var n=t(\"edges-to-adjacency-list\"),i=t(\"planar-dual\"),a=t(\"point-in-big-polygon\"),o=t(\"two-product\"),s=t(\"robust-sum\"),l=t(\"uniq\"),c=t(\"./lib/trim-leaves\");function u(t,e){for(var r=new Array(t),n=0;n0&&e[i]===r[0]))return 1;a=t[i-1]}for(var s=1;a;){var l=a.key,c=n(r,l[0],l[1]);if(l[0][0]0))return 0;s=-1,a=a.right}else if(c>0)a=a.left;else{if(!(c<0))return 0;s=1,a=a.right}}return s}}(v.slabs,v.coordinates);return 0===a.length?y:function(t,e){return function(r){return t(r[0],r[1])?0:e(r)}}(l(a),y)};var n=t(\"robust-orientation\")[3],i=t(\"slab-decomposition\"),a=t(\"interval-tree-1d\"),o=t(\"binary-search-bounds\");function s(){return!0}function l(t){for(var e={},r=0;r=c?(k=1,y=c+2*h+d):y=h*(k=-h/c)+d):(k=0,p>=0?(A=0,y=d):-p>=f?(A=1,y=f+2*p+d):y=p*(A=-p/f)+d);else if(A<0)A=0,h>=0?(k=0,y=d):-h>=c?(k=1,y=c+2*h+d):y=h*(k=-h/c)+d;else{var M=1/T;y=(k*=M)*(c*k+u*(A*=M)+2*h)+A*(u*k+f*A+2*p)+d}else k<0?(b=f+p)>(x=u+h)?(_=b-x)>=(w=c-2*u+f)?(k=1,A=0,y=c+2*h+d):y=(k=_/w)*(c*k+u*(A=1-k)+2*h)+A*(u*k+f*A+2*p)+d:(k=0,b<=0?(A=1,y=f+2*p+d):p>=0?(A=0,y=d):y=p*(A=-p/f)+d):A<0?(b=c+h)>(x=u+p)?(_=b-x)>=(w=c-2*u+f)?(A=1,k=0,y=f+2*p+d):y=(k=1-(A=_/w))*(c*k+u*A+2*h)+A*(u*k+f*A+2*p)+d:(A=0,b<=0?(k=1,y=c+2*h+d):h>=0?(k=0,y=d):y=h*(k=-h/c)+d):(_=f+p-u-h)<=0?(k=0,A=1,y=f+2*p+d):_>=(w=c-2*u+f)?(k=1,A=0,y=c+2*h+d):y=(k=_/w)*(c*k+u*(A=1-k)+2*h)+A*(u*k+f*A+2*p)+d;var S=1-k-A;for(l=0;l0){var c=t[r-1];if(0===n(s,c)&&a(c)!==l){r-=1;continue}}t[r++]=s}}return t.length=r,t}},{\"cell-orientation\":47,\"compare-cell\":56,\"compare-oriented-cell\":57}],277:[function(t,e,r){\n", + "/*!\n", + " * repeat-string \n", + " *\n", + " * Copyright (c) 2014-2015, Jon Schlinkert.\n", + " * Licensed under the MIT License.\n", + " */\n", + "\"use strict\";var n,i=\"\";e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"expected a string\");if(1===e)return t;if(2===e)return t+t;var r=t.length*e;if(n!==t||void 0===n)n=t,i=\"\";else if(i.length>=r)return i.substr(0,r);for(;r>i.length&&e>1;)1&e&&(i+=t),e>>=1,t+=t;return i=(i+=t).substr(0,r)}},{}],278:[function(t,e,r){(function(t){(function(){e.exports=t.performance&&t.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}}).call(this)}).call(this,void 0!==n?n:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{}],279:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=t[t.length-1],n=e,i=e-2;i>=0;--i){var a=r,o=t[i];(l=o-((r=a+o)-a))&&(t[--n]=r,r=l)}var s=0;for(i=n;i0){if(a<=0)return o;n=i+a}else{if(!(i<0))return o;if(a>=0)return o;n=-(i+a)}var s=33306690738754716e-32*n;return o>=s||o<=-s?o:f(t,e,r)},function(t,e,r,n){var i=t[0]-n[0],a=e[0]-n[0],o=r[0]-n[0],s=t[1]-n[1],l=e[1]-n[1],c=r[1]-n[1],u=t[2]-n[2],f=e[2]-n[2],p=r[2]-n[2],d=a*c,m=o*l,g=o*s,v=i*c,y=i*l,x=a*s,b=u*(d-m)+f*(g-v)+p*(y-x),_=7771561172376103e-31*((Math.abs(d)+Math.abs(m))*Math.abs(u)+(Math.abs(g)+Math.abs(v))*Math.abs(f)+(Math.abs(y)+Math.abs(x))*Math.abs(p));return b>_||-b>_?b:h(t,e,r,n)}];function d(t){var e=p[t.length];return e||(e=p[t.length]=u(t.length)),e.apply(void 0,t)}function m(t,e,r,n,i,a,o){return function(e,r,s,l,c){switch(arguments.length){case 0:case 1:return 0;case 2:return n(e,r);case 3:return i(e,r,s);case 4:return a(e,r,s,l);case 5:return o(e,r,s,l,c)}for(var u=new Array(arguments.length),f=0;f0&&o>0||a<0&&o<0)return!1;var s=n(r,t,e),l=n(i,t,e);if(s>0&&l>0||s<0&&l<0)return!1;if(0===a&&0===o&&0===s&&0===l)return function(t,e,r,n){for(var i=0;i<2;++i){var a=t[i],o=e[i],s=Math.min(a,o),l=Math.max(a,o),c=r[i],u=n[i],f=Math.min(c,u);if(Math.max(c,u)=n?(i=f,(l+=1)=n?(i=f,(l+=1)>1,c=e[2*l+1];if(c===a)return l;a>1,c=e[2*l+1];if(c===a)return l;a>1,c=e[2*l+1];if(c===a)return l;a>1,s=a(t[o],e);s<=0?(0===s&&(i=o),r=o+1):s>0&&(n=o-1)}return i}function u(t,e){for(var r=new Array(t.length),i=0,o=r.length;i=t.length||0!==a(t[g],s)););}return r}function f(t,e){if(e<0)return[];for(var r=[],i=(1<>>u&1&&c.push(i[u]);e.push(c)}return s(e)},r.skeleton=f,r.boundary=function(t){for(var e=[],r=0,n=t.length;r>1:(t>>1)-1}function x(t){for(var e=v(t);;){var r=e,n=2*t+1,i=2*(t+1),a=t;if(n0;){var r=y(t);if(r>=0)if(e0){var t=k[0];return g(0,M-1),M-=1,x(0),t}return-1}function w(t,e){var r=k[t];return c[r]===e?t:(c[r]=-1/0,b(t),_(),c[r]=e,b((M+=1)-1))}function T(t){if(!u[t]){u[t]=!0;var e=s[t],r=l[t];s[r]>=0&&(s[r]=e),l[e]>=0&&(l[e]=r),A[e]>=0&&w(A[e],m(e)),A[r]>=0&&w(A[r],m(r))}}var k=[],A=new Array(a);for(f=0;f>1;f>=0;--f)x(f);for(;;){var S=_();if(S<0||c[S]>r)break;T(S)}var E=[];for(f=0;f=0&&r>=0&&e!==r){var n=A[e],i=A[r];n!==i&&C.push([n,i])}})),i.unique(i.normalize(C)),{positions:E,edges:C}};var n=t(\"robust-orientation\"),i=t(\"simplicial-complex\")},{\"robust-orientation\":284,\"simplicial-complex\":295}],298:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,a,o,s;if(e[0][0]e[1][0]))return i(e,t);r=e[1],a=e[0]}if(t[0][0]t[1][0]))return-i(t,e);o=t[1],s=t[0]}var l=n(r,a,s),c=n(r,a,o);if(l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=n(s,o,a),c=n(s,o,r),l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return a[0]-s[0]};var n=t(\"robust-orientation\");function i(t,e){var r,i,a,o;if(e[0][0]e[1][0])){var s=Math.min(t[0][1],t[1][1]),l=Math.max(t[0][1],t[1][1]),c=Math.min(e[0][1],e[1][1]),u=Math.max(e[0][1],e[1][1]);return lu?s-u:l-u}r=e[1],i=e[0]}t[0][1]0)if(e[0]!==o[1][0])r=t,t=t.right;else{if(l=c(t.right,e))return l;t=t.left}else{if(e[0]!==o[1][0])return t;var l;if(l=c(t.right,e))return l;t=t.left}}return r}function u(t,e,r,n){this.y=t,this.index=e,this.start=r,this.closed=n}function f(t,e,r,n){this.x=t,this.segment=e,this.create=r,this.index=n}s.prototype.castUp=function(t){var e=n.le(this.coordinates,t[0]);if(e<0)return-1;this.slabs[e];var r=c(this.slabs[e],t),i=-1;if(r&&(i=r.value),this.coordinates[e]===t[0]){var s=null;if(r&&(s=r.key),e>0){var u=c(this.slabs[e-1],t);u&&(s?o(u.key,s)>0&&(s=u.key,i=u.value):(i=u.value,s=u.key))}var f=this.horizontal[e];if(f.length>0){var h=n.ge(f,t[1],l);if(h=f.length)return i;p=f[h]}}if(p.start)if(s){var d=a(s[0],s[1],[t[0],p.y]);s[0][0]>s[1][0]&&(d=-d),d>0&&(i=p.index)}else i=p.index;else p.y!==t[1]&&(i=p.index)}}}return i}},{\"./lib/order-segments\":298,\"binary-search-bounds\":31,\"functional-red-black-tree\":69,\"robust-orientation\":284}],300:[function(t,e,r){\"use strict\";var n=t(\"robust-dot-product\"),i=t(\"robust-sum\");function a(t,e){var r=i(n(t,e),[e[e.length-1]]);return r[r.length-1]}function o(t,e,r,n){var i=-e/(n-e);i<0?i=0:i>1&&(i=1);for(var a=1-i,o=t.length,s=new Array(o),l=0;l0||i>0&&u<0){var f=o(s,u,l,i);r.push(f),n.push(f.slice())}u<0?n.push(l.slice()):u>0?r.push(l.slice()):(r.push(l.slice()),n.push(l.slice())),i=u}return{positive:r,negative:n}},e.exports.positive=function(t,e){for(var r=[],n=a(t[t.length-1],e),i=t[t.length-1],s=t[0],l=0;l0||n>0&&c<0)&&r.push(o(i,c,s,n)),c>=0&&r.push(s.slice()),n=c}return r},e.exports.negative=function(t,e){for(var r=[],n=a(t[t.length-1],e),i=t[t.length-1],s=t[0],l=0;l0||n>0&&c<0)&&r.push(o(i,c,s,n)),c<=0&&r.push(s.slice()),n=c}return r}},{\"robust-dot-product\":281,\"robust-sum\":289}],301:[function(t,e,r){!function(){\"use strict\";var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function e(t){return i(o(t),arguments)}function n(t,r){return e.apply(null,[t].concat(r||[]))}function i(r,n){var i,a,o,s,l,c,u,f,h,p=1,d=r.length,m=\"\";for(a=0;a=0),s.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,s.width?parseInt(s.width):0);break;case\"e\":i=s.precision?parseFloat(i).toExponential(s.precision):parseFloat(i).toExponential();break;case\"f\":i=s.precision?parseFloat(i).toFixed(s.precision):parseFloat(i);break;case\"g\":i=s.precision?String(Number(i.toPrecision(s.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=s.precision?i.substring(0,s.precision):i;break;case\"t\":i=String(!!i),i=s.precision?i.substring(0,s.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=s.precision?i.substring(0,s.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=s.precision?i.substring(0,s.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}t.json.test(s.type)?m+=i:(!t.number.test(s.type)||f&&!s.sign?h=\"\":(h=f?\"+\":\"-\",i=i.toString().replace(t.sign,\"\")),c=s.pad_char?\"0\"===s.pad_char?\"0\":s.pad_char.charAt(1):\" \",u=s.width-(h+i).length,l=s.width&&u>0?c.repeat(u):\"\",m+=s.align?h+i+l:\"0\"===c?h+l+i:l+h+i)}return m}var a=Object.create(null);function o(e){if(a[e])return a[e];for(var r,n=e,i=[],o=0;n;){if(null!==(r=t.text.exec(n)))i.push(r[0]);else if(null!==(r=t.modulo.exec(n)))i.push(\"%\");else{if(null===(r=t.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(r[2]){o|=1;var s=[],l=r[2],c=[];if(null===(c=t.key.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(s.push(c[1]);\"\"!==(l=l.substring(c[0].length));)if(null!==(c=t.key_access.exec(l)))s.push(c[1]);else{if(null===(c=t.index_access.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");s.push(c[1])}r[2]=s}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:r[0],param_no:r[1],keys:r[2],sign:r[3],pad_char:r[4],align:r[5],width:r[6],precision:r[7],type:r[8]})}n=n.substring(r[0].length)}return a[e]=i}void 0!==r&&(r.sprintf=e,r.vsprintf=n),\"undefined\"!=typeof window&&(window.sprintf=e,window.vsprintf=n)}()},{}],302:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(t.dimension<=0)return{positions:[],cells:[]};if(1===t.dimension)return function(t,e){for(var r=i(t,e),n=r.length,a=new Array(n),o=new Array(n),s=0;sn|0},vertex:function(t,e,r,n,i,a,o,s,l,c,u,f,h){var p=(o<<0)+(s<<1)+(l<<2)+(c<<3)|0;if(0!==p&&15!==p)switch(p){case 0:u.push([t-.5,e-.5]);break;case 1:u.push([t-.25-.25*(n+r-2*h)/(r-n),e-.25-.25*(i+r-2*h)/(r-i)]);break;case 2:u.push([t-.75-.25*(-n-r+2*h)/(n-r),e-.25-.25*(a+n-2*h)/(n-a)]);break;case 3:u.push([t-.5,e-.5-.5*(i+r+a+n-4*h)/(r-i+n-a)]);break;case 4:u.push([t-.25-.25*(a+i-2*h)/(i-a),e-.75-.25*(-i-r+2*h)/(i-r)]);break;case 5:u.push([t-.5-.5*(n+r+a+i-4*h)/(r-n+i-a),e-.5]);break;case 6:u.push([t-.5-.25*(-n-r+a+i)/(n-r+i-a),e-.5-.25*(-i-r+a+n)/(i-r+n-a)]);break;case 7:u.push([t-.75-.25*(a+i-2*h)/(i-a),e-.75-.25*(a+n-2*h)/(n-a)]);break;case 8:u.push([t-.75-.25*(-a-i+2*h)/(a-i),e-.75-.25*(-a-n+2*h)/(a-n)]);break;case 9:u.push([t-.5-.25*(n+r+-a-i)/(r-n+a-i),e-.5-.25*(i+r+-a-n)/(r-i+a-n)]);break;case 10:u.push([t-.5-.5*(-n-r-a-i+4*h)/(n-r+a-i),e-.5]);break;case 11:u.push([t-.25-.25*(-a-i+2*h)/(a-i),e-.75-.25*(i+r-2*h)/(r-i)]);break;case 12:u.push([t-.5,e-.5-.5*(-i-r-a-n+4*h)/(i-r+a-n)]);break;case 13:u.push([t-.75-.25*(n+r-2*h)/(r-n),e-.25-.25*(-a-n+2*h)/(a-n)]);break;case 14:u.push([t-.25-.25*(-n-r+2*h)/(n-r),e-.25-.25*(-i-r+2*h)/(i-r)]);break;case 15:u.push([t-.5,e-.5])}},cell:function(t,e,r,n,i,a,o,s,l){i?s.push([t,e]):s.push([e,t])}});return function(t,e){var r=[],i=[];return n(t,r,i,e),{positions:r,cells:i}}}};var o={}},{\"ndarray-extract-contour\":251,\"zero-crossings\":318}],303:[function(t,e,r){(function(r){(function(){\"use strict\";e.exports=function t(e,r,i){i=i||{};var o=a[e];o||(o=a[e]={\" \":{data:new Float32Array(0),shape:.2}});var s=o[r];if(!s)if(r.length<=1||!/\\d/.test(r))s=o[r]=function(t){for(var e=t.cells,r=t.positions,n=new Float32Array(6*e.length),i=0,a=0,o=0;o0&&(f+=.02);var p=new Float32Array(u),d=0,m=-.5*f;for(h=0;hMath.max(r,n)?i[2]=1:r>Math.max(e,n)?i[0]=1:i[1]=1;for(var a=0,o=0,l=0;l<3;++l)a+=t[l]*t[l],o+=i[l]*t[l];for(l=0;l<3;++l)i[l]-=o/a*t[l];return s(i,i),i}function h(t,e,r,i,a,o,s,l){this.center=n(r),this.up=n(i),this.right=n(a),this.radius=n([o]),this.angle=n([s,l]),this.angle.bounds=[[-1/0,-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(t,e),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;c<16;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}var p=h.prototype;p.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},p.getDistanceLimits=function(t){var e=this.radius.bounds[0];return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},p.recalcMatrix=function(t){this.center.curve(t),this.up.curve(t),this.right.curve(t),this.radius.curve(t),this.angle.curve(t);for(var e=this.computedUp,r=this.computedRight,n=0,i=0,a=0;a<3;++a)i+=e[a]*r[a],n+=e[a]*e[a];var l=Math.sqrt(n),u=0;for(a=0;a<3;++a)r[a]-=e[a]*i/n,u+=r[a]*r[a],e[a]/=l;var f=Math.sqrt(u);for(a=0;a<3;++a)r[a]/=f;var h=this.computedToward;o(h,e,r),s(h,h);var p=Math.exp(this.computedRadius[0]),d=this.computedAngle[0],m=this.computedAngle[1],g=Math.cos(d),v=Math.sin(d),y=Math.cos(m),x=Math.sin(m),b=this.computedCenter,_=g*y,w=v*y,T=x,k=-g*x,A=-v*x,M=y,S=this.computedEye,E=this.computedMatrix;for(a=0;a<3;++a){var L=_*r[a]+w*h[a]+T*e[a];E[4*a+1]=k*r[a]+A*h[a]+M*e[a],E[4*a+2]=L,E[4*a+3]=0}var C=E[1],P=E[5],I=E[9],O=E[2],z=E[6],D=E[10],R=P*D-I*z,F=I*O-C*D,B=C*z-P*O,N=c(R,F,B);R/=N,F/=N,B/=N,E[0]=R,E[4]=F,E[8]=B;for(a=0;a<3;++a)S[a]=b[a]+E[2+4*a]*p;for(a=0;a<3;++a){u=0;for(var j=0;j<3;++j)u+=E[a+4*j]*S[j];E[12+a]=-u}E[15]=1},p.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r};var d=[0,0,0];p.rotate=function(t,e,r,n){if(this.angle.move(t,e,r),n){this.recalcMatrix(t);var i=this.computedMatrix;d[0]=i[2],d[1]=i[6],d[2]=i[10];for(var o=this.computedUp,s=this.computedRight,l=this.computedToward,c=0;c<3;++c)i[4*c]=o[c],i[4*c+1]=s[c],i[4*c+2]=l[c];a(i,i,n,d);for(c=0;c<3;++c)o[c]=i[4*c],s[c]=i[4*c+1];this.up.set(t,o[0],o[1],o[2]),this.right.set(t,s[0],s[1],s[2])}},p.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var i=this.computedMatrix,a=(Math.exp(this.computedRadius[0]),i[1]),o=i[5],s=i[9],l=c(a,o,s);a/=l,o/=l,s/=l;var u=i[0],f=i[4],h=i[8],p=u*a+f*o+h*s,d=c(u-=a*p,f-=o*p,h-=s*p),m=(u/=d)*e+a*r,g=(f/=d)*e+o*r,v=(h/=d)*e+s*r;this.center.move(t,m,g,v);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+n),this.radius.set(t,Math.log(y))},p.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},p.setMatrix=function(t,e,r,n){var a=1;\"number\"==typeof r&&(a=0|r),(a<0||a>3)&&(a=1);var o=(a+2)%3;e||(this.recalcMatrix(t),e=this.computedMatrix);var s=e[a],l=e[a+4],f=e[a+8];if(n){var h=Math.abs(s),p=Math.abs(l),d=Math.abs(f),m=Math.max(h,p,d);h===m?(s=s<0?-1:1,l=f=0):d===m?(f=f<0?-1:1,s=l=0):(l=l<0?-1:1,s=f=0)}else{var g=c(s,l,f);s/=g,l/=g,f/=g}var v,y,x=e[o],b=e[o+4],_=e[o+8],w=x*s+b*l+_*f,T=c(x-=s*w,b-=l*w,_-=f*w),k=l*(_/=T)-f*(b/=T),A=f*(x/=T)-s*_,M=s*b-l*x,S=c(k,A,M);if(k/=S,A/=S,M/=S,this.center.jump(t,q,G,Y),this.radius.idle(t),this.up.jump(t,s,l,f),this.right.jump(t,x,b,_),2===a){var E=e[1],L=e[5],C=e[9],P=E*x+L*b+C*_,I=E*k+L*A+C*M;v=R<0?-Math.PI/2:Math.PI/2,y=Math.atan2(I,P)}else{var O=e[2],z=e[6],D=e[10],R=O*s+z*l+D*f,F=O*x+z*b+D*_,B=O*k+z*A+D*M;v=Math.asin(u(R)),y=Math.atan2(B,F)}this.angle.jump(t,y,v),this.recalcMatrix(t);var N=e[2],j=e[6],U=e[10],V=this.computedMatrix;i(V,e);var H=V[15],q=V[12]/H,G=V[13]/H,Y=V[14]/H,W=Math.exp(this.computedRadius[0]);this.center.jump(t,q-N*W,G-j*W,Y-U*W)},p.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},p.idle=function(t){this.center.idle(t),this.up.idle(t),this.right.idle(t),this.radius.idle(t),this.angle.idle(t)},p.flush=function(t){this.center.flush(t),this.up.flush(t),this.right.flush(t),this.radius.flush(t),this.angle.flush(t)},p.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},p.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||this.computedCenter;var i=(n=n||this.computedUp)[0],a=n[1],o=n[2],s=c(i,a,o);if(!(s<1e-6)){i/=s,a/=s,o/=s;var l=e[0]-r[0],f=e[1]-r[1],h=e[2]-r[2],p=c(l,f,h);if(!(p<1e-6)){l/=p,f/=p,h/=p;var d=this.computedRight,m=d[0],g=d[1],v=d[2],y=i*m+a*g+o*v,x=c(m-=y*i,g-=y*a,v-=y*o);if(!(x<.01&&(x=c(m=a*h-o*f,g=o*l-i*h,v=i*f-a*l))<1e-6)){m/=x,g/=x,v/=x,this.up.set(t,i,a,o),this.right.set(t,m,g,v),this.center.set(t,r[0],r[1],r[2]),this.radius.set(t,Math.log(p));var b=a*v-o*g,_=o*m-i*v,w=i*g-a*m,T=c(b,_,w),k=i*l+a*f+o*h,A=m*l+g*f+v*h,M=(b/=T)*l+(_/=T)*f+(w/=T)*h,S=Math.asin(u(k)),E=Math.atan2(M,A),L=this.angle._state,C=L[L.length-1],P=L[L.length-2];C%=2*Math.PI;var I=Math.abs(C+2*Math.PI-E),O=Math.abs(C-E),z=Math.abs(C-2*Math.PI-E);I0?r.pop():new ArrayBuffer(t)}function d(t){return new Uint8Array(p(t),0,t)}function m(t){return new Uint16Array(p(2*t),0,t)}function g(t){return new Uint32Array(p(4*t),0,t)}function v(t){return new Int8Array(p(t),0,t)}function y(t){return new Int16Array(p(2*t),0,t)}function x(t){return new Int32Array(p(4*t),0,t)}function b(t){return new Float32Array(p(4*t),0,t)}function _(t){return new Float64Array(p(8*t),0,t)}function w(t){return o?new Uint8ClampedArray(p(t),0,t):d(t)}function T(t){return s?new BigUint64Array(p(8*t),0,t):null}function k(t){return l?new BigInt64Array(p(8*t),0,t):null}function A(t){return new DataView(p(t),0,t)}function M(t){t=n.nextPow2(t);var e=n.log2(t),r=f[e];return r.length>0?r.pop():new a(t)}r.free=function(t){if(a.isBuffer(t))f[n.log2(t.length)].push(t);else{if(\"[object ArrayBuffer]\"!==Object.prototype.toString.call(t)&&(t=t.buffer),!t)return;var e=t.length||t.byteLength,r=0|n.log2(e);u[r].push(t)}},r.freeUint8=r.freeUint16=r.freeUint32=r.freeBigUint64=r.freeInt8=r.freeInt16=r.freeInt32=r.freeBigInt64=r.freeFloat32=r.freeFloat=r.freeFloat64=r.freeDouble=r.freeUint8Clamped=r.freeDataView=function(t){h(t.buffer)},r.freeArrayBuffer=h,r.freeBuffer=function(t){f[n.log2(t.length)].push(t)},r.malloc=function(t,e){if(void 0===e||\"arraybuffer\"===e)return p(t);switch(e){case\"uint8\":return d(t);case\"uint16\":return m(t);case\"uint32\":return g(t);case\"int8\":return v(t);case\"int16\":return y(t);case\"int32\":return x(t);case\"float\":case\"float32\":return b(t);case\"double\":case\"float64\":return _(t);case\"uint8_clamped\":return w(t);case\"bigint64\":return k(t);case\"biguint64\":return T(t);case\"buffer\":return M(t);case\"data\":case\"dataview\":return A(t);default:return null}return null},r.mallocArrayBuffer=p,r.mallocUint8=d,r.mallocUint16=m,r.mallocUint32=g,r.mallocInt8=v,r.mallocInt16=y,r.mallocInt32=x,r.mallocFloat32=r.mallocFloat=b,r.mallocFloat64=r.mallocDouble=_,r.mallocUint8Clamped=w,r.mallocBigUint64=T,r.mallocBigInt64=k,r.mallocDataView=A,r.mallocBuffer=M,r.clearCache=function(){for(var t=0;t<32;++t)c.UINT8[t].length=0,c.UINT16[t].length=0,c.UINT32[t].length=0,c.INT8[t].length=0,c.INT16[t].length=0,c.INT32[t].length=0,c.FLOAT[t].length=0,c.DOUBLE[t].length=0,c.BIGUINT64[t].length=0,c.BIGINT64[t].length=0,c.UINT8C[t].length=0,u[t].length=0,f[t].length=0}}).call(this)}).call(this,void 0!==n?n:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"bit-twiddle\":32,buffer:3,dup:65}],309:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e0&&(a=n.size),n.lineSpacing&&n.lineSpacing>0&&(o=n.lineSpacing),n.styletags&&n.styletags.breaklines&&(s.breaklines=!!n.styletags.breaklines),n.styletags&&n.styletags.bolds&&(s.bolds=!!n.styletags.bolds),n.styletags&&n.styletags.italics&&(s.italics=!!n.styletags.italics),n.styletags&&n.styletags.subscripts&&(s.subscripts=!!n.styletags.subscripts),n.styletags&&n.styletags.superscripts&&(s.superscripts=!!n.styletags.superscripts));return r.font=[n.fontStyle,n.fontVariant,n.fontWeight,a+\"px\",n.font].filter((function(t){return t})).join(\" \"),r.textAlign=\"start\",r.textBaseline=\"alphabetic\",r.direction=\"ltr\",h(function(t,e,r,n,a,o){r=r.replace(/\\n/g,\"\"),r=!0===o.breaklines?r.replace(/\\/g,\"\\n\"):r.replace(/\\/g,\" \");var s=\"\",l=[];for(p=0;p-1?parseInt(t[1+i]):0,l=a>-1?parseInt(r[1+a]):0;s!==l&&(n=n.replace(S(),\"?px \"),g*=Math.pow(.75,l-s),n=n.replace(\"?px \",S())),m+=.25*x*(l-s)}if(!0===o.superscripts){var c=t.indexOf(\"+\"),u=r.indexOf(\"+\"),f=c>-1?parseInt(t[1+c]):0,h=u>-1?parseInt(r[1+u]):0;f!==h&&(n=n.replace(S(),\"?px \"),g*=Math.pow(.75,h-f),n=n.replace(\"?px \",S())),m-=.25*x*(h-f)}if(!0===o.bolds){var p=t.indexOf(\"b|\")>-1,d=r.indexOf(\"b|\")>-1;!p&&d&&(n=v?n.replace(\"italic \",\"italic bold \"):\"bold \"+n),p&&!d&&(n=n.replace(\"bold \",\"\"))}if(!0===o.italics){var v=t.indexOf(\"i|\")>-1,y=r.indexOf(\"i|\")>-1;!v&&y&&(n=\"italic \"+n),v&&!y&&(n=n.replace(\"italic \",\"\"))}e.font=n}for(h=0;h\",a=\"\",o=i.length,s=a.length,l=\"+\"===e[0]||\"-\"===e[0],c=0,u=-s;c>-1&&-1!==(c=r.indexOf(i,c))&&-1!==(u=r.indexOf(a,c+o))&&!(u<=c);){for(var f=c;f=u)n[f]=null,r=r.substr(0,f)+\" \"+r.substr(f+1);else if(null!==n[f]){var h=n[f].indexOf(e[0]);-1===h?n[f]+=e:l&&(n[f]=n[f].substr(0,h+1)+(1+parseInt(n[f][h+1]))+n[f].substr(h+2))}var p=c+o,d=r.substr(p,u-p).indexOf(i);c=-1!==d?d:u+s}return n}function u(t,e){var r=n(t,128);return e?a(r.cells,r.positions,.25):{edges:r.cells,positions:r.positions}}function f(t,e,r,n){var i=u(t,n),a=function(t,e,r){for(var n=e.textAlign||\"start\",i=e.textBaseline||\"alphabetic\",a=[1<<30,1<<30],o=[0,0],s=t.length,l=0;l=0?e[a]:i}))},has___:{value:y((function(e){var n=v(e);return n?r in n:t.indexOf(e)>=0}))},set___:{value:y((function(n,i){var a,o=v(n);return o?o[r]=i:(a=t.indexOf(n))>=0?e[a]=i:(a=t.length,e[a]=i,t[a]=n),this}))},delete___:{value:y((function(n){var i,a,o=v(n);return o?r in o&&delete o[r]:!((i=t.indexOf(n))<0)&&(a=t.length-1,t[i]=void 0,e[i]=e[a],t[i]=t[a],t.length=a,e.length=a,!0)}))}})};d.prototype=Object.create(Object.prototype,{get:{value:function(t,e){return this.get___(t,e)},writable:!0,configurable:!0},has:{value:function(t){return this.has___(t)},writable:!0,configurable:!0},set:{value:function(t,e){return this.set___(t,e)},writable:!0,configurable:!0},delete:{value:function(t){return this.delete___(t)},writable:!0,configurable:!0}}),\"function\"==typeof r?function(){function n(){this instanceof d||x();var e,n=new r,i=void 0,a=!1;return e=t?function(t,e){return n.set(t,e),n.has(t)||(i||(i=new d),i.set(t,e)),this}:function(t,e){if(a)try{n.set(t,e)}catch(r){i||(i=new d),i.set___(t,e)}else n.set(t,e);return this},Object.create(d.prototype,{get___:{value:y((function(t,e){return i?n.has(t)?n.get(t):i.get___(t,e):n.get(t,e)}))},has___:{value:y((function(t){return n.has(t)||!!i&&i.has___(t)}))},set___:{value:y(e)},delete___:{value:y((function(t){var e=!!n.delete(t);return i&&i.delete___(t)||e}))},permitHostObjects___:{value:y((function(t){if(t!==m)throw new Error(\"bogus call to permitHostObjects___\");a=!0}))}})}t&&\"undefined\"!=typeof Proxy&&(Proxy=void 0),n.prototype=d.prototype,e.exports=n,Object.defineProperty(WeakMap.prototype,\"constructor\",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():(\"undefined\"!=typeof Proxy&&(Proxy=void 0),e.exports=d)}function m(t){t.permitHostObjects___&&t.permitHostObjects___(m)}function g(t){return!(\"weakmap:\"==t.substr(0,\"weakmap:\".length)&&\"___\"===t.substr(t.length-3))}function v(t){if(t!==Object(t))throw new TypeError(\"Not an object: \"+t);var e=t[l];if(e&&e.key===t)return e;if(s(t)){e={key:t};try{return o(t,l,{value:e,writable:!1,enumerable:!1,configurable:!1}),e}catch(t){return}}}function y(t){return t.prototype=null,Object.freeze(t)}function x(){h||\"undefined\"==typeof console||(h=!0,console.warn(\"WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future.\"))}}()},{}],314:[function(t,e,r){var n=t(\"./hidden-store.js\");e.exports=function(){var t={};return function(e){if((\"object\"!=typeof e||null===e)&&\"function\"!=typeof e)throw new Error(\"Weakmap-shim: Key must be object\");var r=e.valueOf(t);return r&&r.identity===t?r:n(e,t)}}},{\"./hidden-store.js\":315}],315:[function(t,e,r){e.exports=function(t,e){var r={identity:e},n=t.valueOf;return Object.defineProperty(t,\"valueOf\",{value:function(t){return t!==e?n.apply(this,arguments):r},writable:!0}),r}},{}],316:[function(t,e,r){var n=t(\"./create-store.js\");e.exports=function(){var t=n();return{get:function(e,r){var n=t(e);return n.hasOwnProperty(\"value\")?n.value:r},set:function(e,r){return t(e).value=r,this},has:function(e){return\"value\"in t(e)},delete:function(e){return delete t(e).value}}}},{\"./create-store.js\":314}],317:[function(t,e,r){\"use strict\";var n,i=function(){return function(t,e,r,n,i,a){var o=t[0],s=r[0],l=[0],c=s;n|=0;var u=0,f=s;for(u=0;u=0!=p>=0&&i.push(l[0]+.5+.5*(h+p)/(h-p)),n+=f,++l[0]}}};e.exports=(n={funcName:{funcName:\"zeroCrossings\"}.funcName},function(t){var e={};return function(r,n,i){var a=r.dtype,o=r.order,s=[a,o.join()].join(),l=e[s];return l||(e[s]=l=t([a,o])),l(r.shape.slice(0),r.data,r.stride,0|r.offset,n,i)}}(i.bind(void 0,n)))},{}],318:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=[];return e=+e||0,n(t.hi(t.shape[0]-1),r,e),r};var n=t(\"./lib/zc-core\")},{\"./lib/zc-core\":317}]},{},[6])(6)}))}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{}]},{},[27])(27)}));\n", + " });\n", + " require(['plotly'], function(Plotly) {\n", + " window._Plotly = Plotly;\n", + " });\n", + " }\n", + " \n", + " " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "mode": "lines", + "name": "var0", + "type": "scatter", + "x": [ + "2019-01-01T00:02:42.000000000", + "2019-01-01T00:02:59.000000000", + "2019-01-01T00:04:03.000000000", + "2019-01-01T00:04:24.000000000", + "2019-01-01T00:05:47.000000000", + "2019-01-01T00:06:20.000000000", + "2019-01-01T00:06:54.000000000", + "2019-01-01T00:07:44.000000000", + "2019-01-01T00:07:47.000000000", + "2019-01-01T00:07:55.000000000", + "2019-01-01T00:11:11.000000000", + "2019-01-01T00:12:34.000000000", + "2019-01-01T00:14:15.000000000", + "2019-01-01T00:15:26.000000000", + "2019-01-01T00:15:55.000000000", + "2019-01-01T00:16:54.000000000", + "2019-01-01T00:17:26.000000000", + "2019-01-01T00:18:13.000000000", + "2019-01-01T00:18:32.000000000", + "2019-01-01T00:20:11.000000000", + "2019-01-01T00:20:40.000000000", + "2019-01-01T00:24:09.000000000", + "2019-01-01T00:24:38.000000000", + "2019-01-01T00:25:34.000000000", + "2019-01-01T00:26:16.000000000", + "2019-01-01T00:28:27.000000000", + "2019-01-01T00:28:42.000000000", + "2019-01-01T00:29:14.000000000", + "2019-01-01T00:32:11.000000000", + "2019-01-01T00:32:18.000000000", + "2019-01-01T00:32:45.000000000", + "2019-01-01T00:34:28.000000000", + "2019-01-01T00:34:36.000000000", + "2019-01-01T00:35:03.000000000", + "2019-01-01T00:35:18.000000000", + "2019-01-01T00:36:00.000000000", + "2019-01-01T00:36:17.000000000", + "2019-01-01T00:36:24.000000000", + "2019-01-01T00:38:59.000000000", + "2019-01-01T00:41:06.000000000", + "2019-01-01T00:41:33.000000000", + "2019-01-01T00:41:48.000000000", + "2019-01-01T00:44:17.000000000", + "2019-01-01T00:44:51.000000000", + "2019-01-01T00:44:56.000000000", + "2019-01-01T00:47:19.000000000", + "2019-01-01T00:47:28.000000000", + "2019-01-01T00:47:29.000000000", + "2019-01-01T00:47:47.000000000", + "2019-01-01T00:48:43.000000000", + "2019-01-01T00:49:34.000000000", + "2019-01-01T00:51:50.000000000", + "2019-01-01T00:52:27.000000000", + "2019-01-01T00:53:52.000000000", + "2019-01-01T00:54:55.000000000", + "2019-01-01T00:57:00.000000000", + "2019-01-01T00:57:40.000000000", + "2019-01-01T00:58:07.000000000", + "2019-01-01T01:00:33.000000000", + "2019-01-01T01:00:36.000000000", + "2019-01-01T01:00:59.000000000", + "2019-01-01T01:03:43.000000000", + "2019-01-01T01:04:12.000000000", + "2019-01-01T01:04:52.000000000", + "2019-01-01T01:05:42.000000000", + "2019-01-01T01:05:45.000000000", + "2019-01-01T01:07:39.000000000", + "2019-01-01T01:07:43.000000000", + "2019-01-01T01:10:13.000000000", + "2019-01-01T01:10:43.000000000", + "2019-01-01T01:11:03.000000000", + "2019-01-01T01:11:25.000000000", + "2019-01-01T01:12:01.000000000", + "2019-01-01T01:12:30.000000000", + "2019-01-01T01:15:29.000000000", + "2019-01-01T01:15:42.000000000", + "2019-01-01T01:16:23.000000000", + "2019-01-01T01:16:36.000000000", + "2019-01-01T01:18:40.000000000", + "2019-01-01T01:18:44.000000000", + "2019-01-01T01:21:30.000000000", + "2019-01-01T01:22:31.000000000", + "2019-01-01T01:23:29.000000000", + "2019-01-01T01:23:41.000000000", + "2019-01-01T01:27:51.000000000", + "2019-01-01T01:27:54.000000000", + "2019-01-01T01:27:58.000000000", + "2019-01-01T01:28:34.000000000", + "2019-01-01T01:29:07.000000000", + "2019-01-01T01:31:55.000000000", + "2019-01-01T01:32:20.000000000", + "2019-01-01T01:33:18.000000000", + "2019-01-01T01:34:22.000000000", + "2019-01-01T01:34:33.000000000", + "2019-01-01T01:35:06.000000000", + "2019-01-01T01:35:12.000000000", + "2019-01-01T01:36:18.000000000", + "2019-01-01T01:36:26.000000000", + "2019-01-01T01:38:28.000000000", + "2019-01-01T01:39:00.000000000", + "2019-01-01T01:39:53.000000000", + "2019-01-01T01:40:42.000000000", + "2019-01-01T01:42:50.000000000", + "2019-01-01T01:42:52.000000000", + "2019-01-01T01:43:40.000000000", + "2019-01-01T01:46:57.000000000", + "2019-01-01T01:47:56.000000000", + "2019-01-01T01:49:05.000000000", + "2019-01-01T01:49:08.000000000", + "2019-01-01T01:50:34.000000000", + "2019-01-01T01:51:35.000000000", + "2019-01-01T01:52:38.000000000", + "2019-01-01T01:52:48.000000000", + "2019-01-01T01:53:36.000000000", + "2019-01-01T01:55:22.000000000", + "2019-01-01T01:57:54.000000000", + "2019-01-01T01:58:37.000000000", + "2019-01-01T02:00:16.000000000", + "2019-01-01T02:00:30.000000000", + "2019-01-01T02:00:32.000000000", + "2019-01-01T02:01:51.000000000", + "2019-01-01T02:02:14.000000000", + "2019-01-01T02:02:49.000000000", + "2019-01-01T02:04:11.000000000", + "2019-01-01T02:06:21.000000000", + "2019-01-01T02:08:03.000000000", + "2019-01-01T02:08:26.000000000", + "2019-01-01T02:08:35.000000000", + "2019-01-01T02:09:18.000000000", + "2019-01-01T02:09:45.000000000", + "2019-01-01T02:10:01.000000000", + "2019-01-01T02:10:28.000000000", + "2019-01-01T02:10:50.000000000", + "2019-01-01T02:11:23.000000000", + "2019-01-01T02:12:37.000000000", + "2019-01-01T02:12:51.000000000", + "2019-01-01T02:13:07.000000000", + "2019-01-01T02:13:42.000000000", + "2019-01-01T02:18:18.000000000", + "2019-01-01T02:20:15.000000000", + "2019-01-01T02:20:58.000000000", + "2019-01-01T02:23:27.000000000", + "2019-01-01T02:24:09.000000000", + "2019-01-01T02:25:07.000000000", + "2019-01-01T02:25:45.000000000", + "2019-01-01T02:27:48.000000000", + "2019-01-01T02:30:26.000000000", + "2019-01-01T02:31:48.000000000", + "2019-01-01T02:32:34.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:33:18.000000000", + "2019-01-01T02:33:49.000000000", + "2019-01-01T02:36:02.000000000", + "2019-01-01T02:37:39.000000000", + "2019-01-01T02:38:55.000000000", + "2019-01-01T02:39:30.000000000", + "2019-01-01T02:39:33.000000000", + "2019-01-01T02:40:05.000000000", + "2019-01-01T02:40:54.000000000", + "2019-01-01T02:41:40.000000000", + "2019-01-01T02:41:49.000000000", + "2019-01-01T02:43:24.000000000", + "2019-01-01T02:44:04.000000000", + "2019-01-01T02:44:45.000000000", + "2019-01-01T02:44:48.000000000", + "2019-01-01T02:45:01.000000000", + "2019-01-01T02:48:17.000000000", + "2019-01-01T02:49:20.000000000", + "2019-01-01T02:49:50.000000000", + "2019-01-01T02:50:18.000000000", + "2019-01-01T02:50:31.000000000", + "2019-01-01T02:51:59.000000000", + "2019-01-01T02:52:13.000000000", + "2019-01-01T02:52:16.000000000", + "2019-01-01T02:53:10.000000000", + "2019-01-01T02:57:45.000000000", + "2019-01-01T02:57:47.000000000", + "2019-01-01T02:58:12.000000000", + "2019-01-01T02:59:06.000000000", + "2019-01-01T02:59:08.000000000", + "2019-01-01T03:00:16.000000000", + "2019-01-01T03:01:18.000000000", + "2019-01-01T03:02:31.000000000", + "2019-01-01T03:02:50.000000000", + "2019-01-01T03:05:15.000000000", + "2019-01-01T03:06:30.000000000", + "2019-01-01T03:06:57.000000000", + "2019-01-01T03:07:04.000000000", + "2019-01-01T03:07:17.000000000", + "2019-01-01T03:07:30.000000000", + "2019-01-01T03:08:42.000000000", + "2019-01-01T03:09:36.000000000", + "2019-01-01T03:11:54.000000000", + "2019-01-01T03:12:40.000000000", + "2019-01-01T03:14:09.000000000", + "2019-01-01T03:16:10.000000000", + "2019-01-01T03:18:31.000000000", + "2019-01-01T03:19:42.000000000", + "2019-01-01T03:24:27.000000000", + "2019-01-01T03:27:10.000000000", + "2019-01-01T03:27:13.000000000", + "2019-01-01T03:31:09.000000000", + "2019-01-01T03:31:33.000000000", + "2019-01-01T03:32:06.000000000", + "2019-01-01T03:36:55.000000000", + "2019-01-01T03:37:00.000000000", + "2019-01-01T03:38:47.000000000", + "2019-01-01T03:38:57.000000000", + "2019-01-01T03:39:12.000000000", + "2019-01-01T03:49:46.000000000", + "2019-01-01T03:50:20.000000000", + "2019-01-01T03:50:31.000000000", + "2019-01-01T03:50:39.000000000", + "2019-01-01T03:50:45.000000000", + "2019-01-01T03:52:18.000000000", + "2019-01-01T03:52:40.000000000", + "2019-01-01T03:54:13.000000000", + "2019-01-01T03:54:49.000000000", + "2019-01-01T03:55:12.000000000", + "2019-01-01T03:55:41.000000000", + "2019-01-01T03:57:07.000000000", + "2019-01-01T03:57:15.000000000", + "2019-01-01T03:57:18.000000000", + "2019-01-01T03:58:25.000000000", + "2019-01-01T04:01:58.000000000", + "2019-01-01T04:02:15.000000000", + "2019-01-01T04:03:13.000000000", + "2019-01-01T04:04:04.000000000", + "2019-01-01T04:08:12.000000000", + "2019-01-01T04:08:27.000000000", + "2019-01-01T04:09:00.000000000", + "2019-01-01T04:09:33.000000000", + "2019-01-01T04:10:57.000000000", + "2019-01-01T04:13:39.000000000", + "2019-01-01T04:14:50.000000000", + "2019-01-01T04:15:23.000000000", + "2019-01-01T04:17:45.000000000", + "2019-01-01T04:19:42.000000000", + "2019-01-01T04:20:28.000000000", + "2019-01-01T04:21:00.000000000", + "2019-01-01T04:21:26.000000000", + "2019-01-01T04:22:36.000000000", + "2019-01-01T04:24:07.000000000", + "2019-01-01T04:24:29.000000000", + "2019-01-01T04:25:17.000000000", + "2019-01-01T04:26:29.000000000", + "2019-01-01T04:27:18.000000000", + "2019-01-01T04:27:19.000000000", + "2019-01-01T04:28:14.000000000", + "2019-01-01T04:28:40.000000000", + "2019-01-01T04:30:07.000000000", + "2019-01-01T04:30:17.000000000", + "2019-01-01T04:30:41.000000000", + "2019-01-01T04:33:18.000000000", + "2019-01-01T04:34:49.000000000", + "2019-01-01T04:35:36.000000000", + "2019-01-01T04:35:47.000000000", + "2019-01-01T04:35:57.000000000", + "2019-01-01T04:36:05.000000000", + "2019-01-01T04:36:10.000000000", + "2019-01-01T04:36:22.000000000", + "2019-01-01T04:36:37.000000000", + "2019-01-01T04:38:44.000000000", + "2019-01-01T04:39:22.000000000", + "2019-01-01T04:39:34.000000000", + "2019-01-01T04:40:33.000000000", + "2019-01-01T04:40:38.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:42:22.000000000", + "2019-01-01T04:43:26.000000000", + "2019-01-01T04:44:02.000000000", + "2019-01-01T04:44:24.000000000", + "2019-01-01T04:44:52.000000000", + "2019-01-01T04:44:59.000000000", + "2019-01-01T04:46:34.000000000", + "2019-01-01T04:48:35.000000000", + "2019-01-01T04:49:28.000000000", + "2019-01-01T04:49:44.000000000", + "2019-01-01T04:49:58.000000000", + "2019-01-01T04:50:34.000000000", + "2019-01-01T04:53:00.000000000", + "2019-01-01T04:53:34.000000000", + "2019-01-01T04:55:24.000000000", + "2019-01-01T04:55:28.000000000", + "2019-01-01T04:55:29.000000000", + "2019-01-01T04:56:18.000000000", + "2019-01-01T04:57:06.000000000", + "2019-01-01T04:57:11.000000000", + "2019-01-01T05:00:55.000000000", + "2019-01-01T05:01:46.000000000", + "2019-01-01T05:02:42.000000000", + "2019-01-01T05:03:21.000000000", + "2019-01-01T05:04:16.000000000", + "2019-01-01T05:04:24.000000000", + "2019-01-01T05:10:08.000000000", + "2019-01-01T05:11:57.000000000", + "2019-01-01T05:14:53.000000000", + "2019-01-01T05:14:58.000000000", + "2019-01-01T05:19:08.000000000", + "2019-01-01T05:20:27.000000000", + "2019-01-01T05:21:05.000000000", + "2019-01-01T05:21:15.000000000", + "2019-01-01T05:21:33.000000000", + "2019-01-01T05:25:05.000000000", + "2019-01-01T05:25:10.000000000", + "2019-01-01T05:25:39.000000000", + "2019-01-01T05:25:45.000000000", + "2019-01-01T05:26:35.000000000", + "2019-01-01T05:27:41.000000000", + "2019-01-01T05:30:44.000000000", + "2019-01-01T05:35:30.000000000", + "2019-01-01T05:35:32.000000000", + "2019-01-01T05:36:03.000000000", + "2019-01-01T05:36:07.000000000", + "2019-01-01T05:37:12.000000000", + "2019-01-01T05:39:00.000000000", + "2019-01-01T05:39:04.000000000", + "2019-01-01T05:39:37.000000000", + "2019-01-01T05:40:39.000000000", + "2019-01-01T05:41:45.000000000", + "2019-01-01T05:43:52.000000000", + "2019-01-01T05:45:07.000000000", + "2019-01-01T05:46:13.000000000", + "2019-01-01T05:48:40.000000000", + "2019-01-01T05:48:44.000000000", + "2019-01-01T05:49:17.000000000", + "2019-01-01T05:50:05.000000000", + "2019-01-01T05:50:11.000000000", + "2019-01-01T05:50:16.000000000", + "2019-01-01T05:50:31.000000000", + "2019-01-01T05:51:45.000000000", + "2019-01-01T05:52:21.000000000", + "2019-01-01T05:53:11.000000000", + "2019-01-01T05:55:59.000000000", + "2019-01-01T05:56:12.000000000", + "2019-01-01T05:56:35.000000000", + "2019-01-01T05:57:20.000000000", + "2019-01-01T05:57:49.000000000", + "2019-01-01T05:58:57.000000000", + "2019-01-01T05:59:12.000000000", + "2019-01-01T06:00:20.000000000", + "2019-01-01T06:00:21.000000000", + "2019-01-01T06:01:00.000000000", + "2019-01-01T06:02:23.000000000", + "2019-01-01T06:02:34.000000000", + "2019-01-01T06:02:38.000000000", + "2019-01-01T06:03:49.000000000", + "2019-01-01T06:05:10.000000000", + "2019-01-01T06:05:30.000000000", + "2019-01-01T06:07:32.000000000", + "2019-01-01T06:08:10.000000000", + "2019-01-01T06:09:35.000000000", + "2019-01-01T06:12:25.000000000", + "2019-01-01T06:12:26.000000000", + "2019-01-01T06:12:56.000000000", + "2019-01-01T06:13:03.000000000", + "2019-01-01T06:15:09.000000000", + "2019-01-01T06:15:28.000000000", + "2019-01-01T06:15:53.000000000", + "2019-01-01T06:16:56.000000000", + "2019-01-01T06:17:39.000000000", + "2019-01-01T06:18:20.000000000", + "2019-01-01T06:18:27.000000000", + "2019-01-01T06:18:56.000000000", + "2019-01-01T06:19:23.000000000", + "2019-01-01T06:19:35.000000000", + "2019-01-01T06:19:56.000000000", + "2019-01-01T06:20:07.000000000", + "2019-01-01T06:21:21.000000000", + "2019-01-01T06:21:26.000000000", + "2019-01-01T06:22:09.000000000", + "2019-01-01T06:23:56.000000000", + "2019-01-01T06:24:36.000000000", + "2019-01-01T06:25:11.000000000", + "2019-01-01T06:26:24.000000000", + "2019-01-01T06:27:47.000000000", + "2019-01-01T06:28:18.000000000", + "2019-01-01T06:29:14.000000000", + "2019-01-01T06:29:22.000000000", + "2019-01-01T06:30:42.000000000", + "2019-01-01T06:31:47.000000000", + "2019-01-01T06:31:51.000000000", + "2019-01-01T06:31:54.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:35:17.000000000", + "2019-01-01T06:35:30.000000000", + "2019-01-01T06:38:02.000000000", + "2019-01-01T06:39:21.000000000", + "2019-01-01T06:39:39.000000000", + "2019-01-01T06:40:15.000000000", + "2019-01-01T06:40:29.000000000", + "2019-01-01T06:41:55.000000000", + "2019-01-01T06:43:05.000000000", + "2019-01-01T06:43:25.000000000", + "2019-01-01T06:43:28.000000000", + "2019-01-01T06:45:16.000000000", + "2019-01-01T06:46:34.000000000", + "2019-01-01T06:47:08.000000000", + "2019-01-01T06:50:42.000000000", + "2019-01-01T06:51:23.000000000", + "2019-01-01T06:52:20.000000000", + "2019-01-01T06:52:24.000000000", + "2019-01-01T06:52:44.000000000", + "2019-01-01T06:52:47.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:55:08.000000000", + "2019-01-01T06:55:49.000000000", + "2019-01-01T06:56:28.000000000", + "2019-01-01T06:56:33.000000000", + "2019-01-01T06:57:51.000000000", + "2019-01-01T07:00:11.000000000", + "2019-01-01T07:01:31.000000000", + "2019-01-01T07:02:30.000000000", + "2019-01-01T07:04:06.000000000", + "2019-01-01T07:04:31.000000000", + "2019-01-01T07:05:15.000000000", + "2019-01-01T07:05:27.000000000", + "2019-01-01T07:05:49.000000000", + "2019-01-01T07:06:17.000000000", + "2019-01-01T07:06:26.000000000", + "2019-01-01T07:07:31.000000000", + "2019-01-01T07:09:21.000000000", + "2019-01-01T07:12:19.000000000", + "2019-01-01T07:12:26.000000000", + "2019-01-01T07:13:56.000000000", + "2019-01-01T07:15:03.000000000", + "2019-01-01T07:17:28.000000000", + "2019-01-01T07:18:04.000000000", + "2019-01-01T07:18:56.000000000", + "2019-01-01T07:19:21.000000000", + "2019-01-01T07:19:46.000000000", + "2019-01-01T07:20:31.000000000", + "2019-01-01T07:21:47.000000000", + "2019-01-01T07:24:25.000000000", + "2019-01-01T07:25:25.000000000", + "2019-01-01T07:25:42.000000000", + "2019-01-01T07:27:45.000000000", + "2019-01-01T07:30:45.000000000", + "2019-01-01T07:31:25.000000000", + "2019-01-01T07:31:33.000000000", + "2019-01-01T07:33:28.000000000", + "2019-01-01T07:35:13.000000000", + "2019-01-01T07:37:16.000000000", + "2019-01-01T07:40:34.000000000", + "2019-01-01T07:40:45.000000000", + "2019-01-01T07:40:56.000000000", + "2019-01-01T07:40:59.000000000", + "2019-01-01T07:41:00.000000000", + "2019-01-01T07:41:59.000000000", + "2019-01-01T07:42:38.000000000", + "2019-01-01T07:42:48.000000000", + "2019-01-01T07:42:52.000000000", + "2019-01-01T07:43:41.000000000", + "2019-01-01T07:44:49.000000000", + "2019-01-01T07:46:28.000000000", + "2019-01-01T07:48:34.000000000", + "2019-01-01T07:52:21.000000000", + "2019-01-01T07:52:59.000000000", + "2019-01-01T07:54:07.000000000", + "2019-01-01T07:55:16.000000000", + "2019-01-01T07:57:04.000000000", + "2019-01-01T07:58:08.000000000", + "2019-01-01T07:58:18.000000000", + "2019-01-01T07:58:55.000000000", + "2019-01-01T08:00:30.000000000", + "2019-01-01T08:04:08.000000000", + "2019-01-01T08:04:46.000000000", + "2019-01-01T08:05:49.000000000", + "2019-01-01T08:06:01.000000000", + "2019-01-01T08:06:54.000000000", + "2019-01-01T08:08:15.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:11:33.000000000", + "2019-01-01T08:11:47.000000000", + "2019-01-01T08:12:03.000000000", + "2019-01-01T08:12:53.000000000", + "2019-01-01T08:13:17.000000000", + "2019-01-01T08:13:31.000000000", + "2019-01-01T08:14:10.000000000", + "2019-01-01T08:15:24.000000000", + "2019-01-01T08:16:02.000000000", + "2019-01-01T08:16:30.000000000", + "2019-01-01T08:18:19.000000000", + "2019-01-01T08:18:51.000000000", + "2019-01-01T08:19:43.000000000", + "2019-01-01T08:20:02.000000000", + "2019-01-01T08:23:31.000000000", + "2019-01-01T08:24:37.000000000", + "2019-01-01T08:25:06.000000000", + "2019-01-01T08:25:19.000000000", + "2019-01-01T08:26:39.000000000", + "2019-01-01T08:27:52.000000000", + "2019-01-01T08:28:57.000000000", + "2019-01-01T08:29:44.000000000", + "2019-01-01T08:31:48.000000000", + "2019-01-01T08:32:26.000000000", + "2019-01-01T08:33:39.000000000", + "2019-01-01T08:34:11.000000000", + "2019-01-01T08:34:22.000000000", + "2019-01-01T08:35:40.000000000", + "2019-01-01T08:36:29.000000000", + "2019-01-01T08:37:39.000000000", + "2019-01-01T08:38:36.000000000", + "2019-01-01T08:40:08.000000000", + "2019-01-01T08:42:51.000000000", + "2019-01-01T08:43:20.000000000", + "2019-01-01T08:44:20.000000000", + "2019-01-01T08:44:52.000000000", + "2019-01-01T08:45:35.000000000", + "2019-01-01T08:49:10.000000000", + "2019-01-01T08:49:34.000000000", + "2019-01-01T08:49:36.000000000", + "2019-01-01T08:49:56.000000000", + "2019-01-01T08:50:29.000000000", + "2019-01-01T08:51:09.000000000", + "2019-01-01T08:51:37.000000000", + "2019-01-01T08:52:25.000000000", + "2019-01-01T08:52:39.000000000", + "2019-01-01T08:53:09.000000000", + "2019-01-01T08:55:15.000000000", + "2019-01-01T08:57:16.000000000", + "2019-01-01T08:57:29.000000000", + "2019-01-01T08:57:56.000000000", + "2019-01-01T08:59:55.000000000", + "2019-01-01T09:00:54.000000000", + "2019-01-01T09:01:24.000000000", + "2019-01-01T09:01:29.000000000", + "2019-01-01T09:02:12.000000000", + "2019-01-01T09:03:24.000000000", + "2019-01-01T09:04:03.000000000", + "2019-01-01T09:04:55.000000000", + "2019-01-01T09:05:05.000000000", + "2019-01-01T09:05:18.000000000", + "2019-01-01T09:06:33.000000000", + "2019-01-01T09:10:15.000000000", + "2019-01-01T09:13:49.000000000", + "2019-01-01T09:14:59.000000000", + "2019-01-01T09:16:48.000000000", + "2019-01-01T09:17:01.000000000", + "2019-01-01T09:17:06.000000000", + "2019-01-01T09:18:34.000000000", + "2019-01-01T09:19:35.000000000", + "2019-01-01T09:20:33.000000000", + "2019-01-01T09:20:53.000000000", + "2019-01-01T09:21:43.000000000", + "2019-01-01T09:24:16.000000000", + "2019-01-01T09:25:05.000000000", + "2019-01-01T09:25:44.000000000", + "2019-01-01T09:26:30.000000000", + "2019-01-01T09:27:13.000000000", + "2019-01-01T09:30:16.000000000", + "2019-01-01T09:30:19.000000000", + "2019-01-01T09:31:42.000000000", + "2019-01-01T09:32:19.000000000", + "2019-01-01T09:33:27.000000000", + "2019-01-01T09:33:44.000000000", + "2019-01-01T09:36:24.000000000", + "2019-01-01T09:37:53.000000000", + "2019-01-01T09:42:07.000000000", + "2019-01-01T09:43:32.000000000", + "2019-01-01T09:43:38.000000000", + "2019-01-01T09:44:02.000000000", + "2019-01-01T09:44:10.000000000", + "2019-01-01T09:44:55.000000000", + "2019-01-01T09:45:05.000000000", + "2019-01-01T09:45:12.000000000", + "2019-01-01T09:45:26.000000000", + "2019-01-01T09:45:47.000000000", + "2019-01-01T09:45:55.000000000", + "2019-01-01T09:49:15.000000000", + "2019-01-01T09:49:27.000000000", + "2019-01-01T09:50:02.000000000", + "2019-01-01T09:53:04.000000000", + "2019-01-01T09:53:19.000000000", + "2019-01-01T09:55:17.000000000", + "2019-01-01T09:56:17.000000000", + "2019-01-01T09:57:18.000000000", + "2019-01-01T09:59:07.000000000", + "2019-01-01T09:59:32.000000000", + "2019-01-01T10:00:22.000000000", + "2019-01-01T10:00:43.000000000", + "2019-01-01T10:01:05.000000000", + "2019-01-01T10:01:11.000000000", + "2019-01-01T10:02:19.000000000", + "2019-01-01T10:02:34.000000000", + "2019-01-01T10:03:22.000000000", + "2019-01-01T10:05:03.000000000", + "2019-01-01T10:05:16.000000000", + "2019-01-01T10:06:34.000000000", + "2019-01-01T10:07:02.000000000", + "2019-01-01T10:07:34.000000000", + "2019-01-01T10:07:48.000000000", + "2019-01-01T10:09:55.000000000", + "2019-01-01T10:11:45.000000000", + "2019-01-01T10:11:55.000000000", + "2019-01-01T10:13:39.000000000", + "2019-01-01T10:14:02.000000000", + "2019-01-01T10:14:28.000000000", + "2019-01-01T10:14:42.000000000", + "2019-01-01T10:15:32.000000000", + "2019-01-01T10:16:13.000000000", + "2019-01-01T10:16:48.000000000", + "2019-01-01T10:19:00.000000000", + "2019-01-01T10:20:20.000000000", + "2019-01-01T10:20:21.000000000", + "2019-01-01T10:23:57.000000000", + "2019-01-01T10:24:28.000000000", + "2019-01-01T10:24:37.000000000", + "2019-01-01T10:24:44.000000000", + "2019-01-01T10:25:54.000000000", + "2019-01-01T10:26:21.000000000", + "2019-01-01T10:27:11.000000000", + "2019-01-01T10:28:30.000000000", + "2019-01-01T10:28:45.000000000", + "2019-01-01T10:30:43.000000000", + "2019-01-01T10:30:49.000000000", + "2019-01-01T10:31:03.000000000", + "2019-01-01T10:31:15.000000000", + "2019-01-01T10:31:36.000000000", + "2019-01-01T10:33:12.000000000", + "2019-01-01T10:33:57.000000000", + "2019-01-01T10:34:00.000000000", + "2019-01-01T10:35:14.000000000", + "2019-01-01T10:36:35.000000000", + "2019-01-01T10:39:36.000000000", + "2019-01-01T10:40:55.000000000", + "2019-01-01T10:41:41.000000000", + "2019-01-01T10:43:05.000000000", + "2019-01-01T10:44:02.000000000", + "2019-01-01T10:44:08.000000000", + "2019-01-01T10:44:54.000000000", + "2019-01-01T10:45:19.000000000", + "2019-01-01T10:46:03.000000000", + "2019-01-01T10:48:55.000000000", + "2019-01-01T10:50:58.000000000", + "2019-01-01T10:52:13.000000000", + "2019-01-01T10:52:16.000000000", + "2019-01-01T10:53:07.000000000", + "2019-01-01T10:53:48.000000000", + "2019-01-01T10:56:09.000000000", + "2019-01-01T10:58:49.000000000", + "2019-01-01T11:00:22.000000000", + "2019-01-01T11:01:43.000000000", + "2019-01-01T11:02:27.000000000", + "2019-01-01T11:03:03.000000000", + "2019-01-01T11:07:06.000000000", + "2019-01-01T11:07:10.000000000", + "2019-01-01T11:07:25.000000000", + "2019-01-01T11:08:05.000000000", + "2019-01-01T11:09:36.000000000", + "2019-01-01T11:09:49.000000000", + "2019-01-01T11:10:16.000000000", + "2019-01-01T11:10:40.000000000", + "2019-01-01T11:12:01.000000000", + "2019-01-01T11:12:32.000000000", + "2019-01-01T11:15:09.000000000", + "2019-01-01T11:15:12.000000000", + "2019-01-01T11:15:25.000000000", + "2019-01-01T11:17:29.000000000", + "2019-01-01T11:17:36.000000000", + "2019-01-01T11:19:01.000000000", + "2019-01-01T11:19:02.000000000", + "2019-01-01T11:19:14.000000000", + "2019-01-01T11:21:30.000000000", + "2019-01-01T11:24:46.000000000", + "2019-01-01T11:27:17.000000000", + "2019-01-01T11:28:21.000000000", + "2019-01-01T11:29:12.000000000", + "2019-01-01T11:34:18.000000000", + "2019-01-01T11:34:31.000000000", + "2019-01-01T11:34:40.000000000", + "2019-01-01T11:35:04.000000000", + "2019-01-01T11:35:38.000000000", + "2019-01-01T11:36:31.000000000", + "2019-01-01T11:37:43.000000000", + "2019-01-01T11:38:29.000000000", + "2019-01-01T11:38:36.000000000", + "2019-01-01T11:39:09.000000000", + "2019-01-01T11:39:12.000000000", + "2019-01-01T11:40:07.000000000", + "2019-01-01T11:41:16.000000000", + "2019-01-01T11:42:45.000000000", + "2019-01-01T11:46:21.000000000", + "2019-01-01T11:47:04.000000000", + "2019-01-01T11:47:36.000000000", + "2019-01-01T11:48:19.000000000", + "2019-01-01T11:49:17.000000000", + "2019-01-01T11:49:18.000000000", + "2019-01-01T11:50:06.000000000", + "2019-01-01T11:53:01.000000000", + "2019-01-01T11:55:32.000000000", + "2019-01-01T11:56:24.000000000", + "2019-01-01T11:57:09.000000000", + "2019-01-01T11:58:11.000000000", + "2019-01-01T11:59:07.000000000", + "2019-01-01T12:00:23.000000000", + "2019-01-01T12:00:57.000000000", + "2019-01-01T12:01:02.000000000", + "2019-01-01T12:02:26.000000000", + "2019-01-01T12:03:34.000000000", + "2019-01-01T12:03:57.000000000", + "2019-01-01T12:04:16.000000000", + "2019-01-01T12:05:13.000000000", + "2019-01-01T12:05:14.000000000", + "2019-01-01T12:05:31.000000000", + "2019-01-01T12:06:43.000000000", + "2019-01-01T12:07:00.000000000", + "2019-01-01T12:07:30.000000000", + "2019-01-01T12:08:54.000000000", + "2019-01-01T12:10:19.000000000", + "2019-01-01T12:10:38.000000000", + "2019-01-01T12:13:42.000000000", + "2019-01-01T12:16:07.000000000", + "2019-01-01T12:16:40.000000000", + "2019-01-01T12:17:41.000000000", + "2019-01-01T12:19:36.000000000", + "2019-01-01T12:20:09.000000000", + "2019-01-01T12:21:43.000000000", + "2019-01-01T12:23:44.000000000", + "2019-01-01T12:24:01.000000000", + "2019-01-01T12:24:54.000000000", + "2019-01-01T12:25:03.000000000", + "2019-01-01T12:25:14.000000000", + "2019-01-01T12:27:02.000000000", + "2019-01-01T12:27:04.000000000", + "2019-01-01T12:27:05.000000000", + "2019-01-01T12:28:35.000000000", + "2019-01-01T12:30:16.000000000", + "2019-01-01T12:30:28.000000000", + "2019-01-01T12:31:24.000000000", + "2019-01-01T12:31:56.000000000", + "2019-01-01T12:32:56.000000000", + "2019-01-01T12:33:10.000000000", + "2019-01-01T12:33:13.000000000", + "2019-01-01T12:33:50.000000000", + "2019-01-01T12:33:52.000000000", + "2019-01-01T12:34:42.000000000", + "2019-01-01T12:34:53.000000000", + "2019-01-01T12:34:55.000000000", + "2019-01-01T12:37:05.000000000", + "2019-01-01T12:37:09.000000000", + "2019-01-01T12:37:18.000000000", + "2019-01-01T12:37:20.000000000", + "2019-01-01T12:38:21.000000000", + "2019-01-01T12:39:44.000000000", + "2019-01-01T12:41:04.000000000", + "2019-01-01T12:41:10.000000000", + "2019-01-01T12:42:13.000000000", + "2019-01-01T12:44:45.000000000", + "2019-01-01T12:45:49.000000000", + "2019-01-01T12:46:05.000000000", + "2019-01-01T12:47:29.000000000", + "2019-01-01T12:49:37.000000000", + "2019-01-01T12:49:46.000000000", + "2019-01-01T12:54:47.000000000", + "2019-01-01T12:55:29.000000000", + "2019-01-01T12:55:33.000000000", + "2019-01-01T12:56:29.000000000", + "2019-01-01T12:57:37.000000000", + "2019-01-01T12:58:24.000000000", + "2019-01-01T12:58:40.000000000", + "2019-01-01T12:59:24.000000000", + "2019-01-01T12:59:40.000000000", + "2019-01-01T13:03:16.000000000", + "2019-01-01T13:03:44.000000000", + "2019-01-01T13:03:48.000000000", + "2019-01-01T13:05:09.000000000", + "2019-01-01T13:07:52.000000000", + "2019-01-01T13:07:57.000000000", + "2019-01-01T13:09:20.000000000", + "2019-01-01T13:10:52.000000000", + "2019-01-01T13:11:08.000000000", + "2019-01-01T13:11:47.000000000", + "2019-01-01T13:12:00.000000000", + "2019-01-01T13:13:27.000000000", + "2019-01-01T13:14:00.000000000", + "2019-01-01T13:14:59.000000000", + "2019-01-01T13:15:00.000000000", + "2019-01-01T13:15:35.000000000", + "2019-01-01T13:16:56.000000000", + "2019-01-01T13:17:37.000000000", + "2019-01-01T13:19:10.000000000", + "2019-01-01T13:21:30.000000000", + "2019-01-01T13:25:09.000000000", + "2019-01-01T13:28:55.000000000", + "2019-01-01T13:30:52.000000000", + "2019-01-01T13:34:22.000000000", + "2019-01-01T13:34:53.000000000", + "2019-01-01T13:35:13.000000000", + "2019-01-01T13:35:42.000000000", + "2019-01-01T13:40:21.000000000", + "2019-01-01T13:40:27.000000000", + "2019-01-01T13:42:03.000000000", + "2019-01-01T13:43:09.000000000", + "2019-01-01T13:46:19.000000000", + "2019-01-01T13:47:09.000000000", + "2019-01-01T13:48:53.000000000", + "2019-01-01T13:48:57.000000000", + "2019-01-01T13:49:14.000000000", + "2019-01-01T13:50:03.000000000", + "2019-01-01T13:50:09.000000000", + "2019-01-01T13:50:51.000000000", + "2019-01-01T13:53:15.000000000", + "2019-01-01T13:54:31.000000000", + "2019-01-01T13:56:40.000000000", + "2019-01-01T13:56:51.000000000", + "2019-01-01T13:57:32.000000000", + "2019-01-01T13:59:12.000000000", + "2019-01-01T13:59:16.000000000", + "2019-01-01T13:59:27.000000000", + "2019-01-01T13:59:34.000000000", + "2019-01-01T14:00:18.000000000", + "2019-01-01T14:01:14.000000000", + "2019-01-01T14:02:10.000000000", + "2019-01-01T14:03:06.000000000", + "2019-01-01T14:03:53.000000000", + "2019-01-01T14:04:35.000000000", + "2019-01-01T14:04:51.000000000", + "2019-01-01T14:05:58.000000000", + "2019-01-01T14:08:36.000000000", + "2019-01-01T14:09:56.000000000", + "2019-01-01T14:10:53.000000000", + "2019-01-01T14:15:32.000000000", + "2019-01-01T14:16:13.000000000", + "2019-01-01T14:17:12.000000000", + "2019-01-01T14:18:24.000000000", + "2019-01-01T14:19:59.000000000", + "2019-01-01T14:22:21.000000000", + "2019-01-01T14:24:27.000000000", + "2019-01-01T14:25:43.000000000", + "2019-01-01T14:26:23.000000000", + "2019-01-01T14:26:24.000000000", + "2019-01-01T14:28:27.000000000", + "2019-01-01T14:28:55.000000000", + "2019-01-01T14:30:54.000000000", + "2019-01-01T14:32:53.000000000", + "2019-01-01T14:34:57.000000000", + "2019-01-01T14:35:39.000000000", + "2019-01-01T14:36:17.000000000", + "2019-01-01T14:36:44.000000000", + "2019-01-01T14:38:18.000000000", + "2019-01-01T14:38:32.000000000", + "2019-01-01T14:38:56.000000000", + "2019-01-01T14:38:58.000000000", + "2019-01-01T14:39:00.000000000", + "2019-01-01T14:40:20.000000000", + "2019-01-01T14:40:29.000000000", + "2019-01-01T14:40:51.000000000", + "2019-01-01T14:41:42.000000000", + "2019-01-01T14:42:58.000000000", + "2019-01-01T14:44:22.000000000", + "2019-01-01T14:44:30.000000000", + "2019-01-01T14:46:14.000000000", + "2019-01-01T14:47:00.000000000", + "2019-01-01T14:47:13.000000000", + "2019-01-01T14:47:25.000000000", + "2019-01-01T14:47:57.000000000", + "2019-01-01T14:48:48.000000000", + "2019-01-01T14:49:06.000000000", + "2019-01-01T14:49:08.000000000", + "2019-01-01T14:50:36.000000000", + "2019-01-01T14:52:05.000000000", + "2019-01-01T14:53:49.000000000", + "2019-01-01T14:54:06.000000000", + "2019-01-01T14:56:23.000000000", + "2019-01-01T14:56:42.000000000", + "2019-01-01T14:57:36.000000000", + "2019-01-01T14:57:43.000000000", + "2019-01-01T14:57:57.000000000", + "2019-01-01T14:58:03.000000000", + "2019-01-01T14:59:25.000000000", + "2019-01-01T15:00:00.000000000", + "2019-01-01T15:00:24.000000000", + "2019-01-01T15:01:28.000000000", + "2019-01-01T15:02:12.000000000", + "2019-01-01T15:04:11.000000000", + "2019-01-01T15:05:10.000000000", + "2019-01-01T15:07:47.000000000", + "2019-01-01T15:08:54.000000000", + "2019-01-01T15:09:08.000000000", + "2019-01-01T15:09:09.000000000", + "2019-01-01T15:09:35.000000000", + "2019-01-01T15:13:11.000000000", + "2019-01-01T15:13:13.000000000", + "2019-01-01T15:14:57.000000000", + "2019-01-01T15:16:27.000000000", + "2019-01-01T15:16:41.000000000", + "2019-01-01T15:18:36.000000000", + "2019-01-01T15:19:31.000000000", + "2019-01-01T15:20:11.000000000", + "2019-01-01T15:20:17.000000000", + "2019-01-01T15:20:44.000000000", + "2019-01-01T15:20:58.000000000", + "2019-01-01T15:21:58.000000000", + "2019-01-01T15:23:26.000000000", + "2019-01-01T15:24:24.000000000", + "2019-01-01T15:25:49.000000000", + "2019-01-01T15:29:16.000000000", + "2019-01-01T15:29:40.000000000", + "2019-01-01T15:30:14.000000000", + "2019-01-01T15:30:31.000000000", + "2019-01-01T15:30:39.000000000", + "2019-01-01T15:31:13.000000000", + "2019-01-01T15:31:30.000000000", + "2019-01-01T15:33:14.000000000", + "2019-01-01T15:33:17.000000000", + "2019-01-01T15:33:36.000000000", + "2019-01-01T15:36:46.000000000", + "2019-01-01T15:39:05.000000000", + "2019-01-01T15:39:07.000000000", + "2019-01-01T15:40:16.000000000", + "2019-01-01T15:40:52.000000000", + "2019-01-01T15:41:25.000000000", + "2019-01-01T15:41:44.000000000", + "2019-01-01T15:42:03.000000000", + "2019-01-01T15:44:27.000000000", + "2019-01-01T15:45:23.000000000", + "2019-01-01T15:45:33.000000000", + "2019-01-01T15:45:59.000000000", + "2019-01-01T15:47:36.000000000", + "2019-01-01T15:49:06.000000000", + "2019-01-01T15:49:37.000000000", + "2019-01-01T15:49:48.000000000", + "2019-01-01T15:50:04.000000000", + "2019-01-01T15:50:57.000000000", + "2019-01-01T15:51:18.000000000", + "2019-01-01T15:53:14.000000000", + "2019-01-01T15:53:45.000000000", + "2019-01-01T15:54:16.000000000", + "2019-01-01T15:55:00.000000000", + "2019-01-01T15:56:21.000000000", + "2019-01-01T15:56:46.000000000", + "2019-01-01T15:59:39.000000000", + "2019-01-01T15:59:56.000000000", + "2019-01-01T16:00:29.000000000", + "2019-01-01T16:02:27.000000000", + "2019-01-01T16:05:10.000000000", + "2019-01-01T16:07:52.000000000", + "2019-01-01T16:09:14.000000000", + "2019-01-01T16:11:39.000000000", + "2019-01-01T16:11:45.000000000", + "2019-01-01T16:12:55.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:15:44.000000000", + "2019-01-01T16:16:14.000000000", + "2019-01-01T16:17:53.000000000", + "2019-01-01T16:19:16.000000000", + "2019-01-01T16:19:27.000000000", + "2019-01-01T16:20:09.000000000", + "2019-01-01T16:20:35.000000000", + "2019-01-01T16:21:53.000000000", + "2019-01-01T16:22:55.000000000", + "2019-01-01T16:22:56.000000000", + "2019-01-01T16:23:03.000000000", + "2019-01-01T16:23:59.000000000", + "2019-01-01T16:24:08.000000000", + "2019-01-01T16:27:49.000000000", + "2019-01-01T16:30:02.000000000", + "2019-01-01T16:30:05.000000000", + "2019-01-01T16:30:21.000000000", + "2019-01-01T16:31:28.000000000", + "2019-01-01T16:31:32.000000000", + "2019-01-01T16:31:35.000000000", + "2019-01-01T16:33:36.000000000", + "2019-01-01T16:34:17.000000000", + "2019-01-01T16:35:13.000000000", + "2019-01-01T16:35:37.000000000", + "2019-01-01T16:37:25.000000000", + "2019-01-01T16:38:49.000000000", + "2019-01-01T16:40:37.000000000", + "2019-01-01T16:41:02.000000000", + "2019-01-01T16:42:07.000000000", + "2019-01-01T16:42:23.000000000", + "2019-01-01T16:42:34.000000000", + "2019-01-01T16:44:40.000000000", + "2019-01-01T16:49:09.000000000", + "2019-01-01T16:49:51.000000000", + "2019-01-01T16:50:15.000000000", + "2019-01-01T16:50:57.000000000", + "2019-01-01T16:52:39.000000000", + "2019-01-01T16:55:17.000000000", + "2019-01-01T16:55:32.000000000", + "2019-01-01T16:56:48.000000000", + "2019-01-01T16:58:06.000000000", + "2019-01-01T16:58:32.000000000", + "2019-01-01T16:59:18.000000000", + "2019-01-01T17:02:04.000000000", + "2019-01-01T17:02:39.000000000", + "2019-01-01T17:02:51.000000000", + "2019-01-01T17:03:15.000000000", + "2019-01-01T17:03:18.000000000", + "2019-01-01T17:04:25.000000000", + "2019-01-01T17:05:41.000000000", + "2019-01-01T17:06:44.000000000", + "2019-01-01T17:07:03.000000000", + "2019-01-01T17:07:08.000000000", + "2019-01-01T17:07:36.000000000", + "2019-01-01T17:09:05.000000000", + "2019-01-01T17:09:26.000000000", + "2019-01-01T17:09:43.000000000", + "2019-01-01T17:10:19.000000000", + "2019-01-01T17:10:36.000000000", + "2019-01-01T17:11:15.000000000", + "2019-01-01T17:11:23.000000000", + "2019-01-01T17:13:22.000000000", + "2019-01-01T17:13:47.000000000", + "2019-01-01T17:16:35.000000000", + "2019-01-01T17:17:39.000000000", + "2019-01-01T17:17:49.000000000", + "2019-01-01T17:20:36.000000000", + "2019-01-01T17:20:47.000000000", + "2019-01-01T17:21:11.000000000", + "2019-01-01T17:21:13.000000000", + "2019-01-01T17:22:58.000000000", + "2019-01-01T17:23:16.000000000", + "2019-01-01T17:25:10.000000000", + "2019-01-01T17:26:20.000000000", + "2019-01-01T17:26:47.000000000", + "2019-01-01T17:27:04.000000000", + "2019-01-01T17:27:33.000000000", + "2019-01-01T17:30:22.000000000", + "2019-01-01T17:30:46.000000000", + "2019-01-01T17:30:47.000000000", + "2019-01-01T17:30:52.000000000", + "2019-01-01T17:31:26.000000000", + "2019-01-01T17:34:21.000000000", + "2019-01-01T17:35:56.000000000", + "2019-01-01T17:37:02.000000000", + "2019-01-01T17:37:03.000000000", + "2019-01-01T17:39:10.000000000", + "2019-01-01T17:39:32.000000000", + "2019-01-01T17:39:34.000000000", + "2019-01-01T17:40:20.000000000", + "2019-01-01T17:40:49.000000000", + "2019-01-01T17:40:59.000000000", + "2019-01-01T17:41:25.000000000", + "2019-01-01T17:42:05.000000000", + "2019-01-01T17:45:43.000000000", + "2019-01-01T17:46:31.000000000", + "2019-01-01T17:46:37.000000000", + "2019-01-01T17:47:33.000000000", + "2019-01-01T17:48:28.000000000", + "2019-01-01T17:49:41.000000000", + "2019-01-01T17:52:15.000000000", + "2019-01-01T17:56:05.000000000", + "2019-01-01T17:56:17.000000000", + "2019-01-01T17:56:31.000000000", + "2019-01-01T17:58:54.000000000", + "2019-01-01T18:00:19.000000000", + "2019-01-01T18:02:10.000000000", + "2019-01-01T18:03:20.000000000", + "2019-01-01T18:03:49.000000000", + "2019-01-01T18:05:11.000000000", + "2019-01-01T18:05:46.000000000", + "2019-01-01T18:06:17.000000000", + "2019-01-01T18:06:51.000000000", + "2019-01-01T18:07:38.000000000", + "2019-01-01T18:08:10.000000000", + "2019-01-01T18:09:03.000000000", + "2019-01-01T18:09:24.000000000", + "2019-01-01T18:09:37.000000000", + "2019-01-01T18:10:36.000000000", + "2019-01-01T18:12:07.000000000", + "2019-01-01T18:12:55.000000000", + "2019-01-01T18:15:10.000000000", + "2019-01-01T18:15:42.000000000", + "2019-01-01T18:15:46.000000000", + "2019-01-01T18:17:20.000000000", + "2019-01-01T18:17:57.000000000", + "2019-01-01T18:19:35.000000000", + "2019-01-01T18:20:10.000000000", + "2019-01-01T18:21:48.000000000", + "2019-01-01T18:21:54.000000000", + "2019-01-01T18:22:14.000000000", + "2019-01-01T18:24:03.000000000", + "2019-01-01T18:25:15.000000000", + "2019-01-01T18:27:25.000000000", + "2019-01-01T18:28:59.000000000", + "2019-01-01T18:30:11.000000000", + "2019-01-01T18:32:19.000000000", + "2019-01-01T18:33:30.000000000", + "2019-01-01T18:33:35.000000000", + "2019-01-01T18:35:05.000000000", + "2019-01-01T18:35:23.000000000", + "2019-01-01T18:36:10.000000000", + "2019-01-01T18:36:40.000000000", + "2019-01-01T18:36:54.000000000", + "2019-01-01T18:37:16.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:49.000000000", + "2019-01-01T18:42:03.000000000", + "2019-01-01T18:43:20.000000000", + "2019-01-01T18:43:26.000000000", + "2019-01-01T18:43:51.000000000", + "2019-01-01T18:45:00.000000000", + "2019-01-01T18:48:05.000000000", + "2019-01-01T18:48:53.000000000", + "2019-01-01T18:49:27.000000000", + "2019-01-01T18:50:05.000000000", + "2019-01-01T18:51:02.000000000", + "2019-01-01T18:52:00.000000000", + "2019-01-01T18:52:21.000000000", + "2019-01-01T18:52:30.000000000", + "2019-01-01T18:52:43.000000000", + "2019-01-01T18:55:08.000000000", + "2019-01-01T18:55:28.000000000", + "2019-01-01T18:55:50.000000000", + "2019-01-01T19:02:53.000000000", + "2019-01-01T19:03:57.000000000", + "2019-01-01T19:04:34.000000000", + "2019-01-01T19:05:03.000000000", + "2019-01-01T19:05:11.000000000", + "2019-01-01T19:06:50.000000000", + "2019-01-01T19:07:27.000000000", + "2019-01-01T19:08:35.000000000", + "2019-01-01T19:09:09.000000000", + "2019-01-01T19:10:12.000000000", + "2019-01-01T19:10:13.000000000", + "2019-01-01T19:10:21.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:13:39.000000000", + "2019-01-01T19:14:17.000000000", + "2019-01-01T19:14:23.000000000", + "2019-01-01T19:14:39.000000000", + "2019-01-01T19:15:11.000000000", + "2019-01-01T19:18:11.000000000", + "2019-01-01T19:19:55.000000000", + "2019-01-01T19:20:14.000000000", + "2019-01-01T19:22:26.000000000", + "2019-01-01T19:22:33.000000000", + "2019-01-01T19:25:28.000000000", + "2019-01-01T19:26:24.000000000", + "2019-01-01T19:26:58.000000000", + "2019-01-01T19:28:47.000000000", + "2019-01-01T19:29:49.000000000", + "2019-01-01T19:30:26.000000000", + "2019-01-01T19:30:36.000000000", + "2019-01-01T19:31:56.000000000", + "2019-01-01T19:32:06.000000000", + "2019-01-01T19:33:09.000000000", + "2019-01-01T19:33:10.000000000", + "2019-01-01T19:34:25.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:41.000000000", + "2019-01-01T19:35:05.000000000", + "2019-01-01T19:37:26.000000000", + "2019-01-01T19:37:39.000000000", + "2019-01-01T19:38:24.000000000", + "2019-01-01T19:38:30.000000000", + "2019-01-01T19:39:07.000000000", + "2019-01-01T19:39:10.000000000", + "2019-01-01T19:41:03.000000000", + "2019-01-01T19:42:23.000000000", + "2019-01-01T19:43:06.000000000", + "2019-01-01T19:43:35.000000000", + "2019-01-01T19:44:34.000000000", + "2019-01-01T19:45:23.000000000", + "2019-01-01T19:46:20.000000000", + "2019-01-01T19:46:26.000000000", + "2019-01-01T19:47:31.000000000", + "2019-01-01T19:48:39.000000000", + "2019-01-01T19:49:10.000000000", + "2019-01-01T19:49:38.000000000", + "2019-01-01T19:51:27.000000000", + "2019-01-01T19:51:39.000000000", + "2019-01-01T19:51:46.000000000", + "2019-01-01T19:53:35.000000000", + "2019-01-01T19:53:36.000000000", + "2019-01-01T19:54:06.000000000", + "2019-01-01T19:55:49.000000000", + "2019-01-01T19:55:57.000000000", + "2019-01-01T19:58:03.000000000", + "2019-01-01T19:58:23.000000000", + "2019-01-01T20:00:47.000000000", + "2019-01-01T20:01:26.000000000", + "2019-01-01T20:03:55.000000000", + "2019-01-01T20:05:35.000000000", + "2019-01-01T20:07:00.000000000", + "2019-01-01T20:07:22.000000000", + "2019-01-01T20:09:50.000000000", + "2019-01-01T20:12:15.000000000", + "2019-01-01T20:12:44.000000000", + "2019-01-01T20:13:50.000000000", + "2019-01-01T20:14:48.000000000", + "2019-01-01T20:14:56.000000000", + "2019-01-01T20:15:35.000000000", + "2019-01-01T20:16:20.000000000", + "2019-01-01T20:16:50.000000000", + "2019-01-01T20:17:32.000000000", + "2019-01-01T20:19:27.000000000", + "2019-01-01T20:22:29.000000000", + "2019-01-01T20:23:01.000000000", + "2019-01-01T20:23:07.000000000", + "2019-01-01T20:25:23.000000000", + "2019-01-01T20:25:49.000000000", + "2019-01-01T20:25:56.000000000", + "2019-01-01T20:28:49.000000000", + "2019-01-01T20:30:53.000000000", + "2019-01-01T20:31:22.000000000", + "2019-01-01T20:31:44.000000000", + "2019-01-01T20:34:27.000000000", + "2019-01-01T20:37:16.000000000", + "2019-01-01T20:37:23.000000000", + "2019-01-01T20:37:58.000000000", + "2019-01-01T20:38:12.000000000", + "2019-01-01T20:38:59.000000000", + "2019-01-01T20:39:43.000000000", + "2019-01-01T20:40:01.000000000", + "2019-01-01T20:40:21.000000000", + "2019-01-01T20:42:02.000000000", + "2019-01-01T20:42:14.000000000", + "2019-01-01T20:42:46.000000000", + "2019-01-01T20:43:00.000000000", + "2019-01-01T20:46:23.000000000", + "2019-01-01T20:47:50.000000000", + "2019-01-01T20:49:07.000000000", + "2019-01-01T20:49:09.000000000", + "2019-01-01T20:49:34.000000000", + "2019-01-01T20:49:38.000000000", + "2019-01-01T20:49:52.000000000", + "2019-01-01T20:52:16.000000000", + "2019-01-01T20:52:26.000000000", + "2019-01-01T20:53:15.000000000", + "2019-01-01T20:55:37.000000000", + "2019-01-01T20:58:09.000000000", + "2019-01-01T20:58:19.000000000", + "2019-01-01T20:58:22.000000000", + "2019-01-01T20:59:14.000000000", + "2019-01-01T20:59:48.000000000", + "2019-01-01T21:01:40.000000000", + "2019-01-01T21:01:42.000000000", + "2019-01-01T21:01:50.000000000", + "2019-01-01T21:03:35.000000000", + "2019-01-01T21:04:30.000000000", + "2019-01-01T21:04:59.000000000", + "2019-01-01T21:05:03.000000000", + "2019-01-01T21:05:28.000000000", + "2019-01-01T21:05:36.000000000", + "2019-01-01T21:06:02.000000000", + "2019-01-01T21:08:15.000000000", + "2019-01-01T21:10:51.000000000", + "2019-01-01T21:11:16.000000000", + "2019-01-01T21:12:01.000000000", + "2019-01-01T21:12:55.000000000", + "2019-01-01T21:14:01.000000000", + "2019-01-01T21:15:11.000000000", + "2019-01-01T21:15:36.000000000", + "2019-01-01T21:16:12.000000000", + "2019-01-01T21:17:30.000000000", + "2019-01-01T21:17:43.000000000", + "2019-01-01T21:18:55.000000000", + "2019-01-01T21:19:35.000000000", + "2019-01-01T21:19:48.000000000", + "2019-01-01T21:22:04.000000000", + "2019-01-01T21:24:01.000000000", + "2019-01-01T21:24:39.000000000", + "2019-01-01T21:26:27.000000000", + "2019-01-01T21:27:08.000000000", + "2019-01-01T21:30:42.000000000", + "2019-01-01T21:31:09.000000000", + "2019-01-01T21:31:40.000000000", + "2019-01-01T21:31:48.000000000", + "2019-01-01T21:31:56.000000000", + "2019-01-01T21:32:00.000000000", + "2019-01-01T21:35:24.000000000", + "2019-01-01T21:37:22.000000000", + "2019-01-01T21:38:22.000000000", + "2019-01-01T21:40:46.000000000", + "2019-01-01T21:41:57.000000000", + "2019-01-01T21:43:10.000000000", + "2019-01-01T21:44:50.000000000", + "2019-01-01T21:45:56.000000000", + "2019-01-01T21:52:10.000000000", + "2019-01-01T21:53:08.000000000", + "2019-01-01T21:54:20.000000000", + "2019-01-01T21:54:56.000000000", + "2019-01-01T21:55:00.000000000", + "2019-01-01T21:55:35.000000000", + "2019-01-01T21:55:41.000000000", + "2019-01-01T21:56:56.000000000", + "2019-01-01T21:58:09.000000000", + "2019-01-01T22:01:13.000000000", + "2019-01-01T22:04:18.000000000", + "2019-01-01T22:04:30.000000000", + "2019-01-01T22:05:11.000000000", + "2019-01-01T22:08:01.000000000", + "2019-01-01T22:09:16.000000000", + "2019-01-01T22:09:36.000000000", + "2019-01-01T22:12:02.000000000", + "2019-01-01T22:12:24.000000000", + "2019-01-01T22:12:31.000000000", + "2019-01-01T22:13:38.000000000", + "2019-01-01T22:16:21.000000000", + "2019-01-01T22:17:15.000000000", + "2019-01-01T22:18:08.000000000", + "2019-01-01T22:18:37.000000000", + "2019-01-01T22:21:49.000000000", + "2019-01-01T22:22:11.000000000", + "2019-01-01T22:22:17.000000000", + "2019-01-01T22:22:24.000000000", + "2019-01-01T22:23:49.000000000", + "2019-01-01T22:24:05.000000000", + "2019-01-01T22:28:43.000000000", + "2019-01-01T22:29:41.000000000", + "2019-01-01T22:30:05.000000000", + "2019-01-01T22:32:29.000000000", + "2019-01-01T22:35:02.000000000", + "2019-01-01T22:35:47.000000000", + "2019-01-01T22:36:21.000000000", + "2019-01-01T22:36:38.000000000", + "2019-01-01T22:36:47.000000000", + "2019-01-01T22:37:56.000000000", + "2019-01-01T22:38:08.000000000", + "2019-01-01T22:38:28.000000000", + "2019-01-01T22:38:56.000000000", + "2019-01-01T22:39:31.000000000", + "2019-01-01T22:41:39.000000000", + "2019-01-01T22:41:48.000000000", + "2019-01-01T22:41:59.000000000", + "2019-01-01T22:42:16.000000000", + "2019-01-01T22:43:08.000000000", + "2019-01-01T22:43:12.000000000", + "2019-01-01T22:43:24.000000000", + "2019-01-01T22:45:57.000000000", + "2019-01-01T22:46:22.000000000", + "2019-01-01T22:46:37.000000000", + "2019-01-01T22:47:50.000000000", + "2019-01-01T22:48:18.000000000", + "2019-01-01T22:48:29.000000000", + "2019-01-01T22:49:04.000000000", + "2019-01-01T22:50:37.000000000", + "2019-01-01T22:51:13.000000000", + "2019-01-01T22:56:46.000000000", + "2019-01-01T22:57:31.000000000", + "2019-01-01T22:57:37.000000000", + "2019-01-01T22:59:29.000000000", + "2019-01-01T23:03:23.000000000", + "2019-01-01T23:03:37.000000000", + "2019-01-01T23:04:37.000000000", + "2019-01-01T23:06:04.000000000", + "2019-01-01T23:07:20.000000000", + "2019-01-01T23:07:40.000000000", + "2019-01-01T23:08:42.000000000", + "2019-01-01T23:08:48.000000000", + "2019-01-01T23:09:29.000000000", + "2019-01-01T23:10:34.000000000", + "2019-01-01T23:12:16.000000000", + "2019-01-01T23:12:25.000000000", + "2019-01-01T23:12:27.000000000", + "2019-01-01T23:12:30.000000000", + "2019-01-01T23:12:36.000000000", + "2019-01-01T23:14:03.000000000", + "2019-01-01T23:15:00.000000000", + "2019-01-01T23:15:08.000000000", + "2019-01-01T23:17:29.000000000", + "2019-01-01T23:20:27.000000000", + "2019-01-01T23:20:28.000000000", + "2019-01-01T23:21:35.000000000", + "2019-01-01T23:23:18.000000000", + "2019-01-01T23:23:21.000000000", + "2019-01-01T23:24:31.000000000", + "2019-01-01T23:25:08.000000000", + "2019-01-01T23:27:04.000000000", + "2019-01-01T23:28:56.000000000", + "2019-01-01T23:29:12.000000000", + "2019-01-01T23:29:29.000000000", + "2019-01-01T23:30:03.000000000", + "2019-01-01T23:30:16.000000000", + "2019-01-01T23:31:04.000000000", + "2019-01-01T23:32:44.000000000", + "2019-01-01T23:34:02.000000000", + "2019-01-01T23:34:10.000000000", + "2019-01-01T23:35:46.000000000", + "2019-01-01T23:35:55.000000000", + "2019-01-01T23:36:14.000000000", + "2019-01-01T23:36:27.000000000", + "2019-01-01T23:37:57.000000000", + "2019-01-01T23:40:17.000000000", + "2019-01-01T23:40:48.000000000", + "2019-01-01T23:41:12.000000000", + "2019-01-01T23:42:29.000000000", + "2019-01-01T23:43:07.000000000", + "2019-01-01T23:43:17.000000000", + "2019-01-01T23:43:57.000000000", + "2019-01-01T23:44:09.000000000", + "2019-01-01T23:45:39.000000000", + "2019-01-01T23:46:58.000000000", + "2019-01-01T23:47:13.000000000", + "2019-01-01T23:47:56.000000000", + "2019-01-01T23:48:12.000000000", + "2019-01-01T23:48:41.000000000", + "2019-01-01T23:49:23.000000000", + "2019-01-01T23:52:06.000000000", + "2019-01-01T23:52:43.000000000", + "2019-01-01T23:53:10.000000000", + "2019-01-01T23:53:38.000000000", + "2019-01-01T23:54:11.000000000", + "2019-01-01T23:55:05.000000000", + "2019-01-01T23:55:06.000000000", + "2019-01-01T23:55:33.000000000", + "2019-01-01T23:59:30.000000000", + "2019-01-02T00:00:46.000000000", + "2019-01-02T00:01:11.000000000", + "2019-01-02T00:01:18.000000000", + "2019-01-02T00:02:02.000000000", + "2019-01-02T00:06:14.000000000", + "2019-01-02T00:06:34.000000000", + "2019-01-02T00:06:46.000000000", + "2019-01-02T00:07:44.000000000", + "2019-01-02T00:07:57.000000000", + "2019-01-02T00:10:14.000000000", + "2019-01-02T00:11:28.000000000", + "2019-01-02T00:11:32.000000000", + "2019-01-02T00:12:17.000000000", + "2019-01-02T00:15:53.000000000", + "2019-01-02T00:16:23.000000000", + "2019-01-02T00:18:19.000000000", + "2019-01-02T00:19:08.000000000", + "2019-01-02T00:19:18.000000000", + "2019-01-02T00:19:36.000000000", + "2019-01-02T00:21:57.000000000", + "2019-01-02T00:22:05.000000000", + "2019-01-02T00:23:03.000000000", + "2019-01-02T00:25:04.000000000", + "2019-01-02T00:25:32.000000000", + "2019-01-02T00:28:40.000000000", + "2019-01-02T00:30:56.000000000", + "2019-01-02T00:32:03.000000000", + "2019-01-02T00:32:22.000000000", + "2019-01-02T00:34:54.000000000", + "2019-01-02T00:35:14.000000000", + "2019-01-02T00:36:49.000000000", + "2019-01-02T00:38:14.000000000", + "2019-01-02T00:38:35.000000000", + "2019-01-02T00:38:52.000000000", + "2019-01-02T00:39:17.000000000", + "2019-01-02T00:39:38.000000000", + "2019-01-02T00:41:21.000000000", + "2019-01-02T00:43:59.000000000", + "2019-01-02T00:44:11.000000000", + "2019-01-02T00:45:35.000000000", + "2019-01-02T00:45:38.000000000", + "2019-01-02T00:48:12.000000000", + "2019-01-02T00:48:16.000000000", + "2019-01-02T00:48:29.000000000", + "2019-01-02T00:49:28.000000000", + "2019-01-02T00:51:06.000000000", + "2019-01-02T00:52:15.000000000", + "2019-01-02T00:54:21.000000000", + "2019-01-02T00:54:24.000000000", + "2019-01-02T00:54:42.000000000", + "2019-01-02T00:55:32.000000000", + "2019-01-02T00:55:44.000000000", + "2019-01-02T00:55:54.000000000", + "2019-01-02T00:56:11.000000000", + "2019-01-02T00:57:00.000000000", + "2019-01-02T00:57:41.000000000", + "2019-01-02T00:58:44.000000000", + "2019-01-02T00:58:52.000000000", + "2019-01-02T00:59:23.000000000", + "2019-01-02T01:02:02.000000000", + "2019-01-02T01:02:12.000000000", + "2019-01-02T01:02:47.000000000", + "2019-01-02T01:04:51.000000000", + "2019-01-02T01:06:37.000000000", + "2019-01-02T01:06:54.000000000", + "2019-01-02T01:08:20.000000000", + "2019-01-02T01:08:44.000000000", + "2019-01-02T01:10:27.000000000", + "2019-01-02T01:11:39.000000000", + "2019-01-02T01:11:46.000000000", + "2019-01-02T01:12:04.000000000", + "2019-01-02T01:13:20.000000000", + "2019-01-02T01:13:55.000000000", + "2019-01-02T01:14:45.000000000", + "2019-01-02T01:15:49.000000000", + "2019-01-02T01:18:12.000000000", + "2019-01-02T01:18:38.000000000", + "2019-01-02T01:19:07.000000000", + "2019-01-02T01:20:04.000000000", + "2019-01-02T01:23:00.000000000", + "2019-01-02T01:23:06.000000000", + "2019-01-02T01:24:43.000000000", + "2019-01-02T01:24:55.000000000", + "2019-01-02T01:26:12.000000000", + "2019-01-02T01:27:03.000000000", + "2019-01-02T01:28:39.000000000", + "2019-01-02T01:28:54.000000000", + "2019-01-02T01:28:56.000000000", + "2019-01-02T01:29:23.000000000", + "2019-01-02T01:29:49.000000000", + "2019-01-02T01:30:00.000000000", + "2019-01-02T01:30:50.000000000", + "2019-01-02T01:32:50.000000000", + "2019-01-02T01:33:52.000000000", + "2019-01-02T01:34:58.000000000", + "2019-01-02T01:36:01.000000000", + "2019-01-02T01:37:45.000000000", + "2019-01-02T01:38:10.000000000", + "2019-01-02T01:39:49.000000000", + "2019-01-02T01:39:55.000000000", + "2019-01-02T01:40:20.000000000", + "2019-01-02T01:42:07.000000000", + "2019-01-02T01:42:17.000000000", + "2019-01-02T01:46:26.000000000", + "2019-01-02T01:46:37.000000000", + "2019-01-02T01:46:47.000000000", + "2019-01-02T01:50:27.000000000", + "2019-01-02T01:50:48.000000000", + "2019-01-02T01:50:58.000000000", + "2019-01-02T01:51:40.000000000", + "2019-01-02T01:52:30.000000000", + "2019-01-02T01:52:43.000000000", + "2019-01-02T01:53:01.000000000", + "2019-01-02T01:54:43.000000000", + "2019-01-02T01:55:49.000000000", + "2019-01-02T01:57:17.000000000", + "2019-01-02T01:57:56.000000000", + "2019-01-02T01:58:20.000000000", + "2019-01-02T01:58:40.000000000", + "2019-01-02T01:59:54.000000000", + "2019-01-02T02:00:30.000000000", + "2019-01-02T02:01:56.000000000", + "2019-01-02T02:02:30.000000000", + "2019-01-02T02:02:57.000000000", + "2019-01-02T02:03:54.000000000", + "2019-01-02T02:07:24.000000000", + "2019-01-02T02:08:13.000000000", + "2019-01-02T02:08:21.000000000", + "2019-01-02T02:08:36.000000000", + "2019-01-02T02:09:45.000000000", + "2019-01-02T02:10:10.000000000", + "2019-01-02T02:11:22.000000000", + "2019-01-02T02:13:49.000000000", + "2019-01-02T02:14:29.000000000", + "2019-01-02T02:14:46.000000000", + "2019-01-02T02:17:50.000000000", + "2019-01-02T02:19:02.000000000", + "2019-01-02T02:19:28.000000000", + "2019-01-02T02:20:54.000000000", + "2019-01-02T02:21:24.000000000", + "2019-01-02T02:22:09.000000000", + "2019-01-02T02:24:57.000000000", + "2019-01-02T02:25:33.000000000", + "2019-01-02T02:25:48.000000000", + "2019-01-02T02:26:05.000000000", + "2019-01-02T02:26:12.000000000", + "2019-01-02T02:27:41.000000000", + "2019-01-02T02:30:07.000000000", + "2019-01-02T02:34:28.000000000", + "2019-01-02T02:38:08.000000000", + "2019-01-02T02:39:41.000000000", + "2019-01-02T02:40:17.000000000", + "2019-01-02T02:41:31.000000000", + "2019-01-02T02:41:47.000000000", + "2019-01-02T02:41:49.000000000", + "2019-01-02T02:45:49.000000000", + "2019-01-02T02:46:50.000000000", + "2019-01-02T02:47:35.000000000", + "2019-01-02T02:48:47.000000000", + "2019-01-02T02:51:39.000000000", + "2019-01-02T02:51:40.000000000", + "2019-01-02T02:53:10.000000000", + "2019-01-02T02:53:23.000000000", + "2019-01-02T02:53:30.000000000", + "2019-01-02T02:53:48.000000000", + "2019-01-02T02:54:01.000000000", + "2019-01-02T02:55:01.000000000", + "2019-01-02T02:56:10.000000000", + "2019-01-02T02:56:12.000000000", + "2019-01-02T02:57:03.000000000", + "2019-01-02T02:57:04.000000000", + "2019-01-02T02:57:14.000000000", + "2019-01-02T02:57:15.000000000", + "2019-01-02T02:57:49.000000000", + "2019-01-02T02:58:41.000000000", + "2019-01-02T03:00:10.000000000", + "2019-01-02T03:00:43.000000000", + "2019-01-02T03:00:54.000000000", + "2019-01-02T03:01:40.000000000", + "2019-01-02T03:02:17.000000000", + "2019-01-02T03:02:58.000000000", + "2019-01-02T03:04:32.000000000", + "2019-01-02T03:06:17.000000000", + "2019-01-02T03:08:03.000000000", + "2019-01-02T03:08:31.000000000", + "2019-01-02T03:12:12.000000000", + "2019-01-02T03:13:28.000000000", + "2019-01-02T03:15:46.000000000", + "2019-01-02T03:17:12.000000000", + "2019-01-02T03:17:25.000000000", + "2019-01-02T03:18:22.000000000", + "2019-01-02T03:18:55.000000000", + "2019-01-02T03:23:00.000000000", + "2019-01-02T03:23:52.000000000", + "2019-01-02T03:25:18.000000000", + "2019-01-02T03:27:24.000000000", + "2019-01-02T03:29:21.000000000", + "2019-01-02T03:30:33.000000000", + "2019-01-02T03:31:35.000000000", + "2019-01-02T03:32:45.000000000", + "2019-01-02T03:33:14.000000000", + "2019-01-02T03:33:34.000000000", + "2019-01-02T03:34:38.000000000", + "2019-01-02T03:35:18.000000000", + "2019-01-02T03:35:35.000000000", + "2019-01-02T03:35:52.000000000", + "2019-01-02T03:36:51.000000000", + "2019-01-02T03:36:59.000000000", + "2019-01-02T03:37:17.000000000", + "2019-01-02T03:40:28.000000000", + "2019-01-02T03:41:19.000000000", + "2019-01-02T03:43:02.000000000", + "2019-01-02T03:43:33.000000000", + "2019-01-02T03:43:55.000000000", + "2019-01-02T03:45:10.000000000", + "2019-01-02T03:46:16.000000000", + "2019-01-02T03:46:50.000000000", + "2019-01-02T03:46:53.000000000", + "2019-01-02T03:48:58.000000000", + "2019-01-02T03:49:26.000000000", + "2019-01-02T03:49:40.000000000", + "2019-01-02T03:51:59.000000000", + "2019-01-02T03:52:15.000000000", + "2019-01-02T03:52:18.000000000", + "2019-01-02T03:52:50.000000000", + "2019-01-02T03:53:25.000000000", + "2019-01-02T03:54:39.000000000", + "2019-01-02T03:54:55.000000000", + "2019-01-02T03:55:28.000000000", + "2019-01-02T03:55:57.000000000", + "2019-01-02T03:55:58.000000000", + "2019-01-02T03:56:03.000000000", + "2019-01-02T03:57:42.000000000", + "2019-01-02T03:58:04.000000000", + "2019-01-02T03:58:13.000000000", + "2019-01-02T03:59:17.000000000", + "2019-01-02T03:59:41.000000000", + "2019-01-02T04:01:05.000000000", + "2019-01-02T04:01:48.000000000", + "2019-01-02T04:01:59.000000000", + "2019-01-02T04:02:52.000000000", + "2019-01-02T04:04:24.000000000", + "2019-01-02T04:05:27.000000000", + "2019-01-02T04:05:50.000000000", + "2019-01-02T04:06:28.000000000", + "2019-01-02T04:08:17.000000000", + "2019-01-02T04:09:27.000000000", + "2019-01-02T04:10:19.000000000", + "2019-01-02T04:11:03.000000000", + "2019-01-02T04:14:49.000000000", + "2019-01-02T04:16:10.000000000", + "2019-01-02T04:18:25.000000000", + "2019-01-02T04:20:00.000000000", + "2019-01-02T04:20:21.000000000", + "2019-01-02T04:21:14.000000000", + "2019-01-02T04:22:52.000000000", + "2019-01-02T04:23:36.000000000", + "2019-01-02T04:24:32.000000000", + "2019-01-02T04:26:00.000000000", + "2019-01-02T04:28:26.000000000", + "2019-01-02T04:29:06.000000000", + "2019-01-02T04:30:07.000000000", + "2019-01-02T04:32:36.000000000", + "2019-01-02T04:33:19.000000000", + "2019-01-02T04:33:37.000000000", + "2019-01-02T04:35:32.000000000", + "2019-01-02T04:35:58.000000000", + "2019-01-02T04:36:36.000000000", + "2019-01-02T04:37:52.000000000", + "2019-01-02T04:38:24.000000000", + "2019-01-02T04:39:07.000000000", + "2019-01-02T04:39:18.000000000", + "2019-01-02T04:39:34.000000000", + "2019-01-02T04:40:47.000000000", + "2019-01-02T04:41:11.000000000", + "2019-01-02T04:41:33.000000000", + "2019-01-02T04:41:59.000000000", + "2019-01-02T04:44:01.000000000", + "2019-01-02T04:44:22.000000000", + "2019-01-02T04:47:45.000000000", + "2019-01-02T04:48:38.000000000", + "2019-01-02T04:50:20.000000000", + "2019-01-02T04:51:18.000000000", + "2019-01-02T04:51:27.000000000", + "2019-01-02T04:54:40.000000000", + "2019-01-02T04:54:44.000000000", + "2019-01-02T04:54:52.000000000", + "2019-01-02T04:55:03.000000000", + "2019-01-02T04:56:51.000000000", + "2019-01-02T04:57:13.000000000", + "2019-01-02T04:57:47.000000000", + "2019-01-02T04:58:03.000000000", + "2019-01-02T04:59:10.000000000", + "2019-01-02T05:00:32.000000000", + "2019-01-02T05:02:25.000000000", + "2019-01-02T05:03:10.000000000", + "2019-01-02T05:03:50.000000000", + "2019-01-02T05:04:03.000000000", + "2019-01-02T05:04:22.000000000", + "2019-01-02T05:06:03.000000000", + "2019-01-02T05:07:17.000000000", + "2019-01-02T05:08:47.000000000", + "2019-01-02T05:09:21.000000000", + "2019-01-02T05:09:30.000000000", + "2019-01-02T05:10:07.000000000", + "2019-01-02T05:10:10.000000000", + "2019-01-02T05:10:35.000000000", + "2019-01-02T05:10:37.000000000", + "2019-01-02T05:10:56.000000000", + "2019-01-02T05:12:33.000000000", + "2019-01-02T05:13:37.000000000", + "2019-01-02T05:14:23.000000000", + "2019-01-02T05:15:33.000000000", + "2019-01-02T05:17:00.000000000", + "2019-01-02T05:17:12.000000000", + "2019-01-02T05:18:37.000000000", + "2019-01-02T05:19:17.000000000", + "2019-01-02T05:19:28.000000000", + "2019-01-02T05:19:37.000000000", + "2019-01-02T05:21:02.000000000", + "2019-01-02T05:22:40.000000000", + "2019-01-02T05:23:20.000000000", + "2019-01-02T05:23:23.000000000", + "2019-01-02T05:23:38.000000000", + "2019-01-02T05:23:51.000000000", + "2019-01-02T05:23:52.000000000", + "2019-01-02T05:24:21.000000000", + "2019-01-02T05:24:22.000000000", + "2019-01-02T05:25:18.000000000", + "2019-01-02T05:26:23.000000000", + "2019-01-02T05:27:32.000000000", + "2019-01-02T05:28:19.000000000", + "2019-01-02T05:30:11.000000000", + "2019-01-02T05:31:58.000000000", + "2019-01-02T05:32:06.000000000", + "2019-01-02T05:33:28.000000000", + "2019-01-02T05:34:23.000000000", + "2019-01-02T05:34:30.000000000", + "2019-01-02T05:34:43.000000000", + "2019-01-02T05:35:41.000000000", + "2019-01-02T05:36:20.000000000", + "2019-01-02T05:36:47.000000000", + "2019-01-02T05:37:32.000000000", + "2019-01-02T05:37:36.000000000", + "2019-01-02T05:40:35.000000000", + "2019-01-02T05:41:37.000000000", + "2019-01-02T05:41:48.000000000", + "2019-01-02T05:42:55.000000000", + "2019-01-02T05:44:16.000000000", + "2019-01-02T05:44:32.000000000", + "2019-01-02T05:45:36.000000000", + "2019-01-02T05:46:03.000000000", + "2019-01-02T05:47:33.000000000", + "2019-01-02T05:47:38.000000000", + "2019-01-02T05:47:51.000000000", + "2019-01-02T05:50:32.000000000", + "2019-01-02T05:51:02.000000000", + "2019-01-02T05:51:23.000000000", + "2019-01-02T05:53:25.000000000", + "2019-01-02T05:53:26.000000000", + "2019-01-02T05:53:39.000000000", + "2019-01-02T05:55:24.000000000", + "2019-01-02T05:56:03.000000000", + "2019-01-02T05:57:00.000000000", + "2019-01-02T05:57:13.000000000", + "2019-01-02T05:57:42.000000000", + "2019-01-02T05:57:50.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:59:05.000000000", + "2019-01-02T05:59:13.000000000", + "2019-01-02T06:00:06.000000000", + "2019-01-02T06:00:26.000000000", + "2019-01-02T06:00:34.000000000", + "2019-01-02T06:00:48.000000000", + "2019-01-02T06:02:13.000000000", + "2019-01-02T06:02:15.000000000", + "2019-01-02T06:02:43.000000000", + "2019-01-02T06:04:27.000000000", + "2019-01-02T06:04:57.000000000", + "2019-01-02T06:06:26.000000000", + "2019-01-02T06:06:38.000000000", + "2019-01-02T06:08:38.000000000", + "2019-01-02T06:11:48.000000000", + "2019-01-02T06:13:33.000000000", + "2019-01-02T06:14:22.000000000", + "2019-01-02T06:14:31.000000000", + "2019-01-02T06:14:36.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:16:02.000000000", + "2019-01-02T06:16:58.000000000", + "2019-01-02T06:17:28.000000000", + "2019-01-02T06:18:06.000000000", + "2019-01-02T06:20:58.000000000", + "2019-01-02T06:21:33.000000000", + "2019-01-02T06:22:21.000000000", + "2019-01-02T06:22:35.000000000", + "2019-01-02T06:24:22.000000000", + "2019-01-02T06:24:56.000000000", + "2019-01-02T06:26:33.000000000", + "2019-01-02T06:26:59.000000000", + "2019-01-02T06:27:07.000000000", + "2019-01-02T06:27:11.000000000", + "2019-01-02T06:28:04.000000000", + "2019-01-02T06:28:33.000000000", + "2019-01-02T06:28:46.000000000", + "2019-01-02T06:28:50.000000000", + "2019-01-02T06:30:21.000000000", + "2019-01-02T06:30:50.000000000", + "2019-01-02T06:33:56.000000000", + "2019-01-02T06:35:05.000000000", + "2019-01-02T06:35:25.000000000", + "2019-01-02T06:36:49.000000000", + "2019-01-02T06:39:32.000000000", + "2019-01-02T06:40:28.000000000", + "2019-01-02T06:41:14.000000000", + "2019-01-02T06:41:23.000000000", + "2019-01-02T06:42:16.000000000", + "2019-01-02T06:43:01.000000000", + "2019-01-02T06:43:36.000000000", + "2019-01-02T06:44:07.000000000", + "2019-01-02T06:46:57.000000000", + "2019-01-02T06:47:44.000000000", + "2019-01-02T06:48:14.000000000", + "2019-01-02T06:48:26.000000000", + "2019-01-02T06:48:35.000000000", + "2019-01-02T06:51:25.000000000", + "2019-01-02T06:52:33.000000000", + "2019-01-02T06:54:11.000000000", + "2019-01-02T06:54:55.000000000", + "2019-01-02T06:55:23.000000000", + "2019-01-02T06:55:25.000000000", + "2019-01-02T06:55:44.000000000", + "2019-01-02T07:03:53.000000000", + "2019-01-02T07:04:21.000000000", + "2019-01-02T07:04:38.000000000", + "2019-01-02T07:05:28.000000000", + "2019-01-02T07:05:49.000000000", + "2019-01-02T07:08:58.000000000", + "2019-01-02T07:09:08.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:11:25.000000000", + "2019-01-02T07:13:31.000000000", + "2019-01-02T07:13:41.000000000", + "2019-01-02T07:15:55.000000000", + "2019-01-02T07:16:00.000000000", + "2019-01-02T07:17:22.000000000", + "2019-01-02T07:18:01.000000000", + "2019-01-02T07:18:24.000000000", + "2019-01-02T07:21:16.000000000", + "2019-01-02T07:22:38.000000000", + "2019-01-02T07:23:37.000000000", + "2019-01-02T07:25:02.000000000", + "2019-01-02T07:25:22.000000000", + "2019-01-02T07:26:20.000000000", + "2019-01-02T07:26:47.000000000", + "2019-01-02T07:27:35.000000000", + "2019-01-02T07:27:46.000000000", + "2019-01-02T07:27:51.000000000", + "2019-01-02T07:28:11.000000000", + "2019-01-02T07:29:32.000000000", + "2019-01-02T07:30:07.000000000", + "2019-01-02T07:31:17.000000000", + "2019-01-02T07:31:27.000000000", + "2019-01-02T07:31:52.000000000", + "2019-01-02T07:32:08.000000000", + "2019-01-02T07:32:24.000000000", + "2019-01-02T07:33:40.000000000", + "2019-01-02T07:35:24.000000000", + "2019-01-02T07:36:19.000000000", + "2019-01-02T07:37:02.000000000", + "2019-01-02T07:37:25.000000000", + "2019-01-02T07:37:57.000000000", + "2019-01-02T07:38:54.000000000", + "2019-01-02T07:39:19.000000000", + "2019-01-02T07:39:29.000000000", + "2019-01-02T07:43:10.000000000", + "2019-01-02T07:44:41.000000000", + "2019-01-02T07:45:28.000000000", + "2019-01-02T07:46:08.000000000", + "2019-01-02T07:46:37.000000000", + "2019-01-02T07:46:43.000000000", + "2019-01-02T07:48:24.000000000", + "2019-01-02T07:49:48.000000000", + "2019-01-02T07:50:19.000000000", + "2019-01-02T07:50:35.000000000", + "2019-01-02T07:51:36.000000000", + "2019-01-02T07:52:08.000000000", + "2019-01-02T07:52:56.000000000", + "2019-01-02T07:53:29.000000000", + "2019-01-02T07:54:02.000000000", + "2019-01-02T07:54:37.000000000", + "2019-01-02T07:57:24.000000000", + "2019-01-02T07:58:40.000000000", + "2019-01-02T07:59:04.000000000", + "2019-01-02T08:00:16.000000000", + "2019-01-02T08:02:25.000000000", + "2019-01-02T08:03:21.000000000", + "2019-01-02T08:05:02.000000000", + "2019-01-02T08:05:20.000000000", + "2019-01-02T08:06:12.000000000", + "2019-01-02T08:07:45.000000000", + "2019-01-02T08:08:09.000000000", + "2019-01-02T08:08:54.000000000", + "2019-01-02T08:09:48.000000000", + "2019-01-02T08:10:23.000000000", + "2019-01-02T08:10:34.000000000", + "2019-01-02T08:11:19.000000000", + "2019-01-02T08:12:26.000000000", + "2019-01-02T08:12:58.000000000", + "2019-01-02T08:14:39.000000000", + "2019-01-02T08:14:45.000000000", + "2019-01-02T08:14:53.000000000", + "2019-01-02T08:15:23.000000000", + "2019-01-02T08:16:06.000000000", + "2019-01-02T08:16:25.000000000", + "2019-01-02T08:16:53.000000000", + "2019-01-02T08:17:38.000000000", + "2019-01-02T08:18:47.000000000", + "2019-01-02T08:18:51.000000000", + "2019-01-02T08:21:10.000000000", + "2019-01-02T08:21:20.000000000", + "2019-01-02T08:22:10.000000000", + "2019-01-02T08:23:25.000000000", + "2019-01-02T08:24:50.000000000", + "2019-01-02T08:25:35.000000000", + "2019-01-02T08:25:38.000000000", + "2019-01-02T08:27:20.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:56.000000000", + "2019-01-02T08:27:59.000000000", + "2019-01-02T08:29:27.000000000", + "2019-01-02T08:31:53.000000000", + "2019-01-02T08:33:09.000000000", + "2019-01-02T08:34:17.000000000", + "2019-01-02T08:34:50.000000000", + "2019-01-02T08:34:55.000000000", + "2019-01-02T08:36:07.000000000", + "2019-01-02T08:37:25.000000000", + "2019-01-02T08:38:57.000000000", + "2019-01-02T08:39:25.000000000", + "2019-01-02T08:39:43.000000000", + "2019-01-02T08:39:46.000000000", + "2019-01-02T08:40:11.000000000", + "2019-01-02T08:40:17.000000000", + "2019-01-02T08:42:05.000000000", + "2019-01-02T08:42:29.000000000", + "2019-01-02T08:43:10.000000000", + "2019-01-02T08:43:17.000000000", + "2019-01-02T08:44:03.000000000", + "2019-01-02T08:44:42.000000000", + "2019-01-02T08:44:44.000000000", + "2019-01-02T08:44:50.000000000", + "2019-01-02T08:46:45.000000000", + "2019-01-02T08:46:55.000000000", + "2019-01-02T08:48:19.000000000", + "2019-01-02T08:48:20.000000000", + "2019-01-02T08:48:39.000000000", + "2019-01-02T08:52:12.000000000", + "2019-01-02T08:52:30.000000000", + "2019-01-02T08:53:25.000000000", + "2019-01-02T08:53:34.000000000", + "2019-01-02T08:54:27.000000000", + "2019-01-02T08:54:56.000000000", + "2019-01-02T08:55:15.000000000", + "2019-01-02T08:55:27.000000000", + "2019-01-02T08:55:51.000000000", + "2019-01-02T08:55:58.000000000", + "2019-01-02T08:56:07.000000000", + "2019-01-02T08:56:47.000000000", + "2019-01-02T08:56:58.000000000", + "2019-01-02T08:57:36.000000000", + "2019-01-02T08:58:53.000000000", + "2019-01-02T09:00:03.000000000", + "2019-01-02T09:00:06.000000000", + "2019-01-02T09:00:20.000000000", + "2019-01-02T09:02:25.000000000", + "2019-01-02T09:06:28.000000000", + "2019-01-02T09:06:29.000000000", + "2019-01-02T09:08:35.000000000", + "2019-01-02T09:10:11.000000000", + "2019-01-02T09:11:04.000000000", + "2019-01-02T09:13:51.000000000", + "2019-01-02T09:14:15.000000000", + "2019-01-02T09:15:57.000000000", + "2019-01-02T09:16:16.000000000", + "2019-01-02T09:16:26.000000000", + "2019-01-02T09:17:27.000000000", + "2019-01-02T09:20:36.000000000", + "2019-01-02T09:24:35.000000000", + "2019-01-02T09:26:47.000000000", + "2019-01-02T09:28:27.000000000", + "2019-01-02T09:30:43.000000000", + "2019-01-02T09:30:55.000000000", + "2019-01-02T09:32:17.000000000", + "2019-01-02T09:34:34.000000000", + "2019-01-02T09:34:36.000000000", + "2019-01-02T09:34:52.000000000", + "2019-01-02T09:34:59.000000000", + "2019-01-02T09:35:54.000000000", + "2019-01-02T09:36:57.000000000", + "2019-01-02T09:37:50.000000000", + "2019-01-02T09:42:01.000000000", + "2019-01-02T09:42:25.000000000", + "2019-01-02T09:43:41.000000000", + "2019-01-02T09:45:20.000000000", + "2019-01-02T09:48:14.000000000", + "2019-01-02T09:48:46.000000000", + "2019-01-02T09:49:16.000000000", + "2019-01-02T09:49:47.000000000", + "2019-01-02T09:52:12.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:37.000000000", + "2019-01-02T09:53:51.000000000", + "2019-01-02T09:55:00.000000000", + "2019-01-02T09:56:21.000000000", + "2019-01-02T09:57:34.000000000", + "2019-01-02T09:59:25.000000000", + "2019-01-02T09:59:51.000000000", + "2019-01-02T10:01:02.000000000", + "2019-01-02T10:01:42.000000000", + "2019-01-02T10:02:00.000000000", + "2019-01-02T10:02:33.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:58.000000000", + "2019-01-02T10:05:00.000000000", + "2019-01-02T10:05:04.000000000", + "2019-01-02T10:05:58.000000000", + "2019-01-02T10:06:41.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:49.000000000", + "2019-01-02T10:09:57.000000000", + "2019-01-02T10:10:38.000000000", + "2019-01-02T10:10:50.000000000", + "2019-01-02T10:13:04.000000000", + "2019-01-02T10:13:12.000000000", + "2019-01-02T10:14:13.000000000", + "2019-01-02T10:16:13.000000000", + "2019-01-02T10:16:28.000000000", + "2019-01-02T10:17:53.000000000", + "2019-01-02T10:17:54.000000000", + "2019-01-02T10:19:34.000000000", + "2019-01-02T10:20:21.000000000", + "2019-01-02T10:20:31.000000000", + "2019-01-02T10:21:47.000000000", + "2019-01-02T10:22:25.000000000", + "2019-01-02T10:24:03.000000000", + "2019-01-02T10:24:49.000000000", + "2019-01-02T10:29:00.000000000", + "2019-01-02T10:30:50.000000000", + "2019-01-02T10:30:52.000000000", + "2019-01-02T10:30:58.000000000", + "2019-01-02T10:32:07.000000000", + "2019-01-02T10:32:27.000000000", + "2019-01-02T10:32:33.000000000", + "2019-01-02T10:32:44.000000000", + "2019-01-02T10:32:45.000000000", + "2019-01-02T10:35:10.000000000", + "2019-01-02T10:38:19.000000000", + "2019-01-02T10:38:57.000000000", + "2019-01-02T10:40:40.000000000", + "2019-01-02T10:42:29.000000000", + "2019-01-02T10:42:51.000000000", + "2019-01-02T10:42:54.000000000", + "2019-01-02T10:45:20.000000000", + "2019-01-02T10:46:22.000000000", + "2019-01-02T10:47:30.000000000", + "2019-01-02T10:47:55.000000000", + "2019-01-02T10:50:42.000000000", + "2019-01-02T10:51:00.000000000", + "2019-01-02T10:51:56.000000000", + "2019-01-02T10:52:37.000000000", + "2019-01-02T10:55:44.000000000", + "2019-01-02T10:56:24.000000000", + "2019-01-02T10:56:38.000000000", + "2019-01-02T10:56:47.000000000", + "2019-01-02T10:57:59.000000000", + "2019-01-02T10:58:17.000000000", + "2019-01-02T10:59:25.000000000", + "2019-01-02T11:00:29.000000000", + "2019-01-02T11:01:33.000000000", + "2019-01-02T11:02:40.000000000", + "2019-01-02T11:03:10.000000000", + "2019-01-02T11:04:35.000000000", + "2019-01-02T11:05:19.000000000", + "2019-01-02T11:06:17.000000000", + "2019-01-02T11:06:27.000000000", + "2019-01-02T11:06:42.000000000", + "2019-01-02T11:08:54.000000000", + "2019-01-02T11:09:40.000000000", + "2019-01-02T11:09:54.000000000", + "2019-01-02T11:11:59.000000000", + "2019-01-02T11:12:17.000000000", + "2019-01-02T11:13:22.000000000", + "2019-01-02T11:14:06.000000000", + "2019-01-02T11:15:33.000000000", + "2019-01-02T11:16:10.000000000", + "2019-01-02T11:17:48.000000000", + "2019-01-02T11:19:15.000000000", + "2019-01-02T11:19:28.000000000", + "2019-01-02T11:19:43.000000000", + "2019-01-02T11:20:59.000000000", + "2019-01-02T11:25:35.000000000", + "2019-01-02T11:27:50.000000000", + "2019-01-02T11:30:05.000000000", + "2019-01-02T11:30:14.000000000", + "2019-01-02T11:30:42.000000000", + "2019-01-02T11:31:23.000000000", + "2019-01-02T11:33:04.000000000", + "2019-01-02T11:33:57.000000000", + "2019-01-02T11:34:10.000000000", + "2019-01-02T11:40:13.000000000", + "2019-01-02T11:41:32.000000000", + "2019-01-02T11:42:48.000000000", + "2019-01-02T11:43:17.000000000", + "2019-01-02T11:45:19.000000000", + "2019-01-02T11:46:09.000000000", + "2019-01-02T11:48:16.000000000", + "2019-01-02T11:49:37.000000000", + "2019-01-02T11:53:24.000000000", + "2019-01-02T11:54:27.000000000", + "2019-01-02T11:55:14.000000000", + "2019-01-02T11:56:50.000000000", + "2019-01-02T11:56:58.000000000", + "2019-01-02T11:57:04.000000000", + "2019-01-02T11:57:08.000000000", + "2019-01-02T11:57:14.000000000", + "2019-01-02T11:57:47.000000000", + "2019-01-02T11:59:25.000000000", + "2019-01-02T11:59:58.000000000", + "2019-01-02T12:00:35.000000000", + "2019-01-02T12:02:01.000000000", + "2019-01-02T12:02:06.000000000", + "2019-01-02T12:02:43.000000000", + "2019-01-02T12:03:14.000000000", + "2019-01-02T12:04:33.000000000", + "2019-01-02T12:04:35.000000000", + "2019-01-02T12:05:31.000000000", + "2019-01-02T12:06:08.000000000", + "2019-01-02T12:08:11.000000000", + "2019-01-02T12:08:20.000000000", + "2019-01-02T12:11:30.000000000", + "2019-01-02T12:11:34.000000000", + "2019-01-02T12:12:18.000000000", + "2019-01-02T12:15:30.000000000", + "2019-01-02T12:20:07.000000000", + "2019-01-02T12:20:59.000000000", + "2019-01-02T12:24:06.000000000", + "2019-01-02T12:26:09.000000000", + "2019-01-02T12:26:32.000000000", + "2019-01-02T12:26:48.000000000", + "2019-01-02T12:27:26.000000000", + "2019-01-02T12:30:19.000000000", + "2019-01-02T12:32:32.000000000", + "2019-01-02T12:36:19.000000000", + "2019-01-02T12:39:40.000000000", + "2019-01-02T12:39:44.000000000", + "2019-01-02T12:41:33.000000000", + "2019-01-02T12:42:00.000000000", + "2019-01-02T12:42:08.000000000", + "2019-01-02T12:42:14.000000000", + "2019-01-02T12:44:45.000000000", + "2019-01-02T12:45:58.000000000", + "2019-01-02T12:48:04.000000000", + "2019-01-02T12:49:22.000000000", + "2019-01-02T12:49:49.000000000", + "2019-01-02T12:50:10.000000000", + "2019-01-02T12:51:06.000000000", + "2019-01-02T12:52:47.000000000", + "2019-01-02T12:53:42.000000000", + "2019-01-02T12:54:31.000000000", + "2019-01-02T12:56:26.000000000", + "2019-01-02T12:59:31.000000000", + "2019-01-02T13:01:03.000000000", + "2019-01-02T13:02:20.000000000", + "2019-01-02T13:02:35.000000000", + "2019-01-02T13:03:37.000000000", + "2019-01-02T13:04:15.000000000", + "2019-01-02T13:05:05.000000000", + "2019-01-02T13:05:29.000000000", + "2019-01-02T13:07:17.000000000", + "2019-01-02T13:08:44.000000000", + "2019-01-02T13:09:35.000000000", + "2019-01-02T13:10:25.000000000", + "2019-01-02T13:11:04.000000000", + "2019-01-02T13:11:58.000000000", + "2019-01-02T13:12:25.000000000", + "2019-01-02T13:13:54.000000000", + "2019-01-02T13:17:07.000000000", + "2019-01-02T13:17:18.000000000", + "2019-01-02T13:17:22.000000000", + "2019-01-02T13:17:52.000000000", + "2019-01-02T13:18:26.000000000", + "2019-01-02T13:18:34.000000000", + "2019-01-02T13:18:44.000000000", + "2019-01-02T13:21:37.000000000", + "2019-01-02T13:21:58.000000000", + "2019-01-02T13:22:03.000000000", + "2019-01-02T13:22:30.000000000", + "2019-01-02T13:22:39.000000000", + "2019-01-02T13:24:37.000000000", + "2019-01-02T13:24:52.000000000", + "2019-01-02T13:26:00.000000000", + "2019-01-02T13:26:38.000000000", + "2019-01-02T13:30:08.000000000", + "2019-01-02T13:31:04.000000000", + "2019-01-02T13:31:22.000000000", + "2019-01-02T13:32:37.000000000", + "2019-01-02T13:33:42.000000000", + "2019-01-02T13:36:50.000000000", + "2019-01-02T13:37:30.000000000", + "2019-01-02T13:38:11.000000000", + "2019-01-02T13:38:12.000000000", + "2019-01-02T13:38:38.000000000", + "2019-01-02T13:41:04.000000000", + "2019-01-02T13:41:43.000000000", + "2019-01-02T13:41:56.000000000", + "2019-01-02T13:42:45.000000000", + "2019-01-02T13:42:49.000000000", + "2019-01-02T13:44:53.000000000", + "2019-01-02T13:45:02.000000000", + "2019-01-02T13:45:35.000000000", + "2019-01-02T13:48:19.000000000", + "2019-01-02T13:48:40.000000000", + "2019-01-02T13:49:01.000000000", + "2019-01-02T13:49:25.000000000", + "2019-01-02T13:50:31.000000000", + "2019-01-02T13:52:27.000000000", + "2019-01-02T13:52:38.000000000", + "2019-01-02T13:53:08.000000000", + "2019-01-02T13:53:10.000000000", + "2019-01-02T13:53:15.000000000", + "2019-01-02T13:53:24.000000000", + "2019-01-02T13:53:46.000000000", + "2019-01-02T13:53:57.000000000", + "2019-01-02T13:55:17.000000000", + "2019-01-02T13:56:29.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:57:12.000000000", + "2019-01-02T13:57:33.000000000", + "2019-01-02T14:00:56.000000000", + "2019-01-02T14:01:13.000000000", + "2019-01-02T14:03:14.000000000", + "2019-01-02T14:04:51.000000000", + "2019-01-02T14:05:18.000000000", + "2019-01-02T14:05:48.000000000", + "2019-01-02T14:05:51.000000000", + "2019-01-02T14:07:19.000000000", + "2019-01-02T14:08:04.000000000", + "2019-01-02T14:08:42.000000000", + "2019-01-02T14:09:33.000000000", + "2019-01-02T14:09:43.000000000", + "2019-01-02T14:10:58.000000000", + "2019-01-02T14:13:01.000000000", + "2019-01-02T14:13:31.000000000", + "2019-01-02T14:14:03.000000000", + "2019-01-02T14:16:38.000000000", + "2019-01-02T14:17:03.000000000", + "2019-01-02T14:18:53.000000000", + "2019-01-02T14:19:02.000000000", + "2019-01-02T14:19:56.000000000", + "2019-01-02T14:22:11.000000000", + "2019-01-02T14:22:18.000000000", + "2019-01-02T14:25:02.000000000", + "2019-01-02T14:25:35.000000000", + "2019-01-02T14:25:48.000000000", + "2019-01-02T14:26:09.000000000", + "2019-01-02T14:27:43.000000000", + "2019-01-02T14:27:46.000000000", + "2019-01-02T14:29:00.000000000", + "2019-01-02T14:29:32.000000000", + "2019-01-02T14:29:42.000000000", + "2019-01-02T14:29:44.000000000", + "2019-01-02T14:29:45.000000000", + "2019-01-02T14:29:51.000000000", + "2019-01-02T14:31:42.000000000", + "2019-01-02T14:33:25.000000000", + "2019-01-02T14:33:45.000000000", + "2019-01-02T14:34:36.000000000", + "2019-01-02T14:35:22.000000000", + "2019-01-02T14:35:52.000000000", + "2019-01-02T14:36:24.000000000", + "2019-01-02T14:37:05.000000000", + "2019-01-02T14:37:13.000000000", + "2019-01-02T14:38:31.000000000", + "2019-01-02T14:38:51.000000000", + "2019-01-02T14:39:24.000000000", + "2019-01-02T14:40:00.000000000", + "2019-01-02T14:41:30.000000000", + "2019-01-02T14:41:35.000000000", + "2019-01-02T14:42:00.000000000", + "2019-01-02T14:42:31.000000000", + "2019-01-02T14:44:18.000000000", + "2019-01-02T14:46:23.000000000", + "2019-01-02T14:47:00.000000000", + "2019-01-02T14:49:54.000000000", + "2019-01-02T14:50:09.000000000", + "2019-01-02T14:51:34.000000000", + "2019-01-02T14:52:05.000000000", + "2019-01-02T14:52:12.000000000", + "2019-01-02T14:53:17.000000000", + "2019-01-02T14:54:12.000000000", + "2019-01-02T14:55:05.000000000", + "2019-01-02T14:57:04.000000000", + "2019-01-02T14:57:18.000000000", + "2019-01-02T15:01:44.000000000", + "2019-01-02T15:01:50.000000000", + "2019-01-02T15:03:01.000000000", + "2019-01-02T15:03:04.000000000", + "2019-01-02T15:03:55.000000000", + "2019-01-02T15:03:58.000000000", + "2019-01-02T15:04:25.000000000", + "2019-01-02T15:04:32.000000000", + "2019-01-02T15:05:19.000000000", + "2019-01-02T15:08:49.000000000", + "2019-01-02T15:08:51.000000000", + "2019-01-02T15:10:57.000000000", + "2019-01-02T15:11:12.000000000", + "2019-01-02T15:11:22.000000000", + "2019-01-02T15:13:12.000000000", + "2019-01-02T15:16:25.000000000", + "2019-01-02T15:16:28.000000000", + "2019-01-02T15:16:59.000000000", + "2019-01-02T15:17:51.000000000", + "2019-01-02T15:18:25.000000000", + "2019-01-02T15:21:36.000000000", + "2019-01-02T15:21:55.000000000", + "2019-01-02T15:25:44.000000000", + "2019-01-02T15:26:11.000000000", + "2019-01-02T15:27:02.000000000", + "2019-01-02T15:31:04.000000000", + "2019-01-02T15:33:38.000000000", + "2019-01-02T15:34:04.000000000", + "2019-01-02T15:36:22.000000000", + "2019-01-02T15:37:15.000000000", + "2019-01-02T15:37:39.000000000", + "2019-01-02T15:39:06.000000000", + "2019-01-02T15:41:19.000000000", + "2019-01-02T15:41:27.000000000", + "2019-01-02T15:42:43.000000000", + "2019-01-02T15:43:31.000000000", + "2019-01-02T15:44:06.000000000", + "2019-01-02T15:45:36.000000000", + "2019-01-02T15:47:47.000000000", + "2019-01-02T15:48:37.000000000", + "2019-01-02T15:49:08.000000000", + "2019-01-02T15:49:10.000000000", + "2019-01-02T15:50:00.000000000", + "2019-01-02T15:50:22.000000000", + "2019-01-02T15:50:58.000000000", + "2019-01-02T15:51:26.000000000", + "2019-01-02T15:53:52.000000000", + "2019-01-02T15:54:09.000000000", + "2019-01-02T15:55:00.000000000", + "2019-01-02T15:55:57.000000000", + "2019-01-02T15:56:11.000000000", + "2019-01-02T15:56:44.000000000", + "2019-01-02T15:57:04.000000000", + "2019-01-02T16:00:26.000000000", + "2019-01-02T16:01:52.000000000", + "2019-01-02T16:03:24.000000000", + "2019-01-02T16:03:28.000000000", + "2019-01-02T16:04:32.000000000", + "2019-01-02T16:06:01.000000000", + "2019-01-02T16:06:43.000000000", + "2019-01-02T16:06:48.000000000", + "2019-01-02T16:07:51.000000000", + "2019-01-02T16:08:06.000000000", + "2019-01-02T16:08:19.000000000", + "2019-01-02T16:08:24.000000000", + "2019-01-02T16:08:26.000000000", + "2019-01-02T16:08:48.000000000", + "2019-01-02T16:09:01.000000000", + "2019-01-02T16:09:43.000000000", + "2019-01-02T16:12:38.000000000", + "2019-01-02T16:13:11.000000000", + "2019-01-02T16:13:18.000000000", + "2019-01-02T16:13:51.000000000", + "2019-01-02T16:14:31.000000000", + "2019-01-02T16:15:03.000000000", + "2019-01-02T16:15:27.000000000", + "2019-01-02T16:16:02.000000000", + "2019-01-02T16:16:45.000000000", + "2019-01-02T16:17:06.000000000", + "2019-01-02T16:17:13.000000000", + "2019-01-02T16:18:13.000000000", + "2019-01-02T16:19:17.000000000", + "2019-01-02T16:19:31.000000000", + "2019-01-02T16:22:27.000000000", + "2019-01-02T16:23:43.000000000", + "2019-01-02T16:24:15.000000000", + "2019-01-02T16:26:51.000000000", + "2019-01-02T16:26:55.000000000", + "2019-01-02T16:27:21.000000000", + "2019-01-02T16:28:09.000000000", + "2019-01-02T16:29:29.000000000", + "2019-01-02T16:31:59.000000000", + "2019-01-02T16:32:15.000000000", + "2019-01-02T16:33:55.000000000", + "2019-01-02T16:37:59.000000000", + "2019-01-02T16:38:29.000000000", + "2019-01-02T16:39:14.000000000", + "2019-01-02T16:40:59.000000000", + "2019-01-02T16:41:43.000000000", + "2019-01-02T16:42:07.000000000", + "2019-01-02T16:43:53.000000000", + "2019-01-02T16:44:01.000000000", + "2019-01-02T16:44:47.000000000", + "2019-01-02T16:45:22.000000000", + "2019-01-02T16:46:49.000000000", + "2019-01-02T16:46:56.000000000", + "2019-01-02T16:48:18.000000000", + "2019-01-02T16:49:53.000000000", + "2019-01-02T16:55:59.000000000", + "2019-01-02T16:57:05.000000000", + "2019-01-02T16:58:29.000000000", + "2019-01-02T16:58:31.000000000", + "2019-01-02T16:58:56.000000000", + "2019-01-02T17:00:16.000000000", + "2019-01-02T17:01:22.000000000", + "2019-01-02T17:03:54.000000000", + "2019-01-02T17:04:02.000000000", + "2019-01-02T17:04:11.000000000", + "2019-01-02T17:04:27.000000000", + "2019-01-02T17:05:23.000000000", + "2019-01-02T17:05:42.000000000", + "2019-01-02T17:07:12.000000000", + "2019-01-02T17:08:04.000000000", + "2019-01-02T17:08:41.000000000", + "2019-01-02T17:09:24.000000000", + "2019-01-02T17:10:09.000000000", + "2019-01-02T17:10:26.000000000", + "2019-01-02T17:12:32.000000000", + "2019-01-02T17:12:50.000000000", + "2019-01-02T17:12:55.000000000", + "2019-01-02T17:13:10.000000000", + "2019-01-02T17:14:49.000000000", + "2019-01-02T17:15:09.000000000", + "2019-01-02T17:16:11.000000000", + "2019-01-02T17:17:52.000000000", + "2019-01-02T17:19:33.000000000", + "2019-01-02T17:20:11.000000000", + "2019-01-02T17:20:24.000000000", + "2019-01-02T17:21:14.000000000", + "2019-01-02T17:21:15.000000000", + "2019-01-02T17:21:56.000000000", + "2019-01-02T17:22:07.000000000", + "2019-01-02T17:22:21.000000000", + "2019-01-02T17:22:22.000000000", + "2019-01-02T17:23:39.000000000", + "2019-01-02T17:25:15.000000000", + "2019-01-02T17:25:19.000000000", + "2019-01-02T17:25:51.000000000", + "2019-01-02T17:26:33.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:28:09.000000000", + "2019-01-02T17:28:38.000000000", + "2019-01-02T17:28:54.000000000", + "2019-01-02T17:30:41.000000000", + "2019-01-02T17:31:38.000000000", + "2019-01-02T17:31:51.000000000", + "2019-01-02T17:33:33.000000000", + "2019-01-02T17:35:48.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:38:48.000000000", + "2019-01-02T17:39:59.000000000", + "2019-01-02T17:40:43.000000000", + "2019-01-02T17:40:55.000000000", + "2019-01-02T17:41:05.000000000", + "2019-01-02T17:43:22.000000000", + "2019-01-02T17:48:16.000000000", + "2019-01-02T17:48:56.000000000", + "2019-01-02T17:50:29.000000000", + "2019-01-02T17:50:56.000000000", + "2019-01-02T17:51:04.000000000", + "2019-01-02T17:53:22.000000000", + "2019-01-02T17:53:41.000000000", + "2019-01-02T17:53:43.000000000", + "2019-01-02T17:54:37.000000000", + "2019-01-02T17:55:06.000000000", + "2019-01-02T17:57:05.000000000", + "2019-01-02T18:00:53.000000000", + "2019-01-02T18:02:19.000000000", + "2019-01-02T18:02:32.000000000", + "2019-01-02T18:03:44.000000000", + "2019-01-02T18:05:34.000000000", + "2019-01-02T18:06:06.000000000", + "2019-01-02T18:06:19.000000000", + "2019-01-02T18:07:27.000000000", + "2019-01-02T18:07:44.000000000", + "2019-01-02T18:11:12.000000000", + "2019-01-02T18:12:11.000000000", + "2019-01-02T18:12:28.000000000", + "2019-01-02T18:12:43.000000000", + "2019-01-02T18:13:26.000000000", + "2019-01-02T18:14:48.000000000", + "2019-01-02T18:16:04.000000000", + "2019-01-02T18:20:13.000000000", + "2019-01-02T18:21:16.000000000", + "2019-01-02T18:21:22.000000000", + "2019-01-02T18:21:26.000000000", + "2019-01-02T18:21:34.000000000", + "2019-01-02T18:22:12.000000000", + "2019-01-02T18:23:17.000000000", + "2019-01-02T18:24:25.000000000", + "2019-01-02T18:25:07.000000000", + "2019-01-02T18:26:06.000000000", + "2019-01-02T18:26:11.000000000", + "2019-01-02T18:27:02.000000000", + "2019-01-02T18:27:57.000000000", + "2019-01-02T18:27:59.000000000", + "2019-01-02T18:30:05.000000000", + "2019-01-02T18:33:09.000000000", + "2019-01-02T18:33:26.000000000", + "2019-01-02T18:36:34.000000000", + "2019-01-02T18:37:08.000000000", + "2019-01-02T18:39:04.000000000", + "2019-01-02T18:40:19.000000000", + "2019-01-02T18:40:38.000000000", + "2019-01-02T18:40:54.000000000", + "2019-01-02T18:41:38.000000000", + "2019-01-02T18:41:55.000000000", + "2019-01-02T18:42:07.000000000", + "2019-01-02T18:42:33.000000000", + "2019-01-02T18:46:52.000000000", + "2019-01-02T18:50:41.000000000", + "2019-01-02T18:51:45.000000000", + "2019-01-02T18:51:51.000000000", + "2019-01-02T18:53:52.000000000", + "2019-01-02T18:54:09.000000000", + "2019-01-02T18:56:21.000000000", + "2019-01-02T18:56:33.000000000", + "2019-01-02T18:58:12.000000000", + "2019-01-02T18:59:24.000000000", + "2019-01-02T19:01:16.000000000", + "2019-01-02T19:01:17.000000000", + "2019-01-02T19:01:50.000000000", + "2019-01-02T19:02:17.000000000", + "2019-01-02T19:02:55.000000000", + "2019-01-02T19:03:34.000000000", + "2019-01-02T19:05:34.000000000", + "2019-01-02T19:07:31.000000000", + "2019-01-02T19:09:07.000000000", + "2019-01-02T19:09:53.000000000", + "2019-01-02T19:11:03.000000000", + "2019-01-02T19:11:42.000000000", + "2019-01-02T19:12:04.000000000", + "2019-01-02T19:12:21.000000000", + "2019-01-02T19:12:54.000000000", + "2019-01-02T19:13:15.000000000", + "2019-01-02T19:14:03.000000000", + "2019-01-02T19:15:18.000000000", + "2019-01-02T19:16:11.000000000", + "2019-01-02T19:17:02.000000000", + "2019-01-02T19:17:12.000000000", + "2019-01-02T19:17:58.000000000", + "2019-01-02T19:18:02.000000000", + "2019-01-02T19:18:06.000000000", + "2019-01-02T19:19:12.000000000", + "2019-01-02T19:20:23.000000000", + "2019-01-02T19:21:02.000000000", + "2019-01-02T19:21:04.000000000", + "2019-01-02T19:21:09.000000000", + "2019-01-02T19:22:05.000000000", + "2019-01-02T19:24:09.000000000", + "2019-01-02T19:25:19.000000000", + "2019-01-02T19:25:58.000000000", + "2019-01-02T19:26:35.000000000", + "2019-01-02T19:28:12.000000000", + "2019-01-02T19:29:22.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:30:17.000000000", + "2019-01-02T19:31:04.000000000", + "2019-01-02T19:31:30.000000000", + "2019-01-02T19:32:42.000000000", + "2019-01-02T19:35:31.000000000", + "2019-01-02T19:35:34.000000000", + "2019-01-02T19:35:51.000000000", + "2019-01-02T19:36:37.000000000", + "2019-01-02T19:40:50.000000000", + "2019-01-02T19:41:24.000000000", + "2019-01-02T19:41:25.000000000", + "2019-01-02T19:41:54.000000000", + "2019-01-02T19:43:30.000000000", + "2019-01-02T19:44:21.000000000", + "2019-01-02T19:44:43.000000000", + "2019-01-02T19:44:58.000000000", + "2019-01-02T19:46:38.000000000", + "2019-01-02T19:48:20.000000000", + "2019-01-02T19:50:10.000000000", + "2019-01-02T19:52:16.000000000", + "2019-01-02T19:53:56.000000000", + "2019-01-02T19:54:02.000000000", + "2019-01-02T19:55:32.000000000", + "2019-01-02T19:55:34.000000000", + "2019-01-02T19:57:06.000000000", + "2019-01-02T19:57:33.000000000", + "2019-01-02T19:58:16.000000000", + "2019-01-02T19:59:16.000000000", + "2019-01-02T20:00:41.000000000", + "2019-01-02T20:01:58.000000000", + "2019-01-02T20:02:03.000000000", + "2019-01-02T20:02:18.000000000", + "2019-01-02T20:04:01.000000000", + "2019-01-02T20:04:06.000000000", + "2019-01-02T20:04:13.000000000", + "2019-01-02T20:04:26.000000000", + "2019-01-02T20:04:45.000000000", + "2019-01-02T20:05:57.000000000", + "2019-01-02T20:07:12.000000000", + "2019-01-02T20:07:36.000000000", + "2019-01-02T20:08:50.000000000", + "2019-01-02T20:10:46.000000000", + "2019-01-02T20:10:49.000000000", + "2019-01-02T20:11:41.000000000", + "2019-01-02T20:13:26.000000000", + "2019-01-02T20:15:15.000000000", + "2019-01-02T20:17:15.000000000", + "2019-01-02T20:18:32.000000000", + "2019-01-02T20:19:58.000000000", + "2019-01-02T20:24:07.000000000", + "2019-01-02T20:25:39.000000000", + "2019-01-02T20:26:34.000000000", + "2019-01-02T20:27:38.000000000", + "2019-01-02T20:30:33.000000000", + "2019-01-02T20:31:32.000000000", + "2019-01-02T20:32:58.000000000", + "2019-01-02T20:33:01.000000000", + "2019-01-02T20:33:27.000000000", + "2019-01-02T20:33:33.000000000", + "2019-01-02T20:34:40.000000000", + "2019-01-02T20:36:38.000000000", + "2019-01-02T20:38:11.000000000", + "2019-01-02T20:38:36.000000000", + "2019-01-02T20:38:43.000000000", + "2019-01-02T20:39:19.000000000", + "2019-01-02T20:45:46.000000000", + "2019-01-02T20:47:07.000000000", + "2019-01-02T20:47:47.000000000", + "2019-01-02T20:48:51.000000000", + "2019-01-02T20:49:03.000000000", + "2019-01-02T20:50:46.000000000", + "2019-01-02T20:52:00.000000000", + "2019-01-02T20:52:35.000000000", + "2019-01-02T20:53:07.000000000", + "2019-01-02T20:53:39.000000000", + "2019-01-02T20:54:07.000000000", + "2019-01-02T20:54:10.000000000", + "2019-01-02T20:56:40.000000000", + "2019-01-02T21:00:04.000000000", + "2019-01-02T21:00:28.000000000", + "2019-01-02T21:00:42.000000000", + "2019-01-02T21:02:37.000000000", + "2019-01-02T21:03:27.000000000", + "2019-01-02T21:04:43.000000000", + "2019-01-02T21:04:45.000000000", + "2019-01-02T21:05:13.000000000", + "2019-01-02T21:06:07.000000000", + "2019-01-02T21:06:17.000000000", + "2019-01-02T21:06:22.000000000", + "2019-01-02T21:09:07.000000000", + "2019-01-02T21:10:55.000000000", + "2019-01-02T21:11:46.000000000", + "2019-01-02T21:12:12.000000000", + "2019-01-02T21:12:21.000000000", + "2019-01-02T21:12:42.000000000", + "2019-01-02T21:12:57.000000000", + "2019-01-02T21:14:13.000000000", + "2019-01-02T21:15:03.000000000", + "2019-01-02T21:17:34.000000000", + "2019-01-02T21:19:13.000000000", + "2019-01-02T21:22:06.000000000", + "2019-01-02T21:22:43.000000000", + "2019-01-02T21:22:45.000000000", + "2019-01-02T21:24:19.000000000", + "2019-01-02T21:24:29.000000000", + "2019-01-02T21:24:52.000000000", + "2019-01-02T21:27:03.000000000", + "2019-01-02T21:27:13.000000000", + "2019-01-02T21:27:51.000000000", + "2019-01-02T21:28:09.000000000", + "2019-01-02T21:30:28.000000000", + "2019-01-02T21:30:41.000000000", + "2019-01-02T21:31:48.000000000", + "2019-01-02T21:31:56.000000000", + "2019-01-02T21:33:09.000000000", + "2019-01-02T21:34:41.000000000", + "2019-01-02T21:35:21.000000000", + "2019-01-02T21:35:52.000000000", + "2019-01-02T21:36:07.000000000", + "2019-01-02T21:36:40.000000000", + "2019-01-02T21:37:00.000000000", + "2019-01-02T21:37:54.000000000", + "2019-01-02T21:38:01.000000000", + "2019-01-02T21:38:57.000000000", + "2019-01-02T21:40:04.000000000", + "2019-01-02T21:40:30.000000000", + "2019-01-02T21:41:59.000000000", + "2019-01-02T21:42:36.000000000", + "2019-01-02T21:43:33.000000000", + "2019-01-02T21:43:35.000000000", + "2019-01-02T21:45:43.000000000", + "2019-01-02T21:45:47.000000000", + "2019-01-02T21:46:43.000000000", + "2019-01-02T21:46:52.000000000", + "2019-01-02T21:47:23.000000000", + "2019-01-02T21:48:21.000000000", + "2019-01-02T21:48:39.000000000", + "2019-01-02T21:50:12.000000000", + "2019-01-02T21:50:28.000000000", + "2019-01-02T21:50:47.000000000", + "2019-01-02T21:50:55.000000000", + "2019-01-02T21:52:31.000000000", + "2019-01-02T21:53:03.000000000", + "2019-01-02T21:53:44.000000000", + "2019-01-02T21:54:17.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:59:37.000000000", + "2019-01-02T22:00:05.000000000", + "2019-01-02T22:00:39.000000000", + "2019-01-02T22:01:23.000000000", + "2019-01-02T22:02:15.000000000", + "2019-01-02T22:03:03.000000000", + "2019-01-02T22:03:39.000000000", + "2019-01-02T22:05:47.000000000", + "2019-01-02T22:07:38.000000000", + "2019-01-02T22:08:02.000000000", + "2019-01-02T22:09:57.000000000", + "2019-01-02T22:10:22.000000000", + "2019-01-02T22:10:57.000000000", + "2019-01-02T22:12:26.000000000", + "2019-01-02T22:12:29.000000000", + "2019-01-02T22:12:40.000000000", + "2019-01-02T22:12:55.000000000", + "2019-01-02T22:14:12.000000000", + "2019-01-02T22:14:48.000000000", + "2019-01-02T22:21:23.000000000", + "2019-01-02T22:22:10.000000000", + "2019-01-02T22:22:13.000000000", + "2019-01-02T22:23:14.000000000", + "2019-01-02T22:25:37.000000000", + "2019-01-02T22:26:00.000000000", + "2019-01-02T22:26:06.000000000", + "2019-01-02T22:27:07.000000000", + "2019-01-02T22:27:30.000000000", + "2019-01-02T22:27:50.000000000", + "2019-01-02T22:28:22.000000000", + "2019-01-02T22:31:01.000000000", + "2019-01-02T22:31:07.000000000", + "2019-01-02T22:31:33.000000000", + "2019-01-02T22:32:59.000000000", + "2019-01-02T22:33:54.000000000", + "2019-01-02T22:33:59.000000000", + "2019-01-02T22:34:00.000000000", + "2019-01-02T22:34:29.000000000", + "2019-01-02T22:34:38.000000000", + "2019-01-02T22:35:18.000000000", + "2019-01-02T22:35:30.000000000", + "2019-01-02T22:37:57.000000000", + "2019-01-02T22:42:13.000000000", + "2019-01-02T22:43:35.000000000", + "2019-01-02T22:44:28.000000000", + "2019-01-02T22:44:40.000000000", + "2019-01-02T22:44:58.000000000", + "2019-01-02T22:46:00.000000000", + "2019-01-02T22:46:09.000000000", + "2019-01-02T22:51:22.000000000", + "2019-01-02T22:54:31.000000000", + "2019-01-02T22:55:37.000000000", + "2019-01-02T22:56:08.000000000", + "2019-01-02T22:56:28.000000000", + "2019-01-02T22:56:38.000000000", + "2019-01-02T22:56:51.000000000", + "2019-01-02T22:58:01.000000000", + "2019-01-02T23:00:20.000000000", + "2019-01-02T23:04:36.000000000", + "2019-01-02T23:05:21.000000000", + "2019-01-02T23:07:55.000000000", + "2019-01-02T23:08:08.000000000", + "2019-01-02T23:09:35.000000000", + "2019-01-02T23:10:24.000000000", + "2019-01-02T23:10:59.000000000", + "2019-01-02T23:12:45.000000000", + "2019-01-02T23:12:54.000000000", + "2019-01-02T23:13:29.000000000", + "2019-01-02T23:13:48.000000000", + "2019-01-02T23:15:37.000000000", + "2019-01-02T23:15:40.000000000", + "2019-01-02T23:15:48.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:47.000000000", + "2019-01-02T23:16:59.000000000", + "2019-01-02T23:19:21.000000000", + "2019-01-02T23:19:23.000000000", + "2019-01-02T23:19:33.000000000", + "2019-01-02T23:20:01.000000000", + "2019-01-02T23:20:30.000000000", + "2019-01-02T23:20:42.000000000", + "2019-01-02T23:23:03.000000000", + "2019-01-02T23:24:53.000000000", + "2019-01-02T23:25:19.000000000", + "2019-01-02T23:25:43.000000000", + "2019-01-02T23:27:29.000000000", + "2019-01-02T23:28:31.000000000", + "2019-01-02T23:29:12.000000000", + "2019-01-02T23:29:41.000000000", + "2019-01-02T23:29:48.000000000", + "2019-01-02T23:30:09.000000000", + "2019-01-02T23:30:28.000000000", + "2019-01-02T23:32:14.000000000", + "2019-01-02T23:32:41.000000000", + "2019-01-02T23:33:00.000000000", + "2019-01-02T23:33:17.000000000", + "2019-01-02T23:33:42.000000000", + "2019-01-02T23:36:23.000000000", + "2019-01-02T23:36:58.000000000", + "2019-01-02T23:37:06.000000000", + "2019-01-02T23:37:10.000000000", + "2019-01-02T23:39:12.000000000", + "2019-01-02T23:40:01.000000000", + "2019-01-02T23:40:22.000000000", + "2019-01-02T23:40:30.000000000", + "2019-01-02T23:40:38.000000000", + "2019-01-02T23:42:11.000000000", + "2019-01-02T23:44:07.000000000", + "2019-01-02T23:44:20.000000000", + "2019-01-02T23:44:36.000000000", + "2019-01-02T23:44:56.000000000", + "2019-01-02T23:47:43.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:34.000000000", + "2019-01-02T23:51:10.000000000", + "2019-01-02T23:52:45.000000000", + "2019-01-02T23:53:39.000000000", + "2019-01-02T23:53:43.000000000", + "2019-01-02T23:53:56.000000000", + "2019-01-02T23:54:13.000000000", + "2019-01-02T23:54:19.000000000", + "2019-01-02T23:55:46.000000000", + "2019-01-02T23:57:47.000000000", + "2019-01-02T23:58:58.000000000", + "2019-01-02T23:59:34.000000000", + "2019-01-03T00:00:42.000000000", + "2019-01-03T00:01:36.000000000", + "2019-01-03T00:04:57.000000000", + "2019-01-03T00:05:13.000000000", + "2019-01-03T00:07:23.000000000", + "2019-01-03T00:08:21.000000000", + "2019-01-03T00:08:44.000000000", + "2019-01-03T00:09:44.000000000", + "2019-01-03T00:09:49.000000000", + "2019-01-03T00:10:22.000000000", + "2019-01-03T00:10:36.000000000", + "2019-01-03T00:11:36.000000000", + "2019-01-03T00:13:12.000000000", + "2019-01-03T00:14:12.000000000", + "2019-01-03T00:14:19.000000000", + "2019-01-03T00:15:38.000000000", + "2019-01-03T00:17:00.000000000", + "2019-01-03T00:17:01.000000000", + "2019-01-03T00:18:56.000000000", + "2019-01-03T00:19:04.000000000", + "2019-01-03T00:21:05.000000000", + "2019-01-03T00:25:46.000000000", + "2019-01-03T00:26:38.000000000", + "2019-01-03T00:27:26.000000000", + "2019-01-03T00:27:33.000000000", + "2019-01-03T00:28:26.000000000", + "2019-01-03T00:28:53.000000000", + "2019-01-03T00:29:32.000000000", + "2019-01-03T00:31:22.000000000", + "2019-01-03T00:31:55.000000000", + "2019-01-03T00:32:56.000000000", + "2019-01-03T00:33:35.000000000", + "2019-01-03T00:35:46.000000000", + "2019-01-03T00:35:47.000000000", + "2019-01-03T00:38:43.000000000", + "2019-01-03T00:38:52.000000000", + "2019-01-03T00:38:55.000000000", + "2019-01-03T00:39:18.000000000", + "2019-01-03T00:40:17.000000000", + "2019-01-03T00:40:25.000000000", + "2019-01-03T00:41:56.000000000", + "2019-01-03T00:42:04.000000000", + "2019-01-03T00:43:05.000000000", + "2019-01-03T00:43:20.000000000", + "2019-01-03T00:44:38.000000000", + "2019-01-03T00:45:57.000000000", + "2019-01-03T00:47:08.000000000", + "2019-01-03T00:47:34.000000000", + "2019-01-03T00:48:25.000000000", + "2019-01-03T00:49:05.000000000", + "2019-01-03T00:49:54.000000000", + "2019-01-03T00:50:56.000000000", + "2019-01-03T00:51:40.000000000", + "2019-01-03T00:51:59.000000000", + "2019-01-03T00:54:50.000000000", + "2019-01-03T00:55:50.000000000", + "2019-01-03T01:00:18.000000000", + "2019-01-03T01:00:41.000000000", + "2019-01-03T01:00:48.000000000", + "2019-01-03T01:01:25.000000000", + "2019-01-03T01:01:30.000000000", + "2019-01-03T01:01:38.000000000", + "2019-01-03T01:02:00.000000000", + "2019-01-03T01:02:07.000000000", + "2019-01-03T01:02:50.000000000", + "2019-01-03T01:04:03.000000000", + "2019-01-03T01:04:58.000000000", + "2019-01-03T01:05:09.000000000", + "2019-01-03T01:05:49.000000000", + "2019-01-03T01:06:00.000000000", + "2019-01-03T01:06:39.000000000", + "2019-01-03T01:08:38.000000000", + "2019-01-03T01:09:24.000000000", + "2019-01-03T01:09:39.000000000", + "2019-01-03T01:09:55.000000000", + "2019-01-03T01:10:15.000000000", + "2019-01-03T01:10:20.000000000", + "2019-01-03T01:10:59.000000000", + "2019-01-03T01:11:27.000000000", + "2019-01-03T01:12:27.000000000", + "2019-01-03T01:12:48.000000000", + "2019-01-03T01:15:11.000000000", + "2019-01-03T01:15:35.000000000", + "2019-01-03T01:18:59.000000000", + "2019-01-03T01:19:22.000000000", + "2019-01-03T01:19:47.000000000", + "2019-01-03T01:19:48.000000000", + "2019-01-03T01:22:00.000000000", + "2019-01-03T01:23:27.000000000", + "2019-01-03T01:24:52.000000000", + "2019-01-03T01:25:32.000000000", + "2019-01-03T01:27:00.000000000", + "2019-01-03T01:27:18.000000000", + "2019-01-03T01:28:38.000000000", + "2019-01-03T01:30:13.000000000", + "2019-01-03T01:31:43.000000000", + "2019-01-03T01:32:02.000000000", + "2019-01-03T01:32:16.000000000", + "2019-01-03T01:32:57.000000000", + "2019-01-03T01:33:45.000000000", + "2019-01-03T01:34:17.000000000", + "2019-01-03T01:34:35.000000000", + "2019-01-03T01:35:22.000000000", + "2019-01-03T01:35:25.000000000", + "2019-01-03T01:35:52.000000000", + "2019-01-03T01:35:54.000000000", + "2019-01-03T01:36:03.000000000", + "2019-01-03T01:36:20.000000000", + "2019-01-03T01:36:53.000000000", + "2019-01-03T01:39:59.000000000", + "2019-01-03T01:40:02.000000000", + "2019-01-03T01:40:20.000000000", + "2019-01-03T01:42:06.000000000", + "2019-01-03T01:42:39.000000000", + "2019-01-03T01:43:18.000000000", + "2019-01-03T01:43:24.000000000", + "2019-01-03T01:43:37.000000000", + "2019-01-03T01:43:51.000000000", + "2019-01-03T01:45:51.000000000", + "2019-01-03T01:46:07.000000000", + "2019-01-03T01:46:17.000000000", + "2019-01-03T01:46:23.000000000", + "2019-01-03T01:46:24.000000000", + "2019-01-03T01:46:28.000000000", + "2019-01-03T01:47:38.000000000", + "2019-01-03T01:48:01.000000000", + "2019-01-03T01:48:06.000000000", + "2019-01-03T01:49:13.000000000", + "2019-01-03T01:49:20.000000000", + "2019-01-03T01:50:08.000000000", + "2019-01-03T01:51:14.000000000", + "2019-01-03T01:51:24.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:54:02.000000000", + "2019-01-03T01:55:05.000000000", + "2019-01-03T01:55:43.000000000", + "2019-01-03T01:55:51.000000000", + "2019-01-03T01:56:34.000000000", + "2019-01-03T01:57:05.000000000", + "2019-01-03T01:57:54.000000000", + "2019-01-03T01:58:21.000000000", + "2019-01-03T01:58:38.000000000", + "2019-01-03T01:59:53.000000000", + "2019-01-03T02:00:41.000000000", + "2019-01-03T02:00:45.000000000", + "2019-01-03T02:02:29.000000000", + "2019-01-03T02:02:34.000000000", + "2019-01-03T02:02:48.000000000", + "2019-01-03T02:05:57.000000000", + "2019-01-03T02:08:02.000000000", + "2019-01-03T02:08:06.000000000", + "2019-01-03T02:08:46.000000000", + "2019-01-03T02:11:15.000000000", + "2019-01-03T02:11:25.000000000", + "2019-01-03T02:11:58.000000000", + "2019-01-03T02:12:51.000000000", + "2019-01-03T02:13:07.000000000", + "2019-01-03T02:14:54.000000000", + "2019-01-03T02:17:59.000000000", + "2019-01-03T02:18:33.000000000", + "2019-01-03T02:19:24.000000000", + "2019-01-03T02:21:32.000000000", + "2019-01-03T02:22:38.000000000", + "2019-01-03T02:24:28.000000000", + "2019-01-03T02:24:52.000000000", + "2019-01-03T02:25:02.000000000", + "2019-01-03T02:26:14.000000000", + "2019-01-03T02:26:40.000000000", + "2019-01-03T02:26:50.000000000", + "2019-01-03T02:28:05.000000000", + "2019-01-03T02:28:12.000000000", + "2019-01-03T02:29:51.000000000", + "2019-01-03T02:30:16.000000000", + "2019-01-03T02:31:31.000000000", + "2019-01-03T02:31:47.000000000", + "2019-01-03T02:33:24.000000000", + "2019-01-03T02:33:46.000000000", + "2019-01-03T02:35:04.000000000", + "2019-01-03T02:35:12.000000000", + "2019-01-03T02:37:10.000000000", + "2019-01-03T02:37:33.000000000", + "2019-01-03T02:37:57.000000000", + "2019-01-03T02:38:19.000000000", + "2019-01-03T02:38:21.000000000", + "2019-01-03T02:38:44.000000000", + "2019-01-03T02:38:53.000000000", + "2019-01-03T02:40:37.000000000", + "2019-01-03T02:43:50.000000000", + "2019-01-03T02:45:00.000000000", + "2019-01-03T02:45:19.000000000", + "2019-01-03T02:45:21.000000000", + "2019-01-03T02:50:58.000000000", + "2019-01-03T02:53:06.000000000", + "2019-01-03T02:55:14.000000000", + "2019-01-03T02:57:39.000000000", + "2019-01-03T02:58:13.000000000", + "2019-01-03T02:59:27.000000000", + "2019-01-03T02:59:49.000000000", + "2019-01-03T03:00:34.000000000", + "2019-01-03T03:03:31.000000000", + "2019-01-03T03:06:59.000000000", + "2019-01-03T03:08:30.000000000", + "2019-01-03T03:08:37.000000000", + "2019-01-03T03:11:37.000000000", + "2019-01-03T03:11:59.000000000", + "2019-01-03T03:14:43.000000000", + "2019-01-03T03:18:33.000000000", + "2019-01-03T03:20:40.000000000", + "2019-01-03T03:21:03.000000000", + "2019-01-03T03:21:28.000000000", + "2019-01-03T03:22:04.000000000", + "2019-01-03T03:26:39.000000000", + "2019-01-03T03:27:38.000000000", + "2019-01-03T03:28:01.000000000", + "2019-01-03T03:28:39.000000000", + "2019-01-03T03:29:01.000000000", + "2019-01-03T03:30:07.000000000", + "2019-01-03T03:33:58.000000000", + "2019-01-03T03:34:30.000000000", + "2019-01-03T03:34:40.000000000", + "2019-01-03T03:35:44.000000000", + "2019-01-03T03:37:22.000000000", + "2019-01-03T03:37:52.000000000", + "2019-01-03T03:38:19.000000000", + "2019-01-03T03:42:20.000000000", + "2019-01-03T03:42:28.000000000", + "2019-01-03T03:43:18.000000000", + "2019-01-03T03:46:41.000000000", + "2019-01-03T03:47:17.000000000", + "2019-01-03T03:47:36.000000000", + "2019-01-03T03:49:34.000000000", + "2019-01-03T03:52:18.000000000", + "2019-01-03T03:55:26.000000000", + "2019-01-03T03:59:23.000000000", + "2019-01-03T03:59:56.000000000", + "2019-01-03T04:00:00.000000000", + "2019-01-03T04:00:11.000000000", + "2019-01-03T04:00:14.000000000", + "2019-01-03T04:01:54.000000000", + "2019-01-03T04:02:07.000000000", + "2019-01-03T04:03:57.000000000", + "2019-01-03T04:05:32.000000000", + "2019-01-03T04:05:38.000000000", + "2019-01-03T04:07:51.000000000", + "2019-01-03T04:08:10.000000000", + "2019-01-03T04:08:24.000000000", + "2019-01-03T04:09:18.000000000", + "2019-01-03T04:10:26.000000000", + "2019-01-03T04:11:44.000000000", + "2019-01-03T04:13:09.000000000", + "2019-01-03T04:13:39.000000000", + "2019-01-03T04:16:42.000000000", + "2019-01-03T04:17:38.000000000", + "2019-01-03T04:18:02.000000000", + "2019-01-03T04:18:30.000000000", + "2019-01-03T04:18:37.000000000", + "2019-01-03T04:20:08.000000000", + "2019-01-03T04:20:16.000000000", + "2019-01-03T04:20:54.000000000", + "2019-01-03T04:22:08.000000000", + "2019-01-03T04:26:31.000000000", + "2019-01-03T04:28:06.000000000", + "2019-01-03T04:28:54.000000000", + "2019-01-03T04:30:36.000000000", + "2019-01-03T04:33:04.000000000", + "2019-01-03T04:33:08.000000000", + "2019-01-03T04:35:35.000000000", + "2019-01-03T04:35:53.000000000", + "2019-01-03T04:37:47.000000000", + "2019-01-03T04:39:34.000000000", + "2019-01-03T04:40:47.000000000", + "2019-01-03T04:41:31.000000000", + "2019-01-03T04:41:46.000000000", + "2019-01-03T04:42:05.000000000", + "2019-01-03T04:42:33.000000000", + "2019-01-03T04:42:59.000000000", + "2019-01-03T04:43:34.000000000", + "2019-01-03T04:44:13.000000000", + "2019-01-03T04:45:01.000000000", + "2019-01-03T04:45:10.000000000", + "2019-01-03T04:45:25.000000000", + "2019-01-03T04:46:32.000000000", + "2019-01-03T04:46:33.000000000", + "2019-01-03T04:46:46.000000000", + "2019-01-03T04:46:58.000000000", + "2019-01-03T04:47:00.000000000", + "2019-01-03T04:49:45.000000000", + "2019-01-03T04:50:11.000000000", + "2019-01-03T04:50:51.000000000", + "2019-01-03T04:51:05.000000000", + "2019-01-03T04:51:27.000000000", + "2019-01-03T04:51:39.000000000", + "2019-01-03T04:52:23.000000000", + "2019-01-03T04:52:34.000000000", + "2019-01-03T04:53:30.000000000", + "2019-01-03T04:55:38.000000000", + "2019-01-03T04:56:08.000000000", + "2019-01-03T04:56:33.000000000", + "2019-01-03T04:56:42.000000000", + "2019-01-03T05:00:21.000000000", + "2019-01-03T05:01:18.000000000", + "2019-01-03T05:02:18.000000000", + "2019-01-03T05:02:40.000000000", + "2019-01-03T05:03:06.000000000", + "2019-01-03T05:03:55.000000000", + "2019-01-03T05:06:02.000000000", + "2019-01-03T05:06:48.000000000", + "2019-01-03T05:08:45.000000000", + "2019-01-03T05:08:54.000000000", + "2019-01-03T05:09:04.000000000", + "2019-01-03T05:10:45.000000000", + "2019-01-03T05:12:41.000000000", + "2019-01-03T05:12:58.000000000", + "2019-01-03T05:13:30.000000000", + "2019-01-03T05:14:31.000000000", + "2019-01-03T05:16:24.000000000", + "2019-01-03T05:17:01.000000000", + "2019-01-03T05:17:29.000000000", + "2019-01-03T05:17:38.000000000", + "2019-01-03T05:18:23.000000000", + "2019-01-03T05:20:00.000000000", + "2019-01-03T05:22:32.000000000", + "2019-01-03T05:22:38.000000000", + "2019-01-03T05:23:05.000000000", + "2019-01-03T05:23:16.000000000", + "2019-01-03T05:23:42.000000000", + "2019-01-03T05:25:04.000000000", + "2019-01-03T05:25:15.000000000", + "2019-01-03T05:26:31.000000000", + "2019-01-03T05:33:27.000000000", + "2019-01-03T05:35:03.000000000", + "2019-01-03T05:35:15.000000000", + "2019-01-03T05:36:38.000000000", + "2019-01-03T05:36:45.000000000", + "2019-01-03T05:38:27.000000000", + "2019-01-03T05:38:43.000000000", + "2019-01-03T05:38:49.000000000", + "2019-01-03T05:38:52.000000000", + "2019-01-03T05:39:04.000000000", + "2019-01-03T05:41:56.000000000", + "2019-01-03T05:44:42.000000000", + "2019-01-03T05:46:41.000000000", + "2019-01-03T05:46:56.000000000", + "2019-01-03T05:47:03.000000000", + "2019-01-03T05:47:09.000000000", + "2019-01-03T05:47:34.000000000", + "2019-01-03T05:48:04.000000000", + "2019-01-03T05:48:13.000000000", + "2019-01-03T05:49:11.000000000", + "2019-01-03T05:51:27.000000000", + "2019-01-03T05:51:42.000000000", + "2019-01-03T05:51:52.000000000", + "2019-01-03T05:52:52.000000000", + "2019-01-03T05:54:29.000000000", + "2019-01-03T05:54:37.000000000", + "2019-01-03T05:55:12.000000000", + "2019-01-03T05:55:38.000000000", + "2019-01-03T05:56:47.000000000", + "2019-01-03T05:57:22.000000000", + "2019-01-03T05:59:30.000000000", + "2019-01-03T06:01:44.000000000", + "2019-01-03T06:01:47.000000000", + "2019-01-03T06:02:32.000000000", + "2019-01-03T06:05:27.000000000", + "2019-01-03T06:06:09.000000000", + "2019-01-03T06:06:38.000000000", + "2019-01-03T06:07:16.000000000", + "2019-01-03T06:08:57.000000000", + "2019-01-03T06:09:16.000000000", + "2019-01-03T06:10:13.000000000", + "2019-01-03T06:10:31.000000000", + "2019-01-03T06:11:40.000000000", + "2019-01-03T06:12:04.000000000", + "2019-01-03T06:13:19.000000000", + "2019-01-03T06:15:59.000000000", + "2019-01-03T06:17:53.000000000", + "2019-01-03T06:18:10.000000000", + "2019-01-03T06:18:51.000000000", + "2019-01-03T06:18:54.000000000", + "2019-01-03T06:19:44.000000000", + "2019-01-03T06:20:09.000000000", + "2019-01-03T06:20:19.000000000", + "2019-01-03T06:22:28.000000000", + "2019-01-03T06:23:13.000000000", + "2019-01-03T06:23:52.000000000", + "2019-01-03T06:23:57.000000000", + "2019-01-03T06:24:19.000000000", + "2019-01-03T06:24:32.000000000", + "2019-01-03T06:25:14.000000000", + "2019-01-03T06:26:29.000000000", + "2019-01-03T06:26:39.000000000", + "2019-01-03T06:27:25.000000000", + "2019-01-03T06:27:48.000000000", + "2019-01-03T06:27:59.000000000", + "2019-01-03T06:28:53.000000000", + "2019-01-03T06:30:16.000000000", + "2019-01-03T06:30:42.000000000", + "2019-01-03T06:31:06.000000000", + "2019-01-03T06:31:16.000000000", + "2019-01-03T06:31:28.000000000", + "2019-01-03T06:31:58.000000000", + "2019-01-03T06:35:02.000000000", + "2019-01-03T06:35:42.000000000", + "2019-01-03T06:36:00.000000000", + "2019-01-03T06:36:41.000000000", + "2019-01-03T06:37:30.000000000", + "2019-01-03T06:41:32.000000000", + "2019-01-03T06:42:59.000000000", + "2019-01-03T06:44:17.000000000", + "2019-01-03T06:45:08.000000000", + "2019-01-03T06:46:24.000000000", + "2019-01-03T06:46:27.000000000", + "2019-01-03T06:49:50.000000000", + "2019-01-03T06:52:16.000000000", + "2019-01-03T06:53:31.000000000", + "2019-01-03T06:53:50.000000000", + "2019-01-03T06:54:35.000000000", + "2019-01-03T06:55:50.000000000", + "2019-01-03T06:56:33.000000000", + "2019-01-03T06:56:35.000000000", + "2019-01-03T06:56:47.000000000", + "2019-01-03T06:56:48.000000000", + "2019-01-03T06:57:25.000000000", + "2019-01-03T06:58:12.000000000", + "2019-01-03T06:59:57.000000000", + "2019-01-03T07:01:35.000000000", + "2019-01-03T07:03:07.000000000", + "2019-01-03T07:03:19.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:06:23.000000000", + "2019-01-03T07:06:47.000000000", + "2019-01-03T07:08:05.000000000", + "2019-01-03T07:08:15.000000000", + "2019-01-03T07:11:10.000000000", + "2019-01-03T07:14:07.000000000", + "2019-01-03T07:15:32.000000000", + "2019-01-03T07:15:33.000000000", + "2019-01-03T07:15:50.000000000", + "2019-01-03T07:16:22.000000000", + "2019-01-03T07:17:29.000000000", + "2019-01-03T07:17:45.000000000", + "2019-01-03T07:18:21.000000000", + "2019-01-03T07:20:48.000000000", + "2019-01-03T07:21:15.000000000", + "2019-01-03T07:22:46.000000000", + "2019-01-03T07:25:41.000000000", + "2019-01-03T07:27:18.000000000", + "2019-01-03T07:27:21.000000000", + "2019-01-03T07:27:22.000000000", + "2019-01-03T07:28:59.000000000", + "2019-01-03T07:29:07.000000000", + "2019-01-03T07:29:47.000000000", + "2019-01-03T07:31:36.000000000", + "2019-01-03T07:32:04.000000000", + "2019-01-03T07:32:47.000000000", + "2019-01-03T07:33:05.000000000", + "2019-01-03T07:33:44.000000000", + "2019-01-03T07:34:20.000000000", + "2019-01-03T07:35:38.000000000", + "2019-01-03T07:38:58.000000000", + "2019-01-03T07:41:01.000000000", + "2019-01-03T07:42:46.000000000", + "2019-01-03T07:43:20.000000000", + "2019-01-03T07:44:12.000000000", + "2019-01-03T07:44:20.000000000", + "2019-01-03T07:45:46.000000000", + "2019-01-03T07:47:21.000000000", + "2019-01-03T07:48:32.000000000", + "2019-01-03T07:49:34.000000000", + "2019-01-03T07:51:56.000000000", + "2019-01-03T07:53:59.000000000", + "2019-01-03T07:56:15.000000000", + "2019-01-03T07:56:43.000000000", + "2019-01-03T07:58:10.000000000", + "2019-01-03T07:59:46.000000000", + "2019-01-03T08:00:56.000000000", + "2019-01-03T08:01:08.000000000", + "2019-01-03T08:01:56.000000000", + "2019-01-03T08:03:52.000000000", + "2019-01-03T08:05:08.000000000", + "2019-01-03T08:06:22.000000000", + "2019-01-03T08:07:10.000000000", + "2019-01-03T08:07:37.000000000", + "2019-01-03T08:08:33.000000000", + "2019-01-03T08:08:44.000000000", + "2019-01-03T08:11:52.000000000", + "2019-01-03T08:13:45.000000000", + "2019-01-03T08:14:23.000000000", + "2019-01-03T08:15:42.000000000", + "2019-01-03T08:16:16.000000000", + "2019-01-03T08:16:17.000000000", + "2019-01-03T08:16:39.000000000", + "2019-01-03T08:16:43.000000000", + "2019-01-03T08:20:27.000000000", + "2019-01-03T08:21:38.000000000", + "2019-01-03T08:21:47.000000000", + "2019-01-03T08:22:16.000000000", + "2019-01-03T08:22:28.000000000", + "2019-01-03T08:23:15.000000000", + "2019-01-03T08:23:25.000000000", + "2019-01-03T08:24:38.000000000", + "2019-01-03T08:24:40.000000000", + "2019-01-03T08:24:44.000000000", + "2019-01-03T08:25:15.000000000", + "2019-01-03T08:26:17.000000000", + "2019-01-03T08:26:30.000000000", + "2019-01-03T08:26:33.000000000", + "2019-01-03T08:27:10.000000000", + "2019-01-03T08:27:32.000000000", + "2019-01-03T08:28:36.000000000", + "2019-01-03T08:29:20.000000000", + "2019-01-03T08:30:21.000000000", + "2019-01-03T08:31:10.000000000", + "2019-01-03T08:32:51.000000000", + "2019-01-03T08:34:18.000000000", + "2019-01-03T08:35:47.000000000", + "2019-01-03T08:37:17.000000000", + "2019-01-03T08:37:43.000000000", + "2019-01-03T08:39:19.000000000", + "2019-01-03T08:39:22.000000000", + "2019-01-03T08:39:33.000000000", + "2019-01-03T08:39:52.000000000", + "2019-01-03T08:40:14.000000000", + "2019-01-03T08:40:15.000000000", + "2019-01-03T08:40:23.000000000", + "2019-01-03T08:42:06.000000000", + "2019-01-03T08:42:09.000000000", + "2019-01-03T08:43:04.000000000", + "2019-01-03T08:43:38.000000000", + "2019-01-03T08:44:15.000000000", + "2019-01-03T08:44:22.000000000", + "2019-01-03T08:45:09.000000000", + "2019-01-03T08:45:16.000000000", + "2019-01-03T08:48:34.000000000", + "2019-01-03T08:49:48.000000000", + "2019-01-03T08:50:49.000000000", + "2019-01-03T08:50:51.000000000", + "2019-01-03T08:52:21.000000000", + "2019-01-03T08:53:05.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:20.000000000", + "2019-01-03T08:56:02.000000000", + "2019-01-03T08:56:13.000000000", + "2019-01-03T08:57:43.000000000", + "2019-01-03T08:58:53.000000000", + "2019-01-03T08:59:17.000000000", + "2019-01-03T08:59:50.000000000", + "2019-01-03T09:00:11.000000000", + "2019-01-03T09:00:19.000000000", + "2019-01-03T09:01:06.000000000", + "2019-01-03T09:02:22.000000000", + "2019-01-03T09:02:47.000000000", + "2019-01-03T09:03:24.000000000", + "2019-01-03T09:03:30.000000000", + "2019-01-03T09:07:53.000000000", + "2019-01-03T09:08:30.000000000", + "2019-01-03T09:09:07.000000000", + "2019-01-03T09:10:43.000000000", + "2019-01-03T09:11:19.000000000", + "2019-01-03T09:11:35.000000000", + "2019-01-03T09:12:08.000000000", + "2019-01-03T09:14:34.000000000", + "2019-01-03T09:14:38.000000000", + "2019-01-03T09:15:12.000000000", + "2019-01-03T09:18:24.000000000", + "2019-01-03T09:19:49.000000000", + "2019-01-03T09:20:11.000000000", + "2019-01-03T09:20:51.000000000", + "2019-01-03T09:21:11.000000000", + "2019-01-03T09:21:14.000000000", + "2019-01-03T09:21:44.000000000", + "2019-01-03T09:22:16.000000000", + "2019-01-03T09:22:21.000000000", + "2019-01-03T09:23:25.000000000", + "2019-01-03T09:24:34.000000000", + "2019-01-03T09:25:49.000000000", + "2019-01-03T09:25:50.000000000", + "2019-01-03T09:26:02.000000000", + "2019-01-03T09:27:06.000000000", + "2019-01-03T09:28:18.000000000", + "2019-01-03T09:28:29.000000000", + "2019-01-03T09:29:48.000000000", + "2019-01-03T09:29:59.000000000", + "2019-01-03T09:31:21.000000000", + "2019-01-03T09:32:49.000000000", + "2019-01-03T09:34:33.000000000", + "2019-01-03T09:35:15.000000000", + "2019-01-03T09:36:51.000000000", + "2019-01-03T09:37:30.000000000", + "2019-01-03T09:37:52.000000000", + "2019-01-03T09:38:37.000000000", + "2019-01-03T09:41:20.000000000", + "2019-01-03T09:41:30.000000000", + "2019-01-03T09:41:43.000000000", + "2019-01-03T09:43:10.000000000", + "2019-01-03T09:44:15.000000000", + "2019-01-03T09:44:35.000000000", + "2019-01-03T09:46:24.000000000", + "2019-01-03T09:46:28.000000000", + "2019-01-03T09:46:55.000000000", + "2019-01-03T09:47:15.000000000", + "2019-01-03T09:47:54.000000000", + "2019-01-03T09:49:10.000000000", + "2019-01-03T09:50:25.000000000", + "2019-01-03T09:51:02.000000000", + "2019-01-03T09:51:24.000000000", + "2019-01-03T09:51:50.000000000", + "2019-01-03T09:51:58.000000000", + "2019-01-03T09:52:58.000000000", + "2019-01-03T09:54:03.000000000", + "2019-01-03T09:58:05.000000000", + "2019-01-03T09:58:15.000000000", + "2019-01-03T09:58:38.000000000", + "2019-01-03T09:59:42.000000000", + "2019-01-03T10:02:57.000000000", + "2019-01-03T10:04:32.000000000", + "2019-01-03T10:04:35.000000000", + "2019-01-03T10:05:11.000000000", + "2019-01-03T10:06:08.000000000", + "2019-01-03T10:06:20.000000000", + "2019-01-03T10:06:23.000000000", + "2019-01-03T10:08:52.000000000", + "2019-01-03T10:09:06.000000000", + "2019-01-03T10:09:44.000000000", + "2019-01-03T10:10:48.000000000", + "2019-01-03T10:11:29.000000000", + "2019-01-03T10:11:48.000000000", + "2019-01-03T10:13:04.000000000", + "2019-01-03T10:13:32.000000000", + "2019-01-03T10:14:33.000000000", + "2019-01-03T10:14:39.000000000", + "2019-01-03T10:15:11.000000000", + "2019-01-03T10:19:56.000000000", + "2019-01-03T10:21:26.000000000", + "2019-01-03T10:21:45.000000000", + "2019-01-03T10:24:03.000000000", + "2019-01-03T10:24:59.000000000", + "2019-01-03T10:26:51.000000000", + "2019-01-03T10:27:09.000000000", + "2019-01-03T10:27:39.000000000", + "2019-01-03T10:28:24.000000000", + "2019-01-03T10:28:41.000000000", + "2019-01-03T10:28:51.000000000", + "2019-01-03T10:30:09.000000000", + "2019-01-03T10:32:35.000000000", + "2019-01-03T10:32:59.000000000", + "2019-01-03T10:34:15.000000000", + "2019-01-03T10:34:29.000000000", + "2019-01-03T10:34:34.000000000", + "2019-01-03T10:35:47.000000000", + "2019-01-03T10:36:21.000000000", + "2019-01-03T10:36:28.000000000", + "2019-01-03T10:38:32.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:34.000000000", + "2019-01-03T10:40:26.000000000", + "2019-01-03T10:41:42.000000000", + "2019-01-03T10:43:02.000000000", + "2019-01-03T10:45:58.000000000", + "2019-01-03T10:47:55.000000000", + "2019-01-03T10:48:03.000000000", + "2019-01-03T10:48:09.000000000", + "2019-01-03T10:49:47.000000000", + "2019-01-03T10:50:47.000000000", + "2019-01-03T10:51:00.000000000", + "2019-01-03T10:51:15.000000000", + "2019-01-03T10:51:54.000000000", + "2019-01-03T10:51:59.000000000", + "2019-01-03T10:52:15.000000000", + "2019-01-03T10:52:46.000000000", + "2019-01-03T10:53:46.000000000", + "2019-01-03T10:55:24.000000000", + "2019-01-03T10:59:26.000000000", + "2019-01-03T11:00:10.000000000", + "2019-01-03T11:00:43.000000000", + "2019-01-03T11:00:44.000000000", + "2019-01-03T11:02:04.000000000", + "2019-01-03T11:03:36.000000000", + "2019-01-03T11:04:28.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:41.000000000", + "2019-01-03T11:05:55.000000000", + "2019-01-03T11:06:06.000000000", + "2019-01-03T11:06:45.000000000", + "2019-01-03T11:07:23.000000000", + "2019-01-03T11:08:31.000000000", + "2019-01-03T11:09:45.000000000", + "2019-01-03T11:10:01.000000000", + "2019-01-03T11:12:03.000000000", + "2019-01-03T11:12:05.000000000", + "2019-01-03T11:13:00.000000000", + "2019-01-03T11:14:19.000000000", + "2019-01-03T11:16:54.000000000", + "2019-01-03T11:18:16.000000000", + "2019-01-03T11:20:33.000000000", + "2019-01-03T11:22:37.000000000", + "2019-01-03T11:22:42.000000000", + "2019-01-03T11:23:53.000000000", + "2019-01-03T11:25:57.000000000", + "2019-01-03T11:26:17.000000000", + "2019-01-03T11:27:00.000000000", + "2019-01-03T11:27:35.000000000", + "2019-01-03T11:28:18.000000000", + "2019-01-03T11:28:45.000000000", + "2019-01-03T11:29:02.000000000", + "2019-01-03T11:29:22.000000000", + "2019-01-03T11:30:31.000000000", + "2019-01-03T11:32:12.000000000", + "2019-01-03T11:32:25.000000000", + "2019-01-03T11:33:04.000000000", + "2019-01-03T11:33:11.000000000", + "2019-01-03T11:34:35.000000000", + "2019-01-03T11:34:42.000000000", + "2019-01-03T11:36:37.000000000", + "2019-01-03T11:37:40.000000000", + "2019-01-03T11:40:08.000000000", + "2019-01-03T11:40:24.000000000", + "2019-01-03T11:40:42.000000000", + "2019-01-03T11:41:44.000000000", + "2019-01-03T11:42:03.000000000", + "2019-01-03T11:42:04.000000000", + "2019-01-03T11:42:50.000000000", + "2019-01-03T11:45:25.000000000", + "2019-01-03T11:46:02.000000000", + "2019-01-03T11:46:37.000000000", + "2019-01-03T11:48:22.000000000", + "2019-01-03T11:48:26.000000000", + "2019-01-03T11:51:18.000000000", + "2019-01-03T11:51:26.000000000", + "2019-01-03T11:52:02.000000000", + "2019-01-03T11:55:01.000000000", + "2019-01-03T11:55:16.000000000", + "2019-01-03T11:55:50.000000000", + "2019-01-03T11:56:20.000000000", + "2019-01-03T11:56:56.000000000", + "2019-01-03T11:57:13.000000000", + "2019-01-03T11:57:15.000000000", + "2019-01-03T11:57:22.000000000", + "2019-01-03T11:59:20.000000000", + "2019-01-03T11:59:22.000000000", + "2019-01-03T12:00:25.000000000", + "2019-01-03T12:00:44.000000000", + "2019-01-03T12:00:57.000000000", + "2019-01-03T12:02:08.000000000", + "2019-01-03T12:02:09.000000000", + "2019-01-03T12:02:34.000000000", + "2019-01-03T12:04:34.000000000", + "2019-01-03T12:06:47.000000000", + "2019-01-03T12:07:25.000000000", + "2019-01-03T12:07:42.000000000", + "2019-01-03T12:08:07.000000000", + "2019-01-03T12:08:53.000000000", + "2019-01-03T12:09:13.000000000", + "2019-01-03T12:09:23.000000000", + "2019-01-03T12:09:27.000000000", + "2019-01-03T12:09:57.000000000", + "2019-01-03T12:10:14.000000000", + "2019-01-03T12:10:27.000000000", + "2019-01-03T12:10:46.000000000", + "2019-01-03T12:11:16.000000000", + "2019-01-03T12:15:24.000000000", + "2019-01-03T12:15:43.000000000", + "2019-01-03T12:16:34.000000000", + "2019-01-03T12:16:52.000000000", + "2019-01-03T12:17:09.000000000", + "2019-01-03T12:18:43.000000000", + "2019-01-03T12:20:43.000000000", + "2019-01-03T12:20:57.000000000", + "2019-01-03T12:21:28.000000000", + "2019-01-03T12:21:39.000000000", + "2019-01-03T12:23:09.000000000", + "2019-01-03T12:23:56.000000000", + "2019-01-03T12:24:50.000000000", + "2019-01-03T12:25:17.000000000", + "2019-01-03T12:25:19.000000000", + "2019-01-03T12:25:51.000000000", + "2019-01-03T12:26:38.000000000", + "2019-01-03T12:26:44.000000000", + "2019-01-03T12:26:49.000000000", + "2019-01-03T12:26:50.000000000", + "2019-01-03T12:29:28.000000000", + "2019-01-03T12:29:42.000000000", + "2019-01-03T12:30:41.000000000", + "2019-01-03T12:31:22.000000000", + "2019-01-03T12:31:37.000000000", + "2019-01-03T12:32:18.000000000", + "2019-01-03T12:33:35.000000000", + "2019-01-03T12:34:04.000000000", + "2019-01-03T12:35:01.000000000", + "2019-01-03T12:35:45.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:40:35.000000000", + "2019-01-03T12:42:04.000000000", + "2019-01-03T12:42:07.000000000", + "2019-01-03T12:46:06.000000000", + "2019-01-03T12:46:43.000000000", + "2019-01-03T12:46:45.000000000", + "2019-01-03T12:50:17.000000000", + "2019-01-03T12:52:16.000000000", + "2019-01-03T12:52:37.000000000", + "2019-01-03T12:52:38.000000000", + "2019-01-03T12:52:45.000000000", + "2019-01-03T12:54:11.000000000", + "2019-01-03T12:54:41.000000000", + "2019-01-03T12:57:07.000000000", + "2019-01-03T13:00:02.000000000", + "2019-01-03T13:00:10.000000000", + "2019-01-03T13:00:13.000000000", + "2019-01-03T13:00:33.000000000", + "2019-01-03T13:02:02.000000000", + "2019-01-03T13:02:38.000000000", + "2019-01-03T13:02:51.000000000", + "2019-01-03T13:04:35.000000000", + "2019-01-03T13:06:29.000000000", + "2019-01-03T13:07:25.000000000", + "2019-01-03T13:08:55.000000000", + "2019-01-03T13:09:53.000000000", + "2019-01-03T13:11:50.000000000", + "2019-01-03T13:12:18.000000000", + "2019-01-03T13:12:24.000000000", + "2019-01-03T13:13:29.000000000", + "2019-01-03T13:14:08.000000000", + "2019-01-03T13:14:22.000000000", + "2019-01-03T13:15:04.000000000", + "2019-01-03T13:15:47.000000000", + "2019-01-03T13:15:52.000000000", + "2019-01-03T13:16:19.000000000", + "2019-01-03T13:20:10.000000000", + "2019-01-03T13:21:04.000000000", + "2019-01-03T13:21:11.000000000", + "2019-01-03T13:21:36.000000000", + "2019-01-03T13:22:51.000000000", + "2019-01-03T13:23:14.000000000", + "2019-01-03T13:23:35.000000000", + "2019-01-03T13:23:54.000000000", + "2019-01-03T13:24:54.000000000", + "2019-01-03T13:26:59.000000000", + "2019-01-03T13:27:34.000000000", + "2019-01-03T13:31:57.000000000", + "2019-01-03T13:32:03.000000000", + "2019-01-03T13:35:05.000000000", + "2019-01-03T13:36:32.000000000", + "2019-01-03T13:39:38.000000000", + "2019-01-03T13:40:05.000000000", + "2019-01-03T13:40:40.000000000", + "2019-01-03T13:41:47.000000000", + "2019-01-03T13:42:35.000000000", + "2019-01-03T13:42:54.000000000", + "2019-01-03T13:47:05.000000000", + "2019-01-03T13:47:09.000000000", + "2019-01-03T13:50:34.000000000", + "2019-01-03T13:50:36.000000000", + "2019-01-03T13:51:33.000000000", + "2019-01-03T13:52:21.000000000", + "2019-01-03T13:52:39.000000000", + "2019-01-03T13:54:14.000000000", + "2019-01-03T13:56:27.000000000", + "2019-01-03T13:59:46.000000000", + "2019-01-03T13:59:48.000000000", + "2019-01-03T14:04:36.000000000", + "2019-01-03T14:07:34.000000000", + "2019-01-03T14:08:20.000000000", + "2019-01-03T14:08:29.000000000", + "2019-01-03T14:08:45.000000000", + "2019-01-03T14:11:48.000000000", + "2019-01-03T14:11:58.000000000", + "2019-01-03T14:14:21.000000000", + "2019-01-03T14:15:05.000000000", + "2019-01-03T14:16:57.000000000", + "2019-01-03T14:17:27.000000000", + "2019-01-03T14:18:30.000000000", + "2019-01-03T14:19:44.000000000", + "2019-01-03T14:21:06.000000000", + "2019-01-03T14:21:12.000000000", + "2019-01-03T14:23:05.000000000", + "2019-01-03T14:23:40.000000000", + "2019-01-03T14:24:15.000000000", + "2019-01-03T14:26:30.000000000", + "2019-01-03T14:26:37.000000000", + "2019-01-03T14:27:14.000000000", + "2019-01-03T14:27:37.000000000", + "2019-01-03T14:28:03.000000000", + "2019-01-03T14:28:05.000000000", + "2019-01-03T14:28:07.000000000", + "2019-01-03T14:30:35.000000000", + "2019-01-03T14:31:41.000000000", + "2019-01-03T14:33:37.000000000", + "2019-01-03T14:33:38.000000000", + "2019-01-03T14:36:28.000000000", + "2019-01-03T14:36:38.000000000", + "2019-01-03T14:36:58.000000000", + "2019-01-03T14:37:57.000000000", + "2019-01-03T14:38:16.000000000", + "2019-01-03T14:38:38.000000000", + "2019-01-03T14:38:51.000000000", + "2019-01-03T14:39:06.000000000", + "2019-01-03T14:39:44.000000000", + "2019-01-03T14:42:29.000000000", + "2019-01-03T14:42:32.000000000", + "2019-01-03T14:42:59.000000000", + "2019-01-03T14:43:26.000000000", + "2019-01-03T14:43:44.000000000", + "2019-01-03T14:45:39.000000000", + "2019-01-03T14:46:22.000000000", + "2019-01-03T14:48:37.000000000", + "2019-01-03T14:49:55.000000000", + "2019-01-03T14:49:59.000000000", + "2019-01-03T14:51:41.000000000", + "2019-01-03T14:52:09.000000000", + "2019-01-03T14:53:36.000000000", + "2019-01-03T14:53:42.000000000", + "2019-01-03T14:55:28.000000000", + "2019-01-03T14:55:46.000000000", + "2019-01-03T14:55:50.000000000", + "2019-01-03T14:56:04.000000000", + "2019-01-03T14:56:45.000000000", + "2019-01-03T14:59:18.000000000", + "2019-01-03T15:02:51.000000000", + "2019-01-03T15:04:04.000000000", + "2019-01-03T15:05:23.000000000", + "2019-01-03T15:06:33.000000000", + "2019-01-03T15:08:22.000000000", + "2019-01-03T15:08:25.000000000", + "2019-01-03T15:09:06.000000000", + "2019-01-03T15:10:16.000000000", + "2019-01-03T15:11:59.000000000", + "2019-01-03T15:14:15.000000000", + "2019-01-03T15:15:20.000000000", + "2019-01-03T15:15:46.000000000", + "2019-01-03T15:15:50.000000000", + "2019-01-03T15:16:08.000000000", + "2019-01-03T15:16:18.000000000", + "2019-01-03T15:18:36.000000000", + "2019-01-03T15:19:21.000000000", + "2019-01-03T15:20:06.000000000", + "2019-01-03T15:20:16.000000000", + "2019-01-03T15:22:00.000000000", + "2019-01-03T15:22:36.000000000", + "2019-01-03T15:26:35.000000000", + "2019-01-03T15:29:04.000000000", + "2019-01-03T15:30:35.000000000", + "2019-01-03T15:31:54.000000000", + "2019-01-03T15:31:59.000000000", + "2019-01-03T15:36:04.000000000", + "2019-01-03T15:40:34.000000000", + "2019-01-03T15:41:02.000000000", + "2019-01-03T15:41:20.000000000", + "2019-01-03T15:44:19.000000000", + "2019-01-03T15:44:49.000000000", + "2019-01-03T15:45:20.000000000", + "2019-01-03T15:45:40.000000000", + "2019-01-03T15:46:49.000000000", + "2019-01-03T15:46:51.000000000", + "2019-01-03T15:47:13.000000000", + "2019-01-03T15:49:10.000000000", + "2019-01-03T15:50:05.000000000", + "2019-01-03T15:50:27.000000000", + "2019-01-03T15:51:35.000000000", + "2019-01-03T15:52:36.000000000", + "2019-01-03T15:54:57.000000000", + "2019-01-03T15:54:59.000000000", + "2019-01-03T15:56:05.000000000", + "2019-01-03T15:56:18.000000000", + "2019-01-03T15:57:04.000000000", + "2019-01-03T15:57:35.000000000", + "2019-01-03T15:57:58.000000000", + "2019-01-03T15:58:50.000000000", + "2019-01-03T16:01:15.000000000", + "2019-01-03T16:01:28.000000000", + "2019-01-03T16:02:41.000000000", + "2019-01-03T16:04:54.000000000", + "2019-01-03T16:06:28.000000000", + "2019-01-03T16:06:34.000000000", + "2019-01-03T16:07:27.000000000", + "2019-01-03T16:07:39.000000000", + "2019-01-03T16:07:40.000000000", + "2019-01-03T16:09:04.000000000", + "2019-01-03T16:10:10.000000000", + "2019-01-03T16:10:29.000000000", + "2019-01-03T16:10:46.000000000", + "2019-01-03T16:11:12.000000000", + "2019-01-03T16:11:22.000000000", + "2019-01-03T16:11:32.000000000", + "2019-01-03T16:13:09.000000000", + "2019-01-03T16:15:45.000000000", + "2019-01-03T16:16:08.000000000", + "2019-01-03T16:16:20.000000000", + "2019-01-03T16:16:36.000000000", + "2019-01-03T16:16:39.000000000", + "2019-01-03T16:16:56.000000000", + "2019-01-03T16:17:22.000000000", + "2019-01-03T16:18:11.000000000", + "2019-01-03T16:18:45.000000000", + "2019-01-03T16:18:50.000000000", + "2019-01-03T16:18:59.000000000", + "2019-01-03T16:19:05.000000000", + "2019-01-03T16:20:22.000000000", + "2019-01-03T16:20:45.000000000", + "2019-01-03T16:21:38.000000000", + "2019-01-03T16:23:28.000000000", + "2019-01-03T16:24:15.000000000", + "2019-01-03T16:24:49.000000000", + "2019-01-03T16:25:44.000000000", + "2019-01-03T16:25:52.000000000", + "2019-01-03T16:26:49.000000000", + "2019-01-03T16:32:47.000000000", + "2019-01-03T16:33:24.000000000", + "2019-01-03T16:33:57.000000000", + "2019-01-03T16:35:26.000000000", + "2019-01-03T16:38:45.000000000", + "2019-01-03T16:40:04.000000000", + "2019-01-03T16:41:39.000000000", + "2019-01-03T16:43:17.000000000", + "2019-01-03T16:44:29.000000000", + "2019-01-03T16:44:36.000000000", + "2019-01-03T16:44:43.000000000", + "2019-01-03T16:46:39.000000000", + "2019-01-03T16:47:01.000000000", + "2019-01-03T16:47:21.000000000", + "2019-01-03T16:47:39.000000000", + "2019-01-03T16:50:10.000000000", + "2019-01-03T16:50:15.000000000", + "2019-01-03T16:50:40.000000000", + "2019-01-03T16:51:48.000000000", + "2019-01-03T16:52:56.000000000", + "2019-01-03T16:55:12.000000000", + "2019-01-03T16:55:13.000000000", + "2019-01-03T16:55:35.000000000", + "2019-01-03T16:57:08.000000000", + "2019-01-03T17:03:07.000000000", + "2019-01-03T17:03:28.000000000", + "2019-01-03T17:03:38.000000000", + "2019-01-03T17:03:51.000000000", + "2019-01-03T17:05:08.000000000", + "2019-01-03T17:05:34.000000000", + "2019-01-03T17:06:26.000000000", + "2019-01-03T17:06:46.000000000", + "2019-01-03T17:07:15.000000000", + "2019-01-03T17:08:32.000000000", + "2019-01-03T17:09:07.000000000", + "2019-01-03T17:13:16.000000000", + "2019-01-03T17:13:47.000000000", + "2019-01-03T17:16:26.000000000", + "2019-01-03T17:16:37.000000000", + "2019-01-03T17:16:42.000000000", + "2019-01-03T17:17:07.000000000", + "2019-01-03T17:17:28.000000000", + "2019-01-03T17:21:43.000000000", + "2019-01-03T17:22:23.000000000", + "2019-01-03T17:23:27.000000000", + "2019-01-03T17:23:31.000000000", + "2019-01-03T17:24:30.000000000", + "2019-01-03T17:24:55.000000000", + "2019-01-03T17:26:48.000000000", + "2019-01-03T17:27:28.000000000", + "2019-01-03T17:28:14.000000000", + "2019-01-03T17:29:29.000000000", + "2019-01-03T17:29:58.000000000", + "2019-01-03T17:30:05.000000000", + "2019-01-03T17:30:23.000000000", + "2019-01-03T17:31:23.000000000", + "2019-01-03T17:32:17.000000000", + "2019-01-03T17:33:02.000000000", + "2019-01-03T17:33:54.000000000", + "2019-01-03T17:34:00.000000000", + "2019-01-03T17:34:37.000000000", + "2019-01-03T17:39:19.000000000", + "2019-01-03T17:39:25.000000000", + "2019-01-03T17:40:07.000000000", + "2019-01-03T17:40:30.000000000", + "2019-01-03T17:40:48.000000000", + "2019-01-03T17:42:01.000000000", + "2019-01-03T17:42:52.000000000", + "2019-01-03T17:44:19.000000000", + "2019-01-03T17:44:40.000000000", + "2019-01-03T17:47:01.000000000", + "2019-01-03T17:47:08.000000000", + "2019-01-03T17:47:25.000000000", + "2019-01-03T17:48:03.000000000", + "2019-01-03T17:48:18.000000000", + "2019-01-03T17:49:13.000000000", + "2019-01-03T17:50:32.000000000", + "2019-01-03T17:52:36.000000000", + "2019-01-03T17:53:05.000000000", + "2019-01-03T17:53:44.000000000", + "2019-01-03T17:53:48.000000000", + "2019-01-03T17:54:12.000000000", + "2019-01-03T17:54:32.000000000", + "2019-01-03T17:55:35.000000000", + "2019-01-03T17:56:37.000000000", + "2019-01-03T17:58:11.000000000", + "2019-01-03T17:58:35.000000000", + "2019-01-03T17:59:16.000000000", + "2019-01-03T17:59:29.000000000", + "2019-01-03T18:02:39.000000000", + "2019-01-03T18:05:34.000000000", + "2019-01-03T18:06:13.000000000", + "2019-01-03T18:08:09.000000000", + "2019-01-03T18:08:27.000000000", + "2019-01-03T18:09:08.000000000", + "2019-01-03T18:10:45.000000000", + "2019-01-03T18:12:20.000000000", + "2019-01-03T18:12:22.000000000", + "2019-01-03T18:14:40.000000000", + "2019-01-03T18:15:22.000000000", + "2019-01-03T18:15:25.000000000", + "2019-01-03T18:17:29.000000000", + "2019-01-03T18:18:08.000000000", + "2019-01-03T18:19:03.000000000", + "2019-01-03T18:19:21.000000000", + "2019-01-03T18:21:51.000000000", + "2019-01-03T18:21:56.000000000", + "2019-01-03T18:23:16.000000000", + "2019-01-03T18:23:36.000000000", + "2019-01-03T18:23:58.000000000", + "2019-01-03T18:24:08.000000000", + "2019-01-03T18:24:35.000000000", + "2019-01-03T18:24:57.000000000", + "2019-01-03T18:26:14.000000000", + "2019-01-03T18:27:48.000000000", + "2019-01-03T18:28:09.000000000", + "2019-01-03T18:28:13.000000000", + "2019-01-03T18:29:01.000000000", + "2019-01-03T18:29:23.000000000", + "2019-01-03T18:29:45.000000000", + "2019-01-03T18:33:41.000000000", + "2019-01-03T18:35:34.000000000", + "2019-01-03T18:36:59.000000000", + "2019-01-03T18:37:51.000000000", + "2019-01-03T18:38:00.000000000", + "2019-01-03T18:38:36.000000000", + "2019-01-03T18:39:53.000000000", + "2019-01-03T18:40:45.000000000", + "2019-01-03T18:41:08.000000000", + "2019-01-03T18:41:28.000000000", + "2019-01-03T18:45:04.000000000", + "2019-01-03T18:45:17.000000000", + "2019-01-03T18:45:23.000000000", + "2019-01-03T18:46:43.000000000", + "2019-01-03T18:47:03.000000000", + "2019-01-03T18:47:06.000000000", + "2019-01-03T18:49:00.000000000", + "2019-01-03T18:49:30.000000000", + "2019-01-03T18:51:14.000000000", + "2019-01-03T18:51:51.000000000", + "2019-01-03T18:52:19.000000000", + "2019-01-03T18:54:02.000000000", + "2019-01-03T18:54:42.000000000", + "2019-01-03T18:56:26.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:48.000000000", + "2019-01-03T18:56:50.000000000", + "2019-01-03T18:58:05.000000000", + "2019-01-03T18:59:52.000000000", + "2019-01-03T19:03:10.000000000", + "2019-01-03T19:05:42.000000000", + "2019-01-03T19:05:46.000000000", + "2019-01-03T19:06:18.000000000", + "2019-01-03T19:06:56.000000000", + "2019-01-03T19:07:06.000000000", + "2019-01-03T19:08:01.000000000", + "2019-01-03T19:08:09.000000000", + "2019-01-03T19:10:34.000000000", + "2019-01-03T19:11:34.000000000", + "2019-01-03T19:13:52.000000000", + "2019-01-03T19:14:30.000000000", + "2019-01-03T19:15:10.000000000", + "2019-01-03T19:17:19.000000000", + "2019-01-03T19:18:35.000000000", + "2019-01-03T19:18:36.000000000", + "2019-01-03T19:20:15.000000000", + "2019-01-03T19:21:17.000000000", + "2019-01-03T19:22:43.000000000", + "2019-01-03T19:23:05.000000000", + "2019-01-03T19:23:10.000000000", + "2019-01-03T19:27:17.000000000", + "2019-01-03T19:27:27.000000000", + "2019-01-03T19:30:30.000000000", + "2019-01-03T19:30:58.000000000", + "2019-01-03T19:31:22.000000000", + "2019-01-03T19:31:46.000000000", + "2019-01-03T19:32:41.000000000", + "2019-01-03T19:34:06.000000000", + "2019-01-03T19:34:21.000000000", + "2019-01-03T19:36:15.000000000", + "2019-01-03T19:36:33.000000000", + "2019-01-03T19:37:33.000000000", + "2019-01-03T19:38:12.000000000", + "2019-01-03T19:40:09.000000000", + "2019-01-03T19:41:56.000000000", + "2019-01-03T19:45:20.000000000", + "2019-01-03T19:47:31.000000000", + "2019-01-03T19:48:12.000000000", + "2019-01-03T19:49:20.000000000", + "2019-01-03T19:50:30.000000000", + "2019-01-03T19:52:33.000000000", + "2019-01-03T19:52:50.000000000", + "2019-01-03T19:53:36.000000000", + "2019-01-03T19:55:48.000000000", + "2019-01-03T19:55:50.000000000", + "2019-01-03T19:57:13.000000000", + "2019-01-03T19:58:14.000000000", + "2019-01-03T19:59:19.000000000", + "2019-01-03T20:02:04.000000000", + "2019-01-03T20:02:42.000000000", + "2019-01-03T20:03:24.000000000", + "2019-01-03T20:06:45.000000000", + "2019-01-03T20:08:06.000000000", + "2019-01-03T20:08:14.000000000", + "2019-01-03T20:08:29.000000000", + "2019-01-03T20:08:35.000000000", + "2019-01-03T20:09:49.000000000", + "2019-01-03T20:10:07.000000000", + "2019-01-03T20:12:48.000000000", + "2019-01-03T20:16:26.000000000", + "2019-01-03T20:18:11.000000000", + "2019-01-03T20:19:18.000000000", + "2019-01-03T20:19:19.000000000", + "2019-01-03T20:20:01.000000000", + "2019-01-03T20:20:07.000000000", + "2019-01-03T20:20:25.000000000", + "2019-01-03T20:20:58.000000000", + "2019-01-03T20:21:26.000000000", + "2019-01-03T20:22:43.000000000", + "2019-01-03T20:23:21.000000000", + "2019-01-03T20:23:53.000000000", + "2019-01-03T20:24:11.000000000", + "2019-01-03T20:24:48.000000000", + "2019-01-03T20:25:22.000000000", + "2019-01-03T20:25:30.000000000", + "2019-01-03T20:25:58.000000000", + "2019-01-03T20:26:52.000000000", + "2019-01-03T20:26:56.000000000", + "2019-01-03T20:27:35.000000000", + "2019-01-03T20:27:41.000000000", + "2019-01-03T20:30:37.000000000", + "2019-01-03T20:32:08.000000000", + "2019-01-03T20:34:28.000000000", + "2019-01-03T20:34:50.000000000", + "2019-01-03T20:35:41.000000000", + "2019-01-03T20:38:15.000000000", + "2019-01-03T20:40:04.000000000", + "2019-01-03T20:40:55.000000000", + "2019-01-03T20:41:53.000000000", + "2019-01-03T20:42:33.000000000", + "2019-01-03T20:43:47.000000000", + "2019-01-03T20:43:50.000000000", + "2019-01-03T20:43:57.000000000", + "2019-01-03T20:45:56.000000000", + "2019-01-03T20:46:08.000000000", + "2019-01-03T20:48:22.000000000", + "2019-01-03T20:51:04.000000000", + "2019-01-03T20:53:30.000000000", + "2019-01-03T20:53:31.000000000", + "2019-01-03T20:55:25.000000000", + "2019-01-03T20:56:13.000000000", + "2019-01-03T20:57:00.000000000", + "2019-01-03T20:57:31.000000000", + "2019-01-03T20:58:46.000000000", + "2019-01-03T20:59:04.000000000", + "2019-01-03T20:59:30.000000000", + "2019-01-03T20:59:58.000000000", + "2019-01-03T21:00:08.000000000", + "2019-01-03T21:01:14.000000000", + "2019-01-03T21:01:52.000000000", + "2019-01-03T21:01:59.000000000", + "2019-01-03T21:02:22.000000000", + "2019-01-03T21:03:01.000000000", + "2019-01-03T21:03:17.000000000", + "2019-01-03T21:03:35.000000000", + "2019-01-03T21:04:24.000000000", + "2019-01-03T21:05:16.000000000", + "2019-01-03T21:05:20.000000000", + "2019-01-03T21:08:09.000000000", + "2019-01-03T21:08:23.000000000", + "2019-01-03T21:08:51.000000000", + "2019-01-03T21:09:53.000000000", + "2019-01-03T21:10:20.000000000", + "2019-01-03T21:10:39.000000000", + "2019-01-03T21:11:04.000000000", + "2019-01-03T21:12:26.000000000", + "2019-01-03T21:13:33.000000000", + "2019-01-03T21:14:26.000000000", + "2019-01-03T21:16:02.000000000", + "2019-01-03T21:16:35.000000000", + "2019-01-03T21:18:03.000000000", + "2019-01-03T21:20:44.000000000", + "2019-01-03T21:21:40.000000000", + "2019-01-03T21:22:13.000000000", + "2019-01-03T21:22:21.000000000", + "2019-01-03T21:22:47.000000000", + "2019-01-03T21:22:52.000000000", + "2019-01-03T21:23:11.000000000", + "2019-01-03T21:23:31.000000000", + "2019-01-03T21:23:46.000000000", + "2019-01-03T21:23:58.000000000", + "2019-01-03T21:25:09.000000000", + "2019-01-03T21:26:01.000000000", + "2019-01-03T21:26:49.000000000", + "2019-01-03T21:27:13.000000000", + "2019-01-03T21:30:51.000000000", + "2019-01-03T21:31:27.000000000", + "2019-01-03T21:32:08.000000000", + "2019-01-03T21:32:41.000000000", + "2019-01-03T21:32:49.000000000", + "2019-01-03T21:34:30.000000000", + "2019-01-03T21:35:46.000000000", + "2019-01-03T21:36:08.000000000", + "2019-01-03T21:36:20.000000000", + "2019-01-03T21:38:48.000000000", + "2019-01-03T21:39:31.000000000", + "2019-01-03T21:39:44.000000000", + "2019-01-03T21:44:00.000000000", + "2019-01-03T21:44:06.000000000", + "2019-01-03T21:44:34.000000000", + "2019-01-03T21:45:44.000000000", + "2019-01-03T21:45:52.000000000", + "2019-01-03T21:47:06.000000000", + "2019-01-03T21:47:41.000000000", + "2019-01-03T21:48:54.000000000", + "2019-01-03T21:49:48.000000000", + "2019-01-03T21:51:46.000000000", + "2019-01-03T21:51:56.000000000", + "2019-01-03T21:53:20.000000000", + "2019-01-03T21:53:39.000000000", + "2019-01-03T21:55:39.000000000", + "2019-01-03T21:55:52.000000000", + "2019-01-03T21:56:22.000000000", + "2019-01-03T21:56:31.000000000", + "2019-01-03T21:57:43.000000000", + "2019-01-03T21:59:21.000000000", + "2019-01-03T22:00:20.000000000", + "2019-01-03T22:00:29.000000000", + "2019-01-03T22:00:47.000000000", + "2019-01-03T22:01:02.000000000", + "2019-01-03T22:01:05.000000000", + "2019-01-03T22:01:17.000000000", + "2019-01-03T22:02:47.000000000", + "2019-01-03T22:04:58.000000000", + "2019-01-03T22:05:02.000000000", + "2019-01-03T22:07:00.000000000", + "2019-01-03T22:07:07.000000000", + "2019-01-03T22:07:19.000000000", + "2019-01-03T22:08:42.000000000", + "2019-01-03T22:09:17.000000000", + "2019-01-03T22:09:54.000000000", + "2019-01-03T22:10:38.000000000", + "2019-01-03T22:11:39.000000000", + "2019-01-03T22:12:15.000000000", + "2019-01-03T22:12:20.000000000", + "2019-01-03T22:13:07.000000000", + "2019-01-03T22:14:06.000000000", + "2019-01-03T22:15:33.000000000", + "2019-01-03T22:16:25.000000000", + "2019-01-03T22:16:47.000000000", + "2019-01-03T22:17:38.000000000", + "2019-01-03T22:18:10.000000000", + "2019-01-03T22:18:35.000000000", + "2019-01-03T22:20:08.000000000", + "2019-01-03T22:23:05.000000000", + "2019-01-03T22:24:38.000000000", + "2019-01-03T22:25:25.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:28:55.000000000", + "2019-01-03T22:29:08.000000000", + "2019-01-03T22:30:53.000000000", + "2019-01-03T22:31:13.000000000", + "2019-01-03T22:32:33.000000000", + "2019-01-03T22:34:19.000000000", + "2019-01-03T22:37:51.000000000", + "2019-01-03T22:37:59.000000000", + "2019-01-03T22:38:19.000000000", + "2019-01-03T22:39:13.000000000", + "2019-01-03T22:41:38.000000000", + "2019-01-03T22:41:49.000000000", + "2019-01-03T22:41:57.000000000", + "2019-01-03T22:43:52.000000000", + "2019-01-03T22:45:05.000000000", + "2019-01-03T22:45:50.000000000", + "2019-01-03T22:47:44.000000000", + "2019-01-03T22:48:14.000000000", + "2019-01-03T22:51:22.000000000", + "2019-01-03T22:52:20.000000000", + "2019-01-03T22:53:44.000000000", + "2019-01-03T22:55:59.000000000", + "2019-01-03T22:56:00.000000000", + "2019-01-03T22:56:20.000000000", + "2019-01-03T22:59:22.000000000", + "2019-01-03T22:59:47.000000000", + "2019-01-03T22:59:56.000000000", + "2019-01-03T23:01:51.000000000", + "2019-01-03T23:01:53.000000000", + "2019-01-03T23:04:23.000000000", + "2019-01-03T23:04:50.000000000", + "2019-01-03T23:05:49.000000000", + "2019-01-03T23:06:30.000000000", + "2019-01-03T23:07:14.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:46.000000000", + "2019-01-03T23:13:52.000000000", + "2019-01-03T23:13:54.000000000", + "2019-01-03T23:14:27.000000000", + "2019-01-03T23:14:42.000000000", + "2019-01-03T23:16:21.000000000", + "2019-01-03T23:17:32.000000000", + "2019-01-03T23:17:45.000000000", + "2019-01-03T23:18:21.000000000", + "2019-01-03T23:18:39.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:20:20.000000000", + "2019-01-03T23:21:04.000000000", + "2019-01-03T23:21:13.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:27:27.000000000", + "2019-01-03T23:27:34.000000000", + "2019-01-03T23:29:13.000000000", + "2019-01-03T23:31:04.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:34:06.000000000", + "2019-01-03T23:36:51.000000000", + "2019-01-03T23:37:04.000000000", + "2019-01-03T23:38:08.000000000", + "2019-01-03T23:38:30.000000000", + "2019-01-03T23:39:07.000000000", + "2019-01-03T23:39:20.000000000", + "2019-01-03T23:39:52.000000000", + "2019-01-03T23:39:56.000000000", + "2019-01-03T23:40:06.000000000", + "2019-01-03T23:41:21.000000000", + "2019-01-03T23:42:06.000000000", + "2019-01-03T23:42:14.000000000", + "2019-01-03T23:42:50.000000000", + "2019-01-03T23:45:20.000000000", + "2019-01-03T23:47:05.000000000", + "2019-01-03T23:47:25.000000000", + "2019-01-03T23:49:12.000000000", + "2019-01-03T23:49:34.000000000", + "2019-01-03T23:50:36.000000000", + "2019-01-03T23:51:23.000000000", + "2019-01-03T23:51:40.000000000", + "2019-01-03T23:53:04.000000000", + "2019-01-03T23:54:32.000000000", + "2019-01-03T23:55:44.000000000", + "2019-01-03T23:56:54.000000000", + "2019-01-03T23:57:48.000000000", + "2019-01-04T00:01:34.000000000", + "2019-01-04T00:02:19.000000000", + "2019-01-04T00:04:39.000000000", + "2019-01-04T00:05:46.000000000", + "2019-01-04T00:06:39.000000000", + "2019-01-04T00:07:34.000000000", + "2019-01-04T00:08:56.000000000", + "2019-01-04T00:09:47.000000000", + "2019-01-04T00:11:19.000000000", + "2019-01-04T00:11:41.000000000", + "2019-01-04T00:12:07.000000000", + "2019-01-04T00:14:01.000000000", + "2019-01-04T00:14:18.000000000", + "2019-01-04T00:15:31.000000000", + "2019-01-04T00:16:19.000000000", + "2019-01-04T00:16:44.000000000", + "2019-01-04T00:17:21.000000000", + "2019-01-04T00:18:10.000000000", + "2019-01-04T00:18:43.000000000", + "2019-01-04T00:19:00.000000000", + "2019-01-04T00:19:12.000000000", + "2019-01-04T00:19:41.000000000", + "2019-01-04T00:21:32.000000000", + "2019-01-04T00:23:17.000000000", + "2019-01-04T00:31:25.000000000", + "2019-01-04T00:33:20.000000000", + "2019-01-04T00:33:37.000000000", + "2019-01-04T00:35:39.000000000", + "2019-01-04T00:35:45.000000000", + "2019-01-04T00:37:14.000000000", + "2019-01-04T00:39:14.000000000", + "2019-01-04T00:39:29.000000000", + "2019-01-04T00:40:11.000000000", + "2019-01-04T00:40:57.000000000", + "2019-01-04T00:41:04.000000000", + "2019-01-04T00:42:49.000000000", + "2019-01-04T00:43:13.000000000", + "2019-01-04T00:43:37.000000000", + "2019-01-04T00:44:21.000000000", + "2019-01-04T00:44:42.000000000", + "2019-01-04T00:45:25.000000000", + "2019-01-04T00:45:54.000000000", + "2019-01-04T00:46:05.000000000", + "2019-01-04T00:47:01.000000000", + "2019-01-04T00:47:04.000000000", + "2019-01-04T00:47:44.000000000", + "2019-01-04T00:48:32.000000000", + "2019-01-04T00:48:55.000000000", + "2019-01-04T00:49:13.000000000", + "2019-01-04T00:49:56.000000000", + "2019-01-04T00:51:10.000000000", + "2019-01-04T00:51:50.000000000", + "2019-01-04T00:54:59.000000000", + "2019-01-04T00:55:23.000000000", + "2019-01-04T00:56:27.000000000", + "2019-01-04T00:56:42.000000000", + "2019-01-04T00:56:59.000000000", + "2019-01-04T00:57:41.000000000", + "2019-01-04T00:57:53.000000000", + "2019-01-04T00:58:24.000000000", + "2019-01-04T00:58:47.000000000", + "2019-01-04T01:00:23.000000000", + "2019-01-04T01:00:34.000000000", + "2019-01-04T01:03:09.000000000", + "2019-01-04T01:03:28.000000000", + "2019-01-04T01:04:34.000000000", + "2019-01-04T01:04:56.000000000", + "2019-01-04T01:05:15.000000000", + "2019-01-04T01:05:46.000000000", + "2019-01-04T01:05:59.000000000", + "2019-01-04T01:06:02.000000000", + "2019-01-04T01:06:20.000000000", + "2019-01-04T01:07:26.000000000", + "2019-01-04T01:09:04.000000000", + "2019-01-04T01:09:38.000000000", + "2019-01-04T01:11:08.000000000", + "2019-01-04T01:11:54.000000000", + "2019-01-04T01:14:01.000000000", + "2019-01-04T01:15:55.000000000", + "2019-01-04T01:16:51.000000000", + "2019-01-04T01:17:12.000000000", + "2019-01-04T01:17:36.000000000", + "2019-01-04T01:18:06.000000000", + "2019-01-04T01:18:43.000000000", + "2019-01-04T01:21:27.000000000", + "2019-01-04T01:21:35.000000000", + "2019-01-04T01:21:49.000000000", + "2019-01-04T01:24:44.000000000", + "2019-01-04T01:25:22.000000000", + "2019-01-04T01:25:33.000000000", + "2019-01-04T01:26:42.000000000", + "2019-01-04T01:27:42.000000000", + "2019-01-04T01:28:29.000000000", + "2019-01-04T01:28:50.000000000", + "2019-01-04T01:29:58.000000000", + "2019-01-04T01:30:46.000000000", + "2019-01-04T01:30:48.000000000", + "2019-01-04T01:30:57.000000000", + "2019-01-04T01:31:19.000000000", + "2019-01-04T01:31:31.000000000", + "2019-01-04T01:31:56.000000000", + "2019-01-04T01:33:33.000000000", + "2019-01-04T01:33:59.000000000", + "2019-01-04T01:34:32.000000000", + "2019-01-04T01:36:02.000000000", + "2019-01-04T01:36:38.000000000", + "2019-01-04T01:37:47.000000000", + "2019-01-04T01:39:26.000000000", + "2019-01-04T01:40:00.000000000", + "2019-01-04T01:40:57.000000000", + "2019-01-04T01:41:07.000000000", + "2019-01-04T01:42:41.000000000", + "2019-01-04T01:43:29.000000000", + "2019-01-04T01:44:39.000000000", + "2019-01-04T01:46:10.000000000", + "2019-01-04T01:46:42.000000000", + "2019-01-04T01:47:02.000000000", + "2019-01-04T01:47:52.000000000", + "2019-01-04T01:48:12.000000000", + "2019-01-04T01:48:47.000000000", + "2019-01-04T01:49:50.000000000", + "2019-01-04T01:49:55.000000000", + "2019-01-04T01:50:27.000000000", + "2019-01-04T01:52:12.000000000", + "2019-01-04T01:53:34.000000000", + "2019-01-04T01:55:03.000000000", + "2019-01-04T01:55:50.000000000", + "2019-01-04T01:56:37.000000000", + "2019-01-04T01:57:09.000000000", + "2019-01-04T01:57:52.000000000", + "2019-01-04T01:57:56.000000000", + "2019-01-04T01:59:05.000000000", + "2019-01-04T02:00:00.000000000", + "2019-01-04T02:01:05.000000000", + "2019-01-04T02:01:17.000000000", + "2019-01-04T02:03:14.000000000", + "2019-01-04T02:03:20.000000000", + "2019-01-04T02:04:56.000000000", + "2019-01-04T02:05:53.000000000", + "2019-01-04T02:06:45.000000000", + "2019-01-04T02:06:46.000000000", + "2019-01-04T02:08:13.000000000", + "2019-01-04T02:10:11.000000000", + "2019-01-04T02:11:01.000000000", + "2019-01-04T02:12:03.000000000", + "2019-01-04T02:12:10.000000000", + "2019-01-04T02:13:43.000000000", + "2019-01-04T02:16:56.000000000", + "2019-01-04T02:18:34.000000000", + "2019-01-04T02:18:55.000000000", + "2019-01-04T02:19:23.000000000", + "2019-01-04T02:22:02.000000000", + "2019-01-04T02:25:49.000000000", + "2019-01-04T02:27:39.000000000", + "2019-01-04T02:27:56.000000000", + "2019-01-04T02:29:49.000000000", + "2019-01-04T02:30:00.000000000", + "2019-01-04T02:30:46.000000000", + "2019-01-04T02:30:50.000000000", + "2019-01-04T02:32:01.000000000", + "2019-01-04T02:32:22.000000000", + "2019-01-04T02:33:40.000000000", + "2019-01-04T02:34:20.000000000", + "2019-01-04T02:34:38.000000000", + "2019-01-04T02:35:24.000000000", + "2019-01-04T02:36:50.000000000", + "2019-01-04T02:37:12.000000000", + "2019-01-04T02:38:47.000000000", + "2019-01-04T02:41:49.000000000", + "2019-01-04T02:42:44.000000000", + "2019-01-04T02:45:40.000000000", + "2019-01-04T02:46:53.000000000", + "2019-01-04T02:47:19.000000000", + "2019-01-04T02:48:42.000000000", + "2019-01-04T02:48:43.000000000", + "2019-01-04T02:49:24.000000000", + "2019-01-04T02:50:13.000000000", + "2019-01-04T02:51:47.000000000", + "2019-01-04T02:53:08.000000000", + "2019-01-04T02:53:45.000000000", + "2019-01-04T02:54:07.000000000", + "2019-01-04T02:54:10.000000000", + "2019-01-04T02:55:32.000000000", + "2019-01-04T02:55:58.000000000", + "2019-01-04T02:56:20.000000000", + "2019-01-04T02:56:56.000000000", + "2019-01-04T02:58:56.000000000", + "2019-01-04T02:59:52.000000000", + "2019-01-04T03:00:26.000000000", + "2019-01-04T03:00:52.000000000", + "2019-01-04T03:01:30.000000000", + "2019-01-04T03:01:55.000000000", + "2019-01-04T03:02:14.000000000", + "2019-01-04T03:02:45.000000000", + "2019-01-04T03:02:55.000000000", + "2019-01-04T03:04:12.000000000", + "2019-01-04T03:04:51.000000000", + "2019-01-04T03:05:50.000000000", + "2019-01-04T03:06:07.000000000", + "2019-01-04T03:06:36.000000000", + "2019-01-04T03:08:00.000000000", + "2019-01-04T03:08:20.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:10:01.000000000", + "2019-01-04T03:10:10.000000000", + "2019-01-04T03:10:54.000000000", + "2019-01-04T03:11:09.000000000", + "2019-01-04T03:13:06.000000000", + "2019-01-04T03:15:17.000000000", + "2019-01-04T03:15:39.000000000", + "2019-01-04T03:16:31.000000000", + "2019-01-04T03:18:20.000000000", + "2019-01-04T03:18:32.000000000", + "2019-01-04T03:18:42.000000000", + "2019-01-04T03:19:24.000000000", + "2019-01-04T03:19:45.000000000", + "2019-01-04T03:20:39.000000000", + "2019-01-04T03:21:34.000000000", + "2019-01-04T03:22:29.000000000", + "2019-01-04T03:22:45.000000000", + "2019-01-04T03:23:27.000000000", + "2019-01-04T03:24:08.000000000", + "2019-01-04T03:24:44.000000000", + "2019-01-04T03:26:21.000000000", + "2019-01-04T03:26:33.000000000", + "2019-01-04T03:27:47.000000000", + "2019-01-04T03:28:31.000000000", + "2019-01-04T03:29:14.000000000", + "2019-01-04T03:29:27.000000000", + "2019-01-04T03:30:17.000000000", + "2019-01-04T03:31:19.000000000", + "2019-01-04T03:32:27.000000000", + "2019-01-04T03:32:35.000000000", + "2019-01-04T03:34:51.000000000", + "2019-01-04T03:36:42.000000000", + "2019-01-04T03:38:24.000000000", + "2019-01-04T03:40:46.000000000", + "2019-01-04T03:40:58.000000000", + "2019-01-04T03:41:27.000000000", + "2019-01-04T03:43:25.000000000", + "2019-01-04T03:44:04.000000000", + "2019-01-04T03:44:09.000000000", + "2019-01-04T03:44:45.000000000", + "2019-01-04T03:47:26.000000000", + "2019-01-04T03:48:14.000000000", + "2019-01-04T03:48:22.000000000", + "2019-01-04T03:48:27.000000000", + "2019-01-04T03:50:08.000000000", + "2019-01-04T03:53:04.000000000", + "2019-01-04T03:54:16.000000000", + "2019-01-04T03:54:34.000000000", + "2019-01-04T03:55:24.000000000", + "2019-01-04T03:55:30.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:59:50.000000000", + "2019-01-04T04:02:19.000000000", + "2019-01-04T04:05:25.000000000", + "2019-01-04T04:07:29.000000000", + "2019-01-04T04:07:30.000000000", + "2019-01-04T04:08:27.000000000", + "2019-01-04T04:09:44.000000000", + "2019-01-04T04:10:50.000000000", + "2019-01-04T04:11:34.000000000", + "2019-01-04T04:13:56.000000000", + "2019-01-04T04:15:56.000000000", + "2019-01-04T04:16:30.000000000", + "2019-01-04T04:16:35.000000000", + "2019-01-04T04:19:27.000000000", + "2019-01-04T04:19:49.000000000", + "2019-01-04T04:22:56.000000000", + "2019-01-04T04:23:07.000000000", + "2019-01-04T04:23:08.000000000", + "2019-01-04T04:24:10.000000000", + "2019-01-04T04:24:53.000000000", + "2019-01-04T04:25:09.000000000", + "2019-01-04T04:25:53.000000000", + "2019-01-04T04:26:42.000000000", + "2019-01-04T04:26:58.000000000", + "2019-01-04T04:27:28.000000000", + "2019-01-04T04:28:38.000000000", + "2019-01-04T04:29:41.000000000", + "2019-01-04T04:30:22.000000000", + "2019-01-04T04:30:31.000000000", + "2019-01-04T04:32:42.000000000", + "2019-01-04T04:36:55.000000000", + "2019-01-04T04:37:05.000000000", + "2019-01-04T04:38:13.000000000", + "2019-01-04T04:44:41.000000000", + "2019-01-04T04:44:51.000000000", + "2019-01-04T04:45:46.000000000", + "2019-01-04T04:46:03.000000000", + "2019-01-04T04:46:23.000000000", + "2019-01-04T04:47:19.000000000", + "2019-01-04T04:47:54.000000000", + "2019-01-04T04:48:48.000000000", + "2019-01-04T04:48:56.000000000", + "2019-01-04T04:49:24.000000000", + "2019-01-04T04:50:14.000000000", + "2019-01-04T04:50:27.000000000", + "2019-01-04T04:51:09.000000000", + "2019-01-04T04:51:11.000000000", + "2019-01-04T04:51:49.000000000", + "2019-01-04T04:53:45.000000000", + "2019-01-04T04:55:10.000000000", + "2019-01-04T04:55:11.000000000", + "2019-01-04T04:55:12.000000000", + "2019-01-04T04:56:16.000000000", + "2019-01-04T04:58:43.000000000", + "2019-01-04T04:58:54.000000000", + "2019-01-04T05:01:30.000000000", + "2019-01-04T05:03:03.000000000", + "2019-01-04T05:03:11.000000000", + "2019-01-04T05:03:35.000000000", + "2019-01-04T05:05:00.000000000", + "2019-01-04T05:06:28.000000000", + "2019-01-04T05:09:44.000000000", + "2019-01-04T05:09:49.000000000", + "2019-01-04T05:10:04.000000000", + "2019-01-04T05:10:08.000000000", + "2019-01-04T05:12:11.000000000", + "2019-01-04T05:12:57.000000000", + "2019-01-04T05:13:15.000000000", + "2019-01-04T05:13:24.000000000", + "2019-01-04T05:15:56.000000000", + "2019-01-04T05:17:05.000000000", + "2019-01-04T05:17:33.000000000", + "2019-01-04T05:17:42.000000000", + "2019-01-04T05:18:00.000000000", + "2019-01-04T05:18:26.000000000", + "2019-01-04T05:19:06.000000000", + "2019-01-04T05:19:30.000000000", + "2019-01-04T05:21:56.000000000", + "2019-01-04T05:22:31.000000000", + "2019-01-04T05:25:32.000000000", + "2019-01-04T05:25:42.000000000", + "2019-01-04T05:26:26.000000000", + "2019-01-04T05:27:35.000000000", + "2019-01-04T05:27:47.000000000", + "2019-01-04T05:30:22.000000000", + "2019-01-04T05:30:39.000000000", + "2019-01-04T05:32:49.000000000", + "2019-01-04T05:33:38.000000000", + "2019-01-04T05:36:29.000000000", + "2019-01-04T05:39:24.000000000", + "2019-01-04T05:39:47.000000000", + "2019-01-04T05:42:02.000000000", + "2019-01-04T05:43:29.000000000", + "2019-01-04T05:43:46.000000000", + "2019-01-04T05:46:07.000000000", + "2019-01-04T05:47:05.000000000", + "2019-01-04T05:48:07.000000000", + "2019-01-04T05:48:50.000000000", + "2019-01-04T05:49:57.000000000", + "2019-01-04T05:50:28.000000000", + "2019-01-04T05:53:15.000000000", + "2019-01-04T05:56:26.000000000", + "2019-01-04T05:56:53.000000000", + "2019-01-04T05:57:43.000000000", + "2019-01-04T05:59:57.000000000", + "2019-01-04T06:00:57.000000000", + "2019-01-04T06:01:36.000000000", + "2019-01-04T06:02:36.000000000", + "2019-01-04T06:04:14.000000000", + "2019-01-04T06:04:28.000000000", + "2019-01-04T06:05:00.000000000", + "2019-01-04T06:07:45.000000000", + "2019-01-04T06:08:25.000000000", + "2019-01-04T06:08:52.000000000", + "2019-01-04T06:09:05.000000000", + "2019-01-04T06:09:42.000000000", + "2019-01-04T06:12:17.000000000", + "2019-01-04T06:12:53.000000000", + "2019-01-04T06:14:13.000000000", + "2019-01-04T06:17:44.000000000", + "2019-01-04T06:19:50.000000000", + "2019-01-04T06:20:45.000000000", + "2019-01-04T06:21:01.000000000", + "2019-01-04T06:21:30.000000000", + "2019-01-04T06:23:27.000000000", + "2019-01-04T06:25:09.000000000", + "2019-01-04T06:25:39.000000000", + "2019-01-04T06:25:44.000000000", + "2019-01-04T06:26:08.000000000", + "2019-01-04T06:28:07.000000000", + "2019-01-04T06:28:14.000000000", + "2019-01-04T06:29:52.000000000", + "2019-01-04T06:30:51.000000000", + "2019-01-04T06:30:57.000000000", + "2019-01-04T06:33:04.000000000", + "2019-01-04T06:33:07.000000000", + "2019-01-04T06:33:49.000000000", + "2019-01-04T06:34:24.000000000", + "2019-01-04T06:36:54.000000000", + "2019-01-04T06:36:57.000000000", + "2019-01-04T06:37:47.000000000", + "2019-01-04T06:37:55.000000000", + "2019-01-04T06:38:26.000000000", + "2019-01-04T06:39:41.000000000", + "2019-01-04T06:41:41.000000000", + "2019-01-04T06:43:17.000000000", + "2019-01-04T06:43:25.000000000", + "2019-01-04T06:44:20.000000000", + "2019-01-04T06:44:24.000000000", + "2019-01-04T06:44:57.000000000", + "2019-01-04T06:47:05.000000000", + "2019-01-04T06:48:02.000000000", + "2019-01-04T06:48:18.000000000", + "2019-01-04T06:48:47.000000000", + "2019-01-04T06:49:42.000000000", + "2019-01-04T06:52:14.000000000", + "2019-01-04T06:52:18.000000000", + "2019-01-04T06:52:27.000000000", + "2019-01-04T06:53:39.000000000", + "2019-01-04T06:54:10.000000000", + "2019-01-04T06:54:23.000000000", + "2019-01-04T06:55:27.000000000", + "2019-01-04T06:56:45.000000000", + "2019-01-04T07:01:03.000000000", + "2019-01-04T07:02:58.000000000", + "2019-01-04T07:03:21.000000000", + "2019-01-04T07:04:34.000000000", + "2019-01-04T07:05:59.000000000", + "2019-01-04T07:06:44.000000000", + "2019-01-04T07:08:12.000000000", + "2019-01-04T07:10:45.000000000", + "2019-01-04T07:10:57.000000000", + "2019-01-04T07:12:14.000000000", + "2019-01-04T07:15:19.000000000", + "2019-01-04T07:15:53.000000000", + "2019-01-04T07:15:58.000000000", + "2019-01-04T07:16:10.000000000", + "2019-01-04T07:17:02.000000000", + "2019-01-04T07:18:23.000000000", + "2019-01-04T07:20:01.000000000", + "2019-01-04T07:20:19.000000000", + "2019-01-04T07:20:21.000000000", + "2019-01-04T07:21:13.000000000", + "2019-01-04T07:22:02.000000000", + "2019-01-04T07:23:30.000000000", + "2019-01-04T07:25:15.000000000", + "2019-01-04T07:29:37.000000000", + "2019-01-04T07:30:26.000000000", + "2019-01-04T07:30:44.000000000", + "2019-01-04T07:31:13.000000000", + "2019-01-04T07:31:28.000000000", + "2019-01-04T07:33:36.000000000", + "2019-01-04T07:33:55.000000000", + "2019-01-04T07:34:49.000000000", + "2019-01-04T07:38:17.000000000", + "2019-01-04T07:39:46.000000000", + "2019-01-04T07:39:48.000000000", + "2019-01-04T07:41:09.000000000", + "2019-01-04T07:41:48.000000000", + "2019-01-04T07:43:06.000000000", + "2019-01-04T07:43:12.000000000", + "2019-01-04T07:43:42.000000000", + "2019-01-04T07:44:05.000000000", + "2019-01-04T07:44:57.000000000", + "2019-01-04T07:44:58.000000000", + "2019-01-04T07:45:09.000000000", + "2019-01-04T07:45:22.000000000", + "2019-01-04T07:45:28.000000000", + "2019-01-04T07:46:15.000000000", + "2019-01-04T07:47:48.000000000", + "2019-01-04T07:48:09.000000000", + "2019-01-04T07:50:02.000000000", + "2019-01-04T07:51:01.000000000", + "2019-01-04T07:51:59.000000000", + "2019-01-04T07:52:18.000000000", + "2019-01-04T07:53:53.000000000", + "2019-01-04T07:54:33.000000000", + "2019-01-04T07:56:13.000000000", + "2019-01-04T07:56:27.000000000", + "2019-01-04T08:00:44.000000000", + "2019-01-04T08:00:59.000000000", + "2019-01-04T08:01:52.000000000", + "2019-01-04T08:02:40.000000000", + "2019-01-04T08:04:09.000000000", + "2019-01-04T08:04:20.000000000", + "2019-01-04T08:05:37.000000000", + "2019-01-04T08:06:07.000000000", + "2019-01-04T08:06:27.000000000", + "2019-01-04T08:07:01.000000000", + "2019-01-04T08:07:44.000000000", + "2019-01-04T08:08:16.000000000", + "2019-01-04T08:08:44.000000000", + "2019-01-04T08:09:04.000000000", + "2019-01-04T08:09:15.000000000", + "2019-01-04T08:10:02.000000000", + "2019-01-04T08:10:14.000000000", + "2019-01-04T08:12:07.000000000", + "2019-01-04T08:12:55.000000000", + "2019-01-04T08:13:03.000000000", + "2019-01-04T08:13:52.000000000", + "2019-01-04T08:14:48.000000000", + "2019-01-04T08:15:59.000000000", + "2019-01-04T08:16:37.000000000", + "2019-01-04T08:17:32.000000000", + "2019-01-04T08:17:43.000000000", + "2019-01-04T08:17:52.000000000", + "2019-01-04T08:18:35.000000000", + "2019-01-04T08:19:07.000000000", + "2019-01-04T08:21:26.000000000", + "2019-01-04T08:23:00.000000000", + "2019-01-04T08:23:22.000000000", + "2019-01-04T08:23:29.000000000", + "2019-01-04T08:24:47.000000000", + "2019-01-04T08:25:14.000000000", + "2019-01-04T08:25:24.000000000", + "2019-01-04T08:25:35.000000000", + "2019-01-04T08:26:19.000000000", + "2019-01-04T08:26:39.000000000", + "2019-01-04T08:28:43.000000000", + "2019-01-04T08:30:20.000000000", + "2019-01-04T08:30:21.000000000", + "2019-01-04T08:32:30.000000000", + "2019-01-04T08:32:45.000000000", + "2019-01-04T08:36:10.000000000", + "2019-01-04T08:36:13.000000000", + "2019-01-04T08:36:39.000000000", + "2019-01-04T08:36:46.000000000", + "2019-01-04T08:37:27.000000000", + "2019-01-04T08:38:02.000000000", + "2019-01-04T08:38:12.000000000", + "2019-01-04T08:39:54.000000000", + "2019-01-04T08:40:02.000000000", + "2019-01-04T08:41:21.000000000", + "2019-01-04T08:42:26.000000000", + "2019-01-04T08:43:44.000000000", + "2019-01-04T08:45:42.000000000", + "2019-01-04T08:46:03.000000000", + "2019-01-04T08:46:12.000000000", + "2019-01-04T08:47:35.000000000", + "2019-01-04T08:48:14.000000000", + "2019-01-04T08:48:33.000000000", + "2019-01-04T08:48:38.000000000", + "2019-01-04T08:48:58.000000000", + "2019-01-04T08:49:21.000000000", + "2019-01-04T08:49:51.000000000", + "2019-01-04T08:50:16.000000000", + "2019-01-04T08:50:30.000000000", + "2019-01-04T08:50:48.000000000", + "2019-01-04T08:53:47.000000000", + "2019-01-04T08:55:07.000000000", + "2019-01-04T08:57:20.000000000", + "2019-01-04T08:57:39.000000000", + "2019-01-04T08:58:05.000000000", + "2019-01-04T08:58:26.000000000", + "2019-01-04T08:58:49.000000000", + "2019-01-04T09:00:22.000000000", + "2019-01-04T09:01:45.000000000", + "2019-01-04T09:01:50.000000000", + "2019-01-04T09:03:34.000000000", + "2019-01-04T09:04:18.000000000", + "2019-01-04T09:04:23.000000000", + "2019-01-04T09:05:36.000000000", + "2019-01-04T09:07:01.000000000", + "2019-01-04T09:07:04.000000000", + "2019-01-04T09:07:58.000000000", + "2019-01-04T09:08:41.000000000", + "2019-01-04T09:09:15.000000000", + "2019-01-04T09:11:28.000000000", + "2019-01-04T09:12:28.000000000", + "2019-01-04T09:12:47.000000000", + "2019-01-04T09:14:50.000000000", + "2019-01-04T09:17:20.000000000", + "2019-01-04T09:19:38.000000000", + "2019-01-04T09:21:14.000000000", + "2019-01-04T09:23:54.000000000", + "2019-01-04T09:26:08.000000000", + "2019-01-04T09:26:39.000000000", + "2019-01-04T09:27:07.000000000", + "2019-01-04T09:27:33.000000000", + "2019-01-04T09:27:49.000000000", + "2019-01-04T09:29:08.000000000", + "2019-01-04T09:29:32.000000000", + "2019-01-04T09:29:48.000000000", + "2019-01-04T09:30:59.000000000", + "2019-01-04T09:32:14.000000000", + "2019-01-04T09:32:36.000000000", + "2019-01-04T09:33:11.000000000", + "2019-01-04T09:35:05.000000000", + "2019-01-04T09:35:13.000000000", + "2019-01-04T09:35:18.000000000", + "2019-01-04T09:36:04.000000000", + "2019-01-04T09:37:08.000000000", + "2019-01-04T09:37:47.000000000", + "2019-01-04T09:38:37.000000000", + "2019-01-04T09:38:58.000000000", + "2019-01-04T09:40:30.000000000", + "2019-01-04T09:40:41.000000000", + "2019-01-04T09:41:43.000000000", + "2019-01-04T09:42:27.000000000", + "2019-01-04T09:43:35.000000000", + "2019-01-04T09:44:17.000000000", + "2019-01-04T09:44:22.000000000", + "2019-01-04T09:44:47.000000000", + "2019-01-04T09:48:06.000000000", + "2019-01-04T09:48:08.000000000", + "2019-01-04T09:50:15.000000000", + "2019-01-04T09:51:15.000000000", + "2019-01-04T09:52:09.000000000", + "2019-01-04T09:54:16.000000000", + "2019-01-04T09:54:17.000000000", + "2019-01-04T09:55:33.000000000", + "2019-01-04T09:55:42.000000000", + "2019-01-04T09:58:12.000000000", + "2019-01-04T09:58:47.000000000", + "2019-01-04T09:59:37.000000000", + "2019-01-04T10:01:01.000000000", + "2019-01-04T10:02:18.000000000", + "2019-01-04T10:06:51.000000000", + "2019-01-04T10:07:07.000000000", + "2019-01-04T10:13:04.000000000", + "2019-01-04T10:13:17.000000000", + "2019-01-04T10:13:19.000000000", + "2019-01-04T10:13:42.000000000", + "2019-01-04T10:13:59.000000000", + "2019-01-04T10:14:40.000000000", + "2019-01-04T10:15:30.000000000", + "2019-01-04T10:15:56.000000000", + "2019-01-04T10:16:27.000000000", + "2019-01-04T10:18:42.000000000", + "2019-01-04T10:18:47.000000000", + "2019-01-04T10:18:54.000000000", + "2019-01-04T10:19:17.000000000", + "2019-01-04T10:19:57.000000000", + "2019-01-04T10:20:44.000000000", + "2019-01-04T10:21:23.000000000", + "2019-01-04T10:24:05.000000000", + "2019-01-04T10:25:14.000000000", + "2019-01-04T10:25:15.000000000", + "2019-01-04T10:26:26.000000000", + "2019-01-04T10:26:28.000000000", + "2019-01-04T10:26:29.000000000", + "2019-01-04T10:28:12.000000000", + "2019-01-04T10:28:41.000000000", + "2019-01-04T10:29:30.000000000", + "2019-01-04T10:29:34.000000000", + "2019-01-04T10:29:56.000000000", + "2019-01-04T10:30:58.000000000", + "2019-01-04T10:31:00.000000000", + "2019-01-04T10:31:17.000000000", + "2019-01-04T10:31:25.000000000", + "2019-01-04T10:32:16.000000000", + "2019-01-04T10:32:52.000000000", + "2019-01-04T10:34:12.000000000", + "2019-01-04T10:35:25.000000000", + "2019-01-04T10:36:09.000000000", + "2019-01-04T10:36:44.000000000", + "2019-01-04T10:40:03.000000000", + "2019-01-04T10:40:05.000000000", + "2019-01-04T10:40:28.000000000", + "2019-01-04T10:40:32.000000000", + "2019-01-04T10:43:46.000000000", + "2019-01-04T10:43:57.000000000", + "2019-01-04T10:46:06.000000000", + "2019-01-04T10:47:07.000000000", + "2019-01-04T10:48:17.000000000", + "2019-01-04T10:48:51.000000000", + "2019-01-04T10:48:58.000000000", + "2019-01-04T10:50:26.000000000", + "2019-01-04T10:50:46.000000000", + "2019-01-04T10:51:36.000000000", + "2019-01-04T10:52:36.000000000", + "2019-01-04T10:53:25.000000000", + "2019-01-04T10:53:26.000000000", + "2019-01-04T10:54:38.000000000", + "2019-01-04T10:55:50.000000000", + "2019-01-04T10:59:27.000000000", + "2019-01-04T10:59:35.000000000", + "2019-01-04T11:01:17.000000000", + "2019-01-04T11:02:46.000000000", + "2019-01-04T11:03:22.000000000", + "2019-01-04T11:03:37.000000000", + "2019-01-04T11:04:31.000000000", + "2019-01-04T11:06:11.000000000", + "2019-01-04T11:07:32.000000000", + "2019-01-04T11:07:48.000000000", + "2019-01-04T11:08:13.000000000", + "2019-01-04T11:09:38.000000000", + "2019-01-04T11:11:40.000000000", + "2019-01-04T11:13:27.000000000", + "2019-01-04T11:14:25.000000000", + "2019-01-04T11:18:54.000000000", + "2019-01-04T11:19:10.000000000", + "2019-01-04T11:19:18.000000000", + "2019-01-04T11:20:04.000000000", + "2019-01-04T11:20:33.000000000", + "2019-01-04T11:20:52.000000000", + "2019-01-04T11:22:41.000000000", + "2019-01-04T11:23:00.000000000", + "2019-01-04T11:25:49.000000000", + "2019-01-04T11:27:37.000000000", + "2019-01-04T11:28:12.000000000", + "2019-01-04T11:28:32.000000000", + "2019-01-04T11:31:37.000000000", + "2019-01-04T11:33:08.000000000", + "2019-01-04T11:33:12.000000000", + "2019-01-04T11:33:17.000000000", + "2019-01-04T11:33:39.000000000", + "2019-01-04T11:34:08.000000000", + "2019-01-04T11:34:20.000000000", + "2019-01-04T11:36:32.000000000", + "2019-01-04T11:38:07.000000000", + "2019-01-04T11:39:37.000000000", + "2019-01-04T11:40:14.000000000", + "2019-01-04T11:41:20.000000000", + "2019-01-04T11:42:11.000000000", + "2019-01-04T11:42:38.000000000", + "2019-01-04T11:44:04.000000000", + "2019-01-04T11:45:45.000000000", + "2019-01-04T11:46:17.000000000", + "2019-01-04T11:46:23.000000000", + "2019-01-04T11:47:48.000000000", + "2019-01-04T11:53:19.000000000", + "2019-01-04T11:53:40.000000000", + "2019-01-04T11:53:46.000000000", + "2019-01-04T11:54:11.000000000", + "2019-01-04T11:54:14.000000000", + "2019-01-04T11:54:52.000000000", + "2019-01-04T11:56:21.000000000", + "2019-01-04T11:57:06.000000000", + "2019-01-04T11:57:33.000000000", + "2019-01-04T11:57:39.000000000", + "2019-01-04T11:58:30.000000000", + "2019-01-04T11:58:40.000000000", + "2019-01-04T11:58:53.000000000", + "2019-01-04T12:01:03.000000000", + "2019-01-04T12:03:12.000000000", + "2019-01-04T12:03:16.000000000", + "2019-01-04T12:03:21.000000000", + "2019-01-04T12:05:03.000000000", + "2019-01-04T12:05:47.000000000", + "2019-01-04T12:06:56.000000000", + "2019-01-04T12:07:45.000000000", + "2019-01-04T12:08:08.000000000", + "2019-01-04T12:08:32.000000000", + "2019-01-04T12:08:45.000000000", + "2019-01-04T12:08:54.000000000", + "2019-01-04T12:11:37.000000000", + "2019-01-04T12:12:08.000000000", + "2019-01-04T12:13:20.000000000", + "2019-01-04T12:13:21.000000000", + "2019-01-04T12:14:53.000000000", + "2019-01-04T12:15:23.000000000", + "2019-01-04T12:18:06.000000000", + "2019-01-04T12:18:11.000000000", + "2019-01-04T12:18:40.000000000", + "2019-01-04T12:18:41.000000000", + "2019-01-04T12:18:47.000000000", + "2019-01-04T12:19:07.000000000", + "2019-01-04T12:20:51.000000000", + "2019-01-04T12:22:20.000000000", + "2019-01-04T12:23:47.000000000", + "2019-01-04T12:24:08.000000000", + "2019-01-04T12:26:18.000000000", + "2019-01-04T12:27:13.000000000", + "2019-01-04T12:28:54.000000000", + "2019-01-04T12:29:00.000000000", + "2019-01-04T12:30:05.000000000", + "2019-01-04T12:30:18.000000000", + "2019-01-04T12:33:26.000000000", + "2019-01-04T12:34:30.000000000", + "2019-01-04T12:34:42.000000000", + "2019-01-04T12:36:17.000000000", + "2019-01-04T12:39:29.000000000", + "2019-01-04T12:40:04.000000000", + "2019-01-04T12:41:43.000000000", + "2019-01-04T12:44:41.000000000", + "2019-01-04T12:45:50.000000000", + "2019-01-04T12:45:54.000000000", + "2019-01-04T12:46:28.000000000", + "2019-01-04T12:46:40.000000000", + "2019-01-04T12:52:31.000000000", + "2019-01-04T12:55:18.000000000", + "2019-01-04T12:55:22.000000000", + "2019-01-04T12:58:23.000000000", + "2019-01-04T12:58:54.000000000", + "2019-01-04T12:59:03.000000000", + "2019-01-04T12:59:09.000000000", + "2019-01-04T12:59:29.000000000", + "2019-01-04T12:59:33.000000000", + "2019-01-04T12:59:40.000000000", + "2019-01-04T13:02:35.000000000", + "2019-01-04T13:03:05.000000000", + "2019-01-04T13:03:26.000000000", + "2019-01-04T13:03:37.000000000", + "2019-01-04T13:03:52.000000000", + "2019-01-04T13:03:58.000000000", + "2019-01-04T13:04:06.000000000", + "2019-01-04T13:06:19.000000000", + "2019-01-04T13:06:39.000000000", + "2019-01-04T13:09:34.000000000", + "2019-01-04T13:09:54.000000000", + "2019-01-04T13:11:08.000000000", + "2019-01-04T13:11:16.000000000", + "2019-01-04T13:12:40.000000000", + "2019-01-04T13:13:32.000000000", + "2019-01-04T13:14:59.000000000", + "2019-01-04T13:17:40.000000000", + "2019-01-04T13:17:51.000000000", + "2019-01-04T13:17:59.000000000", + "2019-01-04T13:18:24.000000000", + "2019-01-04T13:18:45.000000000", + "2019-01-04T13:20:04.000000000", + "2019-01-04T13:20:38.000000000", + "2019-01-04T13:23:05.000000000", + "2019-01-04T13:23:32.000000000", + "2019-01-04T13:24:39.000000000", + "2019-01-04T13:25:52.000000000", + "2019-01-04T13:26:41.000000000", + "2019-01-04T13:26:46.000000000", + "2019-01-04T13:26:56.000000000", + "2019-01-04T13:29:46.000000000", + "2019-01-04T13:30:03.000000000", + "2019-01-04T13:31:07.000000000", + "2019-01-04T13:31:26.000000000", + "2019-01-04T13:38:50.000000000", + "2019-01-04T13:38:57.000000000", + "2019-01-04T13:39:17.000000000", + "2019-01-04T13:39:50.000000000", + "2019-01-04T13:41:08.000000000", + "2019-01-04T13:42:08.000000000", + "2019-01-04T13:42:23.000000000", + "2019-01-04T13:42:39.000000000", + "2019-01-04T13:42:49.000000000", + "2019-01-04T13:43:29.000000000", + "2019-01-04T13:43:45.000000000", + "2019-01-04T13:44:05.000000000", + "2019-01-04T13:47:42.000000000", + "2019-01-04T13:48:08.000000000", + "2019-01-04T13:49:17.000000000", + "2019-01-04T13:49:57.000000000", + "2019-01-04T13:50:26.000000000", + "2019-01-04T13:50:52.000000000", + "2019-01-04T13:51:00.000000000", + "2019-01-04T13:52:33.000000000", + "2019-01-04T13:53:26.000000000", + "2019-01-04T13:54:44.000000000", + "2019-01-04T13:56:02.000000000", + "2019-01-04T13:56:46.000000000", + "2019-01-04T14:00:07.000000000", + "2019-01-04T14:00:23.000000000", + "2019-01-04T14:00:35.000000000", + "2019-01-04T14:00:57.000000000", + "2019-01-04T14:01:06.000000000", + "2019-01-04T14:02:08.000000000", + "2019-01-04T14:02:52.000000000", + "2019-01-04T14:03:33.000000000", + "2019-01-04T14:05:21.000000000", + "2019-01-04T14:09:19.000000000", + "2019-01-04T14:11:16.000000000", + "2019-01-04T14:11:26.000000000", + "2019-01-04T14:11:42.000000000", + "2019-01-04T14:11:44.000000000", + "2019-01-04T14:11:56.000000000", + "2019-01-04T14:13:02.000000000", + "2019-01-04T14:13:35.000000000", + "2019-01-04T14:14:11.000000000", + "2019-01-04T14:14:57.000000000", + "2019-01-04T14:15:21.000000000", + "2019-01-04T14:15:41.000000000", + "2019-01-04T14:16:51.000000000", + "2019-01-04T14:17:58.000000000", + "2019-01-04T14:22:25.000000000", + "2019-01-04T14:22:26.000000000", + "2019-01-04T14:22:45.000000000", + "2019-01-04T14:24:17.000000000", + "2019-01-04T14:25:46.000000000", + "2019-01-04T14:26:18.000000000", + "2019-01-04T14:26:51.000000000", + "2019-01-04T14:27:09.000000000", + "2019-01-04T14:27:47.000000000", + "2019-01-04T14:28:01.000000000", + "2019-01-04T14:28:18.000000000", + "2019-01-04T14:28:40.000000000", + "2019-01-04T14:29:49.000000000", + "2019-01-04T14:29:51.000000000", + "2019-01-04T14:30:28.000000000", + "2019-01-04T14:31:01.000000000", + "2019-01-04T14:31:24.000000000", + "2019-01-04T14:32:11.000000000", + "2019-01-04T14:32:19.000000000", + "2019-01-04T14:32:57.000000000", + "2019-01-04T14:33:06.000000000", + "2019-01-04T14:33:47.000000000", + "2019-01-04T14:35:56.000000000", + "2019-01-04T14:36:05.000000000", + "2019-01-04T14:37:17.000000000", + "2019-01-04T14:37:19.000000000", + "2019-01-04T14:38:30.000000000", + "2019-01-04T14:38:40.000000000", + "2019-01-04T14:40:29.000000000", + "2019-01-04T14:40:39.000000000", + "2019-01-04T14:41:34.000000000", + "2019-01-04T14:42:04.000000000", + "2019-01-04T14:42:25.000000000", + "2019-01-04T14:44:46.000000000", + "2019-01-04T14:45:23.000000000", + "2019-01-04T14:45:48.000000000", + "2019-01-04T14:48:45.000000000", + "2019-01-04T14:48:56.000000000", + "2019-01-04T14:49:24.000000000", + "2019-01-04T14:52:37.000000000", + "2019-01-04T14:54:15.000000000", + "2019-01-04T14:54:20.000000000", + "2019-01-04T14:54:31.000000000", + "2019-01-04T14:59:06.000000000", + "2019-01-04T14:59:11.000000000", + "2019-01-04T15:00:53.000000000", + "2019-01-04T15:03:34.000000000", + "2019-01-04T15:04:49.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:05:47.000000000", + "2019-01-04T15:05:54.000000000", + "2019-01-04T15:05:57.000000000", + "2019-01-04T15:06:31.000000000", + "2019-01-04T15:06:35.000000000", + "2019-01-04T15:07:04.000000000", + "2019-01-04T15:07:05.000000000", + "2019-01-04T15:07:39.000000000", + "2019-01-04T15:08:00.000000000", + "2019-01-04T15:08:25.000000000", + "2019-01-04T15:09:24.000000000", + "2019-01-04T15:09:31.000000000", + "2019-01-04T15:13:24.000000000", + "2019-01-04T15:13:30.000000000", + "2019-01-04T15:13:42.000000000", + "2019-01-04T15:13:43.000000000", + "2019-01-04T15:17:09.000000000", + "2019-01-04T15:17:20.000000000", + "2019-01-04T15:20:43.000000000", + "2019-01-04T15:22:09.000000000", + "2019-01-04T15:22:14.000000000", + "2019-01-04T15:22:41.000000000", + "2019-01-04T15:23:34.000000000", + "2019-01-04T15:24:54.000000000", + "2019-01-04T15:25:21.000000000", + "2019-01-04T15:26:24.000000000", + "2019-01-04T15:27:49.000000000", + "2019-01-04T15:31:25.000000000", + "2019-01-04T15:31:38.000000000", + "2019-01-04T15:32:40.000000000", + "2019-01-04T15:35:08.000000000", + "2019-01-04T15:36:00.000000000", + "2019-01-04T15:36:34.000000000", + "2019-01-04T15:37:30.000000000", + "2019-01-04T15:40:01.000000000", + "2019-01-04T15:40:05.000000000", + "2019-01-04T15:40:49.000000000", + "2019-01-04T15:42:58.000000000", + "2019-01-04T15:43:21.000000000", + "2019-01-04T15:43:25.000000000", + "2019-01-04T15:44:21.000000000", + "2019-01-04T15:45:01.000000000", + "2019-01-04T15:46:20.000000000", + "2019-01-04T15:46:45.000000000", + "2019-01-04T15:49:06.000000000", + "2019-01-04T15:49:58.000000000", + "2019-01-04T15:49:59.000000000", + "2019-01-04T15:50:22.000000000", + "2019-01-04T15:52:38.000000000", + "2019-01-04T15:56:10.000000000", + "2019-01-04T15:57:12.000000000", + "2019-01-04T15:57:50.000000000", + "2019-01-04T15:58:54.000000000", + "2019-01-04T16:00:37.000000000", + "2019-01-04T16:01:13.000000000", + "2019-01-04T16:01:45.000000000", + "2019-01-04T16:03:11.000000000", + "2019-01-04T16:04:07.000000000", + "2019-01-04T16:05:16.000000000", + "2019-01-04T16:05:50.000000000", + "2019-01-04T16:07:19.000000000", + "2019-01-04T16:09:39.000000000", + "2019-01-04T16:10:10.000000000", + "2019-01-04T16:10:48.000000000", + "2019-01-04T16:11:00.000000000", + "2019-01-04T16:11:20.000000000", + "2019-01-04T16:13:06.000000000", + "2019-01-04T16:13:30.000000000", + "2019-01-04T16:13:44.000000000", + "2019-01-04T16:14:53.000000000", + "2019-01-04T16:15:11.000000000", + "2019-01-04T16:15:55.000000000", + "2019-01-04T16:23:00.000000000", + "2019-01-04T16:23:47.000000000", + "2019-01-04T16:24:32.000000000", + "2019-01-04T16:24:56.000000000", + "2019-01-04T16:25:54.000000000", + "2019-01-04T16:25:58.000000000", + "2019-01-04T16:27:32.000000000", + "2019-01-04T16:27:48.000000000", + "2019-01-04T16:28:54.000000000", + "2019-01-04T16:29:50.000000000", + "2019-01-04T16:30:51.000000000", + "2019-01-04T16:32:01.000000000", + "2019-01-04T16:33:21.000000000", + "2019-01-04T16:34:45.000000000", + "2019-01-04T16:38:39.000000000", + "2019-01-04T16:39:09.000000000", + "2019-01-04T16:39:21.000000000", + "2019-01-04T16:40:15.000000000", + "2019-01-04T16:47:30.000000000", + "2019-01-04T16:48:19.000000000", + "2019-01-04T16:48:38.000000000", + "2019-01-04T16:49:04.000000000", + "2019-01-04T16:49:11.000000000", + "2019-01-04T16:50:06.000000000", + "2019-01-04T16:51:28.000000000", + "2019-01-04T16:51:31.000000000", + "2019-01-04T16:51:55.000000000", + "2019-01-04T16:52:20.000000000", + "2019-01-04T16:53:33.000000000", + "2019-01-04T16:53:54.000000000", + "2019-01-04T16:54:13.000000000", + "2019-01-04T16:54:51.000000000", + "2019-01-04T16:55:46.000000000", + "2019-01-04T16:57:08.000000000", + "2019-01-04T16:57:11.000000000", + "2019-01-04T16:57:17.000000000", + "2019-01-04T16:58:15.000000000", + "2019-01-04T16:58:39.000000000", + "2019-01-04T16:58:47.000000000", + "2019-01-04T17:00:16.000000000", + "2019-01-04T17:00:32.000000000", + "2019-01-04T17:00:36.000000000", + "2019-01-04T17:01:57.000000000", + "2019-01-04T17:03:33.000000000", + "2019-01-04T17:04:16.000000000", + "2019-01-04T17:05:58.000000000", + "2019-01-04T17:10:58.000000000", + "2019-01-04T17:11:25.000000000", + "2019-01-04T17:13:03.000000000", + "2019-01-04T17:13:59.000000000", + "2019-01-04T17:14:43.000000000", + "2019-01-04T17:16:46.000000000", + "2019-01-04T17:17:16.000000000", + "2019-01-04T17:20:50.000000000", + "2019-01-04T17:21:03.000000000", + "2019-01-04T17:21:49.000000000", + "2019-01-04T17:21:58.000000000", + "2019-01-04T17:24:18.000000000", + "2019-01-04T17:24:36.000000000", + "2019-01-04T17:24:37.000000000", + "2019-01-04T17:27:12.000000000", + "2019-01-04T17:27:18.000000000", + "2019-01-04T17:29:03.000000000", + "2019-01-04T17:30:12.000000000", + "2019-01-04T17:30:22.000000000", + "2019-01-04T17:31:18.000000000", + "2019-01-04T17:31:42.000000000", + "2019-01-04T17:31:46.000000000", + "2019-01-04T17:32:47.000000000", + "2019-01-04T17:34:44.000000000", + "2019-01-04T17:34:59.000000000", + "2019-01-04T17:35:17.000000000", + "2019-01-04T17:35:34.000000000", + "2019-01-04T17:36:37.000000000", + "2019-01-04T17:38:17.000000000", + "2019-01-04T17:38:48.000000000", + "2019-01-04T17:39:15.000000000", + "2019-01-04T17:43:11.000000000", + "2019-01-04T17:43:17.000000000", + "2019-01-04T17:44:42.000000000", + "2019-01-04T17:44:57.000000000", + "2019-01-04T17:45:38.000000000", + "2019-01-04T17:47:14.000000000", + "2019-01-04T17:47:40.000000000", + "2019-01-04T17:48:27.000000000", + "2019-01-04T17:49:08.000000000", + "2019-01-04T17:50:40.000000000", + "2019-01-04T17:51:31.000000000", + "2019-01-04T17:52:29.000000000", + "2019-01-04T17:58:07.000000000", + "2019-01-04T17:58:20.000000000", + "2019-01-04T17:58:31.000000000", + "2019-01-04T17:59:36.000000000", + "2019-01-04T18:00:01.000000000", + "2019-01-04T18:00:07.000000000", + "2019-01-04T18:00:55.000000000", + "2019-01-04T18:01:56.000000000", + "2019-01-04T18:04:48.000000000", + "2019-01-04T18:04:59.000000000", + "2019-01-04T18:07:34.000000000", + "2019-01-04T18:08:27.000000000", + "2019-01-04T18:09:34.000000000", + "2019-01-04T18:10:59.000000000", + "2019-01-04T18:11:19.000000000", + "2019-01-04T18:14:42.000000000", + "2019-01-04T18:14:54.000000000", + "2019-01-04T18:15:51.000000000", + "2019-01-04T18:17:24.000000000", + "2019-01-04T18:17:54.000000000", + "2019-01-04T18:18:06.000000000", + "2019-01-04T18:18:34.000000000", + "2019-01-04T18:20:25.000000000", + "2019-01-04T18:21:36.000000000", + "2019-01-04T18:24:51.000000000", + "2019-01-04T18:25:04.000000000", + "2019-01-04T18:27:19.000000000", + "2019-01-04T18:28:36.000000000", + "2019-01-04T18:29:32.000000000", + "2019-01-04T18:29:49.000000000", + "2019-01-04T18:30:01.000000000", + "2019-01-04T18:32:38.000000000", + "2019-01-04T18:32:54.000000000", + "2019-01-04T18:33:37.000000000", + "2019-01-04T18:35:45.000000000", + "2019-01-04T18:37:06.000000000", + "2019-01-04T18:40:39.000000000", + "2019-01-04T18:41:36.000000000", + "2019-01-04T18:41:37.000000000", + "2019-01-04T18:42:15.000000000", + "2019-01-04T18:44:09.000000000", + "2019-01-04T18:44:55.000000000", + "2019-01-04T18:45:50.000000000", + "2019-01-04T18:46:26.000000000", + "2019-01-04T18:46:58.000000000", + "2019-01-04T18:47:09.000000000", + "2019-01-04T18:47:47.000000000", + "2019-01-04T18:48:15.000000000", + "2019-01-04T18:48:30.000000000", + "2019-01-04T18:49:31.000000000", + "2019-01-04T18:52:38.000000000", + "2019-01-04T18:52:41.000000000", + "2019-01-04T18:53:30.000000000", + "2019-01-04T18:55:14.000000000", + "2019-01-04T18:55:43.000000000", + "2019-01-04T18:55:50.000000000", + "2019-01-04T18:56:22.000000000", + "2019-01-04T18:57:03.000000000", + "2019-01-04T18:59:42.000000000", + "2019-01-04T19:03:52.000000000", + "2019-01-04T19:04:54.000000000", + "2019-01-04T19:06:46.000000000", + "2019-01-04T19:07:20.000000000", + "2019-01-04T19:08:16.000000000", + "2019-01-04T19:13:51.000000000", + "2019-01-04T19:14:34.000000000", + "2019-01-04T19:15:41.000000000", + "2019-01-04T19:16:12.000000000", + "2019-01-04T19:17:07.000000000", + "2019-01-04T19:17:41.000000000", + "2019-01-04T19:19:09.000000000", + "2019-01-04T19:19:23.000000000", + "2019-01-04T19:19:41.000000000", + "2019-01-04T19:20:16.000000000", + "2019-01-04T19:21:15.000000000", + "2019-01-04T19:21:30.000000000", + "2019-01-04T19:22:23.000000000", + "2019-01-04T19:24:55.000000000", + "2019-01-04T19:25:06.000000000", + "2019-01-04T19:25:11.000000000", + "2019-01-04T19:32:30.000000000", + "2019-01-04T19:34:43.000000000", + "2019-01-04T19:34:53.000000000", + "2019-01-04T19:35:15.000000000", + "2019-01-04T19:36:14.000000000", + "2019-01-04T19:38:49.000000000", + "2019-01-04T19:39:21.000000000", + "2019-01-04T19:41:29.000000000", + "2019-01-04T19:41:43.000000000", + "2019-01-04T19:41:46.000000000", + "2019-01-04T19:46:15.000000000", + "2019-01-04T19:47:35.000000000", + "2019-01-04T19:48:23.000000000", + "2019-01-04T19:48:41.000000000", + "2019-01-04T19:49:38.000000000", + "2019-01-04T19:49:56.000000000", + "2019-01-04T19:50:06.000000000", + "2019-01-04T19:50:08.000000000", + "2019-01-04T19:51:17.000000000", + "2019-01-04T19:52:23.000000000", + "2019-01-04T19:52:49.000000000", + "2019-01-04T19:53:04.000000000", + "2019-01-04T19:53:14.000000000", + "2019-01-04T19:53:24.000000000", + "2019-01-04T19:53:46.000000000", + "2019-01-04T19:53:51.000000000", + "2019-01-04T19:53:59.000000000", + "2019-01-04T19:55:00.000000000", + "2019-01-04T19:55:05.000000000", + "2019-01-04T19:55:43.000000000", + "2019-01-04T19:56:07.000000000", + "2019-01-04T19:56:34.000000000", + "2019-01-04T19:56:46.000000000", + "2019-01-04T19:57:16.000000000", + "2019-01-04T19:57:22.000000000", + "2019-01-04T19:58:12.000000000", + "2019-01-04T19:58:26.000000000", + "2019-01-04T20:01:10.000000000", + "2019-01-04T20:01:16.000000000", + "2019-01-04T20:02:18.000000000", + "2019-01-04T20:02:45.000000000", + "2019-01-04T20:03:02.000000000", + "2019-01-04T20:03:10.000000000", + "2019-01-04T20:04:09.000000000", + "2019-01-04T20:05:05.000000000", + "2019-01-04T20:05:56.000000000", + "2019-01-04T20:06:32.000000000", + "2019-01-04T20:07:19.000000000", + "2019-01-04T20:07:25.000000000", + "2019-01-04T20:08:25.000000000", + "2019-01-04T20:08:56.000000000", + "2019-01-04T20:09:35.000000000", + "2019-01-04T20:10:13.000000000", + "2019-01-04T20:10:49.000000000", + "2019-01-04T20:11:21.000000000", + "2019-01-04T20:11:45.000000000", + "2019-01-04T20:13:34.000000000", + "2019-01-04T20:14:07.000000000", + "2019-01-04T20:14:12.000000000", + "2019-01-04T20:16:03.000000000", + "2019-01-04T20:18:55.000000000", + "2019-01-04T20:21:07.000000000", + "2019-01-04T20:21:15.000000000", + "2019-01-04T20:21:27.000000000", + "2019-01-04T20:23:27.000000000", + "2019-01-04T20:28:30.000000000", + "2019-01-04T20:30:34.000000000", + "2019-01-04T20:31:22.000000000", + "2019-01-04T20:32:31.000000000", + "2019-01-04T20:33:30.000000000", + "2019-01-04T20:34:04.000000000", + "2019-01-04T20:36:09.000000000", + "2019-01-04T20:36:24.000000000", + "2019-01-04T20:37:45.000000000", + "2019-01-04T20:37:47.000000000", + "2019-01-04T20:38:01.000000000", + "2019-01-04T20:38:33.000000000", + "2019-01-04T20:38:47.000000000", + "2019-01-04T20:40:05.000000000", + "2019-01-04T20:40:12.000000000", + "2019-01-04T20:40:36.000000000", + "2019-01-04T20:42:33.000000000", + "2019-01-04T20:43:59.000000000", + "2019-01-04T20:44:03.000000000", + "2019-01-04T20:44:33.000000000", + "2019-01-04T20:45:58.000000000", + "2019-01-04T20:46:13.000000000", + "2019-01-04T20:46:16.000000000", + "2019-01-04T20:48:18.000000000", + "2019-01-04T20:48:46.000000000", + "2019-01-04T20:49:01.000000000", + "2019-01-04T20:49:11.000000000", + "2019-01-04T20:49:38.000000000", + "2019-01-04T20:49:52.000000000", + "2019-01-04T20:51:41.000000000", + "2019-01-04T20:52:54.000000000", + "2019-01-04T20:53:24.000000000", + "2019-01-04T20:57:31.000000000", + "2019-01-04T20:58:38.000000000", + "2019-01-04T20:59:37.000000000", + "2019-01-04T20:59:44.000000000", + "2019-01-04T20:59:49.000000000", + "2019-01-04T21:00:05.000000000", + "2019-01-04T21:01:23.000000000", + "2019-01-04T21:02:16.000000000", + "2019-01-04T21:06:34.000000000", + "2019-01-04T21:07:04.000000000", + "2019-01-04T21:07:49.000000000", + "2019-01-04T21:09:05.000000000", + "2019-01-04T21:09:29.000000000", + "2019-01-04T21:09:58.000000000", + "2019-01-04T21:10:28.000000000", + "2019-01-04T21:11:09.000000000", + "2019-01-04T21:11:27.000000000", + "2019-01-04T21:11:37.000000000", + "2019-01-04T21:11:40.000000000", + "2019-01-04T21:15:38.000000000", + "2019-01-04T21:18:16.000000000", + "2019-01-04T21:18:17.000000000", + "2019-01-04T21:18:28.000000000", + "2019-01-04T21:20:42.000000000", + "2019-01-04T21:21:03.000000000", + "2019-01-04T21:22:05.000000000", + "2019-01-04T21:22:18.000000000", + "2019-01-04T21:23:06.000000000", + "2019-01-04T21:23:45.000000000", + "2019-01-04T21:27:02.000000000", + "2019-01-04T21:27:19.000000000", + "2019-01-04T21:30:21.000000000", + "2019-01-04T21:30:24.000000000", + "2019-01-04T21:30:45.000000000", + "2019-01-04T21:31:45.000000000", + "2019-01-04T21:31:54.000000000", + "2019-01-04T21:34:02.000000000", + "2019-01-04T21:34:36.000000000", + "2019-01-04T21:35:04.000000000", + "2019-01-04T21:35:58.000000000", + "2019-01-04T21:37:01.000000000", + "2019-01-04T21:37:14.000000000", + "2019-01-04T21:37:16.000000000", + "2019-01-04T21:37:48.000000000", + "2019-01-04T21:39:02.000000000", + "2019-01-04T21:39:45.000000000", + "2019-01-04T21:40:41.000000000", + "2019-01-04T21:43:15.000000000", + "2019-01-04T21:43:20.000000000", + "2019-01-04T21:44:20.000000000", + "2019-01-04T21:45:17.000000000", + "2019-01-04T21:46:01.000000000", + "2019-01-04T21:46:12.000000000", + "2019-01-04T21:46:14.000000000", + "2019-01-04T21:46:48.000000000", + "2019-01-04T21:47:52.000000000", + "2019-01-04T21:48:22.000000000", + "2019-01-04T21:48:38.000000000", + "2019-01-04T21:48:51.000000000", + "2019-01-04T21:48:59.000000000", + "2019-01-04T21:49:26.000000000", + "2019-01-04T21:50:34.000000000", + "2019-01-04T21:51:11.000000000", + "2019-01-04T21:53:57.000000000", + "2019-01-04T21:55:42.000000000", + "2019-01-04T21:55:52.000000000", + "2019-01-04T22:00:36.000000000", + "2019-01-04T22:00:45.000000000", + "2019-01-04T22:02:02.000000000", + "2019-01-04T22:02:04.000000000", + "2019-01-04T22:03:08.000000000", + "2019-01-04T22:03:21.000000000", + "2019-01-04T22:03:53.000000000", + "2019-01-04T22:04:05.000000000", + "2019-01-04T22:05:12.000000000", + "2019-01-04T22:05:54.000000000", + "2019-01-04T22:08:48.000000000", + "2019-01-04T22:10:13.000000000", + "2019-01-04T22:10:37.000000000", + "2019-01-04T22:11:10.000000000", + "2019-01-04T22:11:13.000000000", + "2019-01-04T22:13:43.000000000", + "2019-01-04T22:15:01.000000000", + "2019-01-04T22:15:14.000000000", + "2019-01-04T22:15:53.000000000", + "2019-01-04T22:17:49.000000000", + "2019-01-04T22:18:40.000000000", + "2019-01-04T22:20:02.000000000", + "2019-01-04T22:20:38.000000000", + "2019-01-04T22:22:18.000000000", + "2019-01-04T22:23:17.000000000", + "2019-01-04T22:23:48.000000000", + "2019-01-04T22:24:46.000000000", + "2019-01-04T22:28:22.000000000", + "2019-01-04T22:29:17.000000000", + "2019-01-04T22:29:31.000000000", + "2019-01-04T22:30:00.000000000", + "2019-01-04T22:30:35.000000000", + "2019-01-04T22:31:58.000000000", + "2019-01-04T22:32:08.000000000", + "2019-01-04T22:33:30.000000000", + "2019-01-04T22:33:38.000000000", + "2019-01-04T22:35:49.000000000", + "2019-01-04T22:35:51.000000000", + "2019-01-04T22:36:45.000000000", + "2019-01-04T22:36:47.000000000", + "2019-01-04T22:37:06.000000000", + "2019-01-04T22:38:20.000000000", + "2019-01-04T22:39:45.000000000", + "2019-01-04T22:40:47.000000000", + "2019-01-04T22:41:56.000000000", + "2019-01-04T22:42:00.000000000", + "2019-01-04T22:42:07.000000000", + "2019-01-04T22:43:31.000000000", + "2019-01-04T22:44:16.000000000", + "2019-01-04T22:44:49.000000000", + "2019-01-04T22:45:15.000000000", + "2019-01-04T22:45:29.000000000", + "2019-01-04T22:50:07.000000000", + "2019-01-04T22:50:15.000000000", + "2019-01-04T22:51:52.000000000", + "2019-01-04T22:52:37.000000000", + "2019-01-04T22:54:15.000000000", + "2019-01-04T22:54:54.000000000", + "2019-01-04T22:55:18.000000000", + "2019-01-04T22:55:48.000000000", + "2019-01-04T22:56:47.000000000", + "2019-01-04T22:57:06.000000000", + "2019-01-04T22:57:51.000000000", + "2019-01-04T22:57:57.000000000", + "2019-01-04T22:58:30.000000000", + "2019-01-04T22:59:50.000000000", + "2019-01-04T23:00:15.000000000", + "2019-01-04T23:00:39.000000000", + "2019-01-04T23:01:32.000000000", + "2019-01-04T23:01:40.000000000", + "2019-01-04T23:02:23.000000000", + "2019-01-04T23:02:46.000000000", + "2019-01-04T23:03:46.000000000", + "2019-01-04T23:04:18.000000000", + "2019-01-04T23:07:42.000000000", + "2019-01-04T23:08:41.000000000", + "2019-01-04T23:13:03.000000000", + "2019-01-04T23:15:01.000000000", + "2019-01-04T23:15:18.000000000", + "2019-01-04T23:15:21.000000000", + "2019-01-04T23:15:44.000000000", + "2019-01-04T23:15:49.000000000", + "2019-01-04T23:17:12.000000000", + "2019-01-04T23:17:44.000000000", + "2019-01-04T23:19:08.000000000", + "2019-01-04T23:19:45.000000000", + "2019-01-04T23:20:11.000000000", + "2019-01-04T23:20:18.000000000", + "2019-01-04T23:21:00.000000000", + "2019-01-04T23:22:27.000000000", + "2019-01-04T23:22:47.000000000", + "2019-01-04T23:23:22.000000000", + "2019-01-04T23:24:59.000000000", + "2019-01-04T23:27:07.000000000", + "2019-01-04T23:29:00.000000000", + "2019-01-04T23:31:00.000000000", + "2019-01-04T23:31:10.000000000", + "2019-01-04T23:31:40.000000000", + "2019-01-04T23:38:29.000000000", + "2019-01-04T23:38:47.000000000", + "2019-01-04T23:39:18.000000000", + "2019-01-04T23:40:27.000000000", + "2019-01-04T23:41:08.000000000", + "2019-01-04T23:41:18.000000000", + "2019-01-04T23:42:36.000000000", + "2019-01-04T23:44:33.000000000", + "2019-01-04T23:45:16.000000000", + "2019-01-04T23:46:11.000000000", + "2019-01-04T23:46:54.000000000", + "2019-01-04T23:47:09.000000000", + "2019-01-04T23:48:28.000000000", + "2019-01-04T23:49:09.000000000", + "2019-01-04T23:51:20.000000000", + "2019-01-04T23:51:24.000000000", + "2019-01-04T23:53:41.000000000", + "2019-01-04T23:54:39.000000000", + "2019-01-04T23:54:53.000000000", + "2019-01-04T23:55:44.000000000", + "2019-01-04T23:56:31.000000000", + "2019-01-04T23:56:33.000000000", + "2019-01-04T23:57:00.000000000", + "2019-01-04T23:57:07.000000000", + "2019-01-04T23:58:15.000000000", + "2019-01-04T23:59:00.000000000", + "2019-01-05T00:00:15.000000000", + "2019-01-05T00:01:15.000000000", + "2019-01-05T00:02:10.000000000", + "2019-01-05T00:03:31.000000000", + "2019-01-05T00:03:49.000000000", + "2019-01-05T00:03:52.000000000", + "2019-01-05T00:04:10.000000000", + "2019-01-05T00:05:31.000000000", + "2019-01-05T00:05:36.000000000", + "2019-01-05T00:07:06.000000000", + "2019-01-05T00:07:19.000000000", + "2019-01-05T00:11:15.000000000", + "2019-01-05T00:12:27.000000000", + "2019-01-05T00:13:02.000000000", + "2019-01-05T00:13:55.000000000", + "2019-01-05T00:16:09.000000000", + "2019-01-05T00:16:37.000000000", + "2019-01-05T00:16:46.000000000", + "2019-01-05T00:18:26.000000000", + "2019-01-05T00:19:09.000000000", + "2019-01-05T00:19:31.000000000", + "2019-01-05T00:19:45.000000000", + "2019-01-05T00:20:21.000000000", + "2019-01-05T00:21:42.000000000", + "2019-01-05T00:25:08.000000000", + "2019-01-05T00:25:23.000000000", + "2019-01-05T00:25:40.000000000", + "2019-01-05T00:26:35.000000000", + "2019-01-05T00:26:53.000000000", + "2019-01-05T00:27:58.000000000", + "2019-01-05T00:28:22.000000000", + "2019-01-05T00:28:27.000000000", + "2019-01-05T00:29:20.000000000", + "2019-01-05T00:29:56.000000000", + "2019-01-05T00:31:32.000000000", + "2019-01-05T00:32:03.000000000", + "2019-01-05T00:32:30.000000000", + "2019-01-05T00:33:20.000000000", + "2019-01-05T00:35:36.000000000", + "2019-01-05T00:38:57.000000000", + "2019-01-05T00:39:00.000000000", + "2019-01-05T00:39:45.000000000", + "2019-01-05T00:40:59.000000000", + "2019-01-05T00:41:08.000000000", + "2019-01-05T00:42:45.000000000", + "2019-01-05T00:45:27.000000000", + "2019-01-05T00:48:38.000000000", + "2019-01-05T00:49:55.000000000", + "2019-01-05T00:50:41.000000000", + "2019-01-05T00:50:51.000000000", + "2019-01-05T00:51:05.000000000", + "2019-01-05T00:52:26.000000000", + "2019-01-05T00:52:44.000000000", + "2019-01-05T00:54:06.000000000", + "2019-01-05T00:55:17.000000000", + "2019-01-05T00:56:31.000000000", + "2019-01-05T00:57:32.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:02:30.000000000", + "2019-01-05T01:05:15.000000000", + "2019-01-05T01:07:33.000000000", + "2019-01-05T01:10:52.000000000", + "2019-01-05T01:11:56.000000000", + "2019-01-05T01:12:40.000000000", + "2019-01-05T01:13:44.000000000", + "2019-01-05T01:13:50.000000000", + "2019-01-05T01:14:25.000000000", + "2019-01-05T01:16:03.000000000", + "2019-01-05T01:16:36.000000000", + "2019-01-05T01:17:06.000000000", + "2019-01-05T01:17:50.000000000", + "2019-01-05T01:19:48.000000000", + "2019-01-05T01:19:53.000000000", + "2019-01-05T01:20:21.000000000", + "2019-01-05T01:21:11.000000000", + "2019-01-05T01:23:39.000000000", + "2019-01-05T01:25:33.000000000", + "2019-01-05T01:25:50.000000000", + "2019-01-05T01:26:40.000000000", + "2019-01-05T01:26:53.000000000", + "2019-01-05T01:27:28.000000000", + "2019-01-05T01:27:56.000000000", + "2019-01-05T01:28:02.000000000", + "2019-01-05T01:29:37.000000000", + "2019-01-05T01:29:49.000000000", + "2019-01-05T01:31:31.000000000", + "2019-01-05T01:34:01.000000000", + "2019-01-05T01:34:37.000000000", + "2019-01-05T01:35:11.000000000", + "2019-01-05T01:35:28.000000000", + "2019-01-05T01:38:11.000000000", + "2019-01-05T01:38:18.000000000", + "2019-01-05T01:38:45.000000000", + "2019-01-05T01:40:34.000000000", + "2019-01-05T01:41:05.000000000", + "2019-01-05T01:43:38.000000000", + "2019-01-05T01:45:52.000000000", + "2019-01-05T01:47:11.000000000", + "2019-01-05T01:47:28.000000000", + "2019-01-05T01:48:45.000000000", + "2019-01-05T01:48:50.000000000", + "2019-01-05T01:50:55.000000000", + "2019-01-05T01:51:56.000000000", + "2019-01-05T01:52:02.000000000", + "2019-01-05T01:52:22.000000000", + "2019-01-05T01:52:56.000000000", + "2019-01-05T01:55:13.000000000", + "2019-01-05T01:55:52.000000000", + "2019-01-05T01:56:36.000000000", + "2019-01-05T01:56:51.000000000", + "2019-01-05T01:58:59.000000000", + "2019-01-05T01:59:01.000000000", + "2019-01-05T01:59:51.000000000", + "2019-01-05T02:01:29.000000000", + "2019-01-05T02:02:00.000000000", + "2019-01-05T02:02:09.000000000", + "2019-01-05T02:02:14.000000000", + "2019-01-05T02:03:34.000000000", + "2019-01-05T02:04:27.000000000", + "2019-01-05T02:05:08.000000000", + "2019-01-05T02:06:12.000000000", + "2019-01-05T02:06:34.000000000", + "2019-01-05T02:07:05.000000000", + "2019-01-05T02:07:25.000000000", + "2019-01-05T02:08:21.000000000", + "2019-01-05T02:09:22.000000000", + "2019-01-05T02:11:00.000000000", + "2019-01-05T02:11:14.000000000", + "2019-01-05T02:11:28.000000000", + "2019-01-05T02:12:55.000000000", + "2019-01-05T02:14:08.000000000", + "2019-01-05T02:16:23.000000000", + "2019-01-05T02:17:10.000000000", + "2019-01-05T02:17:15.000000000", + "2019-01-05T02:17:54.000000000", + "2019-01-05T02:18:51.000000000", + "2019-01-05T02:19:10.000000000", + "2019-01-05T02:19:34.000000000", + "2019-01-05T02:22:34.000000000", + "2019-01-05T02:24:11.000000000", + "2019-01-05T02:24:14.000000000", + "2019-01-05T02:25:16.000000000", + "2019-01-05T02:26:13.000000000", + "2019-01-05T02:29:46.000000000", + "2019-01-05T02:31:43.000000000", + "2019-01-05T02:32:26.000000000", + "2019-01-05T02:32:57.000000000", + "2019-01-05T02:33:00.000000000", + "2019-01-05T02:33:22.000000000", + "2019-01-05T02:34:03.000000000", + "2019-01-05T02:34:32.000000000", + "2019-01-05T02:35:09.000000000", + "2019-01-05T02:37:05.000000000", + "2019-01-05T02:37:22.000000000", + "2019-01-05T02:37:24.000000000", + "2019-01-05T02:38:10.000000000", + "2019-01-05T02:38:39.000000000", + "2019-01-05T02:39:22.000000000", + "2019-01-05T02:43:06.000000000", + "2019-01-05T02:43:40.000000000", + "2019-01-05T02:44:28.000000000", + "2019-01-05T02:46:37.000000000", + "2019-01-05T02:49:10.000000000", + "2019-01-05T02:50:02.000000000", + "2019-01-05T02:50:13.000000000", + "2019-01-05T02:50:25.000000000", + "2019-01-05T02:51:12.000000000", + "2019-01-05T02:51:53.000000000", + "2019-01-05T02:52:51.000000000", + "2019-01-05T02:53:44.000000000", + "2019-01-05T02:55:38.000000000", + "2019-01-05T02:57:47.000000000", + "2019-01-05T02:59:21.000000000", + "2019-01-05T03:00:00.000000000", + "2019-01-05T03:00:12.000000000", + "2019-01-05T03:01:43.000000000", + "2019-01-05T03:01:51.000000000", + "2019-01-05T03:02:55.000000000", + "2019-01-05T03:03:59.000000000", + "2019-01-05T03:04:15.000000000", + "2019-01-05T03:05:33.000000000", + "2019-01-05T03:11:54.000000000", + "2019-01-05T03:12:33.000000000", + "2019-01-05T03:13:50.000000000", + "2019-01-05T03:15:30.000000000", + "2019-01-05T03:15:48.000000000", + "2019-01-05T03:16:00.000000000", + "2019-01-05T03:19:01.000000000", + "2019-01-05T03:20:40.000000000", + "2019-01-05T03:21:19.000000000", + "2019-01-05T03:21:31.000000000", + "2019-01-05T03:21:35.000000000", + "2019-01-05T03:22:48.000000000", + "2019-01-05T03:25:14.000000000", + "2019-01-05T03:25:22.000000000", + "2019-01-05T03:25:27.000000000", + "2019-01-05T03:26:09.000000000", + "2019-01-05T03:26:35.000000000", + "2019-01-05T03:28:23.000000000", + "2019-01-05T03:29:45.000000000", + "2019-01-05T03:29:57.000000000", + "2019-01-05T03:30:11.000000000", + "2019-01-05T03:30:21.000000000", + "2019-01-05T03:31:54.000000000", + "2019-01-05T03:32:10.000000000", + "2019-01-05T03:32:44.000000000", + "2019-01-05T03:34:33.000000000", + "2019-01-05T03:35:03.000000000", + "2019-01-05T03:35:19.000000000", + "2019-01-05T03:35:21.000000000", + "2019-01-05T03:35:36.000000000", + "2019-01-05T03:36:29.000000000", + "2019-01-05T03:38:41.000000000", + "2019-01-05T03:40:31.000000000", + "2019-01-05T03:41:28.000000000", + "2019-01-05T03:42:31.000000000", + "2019-01-05T03:44:17.000000000", + "2019-01-05T03:46:10.000000000", + "2019-01-05T03:48:37.000000000", + "2019-01-05T03:51:41.000000000", + "2019-01-05T03:52:32.000000000", + "2019-01-05T03:55:41.000000000", + "2019-01-05T03:55:53.000000000", + "2019-01-05T03:56:17.000000000", + "2019-01-05T03:56:34.000000000", + "2019-01-05T03:58:01.000000000", + "2019-01-05T03:58:10.000000000", + "2019-01-05T03:58:31.000000000", + "2019-01-05T03:59:32.000000000", + "2019-01-05T04:00:30.000000000", + "2019-01-05T04:00:37.000000000", + "2019-01-05T04:00:57.000000000", + "2019-01-05T04:01:03.000000000", + "2019-01-05T04:02:00.000000000", + "2019-01-05T04:04:27.000000000", + "2019-01-05T04:09:51.000000000", + "2019-01-05T04:10:05.000000000", + "2019-01-05T04:10:19.000000000", + "2019-01-05T04:10:20.000000000", + "2019-01-05T04:10:34.000000000", + "2019-01-05T04:10:37.000000000", + "2019-01-05T04:12:33.000000000", + "2019-01-05T04:13:21.000000000", + "2019-01-05T04:15:28.000000000", + "2019-01-05T04:15:48.000000000", + "2019-01-05T04:17:31.000000000", + "2019-01-05T04:17:49.000000000", + "2019-01-05T04:18:49.000000000", + "2019-01-05T04:20:00.000000000", + "2019-01-05T04:20:53.000000000", + "2019-01-05T04:22:16.000000000", + "2019-01-05T04:22:40.000000000", + "2019-01-05T04:22:55.000000000", + "2019-01-05T04:24:00.000000000", + "2019-01-05T04:24:15.000000000", + "2019-01-05T04:25:34.000000000", + "2019-01-05T04:26:31.000000000", + "2019-01-05T04:26:52.000000000", + "2019-01-05T04:27:54.000000000", + "2019-01-05T04:28:58.000000000", + "2019-01-05T04:29:17.000000000", + "2019-01-05T04:31:29.000000000", + "2019-01-05T04:31:57.000000000", + "2019-01-05T04:32:24.000000000", + "2019-01-05T04:34:53.000000000", + "2019-01-05T04:34:54.000000000", + "2019-01-05T04:35:11.000000000", + "2019-01-05T04:36:36.000000000", + "2019-01-05T04:36:50.000000000", + "2019-01-05T04:39:16.000000000", + "2019-01-05T04:39:42.000000000", + "2019-01-05T04:39:51.000000000", + "2019-01-05T04:40:44.000000000", + "2019-01-05T04:40:50.000000000", + "2019-01-05T04:42:09.000000000", + "2019-01-05T04:42:36.000000000", + "2019-01-05T04:42:45.000000000", + "2019-01-05T04:43:34.000000000", + "2019-01-05T04:45:15.000000000", + "2019-01-05T04:46:29.000000000", + "2019-01-05T04:47:12.000000000", + "2019-01-05T04:47:24.000000000", + "2019-01-05T04:48:22.000000000", + "2019-01-05T04:50:14.000000000", + "2019-01-05T04:50:15.000000000", + "2019-01-05T04:51:16.000000000", + "2019-01-05T04:52:16.000000000", + "2019-01-05T04:52:19.000000000", + "2019-01-05T04:54:09.000000000", + "2019-01-05T04:55:15.000000000", + "2019-01-05T04:55:48.000000000", + "2019-01-05T04:56:50.000000000", + "2019-01-05T05:00:02.000000000", + "2019-01-05T05:00:47.000000000", + "2019-01-05T05:01:17.000000000", + "2019-01-05T05:01:24.000000000", + "2019-01-05T05:03:20.000000000", + "2019-01-05T05:04:03.000000000", + "2019-01-05T05:04:53.000000000", + "2019-01-05T05:05:16.000000000", + "2019-01-05T05:05:51.000000000", + "2019-01-05T05:09:11.000000000", + "2019-01-05T05:09:26.000000000", + "2019-01-05T05:10:00.000000000", + "2019-01-05T05:11:40.000000000", + "2019-01-05T05:12:04.000000000", + "2019-01-05T05:13:02.000000000", + "2019-01-05T05:14:08.000000000", + "2019-01-05T05:14:28.000000000", + "2019-01-05T05:14:45.000000000", + "2019-01-05T05:15:40.000000000", + "2019-01-05T05:17:11.000000000", + "2019-01-05T05:20:29.000000000", + "2019-01-05T05:22:57.000000000", + "2019-01-05T05:23:16.000000000", + "2019-01-05T05:24:38.000000000", + "2019-01-05T05:24:42.000000000", + "2019-01-05T05:24:43.000000000", + "2019-01-05T05:26:13.000000000", + "2019-01-05T05:26:16.000000000", + "2019-01-05T05:26:22.000000000", + "2019-01-05T05:26:52.000000000", + "2019-01-05T05:26:57.000000000", + "2019-01-05T05:27:51.000000000", + "2019-01-05T05:28:33.000000000", + "2019-01-05T05:28:46.000000000", + "2019-01-05T05:28:58.000000000", + "2019-01-05T05:29:22.000000000", + "2019-01-05T05:29:32.000000000", + "2019-01-05T05:29:55.000000000", + "2019-01-05T05:30:25.000000000", + "2019-01-05T05:30:38.000000000", + "2019-01-05T05:31:38.000000000", + "2019-01-05T05:32:49.000000000", + "2019-01-05T05:33:35.000000000", + "2019-01-05T05:34:25.000000000", + "2019-01-05T05:35:27.000000000", + "2019-01-05T05:35:40.000000000", + "2019-01-05T05:37:11.000000000", + "2019-01-05T05:37:32.000000000", + "2019-01-05T05:37:51.000000000", + "2019-01-05T05:37:57.000000000", + "2019-01-05T05:41:00.000000000", + "2019-01-05T05:42:17.000000000", + "2019-01-05T05:42:31.000000000", + "2019-01-05T05:44:39.000000000", + "2019-01-05T05:46:52.000000000", + "2019-01-05T05:48:03.000000000", + "2019-01-05T05:48:40.000000000", + "2019-01-05T05:52:28.000000000", + "2019-01-05T05:53:13.000000000", + "2019-01-05T05:56:56.000000000", + "2019-01-05T05:58:57.000000000", + "2019-01-05T05:59:04.000000000", + "2019-01-05T05:59:53.000000000", + "2019-01-05T06:00:17.000000000", + "2019-01-05T06:01:29.000000000", + "2019-01-05T06:01:49.000000000", + "2019-01-05T06:03:12.000000000", + "2019-01-05T06:04:49.000000000", + "2019-01-05T06:04:56.000000000", + "2019-01-05T06:05:27.000000000", + "2019-01-05T06:05:42.000000000", + "2019-01-05T06:06:00.000000000", + "2019-01-05T06:06:02.000000000", + "2019-01-05T06:06:08.000000000", + "2019-01-05T06:07:49.000000000", + "2019-01-05T06:08:03.000000000", + "2019-01-05T06:08:05.000000000", + "2019-01-05T06:08:35.000000000", + "2019-01-05T06:08:39.000000000", + "2019-01-05T06:08:56.000000000", + "2019-01-05T06:09:55.000000000", + "2019-01-05T06:10:24.000000000", + "2019-01-05T06:12:06.000000000", + "2019-01-05T06:12:14.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:27.000000000", + "2019-01-05T06:13:45.000000000", + "2019-01-05T06:13:50.000000000", + "2019-01-05T06:13:53.000000000", + "2019-01-05T06:14:52.000000000", + "2019-01-05T06:15:27.000000000", + "2019-01-05T06:18:29.000000000", + "2019-01-05T06:18:30.000000000", + "2019-01-05T06:18:47.000000000", + "2019-01-05T06:19:20.000000000", + "2019-01-05T06:20:11.000000000", + "2019-01-05T06:22:49.000000000", + "2019-01-05T06:23:19.000000000", + "2019-01-05T06:27:07.000000000", + "2019-01-05T06:31:26.000000000", + "2019-01-05T06:31:49.000000000", + "2019-01-05T06:32:17.000000000", + "2019-01-05T06:34:29.000000000", + "2019-01-05T06:34:31.000000000", + "2019-01-05T06:34:32.000000000", + "2019-01-05T06:36:45.000000000", + "2019-01-05T06:38:06.000000000", + "2019-01-05T06:39:46.000000000", + "2019-01-05T06:40:46.000000000", + "2019-01-05T06:42:00.000000000", + "2019-01-05T06:42:07.000000000", + "2019-01-05T06:42:55.000000000", + "2019-01-05T06:44:59.000000000", + "2019-01-05T06:46:17.000000000", + "2019-01-05T06:46:43.000000000", + "2019-01-05T06:47:01.000000000", + "2019-01-05T06:47:02.000000000", + "2019-01-05T06:48:46.000000000", + "2019-01-05T06:52:19.000000000", + "2019-01-05T06:53:16.000000000", + "2019-01-05T06:54:33.000000000", + "2019-01-05T06:55:37.000000000", + "2019-01-05T06:58:09.000000000", + "2019-01-05T06:58:41.000000000", + "2019-01-05T06:58:56.000000000", + "2019-01-05T06:59:50.000000000", + "2019-01-05T07:00:23.000000000", + "2019-01-05T07:00:41.000000000", + "2019-01-05T07:01:36.000000000", + "2019-01-05T07:02:14.000000000", + "2019-01-05T07:02:47.000000000", + "2019-01-05T07:03:31.000000000", + "2019-01-05T07:05:04.000000000", + "2019-01-05T07:05:23.000000000", + "2019-01-05T07:06:00.000000000", + "2019-01-05T07:06:55.000000000", + "2019-01-05T07:07:05.000000000", + "2019-01-05T07:07:33.000000000", + "2019-01-05T07:09:43.000000000", + "2019-01-05T07:10:03.000000000", + "2019-01-05T07:11:16.000000000", + "2019-01-05T07:12:00.000000000", + "2019-01-05T07:16:06.000000000", + "2019-01-05T07:16:08.000000000", + "2019-01-05T07:16:21.000000000", + "2019-01-05T07:16:33.000000000", + "2019-01-05T07:17:29.000000000", + "2019-01-05T07:18:16.000000000", + "2019-01-05T07:18:46.000000000", + "2019-01-05T07:19:23.000000000", + "2019-01-05T07:19:33.000000000", + "2019-01-05T07:19:38.000000000", + "2019-01-05T07:24:43.000000000", + "2019-01-05T07:26:05.000000000", + "2019-01-05T07:26:44.000000000", + "2019-01-05T07:28:40.000000000", + "2019-01-05T07:30:07.000000000", + "2019-01-05T07:30:52.000000000", + "2019-01-05T07:30:54.000000000", + "2019-01-05T07:31:25.000000000", + "2019-01-05T07:33:24.000000000", + "2019-01-05T07:33:28.000000000", + "2019-01-05T07:35:08.000000000", + "2019-01-05T07:35:11.000000000", + "2019-01-05T07:36:27.000000000", + "2019-01-05T07:40:03.000000000", + "2019-01-05T07:41:28.000000000", + "2019-01-05T07:43:13.000000000", + "2019-01-05T07:43:17.000000000", + "2019-01-05T07:44:12.000000000", + "2019-01-05T07:44:27.000000000", + "2019-01-05T07:44:29.000000000", + "2019-01-05T07:45:27.000000000", + "2019-01-05T07:47:05.000000000", + "2019-01-05T07:48:07.000000000", + "2019-01-05T07:48:38.000000000", + "2019-01-05T07:50:33.000000000", + "2019-01-05T07:50:54.000000000", + "2019-01-05T07:51:23.000000000", + "2019-01-05T07:52:54.000000000", + "2019-01-05T07:54:56.000000000", + "2019-01-05T07:56:05.000000000", + "2019-01-05T07:58:29.000000000", + "2019-01-05T08:02:46.000000000", + "2019-01-05T08:03:24.000000000", + "2019-01-05T08:05:15.000000000", + "2019-01-05T08:05:23.000000000", + "2019-01-05T08:05:40.000000000", + "2019-01-05T08:09:18.000000000", + "2019-01-05T08:09:51.000000000", + "2019-01-05T08:10:01.000000000", + "2019-01-05T08:10:54.000000000", + "2019-01-05T08:11:45.000000000", + "2019-01-05T08:12:13.000000000", + "2019-01-05T08:19:00.000000000", + "2019-01-05T08:20:14.000000000", + "2019-01-05T08:21:28.000000000", + "2019-01-05T08:21:42.000000000", + "2019-01-05T08:23:14.000000000", + "2019-01-05T08:23:18.000000000", + "2019-01-05T08:23:49.000000000", + "2019-01-05T08:23:54.000000000", + "2019-01-05T08:24:43.000000000", + "2019-01-05T08:26:36.000000000", + "2019-01-05T08:26:59.000000000", + "2019-01-05T08:29:43.000000000", + "2019-01-05T08:30:11.000000000", + "2019-01-05T08:30:32.000000000", + "2019-01-05T08:30:59.000000000", + "2019-01-05T08:31:48.000000000", + "2019-01-05T08:32:44.000000000", + "2019-01-05T08:33:29.000000000", + "2019-01-05T08:34:33.000000000", + "2019-01-05T08:39:10.000000000", + "2019-01-05T08:39:12.000000000", + "2019-01-05T08:41:13.000000000", + "2019-01-05T08:42:59.000000000", + "2019-01-05T08:44:04.000000000", + "2019-01-05T08:45:03.000000000", + "2019-01-05T08:45:35.000000000", + "2019-01-05T08:45:50.000000000", + "2019-01-05T08:45:58.000000000", + "2019-01-05T08:46:39.000000000", + "2019-01-05T08:48:02.000000000", + "2019-01-05T08:50:02.000000000", + "2019-01-05T08:50:41.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:32.000000000", + "2019-01-05T08:51:40.000000000", + "2019-01-05T08:51:44.000000000", + "2019-01-05T08:51:48.000000000", + "2019-01-05T08:52:16.000000000", + "2019-01-05T08:54:00.000000000", + "2019-01-05T08:54:01.000000000", + "2019-01-05T08:54:16.000000000", + "2019-01-05T08:55:01.000000000", + "2019-01-05T08:56:43.000000000", + "2019-01-05T08:59:31.000000000", + "2019-01-05T09:00:01.000000000", + "2019-01-05T09:00:14.000000000", + "2019-01-05T09:00:39.000000000", + "2019-01-05T09:00:44.000000000", + "2019-01-05T09:01:34.000000000", + "2019-01-05T09:02:23.000000000", + "2019-01-05T09:02:51.000000000", + "2019-01-05T09:03:01.000000000", + "2019-01-05T09:03:28.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:06:21.000000000", + "2019-01-05T09:07:52.000000000", + "2019-01-05T09:09:37.000000000", + "2019-01-05T09:10:12.000000000", + "2019-01-05T09:10:13.000000000", + "2019-01-05T09:10:48.000000000", + "2019-01-05T09:11:06.000000000", + "2019-01-05T09:11:13.000000000", + "2019-01-05T09:11:44.000000000", + "2019-01-05T09:14:18.000000000", + "2019-01-05T09:14:45.000000000", + "2019-01-05T09:15:15.000000000", + "2019-01-05T09:16:09.000000000", + "2019-01-05T09:16:33.000000000", + "2019-01-05T09:18:54.000000000", + "2019-01-05T09:21:45.000000000", + "2019-01-05T09:21:46.000000000", + "2019-01-05T09:26:32.000000000", + "2019-01-05T09:27:01.000000000", + "2019-01-05T09:27:04.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:54.000000000", + "2019-01-05T09:31:27.000000000", + "2019-01-05T09:31:47.000000000", + "2019-01-05T09:32:29.000000000", + "2019-01-05T09:36:18.000000000", + "2019-01-05T09:38:59.000000000", + "2019-01-05T09:39:59.000000000", + "2019-01-05T09:40:16.000000000", + "2019-01-05T09:41:01.000000000", + "2019-01-05T09:41:12.000000000", + "2019-01-05T09:41:21.000000000", + "2019-01-05T09:43:09.000000000", + "2019-01-05T09:43:11.000000000", + "2019-01-05T09:43:21.000000000", + "2019-01-05T09:45:42.000000000", + "2019-01-05T09:45:44.000000000", + "2019-01-05T09:46:38.000000000", + "2019-01-05T09:47:12.000000000", + "2019-01-05T09:47:49.000000000", + "2019-01-05T09:49:35.000000000", + "2019-01-05T09:51:37.000000000", + "2019-01-05T09:52:25.000000000", + "2019-01-05T09:52:35.000000000", + "2019-01-05T09:52:46.000000000", + "2019-01-05T09:55:58.000000000", + "2019-01-05T09:56:50.000000000", + "2019-01-05T09:57:50.000000000", + "2019-01-05T09:58:32.000000000", + "2019-01-05T10:00:49.000000000", + "2019-01-05T10:01:57.000000000", + "2019-01-05T10:03:00.000000000", + "2019-01-05T10:03:58.000000000", + "2019-01-05T10:04:18.000000000", + "2019-01-05T10:04:20.000000000", + "2019-01-05T10:04:40.000000000", + "2019-01-05T10:04:46.000000000", + "2019-01-05T10:05:09.000000000", + "2019-01-05T10:07:15.000000000", + "2019-01-05T10:08:40.000000000", + "2019-01-05T10:09:25.000000000", + "2019-01-05T10:10:13.000000000", + "2019-01-05T10:10:38.000000000", + "2019-01-05T10:10:47.000000000", + "2019-01-05T10:13:11.000000000", + "2019-01-05T10:14:09.000000000", + "2019-01-05T10:14:55.000000000", + "2019-01-05T10:15:50.000000000", + "2019-01-05T10:15:59.000000000", + "2019-01-05T10:17:41.000000000", + "2019-01-05T10:19:48.000000000", + "2019-01-05T10:20:54.000000000", + "2019-01-05T10:23:50.000000000", + "2019-01-05T10:24:04.000000000", + "2019-01-05T10:24:19.000000000", + "2019-01-05T10:24:55.000000000", + "2019-01-05T10:25:19.000000000", + "2019-01-05T10:25:48.000000000", + "2019-01-05T10:26:03.000000000", + "2019-01-05T10:26:50.000000000", + "2019-01-05T10:27:49.000000000", + "2019-01-05T10:27:50.000000000", + "2019-01-05T10:27:59.000000000", + "2019-01-05T10:29:53.000000000", + "2019-01-05T10:30:33.000000000", + "2019-01-05T10:30:39.000000000", + "2019-01-05T10:31:36.000000000", + "2019-01-05T10:32:28.000000000", + "2019-01-05T10:34:24.000000000", + "2019-01-05T10:36:04.000000000", + "2019-01-05T10:36:19.000000000", + "2019-01-05T10:37:25.000000000", + "2019-01-05T10:42:07.000000000", + "2019-01-05T10:42:41.000000000", + "2019-01-05T10:43:19.000000000", + "2019-01-05T10:46:38.000000000", + "2019-01-05T10:47:14.000000000", + "2019-01-05T10:47:58.000000000", + "2019-01-05T10:48:45.000000000", + "2019-01-05T10:49:17.000000000", + "2019-01-05T10:49:23.000000000", + "2019-01-05T10:49:31.000000000", + "2019-01-05T10:50:36.000000000", + "2019-01-05T10:52:18.000000000", + "2019-01-05T10:52:25.000000000", + "2019-01-05T10:53:13.000000000", + "2019-01-05T10:53:23.000000000", + "2019-01-05T10:55:48.000000000", + "2019-01-05T10:56:07.000000000", + "2019-01-05T10:58:09.000000000", + "2019-01-05T10:59:42.000000000", + "2019-01-05T11:01:20.000000000", + "2019-01-05T11:04:04.000000000", + "2019-01-05T11:04:36.000000000", + "2019-01-05T11:05:42.000000000", + "2019-01-05T11:06:45.000000000", + "2019-01-05T11:08:54.000000000", + "2019-01-05T11:10:42.000000000", + "2019-01-05T11:11:29.000000000", + "2019-01-05T11:11:47.000000000", + "2019-01-05T11:12:32.000000000", + "2019-01-05T11:13:37.000000000", + "2019-01-05T11:13:56.000000000", + "2019-01-05T11:14:17.000000000", + "2019-01-05T11:15:40.000000000", + "2019-01-05T11:16:35.000000000", + "2019-01-05T11:16:58.000000000", + "2019-01-05T11:16:59.000000000", + "2019-01-05T11:18:05.000000000", + "2019-01-05T11:19:34.000000000", + "2019-01-05T11:20:17.000000000", + "2019-01-05T11:21:28.000000000", + "2019-01-05T11:21:45.000000000", + "2019-01-05T11:22:02.000000000", + "2019-01-05T11:23:01.000000000", + "2019-01-05T11:25:51.000000000", + "2019-01-05T11:26:36.000000000", + "2019-01-05T11:27:34.000000000", + "2019-01-05T11:28:52.000000000", + "2019-01-05T11:29:44.000000000", + "2019-01-05T11:31:11.000000000", + "2019-01-05T11:31:23.000000000", + "2019-01-05T11:34:17.000000000", + "2019-01-05T11:37:04.000000000", + "2019-01-05T11:37:41.000000000", + "2019-01-05T11:38:55.000000000", + "2019-01-05T11:40:47.000000000", + "2019-01-05T11:43:38.000000000", + "2019-01-05T11:45:00.000000000", + "2019-01-05T11:45:16.000000000", + "2019-01-05T11:45:39.000000000", + "2019-01-05T11:46:08.000000000", + "2019-01-05T11:50:09.000000000", + "2019-01-05T11:51:21.000000000", + "2019-01-05T11:51:32.000000000", + "2019-01-05T11:52:21.000000000", + "2019-01-05T11:53:21.000000000", + "2019-01-05T11:53:36.000000000", + "2019-01-05T11:54:24.000000000", + "2019-01-05T11:55:37.000000000", + "2019-01-05T11:56:07.000000000", + "2019-01-05T11:56:20.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:30.000000000", + "2019-01-05T11:57:28.000000000", + "2019-01-05T11:57:45.000000000", + "2019-01-05T12:00:06.000000000", + "2019-01-05T12:01:10.000000000", + "2019-01-05T12:01:19.000000000", + "2019-01-05T12:01:30.000000000", + "2019-01-05T12:02:11.000000000", + "2019-01-05T12:02:35.000000000", + "2019-01-05T12:03:42.000000000", + "2019-01-05T12:04:12.000000000", + "2019-01-05T12:05:14.000000000", + "2019-01-05T12:06:52.000000000", + "2019-01-05T12:07:21.000000000", + "2019-01-05T12:07:45.000000000", + "2019-01-05T12:08:20.000000000", + "2019-01-05T12:08:37.000000000", + "2019-01-05T12:11:11.000000000", + "2019-01-05T12:12:31.000000000", + "2019-01-05T12:12:52.000000000", + "2019-01-05T12:12:59.000000000", + "2019-01-05T12:14:52.000000000", + "2019-01-05T12:15:15.000000000", + "2019-01-05T12:16:40.000000000", + "2019-01-05T12:17:14.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:18:22.000000000", + "2019-01-05T12:18:59.000000000", + "2019-01-05T12:19:47.000000000", + "2019-01-05T12:20:16.000000000", + "2019-01-05T12:20:42.000000000", + "2019-01-05T12:22:24.000000000", + "2019-01-05T12:23:31.000000000", + "2019-01-05T12:26:54.000000000", + "2019-01-05T12:27:01.000000000", + "2019-01-05T12:28:06.000000000", + "2019-01-05T12:29:46.000000000", + "2019-01-05T12:30:26.000000000", + "2019-01-05T12:30:50.000000000", + "2019-01-05T12:31:50.000000000", + "2019-01-05T12:32:21.000000000", + "2019-01-05T12:32:44.000000000", + "2019-01-05T12:32:48.000000000", + "2019-01-05T12:34:51.000000000", + "2019-01-05T12:35:28.000000000", + "2019-01-05T12:35:31.000000000", + "2019-01-05T12:38:55.000000000", + "2019-01-05T12:40:00.000000000", + "2019-01-05T12:40:12.000000000", + "2019-01-05T12:40:50.000000000", + "2019-01-05T12:41:47.000000000", + "2019-01-05T12:42:16.000000000", + "2019-01-05T12:43:49.000000000", + "2019-01-05T12:44:11.000000000", + "2019-01-05T12:47:57.000000000", + "2019-01-05T12:48:09.000000000", + "2019-01-05T12:48:17.000000000", + "2019-01-05T12:49:23.000000000", + "2019-01-05T12:49:30.000000000", + "2019-01-05T12:49:43.000000000", + "2019-01-05T12:50:08.000000000", + "2019-01-05T12:54:28.000000000", + "2019-01-05T12:56:26.000000000", + "2019-01-05T12:58:43.000000000", + "2019-01-05T12:58:49.000000000", + "2019-01-05T12:59:48.000000000", + "2019-01-05T13:02:39.000000000", + "2019-01-05T13:02:45.000000000", + "2019-01-05T13:03:29.000000000", + "2019-01-05T13:03:44.000000000", + "2019-01-05T13:03:55.000000000", + "2019-01-05T13:05:06.000000000", + "2019-01-05T13:05:38.000000000", + "2019-01-05T13:06:16.000000000", + "2019-01-05T13:07:54.000000000", + "2019-01-05T13:08:00.000000000", + "2019-01-05T13:08:21.000000000", + "2019-01-05T13:10:46.000000000", + "2019-01-05T13:12:20.000000000", + "2019-01-05T13:13:00.000000000", + "2019-01-05T13:13:51.000000000", + "2019-01-05T13:15:10.000000000", + "2019-01-05T13:15:16.000000000", + "2019-01-05T13:15:30.000000000", + "2019-01-05T13:16:29.000000000", + "2019-01-05T13:16:46.000000000", + "2019-01-05T13:17:04.000000000", + "2019-01-05T13:18:59.000000000", + "2019-01-05T13:19:49.000000000", + "2019-01-05T13:22:00.000000000", + "2019-01-05T13:22:09.000000000", + "2019-01-05T13:23:00.000000000", + "2019-01-05T13:23:57.000000000", + "2019-01-05T13:24:00.000000000", + "2019-01-05T13:24:16.000000000", + "2019-01-05T13:24:33.000000000", + "2019-01-05T13:26:24.000000000", + "2019-01-05T13:26:28.000000000", + "2019-01-05T13:27:27.000000000", + "2019-01-05T13:27:35.000000000", + "2019-01-05T13:29:55.000000000", + "2019-01-05T13:30:34.000000000", + "2019-01-05T13:30:36.000000000", + "2019-01-05T13:32:15.000000000", + "2019-01-05T13:32:47.000000000", + "2019-01-05T13:32:58.000000000", + "2019-01-05T13:33:02.000000000", + "2019-01-05T13:33:28.000000000", + "2019-01-05T13:34:33.000000000", + "2019-01-05T13:35:35.000000000", + "2019-01-05T13:35:38.000000000", + "2019-01-05T13:35:39.000000000", + "2019-01-05T13:35:45.000000000", + "2019-01-05T13:37:07.000000000", + "2019-01-05T13:38:28.000000000", + "2019-01-05T13:39:11.000000000", + "2019-01-05T13:39:57.000000000", + "2019-01-05T13:40:28.000000000", + "2019-01-05T13:40:56.000000000", + "2019-01-05T13:41:23.000000000", + "2019-01-05T13:41:52.000000000", + "2019-01-05T13:42:37.000000000", + "2019-01-05T13:43:23.000000000", + "2019-01-05T13:43:29.000000000", + "2019-01-05T13:46:38.000000000", + "2019-01-05T13:47:29.000000000", + "2019-01-05T13:47:45.000000000", + "2019-01-05T13:48:57.000000000", + "2019-01-05T13:51:05.000000000", + "2019-01-05T13:51:50.000000000", + "2019-01-05T13:51:53.000000000", + "2019-01-05T13:52:09.000000000", + "2019-01-05T13:52:22.000000000", + "2019-01-05T13:52:50.000000000", + "2019-01-05T13:54:07.000000000", + "2019-01-05T13:54:16.000000000", + "2019-01-05T13:54:22.000000000", + "2019-01-05T13:54:37.000000000", + "2019-01-05T13:55:18.000000000", + "2019-01-05T13:55:20.000000000", + "2019-01-05T13:56:15.000000000", + "2019-01-05T13:57:26.000000000", + "2019-01-05T13:57:50.000000000", + "2019-01-05T13:58:19.000000000", + "2019-01-05T13:58:51.000000000", + "2019-01-05T14:03:07.000000000", + "2019-01-05T14:04:36.000000000", + "2019-01-05T14:05:43.000000000", + "2019-01-05T14:06:06.000000000", + "2019-01-05T14:06:35.000000000", + "2019-01-05T14:08:23.000000000", + "2019-01-05T14:10:11.000000000", + "2019-01-05T14:11:16.000000000", + "2019-01-05T14:12:36.000000000", + "2019-01-05T14:15:12.000000000", + "2019-01-05T14:17:14.000000000", + "2019-01-05T14:18:08.000000000", + "2019-01-05T14:19:49.000000000", + "2019-01-05T14:20:48.000000000", + "2019-01-05T14:21:20.000000000", + "2019-01-05T14:21:46.000000000", + "2019-01-05T14:22:46.000000000", + "2019-01-05T14:23:12.000000000", + "2019-01-05T14:24:26.000000000", + "2019-01-05T14:25:24.000000000", + "2019-01-05T14:28:45.000000000", + "2019-01-05T14:30:34.000000000", + "2019-01-05T14:33:48.000000000", + "2019-01-05T14:33:52.000000000", + "2019-01-05T14:34:18.000000000", + "2019-01-05T14:34:34.000000000", + "2019-01-05T14:35:38.000000000", + "2019-01-05T14:37:31.000000000", + "2019-01-05T14:39:14.000000000", + "2019-01-05T14:39:49.000000000", + "2019-01-05T14:42:43.000000000", + "2019-01-05T14:43:16.000000000", + "2019-01-05T14:44:08.000000000", + "2019-01-05T14:44:53.000000000", + "2019-01-05T14:45:32.000000000", + "2019-01-05T14:45:46.000000000", + "2019-01-05T14:45:57.000000000", + "2019-01-05T14:47:23.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:52:38.000000000", + "2019-01-05T14:54:17.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:56:35.000000000", + "2019-01-05T14:57:01.000000000", + "2019-01-05T14:57:15.000000000", + "2019-01-05T14:57:51.000000000", + "2019-01-05T14:58:46.000000000", + "2019-01-05T15:00:29.000000000", + "2019-01-05T15:01:48.000000000", + "2019-01-05T15:06:00.000000000", + "2019-01-05T15:06:24.000000000", + "2019-01-05T15:07:10.000000000", + "2019-01-05T15:08:27.000000000", + "2019-01-05T15:08:30.000000000", + "2019-01-05T15:09:55.000000000", + "2019-01-05T15:11:17.000000000", + "2019-01-05T15:11:22.000000000", + "2019-01-05T15:11:34.000000000", + "2019-01-05T15:12:06.000000000", + "2019-01-05T15:14:40.000000000", + "2019-01-05T15:15:51.000000000", + "2019-01-05T15:18:48.000000000", + "2019-01-05T15:18:57.000000000", + "2019-01-05T15:21:47.000000000", + "2019-01-05T15:22:34.000000000", + "2019-01-05T15:23:18.000000000", + "2019-01-05T15:23:33.000000000", + "2019-01-05T15:24:51.000000000", + "2019-01-05T15:25:11.000000000", + "2019-01-05T15:25:13.000000000", + "2019-01-05T15:26:21.000000000", + "2019-01-05T15:27:38.000000000", + "2019-01-05T15:29:24.000000000", + "2019-01-05T15:30:13.000000000", + "2019-01-05T15:32:27.000000000", + "2019-01-05T15:32:44.000000000", + "2019-01-05T15:33:02.000000000", + "2019-01-05T15:33:04.000000000", + "2019-01-05T15:34:20.000000000", + "2019-01-05T15:36:13.000000000", + "2019-01-05T15:36:35.000000000", + "2019-01-05T15:37:06.000000000", + "2019-01-05T15:39:03.000000000", + "2019-01-05T15:40:03.000000000", + "2019-01-05T15:41:29.000000000", + "2019-01-05T15:41:46.000000000", + "2019-01-05T15:42:17.000000000", + "2019-01-05T15:43:02.000000000", + "2019-01-05T15:43:13.000000000", + "2019-01-05T15:44:14.000000000", + "2019-01-05T15:44:58.000000000", + "2019-01-05T15:46:11.000000000", + "2019-01-05T15:47:11.000000000", + "2019-01-05T15:49:20.000000000", + "2019-01-05T15:50:09.000000000", + "2019-01-05T15:53:01.000000000", + "2019-01-05T15:54:28.000000000", + "2019-01-05T15:54:41.000000000", + "2019-01-05T15:56:30.000000000", + "2019-01-05T15:56:32.000000000", + "2019-01-05T15:58:40.000000000", + "2019-01-05T15:58:41.000000000", + "2019-01-05T15:58:53.000000000", + "2019-01-05T16:01:23.000000000", + "2019-01-05T16:01:54.000000000", + "2019-01-05T16:01:57.000000000", + "2019-01-05T16:03:09.000000000", + "2019-01-05T16:04:24.000000000", + "2019-01-05T16:05:37.000000000", + "2019-01-05T16:05:46.000000000", + "2019-01-05T16:06:14.000000000", + "2019-01-05T16:07:23.000000000", + "2019-01-05T16:09:09.000000000", + "2019-01-05T16:11:02.000000000", + "2019-01-05T16:12:16.000000000", + "2019-01-05T16:12:45.000000000", + "2019-01-05T16:13:04.000000000", + "2019-01-05T16:14:43.000000000", + "2019-01-05T16:15:12.000000000", + "2019-01-05T16:15:22.000000000", + "2019-01-05T16:16:39.000000000", + "2019-01-05T16:16:46.000000000", + "2019-01-05T16:17:36.000000000", + "2019-01-05T16:18:52.000000000", + "2019-01-05T16:19:34.000000000", + "2019-01-05T16:19:37.000000000", + "2019-01-05T16:20:47.000000000", + "2019-01-05T16:21:30.000000000", + "2019-01-05T16:22:05.000000000", + "2019-01-05T16:22:45.000000000", + "2019-01-05T16:22:56.000000000", + "2019-01-05T16:23:10.000000000", + "2019-01-05T16:23:17.000000000", + "2019-01-05T16:25:00.000000000", + "2019-01-05T16:27:05.000000000", + "2019-01-05T16:28:48.000000000", + "2019-01-05T16:29:09.000000000", + "2019-01-05T16:31:14.000000000", + "2019-01-05T16:31:42.000000000", + "2019-01-05T16:32:38.000000000", + "2019-01-05T16:33:22.000000000", + "2019-01-05T16:36:05.000000000", + "2019-01-05T16:36:20.000000000", + "2019-01-05T16:39:53.000000000", + "2019-01-05T16:40:01.000000000", + "2019-01-05T16:40:06.000000000", + "2019-01-05T16:40:57.000000000", + "2019-01-05T16:41:59.000000000", + "2019-01-05T16:44:01.000000000", + "2019-01-05T16:45:06.000000000", + "2019-01-05T16:46:00.000000000", + "2019-01-05T16:46:01.000000000", + "2019-01-05T16:46:09.000000000", + "2019-01-05T16:46:35.000000000", + "2019-01-05T16:47:04.000000000", + "2019-01-05T16:47:22.000000000", + "2019-01-05T16:47:24.000000000", + "2019-01-05T16:48:32.000000000", + "2019-01-05T16:49:31.000000000", + "2019-01-05T16:50:36.000000000", + "2019-01-05T16:51:44.000000000", + "2019-01-05T16:52:17.000000000", + "2019-01-05T16:52:55.000000000", + "2019-01-05T16:53:22.000000000", + "2019-01-05T16:54:32.000000000", + "2019-01-05T16:55:41.000000000", + "2019-01-05T16:56:15.000000000", + "2019-01-05T16:57:32.000000000", + "2019-01-05T16:59:21.000000000", + "2019-01-05T16:59:53.000000000", + "2019-01-05T17:00:55.000000000", + "2019-01-05T17:01:11.000000000", + "2019-01-05T17:03:43.000000000", + "2019-01-05T17:04:31.000000000", + "2019-01-05T17:04:40.000000000", + "2019-01-05T17:05:41.000000000", + "2019-01-05T17:07:05.000000000", + "2019-01-05T17:07:23.000000000", + "2019-01-05T17:08:16.000000000", + "2019-01-05T17:08:59.000000000", + "2019-01-05T17:11:17.000000000", + "2019-01-05T17:12:56.000000000", + "2019-01-05T17:16:29.000000000", + "2019-01-05T17:17:06.000000000", + "2019-01-05T17:17:08.000000000", + "2019-01-05T17:17:26.000000000", + "2019-01-05T17:19:10.000000000", + "2019-01-05T17:19:12.000000000", + "2019-01-05T17:19:26.000000000", + "2019-01-05T17:19:45.000000000", + "2019-01-05T17:21:21.000000000", + "2019-01-05T17:23:08.000000000", + "2019-01-05T17:24:00.000000000", + "2019-01-05T17:24:34.000000000", + "2019-01-05T17:25:01.000000000", + "2019-01-05T17:27:55.000000000", + "2019-01-05T17:28:23.000000000", + "2019-01-05T17:30:30.000000000", + "2019-01-05T17:31:00.000000000", + "2019-01-05T17:32:53.000000000", + "2019-01-05T17:33:05.000000000", + "2019-01-05T17:33:15.000000000", + "2019-01-05T17:33:25.000000000", + "2019-01-05T17:33:27.000000000", + "2019-01-05T17:36:05.000000000", + "2019-01-05T17:36:54.000000000", + "2019-01-05T17:37:39.000000000", + "2019-01-05T17:38:10.000000000", + "2019-01-05T17:38:20.000000000", + "2019-01-05T17:38:50.000000000", + "2019-01-05T17:40:43.000000000", + "2019-01-05T17:40:47.000000000", + "2019-01-05T17:41:25.000000000", + "2019-01-05T17:41:38.000000000", + "2019-01-05T17:41:46.000000000", + "2019-01-05T17:42:08.000000000", + "2019-01-05T17:43:30.000000000", + "2019-01-05T17:44:27.000000000", + "2019-01-05T17:45:29.000000000", + "2019-01-05T17:45:43.000000000", + "2019-01-05T17:46:17.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:49:40.000000000", + "2019-01-05T17:51:06.000000000", + "2019-01-05T17:51:50.000000000", + "2019-01-05T17:52:35.000000000", + "2019-01-05T17:52:53.000000000", + "2019-01-05T17:53:08.000000000", + "2019-01-05T17:53:29.000000000", + "2019-01-05T17:53:37.000000000", + "2019-01-05T17:53:38.000000000", + "2019-01-05T17:54:09.000000000", + "2019-01-05T17:54:32.000000000", + "2019-01-05T17:54:45.000000000", + "2019-01-05T17:55:01.000000000", + "2019-01-05T17:56:32.000000000", + "2019-01-05T17:57:38.000000000", + "2019-01-05T17:58:57.000000000", + "2019-01-05T17:59:19.000000000", + "2019-01-05T18:00:43.000000000", + "2019-01-05T18:01:47.000000000", + "2019-01-05T18:03:03.000000000", + "2019-01-05T18:04:05.000000000", + "2019-01-05T18:05:10.000000000", + "2019-01-05T18:06:06.000000000", + "2019-01-05T18:06:13.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:24.000000000", + "2019-01-05T18:06:48.000000000", + "2019-01-05T18:07:16.000000000", + "2019-01-05T18:10:41.000000000", + "2019-01-05T18:12:52.000000000", + "2019-01-05T18:13:29.000000000", + "2019-01-05T18:13:40.000000000", + "2019-01-05T18:14:58.000000000", + "2019-01-05T18:15:26.000000000", + "2019-01-05T18:16:15.000000000", + "2019-01-05T18:19:02.000000000", + "2019-01-05T18:21:11.000000000", + "2019-01-05T18:25:41.000000000", + "2019-01-05T18:25:43.000000000", + "2019-01-05T18:27:56.000000000", + "2019-01-05T18:28:23.000000000", + "2019-01-05T18:30:09.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:31:26.000000000", + "2019-01-05T18:31:53.000000000", + "2019-01-05T18:32:24.000000000", + "2019-01-05T18:36:09.000000000", + "2019-01-05T18:37:29.000000000", + "2019-01-05T18:37:34.000000000", + "2019-01-05T18:37:59.000000000", + "2019-01-05T18:39:19.000000000", + "2019-01-05T18:41:42.000000000", + "2019-01-05T18:42:17.000000000", + "2019-01-05T18:42:30.000000000", + "2019-01-05T18:43:12.000000000", + "2019-01-05T18:45:40.000000000", + "2019-01-05T18:46:48.000000000", + "2019-01-05T18:47:14.000000000", + "2019-01-05T18:48:27.000000000", + "2019-01-05T18:48:54.000000000", + "2019-01-05T18:50:27.000000000", + "2019-01-05T18:50:50.000000000", + "2019-01-05T18:51:55.000000000", + "2019-01-05T18:52:29.000000000", + "2019-01-05T18:53:24.000000000", + "2019-01-05T18:53:41.000000000", + "2019-01-05T18:54:59.000000000", + "2019-01-05T18:55:47.000000000", + "2019-01-05T18:57:05.000000000", + "2019-01-05T18:57:42.000000000", + "2019-01-05T18:57:54.000000000", + "2019-01-05T18:59:01.000000000", + "2019-01-05T18:59:18.000000000", + "2019-01-05T19:00:48.000000000", + "2019-01-05T19:01:32.000000000", + "2019-01-05T19:01:36.000000000", + "2019-01-05T19:03:43.000000000", + "2019-01-05T19:04:14.000000000", + "2019-01-05T19:04:40.000000000", + "2019-01-05T19:05:13.000000000", + "2019-01-05T19:07:24.000000000", + "2019-01-05T19:08:11.000000000", + "2019-01-05T19:10:10.000000000", + "2019-01-05T19:11:20.000000000", + "2019-01-05T19:11:46.000000000", + "2019-01-05T19:12:15.000000000", + "2019-01-05T19:12:28.000000000", + "2019-01-05T19:13:06.000000000", + "2019-01-05T19:17:13.000000000", + "2019-01-05T19:19:01.000000000", + "2019-01-05T19:19:47.000000000", + "2019-01-05T19:20:43.000000000", + "2019-01-05T19:21:31.000000000", + "2019-01-05T19:21:53.000000000", + "2019-01-05T19:21:59.000000000", + "2019-01-05T19:22:11.000000000", + "2019-01-05T19:22:25.000000000", + "2019-01-05T19:22:30.000000000", + "2019-01-05T19:23:48.000000000", + "2019-01-05T19:25:52.000000000", + "2019-01-05T19:26:13.000000000", + "2019-01-05T19:26:18.000000000", + "2019-01-05T19:26:58.000000000", + "2019-01-05T19:28:20.000000000", + "2019-01-05T19:28:43.000000000", + "2019-01-05T19:29:16.000000000", + "2019-01-05T19:30:16.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:45.000000000", + "2019-01-05T19:30:48.000000000", + "2019-01-05T19:32:05.000000000", + "2019-01-05T19:32:13.000000000", + "2019-01-05T19:32:33.000000000", + "2019-01-05T19:33:00.000000000", + "2019-01-05T19:33:13.000000000", + "2019-01-05T19:34:00.000000000", + "2019-01-05T19:34:38.000000000", + "2019-01-05T19:36:26.000000000", + "2019-01-05T19:39:27.000000000", + "2019-01-05T19:39:43.000000000", + "2019-01-05T19:40:04.000000000", + "2019-01-05T19:40:32.000000000", + "2019-01-05T19:41:15.000000000", + "2019-01-05T19:42:03.000000000", + "2019-01-05T19:46:04.000000000", + "2019-01-05T19:46:32.000000000", + "2019-01-05T19:46:48.000000000", + "2019-01-05T19:47:57.000000000", + "2019-01-05T19:48:20.000000000", + "2019-01-05T19:49:19.000000000", + "2019-01-05T19:49:28.000000000", + "2019-01-05T19:51:03.000000000", + "2019-01-05T19:52:16.000000000", + "2019-01-05T19:52:43.000000000", + "2019-01-05T19:55:23.000000000", + "2019-01-05T19:55:24.000000000", + "2019-01-05T19:55:28.000000000", + "2019-01-05T19:56:55.000000000", + "2019-01-05T19:57:00.000000000", + "2019-01-05T19:58:34.000000000", + "2019-01-05T19:59:58.000000000", + "2019-01-05T20:00:10.000000000", + "2019-01-05T20:01:00.000000000", + "2019-01-05T20:01:08.000000000", + "2019-01-05T20:01:28.000000000", + "2019-01-05T20:05:11.000000000", + "2019-01-05T20:05:37.000000000", + "2019-01-05T20:05:42.000000000", + "2019-01-05T20:08:15.000000000", + "2019-01-05T20:09:50.000000000", + "2019-01-05T20:11:06.000000000", + "2019-01-05T20:13:14.000000000", + "2019-01-05T20:14:24.000000000", + "2019-01-05T20:16:12.000000000", + "2019-01-05T20:16:17.000000000", + "2019-01-05T20:16:29.000000000", + "2019-01-05T20:16:41.000000000", + "2019-01-05T20:17:49.000000000", + "2019-01-05T20:20:04.000000000", + "2019-01-05T20:22:07.000000000", + "2019-01-05T20:22:47.000000000", + "2019-01-05T20:29:17.000000000", + "2019-01-05T20:30:06.000000000", + "2019-01-05T20:30:32.000000000", + "2019-01-05T20:32:58.000000000", + "2019-01-05T20:34:04.000000000", + "2019-01-05T20:34:32.000000000", + "2019-01-05T20:35:13.000000000", + "2019-01-05T20:35:23.000000000", + "2019-01-05T20:36:48.000000000", + "2019-01-05T20:38:42.000000000", + "2019-01-05T20:39:36.000000000", + "2019-01-05T20:40:10.000000000", + "2019-01-05T20:40:25.000000000", + "2019-01-05T20:42:48.000000000", + "2019-01-05T20:43:54.000000000", + "2019-01-05T20:44:07.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:45:45.000000000", + "2019-01-05T20:47:22.000000000", + "2019-01-05T20:50:38.000000000", + "2019-01-05T20:50:43.000000000", + "2019-01-05T20:53:04.000000000", + "2019-01-05T20:53:13.000000000", + "2019-01-05T20:53:52.000000000", + "2019-01-05T20:54:18.000000000", + "2019-01-05T20:55:30.000000000", + "2019-01-05T20:55:41.000000000", + "2019-01-05T20:55:44.000000000", + "2019-01-05T20:56:31.000000000", + "2019-01-05T20:58:14.000000000", + "2019-01-05T20:59:14.000000000", + "2019-01-05T20:59:32.000000000", + "2019-01-05T21:00:27.000000000", + "2019-01-05T21:00:58.000000000", + "2019-01-05T21:02:10.000000000", + "2019-01-05T21:02:54.000000000", + "2019-01-05T21:03:21.000000000", + "2019-01-05T21:03:32.000000000", + "2019-01-05T21:04:40.000000000", + "2019-01-05T21:05:02.000000000", + "2019-01-05T21:05:50.000000000", + "2019-01-05T21:06:37.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:10:43.000000000", + "2019-01-05T21:11:34.000000000", + "2019-01-05T21:11:45.000000000", + "2019-01-05T21:13:02.000000000", + "2019-01-05T21:17:18.000000000", + "2019-01-05T21:18:23.000000000", + "2019-01-05T21:18:41.000000000", + "2019-01-05T21:20:50.000000000", + "2019-01-05T21:21:30.000000000", + "2019-01-05T21:22:38.000000000", + "2019-01-05T21:23:26.000000000", + "2019-01-05T21:24:39.000000000", + "2019-01-05T21:25:11.000000000", + "2019-01-05T21:26:13.000000000", + "2019-01-05T21:26:14.000000000", + "2019-01-05T21:27:12.000000000", + "2019-01-05T21:27:30.000000000", + "2019-01-05T21:27:34.000000000", + "2019-01-05T21:27:39.000000000", + "2019-01-05T21:27:53.000000000", + "2019-01-05T21:32:01.000000000", + "2019-01-05T21:32:19.000000000", + "2019-01-05T21:33:29.000000000", + "2019-01-05T21:34:30.000000000", + "2019-01-05T21:36:00.000000000", + "2019-01-05T21:36:56.000000000", + "2019-01-05T21:40:36.000000000", + "2019-01-05T21:43:36.000000000", + "2019-01-05T21:43:41.000000000", + "2019-01-05T21:45:29.000000000", + "2019-01-05T21:46:40.000000000", + "2019-01-05T21:47:28.000000000", + "2019-01-05T21:48:42.000000000", + "2019-01-05T21:49:24.000000000", + "2019-01-05T21:49:44.000000000", + "2019-01-05T21:51:35.000000000", + "2019-01-05T21:52:47.000000000", + "2019-01-05T21:53:08.000000000", + "2019-01-05T21:53:55.000000000", + "2019-01-05T21:58:22.000000000", + "2019-01-05T22:01:13.000000000", + "2019-01-05T22:01:39.000000000", + "2019-01-05T22:01:44.000000000", + "2019-01-05T22:02:40.000000000", + "2019-01-05T22:03:47.000000000", + "2019-01-05T22:04:06.000000000", + "2019-01-05T22:04:57.000000000", + "2019-01-05T22:06:30.000000000", + "2019-01-05T22:06:42.000000000", + "2019-01-05T22:06:59.000000000", + "2019-01-05T22:07:10.000000000", + "2019-01-05T22:07:35.000000000", + "2019-01-05T22:07:40.000000000", + "2019-01-05T22:08:20.000000000", + "2019-01-05T22:08:58.000000000", + "2019-01-05T22:09:18.000000000", + "2019-01-05T22:12:20.000000000", + "2019-01-05T22:14:19.000000000", + "2019-01-05T22:14:58.000000000", + "2019-01-05T22:16:38.000000000", + "2019-01-05T22:16:45.000000000", + "2019-01-05T22:18:17.000000000", + "2019-01-05T22:18:45.000000000", + "2019-01-05T22:19:30.000000000", + "2019-01-05T22:20:15.000000000", + "2019-01-05T22:20:45.000000000", + "2019-01-05T22:21:56.000000000", + "2019-01-05T22:22:20.000000000", + "2019-01-05T22:23:51.000000000", + "2019-01-05T22:24:13.000000000", + "2019-01-05T22:24:23.000000000", + "2019-01-05T22:24:35.000000000", + "2019-01-05T22:25:22.000000000", + "2019-01-05T22:26:00.000000000", + "2019-01-05T22:28:19.000000000", + "2019-01-05T22:29:12.000000000", + "2019-01-05T22:31:01.000000000", + "2019-01-05T22:33:48.000000000", + "2019-01-05T22:33:59.000000000", + "2019-01-05T22:35:28.000000000", + "2019-01-05T22:36:06.000000000", + "2019-01-05T22:37:19.000000000", + "2019-01-05T22:39:01.000000000", + "2019-01-05T22:39:38.000000000", + "2019-01-05T22:40:51.000000000", + "2019-01-05T22:41:18.000000000", + "2019-01-05T22:44:40.000000000", + "2019-01-05T22:45:43.000000000", + "2019-01-05T22:46:17.000000000", + "2019-01-05T22:47:06.000000000", + "2019-01-05T22:47:20.000000000", + "2019-01-05T22:47:37.000000000", + "2019-01-05T22:48:47.000000000", + "2019-01-05T22:51:38.000000000", + "2019-01-05T22:51:44.000000000", + "2019-01-05T22:51:47.000000000", + "2019-01-05T22:52:12.000000000", + "2019-01-05T22:53:12.000000000", + "2019-01-05T22:54:01.000000000", + "2019-01-05T22:54:38.000000000", + "2019-01-05T22:55:26.000000000", + "2019-01-05T22:56:09.000000000", + "2019-01-05T22:56:58.000000000", + "2019-01-05T23:00:25.000000000", + "2019-01-05T23:00:32.000000000", + "2019-01-05T23:00:45.000000000", + "2019-01-05T23:03:01.000000000", + "2019-01-05T23:04:36.000000000", + "2019-01-05T23:04:43.000000000", + "2019-01-05T23:05:07.000000000", + "2019-01-05T23:05:11.000000000", + "2019-01-05T23:05:50.000000000", + "2019-01-05T23:06:53.000000000", + "2019-01-05T23:12:28.000000000", + "2019-01-05T23:12:32.000000000", + "2019-01-05T23:13:17.000000000", + "2019-01-05T23:13:59.000000000", + "2019-01-05T23:18:13.000000000", + "2019-01-05T23:20:37.000000000", + "2019-01-05T23:20:43.000000000", + "2019-01-05T23:22:35.000000000", + "2019-01-05T23:23:02.000000000", + "2019-01-05T23:25:44.000000000", + "2019-01-05T23:26:21.000000000", + "2019-01-05T23:26:47.000000000", + "2019-01-05T23:28:32.000000000", + "2019-01-05T23:29:31.000000000", + "2019-01-05T23:30:07.000000000", + "2019-01-05T23:30:23.000000000", + "2019-01-05T23:33:50.000000000", + "2019-01-05T23:34:00.000000000", + "2019-01-05T23:34:06.000000000", + "2019-01-05T23:34:16.000000000", + "2019-01-05T23:35:16.000000000", + "2019-01-05T23:35:45.000000000", + "2019-01-05T23:35:58.000000000", + "2019-01-05T23:37:18.000000000", + "2019-01-05T23:37:26.000000000", + "2019-01-05T23:37:51.000000000", + "2019-01-05T23:38:29.000000000", + "2019-01-05T23:38:46.000000000", + "2019-01-05T23:38:54.000000000", + "2019-01-05T23:43:02.000000000", + "2019-01-05T23:44:12.000000000", + "2019-01-05T23:46:08.000000000", + "2019-01-05T23:46:26.000000000", + "2019-01-05T23:47:00.000000000", + "2019-01-05T23:47:30.000000000", + "2019-01-05T23:49:51.000000000", + "2019-01-05T23:50:12.000000000", + "2019-01-05T23:51:36.000000000", + "2019-01-05T23:51:45.000000000", + "2019-01-05T23:52:48.000000000", + "2019-01-05T23:53:02.000000000", + "2019-01-05T23:53:06.000000000", + "2019-01-05T23:53:58.000000000", + "2019-01-05T23:55:21.000000000", + "2019-01-05T23:55:42.000000000", + "2019-01-05T23:56:06.000000000", + "2019-01-05T23:56:31.000000000", + "2019-01-05T23:56:32.000000000", + "2019-01-05T23:57:49.000000000", + "2019-01-05T23:58:27.000000000", + "2019-01-06T00:00:34.000000000", + "2019-01-06T00:01:21.000000000", + "2019-01-06T00:02:09.000000000", + "2019-01-06T00:03:25.000000000", + "2019-01-06T00:03:29.000000000", + "2019-01-06T00:03:40.000000000", + "2019-01-06T00:03:48.000000000", + "2019-01-06T00:04:32.000000000", + "2019-01-06T00:06:14.000000000", + "2019-01-06T00:06:25.000000000", + "2019-01-06T00:06:51.000000000", + "2019-01-06T00:07:13.000000000", + "2019-01-06T00:09:22.000000000", + "2019-01-06T00:09:27.000000000", + "2019-01-06T00:09:50.000000000", + "2019-01-06T00:11:12.000000000", + "2019-01-06T00:12:35.000000000", + "2019-01-06T00:12:47.000000000", + "2019-01-06T00:13:20.000000000", + "2019-01-06T00:13:50.000000000", + "2019-01-06T00:15:37.000000000", + "2019-01-06T00:16:59.000000000", + "2019-01-06T00:17:00.000000000", + "2019-01-06T00:17:53.000000000", + "2019-01-06T00:18:47.000000000", + "2019-01-06T00:19:20.000000000", + "2019-01-06T00:23:06.000000000", + "2019-01-06T00:23:32.000000000", + "2019-01-06T00:23:49.000000000", + "2019-01-06T00:24:26.000000000", + "2019-01-06T00:24:47.000000000", + "2019-01-06T00:25:00.000000000", + "2019-01-06T00:25:32.000000000", + "2019-01-06T00:25:48.000000000", + "2019-01-06T00:26:10.000000000", + "2019-01-06T00:27:22.000000000", + "2019-01-06T00:28:27.000000000", + "2019-01-06T00:28:41.000000000", + "2019-01-06T00:28:45.000000000", + "2019-01-06T00:30:29.000000000", + "2019-01-06T00:30:43.000000000", + "2019-01-06T00:30:55.000000000", + "2019-01-06T00:31:25.000000000", + "2019-01-06T00:31:27.000000000", + "2019-01-06T00:32:39.000000000", + "2019-01-06T00:33:27.000000000", + "2019-01-06T00:35:40.000000000", + "2019-01-06T00:35:44.000000000", + "2019-01-06T00:37:48.000000000", + "2019-01-06T00:38:14.000000000", + "2019-01-06T00:39:23.000000000", + "2019-01-06T00:41:14.000000000", + "2019-01-06T00:42:34.000000000", + "2019-01-06T00:43:23.000000000", + "2019-01-06T00:43:33.000000000", + "2019-01-06T00:43:54.000000000", + "2019-01-06T00:43:55.000000000", + "2019-01-06T00:44:42.000000000", + "2019-01-06T00:46:13.000000000", + "2019-01-06T00:47:54.000000000", + "2019-01-06T00:48:28.000000000", + "2019-01-06T00:49:05.000000000", + "2019-01-06T00:50:08.000000000", + "2019-01-06T00:50:11.000000000", + "2019-01-06T00:50:49.000000000", + "2019-01-06T00:51:55.000000000", + "2019-01-06T00:53:08.000000000", + "2019-01-06T00:56:15.000000000", + "2019-01-06T00:56:26.000000000", + "2019-01-06T00:56:46.000000000", + "2019-01-06T01:01:57.000000000", + "2019-01-06T01:03:17.000000000", + "2019-01-06T01:03:23.000000000", + "2019-01-06T01:04:27.000000000", + "2019-01-06T01:04:36.000000000", + "2019-01-06T01:07:59.000000000", + "2019-01-06T01:08:12.000000000", + "2019-01-06T01:09:21.000000000", + "2019-01-06T01:09:31.000000000", + "2019-01-06T01:10:14.000000000", + "2019-01-06T01:10:17.000000000", + "2019-01-06T01:10:31.000000000", + "2019-01-06T01:11:36.000000000", + "2019-01-06T01:11:46.000000000", + "2019-01-06T01:13:27.000000000", + "2019-01-06T01:13:31.000000000", + "2019-01-06T01:15:01.000000000", + "2019-01-06T01:15:08.000000000", + "2019-01-06T01:15:26.000000000", + "2019-01-06T01:16:00.000000000", + "2019-01-06T01:16:20.000000000", + "2019-01-06T01:17:48.000000000", + "2019-01-06T01:18:03.000000000", + "2019-01-06T01:20:11.000000000", + "2019-01-06T01:21:08.000000000", + "2019-01-06T01:21:32.000000000", + "2019-01-06T01:22:04.000000000", + "2019-01-06T01:22:21.000000000", + "2019-01-06T01:22:53.000000000", + "2019-01-06T01:24:16.000000000", + "2019-01-06T01:25:09.000000000", + "2019-01-06T01:27:47.000000000", + "2019-01-06T01:28:41.000000000", + "2019-01-06T01:29:26.000000000", + "2019-01-06T01:29:45.000000000", + "2019-01-06T01:30:37.000000000", + "2019-01-06T01:33:37.000000000", + "2019-01-06T01:34:43.000000000", + "2019-01-06T01:35:38.000000000", + "2019-01-06T01:37:19.000000000", + "2019-01-06T01:37:55.000000000", + "2019-01-06T01:38:10.000000000", + "2019-01-06T01:39:50.000000000", + "2019-01-06T01:39:58.000000000", + "2019-01-06T01:40:26.000000000", + "2019-01-06T01:40:54.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:44:13.000000000", + "2019-01-06T01:47:30.000000000", + "2019-01-06T01:48:09.000000000", + "2019-01-06T01:48:17.000000000", + "2019-01-06T01:48:57.000000000", + "2019-01-06T01:50:06.000000000", + "2019-01-06T01:50:54.000000000", + "2019-01-06T01:50:56.000000000", + "2019-01-06T01:51:09.000000000", + "2019-01-06T01:52:22.000000000", + "2019-01-06T01:52:33.000000000", + "2019-01-06T01:53:59.000000000", + "2019-01-06T01:55:03.000000000", + "2019-01-06T01:56:15.000000000", + "2019-01-06T01:56:39.000000000", + "2019-01-06T01:59:24.000000000", + "2019-01-06T02:01:57.000000000", + "2019-01-06T02:04:00.000000000", + "2019-01-06T02:04:01.000000000", + "2019-01-06T02:08:57.000000000", + "2019-01-06T02:10:03.000000000", + "2019-01-06T02:11:26.000000000", + "2019-01-06T02:12:35.000000000", + "2019-01-06T02:12:44.000000000", + "2019-01-06T02:13:49.000000000", + "2019-01-06T02:16:02.000000000", + "2019-01-06T02:16:14.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:17:07.000000000", + "2019-01-06T02:17:08.000000000", + "2019-01-06T02:18:47.000000000", + "2019-01-06T02:20:53.000000000", + "2019-01-06T02:23:43.000000000", + "2019-01-06T02:26:07.000000000", + "2019-01-06T02:27:09.000000000", + "2019-01-06T02:28:36.000000000", + "2019-01-06T02:28:55.000000000", + "2019-01-06T02:30:10.000000000", + "2019-01-06T02:31:22.000000000", + "2019-01-06T02:33:14.000000000", + "2019-01-06T02:33:57.000000000", + "2019-01-06T02:35:31.000000000", + "2019-01-06T02:35:37.000000000", + "2019-01-06T02:36:52.000000000", + "2019-01-06T02:36:55.000000000", + "2019-01-06T02:37:09.000000000", + "2019-01-06T02:37:17.000000000", + "2019-01-06T02:38:06.000000000", + "2019-01-06T02:38:57.000000000", + "2019-01-06T02:40:03.000000000", + "2019-01-06T02:41:25.000000000", + "2019-01-06T02:42:02.000000000", + "2019-01-06T02:43:24.000000000", + "2019-01-06T02:43:42.000000000", + "2019-01-06T02:43:43.000000000", + "2019-01-06T02:44:05.000000000", + "2019-01-06T02:49:56.000000000", + "2019-01-06T02:52:20.000000000", + "2019-01-06T02:54:17.000000000", + "2019-01-06T02:56:03.000000000", + "2019-01-06T02:59:45.000000000", + "2019-01-06T03:00:42.000000000", + "2019-01-06T03:01:05.000000000", + "2019-01-06T03:02:26.000000000", + "2019-01-06T03:03:03.000000000", + "2019-01-06T03:05:28.000000000", + "2019-01-06T03:08:35.000000000", + "2019-01-06T03:09:25.000000000", + "2019-01-06T03:10:20.000000000", + "2019-01-06T03:11:00.000000000", + "2019-01-06T03:11:43.000000000", + "2019-01-06T03:13:29.000000000", + "2019-01-06T03:16:48.000000000", + "2019-01-06T03:16:49.000000000", + "2019-01-06T03:17:37.000000000", + "2019-01-06T03:17:39.000000000", + "2019-01-06T03:18:39.000000000", + "2019-01-06T03:18:46.000000000", + "2019-01-06T03:19:52.000000000", + "2019-01-06T03:20:08.000000000", + "2019-01-06T03:20:39.000000000", + "2019-01-06T03:20:56.000000000", + "2019-01-06T03:21:46.000000000", + "2019-01-06T03:22:48.000000000", + "2019-01-06T03:23:03.000000000", + "2019-01-06T03:24:16.000000000", + "2019-01-06T03:32:38.000000000", + "2019-01-06T03:34:06.000000000", + "2019-01-06T03:34:12.000000000", + "2019-01-06T03:34:25.000000000", + "2019-01-06T03:34:57.000000000", + "2019-01-06T03:37:39.000000000", + "2019-01-06T03:38:47.000000000", + "2019-01-06T03:39:10.000000000", + "2019-01-06T03:40:52.000000000", + "2019-01-06T03:43:35.000000000", + "2019-01-06T03:43:36.000000000", + "2019-01-06T03:44:20.000000000", + "2019-01-06T03:45:40.000000000", + "2019-01-06T03:47:29.000000000", + "2019-01-06T03:49:45.000000000", + "2019-01-06T03:50:32.000000000", + "2019-01-06T03:50:35.000000000", + "2019-01-06T03:51:56.000000000", + "2019-01-06T03:52:34.000000000", + "2019-01-06T03:54:05.000000000", + "2019-01-06T03:54:51.000000000", + "2019-01-06T03:55:31.000000000", + "2019-01-06T03:55:36.000000000", + "2019-01-06T03:58:55.000000000", + "2019-01-06T04:00:23.000000000", + "2019-01-06T04:00:33.000000000", + "2019-01-06T04:02:31.000000000", + "2019-01-06T04:02:40.000000000", + "2019-01-06T04:02:46.000000000", + "2019-01-06T04:03:30.000000000", + "2019-01-06T04:04:56.000000000", + "2019-01-06T04:06:19.000000000", + "2019-01-06T04:07:51.000000000", + "2019-01-06T04:08:22.000000000", + "2019-01-06T04:09:23.000000000", + "2019-01-06T04:10:00.000000000", + "2019-01-06T04:10:49.000000000", + "2019-01-06T04:10:57.000000000", + "2019-01-06T04:11:44.000000000", + "2019-01-06T04:11:58.000000000", + "2019-01-06T04:13:30.000000000", + "2019-01-06T04:13:37.000000000", + "2019-01-06T04:15:40.000000000", + "2019-01-06T04:17:24.000000000", + "2019-01-06T04:18:40.000000000", + "2019-01-06T04:19:16.000000000", + "2019-01-06T04:19:24.000000000", + "2019-01-06T04:20:18.000000000", + "2019-01-06T04:21:05.000000000", + "2019-01-06T04:21:06.000000000", + "2019-01-06T04:21:50.000000000", + "2019-01-06T04:22:21.000000000", + "2019-01-06T04:23:48.000000000", + "2019-01-06T04:25:23.000000000", + "2019-01-06T04:26:13.000000000", + "2019-01-06T04:27:00.000000000", + "2019-01-06T04:30:07.000000000", + "2019-01-06T04:30:48.000000000", + "2019-01-06T04:31:13.000000000", + "2019-01-06T04:32:47.000000000", + "2019-01-06T04:34:28.000000000", + "2019-01-06T04:34:29.000000000", + "2019-01-06T04:34:32.000000000", + "2019-01-06T04:35:00.000000000", + "2019-01-06T04:35:11.000000000", + "2019-01-06T04:36:03.000000000", + "2019-01-06T04:39:15.000000000", + "2019-01-06T04:41:29.000000000", + "2019-01-06T04:43:03.000000000", + "2019-01-06T04:43:25.000000000", + "2019-01-06T04:43:29.000000000", + "2019-01-06T04:43:36.000000000", + "2019-01-06T04:44:27.000000000", + "2019-01-06T04:45:27.000000000", + "2019-01-06T04:46:09.000000000", + "2019-01-06T04:49:21.000000000", + "2019-01-06T04:49:25.000000000", + "2019-01-06T04:53:14.000000000", + "2019-01-06T04:54:54.000000000", + "2019-01-06T04:55:02.000000000", + "2019-01-06T04:55:47.000000000", + "2019-01-06T04:55:57.000000000", + "2019-01-06T04:56:32.000000000", + "2019-01-06T04:57:26.000000000", + "2019-01-06T04:57:41.000000000", + "2019-01-06T04:58:06.000000000", + "2019-01-06T04:58:47.000000000", + "2019-01-06T04:59:15.000000000", + "2019-01-06T05:01:51.000000000", + "2019-01-06T05:01:52.000000000", + "2019-01-06T05:01:57.000000000", + "2019-01-06T05:02:36.000000000", + "2019-01-06T05:03:13.000000000", + "2019-01-06T05:05:18.000000000", + "2019-01-06T05:06:03.000000000", + "2019-01-06T05:07:09.000000000", + "2019-01-06T05:07:32.000000000", + "2019-01-06T05:08:38.000000000", + "2019-01-06T05:10:55.000000000", + "2019-01-06T05:11:02.000000000", + "2019-01-06T05:13:18.000000000", + "2019-01-06T05:15:21.000000000", + "2019-01-06T05:16:16.000000000", + "2019-01-06T05:17:42.000000000", + "2019-01-06T05:18:03.000000000", + "2019-01-06T05:18:39.000000000", + "2019-01-06T05:18:47.000000000", + "2019-01-06T05:23:03.000000000", + "2019-01-06T05:23:12.000000000", + "2019-01-06T05:23:29.000000000", + "2019-01-06T05:25:26.000000000", + "2019-01-06T05:25:38.000000000", + "2019-01-06T05:25:40.000000000", + "2019-01-06T05:26:42.000000000", + "2019-01-06T05:27:42.000000000", + "2019-01-06T05:28:12.000000000", + "2019-01-06T05:28:32.000000000", + "2019-01-06T05:28:37.000000000", + "2019-01-06T05:29:29.000000000", + "2019-01-06T05:31:31.000000000", + "2019-01-06T05:32:21.000000000", + "2019-01-06T05:32:33.000000000", + "2019-01-06T05:33:02.000000000", + "2019-01-06T05:33:29.000000000", + "2019-01-06T05:34:44.000000000", + "2019-01-06T05:36:11.000000000", + "2019-01-06T05:36:19.000000000", + "2019-01-06T05:38:07.000000000", + "2019-01-06T05:39:14.000000000", + "2019-01-06T05:40:21.000000000", + "2019-01-06T05:40:43.000000000", + "2019-01-06T05:41:01.000000000", + "2019-01-06T05:41:07.000000000", + "2019-01-06T05:42:16.000000000", + "2019-01-06T05:42:21.000000000", + "2019-01-06T05:42:24.000000000", + "2019-01-06T05:44:07.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:45:51.000000000", + "2019-01-06T05:45:55.000000000", + "2019-01-06T05:46:03.000000000", + "2019-01-06T05:46:34.000000000", + "2019-01-06T05:48:18.000000000", + "2019-01-06T05:51:32.000000000", + "2019-01-06T05:51:38.000000000", + "2019-01-06T05:52:56.000000000", + "2019-01-06T05:52:57.000000000", + "2019-01-06T05:58:10.000000000", + "2019-01-06T06:00:07.000000000", + "2019-01-06T06:00:23.000000000", + "2019-01-06T06:01:43.000000000", + "2019-01-06T06:03:13.000000000", + "2019-01-06T06:04:27.000000000", + "2019-01-06T06:04:48.000000000", + "2019-01-06T06:06:53.000000000", + "2019-01-06T06:06:59.000000000", + "2019-01-06T06:09:01.000000000", + "2019-01-06T06:09:08.000000000", + "2019-01-06T06:09:36.000000000", + "2019-01-06T06:09:57.000000000", + "2019-01-06T06:10:15.000000000", + "2019-01-06T06:10:55.000000000", + "2019-01-06T06:11:50.000000000", + "2019-01-06T06:11:51.000000000", + "2019-01-06T06:13:35.000000000", + "2019-01-06T06:14:18.000000000", + "2019-01-06T06:14:31.000000000", + "2019-01-06T06:15:52.000000000", + "2019-01-06T06:16:01.000000000", + "2019-01-06T06:16:45.000000000", + "2019-01-06T06:16:46.000000000", + "2019-01-06T06:18:12.000000000", + "2019-01-06T06:20:38.000000000", + "2019-01-06T06:20:40.000000000", + "2019-01-06T06:23:10.000000000", + "2019-01-06T06:23:47.000000000", + "2019-01-06T06:26:26.000000000", + "2019-01-06T06:28:01.000000000", + "2019-01-06T06:28:31.000000000", + "2019-01-06T06:28:51.000000000", + "2019-01-06T06:33:35.000000000", + "2019-01-06T06:34:39.000000000", + "2019-01-06T06:36:56.000000000", + "2019-01-06T06:37:47.000000000", + "2019-01-06T06:39:50.000000000", + "2019-01-06T06:40:14.000000000", + "2019-01-06T06:40:42.000000000", + "2019-01-06T06:41:01.000000000", + "2019-01-06T06:41:11.000000000", + "2019-01-06T06:41:20.000000000", + "2019-01-06T06:41:21.000000000", + "2019-01-06T06:41:32.000000000", + "2019-01-06T06:41:47.000000000", + "2019-01-06T06:42:03.000000000", + "2019-01-06T06:42:12.000000000", + "2019-01-06T06:45:14.000000000", + "2019-01-06T06:48:30.000000000", + "2019-01-06T06:49:57.000000000", + "2019-01-06T06:53:02.000000000", + "2019-01-06T06:53:28.000000000", + "2019-01-06T06:54:04.000000000", + "2019-01-06T06:54:16.000000000", + "2019-01-06T06:54:20.000000000", + "2019-01-06T06:57:05.000000000", + "2019-01-06T06:57:27.000000000", + "2019-01-06T06:58:31.000000000", + "2019-01-06T06:59:07.000000000", + "2019-01-06T06:59:41.000000000", + "2019-01-06T06:59:48.000000000", + "2019-01-06T07:01:23.000000000", + "2019-01-06T07:01:40.000000000", + "2019-01-06T07:01:51.000000000", + "2019-01-06T07:04:27.000000000", + "2019-01-06T07:04:57.000000000", + "2019-01-06T07:05:29.000000000", + "2019-01-06T07:05:41.000000000", + "2019-01-06T07:06:51.000000000", + "2019-01-06T07:07:57.000000000", + "2019-01-06T07:10:19.000000000", + "2019-01-06T07:12:05.000000000", + "2019-01-06T07:13:26.000000000", + "2019-01-06T07:14:30.000000000", + "2019-01-06T07:15:16.000000000", + "2019-01-06T07:15:53.000000000", + "2019-01-06T07:21:29.000000000", + "2019-01-06T07:22:36.000000000", + "2019-01-06T07:22:43.000000000", + "2019-01-06T07:23:03.000000000", + "2019-01-06T07:24:49.000000000", + "2019-01-06T07:24:59.000000000", + "2019-01-06T07:25:01.000000000", + "2019-01-06T07:25:23.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:27:30.000000000", + "2019-01-06T07:27:33.000000000", + "2019-01-06T07:27:54.000000000", + "2019-01-06T07:28:11.000000000", + "2019-01-06T07:28:48.000000000", + "2019-01-06T07:29:59.000000000", + "2019-01-06T07:30:10.000000000", + "2019-01-06T07:30:16.000000000", + "2019-01-06T07:30:29.000000000", + "2019-01-06T07:32:12.000000000", + "2019-01-06T07:34:01.000000000", + "2019-01-06T07:37:25.000000000", + "2019-01-06T07:39:11.000000000", + "2019-01-06T07:40:38.000000000", + "2019-01-06T07:40:44.000000000", + "2019-01-06T07:43:16.000000000", + "2019-01-06T07:45:34.000000000", + "2019-01-06T07:46:29.000000000", + "2019-01-06T07:47:04.000000000", + "2019-01-06T07:47:06.000000000", + "2019-01-06T07:48:21.000000000", + "2019-01-06T07:49:06.000000000", + "2019-01-06T07:50:03.000000000", + "2019-01-06T07:51:08.000000000", + "2019-01-06T07:53:50.000000000", + "2019-01-06T07:53:51.000000000", + "2019-01-06T07:54:20.000000000", + "2019-01-06T07:54:23.000000000", + "2019-01-06T07:54:37.000000000", + "2019-01-06T07:56:28.000000000", + "2019-01-06T07:57:27.000000000", + "2019-01-06T07:57:51.000000000", + "2019-01-06T07:59:36.000000000", + "2019-01-06T08:02:08.000000000", + "2019-01-06T08:02:22.000000000", + "2019-01-06T08:02:50.000000000", + "2019-01-06T08:03:16.000000000", + "2019-01-06T08:04:29.000000000", + "2019-01-06T08:05:26.000000000", + "2019-01-06T08:05:27.000000000", + "2019-01-06T08:06:43.000000000", + "2019-01-06T08:08:05.000000000", + "2019-01-06T08:10:14.000000000", + "2019-01-06T08:10:31.000000000", + "2019-01-06T08:11:11.000000000", + "2019-01-06T08:11:17.000000000", + "2019-01-06T08:12:55.000000000", + "2019-01-06T08:12:57.000000000", + "2019-01-06T08:14:17.000000000", + "2019-01-06T08:15:24.000000000", + "2019-01-06T08:16:43.000000000", + "2019-01-06T08:16:45.000000000", + "2019-01-06T08:17:14.000000000", + "2019-01-06T08:18:21.000000000", + "2019-01-06T08:20:02.000000000", + "2019-01-06T08:21:40.000000000", + "2019-01-06T08:22:10.000000000", + "2019-01-06T08:23:24.000000000", + "2019-01-06T08:23:30.000000000", + "2019-01-06T08:26:43.000000000", + "2019-01-06T08:27:56.000000000", + "2019-01-06T08:28:26.000000000", + "2019-01-06T08:28:58.000000000", + "2019-01-06T08:30:57.000000000", + "2019-01-06T08:32:27.000000000", + "2019-01-06T08:33:59.000000000", + "2019-01-06T08:34:03.000000000", + "2019-01-06T08:35:05.000000000", + "2019-01-06T08:35:57.000000000", + "2019-01-06T08:36:06.000000000", + "2019-01-06T08:36:51.000000000", + "2019-01-06T08:36:59.000000000", + "2019-01-06T08:37:16.000000000", + "2019-01-06T08:37:35.000000000", + "2019-01-06T08:37:39.000000000", + "2019-01-06T08:40:10.000000000", + "2019-01-06T08:40:30.000000000", + "2019-01-06T08:40:40.000000000", + "2019-01-06T08:41:25.000000000", + "2019-01-06T08:41:54.000000000", + "2019-01-06T08:42:44.000000000", + "2019-01-06T08:43:44.000000000", + "2019-01-06T08:44:43.000000000", + "2019-01-06T08:45:59.000000000", + "2019-01-06T08:47:29.000000000", + "2019-01-06T08:47:30.000000000", + "2019-01-06T08:48:07.000000000", + "2019-01-06T08:48:41.000000000", + "2019-01-06T08:51:35.000000000", + "2019-01-06T08:52:37.000000000", + "2019-01-06T08:52:49.000000000", + "2019-01-06T08:53:43.000000000", + "2019-01-06T08:55:13.000000000", + "2019-01-06T08:58:04.000000000", + "2019-01-06T08:58:07.000000000", + "2019-01-06T08:58:20.000000000", + "2019-01-06T09:00:14.000000000", + "2019-01-06T09:00:29.000000000", + "2019-01-06T09:03:40.000000000", + "2019-01-06T09:04:17.000000000", + "2019-01-06T09:04:20.000000000", + "2019-01-06T09:05:51.000000000", + "2019-01-06T09:10:38.000000000", + "2019-01-06T09:10:53.000000000", + "2019-01-06T09:13:27.000000000", + "2019-01-06T09:14:55.000000000", + "2019-01-06T09:15:33.000000000", + "2019-01-06T09:15:49.000000000", + "2019-01-06T09:16:05.000000000", + "2019-01-06T09:17:03.000000000", + "2019-01-06T09:17:13.000000000", + "2019-01-06T09:18:30.000000000", + "2019-01-06T09:18:38.000000000", + "2019-01-06T09:19:58.000000000", + "2019-01-06T09:21:05.000000000", + "2019-01-06T09:21:20.000000000", + "2019-01-06T09:22:09.000000000", + "2019-01-06T09:24:15.000000000", + "2019-01-06T09:25:13.000000000", + "2019-01-06T09:25:15.000000000", + "2019-01-06T09:25:42.000000000", + "2019-01-06T09:27:01.000000000", + "2019-01-06T09:28:04.000000000", + "2019-01-06T09:28:47.000000000", + "2019-01-06T09:29:14.000000000", + "2019-01-06T09:31:17.000000000", + "2019-01-06T09:31:49.000000000", + "2019-01-06T09:32:17.000000000", + "2019-01-06T09:32:26.000000000", + "2019-01-06T09:32:51.000000000", + "2019-01-06T09:33:00.000000000", + "2019-01-06T09:34:14.000000000", + "2019-01-06T09:36:00.000000000", + "2019-01-06T09:36:03.000000000", + "2019-01-06T09:36:09.000000000", + "2019-01-06T09:36:58.000000000", + "2019-01-06T09:37:11.000000000", + "2019-01-06T09:39:53.000000000", + "2019-01-06T09:40:16.000000000", + "2019-01-06T09:44:35.000000000", + "2019-01-06T09:46:10.000000000", + "2019-01-06T09:46:57.000000000", + "2019-01-06T09:47:47.000000000", + "2019-01-06T09:48:41.000000000", + "2019-01-06T09:49:27.000000000", + "2019-01-06T09:50:52.000000000", + "2019-01-06T09:51:49.000000000", + "2019-01-06T09:53:50.000000000", + "2019-01-06T09:54:07.000000000", + "2019-01-06T09:55:47.000000000", + "2019-01-06T09:55:55.000000000", + "2019-01-06T09:55:56.000000000", + "2019-01-06T09:57:10.000000000", + "2019-01-06T09:57:34.000000000", + "2019-01-06T09:59:24.000000000", + "2019-01-06T10:01:45.000000000", + "2019-01-06T10:04:47.000000000", + "2019-01-06T10:04:57.000000000", + "2019-01-06T10:05:07.000000000", + "2019-01-06T10:05:49.000000000", + "2019-01-06T10:08:40.000000000", + "2019-01-06T10:10:03.000000000", + "2019-01-06T10:10:56.000000000", + "2019-01-06T10:14:24.000000000", + "2019-01-06T10:14:38.000000000", + "2019-01-06T10:14:58.000000000", + "2019-01-06T10:16:39.000000000", + "2019-01-06T10:16:51.000000000", + "2019-01-06T10:17:36.000000000", + "2019-01-06T10:18:26.000000000", + "2019-01-06T10:19:34.000000000", + "2019-01-06T10:21:41.000000000", + "2019-01-06T10:22:49.000000000", + "2019-01-06T10:23:12.000000000", + "2019-01-06T10:28:55.000000000", + "2019-01-06T10:29:10.000000000", + "2019-01-06T10:29:15.000000000", + "2019-01-06T10:29:36.000000000", + "2019-01-06T10:30:03.000000000", + "2019-01-06T10:31:19.000000000", + "2019-01-06T10:31:20.000000000", + "2019-01-06T10:31:49.000000000", + "2019-01-06T10:32:32.000000000", + "2019-01-06T10:32:42.000000000", + "2019-01-06T10:33:32.000000000", + "2019-01-06T10:34:07.000000000", + "2019-01-06T10:37:25.000000000", + "2019-01-06T10:39:40.000000000", + "2019-01-06T10:41:24.000000000", + "2019-01-06T10:41:31.000000000", + "2019-01-06T10:41:35.000000000", + "2019-01-06T10:42:56.000000000", + "2019-01-06T10:43:06.000000000", + "2019-01-06T10:43:09.000000000", + "2019-01-06T10:43:28.000000000", + "2019-01-06T10:45:19.000000000", + "2019-01-06T10:45:59.000000000", + "2019-01-06T10:46:08.000000000", + "2019-01-06T10:47:43.000000000", + "2019-01-06T10:48:19.000000000", + "2019-01-06T10:48:23.000000000", + "2019-01-06T10:48:25.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:49:31.000000000", + "2019-01-06T10:49:53.000000000", + "2019-01-06T10:50:38.000000000", + "2019-01-06T10:52:14.000000000", + "2019-01-06T10:53:35.000000000", + "2019-01-06T10:54:07.000000000", + "2019-01-06T10:55:18.000000000", + "2019-01-06T10:55:47.000000000", + "2019-01-06T10:57:33.000000000", + "2019-01-06T10:59:23.000000000", + "2019-01-06T11:01:11.000000000", + "2019-01-06T11:01:52.000000000", + "2019-01-06T11:02:00.000000000", + "2019-01-06T11:04:19.000000000", + "2019-01-06T11:04:25.000000000", + "2019-01-06T11:05:40.000000000", + "2019-01-06T11:06:23.000000000", + "2019-01-06T11:06:29.000000000", + "2019-01-06T11:07:45.000000000", + "2019-01-06T11:08:38.000000000", + "2019-01-06T11:08:51.000000000", + "2019-01-06T11:08:57.000000000", + "2019-01-06T11:09:34.000000000", + "2019-01-06T11:09:58.000000000", + "2019-01-06T11:10:29.000000000", + "2019-01-06T11:11:08.000000000", + "2019-01-06T11:11:48.000000000", + "2019-01-06T11:13:56.000000000", + "2019-01-06T11:14:15.000000000", + "2019-01-06T11:15:11.000000000", + "2019-01-06T11:15:35.000000000", + "2019-01-06T11:16:16.000000000", + "2019-01-06T11:16:45.000000000", + "2019-01-06T11:16:57.000000000", + "2019-01-06T11:20:00.000000000", + "2019-01-06T11:22:47.000000000", + "2019-01-06T11:23:37.000000000", + "2019-01-06T11:26:02.000000000", + "2019-01-06T11:27:31.000000000", + "2019-01-06T11:27:40.000000000", + "2019-01-06T11:28:40.000000000", + "2019-01-06T11:29:47.000000000", + "2019-01-06T11:30:38.000000000", + "2019-01-06T11:32:02.000000000", + "2019-01-06T11:32:46.000000000", + "2019-01-06T11:33:28.000000000", + "2019-01-06T11:35:03.000000000", + "2019-01-06T11:35:53.000000000", + "2019-01-06T11:36:38.000000000", + "2019-01-06T11:37:47.000000000", + "2019-01-06T11:37:56.000000000", + "2019-01-06T11:39:06.000000000", + "2019-01-06T11:39:18.000000000", + "2019-01-06T11:39:19.000000000", + "2019-01-06T11:40:56.000000000", + "2019-01-06T11:42:24.000000000", + "2019-01-06T11:42:26.000000000", + "2019-01-06T11:44:20.000000000", + "2019-01-06T11:44:43.000000000", + "2019-01-06T11:45:30.000000000", + "2019-01-06T11:45:39.000000000", + "2019-01-06T11:46:23.000000000", + "2019-01-06T11:49:02.000000000", + "2019-01-06T11:49:24.000000000", + "2019-01-06T11:49:43.000000000", + "2019-01-06T11:50:36.000000000", + "2019-01-06T11:50:46.000000000", + "2019-01-06T11:50:57.000000000", + "2019-01-06T11:52:50.000000000", + "2019-01-06T11:55:45.000000000", + "2019-01-06T11:55:47.000000000", + "2019-01-06T11:56:22.000000000", + "2019-01-06T11:57:22.000000000", + "2019-01-06T11:58:31.000000000", + "2019-01-06T11:59:05.000000000", + "2019-01-06T11:59:07.000000000", + "2019-01-06T12:00:05.000000000", + "2019-01-06T12:04:08.000000000", + "2019-01-06T12:04:16.000000000", + "2019-01-06T12:06:13.000000000", + "2019-01-06T12:06:59.000000000", + "2019-01-06T12:08:28.000000000", + "2019-01-06T12:08:47.000000000", + "2019-01-06T12:09:29.000000000", + "2019-01-06T12:14:58.000000000", + "2019-01-06T12:16:33.000000000", + "2019-01-06T12:16:42.000000000", + "2019-01-06T12:16:43.000000000", + "2019-01-06T12:19:03.000000000", + "2019-01-06T12:21:35.000000000", + "2019-01-06T12:21:58.000000000", + "2019-01-06T12:22:55.000000000", + "2019-01-06T12:24:43.000000000", + "2019-01-06T12:25:39.000000000", + "2019-01-06T12:25:50.000000000", + "2019-01-06T12:26:55.000000000", + "2019-01-06T12:27:15.000000000", + "2019-01-06T12:30:08.000000000", + "2019-01-06T12:30:18.000000000", + "2019-01-06T12:30:45.000000000", + "2019-01-06T12:31:47.000000000", + "2019-01-06T12:32:01.000000000", + "2019-01-06T12:33:11.000000000", + "2019-01-06T12:36:11.000000000", + "2019-01-06T12:38:51.000000000", + "2019-01-06T12:39:45.000000000", + "2019-01-06T12:42:47.000000000", + "2019-01-06T12:43:10.000000000", + "2019-01-06T12:46:58.000000000", + "2019-01-06T12:47:05.000000000", + "2019-01-06T12:48:22.000000000", + "2019-01-06T12:48:24.000000000", + "2019-01-06T12:49:18.000000000", + "2019-01-06T12:49:39.000000000", + "2019-01-06T12:50:34.000000000", + "2019-01-06T12:50:39.000000000", + "2019-01-06T12:50:44.000000000", + "2019-01-06T12:50:52.000000000", + "2019-01-06T12:51:49.000000000", + "2019-01-06T12:55:18.000000000", + "2019-01-06T12:55:46.000000000", + "2019-01-06T12:57:08.000000000", + "2019-01-06T12:57:40.000000000", + "2019-01-06T12:59:34.000000000", + "2019-01-06T13:00:51.000000000", + "2019-01-06T13:01:27.000000000", + "2019-01-06T13:01:29.000000000", + "2019-01-06T13:03:22.000000000", + "2019-01-06T13:04:14.000000000", + "2019-01-06T13:04:36.000000000", + "2019-01-06T13:04:44.000000000", + "2019-01-06T13:04:52.000000000", + "2019-01-06T13:06:42.000000000", + "2019-01-06T13:07:07.000000000", + "2019-01-06T13:07:54.000000000", + "2019-01-06T13:11:23.000000000", + "2019-01-06T13:12:08.000000000", + "2019-01-06T13:12:16.000000000", + "2019-01-06T13:16:26.000000000", + "2019-01-06T13:16:54.000000000", + "2019-01-06T13:19:22.000000000", + "2019-01-06T13:19:56.000000000", + "2019-01-06T13:20:46.000000000", + "2019-01-06T13:21:18.000000000", + "2019-01-06T13:21:43.000000000", + "2019-01-06T13:23:13.000000000", + "2019-01-06T13:24:21.000000000", + "2019-01-06T13:27:12.000000000", + "2019-01-06T13:28:24.000000000", + "2019-01-06T13:29:14.000000000", + "2019-01-06T13:32:22.000000000", + "2019-01-06T13:32:57.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:34:04.000000000", + "2019-01-06T13:34:50.000000000", + "2019-01-06T13:36:48.000000000", + "2019-01-06T13:36:59.000000000", + "2019-01-06T13:39:07.000000000", + "2019-01-06T13:39:15.000000000", + "2019-01-06T13:40:00.000000000", + "2019-01-06T13:40:06.000000000", + "2019-01-06T13:41:45.000000000", + "2019-01-06T13:44:04.000000000", + "2019-01-06T13:44:18.000000000", + "2019-01-06T13:44:32.000000000", + "2019-01-06T13:47:32.000000000", + "2019-01-06T13:48:08.000000000", + "2019-01-06T13:49:21.000000000", + "2019-01-06T13:50:23.000000000", + "2019-01-06T13:53:42.000000000", + "2019-01-06T13:54:29.000000000", + "2019-01-06T13:54:55.000000000", + "2019-01-06T13:55:57.000000000", + "2019-01-06T13:58:20.000000000", + "2019-01-06T13:58:55.000000000", + "2019-01-06T13:58:57.000000000", + "2019-01-06T13:59:54.000000000", + "2019-01-06T13:59:57.000000000", + "2019-01-06T13:59:58.000000000", + "2019-01-06T14:00:22.000000000", + "2019-01-06T14:01:20.000000000", + "2019-01-06T14:02:32.000000000", + "2019-01-06T14:03:52.000000000", + "2019-01-06T14:04:38.000000000", + "2019-01-06T14:05:46.000000000", + "2019-01-06T14:06:29.000000000", + "2019-01-06T14:07:14.000000000", + "2019-01-06T14:08:17.000000000", + "2019-01-06T14:08:25.000000000", + "2019-01-06T14:09:00.000000000", + "2019-01-06T14:11:10.000000000", + "2019-01-06T14:11:30.000000000", + "2019-01-06T14:11:54.000000000", + "2019-01-06T14:13:08.000000000", + "2019-01-06T14:13:11.000000000", + "2019-01-06T14:14:12.000000000", + "2019-01-06T14:14:48.000000000", + "2019-01-06T14:15:30.000000000", + "2019-01-06T14:16:08.000000000", + "2019-01-06T14:16:46.000000000", + "2019-01-06T14:16:49.000000000", + "2019-01-06T14:17:19.000000000", + "2019-01-06T14:17:48.000000000", + "2019-01-06T14:18:44.000000000", + "2019-01-06T14:18:49.000000000", + "2019-01-06T14:21:20.000000000", + "2019-01-06T14:23:29.000000000", + "2019-01-06T14:23:55.000000000", + "2019-01-06T14:24:00.000000000", + "2019-01-06T14:24:12.000000000", + "2019-01-06T14:24:24.000000000", + "2019-01-06T14:25:34.000000000", + "2019-01-06T14:26:51.000000000", + "2019-01-06T14:30:03.000000000", + "2019-01-06T14:30:32.000000000", + "2019-01-06T14:31:10.000000000", + "2019-01-06T14:31:18.000000000", + "2019-01-06T14:32:35.000000000", + "2019-01-06T14:32:46.000000000", + "2019-01-06T14:34:58.000000000", + "2019-01-06T14:36:31.000000000", + "2019-01-06T14:37:32.000000000", + "2019-01-06T14:38:10.000000000", + "2019-01-06T14:39:15.000000000", + "2019-01-06T14:39:57.000000000", + "2019-01-06T14:40:38.000000000", + "2019-01-06T14:41:09.000000000", + "2019-01-06T14:41:16.000000000", + "2019-01-06T14:42:20.000000000", + "2019-01-06T14:42:33.000000000", + "2019-01-06T14:43:02.000000000", + "2019-01-06T14:43:03.000000000", + "2019-01-06T14:43:07.000000000", + "2019-01-06T14:43:15.000000000", + "2019-01-06T14:44:04.000000000", + "2019-01-06T14:44:23.000000000", + "2019-01-06T14:44:42.000000000", + "2019-01-06T14:45:35.000000000", + "2019-01-06T14:45:39.000000000", + "2019-01-06T14:48:22.000000000", + "2019-01-06T14:48:49.000000000", + "2019-01-06T14:49:09.000000000", + "2019-01-06T14:50:16.000000000", + "2019-01-06T14:50:37.000000000", + "2019-01-06T14:52:00.000000000", + "2019-01-06T14:55:19.000000000", + "2019-01-06T14:57:04.000000000", + "2019-01-06T14:57:10.000000000", + "2019-01-06T14:57:18.000000000", + "2019-01-06T14:57:21.000000000", + "2019-01-06T14:57:30.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:16.000000000", + "2019-01-06T14:58:27.000000000", + "2019-01-06T14:59:58.000000000", + "2019-01-06T15:00:04.000000000", + "2019-01-06T15:00:53.000000000", + "2019-01-06T15:01:33.000000000", + "2019-01-06T15:01:48.000000000", + "2019-01-06T15:02:30.000000000", + "2019-01-06T15:04:10.000000000", + "2019-01-06T15:04:36.000000000", + "2019-01-06T15:06:16.000000000", + "2019-01-06T15:07:47.000000000", + "2019-01-06T15:09:11.000000000", + "2019-01-06T15:09:26.000000000", + "2019-01-06T15:10:14.000000000", + "2019-01-06T15:10:38.000000000", + "2019-01-06T15:10:42.000000000", + "2019-01-06T15:12:02.000000000", + "2019-01-06T15:13:23.000000000", + "2019-01-06T15:13:38.000000000", + "2019-01-06T15:13:44.000000000", + "2019-01-06T15:14:43.000000000", + "2019-01-06T15:19:07.000000000", + "2019-01-06T15:19:36.000000000", + "2019-01-06T15:19:52.000000000", + "2019-01-06T15:20:29.000000000", + "2019-01-06T15:20:44.000000000", + "2019-01-06T15:22:27.000000000", + "2019-01-06T15:23:21.000000000", + "2019-01-06T15:23:46.000000000", + "2019-01-06T15:23:50.000000000", + "2019-01-06T15:25:37.000000000", + "2019-01-06T15:27:17.000000000", + "2019-01-06T15:27:33.000000000", + "2019-01-06T15:27:55.000000000", + "2019-01-06T15:29:07.000000000", + "2019-01-06T15:29:37.000000000", + "2019-01-06T15:29:45.000000000", + "2019-01-06T15:31:25.000000000", + "2019-01-06T15:32:07.000000000", + "2019-01-06T15:32:17.000000000", + "2019-01-06T15:33:24.000000000", + "2019-01-06T15:33:55.000000000", + "2019-01-06T15:35:15.000000000", + "2019-01-06T15:36:01.000000000", + "2019-01-06T15:37:20.000000000", + "2019-01-06T15:38:09.000000000", + "2019-01-06T15:40:53.000000000", + "2019-01-06T15:43:12.000000000", + "2019-01-06T15:44:40.000000000", + "2019-01-06T15:45:36.000000000", + "2019-01-06T15:45:57.000000000", + "2019-01-06T15:46:25.000000000", + "2019-01-06T15:46:44.000000000", + "2019-01-06T15:51:41.000000000", + "2019-01-06T15:53:26.000000000", + "2019-01-06T15:54:02.000000000", + "2019-01-06T15:55:59.000000000", + "2019-01-06T15:59:08.000000000", + "2019-01-06T16:01:01.000000000", + "2019-01-06T16:01:25.000000000", + "2019-01-06T16:01:37.000000000", + "2019-01-06T16:01:50.000000000", + "2019-01-06T16:02:36.000000000", + "2019-01-06T16:03:13.000000000", + "2019-01-06T16:03:25.000000000", + "2019-01-06T16:04:05.000000000", + "2019-01-06T16:05:39.000000000", + "2019-01-06T16:05:56.000000000", + "2019-01-06T16:07:49.000000000", + "2019-01-06T16:08:16.000000000", + "2019-01-06T16:09:31.000000000", + "2019-01-06T16:09:36.000000000", + "2019-01-06T16:09:49.000000000", + "2019-01-06T16:12:34.000000000", + "2019-01-06T16:13:38.000000000", + "2019-01-06T16:13:57.000000000", + "2019-01-06T16:17:21.000000000", + "2019-01-06T16:18:07.000000000", + "2019-01-06T16:18:27.000000000", + "2019-01-06T16:21:14.000000000", + "2019-01-06T16:22:43.000000000", + "2019-01-06T16:22:52.000000000", + "2019-01-06T16:23:18.000000000", + "2019-01-06T16:26:36.000000000", + "2019-01-06T16:26:45.000000000", + "2019-01-06T16:27:26.000000000", + "2019-01-06T16:27:34.000000000", + "2019-01-06T16:27:43.000000000", + "2019-01-06T16:29:06.000000000", + "2019-01-06T16:31:33.000000000", + "2019-01-06T16:31:34.000000000", + "2019-01-06T16:32:58.000000000", + "2019-01-06T16:33:43.000000000", + "2019-01-06T16:35:02.000000000", + "2019-01-06T16:35:13.000000000", + "2019-01-06T16:35:55.000000000", + "2019-01-06T16:40:13.000000000", + "2019-01-06T16:40:19.000000000", + "2019-01-06T16:41:38.000000000", + "2019-01-06T16:44:18.000000000", + "2019-01-06T16:44:20.000000000", + "2019-01-06T16:45:49.000000000", + "2019-01-06T16:46:28.000000000", + "2019-01-06T16:46:58.000000000", + "2019-01-06T16:48:43.000000000", + "2019-01-06T16:48:56.000000000", + "2019-01-06T16:49:00.000000000", + "2019-01-06T16:51:03.000000000", + "2019-01-06T16:52:19.000000000", + "2019-01-06T16:53:26.000000000", + "2019-01-06T16:56:38.000000000", + "2019-01-06T16:57:17.000000000", + "2019-01-06T16:58:00.000000000", + "2019-01-06T16:58:54.000000000", + "2019-01-06T16:59:33.000000000", + "2019-01-06T17:00:12.000000000", + "2019-01-06T17:00:46.000000000", + "2019-01-06T17:02:01.000000000", + "2019-01-06T17:04:00.000000000", + "2019-01-06T17:04:02.000000000", + "2019-01-06T17:08:10.000000000", + "2019-01-06T17:08:48.000000000", + "2019-01-06T17:08:56.000000000", + "2019-01-06T17:10:38.000000000", + "2019-01-06T17:10:43.000000000", + "2019-01-06T17:11:52.000000000", + "2019-01-06T17:15:14.000000000", + "2019-01-06T17:15:22.000000000", + "2019-01-06T17:17:34.000000000", + "2019-01-06T17:21:05.000000000", + "2019-01-06T17:21:29.000000000", + "2019-01-06T17:21:38.000000000", + "2019-01-06T17:22:02.000000000", + "2019-01-06T17:26:16.000000000", + "2019-01-06T17:27:19.000000000", + "2019-01-06T17:28:44.000000000", + "2019-01-06T17:29:20.000000000", + "2019-01-06T17:29:34.000000000", + "2019-01-06T17:30:44.000000000", + "2019-01-06T17:32:54.000000000", + "2019-01-06T17:33:03.000000000", + "2019-01-06T17:33:38.000000000", + "2019-01-06T17:34:38.000000000", + "2019-01-06T17:34:57.000000000", + "2019-01-06T17:35:06.000000000", + "2019-01-06T17:35:25.000000000", + "2019-01-06T17:36:19.000000000", + "2019-01-06T17:38:48.000000000", + "2019-01-06T17:40:49.000000000", + "2019-01-06T17:43:31.000000000", + "2019-01-06T17:44:13.000000000", + "2019-01-06T17:45:53.000000000", + "2019-01-06T17:45:55.000000000", + "2019-01-06T17:45:59.000000000", + "2019-01-06T17:46:30.000000000", + "2019-01-06T17:48:13.000000000", + "2019-01-06T17:48:25.000000000", + "2019-01-06T17:48:59.000000000", + "2019-01-06T17:50:38.000000000", + "2019-01-06T17:51:05.000000000", + "2019-01-06T17:52:31.000000000", + "2019-01-06T17:54:52.000000000", + "2019-01-06T17:55:26.000000000", + "2019-01-06T17:55:30.000000000", + "2019-01-06T17:55:36.000000000", + "2019-01-06T17:56:34.000000000", + "2019-01-06T17:57:40.000000000", + "2019-01-06T17:59:30.000000000", + "2019-01-06T18:03:15.000000000", + "2019-01-06T18:03:18.000000000", + "2019-01-06T18:03:57.000000000", + "2019-01-06T18:04:04.000000000", + "2019-01-06T18:04:34.000000000", + "2019-01-06T18:04:45.000000000", + "2019-01-06T18:05:17.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:07:37.000000000", + "2019-01-06T18:08:10.000000000", + "2019-01-06T18:11:09.000000000", + "2019-01-06T18:11:23.000000000", + "2019-01-06T18:11:29.000000000", + "2019-01-06T18:13:50.000000000", + "2019-01-06T18:14:05.000000000", + "2019-01-06T18:14:48.000000000", + "2019-01-06T18:14:58.000000000", + "2019-01-06T18:15:08.000000000", + "2019-01-06T18:15:34.000000000", + "2019-01-06T18:15:38.000000000", + "2019-01-06T18:16:37.000000000", + "2019-01-06T18:17:11.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:19:12.000000000", + "2019-01-06T18:19:50.000000000", + "2019-01-06T18:20:33.000000000", + "2019-01-06T18:21:23.000000000", + "2019-01-06T18:23:26.000000000", + "2019-01-06T18:23:29.000000000", + "2019-01-06T18:23:37.000000000", + "2019-01-06T18:25:51.000000000", + "2019-01-06T18:28:01.000000000", + "2019-01-06T18:29:35.000000000", + "2019-01-06T18:30:06.000000000", + "2019-01-06T18:30:36.000000000", + "2019-01-06T18:31:39.000000000", + "2019-01-06T18:32:48.000000000", + "2019-01-06T18:34:10.000000000", + "2019-01-06T18:35:26.000000000", + "2019-01-06T18:36:59.000000000", + "2019-01-06T18:37:00.000000000", + "2019-01-06T18:39:00.000000000", + "2019-01-06T18:41:01.000000000", + "2019-01-06T18:41:44.000000000", + "2019-01-06T18:42:46.000000000", + "2019-01-06T18:44:52.000000000", + "2019-01-06T18:45:28.000000000", + "2019-01-06T18:46:09.000000000", + "2019-01-06T18:47:11.000000000", + "2019-01-06T18:47:15.000000000", + "2019-01-06T18:48:31.000000000", + "2019-01-06T18:49:22.000000000", + "2019-01-06T18:50:29.000000000", + "2019-01-06T18:50:32.000000000", + "2019-01-06T18:50:33.000000000", + "2019-01-06T18:51:28.000000000", + "2019-01-06T18:51:46.000000000", + "2019-01-06T18:55:10.000000000", + "2019-01-06T18:55:21.000000000", + "2019-01-06T18:56:20.000000000", + "2019-01-06T18:58:42.000000000", + "2019-01-06T19:00:25.000000000", + "2019-01-06T19:00:58.000000000", + "2019-01-06T19:01:05.000000000", + "2019-01-06T19:01:26.000000000", + "2019-01-06T19:03:41.000000000", + "2019-01-06T19:04:36.000000000", + "2019-01-06T19:05:19.000000000", + "2019-01-06T19:05:24.000000000", + "2019-01-06T19:06:36.000000000", + "2019-01-06T19:07:25.000000000", + "2019-01-06T19:07:35.000000000", + "2019-01-06T19:08:23.000000000", + "2019-01-06T19:09:51.000000000", + "2019-01-06T19:11:40.000000000", + "2019-01-06T19:15:59.000000000", + "2019-01-06T19:17:00.000000000", + "2019-01-06T19:17:05.000000000", + "2019-01-06T19:17:19.000000000", + "2019-01-06T19:17:20.000000000", + "2019-01-06T19:17:25.000000000", + "2019-01-06T19:17:34.000000000", + "2019-01-06T19:17:43.000000000", + "2019-01-06T19:18:25.000000000", + "2019-01-06T19:18:27.000000000", + "2019-01-06T19:20:32.000000000", + "2019-01-06T19:21:50.000000000", + "2019-01-06T19:22:09.000000000", + "2019-01-06T19:22:21.000000000", + "2019-01-06T19:24:26.000000000", + "2019-01-06T19:24:48.000000000", + "2019-01-06T19:25:29.000000000", + "2019-01-06T19:26:16.000000000", + "2019-01-06T19:26:29.000000000", + "2019-01-06T19:26:44.000000000", + "2019-01-06T19:30:14.000000000", + "2019-01-06T19:33:15.000000000", + "2019-01-06T19:33:17.000000000", + "2019-01-06T19:33:46.000000000", + "2019-01-06T19:35:12.000000000", + "2019-01-06T19:35:42.000000000", + "2019-01-06T19:36:06.000000000", + "2019-01-06T19:36:55.000000000", + "2019-01-06T19:38:01.000000000", + "2019-01-06T19:39:00.000000000", + "2019-01-06T19:39:12.000000000", + "2019-01-06T19:39:56.000000000", + "2019-01-06T19:41:34.000000000", + "2019-01-06T19:41:51.000000000", + "2019-01-06T19:42:52.000000000", + "2019-01-06T19:43:28.000000000", + "2019-01-06T19:44:02.000000000", + "2019-01-06T19:44:20.000000000", + "2019-01-06T19:47:22.000000000", + "2019-01-06T19:49:10.000000000", + "2019-01-06T19:50:33.000000000", + "2019-01-06T19:51:13.000000000", + "2019-01-06T19:51:23.000000000", + "2019-01-06T19:55:40.000000000", + "2019-01-06T19:56:04.000000000", + "2019-01-06T19:57:47.000000000", + "2019-01-06T19:58:05.000000000", + "2019-01-06T19:59:26.000000000", + "2019-01-06T20:01:38.000000000", + "2019-01-06T20:01:54.000000000", + "2019-01-06T20:02:08.000000000", + "2019-01-06T20:03:34.000000000", + "2019-01-06T20:04:56.000000000", + "2019-01-06T20:11:24.000000000", + "2019-01-06T20:12:20.000000000", + "2019-01-06T20:14:50.000000000", + "2019-01-06T20:15:34.000000000", + "2019-01-06T20:16:06.000000000", + "2019-01-06T20:16:46.000000000", + "2019-01-06T20:17:04.000000000", + "2019-01-06T20:17:30.000000000", + "2019-01-06T20:17:49.000000000", + "2019-01-06T20:18:08.000000000", + "2019-01-06T20:19:06.000000000", + "2019-01-06T20:19:39.000000000", + "2019-01-06T20:19:42.000000000", + "2019-01-06T20:21:27.000000000", + "2019-01-06T20:22:03.000000000", + "2019-01-06T20:22:58.000000000", + "2019-01-06T20:23:03.000000000", + "2019-01-06T20:24:44.000000000", + "2019-01-06T20:25:06.000000000", + "2019-01-06T20:26:33.000000000", + "2019-01-06T20:27:16.000000000", + "2019-01-06T20:27:23.000000000", + "2019-01-06T20:28:19.000000000", + "2019-01-06T20:29:45.000000000", + "2019-01-06T20:29:53.000000000", + "2019-01-06T20:30:05.000000000", + "2019-01-06T20:31:57.000000000", + "2019-01-06T20:32:51.000000000", + "2019-01-06T20:33:50.000000000", + "2019-01-06T20:34:48.000000000", + "2019-01-06T20:35:47.000000000", + "2019-01-06T20:38:32.000000000", + "2019-01-06T20:38:46.000000000", + "2019-01-06T20:40:34.000000000", + "2019-01-06T20:40:59.000000000", + "2019-01-06T20:41:53.000000000", + "2019-01-06T20:43:29.000000000", + "2019-01-06T20:43:45.000000000", + "2019-01-06T20:43:48.000000000", + "2019-01-06T20:44:25.000000000", + "2019-01-06T20:46:54.000000000", + "2019-01-06T20:47:09.000000000", + "2019-01-06T20:48:15.000000000", + "2019-01-06T20:48:45.000000000", + "2019-01-06T20:49:44.000000000", + "2019-01-06T20:51:52.000000000", + "2019-01-06T20:52:39.000000000", + "2019-01-06T20:55:56.000000000", + "2019-01-06T20:56:19.000000000", + "2019-01-06T20:56:51.000000000", + "2019-01-06T20:59:21.000000000", + "2019-01-06T21:01:16.000000000", + "2019-01-06T21:02:45.000000000", + "2019-01-06T21:06:53.000000000", + "2019-01-06T21:11:34.000000000", + "2019-01-06T21:11:54.000000000", + "2019-01-06T21:13:09.000000000", + "2019-01-06T21:13:48.000000000", + "2019-01-06T21:18:29.000000000", + "2019-01-06T21:19:36.000000000", + "2019-01-06T21:19:52.000000000", + "2019-01-06T21:20:07.000000000", + "2019-01-06T21:20:54.000000000", + "2019-01-06T21:22:47.000000000", + "2019-01-06T21:23:35.000000000", + "2019-01-06T21:23:52.000000000", + "2019-01-06T21:25:06.000000000", + "2019-01-06T21:25:58.000000000", + "2019-01-06T21:26:29.000000000", + "2019-01-06T21:27:18.000000000", + "2019-01-06T21:28:23.000000000", + "2019-01-06T21:30:56.000000000", + "2019-01-06T21:32:20.000000000", + "2019-01-06T21:33:03.000000000", + "2019-01-06T21:34:15.000000000", + "2019-01-06T21:34:31.000000000", + "2019-01-06T21:34:44.000000000", + "2019-01-06T21:34:47.000000000", + "2019-01-06T21:35:06.000000000", + "2019-01-06T21:36:08.000000000", + "2019-01-06T21:37:02.000000000", + "2019-01-06T21:38:06.000000000", + "2019-01-06T21:38:09.000000000", + "2019-01-06T21:38:50.000000000", + "2019-01-06T21:39:55.000000000", + "2019-01-06T21:40:41.000000000", + "2019-01-06T21:41:16.000000000", + "2019-01-06T21:42:13.000000000", + "2019-01-06T21:42:28.000000000", + "2019-01-06T21:42:40.000000000", + "2019-01-06T21:42:47.000000000", + "2019-01-06T21:43:03.000000000", + "2019-01-06T21:44:43.000000000", + "2019-01-06T21:45:39.000000000", + "2019-01-06T21:47:32.000000000", + "2019-01-06T21:49:22.000000000", + "2019-01-06T21:50:02.000000000", + "2019-01-06T21:52:14.000000000", + "2019-01-06T21:53:39.000000000", + "2019-01-06T21:55:09.000000000", + "2019-01-06T21:55:37.000000000", + "2019-01-06T21:56:40.000000000", + "2019-01-06T21:57:08.000000000", + "2019-01-06T21:58:17.000000000", + "2019-01-06T21:59:01.000000000", + "2019-01-06T21:59:02.000000000", + "2019-01-06T21:59:46.000000000", + "2019-01-06T22:00:59.000000000", + "2019-01-06T22:01:10.000000000", + "2019-01-06T22:02:38.000000000", + "2019-01-06T22:04:17.000000000", + "2019-01-06T22:05:13.000000000", + "2019-01-06T22:06:24.000000000", + "2019-01-06T22:06:55.000000000", + "2019-01-06T22:08:40.000000000", + "2019-01-06T22:09:17.000000000", + "2019-01-06T22:09:57.000000000", + "2019-01-06T22:12:04.000000000", + "2019-01-06T22:13:45.000000000", + "2019-01-06T22:15:55.000000000", + "2019-01-06T22:16:00.000000000", + "2019-01-06T22:18:42.000000000", + "2019-01-06T22:21:08.000000000", + "2019-01-06T22:21:33.000000000", + "2019-01-06T22:22:15.000000000", + "2019-01-06T22:22:17.000000000", + "2019-01-06T22:22:34.000000000", + "2019-01-06T22:22:50.000000000", + "2019-01-06T22:24:03.000000000", + "2019-01-06T22:24:07.000000000", + "2019-01-06T22:24:20.000000000", + "2019-01-06T22:26:22.000000000", + "2019-01-06T22:27:07.000000000", + "2019-01-06T22:28:08.000000000", + "2019-01-06T22:28:43.000000000", + "2019-01-06T22:29:04.000000000", + "2019-01-06T22:29:34.000000000", + "2019-01-06T22:29:51.000000000", + "2019-01-06T22:30:43.000000000", + "2019-01-06T22:31:07.000000000", + "2019-01-06T22:31:30.000000000", + "2019-01-06T22:32:12.000000000", + "2019-01-06T22:32:27.000000000", + "2019-01-06T22:34:42.000000000", + "2019-01-06T22:35:00.000000000", + "2019-01-06T22:36:09.000000000", + "2019-01-06T22:36:24.000000000", + "2019-01-06T22:37:22.000000000", + "2019-01-06T22:37:57.000000000", + "2019-01-06T22:38:56.000000000", + "2019-01-06T22:39:37.000000000", + "2019-01-06T22:41:57.000000000", + "2019-01-06T22:44:31.000000000", + "2019-01-06T22:44:42.000000000", + "2019-01-06T22:48:29.000000000", + "2019-01-06T22:50:27.000000000", + "2019-01-06T22:51:09.000000000", + "2019-01-06T22:52:57.000000000", + "2019-01-06T22:54:45.000000000", + "2019-01-06T22:54:54.000000000", + "2019-01-06T22:55:28.000000000", + "2019-01-06T22:55:56.000000000", + "2019-01-06T22:56:32.000000000", + "2019-01-06T22:56:56.000000000", + "2019-01-06T22:57:34.000000000", + "2019-01-06T22:59:55.000000000", + "2019-01-06T23:01:11.000000000", + "2019-01-06T23:01:23.000000000", + "2019-01-06T23:02:02.000000000", + "2019-01-06T23:02:17.000000000", + "2019-01-06T23:04:11.000000000", + "2019-01-06T23:04:28.000000000", + "2019-01-06T23:04:57.000000000", + "2019-01-06T23:05:23.000000000", + "2019-01-06T23:06:34.000000000", + "2019-01-06T23:07:04.000000000", + "2019-01-06T23:08:23.000000000", + "2019-01-06T23:08:27.000000000", + "2019-01-06T23:09:16.000000000", + "2019-01-06T23:09:32.000000000", + "2019-01-06T23:11:09.000000000", + "2019-01-06T23:12:58.000000000", + "2019-01-06T23:12:59.000000000", + "2019-01-06T23:13:05.000000000", + "2019-01-06T23:13:53.000000000", + "2019-01-06T23:15:54.000000000", + "2019-01-06T23:17:45.000000000", + "2019-01-06T23:18:55.000000000", + "2019-01-06T23:20:29.000000000", + "2019-01-06T23:23:01.000000000", + "2019-01-06T23:25:19.000000000", + "2019-01-06T23:26:28.000000000", + "2019-01-06T23:28:20.000000000", + "2019-01-06T23:28:27.000000000", + "2019-01-06T23:28:38.000000000", + "2019-01-06T23:28:50.000000000", + "2019-01-06T23:30:11.000000000", + "2019-01-06T23:31:06.000000000", + "2019-01-06T23:31:25.000000000", + "2019-01-06T23:32:31.000000000", + "2019-01-06T23:32:58.000000000", + "2019-01-06T23:33:56.000000000", + "2019-01-06T23:35:13.000000000", + "2019-01-06T23:35:31.000000000", + "2019-01-06T23:35:49.000000000", + "2019-01-06T23:36:59.000000000", + "2019-01-06T23:38:05.000000000", + "2019-01-06T23:39:43.000000000", + "2019-01-06T23:41:28.000000000", + "2019-01-06T23:43:06.000000000", + "2019-01-06T23:43:20.000000000", + "2019-01-06T23:43:50.000000000", + "2019-01-06T23:46:45.000000000", + "2019-01-06T23:46:47.000000000", + "2019-01-06T23:48:15.000000000", + "2019-01-06T23:49:03.000000000", + "2019-01-06T23:50:08.000000000", + "2019-01-06T23:50:26.000000000", + "2019-01-06T23:50:53.000000000", + "2019-01-06T23:51:33.000000000", + "2019-01-06T23:53:35.000000000", + "2019-01-06T23:54:51.000000000", + "2019-01-06T23:55:28.000000000", + "2019-01-06T23:55:42.000000000", + "2019-01-06T23:58:24.000000000", + "2019-01-06T23:58:46.000000000", + "2019-01-06T23:59:45.000000000", + "2019-01-07T00:01:51.000000000", + "2019-01-07T00:01:54.000000000", + "2019-01-07T00:03:49.000000000", + "2019-01-07T00:04:12.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:43.000000000", + "2019-01-07T00:07:29.000000000", + "2019-01-07T00:08:58.000000000", + "2019-01-07T00:12:21.000000000", + "2019-01-07T00:13:34.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:14:20.000000000", + "2019-01-07T00:14:37.000000000", + "2019-01-07T00:18:44.000000000", + "2019-01-07T00:20:52.000000000", + "2019-01-07T00:21:09.000000000", + "2019-01-07T00:21:30.000000000", + "2019-01-07T00:22:11.000000000", + "2019-01-07T00:22:13.000000000", + "2019-01-07T00:24:17.000000000", + "2019-01-07T00:25:17.000000000", + "2019-01-07T00:25:39.000000000", + "2019-01-07T00:25:53.000000000", + "2019-01-07T00:26:28.000000000", + "2019-01-07T00:27:50.000000000", + "2019-01-07T00:28:13.000000000", + "2019-01-07T00:28:51.000000000", + "2019-01-07T00:29:13.000000000", + "2019-01-07T00:29:21.000000000", + "2019-01-07T00:29:29.000000000", + "2019-01-07T00:29:55.000000000", + "2019-01-07T00:29:56.000000000", + "2019-01-07T00:30:23.000000000", + "2019-01-07T00:31:03.000000000", + "2019-01-07T00:32:14.000000000", + "2019-01-07T00:33:49.000000000", + "2019-01-07T00:34:07.000000000", + "2019-01-07T00:34:32.000000000", + "2019-01-07T00:34:59.000000000", + "2019-01-07T00:38:57.000000000", + "2019-01-07T00:40:52.000000000", + "2019-01-07T00:42:08.000000000", + "2019-01-07T00:42:20.000000000", + "2019-01-07T00:42:25.000000000", + "2019-01-07T00:43:03.000000000", + "2019-01-07T00:44:29.000000000", + "2019-01-07T00:45:00.000000000", + "2019-01-07T00:45:52.000000000", + "2019-01-07T00:46:49.000000000", + "2019-01-07T00:48:31.000000000", + "2019-01-07T00:48:53.000000000", + "2019-01-07T00:52:13.000000000", + "2019-01-07T00:52:29.000000000", + "2019-01-07T00:54:10.000000000", + "2019-01-07T00:54:39.000000000", + "2019-01-07T00:54:53.000000000", + "2019-01-07T00:56:29.000000000", + "2019-01-07T00:56:55.000000000", + "2019-01-07T00:57:56.000000000", + "2019-01-07T00:58:21.000000000", + "2019-01-07T00:58:31.000000000", + "2019-01-07T00:58:56.000000000", + "2019-01-07T00:59:39.000000000", + "2019-01-07T01:00:32.000000000", + "2019-01-07T01:03:03.000000000", + "2019-01-07T01:03:40.000000000", + "2019-01-07T01:03:45.000000000", + "2019-01-07T01:04:14.000000000", + "2019-01-07T01:07:12.000000000", + "2019-01-07T01:08:31.000000000", + "2019-01-07T01:10:11.000000000", + "2019-01-07T01:10:14.000000000", + "2019-01-07T01:10:33.000000000", + "2019-01-07T01:11:06.000000000", + "2019-01-07T01:12:25.000000000", + "2019-01-07T01:12:42.000000000", + "2019-01-07T01:16:41.000000000", + "2019-01-07T01:18:09.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:20:24.000000000", + "2019-01-07T01:24:39.000000000", + "2019-01-07T01:24:43.000000000", + "2019-01-07T01:28:14.000000000", + "2019-01-07T01:28:40.000000000", + "2019-01-07T01:30:20.000000000", + "2019-01-07T01:30:39.000000000", + "2019-01-07T01:30:40.000000000", + "2019-01-07T01:31:12.000000000", + "2019-01-07T01:32:06.000000000", + "2019-01-07T01:32:09.000000000", + "2019-01-07T01:32:39.000000000", + "2019-01-07T01:33:45.000000000", + "2019-01-07T01:35:11.000000000", + "2019-01-07T01:35:54.000000000", + "2019-01-07T01:37:33.000000000", + "2019-01-07T01:38:35.000000000", + "2019-01-07T01:38:56.000000000", + "2019-01-07T01:43:49.000000000", + "2019-01-07T01:44:27.000000000", + "2019-01-07T01:46:50.000000000", + "2019-01-07T01:47:17.000000000", + "2019-01-07T01:48:42.000000000", + "2019-01-07T01:48:53.000000000", + "2019-01-07T01:51:40.000000000", + "2019-01-07T01:51:49.000000000", + "2019-01-07T01:52:58.000000000", + "2019-01-07T01:53:33.000000000", + "2019-01-07T01:54:08.000000000", + "2019-01-07T01:54:39.000000000", + "2019-01-07T01:54:43.000000000", + "2019-01-07T01:54:55.000000000", + "2019-01-07T01:57:39.000000000", + "2019-01-07T01:58:15.000000000", + "2019-01-07T02:00:42.000000000", + "2019-01-07T02:00:49.000000000", + "2019-01-07T02:01:51.000000000", + "2019-01-07T02:04:04.000000000", + "2019-01-07T02:05:19.000000000", + "2019-01-07T02:06:34.000000000", + "2019-01-07T02:07:12.000000000", + "2019-01-07T02:07:37.000000000", + "2019-01-07T02:08:53.000000000", + "2019-01-07T02:11:13.000000000", + "2019-01-07T02:11:41.000000000", + "2019-01-07T02:11:53.000000000", + "2019-01-07T02:12:03.000000000", + "2019-01-07T02:12:16.000000000", + "2019-01-07T02:12:27.000000000", + "2019-01-07T02:13:23.000000000", + "2019-01-07T02:13:33.000000000", + "2019-01-07T02:13:55.000000000", + "2019-01-07T02:15:28.000000000", + "2019-01-07T02:16:19.000000000", + "2019-01-07T02:16:24.000000000", + "2019-01-07T02:17:03.000000000", + "2019-01-07T02:21:42.000000000", + "2019-01-07T02:21:54.000000000", + "2019-01-07T02:23:06.000000000", + "2019-01-07T02:23:18.000000000", + "2019-01-07T02:24:02.000000000", + "2019-01-07T02:24:39.000000000", + "2019-01-07T02:25:12.000000000", + "2019-01-07T02:25:28.000000000", + "2019-01-07T02:25:36.000000000", + "2019-01-07T02:26:34.000000000", + "2019-01-07T02:27:29.000000000", + "2019-01-07T02:27:30.000000000", + "2019-01-07T02:28:02.000000000", + "2019-01-07T02:28:32.000000000", + "2019-01-07T02:28:55.000000000", + "2019-01-07T02:29:00.000000000", + "2019-01-07T02:29:10.000000000", + "2019-01-07T02:30:18.000000000", + "2019-01-07T02:31:06.000000000", + "2019-01-07T02:34:29.000000000", + "2019-01-07T02:35:01.000000000", + "2019-01-07T02:35:51.000000000", + "2019-01-07T02:36:10.000000000", + "2019-01-07T02:36:55.000000000", + "2019-01-07T02:37:48.000000000", + "2019-01-07T02:38:13.000000000", + "2019-01-07T02:38:50.000000000", + "2019-01-07T02:39:21.000000000", + "2019-01-07T02:40:55.000000000", + "2019-01-07T02:41:09.000000000", + "2019-01-07T02:41:45.000000000", + "2019-01-07T02:42:06.000000000", + "2019-01-07T02:42:34.000000000", + "2019-01-07T02:43:03.000000000", + "2019-01-07T02:44:15.000000000", + "2019-01-07T02:45:15.000000000", + "2019-01-07T02:45:35.000000000", + "2019-01-07T02:45:37.000000000", + "2019-01-07T02:47:10.000000000", + "2019-01-07T02:52:09.000000000", + "2019-01-07T02:52:49.000000000", + "2019-01-07T02:55:14.000000000", + "2019-01-07T02:57:10.000000000", + "2019-01-07T02:58:26.000000000", + "2019-01-07T02:58:40.000000000", + "2019-01-07T03:00:43.000000000", + "2019-01-07T03:02:44.000000000", + "2019-01-07T03:02:57.000000000", + "2019-01-07T03:03:03.000000000", + "2019-01-07T03:03:41.000000000", + "2019-01-07T03:05:27.000000000", + "2019-01-07T03:05:51.000000000", + "2019-01-07T03:06:00.000000000", + "2019-01-07T03:06:51.000000000", + "2019-01-07T03:08:20.000000000", + "2019-01-07T03:08:55.000000000", + "2019-01-07T03:09:32.000000000", + "2019-01-07T03:11:33.000000000", + "2019-01-07T03:12:35.000000000", + "2019-01-07T03:13:24.000000000", + "2019-01-07T03:13:43.000000000", + "2019-01-07T03:16:48.000000000", + "2019-01-07T03:18:41.000000000", + "2019-01-07T03:18:43.000000000", + "2019-01-07T03:22:31.000000000", + "2019-01-07T03:23:53.000000000", + "2019-01-07T03:26:29.000000000", + "2019-01-07T03:26:34.000000000", + "2019-01-07T03:26:50.000000000", + "2019-01-07T03:27:20.000000000", + "2019-01-07T03:28:53.000000000", + "2019-01-07T03:30:12.000000000", + "2019-01-07T03:33:26.000000000", + "2019-01-07T03:33:51.000000000", + "2019-01-07T03:34:17.000000000", + "2019-01-07T03:34:32.000000000", + "2019-01-07T03:34:46.000000000", + "2019-01-07T03:35:10.000000000", + "2019-01-07T03:35:15.000000000", + "2019-01-07T03:36:25.000000000", + "2019-01-07T03:38:12.000000000", + "2019-01-07T03:42:38.000000000", + "2019-01-07T03:44:11.000000000", + "2019-01-07T03:45:09.000000000", + "2019-01-07T03:46:10.000000000", + "2019-01-07T03:46:38.000000000", + "2019-01-07T03:47:32.000000000", + "2019-01-07T03:48:02.000000000", + "2019-01-07T03:50:59.000000000", + "2019-01-07T03:51:10.000000000", + "2019-01-07T03:51:35.000000000", + "2019-01-07T03:52:27.000000000", + "2019-01-07T03:52:50.000000000", + "2019-01-07T03:54:07.000000000", + "2019-01-07T03:55:07.000000000", + "2019-01-07T03:55:44.000000000", + "2019-01-07T03:56:06.000000000", + "2019-01-07T03:56:07.000000000", + "2019-01-07T03:56:52.000000000", + "2019-01-07T03:57:45.000000000", + "2019-01-07T03:59:56.000000000", + "2019-01-07T04:00:21.000000000", + "2019-01-07T04:03:49.000000000", + "2019-01-07T04:04:05.000000000", + "2019-01-07T04:05:57.000000000", + "2019-01-07T04:07:17.000000000", + "2019-01-07T04:08:30.000000000", + "2019-01-07T04:10:43.000000000", + "2019-01-07T04:11:28.000000000", + "2019-01-07T04:12:12.000000000", + "2019-01-07T04:12:18.000000000", + "2019-01-07T04:12:37.000000000", + "2019-01-07T04:13:57.000000000", + "2019-01-07T04:16:21.000000000", + "2019-01-07T04:18:14.000000000", + "2019-01-07T04:19:00.000000000", + "2019-01-07T04:19:12.000000000", + "2019-01-07T04:24:10.000000000", + "2019-01-07T04:25:04.000000000", + "2019-01-07T04:26:42.000000000", + "2019-01-07T04:28:03.000000000", + "2019-01-07T04:31:09.000000000", + "2019-01-07T04:34:55.000000000", + "2019-01-07T04:35:19.000000000", + "2019-01-07T04:36:03.000000000", + "2019-01-07T04:36:48.000000000", + "2019-01-07T04:38:43.000000000", + "2019-01-07T04:41:25.000000000", + "2019-01-07T04:41:47.000000000", + "2019-01-07T04:41:55.000000000", + "2019-01-07T04:42:22.000000000", + "2019-01-07T04:42:24.000000000", + "2019-01-07T04:42:41.000000000", + "2019-01-07T04:44:16.000000000", + "2019-01-07T04:44:29.000000000", + "2019-01-07T04:45:01.000000000", + "2019-01-07T04:45:43.000000000", + "2019-01-07T04:46:07.000000000", + "2019-01-07T04:46:27.000000000", + "2019-01-07T04:46:36.000000000", + "2019-01-07T04:50:55.000000000", + "2019-01-07T04:52:06.000000000", + "2019-01-07T04:53:14.000000000", + "2019-01-07T04:53:23.000000000", + "2019-01-07T04:53:40.000000000", + "2019-01-07T04:54:49.000000000", + "2019-01-07T04:56:04.000000000", + "2019-01-07T04:56:59.000000000", + "2019-01-07T05:01:21.000000000", + "2019-01-07T05:01:22.000000000", + "2019-01-07T05:03:16.000000000", + "2019-01-07T05:03:17.000000000", + "2019-01-07T05:04:23.000000000", + "2019-01-07T05:06:16.000000000", + "2019-01-07T05:07:51.000000000", + "2019-01-07T05:08:32.000000000", + "2019-01-07T05:10:21.000000000", + "2019-01-07T05:11:07.000000000", + "2019-01-07T05:11:22.000000000", + "2019-01-07T05:17:10.000000000", + "2019-01-07T05:18:20.000000000", + "2019-01-07T05:20:47.000000000", + "2019-01-07T05:20:51.000000000", + "2019-01-07T05:20:57.000000000", + "2019-01-07T05:20:58.000000000", + "2019-01-07T05:22:02.000000000", + "2019-01-07T05:22:04.000000000", + "2019-01-07T05:23:33.000000000", + "2019-01-07T05:24:31.000000000", + "2019-01-07T05:25:16.000000000", + "2019-01-07T05:25:53.000000000", + "2019-01-07T05:26:47.000000000", + "2019-01-07T05:27:11.000000000", + "2019-01-07T05:28:05.000000000", + "2019-01-07T05:28:18.000000000", + "2019-01-07T05:29:11.000000000", + "2019-01-07T05:29:30.000000000", + "2019-01-07T05:30:08.000000000", + "2019-01-07T05:31:20.000000000", + "2019-01-07T05:33:44.000000000", + "2019-01-07T05:34:00.000000000", + "2019-01-07T05:34:01.000000000", + "2019-01-07T05:35:17.000000000", + "2019-01-07T05:35:19.000000000", + "2019-01-07T05:35:48.000000000", + "2019-01-07T05:36:34.000000000", + "2019-01-07T05:39:22.000000000", + "2019-01-07T05:39:50.000000000", + "2019-01-07T05:40:26.000000000", + "2019-01-07T05:41:40.000000000", + "2019-01-07T05:42:43.000000000", + "2019-01-07T05:42:49.000000000", + "2019-01-07T05:42:54.000000000", + "2019-01-07T05:43:23.000000000", + "2019-01-07T05:48:37.000000000", + "2019-01-07T05:49:06.000000000", + "2019-01-07T05:56:56.000000000", + "2019-01-07T05:56:57.000000000", + "2019-01-07T05:57:24.000000000", + "2019-01-07T05:58:15.000000000", + "2019-01-07T05:58:50.000000000", + "2019-01-07T05:59:24.000000000", + "2019-01-07T06:00:29.000000000", + "2019-01-07T06:01:26.000000000", + "2019-01-07T06:01:45.000000000", + "2019-01-07T06:02:11.000000000", + "2019-01-07T06:02:16.000000000", + "2019-01-07T06:07:32.000000000", + "2019-01-07T06:08:18.000000000", + "2019-01-07T06:09:25.000000000", + "2019-01-07T06:10:05.000000000", + "2019-01-07T06:10:51.000000000", + "2019-01-07T06:11:02.000000000", + "2019-01-07T06:11:55.000000000", + "2019-01-07T06:13:52.000000000", + "2019-01-07T06:16:34.000000000", + "2019-01-07T06:16:41.000000000", + "2019-01-07T06:17:23.000000000", + "2019-01-07T06:18:17.000000000", + "2019-01-07T06:19:03.000000000", + "2019-01-07T06:22:08.000000000", + "2019-01-07T06:23:14.000000000", + "2019-01-07T06:23:29.000000000", + "2019-01-07T06:24:47.000000000", + "2019-01-07T06:27:30.000000000", + "2019-01-07T06:27:43.000000000", + "2019-01-07T06:28:29.000000000", + "2019-01-07T06:29:41.000000000", + "2019-01-07T06:30:46.000000000", + "2019-01-07T06:31:24.000000000", + "2019-01-07T06:33:41.000000000", + "2019-01-07T06:35:58.000000000", + "2019-01-07T06:37:37.000000000", + "2019-01-07T06:37:42.000000000", + "2019-01-07T06:38:24.000000000", + "2019-01-07T06:39:12.000000000", + "2019-01-07T06:42:17.000000000", + "2019-01-07T06:42:24.000000000", + "2019-01-07T06:44:52.000000000", + "2019-01-07T06:45:17.000000000", + "2019-01-07T06:46:21.000000000", + "2019-01-07T06:48:06.000000000", + "2019-01-07T06:48:10.000000000", + "2019-01-07T06:48:11.000000000", + "2019-01-07T06:48:36.000000000", + "2019-01-07T06:50:04.000000000", + "2019-01-07T06:50:48.000000000", + "2019-01-07T06:52:46.000000000", + "2019-01-07T06:52:51.000000000", + "2019-01-07T06:52:59.000000000", + "2019-01-07T06:54:19.000000000", + "2019-01-07T06:55:09.000000000", + "2019-01-07T06:56:21.000000000", + "2019-01-07T06:57:13.000000000", + "2019-01-07T06:59:08.000000000", + "2019-01-07T06:59:34.000000000", + "2019-01-07T07:00:16.000000000", + "2019-01-07T07:00:39.000000000", + "2019-01-07T07:01:19.000000000", + "2019-01-07T07:01:57.000000000", + "2019-01-07T07:02:31.000000000", + "2019-01-07T07:02:34.000000000", + "2019-01-07T07:02:46.000000000", + "2019-01-07T07:02:53.000000000", + "2019-01-07T07:03:22.000000000", + "2019-01-07T07:04:06.000000000", + "2019-01-07T07:04:32.000000000", + "2019-01-07T07:05:15.000000000", + "2019-01-07T07:05:45.000000000", + "2019-01-07T07:06:36.000000000", + "2019-01-07T07:07:33.000000000", + "2019-01-07T07:07:55.000000000", + "2019-01-07T07:08:28.000000000", + "2019-01-07T07:08:56.000000000", + "2019-01-07T07:09:12.000000000", + "2019-01-07T07:10:29.000000000", + "2019-01-07T07:13:26.000000000", + "2019-01-07T07:13:40.000000000", + "2019-01-07T07:15:15.000000000", + "2019-01-07T07:15:42.000000000", + "2019-01-07T07:17:27.000000000", + "2019-01-07T07:17:42.000000000", + "2019-01-07T07:17:52.000000000", + "2019-01-07T07:17:57.000000000", + "2019-01-07T07:18:46.000000000", + "2019-01-07T07:19:00.000000000", + "2019-01-07T07:19:18.000000000", + "2019-01-07T07:19:50.000000000", + "2019-01-07T07:19:54.000000000", + "2019-01-07T07:19:59.000000000", + "2019-01-07T07:21:27.000000000", + "2019-01-07T07:22:13.000000000", + "2019-01-07T07:23:19.000000000", + "2019-01-07T07:23:45.000000000", + "2019-01-07T07:24:41.000000000", + "2019-01-07T07:25:00.000000000", + "2019-01-07T07:25:29.000000000", + "2019-01-07T07:28:08.000000000", + "2019-01-07T07:29:08.000000000", + "2019-01-07T07:29:18.000000000", + "2019-01-07T07:30:06.000000000", + "2019-01-07T07:30:28.000000000", + "2019-01-07T07:32:45.000000000", + "2019-01-07T07:33:21.000000000", + "2019-01-07T07:33:56.000000000", + "2019-01-07T07:34:20.000000000", + "2019-01-07T07:34:22.000000000", + "2019-01-07T07:34:43.000000000", + "2019-01-07T07:35:34.000000000", + "2019-01-07T07:39:25.000000000", + "2019-01-07T07:39:32.000000000", + "2019-01-07T07:40:17.000000000", + "2019-01-07T07:42:39.000000000", + "2019-01-07T07:44:54.000000000", + "2019-01-07T07:45:03.000000000", + "2019-01-07T07:49:30.000000000", + "2019-01-07T07:50:23.000000000", + "2019-01-07T07:51:10.000000000", + "2019-01-07T07:53:41.000000000", + "2019-01-07T07:54:52.000000000", + "2019-01-07T07:54:57.000000000", + "2019-01-07T07:57:42.000000000", + "2019-01-07T07:58:18.000000000", + "2019-01-07T07:58:31.000000000", + "2019-01-07T07:58:59.000000000", + "2019-01-07T08:01:03.000000000", + "2019-01-07T08:03:52.000000000", + "2019-01-07T08:04:40.000000000", + "2019-01-07T08:05:01.000000000", + "2019-01-07T08:05:51.000000000", + "2019-01-07T08:06:44.000000000", + "2019-01-07T08:07:09.000000000", + "2019-01-07T08:09:43.000000000", + "2019-01-07T08:09:58.000000000", + "2019-01-07T08:11:19.000000000", + "2019-01-07T08:11:48.000000000", + "2019-01-07T08:13:02.000000000", + "2019-01-07T08:15:25.000000000", + "2019-01-07T08:15:27.000000000", + "2019-01-07T08:15:33.000000000", + "2019-01-07T08:16:56.000000000", + "2019-01-07T08:17:29.000000000", + "2019-01-07T08:17:59.000000000", + "2019-01-07T08:19:06.000000000", + "2019-01-07T08:20:05.000000000", + "2019-01-07T08:21:58.000000000", + "2019-01-07T08:22:41.000000000", + "2019-01-07T08:26:02.000000000", + "2019-01-07T08:28:37.000000000", + "2019-01-07T08:29:42.000000000", + "2019-01-07T08:30:15.000000000", + "2019-01-07T08:31:13.000000000", + "2019-01-07T08:31:30.000000000", + "2019-01-07T08:31:45.000000000", + "2019-01-07T08:34:08.000000000", + "2019-01-07T08:34:49.000000000", + "2019-01-07T08:34:58.000000000", + "2019-01-07T08:35:29.000000000", + "2019-01-07T08:36:29.000000000", + "2019-01-07T08:37:00.000000000", + "2019-01-07T08:39:30.000000000", + "2019-01-07T08:41:16.000000000", + "2019-01-07T08:41:23.000000000", + "2019-01-07T08:42:37.000000000", + "2019-01-07T08:43:20.000000000", + "2019-01-07T08:43:26.000000000", + "2019-01-07T08:43:50.000000000", + "2019-01-07T08:45:21.000000000", + "2019-01-07T08:46:58.000000000", + "2019-01-07T08:47:59.000000000", + "2019-01-07T08:48:33.000000000", + "2019-01-07T08:49:40.000000000", + "2019-01-07T08:54:16.000000000", + "2019-01-07T08:54:37.000000000", + "2019-01-07T08:56:09.000000000", + "2019-01-07T08:56:12.000000000", + "2019-01-07T09:00:08.000000000", + "2019-01-07T09:00:34.000000000", + "2019-01-07T09:00:48.000000000", + "2019-01-07T09:00:57.000000000", + "2019-01-07T09:01:08.000000000", + "2019-01-07T09:01:30.000000000", + "2019-01-07T09:01:46.000000000", + "2019-01-07T09:01:59.000000000", + "2019-01-07T09:02:06.000000000", + "2019-01-07T09:02:46.000000000", + "2019-01-07T09:02:52.000000000", + "2019-01-07T09:03:11.000000000", + "2019-01-07T09:04:24.000000000", + "2019-01-07T09:04:44.000000000", + "2019-01-07T09:06:08.000000000", + "2019-01-07T09:06:16.000000000", + "2019-01-07T09:06:54.000000000", + "2019-01-07T09:09:28.000000000", + "2019-01-07T09:09:58.000000000", + "2019-01-07T09:10:21.000000000", + "2019-01-07T09:10:59.000000000", + "2019-01-07T09:12:27.000000000", + "2019-01-07T09:12:50.000000000", + "2019-01-07T09:13:04.000000000", + "2019-01-07T09:14:27.000000000", + "2019-01-07T09:14:34.000000000", + "2019-01-07T09:17:02.000000000", + "2019-01-07T09:17:30.000000000", + "2019-01-07T09:18:30.000000000", + "2019-01-07T09:18:37.000000000", + "2019-01-07T09:20:12.000000000", + "2019-01-07T09:20:25.000000000", + "2019-01-07T09:20:46.000000000", + "2019-01-07T09:22:10.000000000", + "2019-01-07T09:22:22.000000000", + "2019-01-07T09:23:10.000000000", + "2019-01-07T09:25:17.000000000", + "2019-01-07T09:25:29.000000000", + "2019-01-07T09:25:34.000000000", + "2019-01-07T09:26:24.000000000", + "2019-01-07T09:27:29.000000000", + "2019-01-07T09:28:32.000000000", + "2019-01-07T09:29:52.000000000", + "2019-01-07T09:30:51.000000000", + "2019-01-07T09:32:08.000000000", + "2019-01-07T09:33:07.000000000", + "2019-01-07T09:33:49.000000000", + "2019-01-07T09:33:55.000000000", + "2019-01-07T09:34:31.000000000", + "2019-01-07T09:36:46.000000000", + "2019-01-07T09:37:08.000000000", + "2019-01-07T09:37:18.000000000", + "2019-01-07T09:41:47.000000000", + "2019-01-07T09:44:14.000000000", + "2019-01-07T09:44:35.000000000", + "2019-01-07T09:45:29.000000000", + "2019-01-07T09:46:47.000000000", + "2019-01-07T09:47:55.000000000", + "2019-01-07T09:48:36.000000000", + "2019-01-07T09:49:57.000000000", + "2019-01-07T09:50:43.000000000", + "2019-01-07T09:55:13.000000000", + "2019-01-07T09:55:41.000000000", + "2019-01-07T09:56:33.000000000", + "2019-01-07T09:56:39.000000000", + "2019-01-07T09:56:48.000000000", + "2019-01-07T09:58:14.000000000", + "2019-01-07T09:58:28.000000000", + "2019-01-07T09:59:38.000000000", + "2019-01-07T10:01:23.000000000", + "2019-01-07T10:01:38.000000000", + "2019-01-07T10:01:48.000000000", + "2019-01-07T10:05:22.000000000", + "2019-01-07T10:07:15.000000000", + "2019-01-07T10:07:21.000000000", + "2019-01-07T10:12:37.000000000", + "2019-01-07T10:15:16.000000000", + "2019-01-07T10:15:50.000000000", + "2019-01-07T10:15:52.000000000", + "2019-01-07T10:16:52.000000000", + "2019-01-07T10:18:25.000000000", + "2019-01-07T10:19:32.000000000", + "2019-01-07T10:20:13.000000000", + "2019-01-07T10:23:19.000000000", + "2019-01-07T10:23:38.000000000", + "2019-01-07T10:24:50.000000000", + "2019-01-07T10:25:41.000000000", + "2019-01-07T10:26:32.000000000", + "2019-01-07T10:28:06.000000000", + "2019-01-07T10:28:11.000000000", + "2019-01-07T10:29:17.000000000", + "2019-01-07T10:30:03.000000000", + "2019-01-07T10:30:26.000000000", + "2019-01-07T10:30:36.000000000", + "2019-01-07T10:31:30.000000000", + "2019-01-07T10:31:52.000000000", + "2019-01-07T10:31:53.000000000", + "2019-01-07T10:32:08.000000000", + "2019-01-07T10:33:34.000000000", + "2019-01-07T10:35:15.000000000", + "2019-01-07T10:35:53.000000000", + "2019-01-07T10:36:00.000000000", + "2019-01-07T10:36:46.000000000", + "2019-01-07T10:36:58.000000000", + "2019-01-07T10:38:52.000000000", + "2019-01-07T10:40:07.000000000", + "2019-01-07T10:43:12.000000000", + "2019-01-07T10:43:13.000000000", + "2019-01-07T10:45:07.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:46:47.000000000", + "2019-01-07T10:47:43.000000000", + "2019-01-07T10:47:46.000000000", + "2019-01-07T10:49:28.000000000", + "2019-01-07T10:49:39.000000000", + "2019-01-07T10:50:58.000000000", + "2019-01-07T10:52:57.000000000", + "2019-01-07T10:53:15.000000000", + "2019-01-07T10:54:23.000000000", + "2019-01-07T10:54:30.000000000", + "2019-01-07T10:54:56.000000000", + "2019-01-07T10:54:59.000000000", + "2019-01-07T10:56:17.000000000", + "2019-01-07T10:56:40.000000000", + "2019-01-07T10:57:41.000000000", + "2019-01-07T10:58:07.000000000", + "2019-01-07T10:58:09.000000000", + "2019-01-07T10:58:17.000000000", + "2019-01-07T10:58:29.000000000", + "2019-01-07T11:00:31.000000000", + "2019-01-07T11:02:52.000000000", + "2019-01-07T11:03:56.000000000", + "2019-01-07T11:04:09.000000000", + "2019-01-07T11:04:15.000000000", + "2019-01-07T11:04:28.000000000", + "2019-01-07T11:06:37.000000000", + "2019-01-07T11:07:31.000000000", + "2019-01-07T11:11:05.000000000", + "2019-01-07T11:11:37.000000000", + "2019-01-07T11:13:27.000000000", + "2019-01-07T11:13:40.000000000", + "2019-01-07T11:13:54.000000000", + "2019-01-07T11:14:59.000000000", + "2019-01-07T11:16:48.000000000", + "2019-01-07T11:18:00.000000000", + "2019-01-07T11:18:20.000000000", + "2019-01-07T11:19:27.000000000", + "2019-01-07T11:20:11.000000000", + "2019-01-07T11:20:18.000000000", + "2019-01-07T11:22:19.000000000", + "2019-01-07T11:22:24.000000000", + "2019-01-07T11:22:46.000000000", + "2019-01-07T11:23:28.000000000", + "2019-01-07T11:23:30.000000000", + "2019-01-07T11:25:02.000000000", + "2019-01-07T11:25:36.000000000", + "2019-01-07T11:26:23.000000000", + "2019-01-07T11:27:52.000000000", + "2019-01-07T11:28:15.000000000", + "2019-01-07T11:30:02.000000000", + "2019-01-07T11:30:06.000000000", + "2019-01-07T11:30:28.000000000", + "2019-01-07T11:30:45.000000000", + "2019-01-07T11:30:55.000000000", + "2019-01-07T11:32:28.000000000", + "2019-01-07T11:32:45.000000000", + "2019-01-07T11:33:31.000000000", + "2019-01-07T11:36:10.000000000", + "2019-01-07T11:36:16.000000000", + "2019-01-07T11:37:20.000000000", + "2019-01-07T11:38:17.000000000", + "2019-01-07T11:40:25.000000000", + "2019-01-07T11:40:42.000000000", + "2019-01-07T11:43:30.000000000", + "2019-01-07T11:43:51.000000000", + "2019-01-07T11:45:09.000000000", + "2019-01-07T11:45:58.000000000", + "2019-01-07T11:46:13.000000000", + "2019-01-07T11:46:58.000000000", + "2019-01-07T11:47:05.000000000", + "2019-01-07T11:47:59.000000000", + "2019-01-07T11:48:13.000000000", + "2019-01-07T11:48:19.000000000", + "2019-01-07T11:49:55.000000000", + "2019-01-07T11:51:45.000000000", + "2019-01-07T11:52:39.000000000", + "2019-01-07T11:53:10.000000000", + "2019-01-07T11:53:20.000000000", + "2019-01-07T11:54:12.000000000", + "2019-01-07T11:55:35.000000000", + "2019-01-07T11:56:47.000000000", + "2019-01-07T11:57:09.000000000", + "2019-01-07T11:57:44.000000000", + "2019-01-07T11:58:36.000000000", + "2019-01-07T11:59:21.000000000", + "2019-01-07T12:02:52.000000000", + "2019-01-07T12:03:19.000000000", + "2019-01-07T12:04:02.000000000", + "2019-01-07T12:04:20.000000000", + "2019-01-07T12:04:34.000000000", + "2019-01-07T12:06:42.000000000", + "2019-01-07T12:07:19.000000000", + "2019-01-07T12:08:44.000000000", + "2019-01-07T12:09:18.000000000", + "2019-01-07T12:09:21.000000000", + "2019-01-07T12:09:39.000000000", + "2019-01-07T12:11:29.000000000", + "2019-01-07T12:12:21.000000000", + "2019-01-07T12:13:07.000000000", + "2019-01-07T12:13:30.000000000", + "2019-01-07T12:13:33.000000000", + "2019-01-07T12:14:13.000000000", + "2019-01-07T12:15:12.000000000", + "2019-01-07T12:16:37.000000000", + "2019-01-07T12:16:49.000000000", + "2019-01-07T12:18:00.000000000", + "2019-01-07T12:19:40.000000000", + "2019-01-07T12:20:23.000000000", + "2019-01-07T12:21:48.000000000", + "2019-01-07T12:22:11.000000000", + "2019-01-07T12:24:40.000000000", + "2019-01-07T12:25:00.000000000", + "2019-01-07T12:26:26.000000000", + "2019-01-07T12:26:59.000000000", + "2019-01-07T12:28:26.000000000", + "2019-01-07T12:28:50.000000000", + "2019-01-07T12:28:52.000000000", + "2019-01-07T12:29:23.000000000", + "2019-01-07T12:29:33.000000000", + "2019-01-07T12:30:17.000000000", + "2019-01-07T12:31:21.000000000", + "2019-01-07T12:32:40.000000000", + "2019-01-07T12:34:21.000000000", + "2019-01-07T12:34:38.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:37:16.000000000", + "2019-01-07T12:37:20.000000000", + "2019-01-07T12:37:23.000000000", + "2019-01-07T12:38:07.000000000", + "2019-01-07T12:39:48.000000000", + "2019-01-07T12:40:26.000000000", + "2019-01-07T12:41:30.000000000", + "2019-01-07T12:41:39.000000000", + "2019-01-07T12:41:43.000000000", + "2019-01-07T12:41:53.000000000", + "2019-01-07T12:43:40.000000000", + "2019-01-07T12:46:37.000000000", + "2019-01-07T12:48:30.000000000", + "2019-01-07T12:49:43.000000000", + "2019-01-07T12:51:14.000000000", + "2019-01-07T12:53:05.000000000", + "2019-01-07T12:53:14.000000000", + "2019-01-07T12:53:21.000000000", + "2019-01-07T12:53:37.000000000", + "2019-01-07T12:54:18.000000000", + "2019-01-07T12:54:56.000000000", + "2019-01-07T12:55:43.000000000", + "2019-01-07T12:56:47.000000000", + "2019-01-07T12:57:02.000000000", + "2019-01-07T12:57:17.000000000", + "2019-01-07T12:57:29.000000000", + "2019-01-07T12:57:36.000000000", + "2019-01-07T12:57:49.000000000", + "2019-01-07T12:58:38.000000000", + "2019-01-07T12:58:54.000000000", + "2019-01-07T13:00:51.000000000", + "2019-01-07T13:04:20.000000000", + "2019-01-07T13:05:15.000000000", + "2019-01-07T13:05:17.000000000", + "2019-01-07T13:05:41.000000000", + "2019-01-07T13:07:49.000000000", + "2019-01-07T13:08:20.000000000", + "2019-01-07T13:10:13.000000000", + "2019-01-07T13:11:02.000000000", + "2019-01-07T13:11:53.000000000", + "2019-01-07T13:14:17.000000000", + "2019-01-07T13:15:10.000000000", + "2019-01-07T13:15:17.000000000", + "2019-01-07T13:17:04.000000000", + "2019-01-07T13:18:12.000000000", + "2019-01-07T13:19:34.000000000", + "2019-01-07T13:20:59.000000000", + "2019-01-07T13:22:38.000000000", + "2019-01-07T13:23:31.000000000", + "2019-01-07T13:25:14.000000000", + "2019-01-07T13:25:58.000000000", + "2019-01-07T13:26:10.000000000", + "2019-01-07T13:26:49.000000000", + "2019-01-07T13:28:35.000000000", + "2019-01-07T13:28:46.000000000", + "2019-01-07T13:28:48.000000000", + "2019-01-07T13:30:18.000000000", + "2019-01-07T13:31:46.000000000", + "2019-01-07T13:32:06.000000000", + "2019-01-07T13:32:10.000000000", + "2019-01-07T13:32:12.000000000", + "2019-01-07T13:32:17.000000000", + "2019-01-07T13:34:46.000000000", + "2019-01-07T13:36:02.000000000", + "2019-01-07T13:36:48.000000000", + "2019-01-07T13:37:05.000000000", + "2019-01-07T13:38:07.000000000", + "2019-01-07T13:38:38.000000000", + "2019-01-07T13:40:21.000000000", + "2019-01-07T13:40:28.000000000", + "2019-01-07T13:42:11.000000000", + "2019-01-07T13:42:59.000000000", + "2019-01-07T13:46:11.000000000", + "2019-01-07T13:47:46.000000000", + "2019-01-07T13:47:49.000000000", + "2019-01-07T13:48:38.000000000", + "2019-01-07T13:49:23.000000000", + "2019-01-07T13:50:32.000000000", + "2019-01-07T13:50:36.000000000", + "2019-01-07T13:53:32.000000000", + "2019-01-07T13:55:19.000000000", + "2019-01-07T13:58:09.000000000", + "2019-01-07T14:03:02.000000000", + "2019-01-07T14:04:28.000000000", + "2019-01-07T14:05:13.000000000", + "2019-01-07T14:07:51.000000000", + "2019-01-07T14:10:12.000000000", + "2019-01-07T14:14:28.000000000", + "2019-01-07T14:16:06.000000000", + "2019-01-07T14:17:54.000000000", + "2019-01-07T14:18:35.000000000", + "2019-01-07T14:19:19.000000000", + "2019-01-07T14:20:22.000000000", + "2019-01-07T14:20:31.000000000", + "2019-01-07T14:21:09.000000000", + "2019-01-07T14:21:41.000000000", + "2019-01-07T14:22:49.000000000", + "2019-01-07T14:22:55.000000000", + "2019-01-07T14:23:06.000000000", + "2019-01-07T14:23:50.000000000", + "2019-01-07T14:25:47.000000000", + "2019-01-07T14:26:25.000000000", + "2019-01-07T14:26:31.000000000", + "2019-01-07T14:28:13.000000000", + "2019-01-07T14:29:32.000000000", + "2019-01-07T14:29:59.000000000", + "2019-01-07T14:30:03.000000000", + "2019-01-07T14:30:52.000000000", + "2019-01-07T14:31:01.000000000", + "2019-01-07T14:31:52.000000000", + "2019-01-07T14:32:53.000000000", + "2019-01-07T14:35:39.000000000", + "2019-01-07T14:36:39.000000000", + "2019-01-07T14:37:06.000000000", + "2019-01-07T14:38:05.000000000", + "2019-01-07T14:39:51.000000000", + "2019-01-07T14:40:37.000000000", + "2019-01-07T14:41:41.000000000", + "2019-01-07T14:43:55.000000000", + "2019-01-07T14:45:19.000000000", + "2019-01-07T14:45:42.000000000", + "2019-01-07T14:46:40.000000000", + "2019-01-07T14:51:08.000000000", + "2019-01-07T14:52:27.000000000", + "2019-01-07T14:52:46.000000000", + "2019-01-07T14:54:51.000000000", + "2019-01-07T14:56:59.000000000", + "2019-01-07T14:57:06.000000000", + "2019-01-07T14:59:46.000000000", + "2019-01-07T15:02:39.000000000", + "2019-01-07T15:02:40.000000000", + "2019-01-07T15:03:24.000000000", + "2019-01-07T15:06:10.000000000", + "2019-01-07T15:07:31.000000000", + "2019-01-07T15:07:47.000000000", + "2019-01-07T15:08:46.000000000", + "2019-01-07T15:08:51.000000000", + "2019-01-07T15:09:09.000000000", + "2019-01-07T15:10:13.000000000", + "2019-01-07T15:10:20.000000000", + "2019-01-07T15:10:47.000000000", + "2019-01-07T15:12:36.000000000", + "2019-01-07T15:12:54.000000000", + "2019-01-07T15:13:44.000000000", + "2019-01-07T15:13:50.000000000", + "2019-01-07T15:16:59.000000000", + "2019-01-07T15:17:20.000000000", + "2019-01-07T15:17:33.000000000", + "2019-01-07T15:17:53.000000000", + "2019-01-07T15:18:33.000000000", + "2019-01-07T15:18:47.000000000", + "2019-01-07T15:19:37.000000000", + "2019-01-07T15:19:56.000000000", + "2019-01-07T15:20:14.000000000", + "2019-01-07T15:20:47.000000000", + "2019-01-07T15:21:32.000000000", + "2019-01-07T15:22:29.000000000", + "2019-01-07T15:22:31.000000000", + "2019-01-07T15:23:04.000000000", + "2019-01-07T15:23:06.000000000", + "2019-01-07T15:23:10.000000000", + "2019-01-07T15:23:38.000000000", + "2019-01-07T15:24:16.000000000", + "2019-01-07T15:25:52.000000000", + "2019-01-07T15:26:26.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:18.000000000", + "2019-01-07T15:27:29.000000000", + "2019-01-07T15:28:42.000000000", + "2019-01-07T15:28:52.000000000", + "2019-01-07T15:29:37.000000000", + "2019-01-07T15:29:42.000000000", + "2019-01-07T15:30:09.000000000", + "2019-01-07T15:30:54.000000000", + "2019-01-07T15:32:15.000000000", + "2019-01-07T15:32:21.000000000", + "2019-01-07T15:32:24.000000000", + "2019-01-07T15:32:48.000000000", + "2019-01-07T15:33:31.000000000", + "2019-01-07T15:34:32.000000000", + "2019-01-07T15:34:36.000000000", + "2019-01-07T15:34:50.000000000", + "2019-01-07T15:35:15.000000000", + "2019-01-07T15:35:46.000000000", + "2019-01-07T15:36:18.000000000", + "2019-01-07T15:38:40.000000000", + "2019-01-07T15:39:20.000000000", + "2019-01-07T15:40:42.000000000", + "2019-01-07T15:42:50.000000000", + "2019-01-07T15:43:02.000000000", + "2019-01-07T15:43:58.000000000", + "2019-01-07T15:45:34.000000000", + "2019-01-07T15:48:03.000000000", + "2019-01-07T15:49:01.000000000", + "2019-01-07T15:50:21.000000000", + "2019-01-07T15:51:06.000000000", + "2019-01-07T15:52:46.000000000", + "2019-01-07T15:52:56.000000000", + "2019-01-07T15:54:29.000000000", + "2019-01-07T15:54:44.000000000", + "2019-01-07T15:56:34.000000000", + "2019-01-07T15:56:40.000000000", + "2019-01-07T15:59:16.000000000", + "2019-01-07T15:59:59.000000000", + "2019-01-07T16:01:15.000000000", + "2019-01-07T16:02:34.000000000", + "2019-01-07T16:03:19.000000000", + "2019-01-07T16:03:56.000000000", + "2019-01-07T16:04:48.000000000", + "2019-01-07T16:06:47.000000000", + "2019-01-07T16:07:23.000000000", + "2019-01-07T16:09:10.000000000", + "2019-01-07T16:10:30.000000000", + "2019-01-07T16:10:45.000000000", + "2019-01-07T16:10:52.000000000", + "2019-01-07T16:10:58.000000000", + "2019-01-07T16:11:16.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:58.000000000", + "2019-01-07T16:12:14.000000000", + "2019-01-07T16:13:08.000000000", + "2019-01-07T16:14:47.000000000", + "2019-01-07T16:15:50.000000000", + "2019-01-07T16:15:55.000000000", + "2019-01-07T16:17:00.000000000", + "2019-01-07T16:17:27.000000000", + "2019-01-07T16:17:41.000000000", + "2019-01-07T16:17:46.000000000", + "2019-01-07T16:18:09.000000000", + "2019-01-07T16:18:42.000000000", + "2019-01-07T16:19:22.000000000", + "2019-01-07T16:20:53.000000000", + "2019-01-07T16:21:32.000000000", + "2019-01-07T16:26:22.000000000", + "2019-01-07T16:26:40.000000000", + "2019-01-07T16:27:28.000000000", + "2019-01-07T16:27:32.000000000", + "2019-01-07T16:29:07.000000000", + "2019-01-07T16:29:40.000000000", + "2019-01-07T16:29:56.000000000", + "2019-01-07T16:31:08.000000000", + "2019-01-07T16:31:10.000000000", + "2019-01-07T16:31:24.000000000", + "2019-01-07T16:31:55.000000000", + "2019-01-07T16:32:27.000000000", + "2019-01-07T16:33:15.000000000", + "2019-01-07T16:34:54.000000000", + "2019-01-07T16:35:06.000000000", + "2019-01-07T16:35:13.000000000", + "2019-01-07T16:36:21.000000000", + "2019-01-07T16:40:15.000000000", + "2019-01-07T16:40:27.000000000", + "2019-01-07T16:40:50.000000000", + "2019-01-07T16:42:41.000000000", + "2019-01-07T16:43:06.000000000", + "2019-01-07T16:44:00.000000000", + "2019-01-07T16:44:05.000000000", + "2019-01-07T16:44:17.000000000", + "2019-01-07T16:45:43.000000000", + "2019-01-07T16:47:00.000000000", + "2019-01-07T16:47:48.000000000", + "2019-01-07T16:47:54.000000000", + "2019-01-07T16:48:14.000000000", + "2019-01-07T16:48:28.000000000", + "2019-01-07T16:48:39.000000000", + "2019-01-07T16:51:00.000000000", + "2019-01-07T16:53:11.000000000", + "2019-01-07T16:53:36.000000000", + "2019-01-07T16:58:40.000000000", + "2019-01-07T16:59:33.000000000", + "2019-01-07T17:00:56.000000000", + "2019-01-07T17:01:11.000000000", + "2019-01-07T17:02:04.000000000", + "2019-01-07T17:02:06.000000000", + "2019-01-07T17:02:12.000000000", + "2019-01-07T17:03:04.000000000", + "2019-01-07T17:03:36.000000000", + "2019-01-07T17:03:40.000000000", + "2019-01-07T17:04:04.000000000", + "2019-01-07T17:05:10.000000000", + "2019-01-07T17:06:20.000000000", + "2019-01-07T17:08:10.000000000", + "2019-01-07T17:10:31.000000000", + "2019-01-07T17:11:38.000000000", + "2019-01-07T17:12:00.000000000", + "2019-01-07T17:12:08.000000000", + "2019-01-07T17:13:10.000000000", + "2019-01-07T17:13:53.000000000", + "2019-01-07T17:14:00.000000000", + "2019-01-07T17:14:19.000000000", + "2019-01-07T17:14:37.000000000", + "2019-01-07T17:15:38.000000000", + "2019-01-07T17:18:17.000000000", + "2019-01-07T17:18:55.000000000", + "2019-01-07T17:19:01.000000000", + "2019-01-07T17:19:48.000000000", + "2019-01-07T17:21:56.000000000", + "2019-01-07T17:22:58.000000000", + "2019-01-07T17:24:43.000000000", + "2019-01-07T17:24:44.000000000", + "2019-01-07T17:26:03.000000000", + "2019-01-07T17:26:33.000000000", + "2019-01-07T17:27:46.000000000", + "2019-01-07T17:28:15.000000000", + "2019-01-07T17:29:33.000000000", + "2019-01-07T17:29:57.000000000", + "2019-01-07T17:30:37.000000000", + "2019-01-07T17:30:58.000000000", + "2019-01-07T17:33:50.000000000", + "2019-01-07T17:36:31.000000000", + "2019-01-07T17:40:25.000000000", + "2019-01-07T17:40:56.000000000", + "2019-01-07T17:40:57.000000000", + "2019-01-07T17:41:05.000000000", + "2019-01-07T17:41:40.000000000", + "2019-01-07T17:41:49.000000000", + "2019-01-07T17:42:45.000000000", + "2019-01-07T17:44:43.000000000", + "2019-01-07T17:44:48.000000000", + "2019-01-07T17:45:13.000000000", + "2019-01-07T17:46:37.000000000", + "2019-01-07T17:47:49.000000000", + "2019-01-07T17:47:56.000000000", + "2019-01-07T17:48:21.000000000", + "2019-01-07T17:48:56.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:55:15.000000000", + "2019-01-07T17:58:33.000000000", + "2019-01-07T18:00:20.000000000", + "2019-01-07T18:01:10.000000000", + "2019-01-07T18:01:29.000000000", + "2019-01-07T18:01:43.000000000", + "2019-01-07T18:02:13.000000000", + "2019-01-07T18:03:47.000000000", + "2019-01-07T18:07:28.000000000", + "2019-01-07T18:09:09.000000000", + "2019-01-07T18:10:29.000000000", + "2019-01-07T18:11:04.000000000", + "2019-01-07T18:13:44.000000000", + "2019-01-07T18:14:41.000000000", + "2019-01-07T18:14:59.000000000", + "2019-01-07T18:15:36.000000000", + "2019-01-07T18:16:30.000000000", + "2019-01-07T18:16:44.000000000", + "2019-01-07T18:16:46.000000000", + "2019-01-07T18:18:01.000000000", + "2019-01-07T18:19:02.000000000", + "2019-01-07T18:19:05.000000000", + "2019-01-07T18:20:15.000000000", + "2019-01-07T18:20:24.000000000", + "2019-01-07T18:21:23.000000000", + "2019-01-07T18:21:48.000000000", + "2019-01-07T18:22:13.000000000", + "2019-01-07T18:22:19.000000000", + "2019-01-07T18:22:38.000000000", + "2019-01-07T18:23:29.000000000", + "2019-01-07T18:25:47.000000000", + "2019-01-07T18:26:12.000000000", + "2019-01-07T18:26:52.000000000", + "2019-01-07T18:27:09.000000000", + "2019-01-07T18:27:25.000000000", + "2019-01-07T18:28:31.000000000", + "2019-01-07T18:29:57.000000000", + "2019-01-07T18:30:04.000000000", + "2019-01-07T18:32:16.000000000", + "2019-01-07T18:32:53.000000000", + "2019-01-07T18:33:48.000000000", + "2019-01-07T18:33:58.000000000", + "2019-01-07T18:35:25.000000000", + "2019-01-07T18:36:00.000000000", + "2019-01-07T18:36:08.000000000", + "2019-01-07T18:37:32.000000000", + "2019-01-07T18:38:49.000000000", + "2019-01-07T18:42:37.000000000", + "2019-01-07T18:44:55.000000000", + "2019-01-07T18:44:56.000000000", + "2019-01-07T18:45:08.000000000", + "2019-01-07T18:46:10.000000000", + "2019-01-07T18:49:40.000000000", + "2019-01-07T18:51:24.000000000", + "2019-01-07T18:51:53.000000000", + "2019-01-07T18:52:01.000000000", + "2019-01-07T18:52:35.000000000", + "2019-01-07T18:53:48.000000000", + "2019-01-07T18:54:13.000000000", + "2019-01-07T18:56:21.000000000", + "2019-01-07T18:56:58.000000000", + "2019-01-07T18:57:42.000000000", + "2019-01-07T18:58:49.000000000", + "2019-01-07T19:00:22.000000000", + "2019-01-07T19:02:06.000000000", + "2019-01-07T19:02:13.000000000", + "2019-01-07T19:02:15.000000000", + "2019-01-07T19:03:39.000000000", + "2019-01-07T19:03:44.000000000", + "2019-01-07T19:06:11.000000000", + "2019-01-07T19:06:22.000000000", + "2019-01-07T19:08:05.000000000", + "2019-01-07T19:08:45.000000000", + "2019-01-07T19:11:28.000000000", + "2019-01-07T19:12:51.000000000", + "2019-01-07T19:13:41.000000000", + "2019-01-07T19:13:44.000000000", + "2019-01-07T19:14:56.000000000", + "2019-01-07T19:15:14.000000000", + "2019-01-07T19:16:24.000000000", + "2019-01-07T19:16:34.000000000", + "2019-01-07T19:17:20.000000000", + "2019-01-07T19:18:21.000000000", + "2019-01-07T19:19:07.000000000", + "2019-01-07T19:19:33.000000000", + "2019-01-07T19:20:53.000000000", + "2019-01-07T19:21:16.000000000", + "2019-01-07T19:22:43.000000000", + "2019-01-07T19:22:58.000000000", + "2019-01-07T19:26:05.000000000", + "2019-01-07T19:26:07.000000000", + "2019-01-07T19:26:13.000000000", + "2019-01-07T19:27:23.000000000", + "2019-01-07T19:28:01.000000000", + "2019-01-07T19:29:41.000000000", + "2019-01-07T19:30:16.000000000", + "2019-01-07T19:30:22.000000000", + "2019-01-07T19:30:25.000000000", + "2019-01-07T19:30:47.000000000", + "2019-01-07T19:32:59.000000000", + "2019-01-07T19:33:36.000000000", + "2019-01-07T19:34:10.000000000", + "2019-01-07T19:34:52.000000000", + "2019-01-07T19:35:23.000000000", + "2019-01-07T19:38:16.000000000", + "2019-01-07T19:38:18.000000000", + "2019-01-07T19:38:47.000000000", + "2019-01-07T19:39:45.000000000", + "2019-01-07T19:39:50.000000000", + "2019-01-07T19:40:48.000000000", + "2019-01-07T19:41:16.000000000", + "2019-01-07T19:42:24.000000000", + "2019-01-07T19:43:09.000000000", + "2019-01-07T19:44:07.000000000", + "2019-01-07T19:44:22.000000000", + "2019-01-07T19:44:42.000000000", + "2019-01-07T19:47:22.000000000", + "2019-01-07T19:48:07.000000000", + "2019-01-07T19:48:23.000000000", + "2019-01-07T19:49:53.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:52:28.000000000", + "2019-01-07T19:52:45.000000000", + "2019-01-07T19:52:52.000000000", + "2019-01-07T19:56:35.000000000", + "2019-01-07T19:59:05.000000000", + "2019-01-07T20:00:25.000000000", + "2019-01-07T20:01:14.000000000", + "2019-01-07T20:01:20.000000000", + "2019-01-07T20:01:46.000000000", + "2019-01-07T20:01:47.000000000", + "2019-01-07T20:04:02.000000000", + "2019-01-07T20:04:14.000000000", + "2019-01-07T20:07:00.000000000", + "2019-01-07T20:08:32.000000000", + "2019-01-07T20:11:29.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:13:41.000000000", + "2019-01-07T20:16:22.000000000", + "2019-01-07T20:18:24.000000000", + "2019-01-07T20:18:39.000000000", + "2019-01-07T20:19:22.000000000", + "2019-01-07T20:20:35.000000000", + "2019-01-07T20:21:25.000000000", + "2019-01-07T20:22:52.000000000", + "2019-01-07T20:23:41.000000000", + "2019-01-07T20:32:51.000000000", + "2019-01-07T20:33:56.000000000", + "2019-01-07T20:34:52.000000000", + "2019-01-07T20:35:25.000000000", + "2019-01-07T20:36:27.000000000", + "2019-01-07T20:39:11.000000000", + "2019-01-07T20:42:25.000000000", + "2019-01-07T20:43:18.000000000", + "2019-01-07T20:43:28.000000000", + "2019-01-07T20:45:30.000000000", + "2019-01-07T20:45:45.000000000", + "2019-01-07T20:46:10.000000000", + "2019-01-07T20:47:16.000000000", + "2019-01-07T20:47:20.000000000", + "2019-01-07T20:47:26.000000000", + "2019-01-07T20:48:38.000000000", + "2019-01-07T20:49:33.000000000", + "2019-01-07T20:49:43.000000000", + "2019-01-07T20:51:31.000000000", + "2019-01-07T20:52:22.000000000", + "2019-01-07T20:53:33.000000000", + "2019-01-07T20:54:04.000000000", + "2019-01-07T20:55:24.000000000", + "2019-01-07T20:56:08.000000000", + "2019-01-07T20:57:22.000000000", + "2019-01-07T20:57:30.000000000", + "2019-01-07T20:58:00.000000000", + "2019-01-07T20:59:33.000000000", + "2019-01-07T21:01:06.000000000", + "2019-01-07T21:01:19.000000000", + "2019-01-07T21:01:43.000000000", + "2019-01-07T21:03:37.000000000", + "2019-01-07T21:03:45.000000000", + "2019-01-07T21:04:37.000000000", + "2019-01-07T21:06:54.000000000", + "2019-01-07T21:07:33.000000000", + "2019-01-07T21:07:41.000000000", + "2019-01-07T21:09:00.000000000", + "2019-01-07T21:11:30.000000000", + "2019-01-07T21:12:41.000000000", + "2019-01-07T21:14:34.000000000", + "2019-01-07T21:14:42.000000000", + "2019-01-07T21:15:47.000000000", + "2019-01-07T21:15:49.000000000", + "2019-01-07T21:16:53.000000000", + "2019-01-07T21:18:39.000000000", + "2019-01-07T21:19:04.000000000", + "2019-01-07T21:20:05.000000000", + "2019-01-07T21:20:29.000000000", + "2019-01-07T21:20:50.000000000", + "2019-01-07T21:21:28.000000000", + "2019-01-07T21:23:26.000000000", + "2019-01-07T21:23:31.000000000", + "2019-01-07T21:24:18.000000000", + "2019-01-07T21:25:49.000000000", + "2019-01-07T21:26:42.000000000", + "2019-01-07T21:27:30.000000000", + "2019-01-07T21:27:42.000000000", + "2019-01-07T21:28:10.000000000", + "2019-01-07T21:30:39.000000000", + "2019-01-07T21:32:14.000000000", + "2019-01-07T21:32:27.000000000", + "2019-01-07T21:35:11.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:30.000000000", + "2019-01-07T21:37:19.000000000", + "2019-01-07T21:38:08.000000000", + "2019-01-07T21:38:11.000000000", + "2019-01-07T21:38:33.000000000", + "2019-01-07T21:39:03.000000000", + "2019-01-07T21:40:51.000000000", + "2019-01-07T21:41:21.000000000", + "2019-01-07T21:42:55.000000000", + "2019-01-07T21:43:30.000000000", + "2019-01-07T21:43:59.000000000", + "2019-01-07T21:44:51.000000000", + "2019-01-07T21:45:42.000000000", + "2019-01-07T21:48:22.000000000", + "2019-01-07T21:48:57.000000000", + "2019-01-07T21:49:42.000000000", + "2019-01-07T21:50:48.000000000", + "2019-01-07T21:51:14.000000000", + "2019-01-07T21:51:41.000000000", + "2019-01-07T21:51:46.000000000", + "2019-01-07T21:52:38.000000000", + "2019-01-07T21:53:55.000000000", + "2019-01-07T21:53:57.000000000", + "2019-01-07T21:54:15.000000000", + "2019-01-07T21:56:30.000000000", + "2019-01-07T21:57:11.000000000", + "2019-01-07T21:57:15.000000000", + "2019-01-07T21:57:41.000000000", + "2019-01-07T21:59:05.000000000", + "2019-01-07T21:59:13.000000000", + "2019-01-07T22:01:26.000000000", + "2019-01-07T22:05:14.000000000", + "2019-01-07T22:05:55.000000000", + "2019-01-07T22:06:48.000000000", + "2019-01-07T22:07:49.000000000", + "2019-01-07T22:08:37.000000000", + "2019-01-07T22:12:30.000000000", + "2019-01-07T22:12:58.000000000", + "2019-01-07T22:13:10.000000000", + "2019-01-07T22:14:17.000000000", + "2019-01-07T22:14:32.000000000", + "2019-01-07T22:14:58.000000000", + "2019-01-07T22:15:10.000000000", + "2019-01-07T22:15:30.000000000", + "2019-01-07T22:16:40.000000000", + "2019-01-07T22:17:11.000000000", + "2019-01-07T22:18:02.000000000", + "2019-01-07T22:20:17.000000000", + "2019-01-07T22:20:40.000000000", + "2019-01-07T22:21:51.000000000", + "2019-01-07T22:22:10.000000000", + "2019-01-07T22:22:26.000000000", + "2019-01-07T22:24:52.000000000", + "2019-01-07T22:24:59.000000000", + "2019-01-07T22:25:26.000000000", + "2019-01-07T22:26:45.000000000", + "2019-01-07T22:26:58.000000000", + "2019-01-07T22:28:48.000000000", + "2019-01-07T22:30:42.000000000", + "2019-01-07T22:31:17.000000000", + "2019-01-07T22:31:20.000000000", + "2019-01-07T22:31:38.000000000", + "2019-01-07T22:31:46.000000000", + "2019-01-07T22:32:47.000000000", + "2019-01-07T22:33:28.000000000", + "2019-01-07T22:34:16.000000000", + "2019-01-07T22:34:20.000000000", + "2019-01-07T22:34:36.000000000", + "2019-01-07T22:35:41.000000000", + "2019-01-07T22:37:25.000000000", + "2019-01-07T22:37:27.000000000", + "2019-01-07T22:38:05.000000000", + "2019-01-07T22:39:10.000000000", + "2019-01-07T22:39:21.000000000", + "2019-01-07T22:40:05.000000000", + "2019-01-07T22:40:25.000000000", + "2019-01-07T22:40:49.000000000", + "2019-01-07T22:41:31.000000000", + "2019-01-07T22:42:13.000000000", + "2019-01-07T22:42:27.000000000", + "2019-01-07T22:42:40.000000000", + "2019-01-07T22:43:33.000000000", + "2019-01-07T22:44:48.000000000", + "2019-01-07T22:45:51.000000000", + "2019-01-07T22:47:41.000000000", + "2019-01-07T22:47:55.000000000", + "2019-01-07T22:48:03.000000000", + "2019-01-07T22:49:30.000000000", + "2019-01-07T22:51:00.000000000", + "2019-01-07T22:52:44.000000000", + "2019-01-07T22:53:35.000000000", + "2019-01-07T22:53:53.000000000", + "2019-01-07T22:56:35.000000000", + "2019-01-07T22:58:50.000000000", + "2019-01-07T22:59:07.000000000", + "2019-01-07T23:00:06.000000000", + "2019-01-07T23:08:30.000000000", + "2019-01-07T23:09:38.000000000", + "2019-01-07T23:10:21.000000000", + "2019-01-07T23:10:40.000000000", + "2019-01-07T23:11:05.000000000", + "2019-01-07T23:14:01.000000000", + "2019-01-07T23:14:39.000000000", + "2019-01-07T23:14:44.000000000", + "2019-01-07T23:16:26.000000000", + "2019-01-07T23:19:06.000000000", + "2019-01-07T23:19:58.000000000", + "2019-01-07T23:20:46.000000000", + "2019-01-07T23:20:49.000000000", + "2019-01-07T23:21:58.000000000", + "2019-01-07T23:23:04.000000000", + "2019-01-07T23:25:11.000000000", + "2019-01-07T23:26:26.000000000", + "2019-01-07T23:27:14.000000000", + "2019-01-07T23:27:21.000000000", + "2019-01-07T23:28:16.000000000", + "2019-01-07T23:29:24.000000000", + "2019-01-07T23:30:44.000000000", + "2019-01-07T23:32:09.000000000", + "2019-01-07T23:33:08.000000000", + "2019-01-07T23:33:20.000000000", + "2019-01-07T23:34:52.000000000", + "2019-01-07T23:34:56.000000000", + "2019-01-07T23:35:31.000000000", + "2019-01-07T23:35:59.000000000", + "2019-01-07T23:38:21.000000000", + "2019-01-07T23:38:55.000000000", + "2019-01-07T23:42:27.000000000", + "2019-01-07T23:43:23.000000000", + "2019-01-07T23:43:40.000000000", + "2019-01-07T23:45:29.000000000", + "2019-01-07T23:47:01.000000000", + "2019-01-07T23:47:15.000000000", + "2019-01-07T23:47:55.000000000", + "2019-01-07T23:48:12.000000000", + "2019-01-07T23:49:23.000000000", + "2019-01-07T23:49:45.000000000", + "2019-01-07T23:50:07.000000000", + "2019-01-07T23:51:07.000000000", + "2019-01-07T23:51:52.000000000", + "2019-01-07T23:53:18.000000000", + "2019-01-07T23:53:19.000000000", + "2019-01-07T23:53:56.000000000", + "2019-01-07T23:55:56.000000000" + ], + "y": [ + 1.8860215907011364, + 2.0440871778891814, + 1.939324717848884, + 2.243637781428854, + 2.3684766222413938, + 2.038002948462296, + 2.0477352860010845, + 2.1931535232474064, + 2.1578160381384013, + 2.180135750263699, + 2.2165650819097147, + 1.9720162545053197, + 2.273784368050117, + 2.284992375567492, + 2.200529761718185, + 2.3452881660614744, + 2.2348378774378856, + 2.2232812066320475, + 2.27642235849028, + 2.4152541747885357, + 2.291650909517782, + 2.28808800884135, + 2.4685525273685216, + 2.284234019232639, + 2.473421908298028, + 2.3457402589895016, + 2.4446900154822604, + 2.5155279925552767, + 2.3916494670279715, + 2.449960561298191, + 2.5081681707947507, + 2.6618422326668747, + 2.535485916516775, + 2.5154952667358166, + 2.559197743459951, + 2.623443364445833, + 2.631322297988603, + 2.443915273668538, + 2.661280718734566, + 2.5964994541317266, + 2.5429364645630566, + 2.752985645225951, + 2.7568426370654704, + 2.700066465461316, + 2.618758192598563, + 2.689005019640814, + 2.637590544579264, + 2.8491966832800695, + 2.833372024779712, + 2.737022248370918, + 2.727092084329322, + 2.744498232963127, + 2.771737251404978, + 2.7650142382430087, + 2.8378067143680634, + 2.9162498121075746, + 2.9941178044853176, + 3.0492676955800513, + 3.096135510705993, + 2.956675077327324, + 2.9491590038206024, + 3.01897059982739, + 3.0388485934576375, + 2.8706373314696907, + 2.9773598372161225, + 2.80702359031709, + 3.206282045975033, + 3.170002287696666, + 3.164772458348472, + 3.0543412462081703, + 3.088291163909649, + 2.9978450707821684, + 2.8544272989669457, + 3.1101432281671446, + 3.0832969471450933, + 3.069781995061622, + 3.2063869136632195, + 3.2271350994657877, + 3.0998047337142034, + 3.042272566379428, + 3.210066031361549, + 3.364767054651814, + 3.3295501745964726, + 3.325371673417511, + 3.2349576137803435, + 3.2528521780944306, + 3.281731525042606, + 3.4844527857800025, + 3.533263852076257, + 3.4011306377217023, + 3.3056866473048307, + 3.1948723474383884, + 3.430160693860084, + 3.491681570699106, + 3.28220028182072, + 3.3710610503843266, + 3.547010476111338, + 3.3134219073857714, + 3.466563944925695, + 3.510814799710629, + 3.3993433628613126, + 3.558817707250023, + 3.552866884753132, + 3.626471406545325, + 3.6845980859298164, + 3.5495235627597737, + 3.7831736758512693, + 3.6315691319325687, + 3.666352128117044, + 3.6696792405727408, + 3.8081082138543993, + 3.738064475345031, + 3.7977057670865007, + 3.7753573375107026, + 3.8606978158112635, + 3.7877903720021995, + 3.867616415435372, + 4.056606108098939, + 3.952292116788058, + 3.904741102417884, + 3.8680917634217247, + 4.043467721606047, + 3.842852711576672, + 3.9655107086297026, + 4.010864047036284, + 3.908107925946169, + 3.8282906130373644, + 3.898697712677225, + 3.87041523595306, + 4.078661267594429, + 3.975524776157485, + 4.28302949212034, + 4.240457954867068, + 4.305602257776528, + 4.141838693188258, + 4.115068110715973, + 4.25808987769482, + 4.150994587621485, + 4.171547679322461, + 4.347087146988981, + 4.328904553663, + 4.159321636117867, + 4.081620756474756, + 4.4444090606947775, + 4.441958439479319, + 4.310620985032054, + 4.396183451021127, + 4.342432888746613, + 4.593220914667643, + 4.470651804706517, + 4.3213968327768155, + 4.42329141126702, + 4.232801706078811, + 4.375667100050029, + 4.407470650383447, + 4.600249143522389, + 4.419856597321303, + 4.429485196732349, + 4.4504634772497464, + 4.666561983671747, + 4.334087269027404, + 4.721078287524289, + 4.6197281569363895, + 4.673940733040169, + 4.7037143406477275, + 4.854698472146909, + 4.611479902026753, + 4.7165874446262785, + 4.583773867751871, + 4.774487831018172, + 4.801415805823151, + 4.910353430129787, + 5.110114264204574, + 4.992848586623602, + 4.991526217272304, + 4.738065496760509, + 4.957489159045389, + 5.035783410772041, + 4.890978504262002, + 5.0499211983967065, + 4.888756466327459, + 5.028613406378328, + 4.995919903832501, + 5.049653471741232, + 5.142188379592206, + 4.705018516889808, + 5.0504216463939455, + 5.006106504156179, + 5.043310642536215, + 5.025558949609482, + 4.995756317832286, + 5.037378553836083, + 5.193193775898618, + 5.225181059440006, + 5.121790573581194, + 5.212328548503241, + 5.100117565314716, + 5.339958323698709, + 5.252947744202174, + 5.1241651182499925, + 5.2769740008005055, + 5.311351190118527, + 5.276414302693168, + 5.529456845018776, + 5.2623381587100875, + 5.39203719210803, + 5.351129860096238, + 5.510846908393199, + 5.241056501864054, + 5.389014943695808, + 5.475916664152956, + 5.687357155823806, + 5.514351753927832, + 5.664370403469596, + 5.574981429493476, + 5.51178532129593, + 5.452104132482733, + 5.581794922539356, + 5.706166437607892, + 5.528988796458757, + 5.702247311608873, + 5.847933378019106, + 5.625123671514855, + 5.556049206289487, + 5.766432832348063, + 5.58693068035787, + 5.590888740836773, + 5.9249636516469355, + 5.842832379531921, + 5.729707642250203, + 6.060007367834161, + 5.751241653213024, + 6.040671842187315, + 5.949723589694064, + 5.976441431963126, + 5.972498282752972, + 5.9197402083745825, + 5.8949699392249215, + 5.952541035157189, + 5.881813706676851, + 5.950756020306814, + 6.026542373097644, + 6.060672822655739, + 5.985931342732625, + 5.851842873734161, + 6.020099467495353, + 6.249945885106345, + 6.0782510761794954, + 5.908451567033999, + 6.244152257562935, + 6.05700520472117, + 6.0586121195675995, + 6.334252371291233, + 6.097917584408331, + 6.147056864392912, + 6.2138192126626475, + 6.268180197128816, + 6.417742298189079, + 6.224045341729765, + 6.0654844285563785, + 6.446687136030019, + 6.2378344515419775, + 6.4713669581920765, + 6.303206346148996, + 6.414504583949736, + 6.438848335375307, + 6.386543580261057, + 6.505599410110589, + 6.383425420417367, + 6.446626776876221, + 6.340974464574268, + 6.636023447231197, + 6.376959753536436, + 6.483656485349735, + 6.4307406555957005, + 6.7610293302396824, + 6.523781770922027, + 6.575883892900397, + 6.441778379100855, + 6.3695880269328615, + 6.768746897845762, + 6.764969057807832, + 6.66737464123692, + 6.740355943130773, + 6.667741253387228, + 6.723818662942063, + 6.681986344294608, + 6.585880630083455, + 6.745627752109319, + 7.033650365588547, + 6.961939441085768, + 6.708416309107464, + 6.945980003018744, + 6.830560859448523, + 6.875122504111866, + 6.67658083804813, + 6.911959331473437, + 6.983413319271805, + 6.6785338196627295, + 6.9804021682545425, + 6.859041908938947, + 7.084590537648279, + 6.799210437696677, + 6.980725328250811, + 7.035211188001268, + 6.905309153722046, + 7.015314796662132, + 6.978031941333826, + 6.905886467290599, + 7.033497294936261, + 7.016749328762817, + 7.122592180244141, + 7.030124014812945, + 7.279928868782006, + 7.075187121709125, + 7.0302439430834625, + 7.188692935363382, + 7.079701324555056, + 7.206435070836653, + 7.158395056755907, + 7.33905262872421, + 7.195909262938941, + 7.226341706290789, + 7.191535550961656, + 7.29805799522133, + 7.349646397997785, + 7.40613458258483, + 7.145917513777416, + 7.446861513136217, + 7.223239867735695, + 7.364946594068465, + 7.304232479750631, + 7.335148611369516, + 7.548739545072056, + 7.318663342712911, + 7.377746446573501, + 7.4899525539197, + 7.531923278297745, + 7.421212202054395, + 7.383396706968799, + 7.273085779591163, + 7.435704094729225, + 7.524504684098428, + 7.62323558900831, + 7.350352165626212, + 7.476455537849153, + 7.639297789997286, + 7.4904866535505334, + 7.596637963641468, + 7.556007664182987, + 7.509832420891004, + 7.468831625369196, + 7.5989853189863545, + 7.562692816868945, + 7.8273342131278305, + 7.666489655865357, + 7.76977251505131, + 7.736108877541415, + 7.6429496036357865, + 7.7895361873815725, + 7.670335804046036, + 7.750180113191086, + 7.527319869092829, + 7.846247592008432, + 7.922196940327447, + 7.791783429080106, + 7.715566602857596, + 7.847831802486305, + 7.833203911030917, + 7.9008167898982595, + 7.799888980502864, + 7.835183110689972, + 7.784940982368378, + 7.877783331645837, + 7.958841391259292, + 7.789412257021451, + 8.05997347267462, + 7.9942212544425795, + 8.026050193625649, + 7.9416068244149844, + 7.9658041561302015, + 7.942891148051042, + 8.029677987045964, + 8.231382265008953, + 7.792910134430752, + 8.044599327129962, + 8.077244256709317, + 8.083468131244295, + 8.058200620456857, + 7.862249642498677, + 8.005633961772302, + 8.208029861579632, + 8.00944286867353, + 8.189383572010065, + 8.206490257379862, + 8.062837105176659, + 8.244596656007468, + 7.895310586730711, + 8.187165326115306, + 8.167301667347727, + 8.209364146616316, + 8.096813622551606, + 8.13717979900875, + 8.183098723681251, + 8.145148854364704, + 8.061385341370949, + 8.211401071243037, + 8.236821343274963, + 8.189224278895363, + 8.20442284908115, + 8.289380499560721, + 8.20106509050778, + 8.127947237139756, + 8.217870520042604, + 8.252850833402546, + 8.071050377031373, + 8.429848721015851, + 8.322031479547991, + 8.395519177879173, + 8.23417854465534, + 8.478833779674467, + 8.224862351842635, + 8.322323208799183, + 8.381702665853641, + 8.438180680870763, + 8.42006524770423, + 8.321357692950642, + 8.452304247821548, + 8.546253982917598, + 8.396871970963204, + 8.411135247728222, + 8.68922870428539, + 8.2683408539572, + 8.547681808339807, + 8.449706606819758, + 8.474566986984934, + 8.335316662734932, + 8.473285325171839, + 8.389496816843943, + 8.396878298694853, + 8.638347337621703, + 8.542244458611925, + 8.640729889645742, + 8.488749913178696, + 8.476469097093338, + 8.162887131414411, + 8.398088464246003, + 8.558927745020835, + 8.667193898533696, + 8.49020039061012, + 8.661432777264606, + 8.532521317384896, + 8.57737946695933, + 8.606824443404266, + 8.466708454424726, + 8.5606603702086, + 8.516956355816866, + 8.606656573771652, + 8.608146067538582, + 8.694826697654307, + 8.60007662384592, + 8.660292098728117, + 8.610505498139302, + 8.581091992790048, + 8.652405979770947, + 8.524087594093393, + 8.650759720404999, + 8.54209132975005, + 8.687219190580853, + 8.659623065024421, + 8.794882326602934, + 8.59092000755605, + 8.513515357994507, + 8.775887614261535, + 8.686272865247824, + 8.724162850862822, + 8.732579642723342, + 8.760838329132943, + 8.76419166018412, + 8.611597133676973, + 8.689531111768598, + 8.893153650928397, + 8.705658588241562, + 8.565672573865122, + 8.597192541776716, + 8.802263101336496, + 8.680302948523362, + 8.710979634154029, + 8.847884290369006, + 8.67458417494132, + 8.770741474642195, + 8.819559664603116, + 8.54297635319815, + 8.683196833971651, + 8.817499721303578, + 8.71493867133766, + 8.785035676013605, + 8.890037205201448, + 8.811888789699532, + 8.711282651482508, + 8.681617430585906, + 8.663120267287862, + 8.910423209112052, + 8.792990464899045, + 8.837119723960756, + 8.756951296172945, + 8.920522578904139, + 8.761750270053513, + 8.8382171221329, + 8.760389077858056, + 8.883287299387922, + 8.704224994085541, + 8.83372374478151, + 8.814076795609864, + 8.714839633189246, + 8.961129242386166, + 8.852574588754596, + 8.69840557552617, + 8.79185690415955, + 8.58162345478651, + 8.729692230052002, + 8.853893425784303, + 8.741908031489205, + 8.647620440380168, + 8.772595818039548, + 8.834039811604926, + 8.900695815021963, + 8.72435123883748, + 8.82213078727877, + 8.758211891535527, + 8.921572340765758, + 8.819511841565411, + 8.688369226997468, + 8.812137608754538, + 8.86629108867814, + 8.752272453525798, + 8.898528329832484, + 8.772957838285508, + 8.662411793703226, + 8.676732527697151, + 8.798991979039508, + 8.887019097099815, + 8.793679207174678, + 8.778133945216862, + 8.647069963724796, + 8.981416108350674, + 8.728315272733358, + 8.82960849428101, + 8.71589803793798, + 8.859072626794235, + 8.773211578534085, + 8.95267226118909, + 8.911119396670461, + 8.822179036421497, + 8.7321470606157, + 8.941624593400068, + 8.584766753021034, + 8.736529065046115, + 8.86419026524102, + 8.68144662459896, + 8.648020658649545, + 8.840690029182186, + 8.946383165270559, + 8.797445593251274, + 8.73607183230922, + 8.713884952097395, + 8.755631386135532, + 8.82426866037849, + 8.64227946796146, + 8.469020161536127, + 8.592672062243066, + 8.692239846560415, + 8.745535989255648, + 8.716285479901536, + 8.705309299579683, + 8.650347681702652, + 8.758165739044207, + 8.724316611531576, + 8.746306354955122, + 8.517400680964302, + 8.7953546083235, + 8.87983622242717, + 8.760573425047898, + 8.653787739655984, + 8.76617229171151, + 8.583743895331763, + 8.798025386673828, + 8.87447260485333, + 8.495208503946898, + 8.559530315153834, + 8.558810207126768, + 8.676484071257725, + 8.574143475072507, + 8.672409613173738, + 8.68878076892695, + 8.599705738343491, + 8.752992374342876, + 8.681365276986002, + 8.519276761848827, + 8.701816114357754, + 8.539632503617895, + 8.636771521034367, + 8.723556501560308, + 8.66641896816257, + 8.398177583084319, + 8.610842474182514, + 8.51123554918045, + 8.667478942106492, + 8.56106888525935, + 8.695295283219236, + 8.566272795302767, + 8.693077713681069, + 8.449265651690684, + 8.611590527569483, + 8.832799054823777, + 8.357150758007618, + 8.524912713098054, + 8.440981078879846, + 8.499795856976599, + 8.611114039891344, + 8.428106550300994, + 8.567390375053952, + 8.457214474048465, + 8.487204603466934, + 8.286727492239251, + 8.344478938909079, + 8.443562369850989, + 8.389120315579643, + 8.344312837695236, + 8.453131606474148, + 8.395189876998115, + 8.550613253719831, + 8.3936469731386, + 8.548774725663215, + 8.505416889413135, + 8.220125267008521, + 8.254066634925882, + 8.463210710020814, + 8.271144164666802, + 8.319058533780716, + 8.247687699162661, + 8.357286957271848, + 8.481653670425953, + 8.457272195108903, + 8.298791577900102, + 8.245256090415742, + 8.326604100504005, + 8.11477545776948, + 8.555269153566508, + 8.296164892450733, + 8.213361180054347, + 8.306599889562664, + 8.250739982528865, + 8.136333437644046, + 8.24202011536231, + 8.257794819260958, + 8.040585403960673, + 8.217697116697513, + 8.257503236487585, + 8.080774795022437, + 8.215182975995486, + 8.166705061117092, + 8.271337154310144, + 8.322580790388262, + 8.088927993069099, + 8.051482157096412, + 8.139038669345991, + 8.073270955943206, + 8.120574331585644, + 7.936572168749893, + 8.22188527557677, + 7.990330326904981, + 7.975047298347637, + 8.079655528627578, + 8.026620205185733, + 8.103508416684877, + 7.948220476011927, + 8.062438736113913, + 8.10069384508515, + 8.187734161048315, + 8.186459028458245, + 7.852115584218362, + 8.159849086674337, + 7.95749720905211, + 7.937441760199752, + 8.02036472368245, + 7.871686466425518, + 7.728391466749528, + 7.9751625569563025, + 7.946386363334851, + 7.736177691625653, + 8.036883605888974, + 8.038541782570272, + 7.662933811351265, + 7.8470307479313774, + 7.865738069287462, + 7.788226615986455, + 7.718290176915374, + 7.899868964083178, + 7.956506342536808, + 7.909238537507629, + 7.773076175574991, + 7.787594050949342, + 7.833229199751942, + 7.609863780023822, + 7.661547005090581, + 7.669382837007367, + 7.548435306508603, + 7.691641260239318, + 7.679014658881514, + 7.6630730766726325, + 7.731256700798887, + 7.530663229307041, + 7.6476161486684475, + 7.523515499503525, + 7.605172426392567, + 7.622769551179553, + 7.4116696635323605, + 7.60465655938481, + 7.5714414008801345, + 7.489675677335781, + 7.558263327231609, + 7.507966413435343, + 7.4898461474295575, + 7.654902755121391, + 7.529330752369082, + 7.324892457207783, + 7.409595818482214, + 7.419668029100599, + 7.278535777050797, + 7.27586027109266, + 7.437016072506603, + 7.289210822887438, + 7.1848104400960136, + 7.2959981898410184, + 7.514664493125248, + 7.299103240711813, + 7.301083440991649, + 7.174363254039129, + 7.3392932357737095, + 7.2417304015444826, + 7.311896787997739, + 7.301349731579015, + 7.259013557174336, + 7.1802180098465715, + 7.2067716118109155, + 7.062870350968731, + 7.080207708761876, + 6.921740343093774, + 7.091130708522143, + 7.073554513606206, + 7.250812485232276, + 7.0486738300011895, + 7.097165121297453, + 6.996957226914127, + 7.110297585920187, + 6.889905670402729, + 7.029459775750369, + 6.853259719570818, + 6.921489357926662, + 7.05344510666792, + 6.961408871578693, + 7.014554214620174, + 6.817665185078565, + 7.01052062658511, + 6.82987047151171, + 6.925945653311955, + 6.960846038415846, + 6.935978579248879, + 6.8613943222007014, + 6.813497334241156, + 6.721450485411113, + 6.755554313109412, + 6.894968598376229, + 6.6706690833865165, + 6.850734228277645, + 6.911489508946312, + 6.594542713349905, + 6.737914362892609, + 6.699011376166405, + 6.614969888366289, + 6.667964706342181, + 6.649516186264814, + 6.583343761966051, + 6.702953810245005, + 6.667692931035066, + 6.663709203777574, + 6.670755186008405, + 6.43370182966216, + 6.432862584825835, + 6.574261876012586, + 6.499668166014277, + 6.57931845291442, + 6.2332599386327505, + 6.4694439085520346, + 6.438858235542223, + 6.487793883651741, + 6.385948023473505, + 6.338313469281666, + 6.266512646582855, + 6.69483955173458, + 6.3253774288966715, + 6.297338686905158, + 6.23152608601162, + 6.188538375965102, + 6.3051931509223476, + 6.207867438681775, + 6.28402307968596, + 6.485964878499788, + 6.324259819096079, + 6.114262401885656, + 6.324884115651146, + 6.187669227872327, + 6.156858841336739, + 5.969625384827362, + 6.086819522382016, + 6.2130596815160315, + 5.929970180052234, + 5.98129254025423, + 5.991180314229967, + 6.014573450792751, + 5.966727213602126, + 5.9958048114008, + 6.034772778843142, + 5.8332377775113375, + 5.790301841472371, + 5.9292037915624825, + 5.968778460764955, + 5.881605990347293, + 5.973236729973121, + 6.013090076380265, + 5.836587383254839, + 5.814560204124337, + 5.917020703025267, + 5.89469687246384, + 5.8563932219326835, + 5.691544067359339, + 5.971073753131037, + 5.738538181629327, + 5.758683417598926, + 5.468233362398137, + 5.613666956956798, + 5.792083466979617, + 5.584055415103328, + 5.384150188829994, + 5.579643668785907, + 5.735674799216319, + 5.7599820431478035, + 5.842769557064166, + 5.388974293455808, + 5.506274830871837, + 5.554617840916736, + 5.661434622494736, + 5.42307335213065, + 5.7280991376904895, + 5.446737645109951, + 5.289931698784022, + 5.417755624520095, + 5.432162212257483, + 5.391057412652903, + 5.295197123540032, + 5.346998895957851, + 5.289349362653045, + 5.164089720584828, + 5.29461320512005, + 5.3161470007732685, + 5.26574434388675, + 5.213880969985105, + 5.159010423567814, + 5.303077370220925, + 5.213096305335963, + 5.034709602124151, + 5.2396721483718425, + 5.161003399251897, + 5.198403691142104, + 5.006504288419343, + 5.134743016748244, + 5.159728467334392, + 5.028783103184237, + 5.019533410123783, + 5.068095319106944, + 5.161744512438161, + 5.022364176240172, + 4.839041769899642, + 4.95978646864255, + 5.028078427933914, + 5.0548314758511665, + 4.879675391391278, + 4.922872090916631, + 4.977456498934489, + 4.72470711449362, + 4.839392619162856, + 4.783198727129792, + 4.765921441382668, + 4.883875421647641, + 4.678352700694921, + 4.903295578970322, + 4.673288830719434, + 4.712650493856259, + 4.680256152218544, + 4.6233354106547, + 4.69407276213384, + 4.4770924110917205, + 4.62472490902906, + 4.564171638986192, + 4.553197410442565, + 4.554071429244322, + 4.449232266082149, + 4.4964000550855205, + 4.371625093999379, + 4.644412319147023, + 4.437202152143187, + 4.511092932852182, + 4.428742710972655, + 4.277509577349199, + 4.526902638492651, + 4.248078786726232, + 4.495997455210306, + 4.499745911438458, + 4.231022898852608, + 4.252943502265238, + 4.291540990688621, + 4.213254118844194, + 4.066332700509864, + 4.32884279864159, + 4.216934374780735, + 4.188485119902333, + 4.084239898678112, + 4.187345188179678, + 4.213230398036361, + 4.256965598693277, + 3.9740515206130653, + 4.186996666120321, + 3.9278065819412915, + 4.2651680299985335, + 3.8940042886038686, + 4.15036430572901, + 3.996591618219171, + 3.986003051325791, + 4.046805121439526, + 3.882482618370276, + 3.979723902702648, + 3.9000647294394923, + 3.774489883896957, + 3.8715537212785676, + 4.00930656286424, + 4.079873485388675, + 3.836526801279475, + 3.7446523042701, + 3.8884532212150598, + 3.70729491652417, + 3.8669576090622635, + 3.7909411846994705, + 3.766688026256156, + 3.737276300679623, + 3.6330785414036484, + 3.7431071793129966, + 3.705649884815188, + 3.583454933633676, + 3.759423571121946, + 3.493280460886315, + 3.5589108514132266, + 3.6376798472301255, + 3.472787935451248, + 3.569844083803436, + 3.5642734334993373, + 3.5504872171162027, + 3.6357551530673606, + 3.4821030955706105, + 3.2881827399206562, + 3.511415955795175, + 3.552327445341837, + 3.333763242667213, + 3.3813474780341553, + 3.568232314319419, + 3.4682673267949835, + 3.397710655227238, + 3.2583297621131324, + 3.479144892934464, + 3.352788620042985, + 3.130708525132335, + 3.3542062579122076, + 3.194030322632035, + 3.2252828087373793, + 3.2624385270058287, + 3.395036771950859, + 3.0492754736036307, + 3.215791239174391, + 3.1603769226180543, + 3.2005618572133274, + 3.191471321156408, + 3.252497499736821, + 3.3005075822753662, + 3.1782791707861393, + 3.118784139028851, + 3.0124882967952873, + 3.070354582165161, + 3.077113335576846, + 3.046366185816027, + 2.9529389579718006, + 3.1107806926574972, + 2.826147404270963, + 3.0089586548297755, + 2.8967411456311924, + 2.9246578309074973, + 3.119237402567008, + 2.7197554244866007, + 2.8371647286041446, + 2.9392784381778636, + 2.9785743625431493, + 2.901135148056184, + 2.7368146172015493, + 2.6681032335774715, + 2.720613252891771, + 2.6452799129850386, + 2.839910775144467, + 2.7466355720651294, + 2.75026875662839, + 2.5473936872658505, + 2.666031716287592, + 2.6501829365459595, + 2.691244984007046, + 2.552069515334894, + 2.5266877893855404, + 2.757024662234482, + 2.678934566337328, + 2.5545366096375774, + 2.438244512993312, + 2.5339140227939545, + 2.533433469278505, + 2.600205843553272, + 2.5745717175962017, + 2.5813161764523156, + 2.3673739183611096, + 2.553644452915145, + 2.273747285506629, + 2.5742646358551915, + 2.30453638018464, + 2.516868153314209, + 2.5329324879713466, + 2.5074610741959362, + 2.427143504951297, + 2.600102451260134, + 2.3459429331098187, + 2.2976328213216806, + 2.27271962823137, + 2.221388624481264, + 2.393577708241353, + 2.1253702852770693, + 2.265600922364527, + 2.0540393272691655, + 2.084507637779648, + 2.097170418340003, + 2.1437788633398713, + 2.191950123957022, + 2.2630764476454828, + 2.1645600737280186, + 2.087671811848812, + 2.1770383591541256, + 2.088709373507602, + 1.9433331496845168, + 2.0988752140973745, + 2.0032780305540117, + 2.1875509805768574, + 2.0953106084587296, + 2.0402475536875624, + 2.098233163074276, + 1.9962811704047114, + 2.13682312157248, + 2.2980193351836418, + 1.9885606569574725, + 1.9607041259846167, + 2.1006506272459764, + 1.8373249355118462, + 1.8555853941032072, + 1.9052088122468318, + 2.0877477911699502, + 1.8710493270384494, + 1.7915487060691564, + 1.9850331435649273, + 1.8306632781893457, + 1.803586439356511, + 1.9808259666281764, + 1.9712816228466508, + 1.957782942571346, + 1.8036337175536203, + 1.7163197386786628, + 2.0008774143817365, + 1.8652073702095553, + 1.5929022686173064, + 1.6200839962335145, + 1.6667934083642924, + 1.6970467770875504, + 1.866338321135367, + 1.6387466848900745, + 1.8384701474020861, + 1.823591924529154, + 1.7368495595118443, + 1.7207192367631463, + 1.7713905862397104, + 1.523521822155204, + 1.6565280068048174, + 1.6121138252543052, + 1.7561496862625101, + 1.833099386496443, + 1.7108548360327303, + 1.7097852651726382, + 1.530245828961518, + 1.517252245840621, + 1.5891504407201382, + 1.6740056318177385, + 1.6317423480144964, + 1.607312945243071, + 1.7984763416543186, + 1.5546552330859555, + 1.3387810296791907, + 1.5863191367410314, + 1.3686747773845325, + 1.486847695688634, + 1.4005183233151033, + 1.7438714296129234, + 1.448616513702722, + 1.5151348201775847, + 1.6486136658914585, + 1.4503925707772642, + 1.407340538436424, + 1.427183489708624, + 1.4488274695015382, + 1.135626581772928, + 1.3790699912673388, + 1.304305455178553, + 1.3475365508307378, + 1.2608392360281864, + 1.2398992736998578, + 1.2242959842673702, + 1.1054526007846217, + 1.2745669836456528, + 1.5022251804397744, + 1.296375050243886, + 1.3005136757245852, + 1.3952045229049, + 1.2650946290164193, + 1.1813126951744084, + 1.2369579562017312, + 1.3372828187715322, + 1.321856627082428, + 1.4029981179127886, + 1.2535092246473383, + 1.1418051459008565, + 1.1058815702885758, + 1.1749268345354245, + 1.2485241370350852, + 1.3496901679411808, + 1.1773066248481825, + 1.0613468866626934, + 1.233447175911684, + 1.1384091778057979, + 1.0616460077928065, + 1.2244840269261117, + 0.9863140808090987, + 1.1056480724068218, + 1.1242730005751498, + 1.0660247742512021, + 1.0789224758936666, + 1.0590241217050353, + 1.1098253805202314, + 1.0621899126075216, + 1.1469395467415984, + 1.2454730784440107, + 1.2123404489765586, + 1.1677738750784057, + 0.8379765642309349, + 0.9315823541809057, + 1.014383954224867, + 1.2480805951836373, + 1.0911760877221532, + 1.187105116964279, + 0.9930615320885189, + 0.9991427143730747, + 0.9368765667427112, + 0.9373646262667941, + 0.9860117681418331, + 1.1890764659914124, + 1.1064148041738613, + 0.9297653143284055, + 0.9247508721176261, + 1.0858621334746177, + 1.1278709379850942, + 0.8931956263938191, + 1.0622196645528963, + 0.9151458897494302, + 0.8048768970642419, + 0.6984883214397732, + 1.0421232999089203, + 0.9124034405378395, + 0.8377160057792363, + 0.8188402056622673, + 0.7358210221694911, + 0.7841424707085798, + 1.003082489653038, + 0.9250755509973579, + 0.9482733349774369, + 1.0339493581029668, + 0.8219521508646381, + 0.8057037298497589, + 0.9110294637772491, + 0.9205753494506328, + 0.7903130250209494, + 0.8363696014442424, + 0.9007817807940227, + 0.710912914044522, + 0.9368049642127999, + 0.8400488973248665, + 0.8414911260756088, + 1.0022880249888224, + 0.894409824518198, + 0.8232222479105942, + 0.8793780517157759, + 0.7221591100902562, + 0.8986568540054204, + 0.7462410059163241, + 0.6726892119032063, + 0.8190866088309061, + 0.778032811951701, + 0.7427050519118179, + 0.6098444578957525, + 0.7134427344174324, + 0.698361233943009, + 0.8132165743188643, + 0.6756131882660249, + 0.7015188619715126, + 1.0359038032982184, + 0.9596221022010509, + 0.7426859949134041, + 0.6707142633868167, + 0.7795297496025745, + 0.7698065796844057, + 0.8491501523770587, + 0.7061410882422581, + 0.7348555124980981, + 1.0586148005993645, + 0.8591293248132833, + 0.8214078678020543, + 0.873352789744314, + 0.9130836184441434, + 0.7272640183859058, + 0.6799108373717718, + 0.906689242321249, + 0.8836683313547553, + 0.8177013058088198, + 0.7256935793936942, + 0.6357417862633888, + 0.7512317018155202, + 0.9775167098205513, + 0.7769870188234217, + 0.6700568392782642, + 0.722729443531827, + 0.7168270153752458, + 0.8071526177393953, + 0.9277400288040505, + 0.7306175881211818, + 0.7669910546061263, + 0.8252092449147321, + 0.8108231467807896, + 0.7862207584674441, + 0.7739013701530191, + 0.8171155580131015, + 0.9125629806206617, + 0.8158793103130219, + 0.7461575610836516, + 0.6593248296916459, + 0.6405734796185589, + 0.8588301898876665, + 0.9096144286009744, + 0.7162609524823639, + 0.7858821407463038, + 0.8133997373671871, + 0.9151916154256823, + 0.8109289534692435, + 0.8372795503688015, + 0.7990443624210293, + 0.698108851523652, + 0.8685748008197633, + 0.7449401636686828, + 0.7618276821400137, + 0.9323500103524212, + 0.9152128484868506, + 0.6509283616826315, + 0.7922005672416796, + 0.8320597287011181, + 0.8583229887418333, + 1.0512921527035, + 0.7846456483180215, + 0.7058676290443794, + 0.9584779282322629, + 0.9962036754632051, + 0.848189316521933, + 0.8283038817099184, + 0.7621353447828584, + 0.9271728780378982, + 0.7439262657122625, + 0.6765899097284931, + 0.9961137444804337, + 0.9635412762354002, + 1.0841537430496635, + 0.8701421085758934, + 0.8110758102944278, + 0.9336513272036284, + 1.002198858590235, + 0.9722011109506677, + 1.0356077294848436, + 1.1338132724785692, + 1.0779761133816579, + 0.839080756260472, + 0.8701224816136588, + 0.7455448259463942, + 1.003884748685046, + 0.9779072076289451, + 0.840976355542719, + 1.0354926278176413, + 1.0685388509682086, + 1.0365366544836763, + 1.010281973048867, + 0.8821801970930846, + 0.9792349149463757, + 1.0422008075300468, + 0.9543760932630918, + 0.9631686811781602, + 1.0680678944648094, + 0.9753115738121377, + 0.9451126184538844, + 1.0371353251023094, + 1.0007494772743264, + 0.9787664101769304, + 1.0036014425437843, + 1.1344740139911482, + 1.1715349508173485, + 0.8722338288383651, + 0.989480772794589, + 1.231624518771382, + 1.0924842693234713, + 1.0554278718166026, + 0.9854943999201422, + 1.0143026598164169, + 1.1515140736379936, + 1.1368460102831277, + 1.1058084453954695, + 1.0627049745680035, + 1.1456309028001403, + 1.318906465033681, + 1.2008914162013744, + 1.201204541247719, + 1.3864793797833248, + 1.2247108932643582, + 1.0625124960438728, + 1.3461168272961874, + 1.2270472080297379, + 1.2668856369244232, + 1.2389256304722827, + 1.3089438340440742, + 1.1229827410630637, + 1.2926002758095105, + 1.372272273439449, + 1.2245382428673446, + 1.165086502231888, + 1.2626886953675307, + 1.283307526467059, + 1.4098099157541089, + 1.3737716619905747, + 1.4367473370599637, + 1.3388137889375318, + 1.3494567255213044, + 1.1832184667090606, + 1.508824236516123, + 1.2350371806628049, + 1.480043088091102, + 1.4079194050294783, + 1.3583482127544952, + 1.2114825440733135, + 1.2477656340012084, + 1.3873704347309816, + 1.3014907248221141, + 1.5514180779621674, + 1.4057391897450162, + 1.4161857521467223, + 1.5449515438040713, + 1.2912498779410035, + 1.641323857315065, + 1.5074631958681999, + 1.360243546697769, + 1.298227923913964, + 1.604332268578557, + 1.555818268105472, + 1.4191448949015122, + 1.524890277383557, + 1.542511992640695, + 1.46237209586316, + 1.5104048782652153, + 1.652796818021816, + 1.5628555969598168, + 1.5731685083335956, + 1.5290000745300394, + 1.685094123767374, + 1.678963870822065, + 1.4865986314135426, + 1.5443182267012652, + 1.7019847647680466, + 1.6620158462749066, + 1.8429463256835965, + 1.7670819253238426, + 1.7233129564615097, + 1.8008507753291016, + 1.7127152259194256, + 1.5797565284019084, + 1.7915478109013738, + 1.7366485124824116, + 1.8060626527465728, + 1.7096442881234564, + 1.8142494985388655, + 1.736959897471313, + 1.9215712416156145, + 1.833006892096018, + 1.8387791723741407, + 2.1497353677911035, + 1.6968574943113004, + 2.0856471730960195, + 1.9563731759124756, + 2.051572893228493, + 1.9039788844838232, + 1.8053002112283474, + 1.724592319965064, + 1.7979257480807622, + 2.059326468514345, + 2.1172013270691012, + 2.095564893710313, + 1.9337142489004109, + 2.148222287710732, + 1.986650338591987, + 2.040866425202007, + 2.144375914041253, + 2.1469156204478064, + 2.1326061596811616, + 2.047103480805086, + 2.2285506421941066, + 2.0993125264999963, + 2.0142513486096902, + 2.141595597815135, + 2.0150138892083382, + 1.9961255426425595, + 2.0778608963475276, + 2.0424085428776113, + 1.9536898152605073, + 2.136924083713437, + 2.3151212129321648, + 2.329996870532023, + 2.3724108172743588, + 2.2606753537980087, + 2.4341659040401304, + 2.352125215679428, + 2.435338852929096, + 2.3518621066446257, + 2.1921002285497213, + 2.2174052039748307, + 2.3808135500791696, + 2.3616716672041536, + 2.418573921658839, + 2.4723094102990264, + 2.6138849809935216, + 2.4721145013185017, + 2.3478020113022593, + 2.456130603078216, + 2.513538506331248, + 2.516718158167567, + 2.413214681604667, + 2.713701518580502, + 2.6515551986971877, + 2.446576495349251, + 2.8067290738349984, + 2.532811130893916, + 2.5515521510101036, + 2.7814661082181806, + 2.655914280015607, + 2.596161346239685, + 2.604358030478903, + 2.7354184103746775, + 2.8269942661251792, + 2.644988504051389, + 2.5097151524857524, + 2.806734037952512, + 2.741693302524628, + 2.725167703034712, + 3.0007182408835478, + 2.882809275344141, + 2.6633025535893755, + 2.85958351957492, + 2.6982448815490594, + 2.9873123657557925, + 2.9122334552110236, + 2.8515150012385595, + 2.806256070065783, + 3.019452846708596, + 2.959344629653411, + 2.9861606190746155, + 2.9422193892966706, + 2.925095173918957, + 3.078259769120995, + 2.9386854770163606, + 2.832079079011154, + 2.8514993778085866, + 3.2034741233347885, + 3.1048094421198713, + 2.8774500144013615, + 3.085919201625807, + 3.060041662654893, + 3.303138252056792, + 3.1518975925431967, + 3.292856674382195, + 3.254154792770843, + 3.297098862510603, + 3.338471556837608, + 3.313121696210054, + 3.328559201302336, + 3.3251964865428274, + 3.335369703218758, + 3.2709236566826565, + 3.274687973772227, + 3.304621689568681, + 3.2914271011175162, + 3.1694471503852113, + 3.642258427044002, + 3.4344302563723557, + 3.410383900639754, + 3.3048625120974466, + 3.251320814742912, + 3.6317903507048754, + 3.64383891169403, + 3.4095108727607335, + 3.5231634544787096, + 3.6568819130217305, + 3.444941808946927, + 3.5884022411416425, + 3.352161169974414, + 3.63202989703978, + 3.5693131433995005, + 3.668818863719977, + 3.7321224563004756, + 3.8426702479357413, + 3.569652977742022, + 3.6912298250561073, + 3.701421973071477, + 3.7893426960822705, + 3.805238110058313, + 3.7576992707783905, + 3.909361950062662, + 3.598111900288607, + 3.70416171855392, + 3.840954971694526, + 3.720905128460846, + 3.789115478391163, + 3.9834863943868677, + 3.8393243865308575, + 3.9052225008724446, + 3.7615559103269893, + 3.9177568310375603, + 4.196932205586154, + 3.9904601542332228, + 4.016634074271384, + 3.9635672492113696, + 4.1056074159115745, + 3.9814888431139854, + 3.9562582760497342, + 4.1315477849997775, + 4.254878628140374, + 4.161569234304907, + 4.109867344171359, + 4.2690209050779835, + 4.036544271613676, + 4.2544245178812785, + 4.089236951679477, + 4.179287028504809, + 4.279124963819972, + 4.253367287796809, + 4.2857780033189945, + 4.021163167160875, + 4.4358164165495335, + 4.216056827983385, + 4.494354108349123, + 4.381086781058006, + 4.383604770681142, + 4.309128876435638, + 4.47259287923924, + 4.468506522643735, + 4.2503336231495314, + 4.334493583983112, + 4.46773713796207, + 4.515775405161023, + 4.578106205352234, + 4.501285964695095, + 4.596636930638967, + 4.539506688780757, + 4.613839963455368, + 4.6538200420948295, + 4.508324681377729, + 4.4805322371597995, + 4.81187930771467, + 4.819131938230561, + 4.7833289104320516, + 4.711915269861018, + 4.794186580124144, + 4.687466681680334, + 4.946090207328728, + 4.773787192275205, + 4.885449146202108, + 4.912816799947798, + 4.8973245778603625, + 4.688308764836205, + 4.852937427759898, + 4.840507500836018, + 4.843242046020494, + 4.923166241909584, + 4.812992847857603, + 4.956872424999695, + 5.174944601904031, + 4.918250703793799, + 4.972467508114736, + 5.125243368307386, + 5.185616139050713, + 5.092051636031188, + 5.037273683314095, + 5.202959254960811, + 5.121408138489038, + 5.018950104775108, + 5.004298944159619, + 5.270066841160171, + 5.103533280448988, + 5.489947150866474, + 5.17462555762819, + 5.3501199772112935, + 5.390982400961773, + 5.299430597107128, + 5.495173633356466, + 5.133398694296655, + 5.324907897842316, + 5.214033234219608, + 5.493359332921379, + 5.434440200922521, + 5.398867561038856, + 5.386638692392774, + 5.365606254217845, + 5.427436355824411, + 5.523760646190807, + 5.506935623516533, + 5.536652349728897, + 5.439655545159044, + 5.545243546022379, + 5.55112887968587, + 5.463182228682944, + 5.713621505119713, + 5.650495777532788, + 5.409745048234919, + 5.6315477585120775, + 5.662694076176361, + 5.6905895840389, + 5.5839146675246205, + 5.757296994610822, + 5.773526612594646, + 5.762327278735223, + 5.6612094473288535, + 5.739572686181349, + 5.835565386537487, + 5.65918246281478, + 5.602174309149845, + 5.730805992474557, + 5.669584570028464, + 5.7424750867525205, + 6.169086698424946, + 5.988834975731481, + 5.791928221936056, + 5.842785415328048, + 5.945623724944906, + 5.998289639483336, + 5.902508096008394, + 5.86336138385053, + 5.960025587663836, + 6.080615165520566, + 5.9082563131060475, + 6.044145264932, + 6.102324151446688, + 5.942182066290307, + 6.127202169730171, + 6.184750625587463, + 6.133560504681515, + 6.128728891277461, + 6.049984686944507, + 6.217025147016015, + 6.207522137065164, + 6.08711656220588, + 6.284780672277556, + 6.262501034122552, + 6.105825790985655, + 6.393260138578505, + 6.421820066913706, + 6.331437905765366, + 6.291762753489665, + 6.4260937262355515, + 6.4613431709420155, + 6.531423095391832, + 6.331238631226191, + 6.633712393846546, + 6.394242094440336, + 6.555060071775225, + 6.563706766525735, + 6.691453033127075, + 6.635992045019183, + 6.377635301519145, + 6.363035537919291, + 6.634335627866821, + 6.6835530067013815, + 6.812008650559644, + 6.503210473157572, + 6.556217650794763, + 6.499335814731191, + 6.595119112063517, + 6.396622454894995, + 6.535304422700753, + 6.672961969769284, + 6.7313551530569455, + 6.637687267929274, + 6.6221327491251705, + 6.6899941998050165, + 6.7554380445919975, + 6.7227272988172775, + 6.917426548065304, + 6.92640481154583, + 6.744862968272164, + 6.838860665399357, + 6.8433836097443566, + 6.827115269351241, + 6.966080647121884, + 6.8477266285792755, + 6.7758003107613005, + 6.923889715482571, + 6.844290490645222, + 6.949326792570738, + 6.9528586813677675, + 6.877663519153536, + 7.00125107906179, + 7.092135325684883, + 7.090811671229795, + 6.9911197010485795, + 7.074658764277249, + 7.280817167780567, + 7.171455717969964, + 7.064561008517, + 7.101908741916788, + 7.148739083593628, + 7.281301249129151, + 7.065514677826096, + 7.188786981422159, + 7.168875998816703, + 7.3845261781102804, + 7.375178058096785, + 7.267796575903443, + 7.225818271618836, + 7.284936199080655, + 7.353234377393417, + 7.443334475303114, + 7.292201053109472, + 7.224093809980992, + 7.41323401222044, + 7.272408917278807, + 7.334261106996992, + 7.49628702617098, + 7.468391923120711, + 7.524999548502583, + 7.538332435697867, + 7.490985599145912, + 7.332636907500834, + 7.486168939334463, + 7.420014362217044, + 7.543350208453396, + 7.330733753902214, + 7.693895029581832, + 7.506439427769281, + 7.547204174645652, + 7.496693789955425, + 7.489575844560596, + 7.548040046776626, + 7.5187665683024205, + 7.458701055684004, + 7.75998815381741, + 7.661383428282184, + 7.696783689319494, + 7.741049080387125, + 7.782605448152587, + 7.704635138242412, + 7.854435798765833, + 7.542196790582176, + 7.671897552974167, + 7.791892715184529, + 7.57068505730754, + 7.609227381050128, + 7.7415999669858335, + 7.748363875096097, + 7.742859778049362, + 7.7406670638928246, + 7.682470665993581, + 7.8582667527632255, + 7.805864418127959, + 7.863202585121938, + 7.950348539437418, + 7.97653579042417, + 7.935743192045881, + 7.956924488893705, + 7.9104412132943, + 7.935588690478815, + 8.159700448701665, + 7.909108957085022, + 7.993041969516182, + 7.932789877831089, + 7.9298735927000035, + 7.929931685398827, + 7.9784744364616955, + 8.12661038175921, + 7.877839156488044, + 8.067198292736762, + 8.090577580991877, + 8.036829543066931, + 8.143019681997282, + 8.079034979039077, + 7.976887175699848, + 8.077000390425399, + 8.320029710596232, + 8.029660097725342, + 7.993211772657852, + 8.012740207906772, + 8.089547228181729, + 8.148125005719042, + 8.188102088110496, + 8.158799828334214, + 8.075814869048948, + 8.124467386374496, + 8.184785796780366, + 8.166438554783197, + 8.167867479331141, + 8.019947853218278, + 7.960487737736552, + 8.34607108521584, + 8.322320658247033, + 8.181850876674064, + 8.230892765051701, + 8.365405867862687, + 8.319207897635442, + 8.42656669590089, + 8.113221260108014, + 8.261908858696351, + 8.518185698145812, + 8.375334816251423, + 8.393828487125642, + 8.240548072940475, + 8.21278003789508, + 8.333093212108247, + 8.417901392447767, + 8.180637898122626, + 8.321412915474449, + 8.320001564251966, + 8.34916135402485, + 8.3519456834409, + 8.353426639532996, + 8.411998916198646, + 8.424144946427084, + 8.555399339429382, + 8.34763950820418, + 8.634049041065564, + 8.278066577962267, + 8.511283542495134, + 8.338116953997824, + 8.432905189106622, + 8.554591119024007, + 8.29658688395547, + 8.426359573455178, + 8.411843356678913, + 8.415784109857986, + 8.599821507770192, + 8.604133377278089, + 8.532313992491586, + 8.602919263038887, + 8.475485480888148, + 8.420588610922309, + 8.651311502248042, + 8.585810807027475, + 8.669464660900168, + 8.457459795424361, + 8.550681308694166, + 8.751880263701278, + 8.597945641615265, + 8.567975393280275, + 8.502000622388538, + 8.669424644056248, + 8.67823732554263, + 8.540646069558285, + 8.623713197351607, + 8.783993749878015, + 8.401434321108653, + 8.465729092161629, + 8.540003152451966, + 8.567202872424982, + 8.611127227335906, + 8.51410149486806, + 8.819249513705703, + 8.709887996476915, + 8.490208306428393, + 8.686819792513186, + 8.576014855132339, + 8.65948617166657, + 8.650182728135116, + 8.79259779882906, + 8.613748859030085, + 8.765522468387802, + 8.833525634856851, + 8.639641223126192, + 8.729464045102343, + 8.836501654122127, + 8.679952036535793, + 8.832677882895439, + 8.697737828270938, + 8.637278241209051, + 8.535777242574248, + 8.52782430588084, + 8.78267208210568, + 8.651343438713265, + 8.729021052347846, + 8.81134436799388, + 8.865684799315797, + 8.611436349127109, + 8.580274825387272, + 8.8153547496543, + 8.871093100496958, + 8.76080651538364, + 8.639019579350762, + 8.800956598953295, + 8.678428537314714, + 8.746281957657676, + 8.74845733657483, + 8.877914744730571, + 8.971929089709883, + 8.798022609230237, + 8.781993914440577, + 8.623525004525913, + 8.835607533395939, + 8.709878733867026, + 8.702757161006573, + 8.74878100308596, + 8.686516386200289, + 8.795048558004558, + 8.786357508239973, + 8.554573431148716, + 8.753402039418438, + 8.712218815052942, + 8.78198690640351, + 8.83862705142585, + 8.778802959688269, + 8.827802210905048, + 8.6825022225119, + 8.735031430756083, + 8.757511658640523, + 8.750390487748655, + 8.655060432610666, + 8.707684289389233, + 8.905275190724963, + 8.867842405501191, + 8.758726200604661, + 8.765577508594886, + 8.855136125687023, + 8.709232365805356, + 8.995425782165304, + 8.87521328466624, + 8.798804132992679, + 8.788730836982392, + 8.733195792862835, + 8.610155392975908, + 8.91855019793718, + 8.772874043474497, + 8.841944956123195, + 8.927990079809673, + 8.73225800943819, + 8.64460022808468, + 8.957941614736903, + 8.817110032911625, + 8.817675597784584, + 8.730504307656927, + 8.789047339460033, + 8.73822647026644, + 8.633031141937854, + 8.93160827914971, + 8.697678543259133, + 8.802356040968549, + 8.705794452001534, + 8.595671780907198, + 9.007023332435828, + 8.847447444532836, + 8.827413535800558, + 8.703815161566382, + 8.773947083230556, + 8.737951669902113, + 8.71702177094939, + 8.860962057961265, + 8.688333318090733, + 8.890284263762595, + 8.861190986569689, + 8.570951339749104, + 8.752025918249402, + 8.686796351621393, + 8.751759683296195, + 8.772843983311892, + 8.789314290282144, + 8.74384990551508, + 8.698690962692924, + 8.592011023302318, + 8.627888908035468, + 8.683709119623995, + 8.816042575223126, + 8.471969192713228, + 8.768315582351315, + 8.859033301822313, + 8.91860446645663, + 8.673459793426735, + 8.72733956056242, + 8.741282858217023, + 8.743237057590733, + 8.589382441449814, + 8.758723485517804, + 8.593500163443144, + 8.534823640376297, + 8.72475539606138, + 8.656992051987878, + 8.765929232575589, + 8.78373805743508, + 8.678810347371504, + 8.724945692480915, + 8.69515391290686, + 8.647088281874439, + 8.576768068316296, + 8.430294465988215, + 8.745580679496818, + 8.567217883024242, + 8.680911214869205, + 8.851309097562472, + 8.514321104837713, + 8.473843590487343, + 8.664701558470535, + 8.446020020666039, + 8.599501738440448, + 8.579336740191575, + 8.50657017523336, + 8.556242438646246, + 8.583750130883725, + 8.37579303425717, + 8.528879806932354, + 8.518762922768495, + 8.476064559430165, + 8.566114888009373, + 8.583667250124089, + 8.429846693809315, + 8.487086599045552, + 8.43917513224155, + 8.460302487585468, + 8.4949579911896, + 8.431090704886996, + 8.34672265443069, + 8.3657468803151, + 8.636601492287783, + 8.476722369733377, + 8.333493418857572, + 8.452458647485598, + 8.266087401936346, + 8.200579723520285, + 8.300975191359054, + 8.481989083809482, + 8.352737263842426, + 8.473080551403465, + 8.310950523689591, + 8.401716242600179, + 8.496491926679372, + 8.356454739403215, + 8.138146915314865, + 8.32680602932128, + 8.318606220391688, + 8.287601076267944, + 8.504725744534632, + 8.337114154198524, + 8.180111000146985, + 8.336124881178595, + 8.301893644838449, + 8.304434963132195, + 8.222183279046584, + 8.215803302012132, + 8.106967500307906, + 8.157394802323772, + 8.224970523473614, + 8.117212527443623, + 8.15424904999525, + 8.15482626666414, + 8.259811532073623, + 8.107128841300595, + 8.237568754656843, + 8.143943455772467, + 8.199142215197629, + 8.23067770749507, + 8.096566166616851, + 8.20220482963533, + 8.165612831925047, + 8.221987440003462, + 8.167891852628205, + 8.252210403028851, + 8.021644286020797, + 8.14048723335987, + 8.166786186568768, + 7.988390038949572, + 8.019936626691027, + 8.011845688731148, + 8.085287038727323, + 7.91791093439039, + 7.910639562961441, + 7.96687622721222, + 7.9375704493255155, + 7.875931246182603, + 7.777963476674502, + 7.810403653321304, + 7.924945425463019, + 7.96063748166415, + 7.803279326030017, + 7.832715066043672, + 7.908194423678599, + 7.954000460555554, + 7.964149495966474, + 7.812645264544539, + 7.895390768189498, + 7.745427952770729, + 7.837805528244818, + 7.619409453588595, + 7.757363709516449, + 7.832534835518601, + 7.818071798467454, + 7.594518427008448, + 7.772270584556754, + 7.6431168197487525, + 7.698491420324357, + 7.5870510325052445, + 7.569541081460599, + 7.662201457283474, + 7.647884046505333, + 7.489092811197642, + 7.67645150351584, + 7.511470212046988, + 7.556924521163803, + 7.536637378487785, + 7.518620163616234, + 7.512492349000584, + 7.638940002783136, + 7.4829096839409255, + 7.582354593270842, + 7.341536128499346, + 7.580119281501638, + 7.578076134930446, + 7.2960867139097045, + 7.591217838815005, + 7.5720471888593694, + 7.362045156990486, + 7.2428166069630295, + 7.513870325872166, + 7.251004374719241, + 7.320246339242925, + 7.3979280421563, + 7.404077053594442, + 7.359499648482566, + 7.302354228141318, + 7.309537278961181, + 7.310403744019419, + 7.252681809109358, + 7.333283169310633, + 7.222659366756081, + 7.230939684070832, + 7.120163070150493, + 7.320760945181752, + 7.172342268258966, + 7.017187252166048, + 7.2315919060777345, + 7.1834468342357765, + 7.344126605454026, + 7.122500511584839, + 7.091033505296199, + 7.143247947035805, + 7.1617562137304, + 7.112221471432105, + 7.065224269082245, + 7.002360417409463, + 7.067020776776954, + 6.988922621751748, + 7.158727757869435, + 6.898145790268728, + 7.114041466083532, + 6.931136688203037, + 6.980649620575576, + 6.909527106374139, + 6.846396511306474, + 6.997855542161001, + 6.99163619340923, + 7.043507921636594, + 6.850202347726106, + 6.872672754363066, + 6.7704049270482605, + 6.840925106101905, + 6.772327775768053, + 6.624351784213073, + 6.670035340828486, + 6.695602711077818, + 6.750636003925443, + 6.696791844521348, + 6.7294838710934615, + 6.690831833920929, + 6.650203499795303, + 6.46650163818628, + 6.71092533143424, + 6.635538953275155, + 6.49810353221935, + 6.652057639983014, + 6.722534815948641, + 6.633742221991579, + 6.512147639691083, + 6.674229719849218, + 6.599556758381416, + 6.5244716080818215, + 6.567691304548501, + 6.436329115785309, + 6.418844664351172, + 6.441668393000528, + 6.306266721339981, + 6.413945399667514, + 6.232910155021449, + 6.45599478627471, + 6.377973641926389, + 6.301764771688024, + 6.417987348927762, + 6.3164503695935785, + 6.298549169136194, + 6.17282062097565, + 6.236772574834179, + 6.41030588477703, + 6.17890413783595, + 5.989531058985364, + 6.188005616126396, + 6.136543714671905, + 6.323573417842236, + 6.17491422628967, + 6.179368362459268, + 6.029222078993525, + 6.235597944815457, + 5.94561726818713, + 5.997614192116284, + 6.202251907640779, + 5.997872673031542, + 6.026256421956931, + 6.015982408332594, + 6.071431133135393, + 5.962737176412432, + 5.826683494272626, + 5.954062595451895, + 6.005223906715686, + 5.884298840537191, + 5.857996590000147, + 5.896955751962915, + 5.90469821527407, + 5.7702955084707845, + 5.7660983944319355, + 5.773962261335239, + 5.945819651741731, + 5.725761781687853, + 5.82392308484775, + 5.717498813059545, + 5.811519594172755, + 5.758084410266504, + 5.864836877099404, + 5.595907573174039, + 5.545492834690622, + 5.5769218911906275, + 5.592889282633098, + 5.525372758891177, + 5.5596636119144875, + 5.45326555558769, + 5.495225073155094, + 5.549433932951151, + 5.528473046731946, + 5.680233378096334, + 5.438432201358886, + 5.656648836179014, + 5.532426026299077, + 5.3284015527207975, + 5.416697861206739, + 5.392109632681628, + 5.3386124525316045, + 5.336710910169902, + 5.448592215015086, + 5.385831350878574, + 5.217642546371903, + 5.3029504421792755, + 5.2856069086917445, + 5.347878570932659, + 5.315273644214797, + 5.215705865284432, + 5.030193722205127, + 5.0804764211556845, + 5.279709459059796, + 4.950049356493141, + 5.175305408992612, + 5.068892000631238, + 4.879039011605188, + 5.075506785267254, + 4.994390534438445, + 4.985731839947631, + 5.054588838085151, + 5.044573041213893, + 4.844962441911925, + 5.051017662287746, + 4.897176867338667, + 4.9435140102410795, + 4.83212555448761, + 4.928966617186234, + 4.802000245306573, + 5.026351095728275, + 4.838337850513457, + 4.847116630223783, + 4.574148462399488, + 4.78512715199759, + 4.815619624694554, + 4.774475368959855, + 4.415345413999572, + 4.621079949342536, + 4.6692235568316, + 4.704344433888295, + 4.4952123287180115, + 4.61071998484625, + 4.527332582358306, + 4.4876236076149665, + 4.520520568661844, + 4.623546710298312, + 4.677191102474162, + 4.448362707709546, + 4.728066814511331, + 4.461058029706646, + 4.4590212549557116, + 4.500678883351252, + 4.395046343478054, + 4.631479251322566, + 4.450900227822085, + 4.4436036335508655, + 4.258831728444945, + 4.462718364928018, + 4.410300514664922, + 4.215088514521142, + 4.329610223261219, + 4.325439222081106, + 4.2106108425006274, + 4.262962786756499, + 4.270453018820084, + 4.0741985372048, + 4.091135814187028, + 4.253125349406883, + 4.204448319611199, + 4.124433799419205, + 4.10712837565296, + 4.0468562060295765, + 4.06796490582443, + 4.060490166590371, + 4.173522856305679, + 4.146552089271284, + 4.093582547062563, + 4.097277087317138, + 3.9784088852423345, + 4.098596505853501, + 3.8482573424401463, + 3.876728777162219, + 4.152405985764421, + 4.010877227785401, + 3.9942790170154234, + 3.839712274468024, + 3.949159588836721, + 3.9586096820292065, + 3.7823803480358715, + 3.826361208066487, + 3.669173418030529, + 3.778208902832753, + 3.624880746969176, + 3.7873010660470765, + 3.8283455455100994, + 3.8141818879063214, + 3.756983052533475, + 3.6337202437327853, + 3.727611211022222, + 3.7138778238938124, + 3.4003009671207254, + 3.687858706936846, + 3.7125392456676587, + 3.5456282683291733, + 3.5612956231094457, + 3.6020052339253352, + 3.3418488821064707, + 3.532685471989492, + 3.6503831880482034, + 3.4181079429367345, + 3.362661572129751, + 3.4921320854581084, + 3.250382902886964, + 3.4926047898999024, + 3.445285170642202, + 3.457962546208792, + 3.571218467284406, + 3.4416796888579246, + 3.3414292995597425, + 3.3510242039913725, + 3.302292246866479, + 3.217101534899727, + 3.2394131812639184, + 3.0974686497564345, + 3.2179003067394483, + 3.110457195619758, + 3.279483379039279, + 3.4543627966315777, + 2.996891977917736, + 2.9736552890712016, + 3.1278781483191205, + 3.164580399996573, + 3.0809436863328843, + 2.9523325637106033, + 3.0039106215012277, + 3.193534960370661, + 3.120562356872861, + 3.1025795940497756, + 2.996764051122096, + 2.897955296671974, + 2.926772627864076, + 2.8252301770648187, + 2.8657010461587564, + 3.0984665047216207, + 2.732260574026061, + 2.8371816391216353, + 2.7994223279991086, + 2.6992736754508035, + 2.8768899143106337, + 2.9068676347705447, + 2.9669323846200713, + 3.0296116761244516, + 2.7250244902280967, + 2.7799449314689557, + 2.769691739533182, + 2.6761229464220997, + 2.9488003184855733, + 2.794785802552398, + 2.899657911302346, + 2.7965166583510204, + 2.8391702106250873, + 2.6938424532386285, + 2.6231812547586055, + 2.6771131887481787, + 2.5280992487436347, + 2.5538553395909966, + 2.432337313569946, + 2.4804343627218186, + 2.6123613812659956, + 2.6577493673667494, + 2.738635229671426, + 2.4824165786791093, + 2.640428646529188, + 2.6067060550840293, + 2.6300261115025165, + 2.5184264680658845, + 2.5000046129342888, + 2.4649301528848238, + 2.302459052780527, + 2.4779704085107896, + 2.4175628587536457, + 2.2552915867627195, + 2.3812764807182782, + 2.4360399016388135, + 2.3783013064026894, + 2.3850709572247855, + 2.1786710775832883, + 2.404870077027535, + 2.4790192010325924, + 2.1115184252383283, + 2.3918141351279214, + 2.295005122743668, + 2.2532961103329487, + 2.009441750086523, + 2.1214458073255176, + 2.1836867364791064, + 2.2263944648583194, + 2.014289734180699, + 2.0162502309627865, + 2.044779260150855, + 2.1040971552159187, + 2.213426278015307, + 2.002023861974446, + 2.0242131727566868, + 1.9445301007285705, + 2.051515456816117, + 1.9880032095625322, + 2.1825806683700186, + 1.9784246725497447, + 1.9537481164973403, + 1.9682493455739398, + 1.9959032725942134, + 2.026569553420569, + 2.006579804074554, + 2.0373704117795954, + 1.9086060022641245, + 1.7095406935379258, + 1.9038844330899378, + 1.8577105310933344, + 1.9510846925430918, + 1.9693933044010874, + 1.7889369953566576, + 1.9751516080614564, + 1.8951252777704237, + 1.6835696483037768, + 1.8132207000215739, + 1.739332232690757, + 1.763350797239468, + 1.7165672590713623, + 1.8568752420531376, + 1.970861847829287, + 1.7625277409387894, + 1.7908092043083839, + 1.7559523171529998, + 1.607463486830158, + 1.558836368250742, + 1.8084961753053388, + 1.5730349645312547, + 1.4122559696938584, + 1.7448782996999965, + 1.724751698324286, + 1.5264962789041339, + 1.5305730145545557, + 1.5549648364152566, + 1.6038967055408726, + 1.544474244816346, + 1.4715342209967592, + 1.6499733027489307, + 1.7184042657655794, + 1.5245106618427502, + 1.3075144365203275, + 1.4680818950111962, + 1.5321905049267308, + 1.511695295504017, + 1.567276099805711, + 1.5280699294432696, + 1.5188092447777237, + 1.6378690025665288, + 1.6555541937332297, + 1.5252236127354157, + 1.2705546489941308, + 1.4475235266085256, + 1.5103982660919104, + 1.254547761691778, + 1.525409550394872, + 1.4546569888405962, + 1.333515330979091, + 1.3070358738228394, + 1.5101838791880826, + 1.3896952914397782, + 1.3591221219392657, + 1.3555583515212577, + 1.358173538007503, + 1.3861524388581168, + 1.0812820163436332, + 1.4329209416817377, + 1.2033195664395486, + 1.3520972457177258, + 1.526943403566319, + 1.1211672849144878, + 1.3287801880822183, + 1.2461960187082362, + 1.1835981020283872, + 1.1202657531962483, + 1.1470743522798683, + 1.3093556125921324, + 1.2710114313529006, + 1.2151773560257944, + 1.2643411332234304, + 1.0296692725029208, + 1.1238363698625504, + 1.0438880848437844, + 1.1143143643329336, + 1.2214866525270391, + 1.1930335222173745, + 1.101175953844387, + 1.2573716975953728, + 1.101123784712302, + 1.1645390726214768, + 1.3072417656083672, + 1.1344283963740316, + 1.3000984639059032, + 1.1502272111517735, + 0.8591007491582392, + 1.0305930828893681, + 1.019442518981367, + 1.1408063567163707, + 1.1531270281551906, + 1.0819382763053353, + 0.9793191576733705, + 1.2476087775679972, + 0.9629449919925284, + 1.1276115000110232, + 1.0328041073744674, + 0.9263823906080522, + 0.9077559320312889, + 0.8972691979034009, + 1.0359788445537008, + 1.0764525089393524, + 0.8251484026534852, + 0.8999427247292291, + 0.8930988293063591, + 0.9854814620921712, + 0.9737567920805806, + 1.0864842021297711, + 1.0448783340614285, + 0.911043674148648, + 0.9684449118765223, + 0.9115916688430586, + 1.04497195740016, + 1.016715567615628, + 0.7294697681857448, + 1.0511506428221253, + 0.7871672123066871, + 0.8132312336225475, + 0.9763090409048958, + 0.9156824367336927, + 1.0100271173773692, + 0.8122397223610399, + 0.9756369477243546, + 0.8960963832161121, + 0.8077269087907522, + 0.9488644303936615, + 0.7683225248078347, + 0.6530524890102543, + 0.8933548975625527, + 1.0352913454034234, + 1.1425668724895315, + 0.8156973350081929, + 0.9597031827074622, + 0.7833881990763609, + 0.9329251480254986, + 0.9536297686874531, + 0.9869836748310461, + 0.7763586558058344, + 0.9325523723110041, + 0.9434517368491958, + 0.7823195922490076, + 0.8261468294177164, + 0.8203619275844094, + 1.0053968443983219, + 0.8483995787031829, + 0.7310591215303553, + 0.9111682175832566, + 1.0048503497170087, + 0.6381680003718995, + 0.6713152004613626, + 0.9047248759516462, + 0.8419154340992601, + 0.7696468786448214, + 0.7860167801838432, + 0.8034733315797997, + 0.747832799825346, + 0.7760133449638663, + 0.7338183910725422, + 0.8374395309490436, + 0.80726635287736, + 0.8348925284155068, + 0.8073848894435294, + 0.7450409614160061, + 0.6928527110857081, + 0.7746245902331346, + 0.7483333063816575, + 0.7811069209985525, + 0.9320823934855932, + 1.0698005270843631, + 0.7230848451465008, + 0.8547848958525529, + 0.7573394063005547, + 0.8295818189736159, + 0.8188842563795138, + 0.8178791890856252, + 0.8826156192486839, + 0.7466593000067296, + 0.739339167945059, + 0.978964422307575, + 0.9044902509444072, + 0.8492804617264145, + 0.7408360998051968, + 0.8355363497888011, + 0.877571292529964, + 1.001047427089512, + 0.720948302393307, + 0.7900306622520902, + 0.5602143988508085, + 0.7664847577419587, + 0.6435734053888196, + 0.6669991023385953, + 0.7992235467976103, + 0.9494738091374282, + 0.8706173037987631, + 0.8785459231755551, + 0.7327867099811982, + 0.7446389855329858, + 0.7434721581056917, + 0.7244508251145847, + 0.849127577787555, + 0.7560888555075063, + 0.7758194674033032, + 0.8166880219825245, + 0.9410150222116419, + 0.6947648211096543, + 0.8027873267292824, + 0.826725254239661, + 0.8243353499209705, + 0.8127334292139883, + 0.7225853334153821, + 0.9538891830275528, + 0.9653731704838848, + 0.7711119249320448, + 0.7286426237619011, + 0.8514144375076932, + 0.9383974306348947, + 0.9184268959892554, + 1.0017340801974617, + 0.8596492865647796, + 0.9303808099301739, + 0.9090994962010677, + 0.7648641658072621, + 0.8668939463807986, + 1.0001268856486982, + 0.8509293980183291, + 0.8445861949425594, + 0.854207971134683, + 0.7555598460244145, + 1.0874246217236132, + 0.891880065588215, + 1.0834731782982605, + 1.0309903182234548, + 0.9352325365225258, + 0.7056332891473002, + 1.0761256662862573, + 0.9050530976574886, + 0.9859701105442784, + 0.7622318665476477, + 0.8025489692346895, + 1.0405008298742089, + 1.0732090479096215, + 0.7886717937449734, + 1.1659802483661255, + 0.8091382652003873, + 1.0089660271358898, + 1.112567197275829, + 0.8698804174857913, + 0.8282625926042697, + 1.0420792108820989, + 0.9770126964096982, + 1.0595624061070419, + 1.0469133622081888, + 1.0785541218870558, + 0.9119533035576682, + 0.9418327031058045, + 0.8711365042432709, + 1.1963825044988314, + 1.2331802533625709, + 1.1181462068160575, + 0.9394690833981214, + 0.955978359693405, + 1.0792756948135915, + 0.9351239613592138, + 1.0671301216999258, + 1.0862584274032492, + 1.1044562333449601, + 1.265198248388642, + 1.0389522494416175, + 1.1061194738768272, + 1.043506199818026, + 1.0482425306501106, + 0.9368969044166098, + 1.1816239290066404, + 1.1599637392249749, + 1.0419365076639655, + 1.1578055370420055, + 1.3615584051550982, + 1.2338579829384844, + 1.2078133533722293, + 1.1618177604882904, + 1.0861885851958335, + 1.155582172864598, + 1.1157136450291718, + 1.1282706895682133, + 1.2056541681735864, + 1.3386979482067576, + 1.4057727358744305, + 1.2848866620289212, + 1.2930663459997689, + 1.2932568747754267, + 1.284640328393474, + 1.1957821868181802, + 1.344134647606997, + 1.168559785520453, + 1.2035507787022983, + 1.3271363963600713, + 1.4315585802839859, + 1.2431886057158221, + 1.4076994029137841, + 1.5092088960677479, + 1.3880858413332304, + 1.2325824627142041, + 1.3762628405629398, + 1.3121980873050543, + 1.3674229374224098, + 1.439535792812335, + 1.4092743866793753, + 1.3873411649788403, + 1.4376059680614741, + 1.6163268833194975, + 1.570477182725564, + 1.495952510914099, + 1.460270695810933, + 1.4976589887179053, + 1.659304473913278, + 1.4141449630018132, + 1.4981648698626588, + 1.5841472715576326, + 1.4384124928523383, + 1.7169076027385386, + 1.5794832049251122, + 1.6268278671391758, + 1.695351934033881, + 1.6170511370301597, + 1.7235466739073582, + 1.7836311172506742, + 1.464098990598935, + 1.697686389238566, + 1.7996532015374787, + 1.6106095013973398, + 1.8104392971575862, + 1.6988248659453042, + 1.6904771936415328, + 1.7593947150919604, + 1.7452829528021698, + 1.8352042094133691, + 1.7987599486347317, + 1.6284518478646686, + 1.7306493614709042, + 1.8385122648013292, + 1.681418366356679, + 1.756689150610939, + 1.9533144819176496, + 1.7278902330437595, + 1.725354912950956, + 1.9034599787857358, + 1.8912973338227597, + 1.7858226382996567, + 1.9001273738231959, + 1.928824404106741, + 1.8234558912678733, + 1.8320487329537598, + 1.9540819478031577, + 1.9434338416309227, + 1.9909768126020622, + 1.7492475917958146, + 1.8557973631249547, + 1.9805157070016843, + 1.751764811887032, + 1.8347008581847617, + 2.1898283352987002, + 2.0499536147612174, + 2.041023485085464, + 2.0190584776982803, + 2.217341624049764, + 1.9683630787890842, + 2.1084397616063235, + 2.033314969195952, + 2.2170257448974784, + 2.1042893869389157, + 2.107354344303868, + 2.1031163151202614, + 2.079583588191796, + 2.2113236042525077, + 2.3422571750463774, + 2.2391367257413823, + 2.231000951083686, + 2.457508708454604, + 2.049267250370966, + 2.4373827020429593, + 2.317034793578918, + 2.3128651517546532, + 2.4112342285328214, + 2.2622743258689297, + 2.473892218493521, + 2.39813839239099, + 2.4011146208980665, + 2.5864054095669426, + 2.447543291191864, + 2.4450041403302354, + 2.494664028173716, + 2.366987984174174, + 2.346684983814174, + 2.572682512738066, + 2.4446378446703014, + 2.551466337489572, + 2.4425669814540854, + 2.6038187874683394, + 2.518003955087611, + 2.4843561627483157, + 2.573765363313466, + 2.6954422576984993, + 2.633575205877225, + 2.5571976675461, + 2.7169745684019726, + 2.6575026444412, + 2.564787403807832, + 2.5885320957576976, + 2.771380140218483, + 2.7478254668994255, + 2.539368759607989, + 2.586829023577758, + 2.7495106032207954, + 2.692519254508305, + 2.8774884606676627, + 2.5723707867860552, + 2.747168364956842, + 2.8721224227245847, + 2.752123068990958, + 2.726386610628238, + 2.8293738022698856, + 2.8095229808813706, + 2.7127777784793654, + 2.9733253547062737, + 3.0032896004763576, + 2.926026964200924, + 2.996665207276242, + 3.081815464602892, + 2.986080257987801, + 3.09118457498613, + 2.9199595236816784, + 3.298736614729117, + 2.9920524272648956, + 2.9457590313684694, + 3.018208392743178, + 3.036464370808024, + 3.2634612124334144, + 3.11577442449775, + 3.1527366772145426, + 3.2116866259737638, + 3.355035576635497, + 3.18224932654404, + 3.2846933438467283, + 3.0989487071043924, + 3.308317428759397, + 3.2657058768860208, + 3.2781593066367885, + 3.3254126602513914, + 3.318583880031018, + 3.3221152951827353, + 3.269376757002625, + 3.3117591064985024, + 3.2634988826318976, + 3.2339342062141125, + 3.364601144010996, + 3.4571501740506014, + 3.406456551918319, + 3.4922825245636293, + 3.6404558428657006, + 3.34156597331072, + 3.4977241602017473, + 3.4467693385393536, + 3.418583949019548, + 3.736265351905719, + 3.72691213459839, + 3.603744451173849, + 3.576836250008597, + 3.5444189164770084, + 3.891285506313286, + 3.8330687586928955, + 3.581312809102224, + 3.6112645254089615, + 3.66687222204234, + 3.8577124926983046, + 3.831063860581899, + 3.6343551920150965, + 3.9376199286491995, + 3.872084768852608, + 3.7954297562259076, + 3.7611110820041183, + 4.016600233602173, + 3.769255219758232, + 3.9160235861418466, + 3.99152478244172, + 3.8189373650686753, + 3.913746345338393, + 4.0265432883895675, + 3.857315477862912, + 3.867996883562301, + 3.9058450877498574, + 4.081118402042361, + 3.9962406021528216, + 4.176642526815575, + 4.307042975922598, + 4.029606081333797, + 4.078851709538414, + 4.208328668182924, + 4.067057537108653, + 3.9710520408525345, + 4.09595351774546, + 4.048742540340313, + 4.202817574676731, + 4.122348400567445, + 4.129307580737744, + 4.4192910746596645, + 4.144919329383013, + 4.3441714999987555, + 4.229598588087752, + 4.21725459685906, + 4.335496719754908, + 4.394504063570992, + 4.3444099943156065, + 4.443619737451722, + 4.419432922906026, + 4.512420156232359, + 4.5655799489861035, + 4.517565698281719, + 4.4391899774089145, + 4.523773509395148, + 4.397126572972284, + 4.515373815436898, + 4.563213096429524, + 4.677940028318427, + 4.466507928646312, + 4.474024268272347, + 4.817785822289087, + 4.542115742979081, + 4.641808707084139, + 4.561511371240458, + 4.58457111172783, + 4.965593734632177, + 4.688182101550598, + 4.8233731468911945, + 4.825596807712012, + 4.7205708449782895, + 4.699606802527189, + 4.767196226562558, + 4.732613291029634, + 4.8444759278477205, + 5.079082179585787, + 4.867241483353124, + 4.818395716136318, + 4.66007398247869, + 4.923921414732423, + 4.911370971224657, + 4.96569762893481, + 4.889579189517346, + 4.99296641151653, + 4.929344253791523, + 5.06399072182936, + 4.960082137149291, + 5.038201795956036, + 5.126536103775411, + 4.887996209048256, + 4.914387891747464, + 5.292499118986285, + 5.19199796461891, + 5.3038170342664985, + 5.257628939085281, + 5.077270521355165, + 5.223540836822785, + 5.269111002757679, + 5.290900071603539, + 5.218886929966728, + 5.340656596670132, + 5.227326825886293, + 5.561912052653514, + 5.243417165264773, + 5.426152608805905, + 5.0984576885965005, + 5.3938298687024995, + 5.460897411437108, + 5.512155079127354, + 5.3812223891447815, + 5.468447948081803, + 5.368003657739413, + 5.540437443931584, + 5.585905013304543, + 5.679644829151139, + 5.572351252087116, + 5.745443750584922, + 5.526602334965548, + 5.622913290056757, + 5.632469350764055, + 5.642094808065635, + 5.749592421133841, + 5.754262010628953, + 5.5361541180314795, + 5.641056262920036, + 5.738594823043181, + 5.880620465334612, + 5.755773115910889, + 5.691804519001033, + 5.7499101377851805, + 5.727145758870631, + 5.813438881070094, + 5.949001120759252, + 5.87000147887273, + 5.98981215317745, + 5.908739173376056, + 6.068968815612104, + 5.943855462995266, + 5.955631607162956, + 5.963475449405859, + 5.89907193188874, + 5.979532648326932, + 5.872188526395175, + 6.116283258635526, + 5.907838928063234, + 6.206357270284317, + 6.15884058464169, + 6.159426587110095, + 6.234432414244399, + 6.152311888509226, + 6.215411566707354, + 6.26716527041358, + 6.156039761052349, + 6.205019798510879, + 6.236663592926591, + 6.200112484182858, + 6.186082095238744, + 6.220988889607091, + 6.310599491040756, + 6.261169739704034, + 6.300078984122658, + 6.154777694776946, + 6.379152207896123, + 6.39095449103828, + 6.358362937403394, + 6.3416349161001575, + 6.445782912482193, + 6.547796211191394, + 6.291352416285472, + 6.5030185483146745, + 6.468756881892145, + 6.758066325733019, + 6.52611072374225, + 6.597110932725488, + 6.697585023130741, + 6.625985184287328, + 6.773909890524746, + 6.678446101663268, + 6.724052645051641, + 6.636385162383097, + 6.57580146292187, + 6.5432251013274065, + 6.688570006512688, + 6.647051568181275, + 6.637768344405681, + 6.75623256326288, + 6.657621236176936, + 6.840495823357399, + 6.654559137064439, + 6.809595807888962, + 6.93399030069995, + 6.897923751341709, + 6.749130731123622, + 6.852696958448715, + 6.681620569620705, + 6.642702001313059, + 6.975370828551534, + 6.704367247274272, + 6.783030858576171, + 6.970590214134331, + 6.987197825671651, + 6.749189168767751, + 7.1180832098929105, + 7.125889629466411, + 6.956626326490809, + 7.168948831007813, + 7.088315171251578, + 7.222435015857694, + 7.000572678649949, + 7.166072649059803, + 6.900293174746823, + 6.993641001893373, + 7.126318671361969, + 7.116480440265061, + 7.201684580383714, + 7.084607540725435, + 7.043950427730867, + 7.132283822949806, + 7.161767752943306, + 6.955019669841775, + 7.303282594543695, + 7.195121509474134, + 7.187078524616729, + 7.217093889370956, + 7.479304303024976, + 7.357995331878363, + 7.434776303923674, + 7.218408200671624, + 7.366604442639772, + 7.219300714485981, + 7.513176467517411, + 7.460064004773987, + 7.381208351923583, + 7.43476886665828, + 7.545063018691738, + 7.426458556360028, + 7.589304285086061, + 7.577854860174737, + 7.481895884953876, + 7.463766268018498, + 7.42698762247824, + 7.5014481513149915, + 7.400555841219011, + 7.428214909317204, + 7.554910096694246, + 7.452254555016697, + 7.561044511256105, + 7.72971663726019, + 7.484817517667781, + 7.796952783358758, + 7.6108168618808545, + 7.600543042627103, + 7.633410189845787, + 7.673798478610024, + 7.640429391504036, + 7.457445507637208, + 7.787916290580587, + 7.624168108926013, + 7.6142515990523405, + 7.856561813272826, + 7.682300506055121, + 7.8183246573569125, + 7.6173071151339355, + 7.6741789823557225, + 7.964040037750781, + 7.966324322260722, + 7.683620151063232, + 7.895644505366231, + 7.837851685398734, + 7.820559568693532, + 7.862367441326912, + 7.780501850910643, + 7.857619805655373, + 8.116661906538713, + 7.911803358972405, + 8.057085470709973, + 7.76935713528032, + 7.813672605741641, + 8.01022593305212, + 7.792884789494209, + 8.101504078196953, + 7.852148411462273, + 8.119052314352395, + 7.922426057577933, + 8.044150939946238, + 8.20093473515029, + 8.120624820136237, + 8.085541127883086, + 8.200956825319144, + 8.169714817178281, + 8.072987283041549, + 7.950932614910443, + 8.002806357633293, + 8.082926879029447, + 7.990371695045096, + 8.177007146657186, + 8.103050777349914, + 8.209118317086071, + 8.221106959400545, + 8.20741076169524, + 8.19973862206183, + 8.229244866739139, + 8.255518570990905, + 8.253699488932911, + 8.190851659236952, + 8.056773818231315, + 8.34073057537805, + 8.235301054462617, + 8.301834019112185, + 8.140438888776275, + 8.265570671957779, + 8.41848382303083, + 8.200001343106791, + 8.401682905157852, + 8.203071612348086, + 8.156190408914707, + 8.354248604895893, + 8.251930171030772, + 8.367639292492688, + 8.417680681292495, + 8.314441619028221, + 8.343794433515017, + 8.277009678283596, + 8.549085983071812, + 8.370270680675953, + 8.46489572471052, + 8.345419415366987, + 8.461393064009364, + 8.595416329455501, + 8.380026546589722, + 8.32940780736361, + 8.550334563792232, + 8.25414970183993, + 8.500159409698536, + 8.588338023234064, + 8.481527155189013, + 8.58350456188313, + 8.459049750505875, + 8.569936056653642, + 8.554509103435265, + 8.612416694098757, + 8.530110615225679, + 8.54370298850597, + 8.53118972049437, + 8.57859472045954, + 8.626649137102698, + 8.566404406914016, + 8.574155021620758, + 8.513282108973888, + 8.469637277294439, + 8.465719024748187, + 8.52546054871078, + 8.388374366678814, + 8.653151588000442, + 8.481754495914924, + 8.446369671210373, + 8.595415706746822, + 8.534388034496907, + 8.658320130539872, + 8.58220567005977, + 8.600193907717477, + 8.77778776337567, + 8.690348732307683, + 8.771508518047046, + 8.691906972733282, + 8.501852320934358, + 8.700595489589379, + 8.813496880623603, + 8.544981884803876, + 8.673103171705693, + 8.7042857213681, + 8.723263181761151, + 8.734028807727721, + 8.547994288750866, + 8.67580828080977, + 8.65732660256201, + 8.601004196911157, + 8.88760897385098, + 8.781635182596585, + 8.669551721850006, + 8.63599178900674, + 8.59913671316635, + 8.767277287226635, + 8.871171935199518, + 8.775332528299312, + 8.89258436765764, + 8.855453786434985, + 8.637192407288895, + 8.763485840923117, + 8.578846947781656, + 8.635860540876566, + 8.590656923908538, + 8.843861329371567, + 8.743662337292816, + 8.673595395478866, + 8.834287672134558, + 8.605546668779553, + 8.783232104173994, + 8.761409130543024, + 8.681029483427023, + 8.643154339879606, + 8.862435550645232, + 8.84073589444401, + 8.95590450058412, + 8.850819248013151, + 8.691330420282018, + 8.833109288937488, + 8.70558901997777, + 8.749047423955465, + 8.48393502430925, + 8.816012698502352, + 8.929420219605369, + 8.720099463084136, + 8.659009909860897, + 8.842930741754257, + 8.853706255567566, + 8.813741029577233, + 8.881535099734624, + 8.67153167158504, + 8.911143571239894, + 8.773946475528245, + 8.749729355990697, + 8.693425932737744, + 8.729886256574483, + 8.892479316278356, + 8.733167066967331, + 8.844401320614192, + 8.967339173003715, + 8.706399765134973, + 8.761455692292916, + 8.868713683874704, + 8.672186624512548, + 8.651424495828115, + 8.731950190780442, + 9.035739162935352, + 8.825965891031968, + 8.903139471687835, + 8.755766444519685, + 8.653111246885066, + 8.875830825917145, + 8.747866380835102, + 8.775931099054263, + 9.009064167680393, + 8.775185552246999, + 8.850001214045461, + 8.71627219759934, + 8.875482490335107, + 8.762147193842273, + 8.846762108331353, + 8.647874555287101, + 8.825085204049993, + 8.738903741113065, + 8.766074088285754, + 8.660529546806234, + 8.714900713326973, + 8.97254774581099, + 8.61138449616189, + 8.668804933620033, + 8.697255828849158, + 8.645634851782361, + 8.912122440986856, + 8.80110502944805, + 8.90879666762532, + 8.713925230156573, + 8.822946675306978, + 8.80689885642876, + 8.675444827554339, + 8.933302585835154, + 8.664431467061492, + 8.8405145355284, + 8.62227684151646, + 8.828542750195247, + 8.975271737790546, + 8.783454939699354, + 8.733860180716595, + 8.65977261944872, + 8.580073024269332, + 8.569628183943705, + 8.736221693626131, + 8.948951765891891, + 8.841337721302997, + 8.823686294593747, + 8.655537152939237, + 8.74763357571868, + 8.737406804784332, + 8.56866193217285, + 8.826844145444143, + 8.64168340107963, + 8.708318345463372, + 8.907233255344604, + 8.803729481492546, + 8.545418423934755, + 8.63681344436631, + 8.852926938377259, + 8.521088571575588, + 8.481358959157983, + 8.68285594357507, + 8.613317179822332, + 8.747856119762528, + 8.754727931775081, + 8.696979438396585, + 8.60461894639715, + 8.606891052985809, + 8.62230905652139, + 8.602711689794386, + 8.669569476635441, + 8.425555786874586, + 8.470730874037109, + 8.52738376689568, + 8.571770950994601, + 8.34849819181513, + 8.581769370611882, + 8.578629228908223, + 8.371339374761165, + 8.53953055507437, + 8.543210701392317, + 8.427933886522018, + 8.495406173073476, + 8.633039558718947, + 8.552468697330209, + 8.444060054207789, + 8.44507408531747, + 8.421095371346677, + 8.672515563312105, + 8.50151514894638, + 8.350892814503979, + 8.442818249746479, + 8.466402711369748, + 8.352072029519798, + 8.490031037046306, + 8.483883683497613, + 8.489701639136687, + 8.30041654928945, + 8.370310389926594, + 8.411050249250252, + 8.267660013337172, + 8.170140208737255, + 8.29943462652482, + 8.463923589607823, + 8.311510670624811, + 8.350674943824968, + 8.230066128888758, + 8.33650536208964, + 8.376270579840686, + 8.371135957203434, + 8.308878522773039, + 8.248324744138161, + 8.242784464246753, + 8.291306757620184, + 8.410730282359356, + 8.248568831770207, + 8.160552391792143, + 8.171659867821562, + 8.443841881396146, + 8.32091125570528, + 8.349172300584199, + 8.25107993881684, + 8.311858887175369, + 8.142220011350858, + 8.352310493198422, + 8.066031553235499, + 8.087670391143467, + 8.168615319868485, + 8.139561045757825, + 8.364164482314264, + 8.112489137432643, + 8.16226287338415, + 8.21392086176581, + 8.016923014496616, + 8.048402640052887, + 8.122592072668938, + 7.9239332058473195, + 8.09166387015562, + 7.888707512462653, + 7.978786579162538, + 7.954655749431589, + 8.022102675033763, + 7.969652644251479, + 7.955659427600354, + 7.999679127732543, + 8.105042459220567, + 7.997318482000227, + 8.063237320827248, + 8.007560362752344, + 7.933532122631237, + 7.915868698878132, + 7.883427052842842, + 7.941793305570142, + 7.9256341995131265, + 7.967499335791787, + 7.8712502537599045, + 8.03921417130024, + 7.899696734162487, + 7.960370305192632, + 7.773242513782895, + 7.7693155498095114, + 7.681727728247514, + 7.656558079404635, + 7.7300035631429544, + 7.753126282086393, + 7.738960877599994, + 7.885446812779342, + 7.631284823278713, + 7.760609193773149, + 7.689868928225149, + 7.7901578934200995, + 7.599225434106107, + 7.81228899666359, + 7.448247381408635, + 7.649245582375774, + 7.722383690289083, + 7.629603346069538, + 7.587379081808248, + 7.635215119896377, + 7.588979324080549, + 7.497695055919388, + 7.648217845571539, + 7.600301965767901, + 7.590269091122292, + 7.586331806291663, + 7.400688365971131, + 7.416548007316625, + 7.482584549952462, + 7.363685083860218, + 7.39505208616448, + 7.735558841074433, + 7.4908834272789235, + 7.48627830528288, + 7.236871640890745, + 7.432897241600539, + 7.5495209518433315, + 7.3535160069240995, + 7.2774668819916, + 7.348902811921687, + 7.2754693229059955, + 7.356339834580662, + 7.39892460119926, + 7.434914573317882, + 7.228728609680516, + 7.34249209556053, + 7.273799212445649, + 7.1975013434692094, + 7.292593173056073, + 7.094810566166907, + 7.15887722578934, + 7.09407149183145, + 7.251510052848887, + 6.957489642786542, + 7.093203393150831, + 7.031124933571651, + 7.219329986972967, + 7.203059403922164, + 7.107905868272972, + 7.036857033578108, + 7.052829393008927, + 6.973448640819505, + 7.0324625610676295, + 7.089024790983856, + 7.054514100935405, + 6.945211548937165, + 6.95760367027428, + 6.929246230107815, + 6.846891614932573, + 7.020820730454596, + 6.9018124354506405, + 7.059093867588761, + 6.915010442442866, + 6.851704684961872, + 6.654806961973409, + 6.920705519943395, + 6.787323397103433, + 6.704399917288391, + 6.79671651638416, + 6.867444351210724, + 6.689687256546164, + 6.897638102917981, + 6.722197067055549, + 6.608079815858065, + 6.638770167558407, + 6.813329460253874, + 6.86050176515945, + 6.504316749072309, + 6.6631912448653745, + 6.740719602214491, + 6.596925198465354, + 6.515598916946854, + 6.5604182947567455, + 6.522195181216766, + 6.503099304666748, + 6.4087945817458145, + 6.587279679913162, + 6.558304040386023, + 6.482808166250955, + 6.289037641613755, + 6.454145548216234, + 6.48912707596455, + 6.441231874655792, + 6.433799800588423, + 6.1627627047831135, + 6.394850290738057, + 6.330077878704139, + 6.4784581973287985, + 6.314070227000095, + 6.44680260848103, + 6.251958523833035, + 6.408578420246971, + 6.073737783911929, + 6.30483907049701, + 6.426039690843744, + 6.169162546596904, + 6.185327479056855, + 6.173672181641659, + 6.185696428203471, + 6.113223856462711, + 6.16950942719458, + 6.149389735970843, + 6.1149794664228505, + 5.924158426620544, + 6.076248192023382, + 6.257536427365643, + 5.987579688740003, + 6.098849370178984, + 5.8351970902379575, + 5.866925931277148, + 6.188916612804376, + 5.850933312362427, + 5.807966076372196, + 5.97094792820402, + 5.940463045761429, + 5.928213027648078, + 5.883264902982148, + 5.950891164816466, + 5.617170477512464, + 5.81976882026959, + 5.732355992565322, + 5.877798323389088, + 5.829748487129879, + 5.714906635405855, + 5.76462955606956, + 5.68128228420889, + 5.691633208046266, + 5.663097020134419, + 5.7924030928363965, + 5.7204728592784635, + 5.721368432688723, + 5.4683412645693785, + 5.734311234898745, + 5.562943243024375, + 5.556035942077658, + 5.545345577554123, + 5.4698699531954995, + 5.560519611576145, + 5.5483036904094645, + 5.610895627965208, + 5.30475651168031, + 5.394793122317365, + 5.1834199552672775, + 5.39097483798194, + 5.319420057674495, + 5.297471331401742, + 5.2268607774627185, + 5.37731208438127, + 5.255512195726297, + 5.411744664726988, + 5.154341252816678, + 5.242969116078273, + 5.155889777739305, + 5.116696545971676, + 5.265950634056487, + 5.010973850009872, + 5.236037082955743, + 5.022882063143472, + 5.091619278801771, + 5.034810258252935, + 4.9710009340531265, + 5.091907104079483, + 5.011813767498613, + 5.166932423799301, + 5.050498364133064, + 4.891250688116042, + 4.9792767980207895, + 5.041830865782906, + 4.8372774134157, + 5.028990973801775, + 4.77354764729688, + 5.061602861492748, + 4.938005311092751, + 4.935718691432032, + 4.73974120350289, + 4.831678378612729, + 4.81965609092064, + 4.82631578553903, + 4.7671033217982774, + 4.845301963712657, + 4.751261391812636, + 4.728875514912451, + 4.828728559723831, + 4.547799952074025, + 4.535193215507647, + 4.651204026201878, + 4.578151429618251, + 4.606395667106771, + 4.5441218746257155, + 4.494962143004504, + 4.528630396566701, + 4.818063455099676, + 4.533771071961215, + 4.218983425133451, + 4.428833336897973, + 4.557581429132013, + 4.448637564916344, + 4.442443094093778, + 4.418919944919811, + 4.426581133420638, + 4.4934336797707255, + 4.4961919479054355, + 4.016760015514846, + 4.425862865336621, + 4.354965296494777, + 4.397486284567105, + 4.389234800092727, + 4.277800146449055, + 4.059529690661251, + 4.192368767316684, + 4.116357404341516, + 4.167224463831896, + 4.111269977804062, + 4.286279255741163, + 4.324074313309477, + 4.073911414009934, + 4.079563009843468, + 4.132037369536389, + 4.117706819283608, + 4.021552530092468, + 4.197773683557486, + 4.068275456993829, + 3.9360244731244873, + 3.982640076908013, + 3.95622511613833, + 3.9233915695493176, + 3.6700829962383197, + 3.819358410908034, + 4.065185544658454, + 3.8775806330263305, + 4.014364124467245, + 3.8114546846598194, + 3.9398354670827613, + 3.71013400685997, + 3.8629893985279358, + 3.7795838201937775, + 3.9892513713863824, + 3.745661016812826, + 3.583587469992125, + 3.7468550726524126, + 3.6935790089697464, + 3.7057965123311694, + 3.598935198042783, + 3.7371693059758164, + 3.632261083504694, + 3.5627229358682637, + 3.6935555789332124, + 3.6192127976958273, + 3.746890842719102, + 3.6621393435349217, + 3.5084270313272854, + 3.413760711068228, + 3.4730639924893394, + 3.2217206875969993, + 3.601626198874494, + 3.54827990867374, + 3.4297919213119887, + 3.471135714276857, + 3.2932537310297296, + 3.3751109183851744, + 3.472783163220492, + 3.3466914654989965, + 3.253088255533332, + 3.2172604091564225, + 3.4501231192336688, + 3.4877092917672323, + 3.3486716251818223, + 2.9832237667348314, + 3.545818988111296, + 3.256385994922525, + 3.3651646611599837, + 3.1610301271558936, + 3.1829494414849613, + 3.114561922017934, + 3.0439509677301686, + 2.9858789849960927, + 3.1852011620482856, + 3.1796622973242714, + 3.0617658125577356, + 2.9292804685442078, + 3.0934501378392487, + 2.926659168596315, + 2.853900490647348, + 2.9897721479360384, + 2.9904593888615945, + 2.8887234802209245, + 2.989760243398581, + 2.9502584279488833, + 2.892980683444363, + 3.0354014439015375, + 3.026812395801368, + 3.0108347813012877, + 2.8950938872506597, + 2.857881507172746, + 2.9064369139733395, + 2.9102081335246117, + 2.8234522171487106, + 2.6690666762037347, + 2.731163380074726, + 2.7585856809308487, + 2.823781197582322, + 2.7660977101736566, + 2.6096836751060293, + 2.5851603283223663, + 2.5499864351233072, + 2.74659555424517, + 2.6606139341202035, + 2.59674144801161, + 2.7110219450820376, + 2.5967230638690877, + 2.3890705522241786, + 2.7184012409131864, + 2.6940624525858667, + 2.4765428770518416, + 2.6146980255968866, + 2.5560900985724166, + 2.513395558968911, + 2.496512542309544, + 2.3980586502361994, + 2.2752498100745777, + 2.480370100496272, + 2.5173122960799303, + 2.4391370505326773, + 2.4636758624504407, + 2.4406125302485693, + 2.406639153705644, + 2.538045754881078, + 2.324170645469033, + 2.3455679953583783, + 2.4737871629339447, + 2.3941445171999236, + 2.35966992298528, + 2.5354681072403493, + 2.1515106919469704, + 2.126771353901458, + 2.2026941107541322, + 2.0635077012680623, + 2.254484178475288, + 2.4388157031790554, + 2.290186151475854, + 2.26366792488275, + 2.2342062168631065, + 2.10883136555427, + 2.035687084268247, + 2.242611193106755, + 2.020095313811451, + 2.002802353746922, + 2.075183010874513, + 2.0049126008335176, + 2.0965328274625694, + 2.091821150289602, + 1.9539322012498173, + 2.1070868493832773, + 2.0269642141380033, + 1.9716998590854127, + 1.9247356918308063, + 2.1532674441818274, + 2.1799011511111384, + 1.9069372473783472, + 1.8673297057797766, + 1.926787968967653, + 1.9525774076317073, + 1.7543654741189252, + 1.8209163572754328, + 1.769432738005275, + 1.9846296125753287, + 1.9222747382748575, + 1.8980821752123342, + 1.8946875115517923, + 1.6896909760105994, + 1.772577508160753, + 1.6797543183554882, + 1.9524354458661715, + 1.7191213249806396, + 1.889960800719146, + 1.8245700104634577, + 1.5992892166985635, + 1.6791629551205922, + 1.6044584350989821, + 1.7491432852255389, + 1.4817665374708482, + 1.7160355969010155, + 1.684848392757042, + 1.8643585810332426, + 1.6559408934774313, + 1.6000959640998351, + 1.5558168740431466, + 1.7663212673596813, + 1.7050288881979188, + 1.748645482817643, + 1.5452651038409901, + 1.4677963562661098, + 1.4677572991919605, + 1.5386849288106452, + 1.6298044465738482, + 1.523927090328264, + 1.7402776873775454, + 1.5520687637301995, + 1.529488400658193, + 1.4497267324509526, + 1.4554236085129995, + 1.4528299019393707, + 1.2697199956099647, + 1.4058856705006344, + 1.4704921936965207, + 1.4782332116135792, + 1.351822090761909, + 1.3922544839390079, + 1.6401447997383887, + 1.4949999469810398, + 1.4635190513435603, + 1.31680398043231, + 1.3739426818218974, + 1.2536845850420277, + 1.5045882213040473, + 1.1904142468083991, + 1.2835325164959706, + 1.3179479815783905, + 1.244387060157993, + 1.2960353973762893, + 1.3003148898932964, + 1.1705246097410051, + 1.242774972758167, + 1.158628541466094, + 1.08557766206408, + 1.2682431443349071, + 1.1240959047508332, + 1.1905265367570912, + 1.2594647303393591, + 1.283019224283577, + 1.0616074218633043, + 1.1994933814874713, + 1.2300710924758167, + 1.141355768591776, + 1.2506185567903116, + 1.3558412023537592, + 1.0558053651089017, + 1.2235820121374503, + 1.3742757023154053, + 1.1963205158343537, + 1.1721765542118108, + 1.169341452412451, + 1.0452167098657066, + 1.1204345612990863, + 1.010113796388427, + 1.2102806111176245, + 0.9466647832405753, + 1.2175961114438207, + 1.170850330120955, + 1.0063096172936186, + 1.1200340400004822, + 1.151659406848551, + 1.110048285368978, + 1.1376759641688081, + 1.03789715987701, + 1.0977362071027226, + 1.0572960224943224, + 1.1854087873893087, + 1.1044446577628757, + 0.9032061561735631, + 1.0148971383935979, + 1.025706649767892, + 0.9952844214688138, + 1.1699021820217335, + 1.1191456856252673, + 0.8972875540027919, + 1.1075014575094506, + 0.840437216508188, + 1.0003609131080196, + 0.9018539465797759, + 1.0727818940385294, + 1.0131069407037243, + 0.9981109363642137, + 0.9516828576512104, + 0.7514276996566273, + 0.9333264396761237, + 0.8078631019334508, + 0.8722805784526283, + 1.0559671292654371, + 0.8966253694389725, + 0.9563818297153771, + 0.7828009331757209, + 1.0367655227723445, + 0.8666622411491182, + 0.9325287989871672, + 1.014108860357421, + 1.0246562081968966, + 0.7808294869477108, + 0.9093491151721051, + 0.8465484392201585, + 0.8845150401145006, + 0.9442876624244745, + 0.8001589933975595, + 0.8670857096467816, + 0.9501203979319159, + 0.7815985338143163, + 0.9689929817721779, + 0.8396696493278105, + 0.9315988072152801, + 0.9893830220304121, + 0.8236597472884836, + 0.9083265574118593, + 0.7981812268546227, + 0.9097469783055449, + 0.9888378164186067, + 0.639742187447473, + 0.8949475051715191, + 0.9140256508657829, + 0.7412740967425102, + 0.5478128364143631, + 1.0038208962712667, + 0.6646894229165193, + 0.877178692681692, + 0.8626435770679352, + 0.8429432693337819, + 1.0579510773889562, + 0.8905149140074254, + 0.8971407142966521, + 0.8162814270338008, + 0.7967399610521949, + 0.8247800564961159, + 0.8433686101309643, + 0.6517878545148507, + 0.6431240249091835, + 1.0720606501939498, + 0.8688185714908448, + 0.8144808507200785, + 0.7797167641068862, + 0.7271758724002086, + 0.7728686641539383, + 0.8495445901616521, + 0.873688084223005, + 0.7489975306109627, + 0.6796263725244545, + 0.8235634700896112, + 0.7438022121353434, + 0.7365843188339551, + 0.9265639311755819, + 0.8099160457255502, + 0.921607364532411, + 0.9611075438289017, + 0.6542462695255749, + 0.7387861118485536, + 1.0199453742967215, + 0.8303546717287632, + 0.9300885571505708, + 0.8578091615218012, + 0.8217436786614856, + 0.685264915849718, + 0.7525468036175719, + 0.7330348366039666, + 0.7756336235929249, + 0.7824467410663929, + 0.7938409906753439, + 0.8943636218375222, + 0.9403629875580253, + 1.1092530100718843, + 0.7884619426196275, + 0.7270357139840302, + 0.580611472916844, + 0.8229097044860669, + 0.9392326234619177, + 0.8915048405212198, + 0.7385032548465277, + 0.8038656592387965, + 0.6665201556537079, + 0.7777926478460384, + 0.8078942515936638, + 0.9740055432233069, + 0.8765283070444605, + 0.8045197140830564, + 0.9608423753747614, + 0.636503490328905, + 0.7276385291642131, + 0.9719011519100988, + 0.9361333013484563, + 0.755914759853278, + 0.7784776015794656, + 0.8494840734114862, + 0.8322973921108492, + 0.9015675564655847, + 0.9380973597593186, + 0.8883471450847177, + 0.8678131579152513, + 0.9188724035856064, + 0.8195754319351001, + 0.731398236925611, + 0.9011403169102872, + 0.953942406938004, + 0.9421464956963485, + 0.9221553886965761, + 1.0336937527906787, + 0.8674324530068827, + 0.8579200091601024, + 0.784969560865303, + 0.9424720064789867, + 0.8412297723523965, + 0.7340141043443444, + 0.9181255450072334, + 1.0081114823516355, + 1.1436474422486773, + 0.8388405616014388, + 0.9940345271617924, + 1.1312368156212982, + 0.844500802134971, + 0.8690320610339426, + 0.9784785965442314, + 0.9486155747239126, + 0.9965906410864833, + 1.04199871766917, + 1.0418714634109965, + 1.1914801716110985, + 0.950934796491422, + 1.1141236018268068, + 1.0877746256717686, + 1.0210065808438795, + 0.9170770565629217, + 1.0052056647613958, + 0.9003639858867969, + 0.9752518706155129, + 0.9587633723651261, + 1.2738552393673674, + 0.9292048420314065, + 1.0764752715182133, + 1.1121594092823313, + 1.146237754530383, + 1.0124166813115352, + 1.08866562104159, + 1.0787520876830767, + 1.1698727808843903, + 1.0330122231996728, + 1.0479784288459613, + 1.0052769382223967, + 1.271725408264911, + 1.1567526536804627, + 1.0239852949648631, + 1.282201275867321, + 1.1001486899085215, + 1.349313481099673, + 1.2802508064689317, + 1.2874337199666595, + 1.1178563134268984, + 1.410882495603233, + 1.1591552034396175, + 1.034774653561597, + 1.1668446930147787, + 1.181994210910164, + 0.9640044486518045, + 1.3773367500337814, + 1.2721768298253762, + 1.5074964671415405, + 1.3265924736055275, + 1.4483055238216755, + 1.4466044711213024, + 1.32365333088963, + 1.3094758399785706, + 1.3762258047567126, + 1.3550130327707413, + 1.4133719295546907, + 1.327089308456776, + 1.217803840730413, + 1.434563306446062, + 1.500828392320706, + 1.355590311387151, + 1.4669981737391538, + 1.2544434851849875, + 1.5454468389226712, + 1.4172027001780536, + 1.4110777797079705, + 1.5211079833364418, + 1.313865557404519, + 1.3688762070354223, + 1.4345294304120881, + 1.3201513146091797, + 1.5073222033763707, + 1.4520434089031748, + 1.5512228528116732, + 1.6335250872197835, + 1.5420861333421747, + 1.5083930599494482, + 1.6262379099504602, + 1.5876700660642578, + 1.5260886779958958, + 1.5343801092689249, + 1.617173499912363, + 1.672251144873913, + 1.6551927368178823, + 1.5078883941384311, + 1.7601276297190942, + 1.5598826608047835, + 1.6779921993695441, + 1.465172830722929, + 1.579006594293613, + 1.6238634498441469, + 1.7188863796872347, + 1.7425879020324844, + 1.5459563601868407, + 1.737874099745097, + 1.75711544820129, + 1.6305056056087777, + 1.8274531014145012, + 1.7901424866827582, + 1.7592719612923338, + 1.7698674147192452, + 1.914576079443847, + 1.7370829461384065, + 1.9019479797775316, + 1.893453457913375, + 1.9055208450955605, + 1.7949345314566, + 1.7425293680620477, + 1.9513663920299857, + 2.0861038573382737, + 1.966383246356837, + 1.869568879200537, + 1.8517840175703666, + 2.0159127483376613, + 1.9494618713256153, + 1.9393334475912942, + 2.0915170100640332, + 2.0047662124515924, + 1.9581482120313527, + 1.9960342997378862, + 2.0363952423952143, + 1.9941829873821297, + 2.13449899544326, + 1.8642926425279682, + 1.9366669284070097, + 1.9935599124530843, + 2.182926717469114, + 2.253571165543997, + 2.1186865873360725, + 2.1189107368508373, + 2.1366639273516292, + 2.150134070315959, + 2.1845850732649734, + 2.330416297825865, + 2.1372689783916967, + 2.397857851167374, + 2.2720792970710533, + 2.174500074547888, + 2.146253867202347, + 2.3034577965451994, + 2.338914542736394, + 2.381730214378524, + 2.200979825450418, + 2.3474218076497144, + 2.383580740004804, + 2.3824914921638927, + 2.566333375765609, + 2.3122882393684865, + 2.4847342287403094, + 2.5193644563196713, + 2.56382557149887, + 2.567765583623527, + 2.55433846115874, + 2.4527443945761, + 2.4667252808033706, + 2.4996039051902965, + 2.472190730204757, + 2.5444179559875892, + 2.649650938412157, + 2.5649792463860797, + 2.6730147428444435, + 2.475435262270327, + 2.5105069588073747, + 2.6656795630508485, + 2.7950079295085706, + 2.633985381137717, + 2.666582192865737, + 2.702419681806459, + 2.878900390603859, + 2.6714073452908704, + 2.641937698231234, + 2.8973463148517253, + 2.791299828791122, + 2.7412391168640307, + 2.757763887842251, + 2.6365915232128305, + 2.9533691855883206, + 2.8695211242877314, + 2.80841168456567, + 2.9146888993951703, + 2.9257063286280673, + 2.804446201282747, + 3.058196157838248, + 2.9931771283395894, + 2.88896336488915, + 2.939895559050861, + 3.133238120193189, + 3.1351296196629477, + 2.9964234642606837, + 3.0749577035497135, + 2.978490319086575, + 3.122464389127252, + 3.1329461720960525, + 2.980065946433134, + 3.0713283079326392, + 3.320659002254664, + 2.958574241563044, + 3.129758072117646, + 3.1262942567394316, + 3.218953492916913, + 3.2481365798710007, + 3.077176209372557, + 3.4097392817389856, + 3.383950289014199, + 3.280338168397294, + 3.242535748534706, + 3.2117776266540257, + 3.1567870202010546, + 3.311513360827922, + 3.483494961912094, + 3.4441721993345547, + 3.6375291828852596, + 3.46450223047838, + 3.5183140619795568, + 3.6403779924991753, + 3.3779518114895537, + 3.4103555638591154, + 3.350408309225131, + 3.522587029313958, + 3.3657152603325913, + 3.6395822476812087, + 3.637546155007175, + 3.5645564322089855, + 3.436039355901432, + 3.576928303670503, + 3.656532831326112, + 3.628658934084766, + 3.3758934261958045, + 3.667711963625045, + 3.6103726328851757, + 3.7301526732305983, + 3.6696039099635223, + 3.638434386127979, + 3.691632445434736, + 3.8884188594801716, + 3.6468048593231277, + 3.683970432385145, + 3.7455659191222663, + 3.792407045004664, + 3.8482428984172414, + 3.8302325356506746, + 3.91413755017711, + 3.90597508239617, + 3.953267420995097, + 3.8539250257487625, + 4.088345845014652, + 3.669823056772812, + 4.02919754305257, + 4.047381660812407, + 4.059591441775551, + 4.048762068783426, + 4.184479945551845, + 4.077280119594558, + 4.167868274752277, + 4.091341181174074, + 4.110533907526835, + 4.21772858192553, + 4.082501614514417, + 4.271645483451792, + 4.165872842899133, + 4.104337300777614, + 4.147238949168598, + 4.124756950394108, + 4.133364476432145, + 4.178555785641504, + 4.323789526413663, + 4.3263313737687525, + 4.373908960461236, + 4.432310404470141, + 4.490747504255314, + 4.547726909809763, + 4.413042698151754, + 4.272400944241946, + 4.539871950809261, + 4.37941351326145, + 4.400637790211071, + 4.563495574535254, + 4.451747274628456, + 4.419320333993621, + 4.550802344013836, + 4.457997323276633, + 4.55873824404813, + 4.523249865429868, + 4.511327603795278, + 4.777228917059461, + 4.701777268728928, + 4.619688528926, + 4.62392833537017, + 4.777468047297472, + 4.8845263965009424, + 4.762506400910113, + 4.618421458796648, + 4.594816783996725, + 4.808178917205326, + 4.725963493135492, + 4.785221747795458, + 4.9203625498438655, + 4.63746943629477, + 4.772092449370542, + 4.98283300356234, + 4.776430844613805, + 4.953259940096893, + 4.927788499383702, + 4.977036232975582, + 4.942920384576489, + 4.9097310655887005, + 4.901059694838834, + 5.063674340969944, + 5.039925751904602, + 4.96659453806493, + 5.00928730210548, + 4.9887392985384675, + 5.102296226399428, + 5.201702425654845, + 5.211339556517566, + 5.179774371333129, + 5.262649995971908, + 5.013318736722033, + 5.253476458392376, + 5.2659937188134585, + 5.116090420009886, + 5.292553895155173, + 5.347648232632259, + 5.135885715825861, + 5.236070662465956, + 5.323046621026216, + 5.309079179012686, + 5.361298479947415, + 5.3218430684496125, + 5.474653111245366, + 5.53256525135335, + 5.328772643224347, + 5.623359286537339, + 5.747490337836721, + 5.524259597703626, + 5.476819888478741, + 5.6397793498287285, + 5.764082334189956, + 5.518860767312726, + 5.533934653336851, + 5.439849895739398, + 5.7295955517432375, + 5.602735912150159, + 5.5468994338125714, + 5.613061405356308, + 5.536580239701586, + 5.64096398682441, + 5.626660138093564, + 5.8346433999184235, + 5.893485221743271, + 5.735774785518339, + 5.877003060410971, + 5.881315530390728, + 5.782553508587493, + 5.871710633690964, + 5.847577642374276, + 5.929686674972698, + 5.87951569222267, + 5.718113208096125, + 6.072921405882228, + 5.8933113636913745, + 5.7044319373219095, + 5.993428139871712, + 5.956435725411385, + 5.8586963494137185, + 6.051747823767935, + 6.11314455784898, + 5.93940344169502, + 5.887900264340066, + 6.231164533328578, + 6.061021961861466, + 6.195902922141455, + 5.985504380838502, + 6.0036804224818345, + 6.183994560698764, + 6.254603788752537, + 6.213992908523174, + 6.121591806985512, + 6.181205994560989, + 6.452063892059065, + 6.240963676001084, + 6.344058649451038, + 6.328599424703043, + 6.326489522398033, + 6.283446674948332, + 6.2606922246938765, + 6.392674911654566, + 6.501160358248894, + 6.43757473172857, + 6.449787062233314, + 6.509176876237086, + 6.5142753416642325, + 6.444187177184236, + 6.701368411320405, + 6.497615781248341, + 6.601594266839626, + 6.616867839322817, + 6.55501322713115, + 6.684485470415776, + 6.573073994244977, + 6.615951957430791, + 6.492099592426103, + 6.6430172458103405, + 6.5076993757193815, + 6.6594725730474, + 6.612002548220141, + 6.793832889019218, + 6.678492426367181, + 6.8058224589211465, + 6.86446925244345, + 6.720169971053437, + 6.708942391474818, + 6.57368249761259, + 6.858393284178909, + 6.895007950982033, + 6.811514325613707, + 6.765713979842282, + 7.006762878172131, + 6.894246784093011, + 6.890469460887834, + 6.96042304991569, + 7.075319396139133, + 7.0669341337085285, + 6.801403497592203, + 6.864887606957593, + 7.011330093240772, + 6.925061088113189, + 7.012912911915624, + 6.998004805147904, + 6.912947063905427, + 6.968885035421751, + 6.983702112624302, + 7.106072450705269, + 7.029918152239567, + 7.1125278075753275, + 7.289924693313815, + 7.059935355622608, + 7.069827745896128, + 7.20784346548061, + 7.277258546899936, + 7.105316872732693, + 7.207567095092144, + 7.288356351869522, + 7.193851558961755, + 7.1619693710757675, + 7.133267693770726, + 7.111942886176802, + 7.311429991266435, + 7.3476131438661945, + 7.612869738804714, + 7.3675928532342345, + 7.393240540141104, + 7.331263147582558, + 7.4510722205788635, + 7.40068957202883, + 7.442984202554886, + 7.394709678273732, + 7.491251071968666, + 7.3436882333477005, + 7.351507701084472, + 7.4434165271221415, + 7.37379485223481, + 7.383095108319686, + 7.457421568744473, + 7.524118842343762, + 7.582136721955126, + 7.338362162308033, + 7.632269263193451, + 7.628663835445626, + 7.551045131270737, + 7.4866067599842525, + 7.6352364910501205, + 7.47784060783961, + 7.661514713930752, + 7.502546261966737, + 7.840854758123483, + 7.667775692085473, + 7.6972204485839475, + 7.5451743570728365, + 7.615426053022771, + 7.691854068855074, + 7.776977521457388, + 7.853947968403277, + 7.526099646113094, + 7.768176529765647, + 7.664527372484284, + 7.854108179936486, + 7.86866054085677, + 7.910280796068513, + 7.717198835673391, + 7.679531481068323, + 7.745642077757992, + 7.932181125853221, + 7.851559452445792, + 7.784578713783813, + 7.895985837405908, + 7.861349969541735, + 7.926837972359602, + 7.927661471257822, + 7.904250657707163, + 7.854708128086291, + 8.001805775830045, + 7.906332171814023, + 7.989259638817129, + 7.957207625432513, + 8.07403054057009, + 8.121146592291659, + 7.960384369464795, + 7.937584713435469, + 8.1517014571232, + 8.116695564127, + 8.123355216925487, + 8.127278287781024, + 8.20659884448486, + 8.077817333159196, + 8.189446215684587, + 8.14552493979882, + 8.109874095518853, + 8.126956073225246, + 8.124377963580372, + 7.945724094562292, + 8.201797051346274, + 8.20720131752375, + 8.202494535331109, + 8.15707493926438, + 8.351587884897938, + 8.243764412134432, + 8.168649446953648, + 8.135322638226542, + 8.393083943528826, + 8.265916008355727, + 8.16851002319325, + 8.373548843931514, + 8.19147407298814, + 8.317843088707365, + 8.224298851574149, + 8.326068917561374, + 8.23985054044068, + 8.3854074321577, + 8.260374303690337, + 8.401144693498047, + 8.300603918808557, + 8.410498035301504, + 8.332472063952867, + 8.383998819088765, + 8.237719824334285, + 8.274384183367296, + 8.298922899940905, + 8.49540374057394, + 8.28960409657428, + 8.48690035913792, + 8.493918516484324, + 8.545436668541239, + 8.312801850045052, + 8.478964975031332, + 8.35315484425605, + 8.604295458806982, + 8.552147561806748, + 8.550106192728533, + 8.415126934835255, + 8.387245002322707, + 8.482342400336352, + 8.623873954401377, + 8.4785155854183, + 8.604293649544886, + 8.514362458080397, + 8.496251962607825, + 8.30322605654578, + 8.562976424568925, + 8.51384929375489, + 8.535242398180515, + 8.531526480737167, + 8.55666518079911, + 8.707554260008413, + 8.637322980114448, + 8.430534164730807, + 8.746973123670092, + 8.622705785854762, + 8.567413562642123, + 8.768094644368954, + 8.592837482915899, + 8.539195551073089, + 8.770356448484584, + 8.603079588056968, + 8.675980637924923, + 8.649337134793962, + 8.624880070207407, + 8.671925239250566, + 8.656514057698962, + 8.51032124514785, + 8.608285038193756, + 8.431254984331959, + 8.58387992614609, + 8.655268191519202, + 8.78852196850434, + 8.748618679517532, + 8.785353070033924, + 8.776124528810627, + 8.781406159875631, + 8.502963408560918, + 8.854813093654984, + 8.724908062440113, + 8.62147649111036, + 8.685863542870651, + 8.68885586929645, + 8.652152150472851, + 8.783789752177427, + 8.71813470735521, + 8.68597975362983, + 8.68653817300079, + 8.781612982281727, + 8.766139584186467, + 8.658154163743717, + 8.680965565672674, + 8.699486726274618, + 8.79250445060378, + 8.745838886692479, + 8.567838256835717, + 8.84772310805345, + 8.949043753522647, + 8.561373368121679, + 8.889560862132786, + 8.825029156474482, + 8.778607841416257, + 8.973101678908163, + 8.875798424742252, + 8.806345250284828, + 8.658304770724664, + 8.717068886029304, + 8.793193056174143, + 8.698457260665931, + 8.602618191552917, + 8.770073557811441, + 8.77444968763171, + 8.776957352240782, + 8.780065045225191, + 8.682071467040418, + 8.740153721820837, + 8.679503276693865, + 8.796357411939873, + 8.74657877839952, + 8.730142823874477, + 9.002432221745876, + 8.901575082041973, + 8.747129768091735, + 8.846111482625787, + 8.8007558160531, + 8.842725514976374, + 8.634805680878626, + 8.870248878346183, + 8.73862259149813, + 8.754524405679804, + 8.689886881069366, + 8.77194498300529, + 8.902181489958368, + 8.895596466300429, + 9.05683311037609, + 8.839327305004906, + 8.736236605761938, + 8.872918260340684, + 8.74720847834699, + 8.908792854431855, + 8.735634697801478, + 8.885254924758243, + 8.624849501536916, + 8.952866878655563, + 8.937809667168803, + 8.82798244093932, + 8.782524871505107, + 8.807798753719242, + 8.74224485966141, + 8.642715370338736, + 8.886193170411707, + 8.779325624755533, + 8.714831806205064, + 8.70160685272582, + 8.756947346502631, + 8.710152158215932, + 8.68672023623186, + 8.712001108361719, + 8.606631994905149, + 8.827772972271015, + 8.812608174438633, + 8.72790600238339, + 8.828214342743282, + 8.505751932739626, + 8.812881761474184, + 8.787702140792328, + 8.732654713095107, + 8.877692031027523, + 8.796879605236267, + 8.823010054726726, + 8.758014999445061, + 8.831209763044335, + 8.716673169036278, + 8.715220498015196, + 8.774091210330464, + 8.556786566790757, + 8.658150089426929, + 8.703889892582053, + 8.764341429103137, + 8.753244705039393, + 8.536128997836324, + 8.696795798382523, + 8.592103620049912, + 8.59581587187276, + 8.662146182353618, + 8.758169241756132, + 8.7317596899783, + 8.593928678429894, + 8.744944941551429, + 8.65955074059085, + 8.604101870403284, + 8.877467283406071, + 8.654632031423272, + 8.651565797799366, + 8.657983385049993, + 8.70516094500888, + 8.71957883097276, + 8.588097642685256, + 8.489904597241233, + 8.525022457601715, + 8.750957983554928, + 8.555139673682906, + 8.609219781327878, + 8.79853015090667, + 8.664892266718944, + 8.777333495259622, + 8.556174260101061, + 8.577720605406796, + 8.44651516043305, + 8.540156165760628, + 8.604159075907921, + 8.543892127549773, + 8.569445001709786, + 8.654111975744746, + 8.555786956128872, + 8.619661302716198, + 8.328382770695528, + 8.385439767954635, + 8.481842532643743, + 8.667353980526768, + 8.463597621958366, + 8.55392679844842, + 8.459312548645137, + 8.504617223603194, + 8.488720047689725, + 8.49040440802682, + 8.51766542549857, + 8.379795203827632, + 8.433605335514379, + 8.47828113305417, + 8.675150416321511, + 8.345835891126132, + 8.563516001344158, + 8.28740813126729, + 8.494902236758097, + 8.402742497646667, + 8.326680140851732, + 8.42344870004471, + 8.333176857888166, + 8.404781418253343, + 8.357780982704977, + 8.348550602141122, + 8.367565961680626, + 8.335963900531157, + 8.35997562216637, + 8.39637757996112, + 8.357792863901581, + 8.332964373350247, + 8.340642560608861, + 8.272546220817837, + 8.26576206163471, + 8.105902229487791, + 8.329629314416758, + 8.280210378938188, + 8.142172678584863, + 8.174431973827229, + 8.30519266228975, + 8.198942074501272, + 8.190572557611704, + 8.313337427580475, + 8.04146005108252, + 8.237442961051912, + 8.211496320995671, + 8.241342594761308, + 8.197514215157565, + 8.191695394707898, + 8.107259034536403, + 8.149864695792372, + 8.239548851416144, + 8.236590669035241, + 7.9891125314174465, + 8.120370398530858, + 8.14042626909735, + 8.157814174902084, + 8.027026661080791, + 8.059792807663001, + 8.229217015407942, + 7.929228066898873, + 8.018150004920093, + 8.067680785815368, + 7.980135567775192, + 8.131513581587752, + 8.079055763007268, + 8.069089231203543, + 7.858211244476138, + 7.881953998368977, + 8.053321300181544, + 7.959409929394738, + 8.003504508345776, + 7.879792845240905, + 7.980662278647133, + 7.933197585188047, + 7.77867204153815, + 7.850657567497566, + 7.882180935708061, + 7.7550388494055955, + 7.886365540582527, + 7.876927707346669, + 7.922174355488352, + 7.888336455259419, + 7.790048500702815, + 7.7019309800682, + 7.629793679546969, + 7.860881255618526, + 7.716550560399572, + 7.617716169757557, + 7.739804450165796, + 7.66483329357129, + 7.674864475905538, + 7.588867298472551, + 7.714196173453845, + 7.535728951595508, + 7.742716623287587, + 7.764071916886152, + 7.508030931422606, + 7.673365207407341, + 7.603891357318307, + 7.632134155295105, + 7.417630129955562, + 7.654603169599109, + 7.476578298655988, + 7.596588339261144, + 7.522580543827676, + 7.646414469983722, + 7.528294880992659, + 7.3192096317858955, + 7.544794204711964, + 7.3459295134717575, + 7.2900620737230355, + 7.476701131784085, + 7.331076420749478, + 7.438297810133981, + 7.316287915390372, + 7.586802470052555, + 7.388373215646081, + 7.392292428691675, + 7.295010328834925, + 7.262464602290902, + 7.150757117231963, + 7.31628753382477, + 7.228809173885857, + 7.377394590518703, + 7.093487862011739, + 7.270048546292769, + 7.151470370736518, + 7.2181656539189225, + 7.249039192725864, + 7.10030496113666, + 7.039077739620283, + 7.435791438306863, + 7.125248427089203, + 7.08504364604721, + 7.184456656065023, + 6.820751839977765, + 7.12843182821867, + 6.982497269112759, + 6.910461408628574, + 6.987665617218848, + 6.88343311965437, + 6.902033937152323, + 6.894675929461572, + 7.0314744701510135, + 6.825331223989347, + 6.966369623468962, + 7.073746559967773, + 6.8811598879120695, + 6.78075971922212, + 6.72134536731732, + 6.884009780524741, + 6.8430494189299145, + 6.784600335568138, + 6.876698265426624, + 6.873061780832823, + 6.71004822046044, + 6.895606327107092, + 6.661468035490625, + 6.834048242142755, + 6.845722504020941, + 6.874235906166806, + 6.597627890518833, + 6.770014688105383, + 6.7327654031602595, + 6.781926438042526, + 6.660511132428815, + 6.751014327626335, + 6.576781786083317, + 6.53339391264206, + 6.697673878875405, + 6.5316981053786405, + 6.547051099392664, + 6.466558324348431, + 6.597311888577212, + 6.634210606513629, + 6.566472028195604, + 6.496800771245968, + 6.330966424369371, + 6.2121356803943915, + 6.389053079870507, + 6.371607200030971, + 6.391317201364072, + 6.438777765956668, + 6.318618873459703, + 6.3475208802713645, + 6.255852342847761, + 6.343366939898165, + 6.320928857953162, + 6.341652963619794, + 6.112595623198919, + 6.322168582928141, + 6.059466923422339, + 6.102119767143297, + 6.278409387519216, + 6.410944448010695, + 6.077836927378085, + 6.286866760885752, + 6.035958943428643, + 6.165935852658071, + 6.088807491128276, + 5.958352610624158, + 5.993441094093113, + 5.936521015769704, + 6.036970635736378, + 6.0631858871597535, + 6.011785593673739, + 5.8945852257104, + 6.002023381288726, + 6.050850566162749, + 5.930992448236907, + 5.97796162733388, + 5.982451882548655, + 5.813907081642266, + 6.02118872848554, + 5.77809002343194, + 5.768135967956107, + 5.843785776082658, + 5.740280867782263, + 5.744486491706195, + 5.801223597659209, + 5.775553069537513, + 5.753055396390617, + 5.538173160638118, + 5.802642501768091, + 5.553296553611894, + 5.602637061356985, + 5.618415538689671, + 5.736833205826382, + 5.521597624749412, + 5.635594426293635, + 5.5981709028876585, + 5.634549977183801, + 5.6128150383946664, + 5.593875195018789, + 5.405544322297003, + 5.401148437895495, + 5.46810975838912, + 5.503171026392868, + 5.405380731021631, + 5.48359984809564, + 5.560633303824315, + 5.3876019731056815, + 5.3800870483927525, + 5.246853191287225, + 5.393908190835802, + 5.312076515589075, + 5.366607239000317, + 5.1767796302212785, + 5.36820453423889, + 5.330202475319705, + 5.098400950310999, + 5.033220533043156, + 5.219914720612309, + 5.280315736138955, + 5.057710898426613, + 5.0638286648854525, + 5.158583871799215, + 5.255659074618885, + 4.9957775628155705, + 5.035402845052367, + 5.102657567010038, + 4.937867832353962, + 4.887412579235234, + 4.979714158145852, + 4.790579521507614, + 4.991345106735324, + 4.956341021752157, + 4.845930829627937, + 4.936374156650949, + 4.942024908818141, + 4.898272851524052, + 4.801081469691925, + 4.783418925405903, + 4.755807520088545, + 4.725904938746742, + 4.884851354058903, + 4.844732178536311, + 4.760112925551334, + 4.5784615306895535, + 4.884007199069156, + 4.684206285552321, + 4.7466370126656185, + 4.628963666118916, + 4.7048010091972, + 4.613313401456735, + 4.5834275306617975, + 4.808585511173183, + 4.451144701501241, + 4.498035327634129, + 4.493219423308282, + 4.594360822323282, + 4.479506125710121, + 4.453130586615246, + 4.387956787782746, + 4.389366703357235, + 4.556858120881887, + 4.415295258059126, + 4.455002454536077, + 4.317829838505258, + 4.415827887047917, + 4.247117649774458, + 4.43306804206731, + 4.376302968334151, + 4.1758683641588705, + 4.253212760315173, + 4.431203361327684, + 4.17831719466425, + 4.140415021677208, + 4.157390493481779, + 4.218749922787349, + 4.141528761046596, + 4.287264385739385, + 4.034587250862579, + 4.232774351648738, + 4.073082206892332, + 3.9070530482508263, + 4.016652907208227, + 4.030839299460459, + 3.9471411491628827, + 4.005074287656615, + 3.9152847118242327, + 3.63586447702375, + 4.013829613881733, + 3.835880175716119, + 4.082649794835014, + 3.9374405521468447, + 4.100335735682351, + 4.013272953198887, + 3.8667972602360776, + 3.846379034281379, + 3.8002610079438712, + 4.010650055429815, + 4.023084028326278, + 3.655461279914667, + 3.820889112933846, + 3.682250646103327, + 3.686385538392906, + 3.902152299315821, + 3.6045311515481595, + 3.867774363364771, + 3.6147569804412214, + 3.710753921057673, + 3.749512509805019, + 3.727592675233852, + 3.5330674973014022, + 3.3636996030945103, + 3.509715176426763, + 3.6422142588139494, + 3.506375307505731, + 3.654416965536025, + 3.4071195840124346, + 3.3160802134131475, + 3.4540854984265406, + 3.3418012628594918, + 3.3681948979677316, + 3.577178638832762, + 3.334830629411489, + 3.297942459548277, + 3.426335012390337, + 3.5275310586395334, + 3.085558141966482, + 3.37934702509879, + 3.295674508790035, + 3.4235337820637715, + 3.2058582333075645, + 3.208453994113808, + 3.105001032849091, + 3.193530328747097, + 3.3353297850777426, + 3.1085731276250037, + 3.169851900004755, + 2.962710214616844, + 3.0940340347313784, + 3.0084207814697614, + 3.0534446238915565, + 3.075573002836823, + 3.053248138024817, + 2.971752434657298, + 3.0857165646484543, + 2.9603654782649134, + 3.0057830221386417, + 2.986299121927323, + 2.9668660566233367, + 2.8845513834221763, + 3.046810487656694, + 2.9431571067362934, + 2.9840778528521303, + 2.9348662609762175, + 2.8765937614228334, + 2.8991456169651464, + 2.9455432392718754, + 2.859136933237839, + 2.7799926399226242, + 2.6990059313884696, + 2.744322220599402, + 2.7054061753426946, + 2.8738303125429936, + 2.6775286253120303, + 2.6961517153099273, + 2.7580533932205364, + 2.6357864684778383, + 2.505691912398265, + 2.6971004093189364, + 2.7223003779300217, + 2.591371681526462, + 2.5835435834156883, + 2.5923492541897395, + 2.757741121844406, + 2.5255880741265613, + 2.4491495562107612, + 2.777682343175282, + 2.5101706795204217, + 2.6121106774911786, + 2.564893466836541, + 2.4148319431250065, + 2.453186330054451, + 2.423894965901667, + 2.324255440337672, + 2.1054273294466714, + 2.5112415465361826, + 2.463543701132691, + 2.317045796196957, + 2.3215682610240793, + 2.1419474591053422, + 2.3865415338156537, + 2.2669146701355625, + 2.397682240194609, + 2.4957511907549796, + 2.2444903561439973, + 2.1855064251699083, + 2.341971226688125, + 2.4926475737727083, + 2.1899601388020375, + 2.120034535439714, + 2.0107944344125226, + 2.258634730859108, + 2.2329502145392177, + 2.160476699818062, + 1.9821897990914272, + 2.2153666111178714, + 2.0493683813956896, + 2.3076740614179796, + 2.081886326658751, + 2.159055846587696, + 1.9580464174501242, + 2.0471919215443397, + 2.1467458465080114, + 2.058775536148241, + 1.9183467296656354, + 2.0357477363408423, + 1.9761704660836157, + 2.1074649501830875, + 2.0173645202378347, + 1.996270517746727, + 1.8002867183844793, + 1.8553682813447192, + 1.837681442744759, + 1.8582101268284923, + 1.847561180542281, + 2.0046338197310285, + 1.9323477619955398, + 1.7340237620113585, + 1.7776165029846436, + 1.7209987264445896, + 1.8565545297913457, + 2.00763691373666, + 1.8149191078102653, + 1.875407791224847, + 1.7663550202576597, + 1.778273486923208, + 1.7161580456400305, + 1.8946735062426983, + 1.717799735093689, + 1.726474711354709, + 1.7858382346700061, + 1.8399420433303832, + 1.6219095610655423, + 1.5977403846474807, + 1.7647819674607095, + 1.5195844578683015, + 1.6760562831754577, + 1.5814992974839226, + 1.6241512916098555, + 1.8251808718108635, + 1.6168871420393156, + 1.6960817177882752, + 1.534158001356938, + 1.770818927973667, + 1.5215238852001924, + 1.6412113636574661, + 1.71849171585033, + 1.4740901381519478, + 1.6397557810661818, + 1.5159998473095762, + 1.5975703655171016, + 1.406597714055821, + 1.4370402428515014, + 1.6670823836387199, + 1.37857818263548, + 1.5228430624463922, + 1.430523987839786, + 1.4511088815800417, + 1.3803508208146873, + 1.543049057991611, + 1.3069994309048967, + 1.5230528810166593, + 1.1880909576381633, + 1.5556200373206506, + 1.333208543007447, + 1.4071966955910695, + 1.3711615284529999, + 1.4766077683287875, + 1.3375342724080752, + 1.2577479035427668, + 1.2833865100442614, + 1.3763833077814032, + 1.351979233400987, + 1.2313052194404006, + 1.401549633442819, + 1.189952517605492, + 1.2160778706205864, + 1.3989839873426102, + 1.2848609535485793, + 1.2912508802573857, + 1.2442045125279322, + 1.1105654269915557, + 1.3831759100514573, + 1.3829742174683015, + 1.1657229042364379, + 1.321389562475431, + 1.1896697627607282, + 1.3920463913753436, + 1.2242893988677317, + 1.2252818819274574, + 1.3320907099082464, + 1.0512918836084568, + 1.246663991903171, + 1.2204339248970855, + 1.3383249399319086, + 1.1169320319330072, + 0.9923147795436524, + 1.30965683742838, + 1.2581221851416846, + 1.198211653319264, + 1.3304778016627286, + 1.1159703138003099, + 0.9399984668317579, + 1.01700144338958, + 1.017837680169497, + 1.0692140579844938, + 1.2089032799350234, + 1.0588177427349434, + 1.023284005294492, + 1.1628359446294545, + 0.9813118487069856, + 1.0047704002881688, + 1.0505307606123022, + 0.7987849504817401, + 1.1326597829002056, + 0.9343952065088678, + 1.159675228368722, + 0.9423269500829371, + 0.956388711663511, + 1.2002942543188186, + 0.9999357069331465, + 0.9905112805912909, + 0.9657287472291107, + 1.1314349753817137, + 0.9235440776720505, + 1.0018682538366057, + 0.8922666226163732, + 0.9403271503331981, + 1.0624864951015134, + 0.9432171480702229, + 0.8907843733106028, + 0.9491664671726541, + 0.8257176416804827, + 0.8525508101413732, + 0.9862093900124501, + 0.7853339466788001, + 1.1066371436335467, + 0.8366843298933995, + 0.9317897372096747, + 0.9781323572179099, + 0.9917750991457981, + 0.8453736478330861, + 1.0955218926918617, + 0.8715615011836794, + 0.9094042523027432, + 0.8372513791472065, + 0.8065725067862866, + 0.7907344419290021, + 0.8657280360006675, + 0.7053975309203905, + 0.9903802844542786, + 0.9220621125491881, + 0.6503531553905535, + 0.8009629449991694, + 0.825093505114261, + 0.8928462250139486, + 0.9023068224800026, + 0.715124137740393, + 0.8592066768257023, + 0.9256738251344547, + 0.8294250112063954, + 0.8367672947384663, + 0.6383656765054466, + 0.6628033779477268, + 0.8335899575281849, + 0.761384679556945, + 0.9810918419685923, + 0.7262697693982746, + 0.7679543341849402, + 0.7643609873960866, + 0.8230163318851956, + 0.884501369633158, + 0.8538496548169218, + 0.6873789051606009, + 0.8799656287995977, + 0.9227871081190328, + 0.7597455634424769, + 0.8149365720012729, + 0.6729885430198563, + 0.7871778920725025, + 0.7812739282323925, + 0.7868355294659152, + 0.9883223916520749, + 0.8739381491593166, + 0.6583449967331718, + 0.7546692622908002, + 0.7206714734180563, + 0.96290076079384, + 0.88598828732106, + 0.7267084381999505, + 0.9106185804767108, + 0.699983048835005, + 0.9003386013555231, + 0.6935083580294991, + 0.8491523518864659, + 0.7732301093477327, + 0.8887037886125644, + 0.7983237468889207, + 0.9362298466862597, + 0.8415566805950867, + 0.6521408022180045, + 0.7148169915029547, + 0.9662985019793524, + 0.8586254814317789, + 0.9753676991307295, + 0.8966702683763408, + 0.8411748739905864, + 0.7423403451535301, + 0.7229816975450384, + 0.7677116631381193, + 0.8713344639743449, + 0.9288786034378341, + 1.0485252160540028, + 0.8012228420228088, + 0.707865096352002, + 0.8549856815179969, + 0.7684540509564908, + 0.9359110061002329, + 0.795571510581772, + 0.7583075293963233, + 0.7850795542052691, + 1.0070279307707597, + 0.7289254935990536, + 0.9341866245403101, + 0.7617348529916599, + 0.9098763991365443, + 0.8391455529339199, + 1.0200571378932197, + 0.5751391059977771, + 0.8555440765124378, + 0.7061087400110231, + 0.6743692961672009, + 0.7660389586012061, + 0.8724036468108034, + 0.8314562188597695, + 0.8492603570237759, + 0.8917890958764565, + 1.0797690085049958, + 0.8936724399134703, + 0.8416877010690057, + 0.7573691139836789, + 1.012443928996045, + 0.7539737937215251, + 0.9650405780453912, + 0.9009991534714155, + 0.9367366513001489, + 0.9063922877205162, + 0.8944712806533616, + 1.0159813071205623, + 1.1250030267612905, + 0.8894547779735659, + 0.9650137772439877, + 1.0177805502704058, + 0.7985640750198771, + 0.9582720807717673, + 1.063039027780768, + 0.9906440872131639, + 0.9435575836862006, + 1.0436507392333063, + 0.8716245574433126, + 1.0240134223255615, + 0.9839038020612458, + 0.9890214845521121, + 1.224334014844361, + 1.0986273135775462, + 0.7706583484178534, + 1.148022525773618, + 0.8288783954968062, + 1.0858164133806245, + 1.0982464949343527, + 0.9908522389875697, + 1.1404676162329672, + 0.9938517214677345, + 1.1690149853884222, + 1.051935487970108, + 1.0838682921230487, + 1.1052138897385362, + 1.104621706522714, + 1.1367255654312138, + 0.9914216557575023, + 1.2099715312837478, + 1.227119900878118, + 0.9450996877389293, + 0.964727457445266, + 1.0578124056692888, + 1.1726927645045369, + 1.1422865862521676, + 1.1026585832534352, + 1.2029185706119008, + 1.2517333413988472, + 1.0962666290672078, + 1.0313639444179672, + 0.9926800275516828, + 1.132003633787262, + 0.9970892545456049, + 1.0850474703994826, + 1.1838228380666826, + 1.2860907809716386, + 1.3517364051616598, + 1.174171389658306, + 1.2165363445917594, + 1.2460094846604777, + 1.3684644262273844, + 1.2043719462852083, + 1.060883391597344, + 1.127323601087372, + 1.3837844390571576, + 1.3999616702991422, + 1.4014422413524927, + 1.3119971898014051, + 1.4648683548338073, + 1.324671871754064, + 1.336970095993987, + 1.354903634055984, + 1.4056742311407813, + 1.511002279638435, + 1.234159709649734, + 1.346946267980771, + 1.517992189995914, + 1.4458115249688428, + 1.3458905482282095, + 1.410672059507185, + 1.3575984562823085, + 1.4312934007915568, + 1.4709758738968033, + 1.3195499554883696, + 1.4525039838921656, + 1.4839964877322775, + 1.460040370724786, + 1.4423823923480499, + 1.4751749505883576, + 1.4472343503329892, + 1.4112276240637263, + 1.405520599005667, + 1.7256022555253963, + 1.5976381332391738, + 1.5273407024414976, + 1.5463399311961867, + 1.531190043423146, + 1.5909178775864197, + 1.7679560733622406, + 1.5792649525921445, + 1.6053826461077567, + 1.6820561381676626, + 1.4830505688638602, + 1.5910146858126715, + 1.907650009582044, + 1.8072181788214832, + 1.680591894335363, + 1.7479392684125978, + 1.7507833583844523, + 1.7555507706539721, + 1.730764593724541, + 1.7778418143190144, + 1.6157201947950028, + 1.8730665542509692, + 1.7020762165996322, + 1.8911649868912412, + 1.8974295397684466, + 1.6734856373749594, + 1.868300519697186, + 1.8746124780179487, + 1.7973752167279038, + 1.9159243639152395, + 1.8414946512483295, + 1.9746514895499, + 1.9812147286040425, + 1.9939245906905956, + 2.1792783169076464, + 2.0217349547806696, + 1.949787994902572, + 1.8667323826775926, + 2.228311038554649, + 1.9857742293832716, + 2.240850334801774, + 2.100300866314703, + 1.986264201840896, + 2.2312197046544977, + 1.9397456491321108, + 1.9412614091983291, + 1.9907878408584365, + 2.036394020592009, + 2.0469580601203887, + 2.184689723454737, + 2.069954792921549, + 2.079570234635674, + 2.2001560467323404, + 2.2999597827496516, + 2.0622274801613547, + 2.1912127783404576, + 2.311012145077591, + 2.090075377582364, + 2.330335419477081, + 2.412031421348592, + 2.372174028376608, + 2.495735621128729, + 2.338248853609901, + 2.2962489138669064, + 2.252852442372576, + 2.3628479039941914, + 2.3981924318864953, + 2.3383081264823184, + 2.4887170489141153, + 2.486649975989749, + 2.421686644093344, + 2.51018929724873, + 2.5646129664735753, + 2.599536911957218, + 2.6646901244314547, + 2.5948977182874993, + 2.5258776861816794, + 2.4136259288229946, + 2.502412035734417, + 2.4635329864375968, + 2.392674020141413, + 2.589308817837994, + 2.5343594341900495, + 2.4406037732473895, + 2.4565344321118205, + 2.6335137763124443, + 2.574861353902835, + 2.5783823862046003, + 2.549096644485798, + 2.638413332273938, + 2.78523648794845, + 2.602386234259826, + 2.776829845384253, + 2.8282524388678643, + 2.8047089256091606, + 2.97625879890889, + 2.8586283769662337, + 2.7452766664110966, + 3.0144586050636333, + 2.8132593840917512, + 2.9190523324051774, + 2.8038335273532597, + 3.0178221325718235, + 2.8511678684557107, + 2.9733136158388134, + 2.9915799708298745, + 2.8147001777916865, + 2.9602731730246723, + 2.904324684752026, + 2.944704084514195, + 3.047141313198385, + 3.0817212838178047, + 3.26992833220665, + 3.2534801355035614, + 3.0781118157985117, + 3.1347783095813146, + 3.1770106686818678, + 3.2150441953008393, + 3.073973731960506, + 3.1625152800131477, + 3.0281061846278408, + 3.104809942629466, + 3.1696114234882193, + 3.2652909533017946, + 3.332763819195469, + 3.2872213223775844, + 3.186323977127102, + 3.1056907525248305, + 3.3079779275836243, + 3.134845938673123, + 3.3354496370948103, + 3.263169093122116, + 3.4589379861832334, + 3.458459905184869, + 3.3501823898494885, + 3.458570053136488, + 3.431605961292687, + 3.16092320614216, + 3.398092183854349, + 3.452296024010929, + 3.432793748740144, + 3.4466649786053574, + 3.4732786356223295, + 3.6125773133183876, + 3.4634463420729342, + 3.44964937838313, + 3.638518206071244, + 3.6386610032757956, + 3.740592883788734, + 3.5013035305737574, + 3.632167884718097, + 3.7090648200026872, + 3.729583957903948, + 3.754561906903058, + 3.8609295506578776, + 3.7783652685122533, + 3.771638497356996, + 3.8166886125607054, + 3.8961257389117656, + 3.766461209587794, + 3.9052687649687527, + 3.862212964418024, + 3.8306828945352622, + 3.7686447866078043, + 3.7046264408446596, + 3.8221270307043436, + 3.9799345761511864, + 3.8892694308641915, + 3.9921425079459225, + 4.009473826955754, + 3.883982474333995, + 4.153076407738131, + 4.125261369964424, + 4.118771025432401, + 4.0727439979259135, + 4.069300897566612, + 4.078160567588596, + 4.308738764299025, + 4.040509082102456, + 4.093394203971617, + 4.10092311995368, + 4.229224146671205, + 4.265051101230992, + 4.340947863648002, + 4.254440800141441, + 4.223212677390785, + 4.166071690428372, + 4.363921861533283, + 4.51530489110199, + 4.189846542054633, + 4.315248589875967, + 4.39872583827109, + 4.385884538927982, + 4.309884087657771, + 4.533226524255009, + 4.501142137410995, + 4.423400862504999, + 4.459748037515659, + 4.472738957210914, + 4.534823030057367, + 4.635611732760568, + 4.752716103673812, + 4.432506089151666, + 4.757965465060697, + 4.776483913522046, + 4.512059871070173, + 4.822612173227312, + 4.692566069495986, + 4.605791296242642, + 4.574798237093073, + 4.723274849527924, + 4.65754445027371, + 4.681124022224366, + 4.619430640711536, + 4.8642056808049565, + 4.762801590622663, + 4.798980568884955, + 4.710431690874579, + 4.912297269110607, + 4.9086974634709835, + 4.869159790364512, + 4.779354655657863, + 4.886753947763037, + 5.010443002804063, + 4.888982782260159, + 4.837065308376273, + 5.088644130642955, + 4.9719184025506085, + 4.73933859730352, + 5.18274135705276, + 5.1014073486335665, + 5.097627081596626, + 5.034324934417604, + 5.0203373881491435, + 5.184106889460698, + 5.178174416792006, + 5.306252797776082, + 5.2986305422980315, + 5.0565697824275135, + 5.040909733184457, + 5.3869623194793945, + 5.269293272813353, + 5.374017490117279, + 5.282156143399163, + 5.231328239266934, + 5.376282390160652, + 5.422786529145452, + 5.193271837471722, + 5.504144788298294, + 5.525466608357429, + 5.351757737423062, + 5.549087161193829, + 5.344958173902009, + 5.420226810322036, + 5.524537104053255, + 5.683745930026757, + 5.489657311228047, + 5.5474833900917435, + 5.620995079601955, + 5.577500181664529, + 5.328984431687755, + 5.902338614407987, + 5.565976813054968, + 5.664832074202795, + 5.531499787371376, + 5.576784335239476, + 5.775561991160884, + 5.637476135982747, + 5.7605445458983064, + 5.543535732055793, + 5.63980248433703, + 5.7817695329999, + 5.915308384204961, + 5.8530814094862205, + 5.817391598386045, + 5.876752016945773, + 5.823510199667794, + 6.000196321144199, + 5.923000607613269, + 5.86181777000627, + 5.940136148635016, + 5.74191937929888, + 5.818281180067957, + 5.698286027857263, + 5.874203380509378, + 6.044799418557714, + 6.0992065084274945, + 6.1104480062276405, + 5.98589093006286, + 6.07276449391649, + 6.043945415289213, + 6.242727066846667, + 5.892360330666662, + 6.159498327027722, + 5.979139139821497, + 6.126942649331548, + 5.957461233987795, + 6.251601364451907, + 6.006554007122918, + 6.031913433757628, + 6.250587811217197, + 6.302518591755358, + 6.023591741686963, + 6.1088841338338655, + 6.2219554196519535, + 6.253876061259946, + 6.275057859561782, + 6.383440846672035, + 6.454279039471566, + 6.262198983683059, + 6.217714732542066, + 6.274327096718875, + 6.394374054721199, + 6.370984967492748, + 6.6240348451245525, + 6.552657943445345, + 6.516462270986269, + 6.503276032045365, + 6.5392733443525835, + 6.471823165115708, + 6.300521183619079, + 6.601174170796777, + 6.561644414170986, + 6.72521145595739, + 6.488883333137554, + 6.616780102269188, + 6.696939922830692, + 6.733253534606137, + 6.72976846867308, + 6.5311629659792265, + 6.907664646026404, + 6.818934216849214, + 6.838636795751885, + 6.614180445547108, + 6.803802136360355, + 6.854276744571317, + 6.971176649481392, + 6.81548809581954, + 6.888261128610094, + 6.818772823823985, + 6.950480125226175, + 6.790290423260857, + 6.824178933718656, + 6.926524599726056, + 6.796937447512059, + 6.892224124486707, + 6.8840066087847935, + 6.952477059319259, + 6.823587223558276, + 6.9922555709808965, + 6.8995611584777725, + 7.138023935256187, + 7.127230977667199, + 6.882418194829033, + 7.15346437997502, + 6.940356058005646, + 7.059562671094099, + 7.1513510770259625, + 7.0454921592826425, + 7.050098103250396, + 6.91035040358526, + 7.2635255355211585, + 7.142138419587902, + 7.258129225098876, + 7.250418060090326, + 7.24727379066983, + 7.271599551719123, + 7.167376096102466, + 7.268153558485833, + 7.239670469625368, + 7.0926698463228215, + 7.405512056507245, + 7.230086308812469, + 7.5027258393321645, + 7.417516651783384, + 7.457017299299337, + 7.362008334339379, + 7.20906140743321, + 7.408113968792479, + 7.394218205164409, + 7.486897281900628, + 7.434945201268762, + 7.420659634674759, + 7.499748321404324, + 7.232691309917257, + 7.450584119973223, + 7.576060443457071, + 7.464761930973611, + 7.621453212225066, + 7.415556246569391, + 7.5467395479689365, + 7.68971669166006, + 7.467849305204697, + 7.687418801927562, + 7.698752689669938, + 7.685484751258886, + 7.512242301674758, + 7.6013878898417655, + 7.419810820440323, + 7.803441211680374, + 7.742873415514134, + 7.541682765878468, + 7.737980913097456, + 7.62344811803503, + 7.819031684880366, + 7.773888219411245, + 7.441987312171788, + 7.678249329223025, + 7.719200393441694, + 7.836905412135928, + 7.747970850077925, + 7.854004749579865, + 7.88076995129361, + 7.845522457971802, + 7.774698224359561, + 7.720559810426896, + 7.875017162497378, + 7.7324665661888075, + 7.8045155558263035, + 7.848875455260644, + 7.884775549773884, + 7.707950903312626, + 7.948021368011356, + 8.130829921738918, + 8.035793959065082, + 7.960418623229823, + 7.88493714266763, + 7.920856400066232, + 7.993557221169186, + 7.932918829422356, + 8.022926917984533, + 7.990852936420563, + 8.073490925937143, + 7.892885601428497, + 7.973760873530147, + 8.067472899808008, + 8.15772863292284, + 8.084519778457715, + 8.056258463724635, + 8.065156397669954, + 8.013186549397062, + 8.271602409949484, + 8.063733828017078, + 8.05621210521683, + 8.06182393018945, + 8.202371011274902, + 8.19991658391955, + 8.088972287781116, + 8.276371831904266, + 8.136772991625977, + 8.38760867973982, + 8.275786315935868, + 8.297314032830327, + 8.22790573240809, + 8.27014869491718, + 8.324881412124508, + 8.3669879047787, + 8.188490231019523, + 8.264682992867112, + 8.238247474471885, + 8.46597181494091, + 8.401651702927971, + 8.300010451607415, + 8.289784584719653, + 8.182996617189865, + 8.355838955350915, + 8.232009697457247, + 8.40510537826373, + 8.386901996307337, + 8.302611637305453, + 8.355223145684828, + 8.296144763392434, + 8.382525322528146, + 8.460257978600461, + 8.366125724013909, + 8.393969126556106, + 8.4686745453293, + 8.457336153601329, + 8.439201707006688, + 8.364473814781249, + 8.33573188647244, + 8.443552741787904, + 8.445995702487595, + 8.366814126836049, + 8.574796550408594, + 8.540025504563348, + 8.589012494804937, + 8.617005882762069, + 8.425122784936741, + 8.429950061573496, + 8.616551000583826, + 8.59066946677646, + 8.538334810293675, + 8.499330522205403, + 8.439373763214402, + 8.612850458603255, + 8.600246978287105, + 8.61513627014007, + 8.520899621320329, + 8.631049506540391, + 8.614731830957792, + 8.631365999956044, + 8.381637934700525, + 8.528198978020047, + 8.62540276079298, + 8.625474896113094, + 8.629376300905502, + 8.597078749577049, + 8.684481333318226, + 8.659448707618798, + 8.546649130759311, + 8.715551281071107, + 8.696540935251326, + 8.519458842521127, + 8.674360379304835, + 8.58181109968348, + 8.702769542890527, + 8.559006555598003, + 8.768738214164992, + 8.608968379404613, + 8.857861060161042, + 8.598074745194348, + 8.696348326954643, + 8.640003551859154, + 8.764764690287304, + 8.775283663015639, + 8.691246227706184, + 8.6428522580159, + 8.665428471567798, + 8.775499543714622, + 8.807917518962867, + 8.681832368041263, + 8.71289694562447, + 8.746197724904695, + 8.670159611225024, + 8.668163747838538, + 8.626302354260462, + 8.694548519282513, + 8.564875510837924, + 8.80048640998742, + 8.948066328316981, + 8.957202474740857, + 8.682340944545178, + 8.706211969560313, + 8.500795816346587, + 8.74896410476607, + 8.734722607648076, + 8.816976072432466, + 8.680183105410416, + 8.963416576882505, + 9.009409405960106, + 8.484360003267046, + 8.697568820022683, + 8.78538927156441, + 8.902596453140427, + 8.652784965308955, + 8.664775446027251, + 8.833528991671137, + 8.779127367510906, + 8.834917822428046, + 8.695496540907719, + 8.7974003569961, + 8.915184745874074, + 8.938381054993085, + 8.68111268888372, + 8.885148373541355, + 8.6624474813821, + 8.667559794010058, + 8.963908151567091, + 8.784012255803406, + 8.821811077282495, + 8.80901877155802, + 8.748078900232292, + 8.717914484648363, + 8.982977684526915, + 8.694261207728095, + 8.947997978810065, + 8.702646586754225, + 8.959342555157086, + 8.76548832803989, + 8.789000327754295, + 8.737758352990628, + 8.776307920556775, + 8.75396401283035, + 8.820690001602555, + 8.631289445761169, + 8.735775800532602, + 8.768153090873255, + 8.694007397771387, + 8.72617677150501, + 8.842181280246434, + 8.81523507804007, + 8.669076520003753, + 8.584534256182732, + 9.028936083003899, + 8.755698423387537, + 8.810349912483126, + 8.770990565305578, + 8.688984962271594, + 8.920827034031637, + 8.689608755721862, + 8.841938435654919, + 8.89532807946501, + 8.826776115336541, + 8.487461487015064, + 9.048369247296746, + 9.014157028640266, + 8.690630184858746, + 8.582936752003636, + 8.730391482437184, + 8.698241956750431, + 8.902553315215142, + 8.936091873631508, + 8.675255420264758, + 8.745421148493918, + 8.791462326765267, + 8.908319548109967, + 8.826648318039092, + 8.785950307583839, + 8.65976512228131, + 8.86055417838064, + 8.793249783288275, + 8.57025314207261, + 8.581442737545109, + 8.78161952005683, + 8.794115250636555, + 8.682620357292222, + 8.649642801107746, + 8.639086476334965, + 8.821919005531026, + 8.542878117968616, + 8.556537852871816, + 8.708011510670689, + 8.817081219470221, + 8.806749741275471, + 8.739814605995424, + 8.544647685753192, + 8.642336807330494, + 8.700494110018962, + 8.62504234159279, + 8.675505200598549, + 8.689373024261938, + 8.547016372314001, + 8.532774256795623, + 8.65642527800433, + 8.649733847893915, + 8.560669371420234, + 8.660850420749203, + 8.506039812432645, + 8.479987085628922, + 8.761525397286128, + 8.757618396783075, + 8.703395038662125, + 8.606624744326208, + 8.689256927899649, + 8.33998244916053, + 8.66356027179016, + 8.612985721525188, + 8.376535396844345, + 8.529383597995132, + 8.64976673968472, + 8.556204958827996, + 8.50486356915665, + 8.335206876593517, + 8.567564865010397, + 8.344823110921753, + 8.394566221252665, + 8.424824007309299, + 8.650969117144562, + 8.36864407867478, + 8.435874915202401, + 8.44411704487655, + 8.469348992060066, + 8.439079908873838, + 8.53889959792227, + 8.449637691072827, + 8.450919942861072, + 8.163166747217767, + 8.384382075093548, + 8.392430088965643, + 8.380593819504975, + 8.344621599620769, + 8.361496717965654, + 8.421155040361667, + 8.504285510935889, + 8.354415187961362, + 8.281991169408068, + 8.295770962166838, + 8.33061728962819, + 8.186926185326277, + 8.408052986070544, + 8.208543176177205, + 8.312857863709594, + 8.455307331551733, + 8.261519850536875, + 8.22123267094312, + 8.299335079510987, + 8.332755328756678, + 8.28061582454113, + 8.277584107903419, + 8.223464983662362, + 8.242530307391705, + 8.282681634553986, + 8.314752624947742, + 8.329861827161404, + 8.132654088098272, + 8.031182914718373, + 8.307148731795342, + 8.170463144641062, + 8.348280125924514, + 8.140804208524678, + 8.006143250194826, + 8.04433534820659, + 7.972982697726511, + 7.975550203299846, + 8.1699877652176, + 8.133776945978774, + 8.118181869429296, + 7.907108344621177, + 7.991001432458672, + 7.9272386287063625, + 7.897405170963078, + 8.049912931912706, + 8.013783538317726, + 7.874465781229192, + 8.016966231151594, + 8.15163617223034, + 7.974111538671008, + 8.010241193318505, + 7.826709823556127, + 7.934828494936224, + 7.879535779799248, + 7.8320122210943985, + 7.993396833152194, + 7.962110405054927, + 7.978219809537054, + 8.059142783528772, + 7.752497750818436, + 7.884845058910285, + 7.899669164375252, + 7.814155667582964, + 7.888502157407878, + 7.69034117392988, + 7.83780690282091, + 7.842670965699753, + 7.848445627047187, + 7.664067678628933, + 7.833357816701938, + 7.851749249634793, + 7.5603035500583164, + 7.62444723815266, + 7.849184495724948, + 7.686639874350126, + 7.650754742900579, + 7.616174421343719, + 7.589348635470342, + 7.526341955667519, + 7.611788919012304, + 7.756047231832316, + 7.483459354073446, + 7.688886270520914, + 7.604369869448065, + 7.612099872060787, + 7.4675699924706676, + 7.55418318487991, + 7.610323567477477, + 7.52988142285476, + 7.5054086243685845, + 7.471623476549377, + 7.270791035307422, + 7.587052988416873, + 7.429770105367102, + 7.314275606788988, + 7.343307192941424, + 7.551076286235807, + 7.300514334505485, + 7.323865460151015, + 7.469037423348031, + 7.359719566242791, + 7.34070650137252, + 7.209563586744331, + 7.210629875016962, + 7.308407976177905, + 7.1489959331229995, + 7.316829732356849, + 7.384837899052799, + 7.399991421562962, + 7.204767387491766, + 7.364967266662894, + 7.010258505492619, + 6.997146834160881, + 7.112809077547571, + 7.082962251960797, + 7.191091156874481, + 7.053379551374185, + 7.166553084359662, + 7.134646046877167, + 6.979289182852526, + 7.062066587860185, + 7.095851335121466, + 6.897327334458369, + 6.962444240694731, + 7.007720842328149, + 7.026171645410727, + 6.997504756781516, + 7.00762739732651, + 6.92285499328049, + 6.768843049438974, + 6.835463045593168, + 7.016640802962568, + 6.992542895483056, + 6.792869528838419, + 6.593459613577436, + 6.796701792392002, + 6.8116233694646535, + 6.760543774101222, + 6.887416546970574, + 6.807081226964084, + 6.722954885864734, + 6.799377864957721, + 6.700064973097383, + 6.720560104181217, + 6.8596640874819235, + 6.655122097137491, + 6.57380278757452, + 6.964313521277391, + 6.448865747350622, + 6.627605611913548, + 6.658601812691687, + 6.714476743649199, + 6.508767269092412, + 6.4607009685373695, + 6.531929348959814, + 6.566648448567212, + 6.592320155402462, + 6.616727003706441, + 6.479955893469387, + 6.48036314445298, + 6.503848647570615, + 6.405264396874436, + 6.409440871166908, + 6.35498413035811, + 6.383197876090802, + 6.318942362784563, + 6.2504074068617825, + 6.377668354676578, + 6.315026048310674, + 6.316249231377612, + 6.383879964036537, + 6.267634929228468, + 6.304587411581761, + 6.206226246521885, + 6.301737670584814, + 6.18641961287657, + 6.095677952131789, + 5.989858791633346, + 6.29386614599277, + 6.070435482034106, + 6.0738578275577195, + 6.167836780268911, + 6.073638777062281, + 6.195820102132954, + 6.024469723855041, + 6.122071117559569, + 6.147993090598559, + 6.033712176026325, + 6.086362955613338, + 5.952938738520332, + 5.876636353736772, + 5.968767134202827, + 5.93261648389188, + 5.935779088256314, + 5.898229964758854, + 5.781493989342703, + 5.996037851608252, + 6.005901538659702, + 5.986852304040575, + 5.760734604025589, + 5.754142915714057, + 5.840658610250186, + 5.7732971189720566, + 5.7720320329352885, + 5.7903933590769885, + 5.607209607636652, + 5.660805580062891, + 5.849600286316729, + 5.682764463168842, + 5.6732616688153525, + 5.74963418690117, + 5.653405479285774, + 5.486493034326359, + 5.623899855574262, + 5.450024139536692, + 5.461005753105697, + 5.4801576535157315, + 5.495939460234248, + 5.636518970698776, + 5.523067224833789, + 5.5894062100313855, + 5.2874094109418035, + 5.521336390229866, + 5.562136320380617, + 5.57391855192921, + 5.371493061574923, + 5.32037687084818, + 5.453900341773045, + 5.172395394206433, + 5.19020603461235, + 5.383970066426888, + 5.108954034464501, + 5.191103591947105, + 5.413120581663038, + 5.38959546856715, + 5.190755270585365, + 5.267115473960967, + 5.05921327574668, + 5.237812730930916, + 4.988494283297236, + 4.970361192689558, + 5.219184036399959, + 5.132276650015131, + 5.178720377188798, + 5.1104447846384256, + 4.812149996766317, + 5.018903118182377, + 4.8483402335113555, + 4.9190059350417545, + 4.909152819106495, + 5.05749472008329, + 4.882757008629636, + 4.98475702329618, + 5.107440072387186, + 5.007053402802646, + 4.739929044659267, + 5.040434251807631, + 4.643740754059898, + 4.686900104253661, + 4.876904451386758, + 4.8165624662421225, + 4.769800729097859, + 4.766746748062544, + 4.674776571624179, + 4.608559687405361, + 4.7278174305797, + 4.617798384584784, + 4.456617068831553, + 4.593418748261704, + 4.526908040417248, + 4.5929193395825765, + 4.647354879959991, + 4.619254485581906, + 4.548460675101284, + 4.418141766285926, + 4.437989272703423, + 4.606500630480075, + 4.559365811759257, + 4.495836520255479, + 4.525105981377516, + 4.34259613642552, + 4.385012470876567, + 4.571599958947306, + 4.442698976809051, + 4.37946853701898, + 4.289320472812644, + 4.131338801516419, + 4.277451700079403, + 4.3230378207347915, + 4.276808457715595, + 4.176267291485705, + 4.307448587001759, + 4.191792557631846, + 4.180019836447075, + 4.230691970532159, + 4.101537541458699, + 4.070391163294921, + 4.081752445584788, + 4.0574672157286615, + 4.028577483752114, + 4.0009372258109295, + 3.9564813041408335, + 4.095550741622467, + 4.150068591848058, + 3.9403094767409512, + 3.997398721430055, + 3.818613384214438, + 3.9361330288988046, + 3.9372829263317217, + 3.9880865265267995, + 4.01124292015581, + 3.878114840724584, + 3.8666156931007376, + 4.00220942260367, + 3.779663371919441, + 3.7611992087054924, + 3.680434340103046, + 3.765008532162586, + 3.899746286872087, + 3.7065606519571044, + 3.7499560857024155, + 3.784259423227739, + 3.8715564880420708, + 3.5744111397197216, + 3.7400353002725417, + 3.4593450471457543, + 3.7500011615834903, + 3.666000579146153, + 3.6070944832318466, + 3.613284804072834, + 3.5955942152218183, + 3.7288859275145114, + 3.6964365178027965, + 3.569938428970626, + 3.3402070260430086, + 3.542128558213721, + 3.515014045438594, + 3.4861366517838808, + 3.552941804919791, + 3.4482455730547303, + 3.3955122822606376, + 3.3750644533261034, + 3.2864748006508044, + 3.3216159266677607, + 3.179334854406796, + 3.401500725676896, + 3.245361731193404, + 3.233346201308663, + 3.4343746372496065, + 3.32111475289291, + 3.379895334686805, + 3.169745022953856, + 3.166530497250965, + 3.366155384195874, + 3.3273098624836925, + 3.212717358429226, + 3.3098133051462906, + 2.9471489004147746, + 3.0932807052925573, + 3.0397815113118565, + 3.07895503522826, + 2.8103469283196576, + 3.146044510793504, + 2.91194065593635, + 2.951445102787463, + 2.9730387036634727, + 2.903446788224665, + 2.912104682034298, + 2.9244438167713, + 2.902248735685494, + 3.141906586460515, + 2.7160669721701827, + 2.968687245762831, + 2.7794233881261565, + 2.828845451162567, + 2.7380696584489903, + 2.723499878845263, + 2.7031609183040857, + 2.8555340117720123, + 2.9058489872463924, + 2.8115295321786804, + 2.637731508472552, + 2.9080452724000936, + 2.933375915810459, + 2.6853899379337647, + 2.5892827103234395, + 2.8918785060541836, + 2.5644562192295384, + 2.5088424223855528, + 2.6719468204762777, + 2.5673051023193856, + 2.7581796636174962, + 2.582316043871058, + 2.5650287647521757, + 2.558571698670783, + 2.5929309812599537, + 2.512848637578769, + 2.613542527829479, + 2.6442170873988182, + 2.6991940118069424, + 2.4320826455294826, + 2.4607692399980703, + 2.507789314889137, + 2.508937115599125, + 2.398577618595298, + 2.267893576191621, + 2.3618805640019973, + 2.342213390056681, + 2.3616088953336645, + 2.323788689032562, + 2.340400652186187, + 2.145895516709912, + 2.2898131724470545, + 2.268486769942343, + 2.3045080246555014, + 2.3490221121062986, + 2.3123266751750373, + 2.1510208624855176, + 2.104062297880207, + 2.233951317168783, + 2.3272105937904004, + 2.0649106598420097, + 2.231899818635992, + 2.1284725380055622, + 2.0622108798392076, + 2.033055481351218, + 2.1267120747068344, + 2.043968403867329, + 2.269464219654152, + 2.202461837393346, + 2.0736382950254284, + 1.9116081707723243, + 2.083043771705348, + 1.9778598288191849, + 2.0518338494125063, + 2.021126037003878, + 2.0569405959134808, + 2.071491433875862, + 2.023738396842665, + 2.040844700165685, + 1.8340624237837748, + 1.8507710647696614, + 1.9914782926040098, + 1.905269958948175, + 2.0141379069535548, + 1.9277135697650427, + 1.867983488824445, + 1.9523635467201736, + 1.8477363311342099, + 1.7647373231852772, + 1.78209378211444, + 1.6723030988701495, + 1.785609540397707, + 1.8993917072828863, + 1.6273727752478124, + 1.9606955399282648, + 1.7687751985083726, + 1.8437297039308131, + 1.5537080682275857, + 1.8569907472016836, + 1.7136656060954054, + 1.5773249738445165, + 1.5046681235367445, + 1.7972607730046015, + 1.7907504542017039, + 1.797497021699009, + 1.621018395611739, + 1.7030822968993165, + 1.5829020727532765, + 1.6211988220638074, + 1.601255194470476, + 1.3892595423222167, + 1.6083790492510546, + 1.7378093568427948, + 1.5951653530858705, + 1.5385545566803838, + 1.4849529142772884, + 1.537465833977341, + 1.7351314883781237, + 1.46679980195747, + 1.4901136238176576, + 1.3307888685845184, + 1.411571825358989, + 1.4770686990830961, + 1.526802393236758, + 1.3946904672903297, + 1.295270972123255, + 1.3463110546738633, + 1.4392084296328331, + 1.3388955313832571, + 1.3739028646095883, + 1.460480660842412, + 1.4773948292475818, + 1.3776197957585685, + 1.2690541308901035, + 1.289233693356005, + 1.200727410382373, + 1.3900727987013275, + 1.422276103348822, + 1.334528073134271, + 1.2725202678824488, + 1.2719864405005201, + 1.3394182612147483, + 1.2764511096755307, + 1.4530438030880608, + 1.174980732743032, + 1.202724663116488, + 1.2757573725405895, + 1.1356994568329866, + 1.190350054159481, + 1.3530757491629466, + 1.1821859917984865, + 1.1393327943630296, + 1.358731764203798, + 1.2506748733809174, + 1.16033278957729, + 1.252113651781067, + 0.9837315863187223, + 1.1491381032379566, + 1.3792535919627273, + 1.1107919665502022, + 1.1543530977539156, + 1.2578786305547907, + 1.119082447161461, + 1.1814218455739747, + 1.1030967962968057, + 1.1605412682984768, + 1.040045271285507, + 0.9513655992608864, + 0.9139094308876737, + 0.9425561176742241, + 1.232969312933816, + 0.9183282743058946, + 0.9416937716896876, + 1.0484211583711978, + 1.1151401268057608, + 1.1294018473943161, + 0.8754843969570704, + 1.0415656073804227, + 0.9784384214063362, + 0.9116602429082517, + 0.8311480207182115, + 0.9954472026567652, + 0.9738439777843695, + 0.9815308286621983, + 0.9296043344082562, + 1.020893409273961, + 0.8945469169879275, + 1.0496794521645652, + 1.1502624564717974, + 1.1205500063762046, + 1.0013165680721292, + 1.0079742762435184, + 0.9834158058867989, + 0.8724533927979347, + 0.9596448188075076, + 1.0344173137156567, + 1.0574929507639919, + 0.8419476881537594, + 0.9178431065880488, + 1.037995641779989, + 0.9017127680307956, + 0.8328617509827055, + 1.0251511950519117, + 0.9459049742090722, + 1.1235463562696528, + 1.0692872666450592, + 0.875659996350601, + 1.0490185299280947, + 0.965354704076415, + 1.0066786364357285, + 1.074998884578579, + 0.8829288721318912, + 0.848388432894209, + 0.8821570274178652, + 0.7940474969098966, + 0.776736843706461, + 0.6962340162431344, + 0.7886980959469829, + 0.8265742757090341, + 0.9301739033877809, + 0.6774816470121237, + 0.9933105039827579, + 0.8954857264120044, + 0.7083436064326922, + 0.8996265794722204, + 0.8037771614971411, + 0.8484511888349073, + 0.7517621329876524, + 0.9667740512856975, + 0.7447579496045564, + 0.92736115227679, + 0.8086476250928438, + 0.7135541432069035, + 0.642124456452482, + 0.8799306726293677, + 1.0459386399808155, + 0.7815744855930107, + 0.8510406101033096, + 0.8887770783255908, + 0.9906500228659247, + 0.84480960931619, + 0.6648552362602396, + 0.6960007405309423, + 0.9740739160561007, + 0.8699101196442626, + 0.9889665659530926, + 0.8197749139583905, + 0.6823969555584538, + 0.8271660634812672, + 0.7824723540771643, + 0.7397046626356718, + 0.949361580930094, + 0.6852585102806156, + 0.7842131642313629, + 0.6938400608068105, + 0.8088444558279588, + 0.8203883515606326, + 0.8092310528606003, + 0.7195602500857752, + 0.78579281008917, + 0.627929735893633, + 0.8155795400828364, + 0.602583260857274, + 0.461131280035988, + 0.7946665159938898, + 0.6635565769506855, + 0.7922734681453559, + 0.7436841798650107, + 0.8354002034377187, + 0.7034932725545506, + 0.7518539844438223, + 0.8959949747972175, + 0.67950341730684, + 0.8123076206620993, + 0.762484345450683, + 0.7680087070674089, + 0.7694105376264679, + 0.9131390520904964, + 0.8575121180257674, + 0.8846935532488085, + 0.8135782942167791, + 0.8428809279473936, + 0.719294440563292, + 0.7311294422572624, + 0.7741090456440508, + 0.7286183924583987, + 0.7023859770354459, + 0.8342264413444268, + 0.7685200247483449, + 0.8737893995748979, + 0.9324429588949237, + 0.7930308162283367, + 0.6801370615112131, + 0.8947795072057976, + 0.9469552388984857, + 0.7418670826219439, + 0.6904943950545899, + 0.9526117718279454, + 1.0020056669780755, + 0.7264934550069374, + 0.984530641844234, + 0.7591365212177916, + 1.0544783391795094, + 0.7840521025521127, + 0.8824009121518861, + 0.8211382404486424, + 0.8522262927676918, + 0.8356980077667011, + 0.822761791078234, + 0.8625667733228283, + 0.9199040120023155, + 0.8497422061917818, + 1.092556078973508, + 0.9090846396705263, + 1.0149787178713372, + 1.0550734466280465, + 0.7927894532770107, + 0.9737952075417056, + 0.8123741372547741, + 1.07741368095511, + 0.8931031671381906, + 0.9441990791448589, + 0.8131428021847147, + 1.0743482591267701, + 0.9761876684823468, + 1.0898131815411625, + 1.066520142451379, + 0.9755584845140206, + 1.1066309838834285, + 0.9712570594280727, + 0.9497353163769269, + 1.002797151160977, + 0.9883051733062442, + 0.9142970723989468, + 0.950666193201026, + 1.1933849956859064, + 0.9096273559144685, + 1.122780958395007, + 0.8853550636030092, + 1.0354143017089483, + 0.9657935616832947, + 1.1412327270126292, + 1.1268395777842006, + 1.0593861842721974, + 1.0271980404274004, + 1.1768311802118383, + 1.0935611195271082, + 1.2218775410694311, + 1.143718801672852, + 1.111157873038624, + 1.0846329815897848, + 1.214009050046089, + 1.1784590810779896, + 1.0559283193298707, + 1.3294478204176077, + 1.284724901768743, + 1.1525606010454579, + 1.1349238705852773, + 1.1599212071162277, + 1.246489870464779, + 1.1885494392866789, + 1.1089366101634481, + 1.2620697568821353, + 1.1412356954494778, + 1.1625033960211089, + 1.208222811146061, + 1.2957525190890016, + 1.3533189626598676, + 1.3371799236474164, + 1.1398891897683257, + 1.2542745446158314, + 1.3128683525624072, + 1.3271268063334414, + 1.3308922680567399, + 1.4492851248625993, + 1.2722776496934562, + 1.4289093519778602, + 1.3265779033038103, + 1.4054565353549204, + 1.4716611496936636, + 1.4457381019708133, + 1.3560560640998802, + 1.3354091290465766, + 1.5179124952568543, + 1.299844269439595, + 1.3366767654842284, + 1.3946633347471773, + 1.5118973069449946, + 1.4752991883265778, + 1.4799120451800907, + 1.7404025584034013, + 1.5353987619035598, + 1.4172975753474315, + 1.4929346797746896, + 1.580822728043537, + 1.4996672419130117, + 1.414250451893115, + 1.6542274341145462, + 1.5037049445100843, + 1.5986817250403795, + 1.5332848473389264, + 1.7219295157365544, + 1.5068175827435972, + 1.7696921527129024, + 1.5487743999545727, + 1.6470395893452685, + 1.734583516432119, + 1.6700264792239454, + 1.4313164642364227, + 1.5628990807909011, + 1.5832553800989055, + 1.6183293375905874, + 1.6723493755532524, + 1.5037435785565303, + 1.6840761824429775, + 1.9201812408136338, + 1.7241745768858547, + 1.573407142687978, + 1.7016216280127525, + 1.8003750050381524, + 1.7471320142194198, + 1.8393152133371893, + 1.8294066625136285, + 1.540318768055971, + 1.8525750570848651, + 1.7225915119699087, + 1.7569645849761983, + 1.8912142137950936, + 1.6887094262469882, + 1.9763965428325347, + 1.6687670914534862, + 1.848113109021129, + 1.907229859258868, + 1.7479268862443387, + 2.049597159088653, + 2.0244270196475154, + 2.0743352309456498, + 1.8659147794935644, + 2.024316501964232, + 2.0657912108458927, + 1.9124357167048942, + 2.0072416648927223, + 2.0770297104220634, + 1.8607553806190482, + 1.9360115434481904, + 2.12046176318638, + 2.167183868861611, + 2.1328439749098167, + 2.2058165352443817, + 2.0549520648104536, + 1.8625793160614517, + 2.270799163561237, + 2.1597466701493415, + 2.308911041031909, + 2.1349335093236745, + 2.105449804358576, + 2.190623139691228, + 2.1262143344312743, + 2.0503444434142724, + 2.2101444970297806, + 2.008955256916992, + 2.1863865435747756, + 2.192983064943096, + 2.3490169531926504, + 2.350792062630004, + 2.302389968861843, + 2.3091896219017602, + 2.555744065495887, + 2.287891316033988, + 2.548508610522834, + 2.553896366732338, + 2.58589227638055, + 2.2676269618752496, + 2.455878316935348, + 2.2968859093165714, + 2.4032732714507614, + 2.5932082483994923, + 2.6357065053771214, + 2.523142653095067, + 2.579911447116211, + 2.450969485441874, + 2.6566728532456687, + 2.4765771852261276, + 2.407168360875442, + 2.743846047112648, + 2.5048628210927064, + 2.5705337563772805, + 2.689394073652503, + 2.6049726237871638, + 2.5763012310513678, + 2.6418688484702466, + 2.5064327451540094, + 2.5946517474899053, + 2.7449596221728, + 2.893436286711332, + 3.033233867168552, + 2.7625218051393308, + 2.915329932036192, + 2.8992879384027987, + 2.904921358901137, + 3.0502515676899233, + 2.5746186304456886, + 2.7988171549822742, + 3.0011466069781196, + 2.8833116687283122, + 2.8207958570736227, + 2.9022328953164713, + 3.108367555099502, + 2.896858003897472, + 3.2074869035624864, + 2.930986639393435, + 3.1121531679867576, + 3.0559204062187284, + 3.071429415676472, + 3.1899846191115246, + 2.89076547942193, + 3.000396382789073, + 2.963749512834077, + 3.118171150252928, + 3.048682611251274, + 3.0800638867019687, + 3.061640767714573, + 3.2138743520216133, + 3.2055249261617442, + 3.0747843910092363, + 3.1734866865725184, + 3.3144619039314196, + 3.295833072494262, + 3.1982331725498208, + 3.1065144343901743, + 3.2300420098393547, + 3.3294116634279436, + 3.3049337701907304, + 3.3789856061008323, + 3.445239486531991, + 3.442437743102386, + 3.4176600223473153, + 3.3795421054134858, + 3.2721234217732675, + 3.4720362390343937, + 3.49152614303147, + 3.1333203344172738, + 3.5938484854174684, + 3.5524180712852145, + 3.494047553201189, + 3.600758488013611, + 3.623787610521413, + 3.562192510967883, + 3.7400778465374827, + 3.576569303608637, + 3.5976181381583103, + 3.8145373376986043, + 3.711630038998914, + 3.7354360097052695, + 3.5127259025458324, + 3.9206350448202762, + 3.7023036959030264, + 3.776549451842535, + 3.7539811892899966, + 3.7992765245197995, + 3.685253182059088, + 3.9173285757035057, + 3.6384977378581933, + 3.810639976559902, + 3.9569426667157592, + 3.8369439490485906, + 3.977606300774048, + 3.9168203698518713, + 3.8713763335127185, + 4.025344232432819, + 3.865815395151418, + 3.991819053556048, + 4.0580388408898, + 3.957870912817199, + 4.020663020123437, + 4.065283452148764, + 4.107296664777911, + 4.105062379526938, + 4.080584119078151, + 4.203117260995836, + 4.22948642783202, + 4.370025641659417, + 4.15836091671121, + 4.093469655140543, + 4.16558245312492, + 4.352667122802995, + 4.280544801755416, + 4.205604208673629, + 4.082337686528379, + 4.297834346175905, + 4.4482840825858165, + 4.372409986118154, + 4.520378796145963, + 4.307112934580693, + 4.352766907148352, + 4.460254437005219, + 4.395893210897115, + 4.366476171300379, + 4.583045255997884, + 4.446640221494876, + 4.461412656165098, + 4.554176417554892, + 4.393736904504932, + 4.6569140663145125, + 4.443378137071001, + 4.564801677850277, + 4.732316244897369, + 4.517929831201408, + 4.686169869481162, + 4.775255543268239, + 4.546523284516345, + 4.586741776406596, + 4.749194508955121, + 4.586635705074745, + 4.714891534534519, + 4.69170963758017, + 4.742998726324688, + 4.780812370241863, + 4.741698649440713, + 4.855833448618512, + 4.774053737271986, + 4.851124826398904, + 5.003624299238205, + 4.83936874807553, + 4.853494840677976, + 4.938408883618, + 5.050928393512741, + 5.019059895711758, + 4.845559678636015, + 4.955623393236137, + 5.321463176424699, + 5.0079467333498044, + 5.057621462195794, + 5.19971933150238, + 5.1510581170910195, + 5.0000101394173235, + 5.012263932157695, + 5.316668285469915, + 5.25528914607099, + 5.2303752380275315, + 5.041030182071184, + 5.377222177889034, + 5.1413565317091905, + 5.160199364796669, + 5.121667095412953, + 5.384527235856255, + 5.336556594613544, + 5.427724435224642, + 5.499032458293954, + 5.371332752708956, + 5.568281921933157, + 5.405178906507892, + 5.399641013176831, + 5.561401864278069, + 5.339772702345835, + 5.403359184719279, + 5.527538808260009, + 5.626061347217514, + 5.4943610129731475, + 5.574676781775063, + 5.434001928964692, + 5.573089551345206, + 5.695685341478579, + 5.593494175725747, + 5.653538949473343, + 5.608748285497052, + 5.543214623689504, + 5.631995980103992, + 5.694226389444561, + 5.58375403273784, + 5.667413109883987, + 5.705751619582378, + 5.9270139801985025, + 5.832415733332293, + 5.8983437819486975, + 5.939202128271603, + 5.948821236288223, + 5.820117508263275, + 5.910908586685632, + 5.831455342255392, + 5.846826004408351, + 5.825305284704058, + 5.729611598341756, + 5.81040857172305, + 5.936253519084021, + 6.021863262574361, + 5.939046640827824, + 6.102869526161482, + 6.05636158544582, + 6.017403413170533, + 6.225602307242032, + 5.929793838930465, + 6.2253965150090895, + 6.129180367195607, + 6.052830815268365, + 6.070216181047685, + 6.311532378059903, + 6.177997208295496, + 6.234507641738008, + 6.167760794611821, + 6.309735258168504, + 6.368112400143353, + 6.3306420239731365, + 6.57752294359697, + 6.195578710203805, + 6.391866966635071, + 6.332482159359859, + 6.4389353772862545, + 6.335471372723036, + 6.386918335395567, + 6.193071498526777, + 6.307392077656581, + 6.316951582813208, + 6.541698833425862, + 6.377951867817826, + 6.4222232185362635, + 6.5422055670037516, + 6.459265188053244, + 6.453643857993531, + 6.761554981832338, + 6.584421005426607, + 6.637497667253859, + 6.679092399731303, + 6.724689328871863, + 6.533623833290843, + 6.475643411285363, + 6.810140670430957, + 6.477905880486347, + 6.774499824747547, + 6.679479757906379, + 6.709933864596851, + 6.7421605894055165, + 6.829424301388047, + 6.784962264715341, + 6.823375490528433, + 6.797785796582882, + 6.936661675192681, + 6.812936915275078, + 6.728230990114661, + 6.925122057939147, + 6.774138231013837, + 6.705000232971937, + 6.955122893331428, + 6.86564855967455, + 6.84377326162233, + 6.926650729628415, + 6.834822141516184, + 7.048374545261743, + 7.0576456818628746, + 6.78425823602738, + 7.104409147961918, + 7.009691417438969, + 7.16744758190133, + 7.023901495884891, + 7.2084914841822565, + 7.276562930019511, + 7.185555979365951, + 7.0742703738634996, + 7.068104781197685, + 7.1985496254334205, + 7.215099720574202, + 7.108983657851528, + 7.053830191149782, + 7.376519475423417, + 7.263104030691292, + 7.340972695830786, + 7.031517030655343, + 7.119273560268758, + 7.382656309409152, + 6.974300988129183, + 7.158758118406671, + 7.216820152546, + 7.282873085699873, + 7.336946906524816, + 7.23648674222089, + 7.311893685888457, + 7.340677640598874, + 7.433227711881977, + 7.389325763820115, + 7.326179060494977, + 7.4852611849197075, + 7.581651807199195, + 7.5181117248495966, + 7.437138150778219, + 7.4264889826462195, + 7.362228299467139, + 7.426065709626531, + 7.579941699447444, + 7.585904350898428, + 7.4413861335227995, + 7.561017738704409, + 7.5730509995954325, + 7.663374851971952, + 7.50129936901253, + 7.485199960891376, + 7.68873376477845, + 7.523196926506379, + 7.635119811700995, + 7.75080640422409, + 7.574750154388038, + 7.7244974914306965, + 7.6509952726058446, + 7.502500838074949, + 7.557018752694679, + 7.728429908468178, + 7.9348570069621385, + 7.739693734844601, + 7.6907698005723155, + 7.772254596891942, + 7.713749379259738, + 7.685801234782881, + 7.736330403356415, + 7.858556172874746, + 7.922731928106043, + 7.779190315201878, + 7.848146826658874, + 7.86468564513406, + 7.699092487733485, + 7.871222634234301, + 8.117175185579615, + 7.68846174361275, + 8.031305100284442, + 8.024743212100123, + 8.073631901347795, + 7.937759818656243, + 8.00090034602866, + 8.074923607322493, + 8.211090596591502, + 7.9075080956378505, + 7.923062935946628, + 7.810724245697015, + 8.04117959461609, + 8.016464340341935, + 8.026041388979655, + 8.077208960124645, + 8.011374672942033, + 8.161211070530896, + 8.086366493256515, + 7.907689080819964, + 8.227808361271135, + 8.06194864841018, + 8.169299560502076, + 8.053852758384885, + 8.119448127206937, + 8.289977524972354, + 7.942719211222692, + 8.028806620878209, + 8.226528799403534, + 8.166839827505571, + 8.096958501001138, + 8.22434042534019, + 8.11389666843222, + 8.192014842713961, + 8.099751908894799, + 8.184808063352888, + 8.287613489254312, + 8.27536724821659, + 8.32120174700928, + 8.17946419927541, + 8.345417087587547, + 8.33319171503856, + 8.310480760899589, + 8.168529671978932, + 8.268184840680115, + 8.36726155939911, + 8.370527120022384, + 8.25239687656451, + 8.293060021299596, + 8.413301902182054, + 8.446641757222142, + 8.610206946902954, + 8.341454498022559, + 8.410604189265337, + 8.287630571283032, + 8.309057884336605, + 8.420582183962335, + 8.340585521649711, + 8.519603220186138, + 8.549233120801036, + 8.453873110709955, + 8.593896036322281, + 8.345453144768436, + 8.606804048627284, + 8.649611959874843, + 8.57207675951268, + 8.413544600131788, + 8.578975434365166, + 8.502745892065906, + 8.354711367021178, + 8.559346852643902, + 8.549661960090026, + 8.583178505663266, + 8.611004554427272, + 8.512508285115608, + 8.657969384355017, + 8.500983903966741, + 8.557366202372116, + 8.527292958537217, + 8.815518541429771, + 8.505139531950201, + 8.556584070338795, + 8.679632474925484, + 8.552795195763041, + 8.55013901033074, + 8.527410871643157, + 8.676009433038617, + 8.782424877581807, + 8.713049725071787, + 8.59152289316527, + 8.715702540512764, + 8.5344208023304, + 8.498681964166783, + 8.708823790203786, + 8.676621481842554, + 8.570738885588186, + 8.62004367049988, + 8.567134221211951, + 8.68179549921177, + 8.428090055140123, + 8.677208193080448, + 8.642220599600009, + 8.559098817929485, + 8.60834240690585, + 8.923766274178735, + 8.810695647727595, + 8.645258070436267, + 8.689648389571671, + 8.74866449178142, + 8.705234358286566, + 8.753809604699542, + 8.684623893047663, + 8.584386436042049, + 8.815182336079786, + 8.835990479371869, + 8.692960379787587, + 8.74926079501936, + 8.76584970069852, + 8.759151626156742, + 8.766821125473356, + 8.687570948552356, + 8.721465954889691, + 8.710318017347353, + 8.647325375720747, + 8.796603914603363, + 8.698265320672293, + 8.83729205528184, + 8.854031929199296, + 8.855842169657727, + 8.689332408667676, + 8.74248158646711, + 8.759650330532914, + 8.792222906566296, + 8.6596105665604, + 8.855548961400583, + 8.783435056030044, + 8.775297016239623, + 8.89054068813933, + 8.750214084103648, + 8.674564159724707, + 8.75849294422518, + 8.712811546245852, + 8.699323005689488, + 8.747811921047584, + 8.81283994891135, + 8.757238865825103, + 8.882699332400401, + 8.733062967593757, + 8.881624399962405, + 8.724258397353605, + 8.86885732267607, + 8.717947646191316, + 8.603522713811483, + 8.634525514527088, + 8.714074864278738, + 8.805630895076023, + 8.70224605352715, + 8.83684463690684, + 8.75329124175773, + 8.62873012171662, + 8.677959235564598, + 8.813325555513108, + 8.989428583558837, + 8.63784009082331, + 8.936186613666242, + 8.770332199768832, + 8.850823114721607, + 8.809059727090377, + 8.93718113826639, + 8.842384877977162, + 8.841155910612937, + 8.872936749478074, + 8.784312038209697, + 8.681420760929985, + 8.752387490006678, + 8.654309044239428, + 8.825615076742977, + 8.770222706487022, + 8.865818583173937, + 8.906313810834973, + 8.571950001210862, + 8.682690623132668, + 8.905573874702535, + 8.874727449220599, + 8.802610473664743, + 8.781755043203194, + 8.910489949470643, + 8.80146308749777, + 8.830749528120265, + 8.696864565090051, + 8.814735293332877, + 8.746149811586601, + 8.653485395445912, + 8.740377123660348, + 8.79765990287714, + 8.780311670123314, + 8.686609749737183, + 8.715189060056343, + 8.77484757042576, + 8.83340205765788, + 8.707207220526698, + 8.73669976230339, + 8.934099098602545, + 8.817282081998393, + 8.874061548099943, + 8.546814264364137, + 8.753137946035313, + 8.760981934221851, + 8.596368977755162, + 8.77940135606016, + 8.662337454771041, + 8.771289672046361, + 8.695941049499183, + 8.729830501953177, + 8.702485824065974, + 8.612397391366605, + 8.826800568467526, + 8.6399989391691, + 8.692702930290192, + 8.596440331156202, + 8.775707844061005, + 8.532272832932936, + 8.682347638628144, + 8.780640944472621, + 8.652969946903758, + 8.841887571816024, + 8.659640641126476, + 8.509885589142982, + 8.713931836269749, + 8.555646952642169, + 8.60481626704865, + 8.506210375069738, + 8.609293913437902, + 8.537211831209964, + 8.617245547741364, + 8.551973168708662, + 8.597793276539601, + 8.419935628034558, + 8.602332397583082, + 8.542380108464195, + 8.62948104558528, + 8.68941298918896, + 8.407889499832418, + 8.480754395881476, + 8.795510824695338, + 8.653340559244237, + 8.420387868096523, + 8.605874963605213, + 8.61813661999695, + 8.563608389104337, + 8.577587495760133, + 8.313464737595751, + 8.468812340263915, + 8.467375368144484, + 8.494205881892618, + 8.343156185187189, + 8.210431370644729, + 8.28619902956091, + 8.191693139440604, + 8.466854009305964, + 8.155279095276203, + 8.296592789599995, + 8.485088597582067, + 8.392858139663758, + 8.374043478150377, + 8.19375825932926, + 8.38563397604334, + 8.32213634014671, + 8.328284124636927, + 8.312706279693558, + 8.339694893089645, + 8.368853723577619, + 8.144706178685084, + 8.675514149130011, + 8.418435548290411, + 8.297189952030918, + 8.297262139173899, + 8.1926858471769, + 8.239626465763507, + 8.276700106295149, + 8.23285680010142, + 8.286194287429112, + 8.167604786638087, + 8.228701490794505, + 8.151274628355884, + 8.235142121535961, + 8.143202244770759, + 8.051562015647068, + 8.146603093406075, + 7.920431272961593, + 8.13178260939825, + 7.9892042864384285, + 7.9854684177, + 8.088805096594964, + 8.074154483045298, + 8.026050196581176, + 8.26602003907861, + 8.113060031673882, + 8.17554683805471, + 8.281999614454, + 8.053028534811462, + 7.869179116634188, + 8.01624951630875, + 7.952657956876646, + 7.957691149080132, + 8.227806671543798, + 7.904116692390914, + 8.23047460916359, + 7.91557272990376, + 7.939632175200207, + 7.830410713172911, + 7.8993716305306965, + 7.931439933026046, + 7.881692161519448, + 8.093253425719402, + 8.021319801915658, + 8.000416388238733, + 7.7969426635446455, + 7.696751861891389, + 7.914122930423054, + 7.8836245563040634, + 7.844591921080811, + 7.895199920873476, + 7.789692267239523, + 7.874795671930658, + 7.752600555935429, + 7.749148204368589, + 7.8063331524406125, + 7.803648273613303, + 7.618562015358977, + 7.745624205128055, + 7.483620252803816, + 7.775806052466433, + 7.707393455381229, + 7.8990506106237675, + 7.566258638174545, + 7.470210043937772, + 7.564493446991932, + 7.582813710320146, + 7.767031051400888, + 7.6768609429771, + 7.580652659391668, + 7.62794229287089, + 7.583060559609748, + 7.485607505614475, + 7.589469950342606, + 7.607055417524715, + 7.4275819597575, + 7.393726106400709, + 7.590969960079799, + 7.464486834305595, + 7.423139655264582, + 7.376309257513345, + 7.4404169352153, + 7.461372397127103, + 7.485047011357004, + 7.493437596988153, + 7.26543312120662, + 7.4111520519909035, + 7.286919977220816, + 7.308609029535505, + 7.430025145932944, + 7.210061712255819, + 7.4046478261076185, + 7.29439338314693, + 7.309023906911211, + 7.453982004552547, + 7.209355763004388, + 7.349910373611003, + 7.088183112396044, + 7.352365271727121, + 7.192397829913996, + 7.0381904661243055, + 6.942047222101205, + 7.288812897409482, + 7.121709409261538, + 7.041634640799931, + 7.023007651909467, + 6.886859510503389, + 7.3081242083898275, + 6.930986534347855, + 6.9801456320597834, + 7.040643311959677, + 6.99334949218677, + 7.205670142245792, + 7.080568613928736, + 7.092431764202233, + 6.930798828413827, + 6.959098897109024, + 6.930291680129981, + 6.922411235694849, + 6.904049642656592, + 6.965676768985028, + 7.04541491941033, + 6.913879022574656, + 6.741585809776028, + 6.822063288051645, + 6.89500827800124, + 6.6146795661270295, + 6.701816543137895, + 6.771672482906946, + 6.549624821143705, + 6.748476887782255, + 6.868750891777639, + 6.731332599103433, + 6.803073840523746, + 6.798380371844305, + 6.770809671954822, + 6.7105826842971785, + 6.8613359692500415, + 6.677931091725415, + 6.657643405692436, + 6.5032855728799746, + 6.597213659214629, + 6.566114071473261, + 6.48390843665522, + 6.361047392298399, + 6.575738288482355, + 6.498727476861319, + 6.553294940232507, + 6.322484451063071, + 6.395425188792204, + 6.483732149796111, + 6.294860582157506, + 6.558417753272348, + 6.515190135497262, + 6.25670330381228, + 6.22665212418992, + 6.264722073517678, + 6.543730345298134, + 6.352652723313352, + 6.422994860043465, + 6.2857348365976975, + 6.2474663311673195, + 6.177708941078142, + 6.198852792639102, + 6.311098394722478, + 6.222486590466056, + 6.198519190496625, + 6.183555075042167, + 6.137796381674103, + 6.117825025080749, + 5.926052933921546, + 6.149656500291636, + 6.091906047080209, + 5.986700991011788, + 6.06455818292747, + 5.863739751020505, + 5.948562984019425, + 6.084838466664251, + 5.973820708539864, + 6.074324253990444, + 5.839543053303573, + 5.835149989711133, + 5.887360264064203, + 5.970615597661013, + 5.90642162968048, + 5.879649209713907, + 5.830972838065315, + 5.7221632763746, + 5.754580478661624, + 5.7609151630416715, + 5.876871204328194, + 5.616806213427429, + 5.779861287989402, + 5.686233298242926, + 5.751823848608464, + 5.650976477345954, + 5.7924954352136595, + 5.578387512589671, + 5.583554638048951, + 5.617306087335217, + 5.671714386545689, + 5.508694953393663, + 5.4682352575473105, + 5.6918063640919705, + 5.641440875048353, + 5.377741421427358, + 5.511804174368657, + 5.455648353052332, + 5.3836738807437925, + 5.416336884757699, + 5.557195982522466, + 5.383069887860448, + 5.401735427566153, + 5.367504206013882, + 5.535601115144763, + 5.289219473054435, + 5.405169594744219, + 5.46847865992071, + 5.414452517869822, + 5.258191232869015, + 5.131292584414181, + 5.21913897049942, + 5.168328818890622, + 5.019525486248972, + 5.184575961060659, + 5.145679268785056, + 5.161976661727091, + 5.08054657431108, + 5.230887529008824, + 4.983906244036291, + 4.948580160595456, + 5.041986683449216, + 5.0748987221032955, + 4.887551587931364, + 4.942748184145834, + 5.151053411924805, + 4.996524757543127, + 4.95804002619433, + 4.965839918274246, + 4.9309907400434225, + 4.972094508452391, + 5.050596154331875, + 4.981748032465187, + 4.887478433096182, + 4.8350612528796075, + 4.964607794347986, + 4.798525441789262, + 4.833998740198444, + 4.659795276171023, + 4.694401810586913, + 4.634609588772755, + 4.612017890502774, + 4.736992214137573, + 4.566331964988986, + 4.550886486802626, + 4.766198694839497, + 4.545597236193782, + 4.442021093897322, + 4.47227987398582, + 4.665348841426374, + 4.529259782849906, + 4.464639208615256, + 4.49344393327929, + 4.630332993934103, + 4.554086576355115, + 4.383762858218085, + 4.466801164809799, + 4.303330136018863, + 4.489311895376005, + 4.336734409042248, + 4.483935946270726, + 4.339132805023037, + 4.180711548296667, + 4.344237170425699, + 4.297071321074299, + 4.1489387141294625, + 4.305749486420286, + 4.415251439343285, + 4.102147361962853, + 4.0261825162027, + 4.148346748985248, + 4.077601809172024, + 4.30317134937292, + 4.272342739352261, + 4.190310519645683, + 4.095343255818985, + 4.076819545583134, + 4.092121492524911, + 4.034281825367541, + 4.168676485846359, + 4.097609541691574, + 4.006630328150119, + 4.1130195384160055, + 3.872396614161298, + 4.06530648544168, + 4.009568625679021, + 3.9466679889889593, + 3.996295465981117, + 3.7118525359475587, + 3.995123813379919, + 3.7197378922318807, + 3.756561615852815, + 3.7753457113930704, + 3.644509477960234, + 3.771912848829649, + 3.896667112721786, + 3.8217175571559983, + 3.8406045263344937, + 3.7744695224832827, + 3.6991631918024086, + 3.688912556485933, + 3.634654046894108, + 3.594700700766258, + 3.6593955350462104, + 3.70840644459434, + 3.59014143106371, + 3.6439132811526216, + 3.7239013449516496, + 3.6815180874593447, + 3.613640422369073, + 3.341013696538682, + 3.3617104120077825, + 3.564511551686087, + 3.4547613841760545, + 3.4793279391840786, + 3.5035073512483, + 3.3221533367237104, + 3.3317095822662344, + 3.5294196347273057, + 3.397976412774588, + 3.1269332033007182, + 3.5650356264983145, + 3.2014105639514887, + 3.3564311295431857, + 3.266858791161757, + 3.3135129223262716, + 3.2214471185576783, + 3.3112504002862195, + 3.255699670276414, + 3.227943572197699, + 3.2434325772300046, + 3.2120723139917735, + 3.276188138324484, + 3.1270791705915615, + 3.2795992973795682, + 3.190509384424364, + 3.029835913588483, + 3.03758777267593, + 3.1099229347435533, + 2.9429332717542005, + 3.205546545951017, + 3.148225328500263, + 2.9567345931113174, + 2.9603199798666857, + 2.9383260903582866, + 2.7816268110100713, + 2.7781867369799036, + 3.1437067670202636, + 3.160792640295102, + 2.8529839104006727, + 2.887410030212601, + 2.9083455280559685, + 2.8487763895054967, + 2.9885599008573713, + 2.8635753259203067, + 3.000465190260662, + 2.7862187185602467, + 2.797832061774674, + 2.7854987782125016, + 2.8158034321937655, + 2.6990469050564085, + 2.738805520586372, + 2.6638214125509085, + 2.596908226852678, + 2.6461060855840914, + 2.8214276448381344, + 2.7950619513544304, + 2.7186953507002873, + 2.5704649777002766, + 2.556265089450684, + 2.64723300009244, + 2.3192007851409193, + 2.5586186871870407, + 2.5698673742506553, + 2.41877030936848, + 2.6469019065663084, + 2.421792991373516, + 2.4242381501718486, + 2.6337746237646806, + 2.5818826591004265, + 2.4122396685125427, + 2.6380593201451186, + 2.485465617059132, + 2.3227745981442864, + 2.437531098424874, + 2.3749750760573862, + 2.3645168240848893, + 2.394508418816394, + 2.236087139050512, + 2.3205513582976813, + 2.223850726449302, + 2.3043116227898732, + 2.2551387681010073, + 2.1931977991546154, + 2.310083319154092, + 2.412487500290224, + 2.053948655183495, + 2.2277725027130755, + 2.1562107381290603, + 2.1031596671182053, + 2.337121084107963, + 2.3659731115761367, + 2.171168640337337, + 2.1152126284285218, + 2.056848624828037, + 2.0159870187549256, + 2.1481894650961926, + 2.0071101291583195, + 2.056869700862055, + 2.044401989275428, + 2.216813525799598, + 2.1033575542080136, + 2.0301356991405566, + 2.112700654328678, + 2.1019283871996275, + 2.1538015991151966, + 1.9987177488860493, + 1.80696178023781, + 1.859201364532253, + 1.9305895151802153, + 1.9395426075126567, + 1.8524743500023821, + 1.8823032281080285, + 1.8906737153820627, + 1.883515645031909, + 2.0347188022859486, + 1.84289378813094, + 1.8205934726662576, + 1.7049599787984335, + 1.8330734548170895, + 1.9960458810264345, + 1.6813306781787942, + 1.6014379908570726, + 1.6693121027804347, + 1.6390945060853834, + 1.6271888805016426, + 1.7216268492374602, + 1.8637746295274902, + 1.584081640412605, + 1.7442659972967414, + 1.8205215706013445, + 1.6701886284582244, + 1.535142745225747, + 1.6294988849804244, + 1.5481678767353826, + 1.4278960254817132, + 1.6080455947966759, + 1.6785066923290293, + 1.5563649790262686, + 1.618169932373829, + 1.776700712229932, + 1.6516219832386594, + 1.6886237651464515, + 1.48263925840475, + 1.6761861444248556, + 1.5284972915773418, + 1.4987453462050275, + 1.5299652434198796, + 1.4306878247701915, + 1.4593671159667783, + 1.4307525467244668, + 1.4829753698594645, + 1.4883883511862763, + 1.4517879779729292, + 1.4314548541045338, + 1.45091926583554, + 1.2962319909433355, + 1.435618647693712, + 1.3985405732658671, + 1.4225513644755214, + 1.4954577832848202, + 1.266976467153045, + 1.4975940322735615, + 1.400202292061955, + 1.2303818901276258, + 1.4911314342506499, + 1.3105308969530651, + 1.3505875915511711, + 1.2540314156254495, + 1.2571076717358842, + 1.2939958412151096, + 1.2686577094385587, + 1.2361390372577472, + 1.3128768809394313, + 1.1625383250055419, + 1.2675836263113187, + 1.1624334192995476, + 1.2837484009006053, + 1.3231665971232835, + 1.1054565267060792, + 1.1442588960172844, + 1.199567393952394, + 0.9749741088361223, + 1.2432147536259983, + 1.125942147837561, + 1.3216477418998362, + 1.110571749340513, + 1.1875778570654263, + 1.157324027066991, + 1.0091171250653408, + 1.0766615194210767, + 1.2050384151156617, + 1.0561893265063713, + 1.0546212318707167, + 1.04193587816391, + 1.2097469049308651, + 1.1560425598744335, + 1.056723887407005, + 1.1502264151872996, + 1.1310018794684376, + 1.174404774769452, + 1.129057232054358, + 1.0413445663267389, + 1.2806316431387845, + 1.2061817353055624, + 1.0203889816080474, + 1.0783237634206124, + 1.158873358600372, + 1.0660433983891924, + 1.02126385479594, + 1.1251831411353135, + 1.1482855457409369, + 0.9278521860769274, + 0.7151995370702058, + 0.8802250313811122, + 0.9864220789078759, + 1.0062067769081968, + 0.9454451075343792, + 1.00564205584572, + 0.975478521977288, + 0.742637053293329, + 1.1327872029856714, + 1.081642221423344, + 0.855744538718457, + 0.9378954544204308, + 0.9291354077468835, + 0.8936291139308465, + 1.008595729047582, + 1.0392308001988653, + 0.9294754247591451, + 1.1212227584369185, + 0.7059050657973667, + 1.054397630042206, + 0.9691127749362514, + 0.8584933945048636, + 0.8008486478215392, + 1.0392013577974613, + 0.8091025969625407, + 0.9184945512875693, + 0.825767386837305, + 0.809877320705298, + 0.7823898565700629, + 0.8735815460206302, + 0.7304330541851309, + 0.7153514146110106, + 1.0562836417354728, + 0.8603249269202778, + 0.9311824743551921, + 0.8541250346172683, + 0.743611949718107, + 0.8395856431596265, + 0.9082759997911883, + 0.8061832662825922, + 0.7924590441133352, + 0.8161525760784679, + 0.8244937473678592, + 1.049075106724794, + 0.8448829423181901, + 0.8288480778408522, + 0.8393686174534475, + 0.7812332157099502, + 0.7952989744901208, + 0.5943699417160289, + 0.8528927580443403, + 0.9438049559636326, + 0.5791513553092711, + 0.7437426530598039, + 0.9003721087220456, + 0.9564224656764422, + 0.8777590303334795, + 0.8511076485261364, + 0.9016650180573452, + 0.7043032564147981, + 0.8447990841861126, + 0.8481298862390111, + 0.7238475150916894, + 0.8415904203740271, + 0.8995025761387069, + 0.7171235814356418, + 0.7325103359752667, + 0.8448810243657842, + 0.9493185969809101, + 0.8324194108890918, + 0.9578422275408462, + 0.710670379903751, + 0.7661557234302839, + 0.6586719053833221, + 0.710951225945743, + 0.7928916215560076, + 0.8408996891020932, + 0.636412035445045, + 0.6987666667540662, + 0.9285967597694953, + 0.6198174023994475, + 0.808174349148242, + 0.7848406400609077, + 0.8438392674017514, + 0.6472985866635756, + 0.7723351868717775, + 0.8064050503280621, + 0.8782820122163832, + 0.7974702235395418, + 0.7153555167419223, + 0.6320712453551669, + 0.7178902803903444, + 0.7679105918951432, + 0.5547399460705449, + 0.7519756091518092, + 0.9441561363947317, + 0.6591378000671596, + 0.7719278395783266, + 0.661801096113238, + 0.6923800175036018, + 0.7967341038982738, + 0.6932216469811702, + 0.6669166117594418, + 0.8316806221457563, + 0.9216180815216639, + 0.5512431653897318, + 0.9817700268869752, + 0.7354784343928263, + 0.7832234607858781, + 0.7646323735830837, + 0.8715151347859368, + 0.915521806025591, + 0.7567766219543456, + 1.0105208589523005, + 0.6395311661565262, + 0.7766662690001587, + 1.0146694150441813, + 0.7357240377852623, + 0.7947053777898956, + 0.8878252504289796, + 0.6258829732835044, + 0.8858237763145093, + 0.8669771468127174, + 0.9379895448858904, + 0.974217465797053, + 0.7266370964413578, + 0.879423346927094, + 0.9722573243679135, + 0.8512988524668776, + 0.905644834894777, + 0.980772208156389, + 0.9509981561407408, + 0.8212396373024324, + 0.865590257478447, + 0.9130448096086469, + 0.9129408347108101, + 0.8867027852531267, + 0.9329810497093036, + 1.115240504644314, + 1.150977003078265, + 1.2551319362424924, + 1.024799271510005, + 0.9901865285876856, + 0.9834225720125158, + 0.9401305257020369, + 1.046297908021617, + 0.9814354829205107, + 1.0574039380383204, + 0.8903297866072422, + 1.0298343053111574, + 1.0384842220133064, + 1.086593364968391, + 1.1041944106504051, + 1.0002293612912851, + 1.1757505715082497, + 1.1773534963168644, + 1.0596342349982164, + 1.3056863789228934, + 1.146071133341445, + 0.9249036873716396, + 0.9249177192645756, + 1.0808243961027961, + 1.0298993917224768, + 1.009946797023968, + 1.0559874568752161, + 0.8543644965958819, + 0.9536628820666558, + 1.0854372808905213, + 1.1408523134263766, + 1.2177881622071451, + 1.2675802297823773, + 1.2080698790360056, + 0.9485374232468309, + 0.908282976716114, + 1.1476905433330853, + 1.1918910300906334, + 1.150890721247504, + 1.1334448270752087, + 1.2185633718552966, + 1.2775548201430222, + 1.1416990143813937, + 1.2561361620593627, + 1.2757234263580035, + 1.1808321502335157, + 1.0855063749478688, + 1.1220790794807838, + 1.4634065107579548, + 1.4745380592899713, + 1.3181091514886039, + 1.315859795080936, + 1.3647854319973802, + 1.2945245479664769, + 1.246635185762316, + 1.344513900145601, + 1.2307533047420047, + 1.4055462696501726, + 1.517981944182722, + 1.381745407103, + 1.562031412278366, + 1.4090344282555167, + 1.458886890726804, + 1.2209056248386398, + 1.4473424937711632, + 1.436839945907332, + 1.6414563093778574, + 1.4657929575659552, + 1.415183043291338, + 1.2295882397282476, + 1.5080265583320227, + 1.5796139240575273, + 1.427616313356318, + 1.5070930514244185, + 1.5980995865119587, + 1.4712836726208103, + 1.612684749936382, + 1.3862180735631673, + 1.599198687708602, + 1.4783350753202298, + 1.8055224462364983, + 1.5770989060300045, + 1.6205384879551459, + 1.7760236677811876, + 1.5159018300717946, + 1.5262594380815502, + 1.5184119424437283, + 1.5823896148887544, + 1.5544266118610093, + 1.5112389477893182, + 1.7855494524224322, + 1.7043417259630722, + 1.652754520223931, + 1.6439573563112166, + 1.693092185173068, + 1.8172718653821842, + 1.8925111609637326, + 1.7145232169655908, + 1.8773254847455136, + 1.754594414238517, + 1.8135430346003754, + 1.9105444750159362, + 1.7944272269493435, + 1.7558549136515358, + 1.970806507871177, + 2.0051297355509012, + 1.8773844268816593, + 1.7926700907604223, + 1.681095891283573, + 1.9613676222414889, + 1.7676635568219834, + 1.7712887346418615, + 1.942797001953773, + 1.912875685355791, + 2.052472898794309, + 1.9008985169854562, + 1.9281887825182888, + 1.9484350247981332, + 2.1862621333293806, + 2.00903365535605, + 1.933769996825501, + 2.1902847632358218, + 2.174927465786434, + 2.0236720764234555, + 2.110110413708142, + 2.104167359828298, + 2.054131724316198, + 2.2210429120862587, + 2.175830727222826, + 2.209077068043028, + 2.3573817048306953, + 2.317064523266411, + 2.2605772277174636, + 2.1055678463989485, + 2.2538318084567934, + 2.304598535733616, + 2.284254895292552, + 2.4470699151884836, + 2.2734405386817467, + 2.190254404404414, + 2.297343576497232, + 2.2384833100562216, + 2.369149503856645, + 2.274159023087321, + 2.2005962199633258, + 2.2583505443585894, + 2.413040861651856, + 2.3287422520127214, + 2.3997139031378207, + 2.3164568606947413, + 2.490323097308691, + 2.441186610396892, + 2.4271651949454167, + 2.479967645683419, + 2.384402683432309, + 2.454625290656525, + 2.5742302464797593, + 2.4736041882404907, + 2.4162156821029885, + 2.533348479984093, + 2.4826893730422666, + 2.783338208440029, + 2.5346298885030176, + 2.7215503675512607, + 2.6152470474408074, + 2.5344382089783215, + 2.516804434275895, + 2.64793296765406, + 2.5994996551036773, + 2.6469856318575906, + 2.731297764323092, + 2.8147450815688564, + 2.7953806621496264, + 2.7822262107188642, + 2.8745112589904336, + 2.7465770722474034, + 2.7859259325885146, + 2.6794743728157977, + 2.740394691637005, + 3.0397667118889653, + 2.869176711771175, + 3.0390577548429567, + 3.000163283142334, + 2.8958026816746867, + 2.761086641336384, + 3.0139420076977768, + 2.8483794573589374, + 2.8848869890254396, + 2.796788145762076, + 3.0423755057744857, + 2.83553334835665, + 3.0240797950402802, + 3.2303824912762495, + 3.2391646555519045, + 2.9883281969633146, + 3.1665297570491466, + 3.02194786024863, + 2.914536453825833, + 3.1259993459570268, + 2.9709550706804038, + 3.266643036685512, + 3.075552033038489, + 3.1068517406656726, + 3.164059437757398, + 3.4177403209263497, + 3.2529372340191136, + 3.303999372378974, + 3.287450241170179, + 3.399333880614817, + 3.3774743597031756, + 3.1781998689600064, + 3.378859137658663, + 3.3899722038648075, + 3.4773830379011783, + 3.5340309943314967, + 3.513270497847195, + 3.456086556355857, + 3.4041631974574127, + 3.6072448758201188, + 3.4115503506450695, + 3.4156325642280527, + 3.5287753647321427, + 3.4003991335483814, + 3.632668696767884, + 3.4400195196422136, + 3.3037880479541375, + 3.6696194884179, + 3.7391695016191817, + 3.655112614016616, + 3.6557940203795942, + 3.5544992178416823, + 3.793437895487318, + 3.8093013539251808, + 3.6265525893694064, + 3.605299379520271, + 3.6396500511624015, + 3.7352055953842394, + 3.7215841597109818, + 3.973154368370428, + 3.6572872871286584, + 3.828397285962858, + 4.004824581016399, + 3.932396895807185, + 3.8742376869440576, + 3.933621222813715, + 3.9146091391147504, + 3.8858907371208256, + 3.993404234846579, + 4.021601009272832, + 3.810333461536678, + 4.129800455291836, + 4.202291192949274, + 4.03900842240961, + 3.9297130595646954, + 4.016792230154151, + 3.9927007481624, + 3.8928530533475048, + 4.089255704881038, + 3.9895590532486156, + 4.187671291261547, + 4.327167196036251, + 4.264471982679598, + 4.229525479257943, + 4.240917171896855, + 4.153237459631894, + 4.2445786291816106, + 4.3125495307745005, + 4.372508653658162, + 4.501225180426832, + 4.5776207665754125, + 4.424742923511155, + 4.374832880078727, + 4.598953319858013, + 4.419014807491228, + 4.431401886592644, + 4.484974886881149, + 4.467277496086744, + 4.570114768079795, + 4.5286745858044295, + 4.808078381999795, + 4.551214902537134, + 4.3843722315029705, + 4.603310358900533, + 4.642290689685521, + 4.759064807733524, + 4.560950403654459, + 4.651178833051667, + 4.673738609315881, + 4.670367832889562, + 4.666169311438688, + 4.584050995318546, + 4.864966826693769, + 4.563198355902552, + 4.704424773700684, + 4.997559911231416, + 4.787908124086872, + 4.826785122732009, + 4.818024121297287, + 5.003214617960037, + 4.97354809444922, + 4.876845374834445, + 4.690589841435976, + 5.128338204637025, + 5.136267578980282, + 5.093152025865897, + 5.069485794859968, + 4.9421126694614195, + 4.877841127775346, + 4.896294030181714, + 4.9978905279535955, + 5.047509938142099, + 5.113983667304098, + 5.035712173211443, + 5.056583003537136, + 4.984478517449636, + 5.118801222665248, + 5.251657818219029, + 5.369826950026171, + 5.323911064816796, + 5.303406752492243, + 5.225990785869631, + 5.244800895123659, + 5.395253145688468, + 5.364415888853219, + 5.0657100943033395, + 5.252837176828482, + 5.304167698337504, + 5.30087581158517, + 5.5493750118849405, + 5.403928011568048, + 5.230431799557107, + 5.400324771780247, + 5.240510177570953, + 5.266180193495707, + 5.484368283163158, + 5.431221477104026, + 5.595633252535114, + 5.552490276482313, + 5.550709232756012, + 5.4101631211762635, + 5.588213440197957, + 5.633170070209934, + 5.475341658776353, + 5.4759675556190075, + 5.593832969649825, + 5.841127346869727, + 5.615797559991092, + 5.796688666249292, + 5.776030834443728, + 5.750922511985816, + 5.6941975058292975, + 5.7467382619795035, + 5.748033255355459, + 5.755385896629453, + 5.9224278619806014, + 5.904314776606517, + 5.724863600382402, + 5.990361113675799, + 5.852385874219333, + 5.825700568601835, + 5.791586381804701, + 5.832326238286607, + 5.991823211170808, + 6.066249383018652, + 6.0287265720871765, + 6.0525033243128314, + 6.126199944556719, + 6.027605463610887, + 6.047486212387356, + 6.284937817323954, + 6.052927305584413, + 5.951152309376767, + 6.284766902953889, + 6.119227123820017, + 6.166967688712238, + 6.247490307095765, + 6.18178768340642, + 6.277214704402322, + 6.240816410884015, + 6.405053904483402, + 6.328422179787144, + 6.346125728566622, + 6.4396677539937555, + 6.2954832219736, + 6.282186460706948, + 6.298888925728721, + 6.3922519757140694, + 6.233376980247602, + 6.22169922212838, + 6.302420940162292, + 6.5372858020459965, + 6.464256818946957, + 6.328465774901397, + 6.504081961154879, + 6.281284169478935, + 6.412541143232666, + 6.614317080580373, + 6.420155096698693, + 6.622954105384821, + 6.545537745592823, + 6.618010907395524, + 6.585450036536243, + 6.554986807598583, + 6.729471405617793, + 6.472031334930971, + 6.636720365671091, + 6.64933385084659, + 6.737953342943376, + 6.704136440378964, + 6.758061562742009, + 6.81421369853226, + 6.700283451272346, + 6.8251623376991795, + 6.765109685078818, + 6.821757964779621, + 6.8453186723227075, + 6.8740128551796795, + 6.889571518395172, + 6.784264908686309, + 6.903400414998107, + 6.927960678809131, + 7.073642239233398, + 6.705274140319377, + 6.932630629557739, + 6.9146627959463975, + 6.821350364340276, + 6.889378491838835, + 6.880338663157552, + 6.996158686354168, + 7.060376965027383, + 6.93027457420733, + 6.95805778578555, + 7.008366549313551, + 7.232946207664767, + 6.902229560268434, + 7.133522573049287, + 7.292306538137872, + 7.179983288869326, + 7.1358710135437375, + 7.40787416760522, + 7.224768219251233, + 6.936840502634782, + 7.210370357135896, + 7.23886083846091, + 7.265356800630051, + 7.368835546742687, + 7.174491623825366, + 7.25344098848744, + 7.258690972266446, + 7.250704881355589, + 7.314912180756715, + 7.309999496321457, + 7.339601181558831, + 7.213066920255656, + 7.218138166203255, + 7.382680016760252, + 7.411963160808794, + 7.64366842228809, + 7.372546009493806, + 7.2213238481331645, + 7.600764875636083, + 7.474141391667456, + 7.439045377862478, + 7.502380718144541, + 7.408147096668163, + 7.420832710587518, + 7.598314136668038, + 7.452352338840034, + 7.479123193652499, + 7.705329534311119, + 7.64326065420996, + 7.541801506879375, + 7.666535609001353, + 7.4190799770697415, + 7.67444305232883, + 7.589437203292179, + 7.560385995821016, + 7.424638319297916, + 7.551273465405705, + 7.604817972130234, + 7.7504256006352295, + 7.658299695496137, + 7.656176630072214, + 7.5847906690088385, + 7.853930032414976, + 7.7127833272958, + 7.542816464699517, + 7.758104708894892, + 7.80892246500832, + 7.69571454259381, + 7.809181784239052, + 7.934734674576977, + 7.959522280845811, + 7.807823952352508, + 7.7729085066478705, + 7.9043930100437905, + 7.9821110684972165, + 7.886674482583754, + 7.84831670995253, + 7.960439398616455, + 7.752314768984588, + 8.020626705607077, + 7.830943460581084, + 7.805613905910411, + 7.873384216559047, + 8.23703133384774, + 7.901138949900289, + 7.964807579753144, + 7.897358219996282, + 8.021618917752129, + 7.982617761219668, + 8.000745855344473, + 8.02693308342184, + 7.967219202415582, + 8.101249932453003, + 8.384996516349604, + 7.9381998795929025, + 8.1277203041969, + 8.117402463840378, + 8.023566308708231, + 8.28210417881401, + 8.147742151367277, + 8.159143440914011, + 8.252929516887711, + 8.023642740972178, + 8.14197682250965, + 8.171957272554629, + 8.081075784670194, + 8.368002455816585, + 8.264303275199532, + 8.345084408413486, + 8.227725351535831, + 8.316930293382123, + 8.465452023629398, + 8.425629628353025, + 8.03353152026178, + 8.346225669213405, + 8.334547628105923, + 8.24580603013339, + 8.263984623740642, + 8.102847631790713, + 8.309330557955168, + 8.178838621857865, + 8.384273458086309, + 8.170814299806933, + 8.344613399055214, + 8.378267651179108, + 8.390644840459204, + 8.506099642333464, + 8.497830722342355, + 8.294061058099848, + 8.276622669954497, + 8.30111830343335, + 8.450995155683994, + 8.386146523721694, + 8.384741019396698, + 8.240901383953197, + 8.600742523628309, + 8.347721656137482, + 8.386875353263912, + 8.42017208865011, + 8.536176240197475, + 8.386694005281436, + 8.382793771581701, + 8.611089064328146, + 8.628517150210335, + 8.457293405961135, + 8.387122375448918, + 8.36928990945504, + 8.524157826772246, + 8.499818399217597, + 8.564280276494731, + 8.679324443854538, + 8.747026984733107, + 8.566233961907253, + 8.517175306873558, + 8.526489188621914, + 8.548935425028892, + 8.507625331541584, + 8.789269009297177, + 8.375107083877436, + 8.585440641486548, + 8.388267429645161, + 8.528524578983522, + 8.570186488125328, + 8.645493831299067, + 8.648695979086948, + 8.69199060191929, + 8.652222790743496, + 8.871443463921285, + 8.71552669670923, + 8.578442239490926, + 8.77227372320011, + 8.90719200615346, + 8.621370839048682, + 8.61019162389743, + 8.76538391887382, + 8.694098020032486, + 8.727138598360796, + 8.655491445769464, + 8.708353383249689, + 8.958394302061116, + 8.842566010541672, + 8.810354369396958, + 8.602045787719774, + 8.705736391657442, + 8.715133825968168, + 8.602220860043031, + 8.942633132444788, + 8.7873516996937, + 8.864925627685562, + 8.728172669527344, + 8.669146399226326, + 8.692975171102912, + 8.776289334506641, + 8.837587424685896, + 8.87458742904756, + 8.697520958095946, + 8.731763726943823, + 8.671396692524004, + 8.787339317323083, + 8.679928278846877, + 8.969954073971671, + 8.528141339787112, + 8.639034187727244, + 8.711390122822557, + 8.808040146752216, + 8.813403593431312, + 8.766121581585438, + 8.971945051294798, + 8.804900524144418, + 8.775787454777527, + 8.786553287077366, + 8.636092411923395, + 8.768616877210627, + 8.871085088121752, + 8.829556906783875, + 8.846302972935067, + 8.749983813756865, + 8.843026930853, + 8.907516046343316, + 8.798026024117991, + 8.737404293491382, + 8.721104780278742, + 8.888019266897237, + 8.882402656241547, + 8.76583270848969, + 8.76097468991197, + 8.77818136570175, + 8.773242221119542, + 8.755023838951422, + 8.835935803005187, + 8.670507147502933, + 8.707102966715231, + 8.855275811782686, + 8.832328246437344, + 8.743917161337903, + 8.89458029792449, + 8.865831954976471, + 8.749445058838798, + 8.744406072897256, + 8.738737117077445, + 8.71666809145185, + 8.875668716241536, + 8.71841284212601, + 8.640745296174984, + 8.688443243767784, + 8.649916430044351, + 8.683731092663926, + 8.897969682199067, + 8.597457102058987, + 8.779031582277307, + 8.66388609991304, + 8.839735629861282, + 8.724477691608246, + 8.746552262020733, + 8.903034091899828, + 8.847728201923678, + 8.916338610648703, + 8.871560751827547, + 8.590893355939846, + 8.915834672394924, + 8.765928456684605, + 8.711235743709956, + 8.898531901448296, + 8.680104662590383, + 8.748022044037254, + 8.905713168738567, + 8.686282387631852, + 8.768452311177143, + 8.870336452255266, + 8.835261915934463, + 8.701494726790866, + 8.551200957602687, + 8.832447068886175, + 8.720615442718728, + 8.785055370490056, + 8.794807064019746, + 8.792587483004812, + 8.68161526803848, + 8.808205088280442, + 8.650455127205218, + 8.64660295457553, + 8.66670244250251, + 8.635823433049191, + 8.692627252144426, + 8.63262424783324, + 8.725211963807475, + 8.493246483853788, + 8.71290286585649, + 8.665514073138176, + 8.585981539037554, + 8.536700984837584, + 8.640099420401013, + 8.720680490589032, + 8.530685530862344, + 8.671576886325965, + 8.71862270525322, + 8.446509212828671, + 8.685152068121361, + 8.555681599433697, + 8.66089579501961, + 8.547341236579202, + 8.596173700403334, + 8.463079016377906, + 8.651244531885434, + 8.710618867136121, + 8.476843372328666, + 8.564896125734068, + 8.790715854874602, + 8.571810105046712, + 8.529131041452786, + 8.445444057639795, + 8.606953550539394, + 8.58483976587775, + 8.43752755260131, + 8.648353235721716, + 8.657520827418995, + 8.408608413863979, + 8.453264546367935, + 8.311186222472564, + 8.640938883043097, + 8.258772686969026, + 8.407611409201207, + 8.616811526797237, + 8.415593123696068, + 8.696249505329142, + 8.480672351915755, + 8.433099024309042, + 8.445531733152874, + 8.43599625327322, + 8.61194313893425, + 8.476777871955234, + 8.533983187951835, + 8.304231286698101, + 8.522140013819183, + 8.510668300649671, + 8.445306035810002, + 8.37250857665855, + 8.293694781410462, + 8.353942971001334, + 8.299645460944259, + 8.412448297074715, + 8.363820607368533, + 8.122565524972154, + 8.335213035170305, + 8.239850717482934, + 8.19893518950673, + 8.495707036154919, + 8.351647737358885, + 8.375675666895306, + 8.438375898723558, + 8.20556845560111, + 8.337595841612817, + 8.338060657966022, + 8.265262789117486, + 8.11572054400053, + 8.202814996222095, + 8.312838564255559, + 8.219677413546199, + 8.264131216227822, + 8.227135000306232, + 8.22953136092989, + 8.124960213853075, + 8.255958172038907, + 8.212865971612931, + 8.165198672428323, + 8.245556697214916, + 8.224433917145221, + 8.064759077204194, + 7.855679902297017, + 8.212827233345987, + 8.115293295177427, + 8.03761191453007, + 7.900765019792304, + 8.113646263224277, + 7.963954730420771, + 7.982566264427949, + 7.858730269570258, + 7.94939681896869, + 8.107277040316973, + 8.087640524584042, + 8.107401599272855, + 8.013235529760125, + 7.952779670610705, + 7.9453822903591105, + 7.872452769527096, + 8.028445526014806, + 8.153980209394778, + 8.07823520924408, + 7.798415062440483, + 7.964872057233751, + 7.946672829906262, + 7.809626715455789, + 7.884828536450267, + 8.030565963575562, + 7.812727761167263, + 7.707465224124633, + 7.906226818951598, + 7.957138202075416, + 7.7717804837301125, + 8.030287163694748, + 7.794870862983616, + 7.713640631466888, + 7.757258692614951, + 7.759106118250963, + 7.682423871944164, + 7.812274539590729, + 7.772206994300591, + 7.608359358193507, + 7.716177112905318, + 7.83227930004017, + 7.669618439595092, + 7.719892267096504, + 7.422619602015511, + 7.664131699853238, + 7.464100633966607, + 7.677862384272114, + 7.536921696024065, + 7.832687443367472, + 7.367654199764607, + 7.582118983637946, + 7.51734677532013, + 7.515319710304556, + 7.619998757841557, + 7.3915443210209455, + 7.408579105765985, + 7.341720219474958, + 7.407216222711466, + 7.333495103266726, + 7.537070666874219, + 7.387470482009537, + 7.403864215755866, + 7.3342964630290215, + 7.308974365547819, + 7.443448493341924, + 7.5682472066830835, + 7.240732935069201, + 7.303572130628149, + 7.174745802260922, + 7.206123072783384, + 7.156831007333573, + 7.259043627882382, + 7.301036984881848, + 7.329263758309274, + 7.1174981569578915, + 7.087883802068099, + 7.190710479350916, + 7.292510063032132, + 7.129531223858774, + 7.1746666083331325, + 6.9942090438214555, + 7.124212625623609, + 7.263477088403979, + 7.073758029169668, + 7.0397596267660445, + 6.948223448220146, + 7.066681459079934, + 7.029868279300034, + 7.024168282951636, + 7.133975188486715, + 6.964101606832404, + 7.087061226893505, + 7.049934034634514, + 6.938333589839067, + 6.813603783833363, + 6.942840056016192, + 6.776036302933712, + 6.894035040080681, + 6.906501002498862, + 6.729828103611534, + 6.846709131247159, + 6.698048429989633, + 6.786615063627328, + 6.825353259355831, + 6.8739515161601625, + 6.846151198521248, + 6.84735335785174, + 6.740143050788612, + 6.641616630648285, + 6.935014243669715, + 6.463973214188488, + 6.640496698626382, + 6.724229296830294, + 6.685525962578925, + 6.750519119853346, + 6.655195744143989, + 6.54038452106018, + 6.631080472070204, + 6.61709815823573, + 6.590505452095752, + 6.447579075287994, + 6.735391642141467, + 6.627677031698446, + 6.529174206719646, + 6.377514957620419, + 6.593185200813594, + 6.413014779768996, + 6.511531370961436, + 6.423328490179972, + 6.474568937996035, + 6.409517640408429, + 6.245226798919738, + 6.2622084315208095, + 6.321635457850896, + 6.309711577122413, + 6.192106689930659, + 6.243282547494843, + 6.273712455459767, + 6.315028367565838, + 6.182667065153787, + 6.111679412637695, + 6.173040763733816, + 6.11216634587771, + 6.086414450425139, + 6.040676223701359, + 5.996571409906326, + 6.063360960969382, + 5.984305356033809, + 5.971962522307066, + 6.023069239121584, + 6.018779770827956, + 6.085661010727932, + 6.160926533956973, + 5.861415991694703, + 5.891143294581129, + 5.983316878396175, + 6.0467723838866325, + 5.96717193707589, + 5.9182180044575565, + 5.911756754378571, + 5.812642206821868, + 6.087001476924057, + 5.824910663154154, + 5.986871566253654, + 5.733306385751179, + 5.60549754414614, + 5.8112438698492905, + 5.901030592997477, + 5.866664744354527, + 5.777731683431569, + 5.703718866487563, + 5.680223442867759, + 5.859643188311872, + 5.765768782686978, + 5.613128745367878, + 5.684096655824238, + 5.433884069633194, + 5.64808223030638, + 5.604902877665732, + 5.475736212764105, + 5.6028322825074985, + 5.492467232440567, + 5.517782986350597, + 5.521975209586676, + 5.41921551657984, + 5.328125975919696, + 5.495948566381703, + 5.4096105062950475, + 5.2932485191368155, + 5.3000161170704265, + 5.614189560280335, + 5.356945886325406, + 5.53131524368123, + 5.380506920428308, + 5.257441623254816, + 5.2608886059372635, + 5.308757739258651, + 5.1117319906929835, + 5.163286209746383, + 5.264299003517297, + 5.215997238709705, + 5.15290640170477, + 5.072282623252871, + 5.268103222279371, + 5.07687361391675, + 5.176878534661341, + 5.0417920898436215, + 5.235028855797067, + 4.922041158814274, + 4.9423092710991625, + 5.20362763773939, + 5.150303896214158, + 5.011471504653272, + 4.8882537588639785, + 4.841454411853041, + 4.8913762059745265, + 4.972633361610208, + 4.892957201487015, + 4.8168869065476185, + 5.160599051311109, + 4.842293046254569, + 4.711404406302025, + 4.677996952553031, + 4.759809852327343, + 4.678480318813567, + 4.918654178392888, + 4.603165693154302, + 4.637673130636649, + 4.703186274463535, + 4.699829401719723, + 4.899250438602675, + 4.57842700299905, + 4.8807387877872745, + 4.617064853578253, + 4.689224265789487, + 4.620626466312354, + 4.718593815188933, + 4.6282899582422665, + 4.4995568940406585, + 4.566385970199404, + 4.633717560413752, + 4.4239855287880765, + 4.5124565915609205, + 4.358931787667508, + 4.508980008949592, + 4.330322460687815, + 4.47426905797159, + 4.448870494646938, + 4.398281057073983, + 4.289614854089714, + 4.259204340756375, + 4.3026906993510154, + 4.17261917498705, + 4.3140518894888595, + 4.34439899083967, + 4.249474760728944, + 4.237569212378405, + 4.19093807470701, + 4.278040897178804, + 4.046558773433663, + 4.21955846340968, + 4.062216695028978, + 4.29352070326813, + 4.111003901670621, + 4.188109773844974, + 4.145864445714763, + 4.018600207494924, + 3.9362881884873917, + 3.9958913944277885, + 4.108691113535967, + 3.9760977635598698, + 3.8542691809192977, + 4.004427879916085, + 3.973295572984206, + 3.9261530065195624, + 3.987888533385738, + 3.9436701808071004, + 3.7687729673575294, + 3.7361316705475898, + 3.996867529393174, + 3.768070649136275, + 3.746780475877659, + 3.6644485755733265, + 3.625752394000095, + 3.730177384702256, + 3.8046558915402366, + 3.7505557843950434, + 3.627633180856526, + 3.760907124597847, + 3.7241460507833835, + 3.6877432932239227, + 3.6735506987377162, + 3.5650615179325746, + 3.5516137109120978, + 3.503053208037928, + 3.6830793192578137, + 3.616183358486702, + 3.586262268934162, + 3.4278217940899194, + 3.4685120697589364, + 3.3626114583746456, + 3.4241779481727694, + 3.419758043952726, + 3.4348549607815086, + 3.4394610147335527, + 3.264871091972676, + 3.2498752617377367, + 3.4351831837885154, + 3.2031272928932677, + 3.314449430178234, + 3.2892989462740307, + 3.3661591600738916, + 3.39530196900609, + 3.2753614057650813, + 3.1223737717133364, + 3.4337634250905897, + 3.0994354512613955, + 3.303207991884387, + 3.1750298939244104, + 3.195259821371113, + 3.2736908509462617, + 3.1935288682229532, + 3.0823713421608403, + 3.1334695589955524, + 3.2033736377374713, + 2.9136002137894157, + 3.1067328795990066, + 3.196572375799116, + 3.0258444475408632, + 3.1168581147927523, + 3.0119164998763925, + 3.080455247411123, + 2.9112031076352607, + 2.921315882102005, + 2.8774380752769817, + 2.79289061111265, + 2.8966511463746185, + 2.9409982756885094, + 2.986371479482418, + 2.9095486324139763, + 2.7927513164544577, + 2.9635395169333707, + 2.800638582493324, + 2.945378637843656, + 2.9902119068230246, + 2.908937386593953, + 2.8286475711188754, + 2.5451584623454986, + 2.75538607117029, + 2.7432168691966794, + 2.5494064557016753, + 2.856535857329022, + 2.59271560895053, + 2.6813674278939477, + 2.589760338135398, + 2.6790050934088163, + 2.672788826340386, + 2.7164735295846487, + 2.631310565490974, + 2.544396522194305, + 2.5838672898909083, + 2.489780582757776, + 2.6669109393579755, + 2.453610002066248, + 2.4851875294606245, + 2.550472321850967, + 2.3118600239929137, + 2.4575346502032387, + 2.4200723212350574, + 2.496173185113953, + 2.3597309008173273, + 2.5073287883602844, + 2.386636677743844, + 2.294635934301648, + 2.361417994804734, + 2.266174289131653, + 2.3158393243051867, + 2.3351162639957064, + 2.235702276917784, + 2.374449212532283, + 2.3039379234283945, + 2.172880963178396, + 2.3358915233000594, + 2.187527217118645, + 2.186210324425917, + 2.147781277863164, + 2.0939488389655025, + 2.2253867311137543, + 2.222710674442734, + 2.302602302942987, + 2.174414397060721, + 2.263628766547308, + 2.0118729763864396, + 1.971974715694461, + 2.180123194075866, + 2.0547669537227433, + 2.138349480722598, + 2.0304991264639645, + 2.184518913805648, + 2.1611898493019877, + 2.0522669939316347, + 2.015915845421251, + 2.0744432461865254, + 2.0266032061178905, + 1.9201052234250704, + 1.9639377424427997, + 2.033811236104935, + 1.869152773283246, + 1.938155088636599, + 2.036207836617803, + 1.9462482184737324, + 1.895938466623678, + 1.9057467842263724, + 1.7502435243701508, + 1.7841840920966405, + 1.7999971820196907, + 1.5183991626309097, + 1.6925549915593174, + 1.735926583866584, + 1.8109504943387769, + 1.8290504766545261, + 1.6759087306575406, + 1.6123462862893292, + 1.8704510526313478, + 1.7498127224552316, + 1.806761609821772, + 1.746188101659651, + 1.5617203938688442, + 1.68095658023906, + 1.7188708397931314, + 1.7468857570884468, + 1.6003376033632397, + 1.6656114366464982, + 1.5773360986329004, + 1.4713702410665164, + 1.7439710722955593, + 1.7546533431998939, + 1.6298034734447766, + 1.6730459629087457, + 1.453600580650706, + 1.6379899214681828, + 1.4504699023495484, + 1.6453574778114906, + 1.3603715280191757, + 1.7520893393081967, + 1.5431936970725215, + 1.6535920616008302, + 1.3272463376188328, + 1.5466651968929501, + 1.581153276865843, + 1.4877180032317652, + 1.5997970727491322, + 1.5979380737598503, + 1.494036456732539, + 1.5380819261140024, + 1.4460507062975365, + 1.2044596169364563, + 1.4459927618796993, + 1.3735560094184494, + 1.4642058559927051, + 1.3309005233846904, + 1.2690519698739033, + 1.1849930241780284, + 1.4659986710521145, + 1.170337460588321, + 1.0596852652059736, + 1.3566855018850188, + 1.3932894374517257, + 1.3094677183751302, + 1.3638511097641024, + 1.378843913806473, + 1.1694838405644665, + 1.3538989665465828, + 1.3035410385609398, + 1.2004369167000564, + 1.0804810106040106, + 1.2452462046987085, + 1.247130424428051, + 1.2634199207305918, + 1.3004359605216578, + 1.3052752890520964, + 1.3299704796465848, + 0.9488796058362294, + 1.286184397441315, + 1.1544926738483838, + 0.9298692020941293, + 1.2678101628592326, + 1.2251717010895762, + 1.1287193728741205, + 1.3343537221333694, + 1.1026897385086212, + 1.052075033551709, + 1.1748956720826236, + 1.0999321720796327, + 0.9464681128382104, + 1.0620758735103442, + 1.01807386787533, + 1.0438275776627952, + 0.8736590332695514, + 1.1293429388169203, + 0.9426122257376386, + 1.0313637187994655, + 1.0580402383259835, + 1.035819241023205, + 1.0125188174752966, + 1.1229865655750058, + 0.9249263712975209, + 0.8746944113763626, + 0.9825952857963267, + 1.2073915194093148, + 0.8425508766312444, + 0.9988289157930174, + 0.9788988484133627, + 0.9852058846638199, + 1.073557673597891, + 1.0398702807064082, + 0.9432149764006882, + 0.9216012156141404, + 0.9034304003139888, + 0.9950227172035281, + 0.9481833028184798, + 0.9754330436461595, + 0.848865379766605, + 0.9139780910450235, + 0.9890817395900634, + 0.75092440848293, + 1.0094326018906168, + 0.9414237837345474, + 0.9702849326750758, + 0.8664380616955337, + 0.906125707722643, + 0.8574270440051149, + 0.9535212667776456, + 0.9262597574303332, + 0.847723201020052, + 0.8527850473803108, + 0.8000618495982664, + 0.8082147369304806, + 0.6920194924866827, + 1.0155865442785204, + 0.8714234587059662, + 0.8559882922473808, + 0.74562773642966, + 0.719002715303107, + 1.1165479319766778, + 0.9840229171436872, + 0.8921797954505818, + 0.82076781832185, + 0.8775312931731569, + 0.906086274441662, + 0.9042402794463164, + 0.6693743238264586, + 1.0221017423376186, + 0.9804314779315214, + 0.8376776231234692, + 0.7011263089460015, + 0.9229993457838598, + 0.8431788948436726, + 0.9199372573586605, + 0.7563854876860974, + 0.9239429502194336, + 0.9205995079803948, + 0.6691078374384865, + 0.6553838760331271, + 0.754967113622118, + 0.851110712789291, + 0.8093894089256941, + 0.7521680208404606, + 0.8278315222371826, + 0.6683422822319093, + 0.7376518621825358, + 0.8905983853159792, + 0.7079309380455022, + 0.6527320554617116, + 0.8412348696434467, + 0.8279648353714546, + 0.7538802232765832, + 0.7851246159679236, + 0.8584047124827814, + 0.8222626884583802, + 0.7986566250373092, + 0.8555419134662181, + 0.7432638599357618, + 0.7971963418089018, + 0.9518043517032674, + 0.6299681703694242, + 0.6567433511214139, + 0.8937742064877872, + 0.6394258012101517, + 0.885164852221368, + 0.8433665909259834, + 0.9368103291564396, + 0.7121309657078411, + 0.787244051742829, + 0.7294840713944768, + 0.84485674407305, + 0.6596400270972087, + 0.7284221627071319, + 0.9858064536926425, + 0.7331358029759278, + 0.7947703026024776, + 0.7255175590750131, + 0.7622828845972618, + 0.8011391714692824, + 0.8249519715189059, + 0.8263194099032143, + 0.9238955641510835, + 0.7322031846314057, + 0.8697524869988505, + 0.7322855837332759, + 0.9661324373371931, + 1.058672782648572, + 1.0374496713900112, + 0.8526476762523097, + 0.7239907714983553, + 0.8508283567589605, + 0.8126806000267949, + 0.8963250701587784, + 0.8347347277534073, + 0.9064937286291235, + 0.9197832631253573, + 0.7686870903671985, + 0.8346290951496068, + 0.8517958115026937, + 1.0021404692257565, + 0.7762130348347427, + 1.030360609001688, + 1.0350666091970215, + 0.7209938075131497, + 0.7015038081677665, + 0.965255679558432, + 0.8856565664867596, + 0.7833652506578282, + 0.7669971564194527, + 0.781116443362717, + 0.843318286733034, + 0.9158462518431171, + 0.8218655638304797, + 0.6809113998802157, + 0.9703679846050969, + 1.1289262058063234, + 0.8287283658454128, + 0.9473321340268555, + 0.9629724181036812, + 0.9944468594569723, + 0.8920840286012205, + 1.052918763079413, + 0.9045252720497665, + 0.8466936875291375, + 1.0192084960379932, + 1.1051308806777134, + 1.143543171825753, + 0.9617831245645225, + 0.7842091540731214, + 1.0263661902633971, + 1.0512184676803056, + 0.9697222575381432, + 1.0208385858961726, + 1.064603405574823, + 0.9743153504801819, + 1.1125888200465825, + 1.0159932945613053, + 0.9972595208352283, + 1.1495427823326045, + 1.0676448475144027, + 1.1924605075177368, + 0.9103109855751307, + 1.0679279387706229, + 1.1275406705345203, + 1.0367541918260483, + 0.9492467154854923, + 1.0220260082030161, + 1.078347024962357, + 1.067549292281294, + 1.0602689423542084, + 1.1726427507250978, + 1.0356133761360147, + 1.2239880177173728, + 1.1489524950757948, + 1.1148885477670154, + 1.1221252073706183, + 1.0830607624652917, + 1.120988785121826, + 1.2325769603667778, + 1.1130334252474092, + 1.2968500579253128, + 1.2581123704256172, + 1.122575580724311, + 1.0198799900351645, + 1.2436077507409922, + 1.2791811808415265, + 1.1759700018894055, + 1.2840131216437385, + 1.1829706388725545, + 1.2914069395457133, + 1.280496424457322, + 1.2644175482939342, + 1.193214002546663, + 1.202486732940091, + 1.3552024365765627, + 1.3041071109683242, + 1.3463923228538988, + 1.1346651329336543, + 1.2579006088428506, + 1.4448233422690988, + 1.5971316076001014, + 1.3724158495954761, + 1.5191687812788128, + 1.4431031230234446, + 1.4870972622263383, + 1.4732861659452132, + 1.376421195374951, + 1.3349512564562933, + 1.2653955061845148, + 1.4273542963388681, + 1.5467059531772955, + 1.311045213054943, + 1.4664036032126295, + 1.3237893296667955, + 1.4955862975917324, + 1.489714452824157, + 1.399946899542816, + 1.3631247761204943, + 1.6265371289399075, + 1.4626347988867094, + 1.3391724097645596, + 1.570150802841429, + 1.3741248555979246, + 1.573495429280206, + 1.547135613032709, + 1.7905900105689323, + 1.6298799305622766, + 1.6133385504572861, + 1.559599323276775, + 1.548711237485439, + 1.469207779942856, + 1.5609941284975803, + 1.582764910987249, + 1.6798207736601154, + 1.7596099027630858, + 1.7694544887305534, + 1.7198613230414663, + 1.8375932037309461, + 1.7275683063105693, + 1.7588713479633489, + 1.7294033166923135, + 1.6042831186239035, + 1.7530888994303053, + 1.7331186520099964, + 1.8844266090697417, + 1.929772173061992, + 1.8667609697068628, + 1.9152937478169982, + 2.009364061663321, + 1.9656675845679559, + 1.8425542992160837, + 2.0001767359484486, + 2.0098614434196946, + 1.9296425025423511, + 1.846070452272969, + 2.0634205343687073, + 1.8712188168025035, + 1.9067351598955125, + 1.8321599936319275, + 2.079315659500688, + 2.0507866521455655, + 2.068064727719399, + 1.9344199589846658, + 2.0845606255744964, + 2.1430332716919143, + 2.19393887907911, + 2.138144065301732 + ] + }, + { + "mode": "lines", + "name": "var1", + "type": "scatter", + "x": [ + "2019-01-01T00:02:42.000000000", + "2019-01-01T00:02:59.000000000", + "2019-01-01T00:04:03.000000000", + "2019-01-01T00:04:24.000000000", + "2019-01-01T00:05:47.000000000", + "2019-01-01T00:06:20.000000000", + "2019-01-01T00:06:54.000000000", + "2019-01-01T00:07:44.000000000", + "2019-01-01T00:07:47.000000000", + "2019-01-01T00:07:55.000000000", + "2019-01-01T00:11:11.000000000", + "2019-01-01T00:12:34.000000000", + "2019-01-01T00:14:15.000000000", + "2019-01-01T00:15:26.000000000", + "2019-01-01T00:15:55.000000000", + "2019-01-01T00:16:54.000000000", + "2019-01-01T00:17:26.000000000", + "2019-01-01T00:18:13.000000000", + "2019-01-01T00:18:32.000000000", + "2019-01-01T00:20:11.000000000", + "2019-01-01T00:20:40.000000000", + "2019-01-01T00:24:09.000000000", + "2019-01-01T00:24:38.000000000", + "2019-01-01T00:25:34.000000000", + "2019-01-01T00:26:16.000000000", + "2019-01-01T00:28:27.000000000", + "2019-01-01T00:28:42.000000000", + "2019-01-01T00:29:14.000000000", + "2019-01-01T00:32:11.000000000", + "2019-01-01T00:32:18.000000000", + "2019-01-01T00:32:45.000000000", + "2019-01-01T00:34:28.000000000", + "2019-01-01T00:34:36.000000000", + "2019-01-01T00:35:03.000000000", + "2019-01-01T00:35:18.000000000", + "2019-01-01T00:36:00.000000000", + "2019-01-01T00:36:17.000000000", + "2019-01-01T00:36:24.000000000", + "2019-01-01T00:38:59.000000000", + "2019-01-01T00:41:06.000000000", + "2019-01-01T00:41:33.000000000", + "2019-01-01T00:41:48.000000000", + "2019-01-01T00:44:17.000000000", + "2019-01-01T00:44:51.000000000", + "2019-01-01T00:44:56.000000000", + "2019-01-01T00:47:19.000000000", + "2019-01-01T00:47:28.000000000", + "2019-01-01T00:47:29.000000000", + "2019-01-01T00:47:47.000000000", + "2019-01-01T00:48:43.000000000", + "2019-01-01T00:49:34.000000000", + "2019-01-01T00:51:50.000000000", + "2019-01-01T00:52:27.000000000", + "2019-01-01T00:53:52.000000000", + "2019-01-01T00:54:55.000000000", + "2019-01-01T00:57:00.000000000", + "2019-01-01T00:57:40.000000000", + "2019-01-01T00:58:07.000000000", + "2019-01-01T01:00:33.000000000", + "2019-01-01T01:00:36.000000000", + "2019-01-01T01:00:59.000000000", + "2019-01-01T01:03:43.000000000", + "2019-01-01T01:04:12.000000000", + "2019-01-01T01:04:52.000000000", + "2019-01-01T01:05:42.000000000", + "2019-01-01T01:05:45.000000000", + "2019-01-01T01:07:39.000000000", + "2019-01-01T01:07:43.000000000", + "2019-01-01T01:10:13.000000000", + "2019-01-01T01:10:43.000000000", + "2019-01-01T01:11:03.000000000", + "2019-01-01T01:11:25.000000000", + "2019-01-01T01:12:01.000000000", + "2019-01-01T01:12:30.000000000", + "2019-01-01T01:15:29.000000000", + "2019-01-01T01:15:42.000000000", + "2019-01-01T01:16:23.000000000", + "2019-01-01T01:16:36.000000000", + "2019-01-01T01:18:40.000000000", + "2019-01-01T01:18:44.000000000", + "2019-01-01T01:21:30.000000000", + "2019-01-01T01:22:31.000000000", + "2019-01-01T01:23:29.000000000", + "2019-01-01T01:23:41.000000000", + "2019-01-01T01:27:51.000000000", + "2019-01-01T01:27:54.000000000", + "2019-01-01T01:27:58.000000000", + "2019-01-01T01:28:34.000000000", + "2019-01-01T01:29:07.000000000", + "2019-01-01T01:31:55.000000000", + "2019-01-01T01:32:20.000000000", + "2019-01-01T01:33:18.000000000", + "2019-01-01T01:34:22.000000000", + "2019-01-01T01:34:33.000000000", + "2019-01-01T01:35:06.000000000", + "2019-01-01T01:35:12.000000000", + "2019-01-01T01:36:18.000000000", + "2019-01-01T01:36:26.000000000", + "2019-01-01T01:38:28.000000000", + "2019-01-01T01:39:00.000000000", + "2019-01-01T01:39:53.000000000", + "2019-01-01T01:40:42.000000000", + "2019-01-01T01:42:50.000000000", + "2019-01-01T01:42:52.000000000", + "2019-01-01T01:43:40.000000000", + "2019-01-01T01:46:57.000000000", + "2019-01-01T01:47:56.000000000", + "2019-01-01T01:49:05.000000000", + "2019-01-01T01:49:08.000000000", + "2019-01-01T01:50:34.000000000", + "2019-01-01T01:51:35.000000000", + "2019-01-01T01:52:38.000000000", + "2019-01-01T01:52:48.000000000", + "2019-01-01T01:53:36.000000000", + "2019-01-01T01:55:22.000000000", + "2019-01-01T01:57:54.000000000", + "2019-01-01T01:58:37.000000000", + "2019-01-01T02:00:16.000000000", + "2019-01-01T02:00:30.000000000", + "2019-01-01T02:00:32.000000000", + "2019-01-01T02:01:51.000000000", + "2019-01-01T02:02:14.000000000", + "2019-01-01T02:02:49.000000000", + "2019-01-01T02:04:11.000000000", + "2019-01-01T02:06:21.000000000", + "2019-01-01T02:08:03.000000000", + "2019-01-01T02:08:26.000000000", + "2019-01-01T02:08:35.000000000", + "2019-01-01T02:09:18.000000000", + "2019-01-01T02:09:45.000000000", + "2019-01-01T02:10:01.000000000", + "2019-01-01T02:10:28.000000000", + "2019-01-01T02:10:50.000000000", + "2019-01-01T02:11:23.000000000", + "2019-01-01T02:12:37.000000000", + "2019-01-01T02:12:51.000000000", + "2019-01-01T02:13:07.000000000", + "2019-01-01T02:13:42.000000000", + "2019-01-01T02:18:18.000000000", + "2019-01-01T02:20:15.000000000", + "2019-01-01T02:20:58.000000000", + "2019-01-01T02:23:27.000000000", + "2019-01-01T02:24:09.000000000", + "2019-01-01T02:25:07.000000000", + "2019-01-01T02:25:45.000000000", + "2019-01-01T02:27:48.000000000", + "2019-01-01T02:30:26.000000000", + "2019-01-01T02:31:48.000000000", + "2019-01-01T02:32:34.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:33:18.000000000", + "2019-01-01T02:33:49.000000000", + "2019-01-01T02:36:02.000000000", + "2019-01-01T02:37:39.000000000", + "2019-01-01T02:38:55.000000000", + "2019-01-01T02:39:30.000000000", + "2019-01-01T02:39:33.000000000", + "2019-01-01T02:40:05.000000000", + "2019-01-01T02:40:54.000000000", + "2019-01-01T02:41:40.000000000", + "2019-01-01T02:41:49.000000000", + "2019-01-01T02:43:24.000000000", + "2019-01-01T02:44:04.000000000", + "2019-01-01T02:44:45.000000000", + "2019-01-01T02:44:48.000000000", + "2019-01-01T02:45:01.000000000", + "2019-01-01T02:48:17.000000000", + "2019-01-01T02:49:20.000000000", + "2019-01-01T02:49:50.000000000", + "2019-01-01T02:50:18.000000000", + "2019-01-01T02:50:31.000000000", + "2019-01-01T02:51:59.000000000", + "2019-01-01T02:52:13.000000000", + "2019-01-01T02:52:16.000000000", + "2019-01-01T02:53:10.000000000", + "2019-01-01T02:57:45.000000000", + "2019-01-01T02:57:47.000000000", + "2019-01-01T02:58:12.000000000", + "2019-01-01T02:59:06.000000000", + "2019-01-01T02:59:08.000000000", + "2019-01-01T03:00:16.000000000", + "2019-01-01T03:01:18.000000000", + "2019-01-01T03:02:31.000000000", + "2019-01-01T03:02:50.000000000", + "2019-01-01T03:05:15.000000000", + "2019-01-01T03:06:30.000000000", + "2019-01-01T03:06:57.000000000", + "2019-01-01T03:07:04.000000000", + "2019-01-01T03:07:17.000000000", + "2019-01-01T03:07:30.000000000", + "2019-01-01T03:08:42.000000000", + "2019-01-01T03:09:36.000000000", + "2019-01-01T03:11:54.000000000", + "2019-01-01T03:12:40.000000000", + "2019-01-01T03:14:09.000000000", + "2019-01-01T03:16:10.000000000", + "2019-01-01T03:18:31.000000000", + "2019-01-01T03:19:42.000000000", + "2019-01-01T03:24:27.000000000", + "2019-01-01T03:27:10.000000000", + "2019-01-01T03:27:13.000000000", + "2019-01-01T03:31:09.000000000", + "2019-01-01T03:31:33.000000000", + "2019-01-01T03:32:06.000000000", + "2019-01-01T03:36:55.000000000", + "2019-01-01T03:37:00.000000000", + "2019-01-01T03:38:47.000000000", + "2019-01-01T03:38:57.000000000", + "2019-01-01T03:39:12.000000000", + "2019-01-01T03:49:46.000000000", + "2019-01-01T03:50:20.000000000", + "2019-01-01T03:50:31.000000000", + "2019-01-01T03:50:39.000000000", + "2019-01-01T03:50:45.000000000", + "2019-01-01T03:52:18.000000000", + "2019-01-01T03:52:40.000000000", + "2019-01-01T03:54:13.000000000", + "2019-01-01T03:54:49.000000000", + "2019-01-01T03:55:12.000000000", + "2019-01-01T03:55:41.000000000", + "2019-01-01T03:57:07.000000000", + "2019-01-01T03:57:15.000000000", + "2019-01-01T03:57:18.000000000", + "2019-01-01T03:58:25.000000000", + "2019-01-01T04:01:58.000000000", + "2019-01-01T04:02:15.000000000", + "2019-01-01T04:03:13.000000000", + "2019-01-01T04:04:04.000000000", + "2019-01-01T04:08:12.000000000", + "2019-01-01T04:08:27.000000000", + "2019-01-01T04:09:00.000000000", + "2019-01-01T04:09:33.000000000", + "2019-01-01T04:10:57.000000000", + "2019-01-01T04:13:39.000000000", + "2019-01-01T04:14:50.000000000", + "2019-01-01T04:15:23.000000000", + "2019-01-01T04:17:45.000000000", + "2019-01-01T04:19:42.000000000", + "2019-01-01T04:20:28.000000000", + "2019-01-01T04:21:00.000000000", + "2019-01-01T04:21:26.000000000", + "2019-01-01T04:22:36.000000000", + "2019-01-01T04:24:07.000000000", + "2019-01-01T04:24:29.000000000", + "2019-01-01T04:25:17.000000000", + "2019-01-01T04:26:29.000000000", + "2019-01-01T04:27:18.000000000", + "2019-01-01T04:27:19.000000000", + "2019-01-01T04:28:14.000000000", + "2019-01-01T04:28:40.000000000", + "2019-01-01T04:30:07.000000000", + "2019-01-01T04:30:17.000000000", + "2019-01-01T04:30:41.000000000", + "2019-01-01T04:33:18.000000000", + "2019-01-01T04:34:49.000000000", + "2019-01-01T04:35:36.000000000", + "2019-01-01T04:35:47.000000000", + "2019-01-01T04:35:57.000000000", + "2019-01-01T04:36:05.000000000", + "2019-01-01T04:36:10.000000000", + "2019-01-01T04:36:22.000000000", + "2019-01-01T04:36:37.000000000", + "2019-01-01T04:38:44.000000000", + "2019-01-01T04:39:22.000000000", + "2019-01-01T04:39:34.000000000", + "2019-01-01T04:40:33.000000000", + "2019-01-01T04:40:38.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:42:22.000000000", + "2019-01-01T04:43:26.000000000", + "2019-01-01T04:44:02.000000000", + "2019-01-01T04:44:24.000000000", + "2019-01-01T04:44:52.000000000", + "2019-01-01T04:44:59.000000000", + "2019-01-01T04:46:34.000000000", + "2019-01-01T04:48:35.000000000", + "2019-01-01T04:49:28.000000000", + "2019-01-01T04:49:44.000000000", + "2019-01-01T04:49:58.000000000", + "2019-01-01T04:50:34.000000000", + "2019-01-01T04:53:00.000000000", + "2019-01-01T04:53:34.000000000", + "2019-01-01T04:55:24.000000000", + "2019-01-01T04:55:28.000000000", + "2019-01-01T04:55:29.000000000", + "2019-01-01T04:56:18.000000000", + "2019-01-01T04:57:06.000000000", + "2019-01-01T04:57:11.000000000", + "2019-01-01T05:00:55.000000000", + "2019-01-01T05:01:46.000000000", + "2019-01-01T05:02:42.000000000", + "2019-01-01T05:03:21.000000000", + "2019-01-01T05:04:16.000000000", + "2019-01-01T05:04:24.000000000", + "2019-01-01T05:10:08.000000000", + "2019-01-01T05:11:57.000000000", + "2019-01-01T05:14:53.000000000", + "2019-01-01T05:14:58.000000000", + "2019-01-01T05:19:08.000000000", + "2019-01-01T05:20:27.000000000", + "2019-01-01T05:21:05.000000000", + "2019-01-01T05:21:15.000000000", + "2019-01-01T05:21:33.000000000", + "2019-01-01T05:25:05.000000000", + "2019-01-01T05:25:10.000000000", + "2019-01-01T05:25:39.000000000", + "2019-01-01T05:25:45.000000000", + "2019-01-01T05:26:35.000000000", + "2019-01-01T05:27:41.000000000", + "2019-01-01T05:30:44.000000000", + "2019-01-01T05:35:30.000000000", + "2019-01-01T05:35:32.000000000", + "2019-01-01T05:36:03.000000000", + "2019-01-01T05:36:07.000000000", + "2019-01-01T05:37:12.000000000", + "2019-01-01T05:39:00.000000000", + "2019-01-01T05:39:04.000000000", + "2019-01-01T05:39:37.000000000", + "2019-01-01T05:40:39.000000000", + "2019-01-01T05:41:45.000000000", + "2019-01-01T05:43:52.000000000", + "2019-01-01T05:45:07.000000000", + "2019-01-01T05:46:13.000000000", + "2019-01-01T05:48:40.000000000", + "2019-01-01T05:48:44.000000000", + "2019-01-01T05:49:17.000000000", + "2019-01-01T05:50:05.000000000", + "2019-01-01T05:50:11.000000000", + "2019-01-01T05:50:16.000000000", + "2019-01-01T05:50:31.000000000", + "2019-01-01T05:51:45.000000000", + "2019-01-01T05:52:21.000000000", + "2019-01-01T05:53:11.000000000", + "2019-01-01T05:55:59.000000000", + "2019-01-01T05:56:12.000000000", + "2019-01-01T05:56:35.000000000", + "2019-01-01T05:57:20.000000000", + "2019-01-01T05:57:49.000000000", + "2019-01-01T05:58:57.000000000", + "2019-01-01T05:59:12.000000000", + "2019-01-01T06:00:20.000000000", + "2019-01-01T06:00:21.000000000", + "2019-01-01T06:01:00.000000000", + "2019-01-01T06:02:23.000000000", + "2019-01-01T06:02:34.000000000", + "2019-01-01T06:02:38.000000000", + "2019-01-01T06:03:49.000000000", + "2019-01-01T06:05:10.000000000", + "2019-01-01T06:05:30.000000000", + "2019-01-01T06:07:32.000000000", + "2019-01-01T06:08:10.000000000", + "2019-01-01T06:09:35.000000000", + "2019-01-01T06:12:25.000000000", + "2019-01-01T06:12:26.000000000", + "2019-01-01T06:12:56.000000000", + "2019-01-01T06:13:03.000000000", + "2019-01-01T06:15:09.000000000", + "2019-01-01T06:15:28.000000000", + "2019-01-01T06:15:53.000000000", + "2019-01-01T06:16:56.000000000", + "2019-01-01T06:17:39.000000000", + "2019-01-01T06:18:20.000000000", + "2019-01-01T06:18:27.000000000", + "2019-01-01T06:18:56.000000000", + "2019-01-01T06:19:23.000000000", + "2019-01-01T06:19:35.000000000", + "2019-01-01T06:19:56.000000000", + "2019-01-01T06:20:07.000000000", + "2019-01-01T06:21:21.000000000", + "2019-01-01T06:21:26.000000000", + "2019-01-01T06:22:09.000000000", + "2019-01-01T06:23:56.000000000", + "2019-01-01T06:24:36.000000000", + "2019-01-01T06:25:11.000000000", + "2019-01-01T06:26:24.000000000", + "2019-01-01T06:27:47.000000000", + "2019-01-01T06:28:18.000000000", + "2019-01-01T06:29:14.000000000", + "2019-01-01T06:29:22.000000000", + "2019-01-01T06:30:42.000000000", + "2019-01-01T06:31:47.000000000", + "2019-01-01T06:31:51.000000000", + "2019-01-01T06:31:54.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:35:17.000000000", + "2019-01-01T06:35:30.000000000", + "2019-01-01T06:38:02.000000000", + "2019-01-01T06:39:21.000000000", + "2019-01-01T06:39:39.000000000", + "2019-01-01T06:40:15.000000000", + "2019-01-01T06:40:29.000000000", + "2019-01-01T06:41:55.000000000", + "2019-01-01T06:43:05.000000000", + "2019-01-01T06:43:25.000000000", + "2019-01-01T06:43:28.000000000", + "2019-01-01T06:45:16.000000000", + "2019-01-01T06:46:34.000000000", + "2019-01-01T06:47:08.000000000", + "2019-01-01T06:50:42.000000000", + "2019-01-01T06:51:23.000000000", + "2019-01-01T06:52:20.000000000", + "2019-01-01T06:52:24.000000000", + "2019-01-01T06:52:44.000000000", + "2019-01-01T06:52:47.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:55:08.000000000", + "2019-01-01T06:55:49.000000000", + "2019-01-01T06:56:28.000000000", + "2019-01-01T06:56:33.000000000", + "2019-01-01T06:57:51.000000000", + "2019-01-01T07:00:11.000000000", + "2019-01-01T07:01:31.000000000", + "2019-01-01T07:02:30.000000000", + "2019-01-01T07:04:06.000000000", + "2019-01-01T07:04:31.000000000", + "2019-01-01T07:05:15.000000000", + "2019-01-01T07:05:27.000000000", + "2019-01-01T07:05:49.000000000", + "2019-01-01T07:06:17.000000000", + "2019-01-01T07:06:26.000000000", + "2019-01-01T07:07:31.000000000", + "2019-01-01T07:09:21.000000000", + "2019-01-01T07:12:19.000000000", + "2019-01-01T07:12:26.000000000", + "2019-01-01T07:13:56.000000000", + "2019-01-01T07:15:03.000000000", + "2019-01-01T07:17:28.000000000", + "2019-01-01T07:18:04.000000000", + "2019-01-01T07:18:56.000000000", + "2019-01-01T07:19:21.000000000", + "2019-01-01T07:19:46.000000000", + "2019-01-01T07:20:31.000000000", + "2019-01-01T07:21:47.000000000", + "2019-01-01T07:24:25.000000000", + "2019-01-01T07:25:25.000000000", + "2019-01-01T07:25:42.000000000", + "2019-01-01T07:27:45.000000000", + "2019-01-01T07:30:45.000000000", + "2019-01-01T07:31:25.000000000", + "2019-01-01T07:31:33.000000000", + "2019-01-01T07:33:28.000000000", + "2019-01-01T07:35:13.000000000", + "2019-01-01T07:37:16.000000000", + "2019-01-01T07:40:34.000000000", + "2019-01-01T07:40:45.000000000", + "2019-01-01T07:40:56.000000000", + "2019-01-01T07:40:59.000000000", + "2019-01-01T07:41:00.000000000", + "2019-01-01T07:41:59.000000000", + "2019-01-01T07:42:38.000000000", + "2019-01-01T07:42:48.000000000", + "2019-01-01T07:42:52.000000000", + "2019-01-01T07:43:41.000000000", + "2019-01-01T07:44:49.000000000", + "2019-01-01T07:46:28.000000000", + "2019-01-01T07:48:34.000000000", + "2019-01-01T07:52:21.000000000", + "2019-01-01T07:52:59.000000000", + "2019-01-01T07:54:07.000000000", + "2019-01-01T07:55:16.000000000", + "2019-01-01T07:57:04.000000000", + "2019-01-01T07:58:08.000000000", + "2019-01-01T07:58:18.000000000", + "2019-01-01T07:58:55.000000000", + "2019-01-01T08:00:30.000000000", + "2019-01-01T08:04:08.000000000", + "2019-01-01T08:04:46.000000000", + "2019-01-01T08:05:49.000000000", + "2019-01-01T08:06:01.000000000", + "2019-01-01T08:06:54.000000000", + "2019-01-01T08:08:15.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:11:33.000000000", + "2019-01-01T08:11:47.000000000", + "2019-01-01T08:12:03.000000000", + "2019-01-01T08:12:53.000000000", + "2019-01-01T08:13:17.000000000", + "2019-01-01T08:13:31.000000000", + "2019-01-01T08:14:10.000000000", + "2019-01-01T08:15:24.000000000", + "2019-01-01T08:16:02.000000000", + "2019-01-01T08:16:30.000000000", + "2019-01-01T08:18:19.000000000", + "2019-01-01T08:18:51.000000000", + "2019-01-01T08:19:43.000000000", + "2019-01-01T08:20:02.000000000", + "2019-01-01T08:23:31.000000000", + "2019-01-01T08:24:37.000000000", + "2019-01-01T08:25:06.000000000", + "2019-01-01T08:25:19.000000000", + "2019-01-01T08:26:39.000000000", + "2019-01-01T08:27:52.000000000", + "2019-01-01T08:28:57.000000000", + "2019-01-01T08:29:44.000000000", + "2019-01-01T08:31:48.000000000", + "2019-01-01T08:32:26.000000000", + "2019-01-01T08:33:39.000000000", + "2019-01-01T08:34:11.000000000", + "2019-01-01T08:34:22.000000000", + "2019-01-01T08:35:40.000000000", + "2019-01-01T08:36:29.000000000", + "2019-01-01T08:37:39.000000000", + "2019-01-01T08:38:36.000000000", + "2019-01-01T08:40:08.000000000", + "2019-01-01T08:42:51.000000000", + "2019-01-01T08:43:20.000000000", + "2019-01-01T08:44:20.000000000", + "2019-01-01T08:44:52.000000000", + "2019-01-01T08:45:35.000000000", + "2019-01-01T08:49:10.000000000", + "2019-01-01T08:49:34.000000000", + "2019-01-01T08:49:36.000000000", + "2019-01-01T08:49:56.000000000", + "2019-01-01T08:50:29.000000000", + "2019-01-01T08:51:09.000000000", + "2019-01-01T08:51:37.000000000", + "2019-01-01T08:52:25.000000000", + "2019-01-01T08:52:39.000000000", + "2019-01-01T08:53:09.000000000", + "2019-01-01T08:55:15.000000000", + "2019-01-01T08:57:16.000000000", + "2019-01-01T08:57:29.000000000", + "2019-01-01T08:57:56.000000000", + "2019-01-01T08:59:55.000000000", + "2019-01-01T09:00:54.000000000", + "2019-01-01T09:01:24.000000000", + "2019-01-01T09:01:29.000000000", + "2019-01-01T09:02:12.000000000", + "2019-01-01T09:03:24.000000000", + "2019-01-01T09:04:03.000000000", + "2019-01-01T09:04:55.000000000", + "2019-01-01T09:05:05.000000000", + "2019-01-01T09:05:18.000000000", + "2019-01-01T09:06:33.000000000", + "2019-01-01T09:10:15.000000000", + "2019-01-01T09:13:49.000000000", + "2019-01-01T09:14:59.000000000", + "2019-01-01T09:16:48.000000000", + "2019-01-01T09:17:01.000000000", + "2019-01-01T09:17:06.000000000", + "2019-01-01T09:18:34.000000000", + "2019-01-01T09:19:35.000000000", + "2019-01-01T09:20:33.000000000", + "2019-01-01T09:20:53.000000000", + "2019-01-01T09:21:43.000000000", + "2019-01-01T09:24:16.000000000", + "2019-01-01T09:25:05.000000000", + "2019-01-01T09:25:44.000000000", + "2019-01-01T09:26:30.000000000", + "2019-01-01T09:27:13.000000000", + "2019-01-01T09:30:16.000000000", + "2019-01-01T09:30:19.000000000", + "2019-01-01T09:31:42.000000000", + "2019-01-01T09:32:19.000000000", + "2019-01-01T09:33:27.000000000", + "2019-01-01T09:33:44.000000000", + "2019-01-01T09:36:24.000000000", + "2019-01-01T09:37:53.000000000", + "2019-01-01T09:42:07.000000000", + "2019-01-01T09:43:32.000000000", + "2019-01-01T09:43:38.000000000", + "2019-01-01T09:44:02.000000000", + "2019-01-01T09:44:10.000000000", + "2019-01-01T09:44:55.000000000", + "2019-01-01T09:45:05.000000000", + "2019-01-01T09:45:12.000000000", + "2019-01-01T09:45:26.000000000", + "2019-01-01T09:45:47.000000000", + "2019-01-01T09:45:55.000000000", + "2019-01-01T09:49:15.000000000", + "2019-01-01T09:49:27.000000000", + "2019-01-01T09:50:02.000000000", + "2019-01-01T09:53:04.000000000", + "2019-01-01T09:53:19.000000000", + "2019-01-01T09:55:17.000000000", + "2019-01-01T09:56:17.000000000", + "2019-01-01T09:57:18.000000000", + "2019-01-01T09:59:07.000000000", + "2019-01-01T09:59:32.000000000", + "2019-01-01T10:00:22.000000000", + "2019-01-01T10:00:43.000000000", + "2019-01-01T10:01:05.000000000", + "2019-01-01T10:01:11.000000000", + "2019-01-01T10:02:19.000000000", + "2019-01-01T10:02:34.000000000", + "2019-01-01T10:03:22.000000000", + "2019-01-01T10:05:03.000000000", + "2019-01-01T10:05:16.000000000", + "2019-01-01T10:06:34.000000000", + "2019-01-01T10:07:02.000000000", + "2019-01-01T10:07:34.000000000", + "2019-01-01T10:07:48.000000000", + "2019-01-01T10:09:55.000000000", + "2019-01-01T10:11:45.000000000", + "2019-01-01T10:11:55.000000000", + "2019-01-01T10:13:39.000000000", + "2019-01-01T10:14:02.000000000", + "2019-01-01T10:14:28.000000000", + "2019-01-01T10:14:42.000000000", + "2019-01-01T10:15:32.000000000", + "2019-01-01T10:16:13.000000000", + "2019-01-01T10:16:48.000000000", + "2019-01-01T10:19:00.000000000", + "2019-01-01T10:20:20.000000000", + "2019-01-01T10:20:21.000000000", + "2019-01-01T10:23:57.000000000", + "2019-01-01T10:24:28.000000000", + "2019-01-01T10:24:37.000000000", + "2019-01-01T10:24:44.000000000", + "2019-01-01T10:25:54.000000000", + "2019-01-01T10:26:21.000000000", + "2019-01-01T10:27:11.000000000", + "2019-01-01T10:28:30.000000000", + "2019-01-01T10:28:45.000000000", + "2019-01-01T10:30:43.000000000", + "2019-01-01T10:30:49.000000000", + "2019-01-01T10:31:03.000000000", + "2019-01-01T10:31:15.000000000", + "2019-01-01T10:31:36.000000000", + "2019-01-01T10:33:12.000000000", + "2019-01-01T10:33:57.000000000", + "2019-01-01T10:34:00.000000000", + "2019-01-01T10:35:14.000000000", + "2019-01-01T10:36:35.000000000", + "2019-01-01T10:39:36.000000000", + "2019-01-01T10:40:55.000000000", + "2019-01-01T10:41:41.000000000", + "2019-01-01T10:43:05.000000000", + "2019-01-01T10:44:02.000000000", + "2019-01-01T10:44:08.000000000", + "2019-01-01T10:44:54.000000000", + "2019-01-01T10:45:19.000000000", + "2019-01-01T10:46:03.000000000", + "2019-01-01T10:48:55.000000000", + "2019-01-01T10:50:58.000000000", + "2019-01-01T10:52:13.000000000", + "2019-01-01T10:52:16.000000000", + "2019-01-01T10:53:07.000000000", + "2019-01-01T10:53:48.000000000", + "2019-01-01T10:56:09.000000000", + "2019-01-01T10:58:49.000000000", + "2019-01-01T11:00:22.000000000", + "2019-01-01T11:01:43.000000000", + "2019-01-01T11:02:27.000000000", + "2019-01-01T11:03:03.000000000", + "2019-01-01T11:07:06.000000000", + "2019-01-01T11:07:10.000000000", + "2019-01-01T11:07:25.000000000", + "2019-01-01T11:08:05.000000000", + "2019-01-01T11:09:36.000000000", + "2019-01-01T11:09:49.000000000", + "2019-01-01T11:10:16.000000000", + "2019-01-01T11:10:40.000000000", + "2019-01-01T11:12:01.000000000", + "2019-01-01T11:12:32.000000000", + "2019-01-01T11:15:09.000000000", + "2019-01-01T11:15:12.000000000", + "2019-01-01T11:15:25.000000000", + "2019-01-01T11:17:29.000000000", + "2019-01-01T11:17:36.000000000", + "2019-01-01T11:19:01.000000000", + "2019-01-01T11:19:02.000000000", + "2019-01-01T11:19:14.000000000", + "2019-01-01T11:21:30.000000000", + "2019-01-01T11:24:46.000000000", + "2019-01-01T11:27:17.000000000", + "2019-01-01T11:28:21.000000000", + "2019-01-01T11:29:12.000000000", + "2019-01-01T11:34:18.000000000", + "2019-01-01T11:34:31.000000000", + "2019-01-01T11:34:40.000000000", + "2019-01-01T11:35:04.000000000", + "2019-01-01T11:35:38.000000000", + "2019-01-01T11:36:31.000000000", + "2019-01-01T11:37:43.000000000", + "2019-01-01T11:38:29.000000000", + "2019-01-01T11:38:36.000000000", + "2019-01-01T11:39:09.000000000", + "2019-01-01T11:39:12.000000000", + "2019-01-01T11:40:07.000000000", + "2019-01-01T11:41:16.000000000", + "2019-01-01T11:42:45.000000000", + "2019-01-01T11:46:21.000000000", + "2019-01-01T11:47:04.000000000", + "2019-01-01T11:47:36.000000000", + "2019-01-01T11:48:19.000000000", + "2019-01-01T11:49:17.000000000", + "2019-01-01T11:49:18.000000000", + "2019-01-01T11:50:06.000000000", + "2019-01-01T11:53:01.000000000", + "2019-01-01T11:55:32.000000000", + "2019-01-01T11:56:24.000000000", + "2019-01-01T11:57:09.000000000", + "2019-01-01T11:58:11.000000000", + "2019-01-01T11:59:07.000000000", + "2019-01-01T12:00:23.000000000", + "2019-01-01T12:00:57.000000000", + "2019-01-01T12:01:02.000000000", + "2019-01-01T12:02:26.000000000", + "2019-01-01T12:03:34.000000000", + "2019-01-01T12:03:57.000000000", + "2019-01-01T12:04:16.000000000", + "2019-01-01T12:05:13.000000000", + "2019-01-01T12:05:14.000000000", + "2019-01-01T12:05:31.000000000", + "2019-01-01T12:06:43.000000000", + "2019-01-01T12:07:00.000000000", + "2019-01-01T12:07:30.000000000", + "2019-01-01T12:08:54.000000000", + "2019-01-01T12:10:19.000000000", + "2019-01-01T12:10:38.000000000", + "2019-01-01T12:13:42.000000000", + "2019-01-01T12:16:07.000000000", + "2019-01-01T12:16:40.000000000", + "2019-01-01T12:17:41.000000000", + "2019-01-01T12:19:36.000000000", + "2019-01-01T12:20:09.000000000", + "2019-01-01T12:21:43.000000000", + "2019-01-01T12:23:44.000000000", + "2019-01-01T12:24:01.000000000", + "2019-01-01T12:24:54.000000000", + "2019-01-01T12:25:03.000000000", + "2019-01-01T12:25:14.000000000", + "2019-01-01T12:27:02.000000000", + "2019-01-01T12:27:04.000000000", + "2019-01-01T12:27:05.000000000", + "2019-01-01T12:28:35.000000000", + "2019-01-01T12:30:16.000000000", + "2019-01-01T12:30:28.000000000", + "2019-01-01T12:31:24.000000000", + "2019-01-01T12:31:56.000000000", + "2019-01-01T12:32:56.000000000", + "2019-01-01T12:33:10.000000000", + "2019-01-01T12:33:13.000000000", + "2019-01-01T12:33:50.000000000", + "2019-01-01T12:33:52.000000000", + "2019-01-01T12:34:42.000000000", + "2019-01-01T12:34:53.000000000", + "2019-01-01T12:34:55.000000000", + "2019-01-01T12:37:05.000000000", + "2019-01-01T12:37:09.000000000", + "2019-01-01T12:37:18.000000000", + "2019-01-01T12:37:20.000000000", + "2019-01-01T12:38:21.000000000", + "2019-01-01T12:39:44.000000000", + "2019-01-01T12:41:04.000000000", + "2019-01-01T12:41:10.000000000", + "2019-01-01T12:42:13.000000000", + "2019-01-01T12:44:45.000000000", + "2019-01-01T12:45:49.000000000", + "2019-01-01T12:46:05.000000000", + "2019-01-01T12:47:29.000000000", + "2019-01-01T12:49:37.000000000", + "2019-01-01T12:49:46.000000000", + "2019-01-01T12:54:47.000000000", + "2019-01-01T12:55:29.000000000", + "2019-01-01T12:55:33.000000000", + "2019-01-01T12:56:29.000000000", + "2019-01-01T12:57:37.000000000", + "2019-01-01T12:58:24.000000000", + "2019-01-01T12:58:40.000000000", + "2019-01-01T12:59:24.000000000", + "2019-01-01T12:59:40.000000000", + "2019-01-01T13:03:16.000000000", + "2019-01-01T13:03:44.000000000", + "2019-01-01T13:03:48.000000000", + "2019-01-01T13:05:09.000000000", + "2019-01-01T13:07:52.000000000", + "2019-01-01T13:07:57.000000000", + "2019-01-01T13:09:20.000000000", + "2019-01-01T13:10:52.000000000", + "2019-01-01T13:11:08.000000000", + "2019-01-01T13:11:47.000000000", + "2019-01-01T13:12:00.000000000", + "2019-01-01T13:13:27.000000000", + "2019-01-01T13:14:00.000000000", + "2019-01-01T13:14:59.000000000", + "2019-01-01T13:15:00.000000000", + "2019-01-01T13:15:35.000000000", + "2019-01-01T13:16:56.000000000", + "2019-01-01T13:17:37.000000000", + "2019-01-01T13:19:10.000000000", + "2019-01-01T13:21:30.000000000", + "2019-01-01T13:25:09.000000000", + "2019-01-01T13:28:55.000000000", + "2019-01-01T13:30:52.000000000", + "2019-01-01T13:34:22.000000000", + "2019-01-01T13:34:53.000000000", + "2019-01-01T13:35:13.000000000", + "2019-01-01T13:35:42.000000000", + "2019-01-01T13:40:21.000000000", + "2019-01-01T13:40:27.000000000", + "2019-01-01T13:42:03.000000000", + "2019-01-01T13:43:09.000000000", + "2019-01-01T13:46:19.000000000", + "2019-01-01T13:47:09.000000000", + "2019-01-01T13:48:53.000000000", + "2019-01-01T13:48:57.000000000", + "2019-01-01T13:49:14.000000000", + "2019-01-01T13:50:03.000000000", + "2019-01-01T13:50:09.000000000", + "2019-01-01T13:50:51.000000000", + "2019-01-01T13:53:15.000000000", + "2019-01-01T13:54:31.000000000", + "2019-01-01T13:56:40.000000000", + "2019-01-01T13:56:51.000000000", + "2019-01-01T13:57:32.000000000", + "2019-01-01T13:59:12.000000000", + "2019-01-01T13:59:16.000000000", + "2019-01-01T13:59:27.000000000", + "2019-01-01T13:59:34.000000000", + "2019-01-01T14:00:18.000000000", + "2019-01-01T14:01:14.000000000", + "2019-01-01T14:02:10.000000000", + "2019-01-01T14:03:06.000000000", + "2019-01-01T14:03:53.000000000", + "2019-01-01T14:04:35.000000000", + "2019-01-01T14:04:51.000000000", + "2019-01-01T14:05:58.000000000", + "2019-01-01T14:08:36.000000000", + "2019-01-01T14:09:56.000000000", + "2019-01-01T14:10:53.000000000", + "2019-01-01T14:15:32.000000000", + "2019-01-01T14:16:13.000000000", + "2019-01-01T14:17:12.000000000", + "2019-01-01T14:18:24.000000000", + "2019-01-01T14:19:59.000000000", + "2019-01-01T14:22:21.000000000", + "2019-01-01T14:24:27.000000000", + "2019-01-01T14:25:43.000000000", + "2019-01-01T14:26:23.000000000", + "2019-01-01T14:26:24.000000000", + "2019-01-01T14:28:27.000000000", + "2019-01-01T14:28:55.000000000", + "2019-01-01T14:30:54.000000000", + "2019-01-01T14:32:53.000000000", + "2019-01-01T14:34:57.000000000", + "2019-01-01T14:35:39.000000000", + "2019-01-01T14:36:17.000000000", + "2019-01-01T14:36:44.000000000", + "2019-01-01T14:38:18.000000000", + "2019-01-01T14:38:32.000000000", + "2019-01-01T14:38:56.000000000", + "2019-01-01T14:38:58.000000000", + "2019-01-01T14:39:00.000000000", + "2019-01-01T14:40:20.000000000", + "2019-01-01T14:40:29.000000000", + "2019-01-01T14:40:51.000000000", + "2019-01-01T14:41:42.000000000", + "2019-01-01T14:42:58.000000000", + "2019-01-01T14:44:22.000000000", + "2019-01-01T14:44:30.000000000", + "2019-01-01T14:46:14.000000000", + "2019-01-01T14:47:00.000000000", + "2019-01-01T14:47:13.000000000", + "2019-01-01T14:47:25.000000000", + "2019-01-01T14:47:57.000000000", + "2019-01-01T14:48:48.000000000", + "2019-01-01T14:49:06.000000000", + "2019-01-01T14:49:08.000000000", + "2019-01-01T14:50:36.000000000", + "2019-01-01T14:52:05.000000000", + "2019-01-01T14:53:49.000000000", + "2019-01-01T14:54:06.000000000", + "2019-01-01T14:56:23.000000000", + "2019-01-01T14:56:42.000000000", + "2019-01-01T14:57:36.000000000", + "2019-01-01T14:57:43.000000000", + "2019-01-01T14:57:57.000000000", + "2019-01-01T14:58:03.000000000", + "2019-01-01T14:59:25.000000000", + "2019-01-01T15:00:00.000000000", + "2019-01-01T15:00:24.000000000", + "2019-01-01T15:01:28.000000000", + "2019-01-01T15:02:12.000000000", + "2019-01-01T15:04:11.000000000", + "2019-01-01T15:05:10.000000000", + "2019-01-01T15:07:47.000000000", + "2019-01-01T15:08:54.000000000", + "2019-01-01T15:09:08.000000000", + "2019-01-01T15:09:09.000000000", + "2019-01-01T15:09:35.000000000", + "2019-01-01T15:13:11.000000000", + "2019-01-01T15:13:13.000000000", + "2019-01-01T15:14:57.000000000", + "2019-01-01T15:16:27.000000000", + "2019-01-01T15:16:41.000000000", + "2019-01-01T15:18:36.000000000", + "2019-01-01T15:19:31.000000000", + "2019-01-01T15:20:11.000000000", + "2019-01-01T15:20:17.000000000", + "2019-01-01T15:20:44.000000000", + "2019-01-01T15:20:58.000000000", + "2019-01-01T15:21:58.000000000", + "2019-01-01T15:23:26.000000000", + "2019-01-01T15:24:24.000000000", + "2019-01-01T15:25:49.000000000", + "2019-01-01T15:29:16.000000000", + "2019-01-01T15:29:40.000000000", + "2019-01-01T15:30:14.000000000", + "2019-01-01T15:30:31.000000000", + "2019-01-01T15:30:39.000000000", + "2019-01-01T15:31:13.000000000", + "2019-01-01T15:31:30.000000000", + "2019-01-01T15:33:14.000000000", + "2019-01-01T15:33:17.000000000", + "2019-01-01T15:33:36.000000000", + "2019-01-01T15:36:46.000000000", + "2019-01-01T15:39:05.000000000", + "2019-01-01T15:39:07.000000000", + "2019-01-01T15:40:16.000000000", + "2019-01-01T15:40:52.000000000", + "2019-01-01T15:41:25.000000000", + "2019-01-01T15:41:44.000000000", + "2019-01-01T15:42:03.000000000", + "2019-01-01T15:44:27.000000000", + "2019-01-01T15:45:23.000000000", + "2019-01-01T15:45:33.000000000", + "2019-01-01T15:45:59.000000000", + "2019-01-01T15:47:36.000000000", + "2019-01-01T15:49:06.000000000", + "2019-01-01T15:49:37.000000000", + "2019-01-01T15:49:48.000000000", + "2019-01-01T15:50:04.000000000", + "2019-01-01T15:50:57.000000000", + "2019-01-01T15:51:18.000000000", + "2019-01-01T15:53:14.000000000", + "2019-01-01T15:53:45.000000000", + "2019-01-01T15:54:16.000000000", + "2019-01-01T15:55:00.000000000", + "2019-01-01T15:56:21.000000000", + "2019-01-01T15:56:46.000000000", + "2019-01-01T15:59:39.000000000", + "2019-01-01T15:59:56.000000000", + "2019-01-01T16:00:29.000000000", + "2019-01-01T16:02:27.000000000", + "2019-01-01T16:05:10.000000000", + "2019-01-01T16:07:52.000000000", + "2019-01-01T16:09:14.000000000", + "2019-01-01T16:11:39.000000000", + "2019-01-01T16:11:45.000000000", + "2019-01-01T16:12:55.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:15:44.000000000", + "2019-01-01T16:16:14.000000000", + "2019-01-01T16:17:53.000000000", + "2019-01-01T16:19:16.000000000", + "2019-01-01T16:19:27.000000000", + "2019-01-01T16:20:09.000000000", + "2019-01-01T16:20:35.000000000", + "2019-01-01T16:21:53.000000000", + "2019-01-01T16:22:55.000000000", + "2019-01-01T16:22:56.000000000", + "2019-01-01T16:23:03.000000000", + "2019-01-01T16:23:59.000000000", + "2019-01-01T16:24:08.000000000", + "2019-01-01T16:27:49.000000000", + "2019-01-01T16:30:02.000000000", + "2019-01-01T16:30:05.000000000", + "2019-01-01T16:30:21.000000000", + "2019-01-01T16:31:28.000000000", + "2019-01-01T16:31:32.000000000", + "2019-01-01T16:31:35.000000000", + "2019-01-01T16:33:36.000000000", + "2019-01-01T16:34:17.000000000", + "2019-01-01T16:35:13.000000000", + "2019-01-01T16:35:37.000000000", + "2019-01-01T16:37:25.000000000", + "2019-01-01T16:38:49.000000000", + "2019-01-01T16:40:37.000000000", + "2019-01-01T16:41:02.000000000", + "2019-01-01T16:42:07.000000000", + "2019-01-01T16:42:23.000000000", + "2019-01-01T16:42:34.000000000", + "2019-01-01T16:44:40.000000000", + "2019-01-01T16:49:09.000000000", + "2019-01-01T16:49:51.000000000", + "2019-01-01T16:50:15.000000000", + "2019-01-01T16:50:57.000000000", + "2019-01-01T16:52:39.000000000", + "2019-01-01T16:55:17.000000000", + "2019-01-01T16:55:32.000000000", + "2019-01-01T16:56:48.000000000", + "2019-01-01T16:58:06.000000000", + "2019-01-01T16:58:32.000000000", + "2019-01-01T16:59:18.000000000", + "2019-01-01T17:02:04.000000000", + "2019-01-01T17:02:39.000000000", + "2019-01-01T17:02:51.000000000", + "2019-01-01T17:03:15.000000000", + "2019-01-01T17:03:18.000000000", + "2019-01-01T17:04:25.000000000", + "2019-01-01T17:05:41.000000000", + "2019-01-01T17:06:44.000000000", + "2019-01-01T17:07:03.000000000", + "2019-01-01T17:07:08.000000000", + "2019-01-01T17:07:36.000000000", + "2019-01-01T17:09:05.000000000", + "2019-01-01T17:09:26.000000000", + "2019-01-01T17:09:43.000000000", + "2019-01-01T17:10:19.000000000", + "2019-01-01T17:10:36.000000000", + "2019-01-01T17:11:15.000000000", + "2019-01-01T17:11:23.000000000", + "2019-01-01T17:13:22.000000000", + "2019-01-01T17:13:47.000000000", + "2019-01-01T17:16:35.000000000", + "2019-01-01T17:17:39.000000000", + "2019-01-01T17:17:49.000000000", + "2019-01-01T17:20:36.000000000", + "2019-01-01T17:20:47.000000000", + "2019-01-01T17:21:11.000000000", + "2019-01-01T17:21:13.000000000", + "2019-01-01T17:22:58.000000000", + "2019-01-01T17:23:16.000000000", + "2019-01-01T17:25:10.000000000", + "2019-01-01T17:26:20.000000000", + "2019-01-01T17:26:47.000000000", + "2019-01-01T17:27:04.000000000", + "2019-01-01T17:27:33.000000000", + "2019-01-01T17:30:22.000000000", + "2019-01-01T17:30:46.000000000", + "2019-01-01T17:30:47.000000000", + "2019-01-01T17:30:52.000000000", + "2019-01-01T17:31:26.000000000", + "2019-01-01T17:34:21.000000000", + "2019-01-01T17:35:56.000000000", + "2019-01-01T17:37:02.000000000", + "2019-01-01T17:37:03.000000000", + "2019-01-01T17:39:10.000000000", + "2019-01-01T17:39:32.000000000", + "2019-01-01T17:39:34.000000000", + "2019-01-01T17:40:20.000000000", + "2019-01-01T17:40:49.000000000", + "2019-01-01T17:40:59.000000000", + "2019-01-01T17:41:25.000000000", + "2019-01-01T17:42:05.000000000", + "2019-01-01T17:45:43.000000000", + "2019-01-01T17:46:31.000000000", + "2019-01-01T17:46:37.000000000", + "2019-01-01T17:47:33.000000000", + "2019-01-01T17:48:28.000000000", + "2019-01-01T17:49:41.000000000", + "2019-01-01T17:52:15.000000000", + "2019-01-01T17:56:05.000000000", + "2019-01-01T17:56:17.000000000", + "2019-01-01T17:56:31.000000000", + "2019-01-01T17:58:54.000000000", + "2019-01-01T18:00:19.000000000", + "2019-01-01T18:02:10.000000000", + "2019-01-01T18:03:20.000000000", + "2019-01-01T18:03:49.000000000", + "2019-01-01T18:05:11.000000000", + "2019-01-01T18:05:46.000000000", + "2019-01-01T18:06:17.000000000", + "2019-01-01T18:06:51.000000000", + "2019-01-01T18:07:38.000000000", + "2019-01-01T18:08:10.000000000", + "2019-01-01T18:09:03.000000000", + "2019-01-01T18:09:24.000000000", + "2019-01-01T18:09:37.000000000", + "2019-01-01T18:10:36.000000000", + "2019-01-01T18:12:07.000000000", + "2019-01-01T18:12:55.000000000", + "2019-01-01T18:15:10.000000000", + "2019-01-01T18:15:42.000000000", + "2019-01-01T18:15:46.000000000", + "2019-01-01T18:17:20.000000000", + "2019-01-01T18:17:57.000000000", + "2019-01-01T18:19:35.000000000", + "2019-01-01T18:20:10.000000000", + "2019-01-01T18:21:48.000000000", + "2019-01-01T18:21:54.000000000", + "2019-01-01T18:22:14.000000000", + "2019-01-01T18:24:03.000000000", + "2019-01-01T18:25:15.000000000", + "2019-01-01T18:27:25.000000000", + "2019-01-01T18:28:59.000000000", + "2019-01-01T18:30:11.000000000", + "2019-01-01T18:32:19.000000000", + "2019-01-01T18:33:30.000000000", + "2019-01-01T18:33:35.000000000", + "2019-01-01T18:35:05.000000000", + "2019-01-01T18:35:23.000000000", + "2019-01-01T18:36:10.000000000", + "2019-01-01T18:36:40.000000000", + "2019-01-01T18:36:54.000000000", + "2019-01-01T18:37:16.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:49.000000000", + "2019-01-01T18:42:03.000000000", + "2019-01-01T18:43:20.000000000", + "2019-01-01T18:43:26.000000000", + "2019-01-01T18:43:51.000000000", + "2019-01-01T18:45:00.000000000", + "2019-01-01T18:48:05.000000000", + "2019-01-01T18:48:53.000000000", + "2019-01-01T18:49:27.000000000", + "2019-01-01T18:50:05.000000000", + "2019-01-01T18:51:02.000000000", + "2019-01-01T18:52:00.000000000", + "2019-01-01T18:52:21.000000000", + "2019-01-01T18:52:30.000000000", + "2019-01-01T18:52:43.000000000", + "2019-01-01T18:55:08.000000000", + "2019-01-01T18:55:28.000000000", + "2019-01-01T18:55:50.000000000", + "2019-01-01T19:02:53.000000000", + "2019-01-01T19:03:57.000000000", + "2019-01-01T19:04:34.000000000", + "2019-01-01T19:05:03.000000000", + "2019-01-01T19:05:11.000000000", + "2019-01-01T19:06:50.000000000", + "2019-01-01T19:07:27.000000000", + "2019-01-01T19:08:35.000000000", + "2019-01-01T19:09:09.000000000", + "2019-01-01T19:10:12.000000000", + "2019-01-01T19:10:13.000000000", + "2019-01-01T19:10:21.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:13:39.000000000", + "2019-01-01T19:14:17.000000000", + "2019-01-01T19:14:23.000000000", + "2019-01-01T19:14:39.000000000", + "2019-01-01T19:15:11.000000000", + "2019-01-01T19:18:11.000000000", + "2019-01-01T19:19:55.000000000", + "2019-01-01T19:20:14.000000000", + "2019-01-01T19:22:26.000000000", + "2019-01-01T19:22:33.000000000", + "2019-01-01T19:25:28.000000000", + "2019-01-01T19:26:24.000000000", + "2019-01-01T19:26:58.000000000", + "2019-01-01T19:28:47.000000000", + "2019-01-01T19:29:49.000000000", + "2019-01-01T19:30:26.000000000", + "2019-01-01T19:30:36.000000000", + "2019-01-01T19:31:56.000000000", + "2019-01-01T19:32:06.000000000", + "2019-01-01T19:33:09.000000000", + "2019-01-01T19:33:10.000000000", + "2019-01-01T19:34:25.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:41.000000000", + "2019-01-01T19:35:05.000000000", + "2019-01-01T19:37:26.000000000", + "2019-01-01T19:37:39.000000000", + "2019-01-01T19:38:24.000000000", + "2019-01-01T19:38:30.000000000", + "2019-01-01T19:39:07.000000000", + "2019-01-01T19:39:10.000000000", + "2019-01-01T19:41:03.000000000", + "2019-01-01T19:42:23.000000000", + "2019-01-01T19:43:06.000000000", + "2019-01-01T19:43:35.000000000", + "2019-01-01T19:44:34.000000000", + "2019-01-01T19:45:23.000000000", + "2019-01-01T19:46:20.000000000", + "2019-01-01T19:46:26.000000000", + "2019-01-01T19:47:31.000000000", + "2019-01-01T19:48:39.000000000", + "2019-01-01T19:49:10.000000000", + "2019-01-01T19:49:38.000000000", + "2019-01-01T19:51:27.000000000", + "2019-01-01T19:51:39.000000000", + "2019-01-01T19:51:46.000000000", + "2019-01-01T19:53:35.000000000", + "2019-01-01T19:53:36.000000000", + "2019-01-01T19:54:06.000000000", + "2019-01-01T19:55:49.000000000", + "2019-01-01T19:55:57.000000000", + "2019-01-01T19:58:03.000000000", + "2019-01-01T19:58:23.000000000", + "2019-01-01T20:00:47.000000000", + "2019-01-01T20:01:26.000000000", + "2019-01-01T20:03:55.000000000", + "2019-01-01T20:05:35.000000000", + "2019-01-01T20:07:00.000000000", + "2019-01-01T20:07:22.000000000", + "2019-01-01T20:09:50.000000000", + "2019-01-01T20:12:15.000000000", + "2019-01-01T20:12:44.000000000", + "2019-01-01T20:13:50.000000000", + "2019-01-01T20:14:48.000000000", + "2019-01-01T20:14:56.000000000", + "2019-01-01T20:15:35.000000000", + "2019-01-01T20:16:20.000000000", + "2019-01-01T20:16:50.000000000", + "2019-01-01T20:17:32.000000000", + "2019-01-01T20:19:27.000000000", + "2019-01-01T20:22:29.000000000", + "2019-01-01T20:23:01.000000000", + "2019-01-01T20:23:07.000000000", + "2019-01-01T20:25:23.000000000", + "2019-01-01T20:25:49.000000000", + "2019-01-01T20:25:56.000000000", + "2019-01-01T20:28:49.000000000", + "2019-01-01T20:30:53.000000000", + "2019-01-01T20:31:22.000000000", + "2019-01-01T20:31:44.000000000", + "2019-01-01T20:34:27.000000000", + "2019-01-01T20:37:16.000000000", + "2019-01-01T20:37:23.000000000", + "2019-01-01T20:37:58.000000000", + "2019-01-01T20:38:12.000000000", + "2019-01-01T20:38:59.000000000", + "2019-01-01T20:39:43.000000000", + "2019-01-01T20:40:01.000000000", + "2019-01-01T20:40:21.000000000", + "2019-01-01T20:42:02.000000000", + "2019-01-01T20:42:14.000000000", + "2019-01-01T20:42:46.000000000", + "2019-01-01T20:43:00.000000000", + "2019-01-01T20:46:23.000000000", + "2019-01-01T20:47:50.000000000", + "2019-01-01T20:49:07.000000000", + "2019-01-01T20:49:09.000000000", + "2019-01-01T20:49:34.000000000", + "2019-01-01T20:49:38.000000000", + "2019-01-01T20:49:52.000000000", + "2019-01-01T20:52:16.000000000", + "2019-01-01T20:52:26.000000000", + "2019-01-01T20:53:15.000000000", + "2019-01-01T20:55:37.000000000", + "2019-01-01T20:58:09.000000000", + "2019-01-01T20:58:19.000000000", + "2019-01-01T20:58:22.000000000", + "2019-01-01T20:59:14.000000000", + "2019-01-01T20:59:48.000000000", + "2019-01-01T21:01:40.000000000", + "2019-01-01T21:01:42.000000000", + "2019-01-01T21:01:50.000000000", + "2019-01-01T21:03:35.000000000", + "2019-01-01T21:04:30.000000000", + "2019-01-01T21:04:59.000000000", + "2019-01-01T21:05:03.000000000", + "2019-01-01T21:05:28.000000000", + "2019-01-01T21:05:36.000000000", + "2019-01-01T21:06:02.000000000", + "2019-01-01T21:08:15.000000000", + "2019-01-01T21:10:51.000000000", + "2019-01-01T21:11:16.000000000", + "2019-01-01T21:12:01.000000000", + "2019-01-01T21:12:55.000000000", + "2019-01-01T21:14:01.000000000", + "2019-01-01T21:15:11.000000000", + "2019-01-01T21:15:36.000000000", + "2019-01-01T21:16:12.000000000", + "2019-01-01T21:17:30.000000000", + "2019-01-01T21:17:43.000000000", + "2019-01-01T21:18:55.000000000", + "2019-01-01T21:19:35.000000000", + "2019-01-01T21:19:48.000000000", + "2019-01-01T21:22:04.000000000", + "2019-01-01T21:24:01.000000000", + "2019-01-01T21:24:39.000000000", + "2019-01-01T21:26:27.000000000", + "2019-01-01T21:27:08.000000000", + "2019-01-01T21:30:42.000000000", + "2019-01-01T21:31:09.000000000", + "2019-01-01T21:31:40.000000000", + "2019-01-01T21:31:48.000000000", + "2019-01-01T21:31:56.000000000", + "2019-01-01T21:32:00.000000000", + "2019-01-01T21:35:24.000000000", + "2019-01-01T21:37:22.000000000", + "2019-01-01T21:38:22.000000000", + "2019-01-01T21:40:46.000000000", + "2019-01-01T21:41:57.000000000", + "2019-01-01T21:43:10.000000000", + "2019-01-01T21:44:50.000000000", + "2019-01-01T21:45:56.000000000", + "2019-01-01T21:52:10.000000000", + "2019-01-01T21:53:08.000000000", + "2019-01-01T21:54:20.000000000", + "2019-01-01T21:54:56.000000000", + "2019-01-01T21:55:00.000000000", + "2019-01-01T21:55:35.000000000", + "2019-01-01T21:55:41.000000000", + "2019-01-01T21:56:56.000000000", + "2019-01-01T21:58:09.000000000", + "2019-01-01T22:01:13.000000000", + "2019-01-01T22:04:18.000000000", + "2019-01-01T22:04:30.000000000", + "2019-01-01T22:05:11.000000000", + "2019-01-01T22:08:01.000000000", + "2019-01-01T22:09:16.000000000", + "2019-01-01T22:09:36.000000000", + "2019-01-01T22:12:02.000000000", + "2019-01-01T22:12:24.000000000", + "2019-01-01T22:12:31.000000000", + "2019-01-01T22:13:38.000000000", + "2019-01-01T22:16:21.000000000", + "2019-01-01T22:17:15.000000000", + "2019-01-01T22:18:08.000000000", + "2019-01-01T22:18:37.000000000", + "2019-01-01T22:21:49.000000000", + "2019-01-01T22:22:11.000000000", + "2019-01-01T22:22:17.000000000", + "2019-01-01T22:22:24.000000000", + "2019-01-01T22:23:49.000000000", + "2019-01-01T22:24:05.000000000", + "2019-01-01T22:28:43.000000000", + "2019-01-01T22:29:41.000000000", + "2019-01-01T22:30:05.000000000", + "2019-01-01T22:32:29.000000000", + "2019-01-01T22:35:02.000000000", + "2019-01-01T22:35:47.000000000", + "2019-01-01T22:36:21.000000000", + "2019-01-01T22:36:38.000000000", + "2019-01-01T22:36:47.000000000", + "2019-01-01T22:37:56.000000000", + "2019-01-01T22:38:08.000000000", + "2019-01-01T22:38:28.000000000", + "2019-01-01T22:38:56.000000000", + "2019-01-01T22:39:31.000000000", + "2019-01-01T22:41:39.000000000", + "2019-01-01T22:41:48.000000000", + "2019-01-01T22:41:59.000000000", + "2019-01-01T22:42:16.000000000", + "2019-01-01T22:43:08.000000000", + "2019-01-01T22:43:12.000000000", + "2019-01-01T22:43:24.000000000", + "2019-01-01T22:45:57.000000000", + "2019-01-01T22:46:22.000000000", + "2019-01-01T22:46:37.000000000", + "2019-01-01T22:47:50.000000000", + "2019-01-01T22:48:18.000000000", + "2019-01-01T22:48:29.000000000", + "2019-01-01T22:49:04.000000000", + "2019-01-01T22:50:37.000000000", + "2019-01-01T22:51:13.000000000", + "2019-01-01T22:56:46.000000000", + "2019-01-01T22:57:31.000000000", + "2019-01-01T22:57:37.000000000", + "2019-01-01T22:59:29.000000000", + "2019-01-01T23:03:23.000000000", + "2019-01-01T23:03:37.000000000", + "2019-01-01T23:04:37.000000000", + "2019-01-01T23:06:04.000000000", + "2019-01-01T23:07:20.000000000", + "2019-01-01T23:07:40.000000000", + "2019-01-01T23:08:42.000000000", + "2019-01-01T23:08:48.000000000", + "2019-01-01T23:09:29.000000000", + "2019-01-01T23:10:34.000000000", + "2019-01-01T23:12:16.000000000", + "2019-01-01T23:12:25.000000000", + "2019-01-01T23:12:27.000000000", + "2019-01-01T23:12:30.000000000", + "2019-01-01T23:12:36.000000000", + "2019-01-01T23:14:03.000000000", + "2019-01-01T23:15:00.000000000", + "2019-01-01T23:15:08.000000000", + "2019-01-01T23:17:29.000000000", + "2019-01-01T23:20:27.000000000", + "2019-01-01T23:20:28.000000000", + "2019-01-01T23:21:35.000000000", + "2019-01-01T23:23:18.000000000", + "2019-01-01T23:23:21.000000000", + "2019-01-01T23:24:31.000000000", + "2019-01-01T23:25:08.000000000", + "2019-01-01T23:27:04.000000000", + "2019-01-01T23:28:56.000000000", + "2019-01-01T23:29:12.000000000", + "2019-01-01T23:29:29.000000000", + "2019-01-01T23:30:03.000000000", + "2019-01-01T23:30:16.000000000", + "2019-01-01T23:31:04.000000000", + "2019-01-01T23:32:44.000000000", + "2019-01-01T23:34:02.000000000", + "2019-01-01T23:34:10.000000000", + "2019-01-01T23:35:46.000000000", + "2019-01-01T23:35:55.000000000", + "2019-01-01T23:36:14.000000000", + "2019-01-01T23:36:27.000000000", + "2019-01-01T23:37:57.000000000", + "2019-01-01T23:40:17.000000000", + "2019-01-01T23:40:48.000000000", + "2019-01-01T23:41:12.000000000", + "2019-01-01T23:42:29.000000000", + "2019-01-01T23:43:07.000000000", + "2019-01-01T23:43:17.000000000", + "2019-01-01T23:43:57.000000000", + "2019-01-01T23:44:09.000000000", + "2019-01-01T23:45:39.000000000", + "2019-01-01T23:46:58.000000000", + "2019-01-01T23:47:13.000000000", + "2019-01-01T23:47:56.000000000", + "2019-01-01T23:48:12.000000000", + "2019-01-01T23:48:41.000000000", + "2019-01-01T23:49:23.000000000", + "2019-01-01T23:52:06.000000000", + "2019-01-01T23:52:43.000000000", + "2019-01-01T23:53:10.000000000", + "2019-01-01T23:53:38.000000000", + "2019-01-01T23:54:11.000000000", + "2019-01-01T23:55:05.000000000", + "2019-01-01T23:55:06.000000000", + "2019-01-01T23:55:33.000000000", + "2019-01-01T23:59:30.000000000", + "2019-01-02T00:00:46.000000000", + "2019-01-02T00:01:11.000000000", + "2019-01-02T00:01:18.000000000", + "2019-01-02T00:02:02.000000000", + "2019-01-02T00:06:14.000000000", + "2019-01-02T00:06:34.000000000", + "2019-01-02T00:06:46.000000000", + "2019-01-02T00:07:44.000000000", + "2019-01-02T00:07:57.000000000", + "2019-01-02T00:10:14.000000000", + "2019-01-02T00:11:28.000000000", + "2019-01-02T00:11:32.000000000", + "2019-01-02T00:12:17.000000000", + "2019-01-02T00:15:53.000000000", + "2019-01-02T00:16:23.000000000", + "2019-01-02T00:18:19.000000000", + "2019-01-02T00:19:08.000000000", + "2019-01-02T00:19:18.000000000", + "2019-01-02T00:19:36.000000000", + "2019-01-02T00:21:57.000000000", + "2019-01-02T00:22:05.000000000", + "2019-01-02T00:23:03.000000000", + "2019-01-02T00:25:04.000000000", + "2019-01-02T00:25:32.000000000", + "2019-01-02T00:28:40.000000000", + "2019-01-02T00:30:56.000000000", + "2019-01-02T00:32:03.000000000", + "2019-01-02T00:32:22.000000000", + "2019-01-02T00:34:54.000000000", + "2019-01-02T00:35:14.000000000", + "2019-01-02T00:36:49.000000000", + "2019-01-02T00:38:14.000000000", + "2019-01-02T00:38:35.000000000", + "2019-01-02T00:38:52.000000000", + "2019-01-02T00:39:17.000000000", + "2019-01-02T00:39:38.000000000", + "2019-01-02T00:41:21.000000000", + "2019-01-02T00:43:59.000000000", + "2019-01-02T00:44:11.000000000", + "2019-01-02T00:45:35.000000000", + "2019-01-02T00:45:38.000000000", + "2019-01-02T00:48:12.000000000", + "2019-01-02T00:48:16.000000000", + "2019-01-02T00:48:29.000000000", + "2019-01-02T00:49:28.000000000", + "2019-01-02T00:51:06.000000000", + "2019-01-02T00:52:15.000000000", + "2019-01-02T00:54:21.000000000", + "2019-01-02T00:54:24.000000000", + "2019-01-02T00:54:42.000000000", + "2019-01-02T00:55:32.000000000", + "2019-01-02T00:55:44.000000000", + "2019-01-02T00:55:54.000000000", + "2019-01-02T00:56:11.000000000", + "2019-01-02T00:57:00.000000000", + "2019-01-02T00:57:41.000000000", + "2019-01-02T00:58:44.000000000", + "2019-01-02T00:58:52.000000000", + "2019-01-02T00:59:23.000000000", + "2019-01-02T01:02:02.000000000", + "2019-01-02T01:02:12.000000000", + "2019-01-02T01:02:47.000000000", + "2019-01-02T01:04:51.000000000", + "2019-01-02T01:06:37.000000000", + "2019-01-02T01:06:54.000000000", + "2019-01-02T01:08:20.000000000", + "2019-01-02T01:08:44.000000000", + "2019-01-02T01:10:27.000000000", + "2019-01-02T01:11:39.000000000", + "2019-01-02T01:11:46.000000000", + "2019-01-02T01:12:04.000000000", + "2019-01-02T01:13:20.000000000", + "2019-01-02T01:13:55.000000000", + "2019-01-02T01:14:45.000000000", + "2019-01-02T01:15:49.000000000", + "2019-01-02T01:18:12.000000000", + "2019-01-02T01:18:38.000000000", + "2019-01-02T01:19:07.000000000", + "2019-01-02T01:20:04.000000000", + "2019-01-02T01:23:00.000000000", + "2019-01-02T01:23:06.000000000", + "2019-01-02T01:24:43.000000000", + "2019-01-02T01:24:55.000000000", + "2019-01-02T01:26:12.000000000", + "2019-01-02T01:27:03.000000000", + "2019-01-02T01:28:39.000000000", + "2019-01-02T01:28:54.000000000", + "2019-01-02T01:28:56.000000000", + "2019-01-02T01:29:23.000000000", + "2019-01-02T01:29:49.000000000", + "2019-01-02T01:30:00.000000000", + "2019-01-02T01:30:50.000000000", + "2019-01-02T01:32:50.000000000", + "2019-01-02T01:33:52.000000000", + "2019-01-02T01:34:58.000000000", + "2019-01-02T01:36:01.000000000", + "2019-01-02T01:37:45.000000000", + "2019-01-02T01:38:10.000000000", + "2019-01-02T01:39:49.000000000", + "2019-01-02T01:39:55.000000000", + "2019-01-02T01:40:20.000000000", + "2019-01-02T01:42:07.000000000", + "2019-01-02T01:42:17.000000000", + "2019-01-02T01:46:26.000000000", + "2019-01-02T01:46:37.000000000", + "2019-01-02T01:46:47.000000000", + "2019-01-02T01:50:27.000000000", + "2019-01-02T01:50:48.000000000", + "2019-01-02T01:50:58.000000000", + "2019-01-02T01:51:40.000000000", + "2019-01-02T01:52:30.000000000", + "2019-01-02T01:52:43.000000000", + "2019-01-02T01:53:01.000000000", + "2019-01-02T01:54:43.000000000", + "2019-01-02T01:55:49.000000000", + "2019-01-02T01:57:17.000000000", + "2019-01-02T01:57:56.000000000", + "2019-01-02T01:58:20.000000000", + "2019-01-02T01:58:40.000000000", + "2019-01-02T01:59:54.000000000", + "2019-01-02T02:00:30.000000000", + "2019-01-02T02:01:56.000000000", + "2019-01-02T02:02:30.000000000", + "2019-01-02T02:02:57.000000000", + "2019-01-02T02:03:54.000000000", + "2019-01-02T02:07:24.000000000", + "2019-01-02T02:08:13.000000000", + "2019-01-02T02:08:21.000000000", + "2019-01-02T02:08:36.000000000", + "2019-01-02T02:09:45.000000000", + "2019-01-02T02:10:10.000000000", + "2019-01-02T02:11:22.000000000", + "2019-01-02T02:13:49.000000000", + "2019-01-02T02:14:29.000000000", + "2019-01-02T02:14:46.000000000", + "2019-01-02T02:17:50.000000000", + "2019-01-02T02:19:02.000000000", + "2019-01-02T02:19:28.000000000", + "2019-01-02T02:20:54.000000000", + "2019-01-02T02:21:24.000000000", + "2019-01-02T02:22:09.000000000", + "2019-01-02T02:24:57.000000000", + "2019-01-02T02:25:33.000000000", + "2019-01-02T02:25:48.000000000", + "2019-01-02T02:26:05.000000000", + "2019-01-02T02:26:12.000000000", + "2019-01-02T02:27:41.000000000", + "2019-01-02T02:30:07.000000000", + "2019-01-02T02:34:28.000000000", + "2019-01-02T02:38:08.000000000", + "2019-01-02T02:39:41.000000000", + "2019-01-02T02:40:17.000000000", + "2019-01-02T02:41:31.000000000", + "2019-01-02T02:41:47.000000000", + "2019-01-02T02:41:49.000000000", + "2019-01-02T02:45:49.000000000", + "2019-01-02T02:46:50.000000000", + "2019-01-02T02:47:35.000000000", + "2019-01-02T02:48:47.000000000", + "2019-01-02T02:51:39.000000000", + "2019-01-02T02:51:40.000000000", + "2019-01-02T02:53:10.000000000", + "2019-01-02T02:53:23.000000000", + "2019-01-02T02:53:30.000000000", + "2019-01-02T02:53:48.000000000", + "2019-01-02T02:54:01.000000000", + "2019-01-02T02:55:01.000000000", + "2019-01-02T02:56:10.000000000", + "2019-01-02T02:56:12.000000000", + "2019-01-02T02:57:03.000000000", + "2019-01-02T02:57:04.000000000", + "2019-01-02T02:57:14.000000000", + "2019-01-02T02:57:15.000000000", + "2019-01-02T02:57:49.000000000", + "2019-01-02T02:58:41.000000000", + "2019-01-02T03:00:10.000000000", + "2019-01-02T03:00:43.000000000", + "2019-01-02T03:00:54.000000000", + "2019-01-02T03:01:40.000000000", + "2019-01-02T03:02:17.000000000", + "2019-01-02T03:02:58.000000000", + "2019-01-02T03:04:32.000000000", + "2019-01-02T03:06:17.000000000", + "2019-01-02T03:08:03.000000000", + "2019-01-02T03:08:31.000000000", + "2019-01-02T03:12:12.000000000", + "2019-01-02T03:13:28.000000000", + "2019-01-02T03:15:46.000000000", + "2019-01-02T03:17:12.000000000", + "2019-01-02T03:17:25.000000000", + "2019-01-02T03:18:22.000000000", + "2019-01-02T03:18:55.000000000", + "2019-01-02T03:23:00.000000000", + "2019-01-02T03:23:52.000000000", + "2019-01-02T03:25:18.000000000", + "2019-01-02T03:27:24.000000000", + "2019-01-02T03:29:21.000000000", + "2019-01-02T03:30:33.000000000", + "2019-01-02T03:31:35.000000000", + "2019-01-02T03:32:45.000000000", + "2019-01-02T03:33:14.000000000", + "2019-01-02T03:33:34.000000000", + "2019-01-02T03:34:38.000000000", + "2019-01-02T03:35:18.000000000", + "2019-01-02T03:35:35.000000000", + "2019-01-02T03:35:52.000000000", + "2019-01-02T03:36:51.000000000", + "2019-01-02T03:36:59.000000000", + "2019-01-02T03:37:17.000000000", + "2019-01-02T03:40:28.000000000", + "2019-01-02T03:41:19.000000000", + "2019-01-02T03:43:02.000000000", + "2019-01-02T03:43:33.000000000", + "2019-01-02T03:43:55.000000000", + "2019-01-02T03:45:10.000000000", + "2019-01-02T03:46:16.000000000", + "2019-01-02T03:46:50.000000000", + "2019-01-02T03:46:53.000000000", + "2019-01-02T03:48:58.000000000", + "2019-01-02T03:49:26.000000000", + "2019-01-02T03:49:40.000000000", + "2019-01-02T03:51:59.000000000", + "2019-01-02T03:52:15.000000000", + "2019-01-02T03:52:18.000000000", + "2019-01-02T03:52:50.000000000", + "2019-01-02T03:53:25.000000000", + "2019-01-02T03:54:39.000000000", + "2019-01-02T03:54:55.000000000", + "2019-01-02T03:55:28.000000000", + "2019-01-02T03:55:57.000000000", + "2019-01-02T03:55:58.000000000", + "2019-01-02T03:56:03.000000000", + "2019-01-02T03:57:42.000000000", + "2019-01-02T03:58:04.000000000", + "2019-01-02T03:58:13.000000000", + "2019-01-02T03:59:17.000000000", + "2019-01-02T03:59:41.000000000", + "2019-01-02T04:01:05.000000000", + "2019-01-02T04:01:48.000000000", + "2019-01-02T04:01:59.000000000", + "2019-01-02T04:02:52.000000000", + "2019-01-02T04:04:24.000000000", + "2019-01-02T04:05:27.000000000", + "2019-01-02T04:05:50.000000000", + "2019-01-02T04:06:28.000000000", + "2019-01-02T04:08:17.000000000", + "2019-01-02T04:09:27.000000000", + "2019-01-02T04:10:19.000000000", + "2019-01-02T04:11:03.000000000", + "2019-01-02T04:14:49.000000000", + "2019-01-02T04:16:10.000000000", + "2019-01-02T04:18:25.000000000", + "2019-01-02T04:20:00.000000000", + "2019-01-02T04:20:21.000000000", + "2019-01-02T04:21:14.000000000", + "2019-01-02T04:22:52.000000000", + "2019-01-02T04:23:36.000000000", + "2019-01-02T04:24:32.000000000", + "2019-01-02T04:26:00.000000000", + "2019-01-02T04:28:26.000000000", + "2019-01-02T04:29:06.000000000", + "2019-01-02T04:30:07.000000000", + "2019-01-02T04:32:36.000000000", + "2019-01-02T04:33:19.000000000", + "2019-01-02T04:33:37.000000000", + "2019-01-02T04:35:32.000000000", + "2019-01-02T04:35:58.000000000", + "2019-01-02T04:36:36.000000000", + "2019-01-02T04:37:52.000000000", + "2019-01-02T04:38:24.000000000", + "2019-01-02T04:39:07.000000000", + "2019-01-02T04:39:18.000000000", + "2019-01-02T04:39:34.000000000", + "2019-01-02T04:40:47.000000000", + "2019-01-02T04:41:11.000000000", + "2019-01-02T04:41:33.000000000", + "2019-01-02T04:41:59.000000000", + "2019-01-02T04:44:01.000000000", + "2019-01-02T04:44:22.000000000", + "2019-01-02T04:47:45.000000000", + "2019-01-02T04:48:38.000000000", + "2019-01-02T04:50:20.000000000", + "2019-01-02T04:51:18.000000000", + "2019-01-02T04:51:27.000000000", + "2019-01-02T04:54:40.000000000", + "2019-01-02T04:54:44.000000000", + "2019-01-02T04:54:52.000000000", + "2019-01-02T04:55:03.000000000", + "2019-01-02T04:56:51.000000000", + "2019-01-02T04:57:13.000000000", + "2019-01-02T04:57:47.000000000", + "2019-01-02T04:58:03.000000000", + "2019-01-02T04:59:10.000000000", + "2019-01-02T05:00:32.000000000", + "2019-01-02T05:02:25.000000000", + "2019-01-02T05:03:10.000000000", + "2019-01-02T05:03:50.000000000", + "2019-01-02T05:04:03.000000000", + "2019-01-02T05:04:22.000000000", + "2019-01-02T05:06:03.000000000", + "2019-01-02T05:07:17.000000000", + "2019-01-02T05:08:47.000000000", + "2019-01-02T05:09:21.000000000", + "2019-01-02T05:09:30.000000000", + "2019-01-02T05:10:07.000000000", + "2019-01-02T05:10:10.000000000", + "2019-01-02T05:10:35.000000000", + "2019-01-02T05:10:37.000000000", + "2019-01-02T05:10:56.000000000", + "2019-01-02T05:12:33.000000000", + "2019-01-02T05:13:37.000000000", + "2019-01-02T05:14:23.000000000", + "2019-01-02T05:15:33.000000000", + "2019-01-02T05:17:00.000000000", + "2019-01-02T05:17:12.000000000", + "2019-01-02T05:18:37.000000000", + "2019-01-02T05:19:17.000000000", + "2019-01-02T05:19:28.000000000", + "2019-01-02T05:19:37.000000000", + "2019-01-02T05:21:02.000000000", + "2019-01-02T05:22:40.000000000", + "2019-01-02T05:23:20.000000000", + "2019-01-02T05:23:23.000000000", + "2019-01-02T05:23:38.000000000", + "2019-01-02T05:23:51.000000000", + "2019-01-02T05:23:52.000000000", + "2019-01-02T05:24:21.000000000", + "2019-01-02T05:24:22.000000000", + "2019-01-02T05:25:18.000000000", + "2019-01-02T05:26:23.000000000", + "2019-01-02T05:27:32.000000000", + "2019-01-02T05:28:19.000000000", + "2019-01-02T05:30:11.000000000", + "2019-01-02T05:31:58.000000000", + "2019-01-02T05:32:06.000000000", + "2019-01-02T05:33:28.000000000", + "2019-01-02T05:34:23.000000000", + "2019-01-02T05:34:30.000000000", + "2019-01-02T05:34:43.000000000", + "2019-01-02T05:35:41.000000000", + "2019-01-02T05:36:20.000000000", + "2019-01-02T05:36:47.000000000", + "2019-01-02T05:37:32.000000000", + "2019-01-02T05:37:36.000000000", + "2019-01-02T05:40:35.000000000", + "2019-01-02T05:41:37.000000000", + "2019-01-02T05:41:48.000000000", + "2019-01-02T05:42:55.000000000", + "2019-01-02T05:44:16.000000000", + "2019-01-02T05:44:32.000000000", + "2019-01-02T05:45:36.000000000", + "2019-01-02T05:46:03.000000000", + "2019-01-02T05:47:33.000000000", + "2019-01-02T05:47:38.000000000", + "2019-01-02T05:47:51.000000000", + "2019-01-02T05:50:32.000000000", + "2019-01-02T05:51:02.000000000", + "2019-01-02T05:51:23.000000000", + "2019-01-02T05:53:25.000000000", + "2019-01-02T05:53:26.000000000", + "2019-01-02T05:53:39.000000000", + "2019-01-02T05:55:24.000000000", + "2019-01-02T05:56:03.000000000", + "2019-01-02T05:57:00.000000000", + "2019-01-02T05:57:13.000000000", + "2019-01-02T05:57:42.000000000", + "2019-01-02T05:57:50.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:59:05.000000000", + "2019-01-02T05:59:13.000000000", + "2019-01-02T06:00:06.000000000", + "2019-01-02T06:00:26.000000000", + "2019-01-02T06:00:34.000000000", + "2019-01-02T06:00:48.000000000", + "2019-01-02T06:02:13.000000000", + "2019-01-02T06:02:15.000000000", + "2019-01-02T06:02:43.000000000", + "2019-01-02T06:04:27.000000000", + "2019-01-02T06:04:57.000000000", + "2019-01-02T06:06:26.000000000", + "2019-01-02T06:06:38.000000000", + "2019-01-02T06:08:38.000000000", + "2019-01-02T06:11:48.000000000", + "2019-01-02T06:13:33.000000000", + "2019-01-02T06:14:22.000000000", + "2019-01-02T06:14:31.000000000", + "2019-01-02T06:14:36.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:16:02.000000000", + "2019-01-02T06:16:58.000000000", + "2019-01-02T06:17:28.000000000", + "2019-01-02T06:18:06.000000000", + "2019-01-02T06:20:58.000000000", + "2019-01-02T06:21:33.000000000", + "2019-01-02T06:22:21.000000000", + "2019-01-02T06:22:35.000000000", + "2019-01-02T06:24:22.000000000", + "2019-01-02T06:24:56.000000000", + "2019-01-02T06:26:33.000000000", + "2019-01-02T06:26:59.000000000", + "2019-01-02T06:27:07.000000000", + "2019-01-02T06:27:11.000000000", + "2019-01-02T06:28:04.000000000", + "2019-01-02T06:28:33.000000000", + "2019-01-02T06:28:46.000000000", + "2019-01-02T06:28:50.000000000", + "2019-01-02T06:30:21.000000000", + "2019-01-02T06:30:50.000000000", + "2019-01-02T06:33:56.000000000", + "2019-01-02T06:35:05.000000000", + "2019-01-02T06:35:25.000000000", + "2019-01-02T06:36:49.000000000", + "2019-01-02T06:39:32.000000000", + "2019-01-02T06:40:28.000000000", + "2019-01-02T06:41:14.000000000", + "2019-01-02T06:41:23.000000000", + "2019-01-02T06:42:16.000000000", + "2019-01-02T06:43:01.000000000", + "2019-01-02T06:43:36.000000000", + "2019-01-02T06:44:07.000000000", + "2019-01-02T06:46:57.000000000", + "2019-01-02T06:47:44.000000000", + "2019-01-02T06:48:14.000000000", + "2019-01-02T06:48:26.000000000", + "2019-01-02T06:48:35.000000000", + "2019-01-02T06:51:25.000000000", + "2019-01-02T06:52:33.000000000", + "2019-01-02T06:54:11.000000000", + "2019-01-02T06:54:55.000000000", + "2019-01-02T06:55:23.000000000", + "2019-01-02T06:55:25.000000000", + "2019-01-02T06:55:44.000000000", + "2019-01-02T07:03:53.000000000", + "2019-01-02T07:04:21.000000000", + "2019-01-02T07:04:38.000000000", + "2019-01-02T07:05:28.000000000", + "2019-01-02T07:05:49.000000000", + "2019-01-02T07:08:58.000000000", + "2019-01-02T07:09:08.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:11:25.000000000", + "2019-01-02T07:13:31.000000000", + "2019-01-02T07:13:41.000000000", + "2019-01-02T07:15:55.000000000", + "2019-01-02T07:16:00.000000000", + "2019-01-02T07:17:22.000000000", + "2019-01-02T07:18:01.000000000", + "2019-01-02T07:18:24.000000000", + "2019-01-02T07:21:16.000000000", + "2019-01-02T07:22:38.000000000", + "2019-01-02T07:23:37.000000000", + "2019-01-02T07:25:02.000000000", + "2019-01-02T07:25:22.000000000", + "2019-01-02T07:26:20.000000000", + "2019-01-02T07:26:47.000000000", + "2019-01-02T07:27:35.000000000", + "2019-01-02T07:27:46.000000000", + "2019-01-02T07:27:51.000000000", + "2019-01-02T07:28:11.000000000", + "2019-01-02T07:29:32.000000000", + "2019-01-02T07:30:07.000000000", + "2019-01-02T07:31:17.000000000", + "2019-01-02T07:31:27.000000000", + "2019-01-02T07:31:52.000000000", + "2019-01-02T07:32:08.000000000", + "2019-01-02T07:32:24.000000000", + "2019-01-02T07:33:40.000000000", + "2019-01-02T07:35:24.000000000", + "2019-01-02T07:36:19.000000000", + "2019-01-02T07:37:02.000000000", + "2019-01-02T07:37:25.000000000", + "2019-01-02T07:37:57.000000000", + "2019-01-02T07:38:54.000000000", + "2019-01-02T07:39:19.000000000", + "2019-01-02T07:39:29.000000000", + "2019-01-02T07:43:10.000000000", + "2019-01-02T07:44:41.000000000", + "2019-01-02T07:45:28.000000000", + "2019-01-02T07:46:08.000000000", + "2019-01-02T07:46:37.000000000", + "2019-01-02T07:46:43.000000000", + "2019-01-02T07:48:24.000000000", + "2019-01-02T07:49:48.000000000", + "2019-01-02T07:50:19.000000000", + "2019-01-02T07:50:35.000000000", + "2019-01-02T07:51:36.000000000", + "2019-01-02T07:52:08.000000000", + "2019-01-02T07:52:56.000000000", + "2019-01-02T07:53:29.000000000", + "2019-01-02T07:54:02.000000000", + "2019-01-02T07:54:37.000000000", + "2019-01-02T07:57:24.000000000", + "2019-01-02T07:58:40.000000000", + "2019-01-02T07:59:04.000000000", + "2019-01-02T08:00:16.000000000", + "2019-01-02T08:02:25.000000000", + "2019-01-02T08:03:21.000000000", + "2019-01-02T08:05:02.000000000", + "2019-01-02T08:05:20.000000000", + "2019-01-02T08:06:12.000000000", + "2019-01-02T08:07:45.000000000", + "2019-01-02T08:08:09.000000000", + "2019-01-02T08:08:54.000000000", + "2019-01-02T08:09:48.000000000", + "2019-01-02T08:10:23.000000000", + "2019-01-02T08:10:34.000000000", + "2019-01-02T08:11:19.000000000", + "2019-01-02T08:12:26.000000000", + "2019-01-02T08:12:58.000000000", + "2019-01-02T08:14:39.000000000", + "2019-01-02T08:14:45.000000000", + "2019-01-02T08:14:53.000000000", + "2019-01-02T08:15:23.000000000", + "2019-01-02T08:16:06.000000000", + "2019-01-02T08:16:25.000000000", + "2019-01-02T08:16:53.000000000", + "2019-01-02T08:17:38.000000000", + "2019-01-02T08:18:47.000000000", + "2019-01-02T08:18:51.000000000", + "2019-01-02T08:21:10.000000000", + "2019-01-02T08:21:20.000000000", + "2019-01-02T08:22:10.000000000", + "2019-01-02T08:23:25.000000000", + "2019-01-02T08:24:50.000000000", + "2019-01-02T08:25:35.000000000", + "2019-01-02T08:25:38.000000000", + "2019-01-02T08:27:20.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:56.000000000", + "2019-01-02T08:27:59.000000000", + "2019-01-02T08:29:27.000000000", + "2019-01-02T08:31:53.000000000", + "2019-01-02T08:33:09.000000000", + "2019-01-02T08:34:17.000000000", + "2019-01-02T08:34:50.000000000", + "2019-01-02T08:34:55.000000000", + "2019-01-02T08:36:07.000000000", + "2019-01-02T08:37:25.000000000", + "2019-01-02T08:38:57.000000000", + "2019-01-02T08:39:25.000000000", + "2019-01-02T08:39:43.000000000", + "2019-01-02T08:39:46.000000000", + "2019-01-02T08:40:11.000000000", + "2019-01-02T08:40:17.000000000", + "2019-01-02T08:42:05.000000000", + "2019-01-02T08:42:29.000000000", + "2019-01-02T08:43:10.000000000", + "2019-01-02T08:43:17.000000000", + "2019-01-02T08:44:03.000000000", + "2019-01-02T08:44:42.000000000", + "2019-01-02T08:44:44.000000000", + "2019-01-02T08:44:50.000000000", + "2019-01-02T08:46:45.000000000", + "2019-01-02T08:46:55.000000000", + "2019-01-02T08:48:19.000000000", + "2019-01-02T08:48:20.000000000", + "2019-01-02T08:48:39.000000000", + "2019-01-02T08:52:12.000000000", + "2019-01-02T08:52:30.000000000", + "2019-01-02T08:53:25.000000000", + "2019-01-02T08:53:34.000000000", + "2019-01-02T08:54:27.000000000", + "2019-01-02T08:54:56.000000000", + "2019-01-02T08:55:15.000000000", + "2019-01-02T08:55:27.000000000", + "2019-01-02T08:55:51.000000000", + "2019-01-02T08:55:58.000000000", + "2019-01-02T08:56:07.000000000", + "2019-01-02T08:56:47.000000000", + "2019-01-02T08:56:58.000000000", + "2019-01-02T08:57:36.000000000", + "2019-01-02T08:58:53.000000000", + "2019-01-02T09:00:03.000000000", + "2019-01-02T09:00:06.000000000", + "2019-01-02T09:00:20.000000000", + "2019-01-02T09:02:25.000000000", + "2019-01-02T09:06:28.000000000", + "2019-01-02T09:06:29.000000000", + "2019-01-02T09:08:35.000000000", + "2019-01-02T09:10:11.000000000", + "2019-01-02T09:11:04.000000000", + "2019-01-02T09:13:51.000000000", + "2019-01-02T09:14:15.000000000", + "2019-01-02T09:15:57.000000000", + "2019-01-02T09:16:16.000000000", + "2019-01-02T09:16:26.000000000", + "2019-01-02T09:17:27.000000000", + "2019-01-02T09:20:36.000000000", + "2019-01-02T09:24:35.000000000", + "2019-01-02T09:26:47.000000000", + "2019-01-02T09:28:27.000000000", + "2019-01-02T09:30:43.000000000", + "2019-01-02T09:30:55.000000000", + "2019-01-02T09:32:17.000000000", + "2019-01-02T09:34:34.000000000", + "2019-01-02T09:34:36.000000000", + "2019-01-02T09:34:52.000000000", + "2019-01-02T09:34:59.000000000", + "2019-01-02T09:35:54.000000000", + "2019-01-02T09:36:57.000000000", + "2019-01-02T09:37:50.000000000", + "2019-01-02T09:42:01.000000000", + "2019-01-02T09:42:25.000000000", + "2019-01-02T09:43:41.000000000", + "2019-01-02T09:45:20.000000000", + "2019-01-02T09:48:14.000000000", + "2019-01-02T09:48:46.000000000", + "2019-01-02T09:49:16.000000000", + "2019-01-02T09:49:47.000000000", + "2019-01-02T09:52:12.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:37.000000000", + "2019-01-02T09:53:51.000000000", + "2019-01-02T09:55:00.000000000", + "2019-01-02T09:56:21.000000000", + "2019-01-02T09:57:34.000000000", + "2019-01-02T09:59:25.000000000", + "2019-01-02T09:59:51.000000000", + "2019-01-02T10:01:02.000000000", + "2019-01-02T10:01:42.000000000", + "2019-01-02T10:02:00.000000000", + "2019-01-02T10:02:33.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:58.000000000", + "2019-01-02T10:05:00.000000000", + "2019-01-02T10:05:04.000000000", + "2019-01-02T10:05:58.000000000", + "2019-01-02T10:06:41.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:49.000000000", + "2019-01-02T10:09:57.000000000", + "2019-01-02T10:10:38.000000000", + "2019-01-02T10:10:50.000000000", + "2019-01-02T10:13:04.000000000", + "2019-01-02T10:13:12.000000000", + "2019-01-02T10:14:13.000000000", + "2019-01-02T10:16:13.000000000", + "2019-01-02T10:16:28.000000000", + "2019-01-02T10:17:53.000000000", + "2019-01-02T10:17:54.000000000", + "2019-01-02T10:19:34.000000000", + "2019-01-02T10:20:21.000000000", + "2019-01-02T10:20:31.000000000", + "2019-01-02T10:21:47.000000000", + "2019-01-02T10:22:25.000000000", + "2019-01-02T10:24:03.000000000", + "2019-01-02T10:24:49.000000000", + "2019-01-02T10:29:00.000000000", + "2019-01-02T10:30:50.000000000", + "2019-01-02T10:30:52.000000000", + "2019-01-02T10:30:58.000000000", + "2019-01-02T10:32:07.000000000", + "2019-01-02T10:32:27.000000000", + "2019-01-02T10:32:33.000000000", + "2019-01-02T10:32:44.000000000", + "2019-01-02T10:32:45.000000000", + "2019-01-02T10:35:10.000000000", + "2019-01-02T10:38:19.000000000", + "2019-01-02T10:38:57.000000000", + "2019-01-02T10:40:40.000000000", + "2019-01-02T10:42:29.000000000", + "2019-01-02T10:42:51.000000000", + "2019-01-02T10:42:54.000000000", + "2019-01-02T10:45:20.000000000", + "2019-01-02T10:46:22.000000000", + "2019-01-02T10:47:30.000000000", + "2019-01-02T10:47:55.000000000", + "2019-01-02T10:50:42.000000000", + "2019-01-02T10:51:00.000000000", + "2019-01-02T10:51:56.000000000", + "2019-01-02T10:52:37.000000000", + "2019-01-02T10:55:44.000000000", + "2019-01-02T10:56:24.000000000", + "2019-01-02T10:56:38.000000000", + "2019-01-02T10:56:47.000000000", + "2019-01-02T10:57:59.000000000", + "2019-01-02T10:58:17.000000000", + "2019-01-02T10:59:25.000000000", + "2019-01-02T11:00:29.000000000", + "2019-01-02T11:01:33.000000000", + "2019-01-02T11:02:40.000000000", + "2019-01-02T11:03:10.000000000", + "2019-01-02T11:04:35.000000000", + "2019-01-02T11:05:19.000000000", + "2019-01-02T11:06:17.000000000", + "2019-01-02T11:06:27.000000000", + "2019-01-02T11:06:42.000000000", + "2019-01-02T11:08:54.000000000", + "2019-01-02T11:09:40.000000000", + "2019-01-02T11:09:54.000000000", + "2019-01-02T11:11:59.000000000", + "2019-01-02T11:12:17.000000000", + "2019-01-02T11:13:22.000000000", + "2019-01-02T11:14:06.000000000", + "2019-01-02T11:15:33.000000000", + "2019-01-02T11:16:10.000000000", + "2019-01-02T11:17:48.000000000", + "2019-01-02T11:19:15.000000000", + "2019-01-02T11:19:28.000000000", + "2019-01-02T11:19:43.000000000", + "2019-01-02T11:20:59.000000000", + "2019-01-02T11:25:35.000000000", + "2019-01-02T11:27:50.000000000", + "2019-01-02T11:30:05.000000000", + "2019-01-02T11:30:14.000000000", + "2019-01-02T11:30:42.000000000", + "2019-01-02T11:31:23.000000000", + "2019-01-02T11:33:04.000000000", + "2019-01-02T11:33:57.000000000", + "2019-01-02T11:34:10.000000000", + "2019-01-02T11:40:13.000000000", + "2019-01-02T11:41:32.000000000", + "2019-01-02T11:42:48.000000000", + "2019-01-02T11:43:17.000000000", + "2019-01-02T11:45:19.000000000", + "2019-01-02T11:46:09.000000000", + "2019-01-02T11:48:16.000000000", + "2019-01-02T11:49:37.000000000", + "2019-01-02T11:53:24.000000000", + "2019-01-02T11:54:27.000000000", + "2019-01-02T11:55:14.000000000", + "2019-01-02T11:56:50.000000000", + "2019-01-02T11:56:58.000000000", + "2019-01-02T11:57:04.000000000", + "2019-01-02T11:57:08.000000000", + "2019-01-02T11:57:14.000000000", + "2019-01-02T11:57:47.000000000", + "2019-01-02T11:59:25.000000000", + "2019-01-02T11:59:58.000000000", + "2019-01-02T12:00:35.000000000", + "2019-01-02T12:02:01.000000000", + "2019-01-02T12:02:06.000000000", + "2019-01-02T12:02:43.000000000", + "2019-01-02T12:03:14.000000000", + "2019-01-02T12:04:33.000000000", + "2019-01-02T12:04:35.000000000", + "2019-01-02T12:05:31.000000000", + "2019-01-02T12:06:08.000000000", + "2019-01-02T12:08:11.000000000", + "2019-01-02T12:08:20.000000000", + "2019-01-02T12:11:30.000000000", + "2019-01-02T12:11:34.000000000", + "2019-01-02T12:12:18.000000000", + "2019-01-02T12:15:30.000000000", + "2019-01-02T12:20:07.000000000", + "2019-01-02T12:20:59.000000000", + "2019-01-02T12:24:06.000000000", + "2019-01-02T12:26:09.000000000", + "2019-01-02T12:26:32.000000000", + "2019-01-02T12:26:48.000000000", + "2019-01-02T12:27:26.000000000", + "2019-01-02T12:30:19.000000000", + "2019-01-02T12:32:32.000000000", + "2019-01-02T12:36:19.000000000", + "2019-01-02T12:39:40.000000000", + "2019-01-02T12:39:44.000000000", + "2019-01-02T12:41:33.000000000", + "2019-01-02T12:42:00.000000000", + "2019-01-02T12:42:08.000000000", + "2019-01-02T12:42:14.000000000", + "2019-01-02T12:44:45.000000000", + "2019-01-02T12:45:58.000000000", + "2019-01-02T12:48:04.000000000", + "2019-01-02T12:49:22.000000000", + "2019-01-02T12:49:49.000000000", + "2019-01-02T12:50:10.000000000", + "2019-01-02T12:51:06.000000000", + "2019-01-02T12:52:47.000000000", + "2019-01-02T12:53:42.000000000", + "2019-01-02T12:54:31.000000000", + "2019-01-02T12:56:26.000000000", + "2019-01-02T12:59:31.000000000", + "2019-01-02T13:01:03.000000000", + "2019-01-02T13:02:20.000000000", + "2019-01-02T13:02:35.000000000", + "2019-01-02T13:03:37.000000000", + "2019-01-02T13:04:15.000000000", + "2019-01-02T13:05:05.000000000", + "2019-01-02T13:05:29.000000000", + "2019-01-02T13:07:17.000000000", + "2019-01-02T13:08:44.000000000", + "2019-01-02T13:09:35.000000000", + "2019-01-02T13:10:25.000000000", + "2019-01-02T13:11:04.000000000", + "2019-01-02T13:11:58.000000000", + "2019-01-02T13:12:25.000000000", + "2019-01-02T13:13:54.000000000", + "2019-01-02T13:17:07.000000000", + "2019-01-02T13:17:18.000000000", + "2019-01-02T13:17:22.000000000", + "2019-01-02T13:17:52.000000000", + "2019-01-02T13:18:26.000000000", + "2019-01-02T13:18:34.000000000", + "2019-01-02T13:18:44.000000000", + "2019-01-02T13:21:37.000000000", + "2019-01-02T13:21:58.000000000", + "2019-01-02T13:22:03.000000000", + "2019-01-02T13:22:30.000000000", + "2019-01-02T13:22:39.000000000", + "2019-01-02T13:24:37.000000000", + "2019-01-02T13:24:52.000000000", + "2019-01-02T13:26:00.000000000", + "2019-01-02T13:26:38.000000000", + "2019-01-02T13:30:08.000000000", + "2019-01-02T13:31:04.000000000", + "2019-01-02T13:31:22.000000000", + "2019-01-02T13:32:37.000000000", + "2019-01-02T13:33:42.000000000", + "2019-01-02T13:36:50.000000000", + "2019-01-02T13:37:30.000000000", + "2019-01-02T13:38:11.000000000", + "2019-01-02T13:38:12.000000000", + "2019-01-02T13:38:38.000000000", + "2019-01-02T13:41:04.000000000", + "2019-01-02T13:41:43.000000000", + "2019-01-02T13:41:56.000000000", + "2019-01-02T13:42:45.000000000", + "2019-01-02T13:42:49.000000000", + "2019-01-02T13:44:53.000000000", + "2019-01-02T13:45:02.000000000", + "2019-01-02T13:45:35.000000000", + "2019-01-02T13:48:19.000000000", + "2019-01-02T13:48:40.000000000", + "2019-01-02T13:49:01.000000000", + "2019-01-02T13:49:25.000000000", + "2019-01-02T13:50:31.000000000", + "2019-01-02T13:52:27.000000000", + "2019-01-02T13:52:38.000000000", + "2019-01-02T13:53:08.000000000", + "2019-01-02T13:53:10.000000000", + "2019-01-02T13:53:15.000000000", + "2019-01-02T13:53:24.000000000", + "2019-01-02T13:53:46.000000000", + "2019-01-02T13:53:57.000000000", + "2019-01-02T13:55:17.000000000", + "2019-01-02T13:56:29.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:57:12.000000000", + "2019-01-02T13:57:33.000000000", + "2019-01-02T14:00:56.000000000", + "2019-01-02T14:01:13.000000000", + "2019-01-02T14:03:14.000000000", + "2019-01-02T14:04:51.000000000", + "2019-01-02T14:05:18.000000000", + "2019-01-02T14:05:48.000000000", + "2019-01-02T14:05:51.000000000", + "2019-01-02T14:07:19.000000000", + "2019-01-02T14:08:04.000000000", + "2019-01-02T14:08:42.000000000", + "2019-01-02T14:09:33.000000000", + "2019-01-02T14:09:43.000000000", + "2019-01-02T14:10:58.000000000", + "2019-01-02T14:13:01.000000000", + "2019-01-02T14:13:31.000000000", + "2019-01-02T14:14:03.000000000", + "2019-01-02T14:16:38.000000000", + "2019-01-02T14:17:03.000000000", + "2019-01-02T14:18:53.000000000", + "2019-01-02T14:19:02.000000000", + "2019-01-02T14:19:56.000000000", + "2019-01-02T14:22:11.000000000", + "2019-01-02T14:22:18.000000000", + "2019-01-02T14:25:02.000000000", + "2019-01-02T14:25:35.000000000", + "2019-01-02T14:25:48.000000000", + "2019-01-02T14:26:09.000000000", + "2019-01-02T14:27:43.000000000", + "2019-01-02T14:27:46.000000000", + "2019-01-02T14:29:00.000000000", + "2019-01-02T14:29:32.000000000", + "2019-01-02T14:29:42.000000000", + "2019-01-02T14:29:44.000000000", + "2019-01-02T14:29:45.000000000", + "2019-01-02T14:29:51.000000000", + "2019-01-02T14:31:42.000000000", + "2019-01-02T14:33:25.000000000", + "2019-01-02T14:33:45.000000000", + "2019-01-02T14:34:36.000000000", + "2019-01-02T14:35:22.000000000", + "2019-01-02T14:35:52.000000000", + "2019-01-02T14:36:24.000000000", + "2019-01-02T14:37:05.000000000", + "2019-01-02T14:37:13.000000000", + "2019-01-02T14:38:31.000000000", + "2019-01-02T14:38:51.000000000", + "2019-01-02T14:39:24.000000000", + "2019-01-02T14:40:00.000000000", + "2019-01-02T14:41:30.000000000", + "2019-01-02T14:41:35.000000000", + "2019-01-02T14:42:00.000000000", + "2019-01-02T14:42:31.000000000", + "2019-01-02T14:44:18.000000000", + "2019-01-02T14:46:23.000000000", + "2019-01-02T14:47:00.000000000", + "2019-01-02T14:49:54.000000000", + "2019-01-02T14:50:09.000000000", + "2019-01-02T14:51:34.000000000", + "2019-01-02T14:52:05.000000000", + "2019-01-02T14:52:12.000000000", + "2019-01-02T14:53:17.000000000", + "2019-01-02T14:54:12.000000000", + "2019-01-02T14:55:05.000000000", + "2019-01-02T14:57:04.000000000", + "2019-01-02T14:57:18.000000000", + "2019-01-02T15:01:44.000000000", + "2019-01-02T15:01:50.000000000", + "2019-01-02T15:03:01.000000000", + "2019-01-02T15:03:04.000000000", + "2019-01-02T15:03:55.000000000", + "2019-01-02T15:03:58.000000000", + "2019-01-02T15:04:25.000000000", + "2019-01-02T15:04:32.000000000", + "2019-01-02T15:05:19.000000000", + "2019-01-02T15:08:49.000000000", + "2019-01-02T15:08:51.000000000", + "2019-01-02T15:10:57.000000000", + "2019-01-02T15:11:12.000000000", + "2019-01-02T15:11:22.000000000", + "2019-01-02T15:13:12.000000000", + "2019-01-02T15:16:25.000000000", + "2019-01-02T15:16:28.000000000", + "2019-01-02T15:16:59.000000000", + "2019-01-02T15:17:51.000000000", + "2019-01-02T15:18:25.000000000", + "2019-01-02T15:21:36.000000000", + "2019-01-02T15:21:55.000000000", + "2019-01-02T15:25:44.000000000", + "2019-01-02T15:26:11.000000000", + "2019-01-02T15:27:02.000000000", + "2019-01-02T15:31:04.000000000", + "2019-01-02T15:33:38.000000000", + "2019-01-02T15:34:04.000000000", + "2019-01-02T15:36:22.000000000", + "2019-01-02T15:37:15.000000000", + "2019-01-02T15:37:39.000000000", + "2019-01-02T15:39:06.000000000", + "2019-01-02T15:41:19.000000000", + "2019-01-02T15:41:27.000000000", + "2019-01-02T15:42:43.000000000", + "2019-01-02T15:43:31.000000000", + "2019-01-02T15:44:06.000000000", + "2019-01-02T15:45:36.000000000", + "2019-01-02T15:47:47.000000000", + "2019-01-02T15:48:37.000000000", + "2019-01-02T15:49:08.000000000", + "2019-01-02T15:49:10.000000000", + "2019-01-02T15:50:00.000000000", + "2019-01-02T15:50:22.000000000", + "2019-01-02T15:50:58.000000000", + "2019-01-02T15:51:26.000000000", + "2019-01-02T15:53:52.000000000", + "2019-01-02T15:54:09.000000000", + "2019-01-02T15:55:00.000000000", + "2019-01-02T15:55:57.000000000", + "2019-01-02T15:56:11.000000000", + "2019-01-02T15:56:44.000000000", + "2019-01-02T15:57:04.000000000", + "2019-01-02T16:00:26.000000000", + "2019-01-02T16:01:52.000000000", + "2019-01-02T16:03:24.000000000", + "2019-01-02T16:03:28.000000000", + "2019-01-02T16:04:32.000000000", + "2019-01-02T16:06:01.000000000", + "2019-01-02T16:06:43.000000000", + "2019-01-02T16:06:48.000000000", + "2019-01-02T16:07:51.000000000", + "2019-01-02T16:08:06.000000000", + "2019-01-02T16:08:19.000000000", + "2019-01-02T16:08:24.000000000", + "2019-01-02T16:08:26.000000000", + "2019-01-02T16:08:48.000000000", + "2019-01-02T16:09:01.000000000", + "2019-01-02T16:09:43.000000000", + "2019-01-02T16:12:38.000000000", + "2019-01-02T16:13:11.000000000", + "2019-01-02T16:13:18.000000000", + "2019-01-02T16:13:51.000000000", + "2019-01-02T16:14:31.000000000", + "2019-01-02T16:15:03.000000000", + "2019-01-02T16:15:27.000000000", + "2019-01-02T16:16:02.000000000", + "2019-01-02T16:16:45.000000000", + "2019-01-02T16:17:06.000000000", + "2019-01-02T16:17:13.000000000", + "2019-01-02T16:18:13.000000000", + "2019-01-02T16:19:17.000000000", + "2019-01-02T16:19:31.000000000", + "2019-01-02T16:22:27.000000000", + "2019-01-02T16:23:43.000000000", + "2019-01-02T16:24:15.000000000", + "2019-01-02T16:26:51.000000000", + "2019-01-02T16:26:55.000000000", + "2019-01-02T16:27:21.000000000", + "2019-01-02T16:28:09.000000000", + "2019-01-02T16:29:29.000000000", + "2019-01-02T16:31:59.000000000", + "2019-01-02T16:32:15.000000000", + "2019-01-02T16:33:55.000000000", + "2019-01-02T16:37:59.000000000", + "2019-01-02T16:38:29.000000000", + "2019-01-02T16:39:14.000000000", + "2019-01-02T16:40:59.000000000", + "2019-01-02T16:41:43.000000000", + "2019-01-02T16:42:07.000000000", + "2019-01-02T16:43:53.000000000", + "2019-01-02T16:44:01.000000000", + "2019-01-02T16:44:47.000000000", + "2019-01-02T16:45:22.000000000", + "2019-01-02T16:46:49.000000000", + "2019-01-02T16:46:56.000000000", + "2019-01-02T16:48:18.000000000", + "2019-01-02T16:49:53.000000000", + "2019-01-02T16:55:59.000000000", + "2019-01-02T16:57:05.000000000", + "2019-01-02T16:58:29.000000000", + "2019-01-02T16:58:31.000000000", + "2019-01-02T16:58:56.000000000", + "2019-01-02T17:00:16.000000000", + "2019-01-02T17:01:22.000000000", + "2019-01-02T17:03:54.000000000", + "2019-01-02T17:04:02.000000000", + "2019-01-02T17:04:11.000000000", + "2019-01-02T17:04:27.000000000", + "2019-01-02T17:05:23.000000000", + "2019-01-02T17:05:42.000000000", + "2019-01-02T17:07:12.000000000", + "2019-01-02T17:08:04.000000000", + "2019-01-02T17:08:41.000000000", + "2019-01-02T17:09:24.000000000", + "2019-01-02T17:10:09.000000000", + "2019-01-02T17:10:26.000000000", + "2019-01-02T17:12:32.000000000", + "2019-01-02T17:12:50.000000000", + "2019-01-02T17:12:55.000000000", + "2019-01-02T17:13:10.000000000", + "2019-01-02T17:14:49.000000000", + "2019-01-02T17:15:09.000000000", + "2019-01-02T17:16:11.000000000", + "2019-01-02T17:17:52.000000000", + "2019-01-02T17:19:33.000000000", + "2019-01-02T17:20:11.000000000", + "2019-01-02T17:20:24.000000000", + "2019-01-02T17:21:14.000000000", + "2019-01-02T17:21:15.000000000", + "2019-01-02T17:21:56.000000000", + "2019-01-02T17:22:07.000000000", + "2019-01-02T17:22:21.000000000", + "2019-01-02T17:22:22.000000000", + "2019-01-02T17:23:39.000000000", + "2019-01-02T17:25:15.000000000", + "2019-01-02T17:25:19.000000000", + "2019-01-02T17:25:51.000000000", + "2019-01-02T17:26:33.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:28:09.000000000", + "2019-01-02T17:28:38.000000000", + "2019-01-02T17:28:54.000000000", + "2019-01-02T17:30:41.000000000", + "2019-01-02T17:31:38.000000000", + "2019-01-02T17:31:51.000000000", + "2019-01-02T17:33:33.000000000", + "2019-01-02T17:35:48.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:38:48.000000000", + "2019-01-02T17:39:59.000000000", + "2019-01-02T17:40:43.000000000", + "2019-01-02T17:40:55.000000000", + "2019-01-02T17:41:05.000000000", + "2019-01-02T17:43:22.000000000", + "2019-01-02T17:48:16.000000000", + "2019-01-02T17:48:56.000000000", + "2019-01-02T17:50:29.000000000", + "2019-01-02T17:50:56.000000000", + "2019-01-02T17:51:04.000000000", + "2019-01-02T17:53:22.000000000", + "2019-01-02T17:53:41.000000000", + "2019-01-02T17:53:43.000000000", + "2019-01-02T17:54:37.000000000", + "2019-01-02T17:55:06.000000000", + "2019-01-02T17:57:05.000000000", + "2019-01-02T18:00:53.000000000", + "2019-01-02T18:02:19.000000000", + "2019-01-02T18:02:32.000000000", + "2019-01-02T18:03:44.000000000", + "2019-01-02T18:05:34.000000000", + "2019-01-02T18:06:06.000000000", + "2019-01-02T18:06:19.000000000", + "2019-01-02T18:07:27.000000000", + "2019-01-02T18:07:44.000000000", + "2019-01-02T18:11:12.000000000", + "2019-01-02T18:12:11.000000000", + "2019-01-02T18:12:28.000000000", + "2019-01-02T18:12:43.000000000", + "2019-01-02T18:13:26.000000000", + "2019-01-02T18:14:48.000000000", + "2019-01-02T18:16:04.000000000", + "2019-01-02T18:20:13.000000000", + "2019-01-02T18:21:16.000000000", + "2019-01-02T18:21:22.000000000", + "2019-01-02T18:21:26.000000000", + "2019-01-02T18:21:34.000000000", + "2019-01-02T18:22:12.000000000", + "2019-01-02T18:23:17.000000000", + "2019-01-02T18:24:25.000000000", + "2019-01-02T18:25:07.000000000", + "2019-01-02T18:26:06.000000000", + "2019-01-02T18:26:11.000000000", + "2019-01-02T18:27:02.000000000", + "2019-01-02T18:27:57.000000000", + "2019-01-02T18:27:59.000000000", + "2019-01-02T18:30:05.000000000", + "2019-01-02T18:33:09.000000000", + "2019-01-02T18:33:26.000000000", + "2019-01-02T18:36:34.000000000", + "2019-01-02T18:37:08.000000000", + "2019-01-02T18:39:04.000000000", + "2019-01-02T18:40:19.000000000", + "2019-01-02T18:40:38.000000000", + "2019-01-02T18:40:54.000000000", + "2019-01-02T18:41:38.000000000", + "2019-01-02T18:41:55.000000000", + "2019-01-02T18:42:07.000000000", + "2019-01-02T18:42:33.000000000", + "2019-01-02T18:46:52.000000000", + "2019-01-02T18:50:41.000000000", + "2019-01-02T18:51:45.000000000", + "2019-01-02T18:51:51.000000000", + "2019-01-02T18:53:52.000000000", + "2019-01-02T18:54:09.000000000", + "2019-01-02T18:56:21.000000000", + "2019-01-02T18:56:33.000000000", + "2019-01-02T18:58:12.000000000", + "2019-01-02T18:59:24.000000000", + "2019-01-02T19:01:16.000000000", + "2019-01-02T19:01:17.000000000", + "2019-01-02T19:01:50.000000000", + "2019-01-02T19:02:17.000000000", + "2019-01-02T19:02:55.000000000", + "2019-01-02T19:03:34.000000000", + "2019-01-02T19:05:34.000000000", + "2019-01-02T19:07:31.000000000", + "2019-01-02T19:09:07.000000000", + "2019-01-02T19:09:53.000000000", + "2019-01-02T19:11:03.000000000", + "2019-01-02T19:11:42.000000000", + "2019-01-02T19:12:04.000000000", + "2019-01-02T19:12:21.000000000", + "2019-01-02T19:12:54.000000000", + "2019-01-02T19:13:15.000000000", + "2019-01-02T19:14:03.000000000", + "2019-01-02T19:15:18.000000000", + "2019-01-02T19:16:11.000000000", + "2019-01-02T19:17:02.000000000", + "2019-01-02T19:17:12.000000000", + "2019-01-02T19:17:58.000000000", + "2019-01-02T19:18:02.000000000", + "2019-01-02T19:18:06.000000000", + "2019-01-02T19:19:12.000000000", + "2019-01-02T19:20:23.000000000", + "2019-01-02T19:21:02.000000000", + "2019-01-02T19:21:04.000000000", + "2019-01-02T19:21:09.000000000", + "2019-01-02T19:22:05.000000000", + "2019-01-02T19:24:09.000000000", + "2019-01-02T19:25:19.000000000", + "2019-01-02T19:25:58.000000000", + "2019-01-02T19:26:35.000000000", + "2019-01-02T19:28:12.000000000", + "2019-01-02T19:29:22.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:30:17.000000000", + "2019-01-02T19:31:04.000000000", + "2019-01-02T19:31:30.000000000", + "2019-01-02T19:32:42.000000000", + "2019-01-02T19:35:31.000000000", + "2019-01-02T19:35:34.000000000", + "2019-01-02T19:35:51.000000000", + "2019-01-02T19:36:37.000000000", + "2019-01-02T19:40:50.000000000", + "2019-01-02T19:41:24.000000000", + "2019-01-02T19:41:25.000000000", + "2019-01-02T19:41:54.000000000", + "2019-01-02T19:43:30.000000000", + "2019-01-02T19:44:21.000000000", + "2019-01-02T19:44:43.000000000", + "2019-01-02T19:44:58.000000000", + "2019-01-02T19:46:38.000000000", + "2019-01-02T19:48:20.000000000", + "2019-01-02T19:50:10.000000000", + "2019-01-02T19:52:16.000000000", + "2019-01-02T19:53:56.000000000", + "2019-01-02T19:54:02.000000000", + "2019-01-02T19:55:32.000000000", + "2019-01-02T19:55:34.000000000", + "2019-01-02T19:57:06.000000000", + "2019-01-02T19:57:33.000000000", + "2019-01-02T19:58:16.000000000", + "2019-01-02T19:59:16.000000000", + "2019-01-02T20:00:41.000000000", + "2019-01-02T20:01:58.000000000", + "2019-01-02T20:02:03.000000000", + "2019-01-02T20:02:18.000000000", + "2019-01-02T20:04:01.000000000", + "2019-01-02T20:04:06.000000000", + "2019-01-02T20:04:13.000000000", + "2019-01-02T20:04:26.000000000", + "2019-01-02T20:04:45.000000000", + "2019-01-02T20:05:57.000000000", + "2019-01-02T20:07:12.000000000", + "2019-01-02T20:07:36.000000000", + "2019-01-02T20:08:50.000000000", + "2019-01-02T20:10:46.000000000", + "2019-01-02T20:10:49.000000000", + "2019-01-02T20:11:41.000000000", + "2019-01-02T20:13:26.000000000", + "2019-01-02T20:15:15.000000000", + "2019-01-02T20:17:15.000000000", + "2019-01-02T20:18:32.000000000", + "2019-01-02T20:19:58.000000000", + "2019-01-02T20:24:07.000000000", + "2019-01-02T20:25:39.000000000", + "2019-01-02T20:26:34.000000000", + "2019-01-02T20:27:38.000000000", + "2019-01-02T20:30:33.000000000", + "2019-01-02T20:31:32.000000000", + "2019-01-02T20:32:58.000000000", + "2019-01-02T20:33:01.000000000", + "2019-01-02T20:33:27.000000000", + "2019-01-02T20:33:33.000000000", + "2019-01-02T20:34:40.000000000", + "2019-01-02T20:36:38.000000000", + "2019-01-02T20:38:11.000000000", + "2019-01-02T20:38:36.000000000", + "2019-01-02T20:38:43.000000000", + "2019-01-02T20:39:19.000000000", + "2019-01-02T20:45:46.000000000", + "2019-01-02T20:47:07.000000000", + "2019-01-02T20:47:47.000000000", + "2019-01-02T20:48:51.000000000", + "2019-01-02T20:49:03.000000000", + "2019-01-02T20:50:46.000000000", + "2019-01-02T20:52:00.000000000", + "2019-01-02T20:52:35.000000000", + "2019-01-02T20:53:07.000000000", + "2019-01-02T20:53:39.000000000", + "2019-01-02T20:54:07.000000000", + "2019-01-02T20:54:10.000000000", + "2019-01-02T20:56:40.000000000", + "2019-01-02T21:00:04.000000000", + "2019-01-02T21:00:28.000000000", + "2019-01-02T21:00:42.000000000", + "2019-01-02T21:02:37.000000000", + "2019-01-02T21:03:27.000000000", + "2019-01-02T21:04:43.000000000", + "2019-01-02T21:04:45.000000000", + "2019-01-02T21:05:13.000000000", + "2019-01-02T21:06:07.000000000", + "2019-01-02T21:06:17.000000000", + "2019-01-02T21:06:22.000000000", + "2019-01-02T21:09:07.000000000", + "2019-01-02T21:10:55.000000000", + "2019-01-02T21:11:46.000000000", + "2019-01-02T21:12:12.000000000", + "2019-01-02T21:12:21.000000000", + "2019-01-02T21:12:42.000000000", + "2019-01-02T21:12:57.000000000", + "2019-01-02T21:14:13.000000000", + "2019-01-02T21:15:03.000000000", + "2019-01-02T21:17:34.000000000", + "2019-01-02T21:19:13.000000000", + "2019-01-02T21:22:06.000000000", + "2019-01-02T21:22:43.000000000", + "2019-01-02T21:22:45.000000000", + "2019-01-02T21:24:19.000000000", + "2019-01-02T21:24:29.000000000", + "2019-01-02T21:24:52.000000000", + "2019-01-02T21:27:03.000000000", + "2019-01-02T21:27:13.000000000", + "2019-01-02T21:27:51.000000000", + "2019-01-02T21:28:09.000000000", + "2019-01-02T21:30:28.000000000", + "2019-01-02T21:30:41.000000000", + "2019-01-02T21:31:48.000000000", + "2019-01-02T21:31:56.000000000", + "2019-01-02T21:33:09.000000000", + "2019-01-02T21:34:41.000000000", + "2019-01-02T21:35:21.000000000", + "2019-01-02T21:35:52.000000000", + "2019-01-02T21:36:07.000000000", + "2019-01-02T21:36:40.000000000", + "2019-01-02T21:37:00.000000000", + "2019-01-02T21:37:54.000000000", + "2019-01-02T21:38:01.000000000", + "2019-01-02T21:38:57.000000000", + "2019-01-02T21:40:04.000000000", + "2019-01-02T21:40:30.000000000", + "2019-01-02T21:41:59.000000000", + "2019-01-02T21:42:36.000000000", + "2019-01-02T21:43:33.000000000", + "2019-01-02T21:43:35.000000000", + "2019-01-02T21:45:43.000000000", + "2019-01-02T21:45:47.000000000", + "2019-01-02T21:46:43.000000000", + "2019-01-02T21:46:52.000000000", + "2019-01-02T21:47:23.000000000", + "2019-01-02T21:48:21.000000000", + "2019-01-02T21:48:39.000000000", + "2019-01-02T21:50:12.000000000", + "2019-01-02T21:50:28.000000000", + "2019-01-02T21:50:47.000000000", + "2019-01-02T21:50:55.000000000", + "2019-01-02T21:52:31.000000000", + "2019-01-02T21:53:03.000000000", + "2019-01-02T21:53:44.000000000", + "2019-01-02T21:54:17.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:59:37.000000000", + "2019-01-02T22:00:05.000000000", + "2019-01-02T22:00:39.000000000", + "2019-01-02T22:01:23.000000000", + "2019-01-02T22:02:15.000000000", + "2019-01-02T22:03:03.000000000", + "2019-01-02T22:03:39.000000000", + "2019-01-02T22:05:47.000000000", + "2019-01-02T22:07:38.000000000", + "2019-01-02T22:08:02.000000000", + "2019-01-02T22:09:57.000000000", + "2019-01-02T22:10:22.000000000", + "2019-01-02T22:10:57.000000000", + "2019-01-02T22:12:26.000000000", + "2019-01-02T22:12:29.000000000", + "2019-01-02T22:12:40.000000000", + "2019-01-02T22:12:55.000000000", + "2019-01-02T22:14:12.000000000", + "2019-01-02T22:14:48.000000000", + "2019-01-02T22:21:23.000000000", + "2019-01-02T22:22:10.000000000", + "2019-01-02T22:22:13.000000000", + "2019-01-02T22:23:14.000000000", + "2019-01-02T22:25:37.000000000", + "2019-01-02T22:26:00.000000000", + "2019-01-02T22:26:06.000000000", + "2019-01-02T22:27:07.000000000", + "2019-01-02T22:27:30.000000000", + "2019-01-02T22:27:50.000000000", + "2019-01-02T22:28:22.000000000", + "2019-01-02T22:31:01.000000000", + "2019-01-02T22:31:07.000000000", + "2019-01-02T22:31:33.000000000", + "2019-01-02T22:32:59.000000000", + "2019-01-02T22:33:54.000000000", + "2019-01-02T22:33:59.000000000", + "2019-01-02T22:34:00.000000000", + "2019-01-02T22:34:29.000000000", + "2019-01-02T22:34:38.000000000", + "2019-01-02T22:35:18.000000000", + "2019-01-02T22:35:30.000000000", + "2019-01-02T22:37:57.000000000", + "2019-01-02T22:42:13.000000000", + "2019-01-02T22:43:35.000000000", + "2019-01-02T22:44:28.000000000", + "2019-01-02T22:44:40.000000000", + "2019-01-02T22:44:58.000000000", + "2019-01-02T22:46:00.000000000", + "2019-01-02T22:46:09.000000000", + "2019-01-02T22:51:22.000000000", + "2019-01-02T22:54:31.000000000", + "2019-01-02T22:55:37.000000000", + "2019-01-02T22:56:08.000000000", + "2019-01-02T22:56:28.000000000", + "2019-01-02T22:56:38.000000000", + "2019-01-02T22:56:51.000000000", + "2019-01-02T22:58:01.000000000", + "2019-01-02T23:00:20.000000000", + "2019-01-02T23:04:36.000000000", + "2019-01-02T23:05:21.000000000", + "2019-01-02T23:07:55.000000000", + "2019-01-02T23:08:08.000000000", + "2019-01-02T23:09:35.000000000", + "2019-01-02T23:10:24.000000000", + "2019-01-02T23:10:59.000000000", + "2019-01-02T23:12:45.000000000", + "2019-01-02T23:12:54.000000000", + "2019-01-02T23:13:29.000000000", + "2019-01-02T23:13:48.000000000", + "2019-01-02T23:15:37.000000000", + "2019-01-02T23:15:40.000000000", + "2019-01-02T23:15:48.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:47.000000000", + "2019-01-02T23:16:59.000000000", + "2019-01-02T23:19:21.000000000", + "2019-01-02T23:19:23.000000000", + "2019-01-02T23:19:33.000000000", + "2019-01-02T23:20:01.000000000", + "2019-01-02T23:20:30.000000000", + "2019-01-02T23:20:42.000000000", + "2019-01-02T23:23:03.000000000", + "2019-01-02T23:24:53.000000000", + "2019-01-02T23:25:19.000000000", + "2019-01-02T23:25:43.000000000", + "2019-01-02T23:27:29.000000000", + "2019-01-02T23:28:31.000000000", + "2019-01-02T23:29:12.000000000", + "2019-01-02T23:29:41.000000000", + "2019-01-02T23:29:48.000000000", + "2019-01-02T23:30:09.000000000", + "2019-01-02T23:30:28.000000000", + "2019-01-02T23:32:14.000000000", + "2019-01-02T23:32:41.000000000", + "2019-01-02T23:33:00.000000000", + "2019-01-02T23:33:17.000000000", + "2019-01-02T23:33:42.000000000", + "2019-01-02T23:36:23.000000000", + "2019-01-02T23:36:58.000000000", + "2019-01-02T23:37:06.000000000", + "2019-01-02T23:37:10.000000000", + "2019-01-02T23:39:12.000000000", + "2019-01-02T23:40:01.000000000", + "2019-01-02T23:40:22.000000000", + "2019-01-02T23:40:30.000000000", + "2019-01-02T23:40:38.000000000", + "2019-01-02T23:42:11.000000000", + "2019-01-02T23:44:07.000000000", + "2019-01-02T23:44:20.000000000", + "2019-01-02T23:44:36.000000000", + "2019-01-02T23:44:56.000000000", + "2019-01-02T23:47:43.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:34.000000000", + "2019-01-02T23:51:10.000000000", + "2019-01-02T23:52:45.000000000", + "2019-01-02T23:53:39.000000000", + "2019-01-02T23:53:43.000000000", + "2019-01-02T23:53:56.000000000", + "2019-01-02T23:54:13.000000000", + "2019-01-02T23:54:19.000000000", + "2019-01-02T23:55:46.000000000", + "2019-01-02T23:57:47.000000000", + "2019-01-02T23:58:58.000000000", + "2019-01-02T23:59:34.000000000", + "2019-01-03T00:00:42.000000000", + "2019-01-03T00:01:36.000000000", + "2019-01-03T00:04:57.000000000", + "2019-01-03T00:05:13.000000000", + "2019-01-03T00:07:23.000000000", + "2019-01-03T00:08:21.000000000", + "2019-01-03T00:08:44.000000000", + "2019-01-03T00:09:44.000000000", + "2019-01-03T00:09:49.000000000", + "2019-01-03T00:10:22.000000000", + "2019-01-03T00:10:36.000000000", + "2019-01-03T00:11:36.000000000", + "2019-01-03T00:13:12.000000000", + "2019-01-03T00:14:12.000000000", + "2019-01-03T00:14:19.000000000", + "2019-01-03T00:15:38.000000000", + "2019-01-03T00:17:00.000000000", + "2019-01-03T00:17:01.000000000", + "2019-01-03T00:18:56.000000000", + "2019-01-03T00:19:04.000000000", + "2019-01-03T00:21:05.000000000", + "2019-01-03T00:25:46.000000000", + "2019-01-03T00:26:38.000000000", + "2019-01-03T00:27:26.000000000", + "2019-01-03T00:27:33.000000000", + "2019-01-03T00:28:26.000000000", + "2019-01-03T00:28:53.000000000", + "2019-01-03T00:29:32.000000000", + "2019-01-03T00:31:22.000000000", + "2019-01-03T00:31:55.000000000", + "2019-01-03T00:32:56.000000000", + "2019-01-03T00:33:35.000000000", + "2019-01-03T00:35:46.000000000", + "2019-01-03T00:35:47.000000000", + "2019-01-03T00:38:43.000000000", + "2019-01-03T00:38:52.000000000", + "2019-01-03T00:38:55.000000000", + "2019-01-03T00:39:18.000000000", + "2019-01-03T00:40:17.000000000", + "2019-01-03T00:40:25.000000000", + "2019-01-03T00:41:56.000000000", + "2019-01-03T00:42:04.000000000", + "2019-01-03T00:43:05.000000000", + "2019-01-03T00:43:20.000000000", + "2019-01-03T00:44:38.000000000", + "2019-01-03T00:45:57.000000000", + "2019-01-03T00:47:08.000000000", + "2019-01-03T00:47:34.000000000", + "2019-01-03T00:48:25.000000000", + "2019-01-03T00:49:05.000000000", + "2019-01-03T00:49:54.000000000", + "2019-01-03T00:50:56.000000000", + "2019-01-03T00:51:40.000000000", + "2019-01-03T00:51:59.000000000", + "2019-01-03T00:54:50.000000000", + "2019-01-03T00:55:50.000000000", + "2019-01-03T01:00:18.000000000", + "2019-01-03T01:00:41.000000000", + "2019-01-03T01:00:48.000000000", + "2019-01-03T01:01:25.000000000", + "2019-01-03T01:01:30.000000000", + "2019-01-03T01:01:38.000000000", + "2019-01-03T01:02:00.000000000", + "2019-01-03T01:02:07.000000000", + "2019-01-03T01:02:50.000000000", + "2019-01-03T01:04:03.000000000", + "2019-01-03T01:04:58.000000000", + "2019-01-03T01:05:09.000000000", + "2019-01-03T01:05:49.000000000", + "2019-01-03T01:06:00.000000000", + "2019-01-03T01:06:39.000000000", + "2019-01-03T01:08:38.000000000", + "2019-01-03T01:09:24.000000000", + "2019-01-03T01:09:39.000000000", + "2019-01-03T01:09:55.000000000", + "2019-01-03T01:10:15.000000000", + "2019-01-03T01:10:20.000000000", + "2019-01-03T01:10:59.000000000", + "2019-01-03T01:11:27.000000000", + "2019-01-03T01:12:27.000000000", + "2019-01-03T01:12:48.000000000", + "2019-01-03T01:15:11.000000000", + "2019-01-03T01:15:35.000000000", + "2019-01-03T01:18:59.000000000", + "2019-01-03T01:19:22.000000000", + "2019-01-03T01:19:47.000000000", + "2019-01-03T01:19:48.000000000", + "2019-01-03T01:22:00.000000000", + "2019-01-03T01:23:27.000000000", + "2019-01-03T01:24:52.000000000", + "2019-01-03T01:25:32.000000000", + "2019-01-03T01:27:00.000000000", + "2019-01-03T01:27:18.000000000", + "2019-01-03T01:28:38.000000000", + "2019-01-03T01:30:13.000000000", + "2019-01-03T01:31:43.000000000", + "2019-01-03T01:32:02.000000000", + "2019-01-03T01:32:16.000000000", + "2019-01-03T01:32:57.000000000", + "2019-01-03T01:33:45.000000000", + "2019-01-03T01:34:17.000000000", + "2019-01-03T01:34:35.000000000", + "2019-01-03T01:35:22.000000000", + "2019-01-03T01:35:25.000000000", + "2019-01-03T01:35:52.000000000", + "2019-01-03T01:35:54.000000000", + "2019-01-03T01:36:03.000000000", + "2019-01-03T01:36:20.000000000", + "2019-01-03T01:36:53.000000000", + "2019-01-03T01:39:59.000000000", + "2019-01-03T01:40:02.000000000", + "2019-01-03T01:40:20.000000000", + "2019-01-03T01:42:06.000000000", + "2019-01-03T01:42:39.000000000", + "2019-01-03T01:43:18.000000000", + "2019-01-03T01:43:24.000000000", + "2019-01-03T01:43:37.000000000", + "2019-01-03T01:43:51.000000000", + "2019-01-03T01:45:51.000000000", + "2019-01-03T01:46:07.000000000", + "2019-01-03T01:46:17.000000000", + "2019-01-03T01:46:23.000000000", + "2019-01-03T01:46:24.000000000", + "2019-01-03T01:46:28.000000000", + "2019-01-03T01:47:38.000000000", + "2019-01-03T01:48:01.000000000", + "2019-01-03T01:48:06.000000000", + "2019-01-03T01:49:13.000000000", + "2019-01-03T01:49:20.000000000", + "2019-01-03T01:50:08.000000000", + "2019-01-03T01:51:14.000000000", + "2019-01-03T01:51:24.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:54:02.000000000", + "2019-01-03T01:55:05.000000000", + "2019-01-03T01:55:43.000000000", + "2019-01-03T01:55:51.000000000", + "2019-01-03T01:56:34.000000000", + "2019-01-03T01:57:05.000000000", + "2019-01-03T01:57:54.000000000", + "2019-01-03T01:58:21.000000000", + "2019-01-03T01:58:38.000000000", + "2019-01-03T01:59:53.000000000", + "2019-01-03T02:00:41.000000000", + "2019-01-03T02:00:45.000000000", + "2019-01-03T02:02:29.000000000", + "2019-01-03T02:02:34.000000000", + "2019-01-03T02:02:48.000000000", + "2019-01-03T02:05:57.000000000", + "2019-01-03T02:08:02.000000000", + "2019-01-03T02:08:06.000000000", + "2019-01-03T02:08:46.000000000", + "2019-01-03T02:11:15.000000000", + "2019-01-03T02:11:25.000000000", + "2019-01-03T02:11:58.000000000", + "2019-01-03T02:12:51.000000000", + "2019-01-03T02:13:07.000000000", + "2019-01-03T02:14:54.000000000", + "2019-01-03T02:17:59.000000000", + "2019-01-03T02:18:33.000000000", + "2019-01-03T02:19:24.000000000", + "2019-01-03T02:21:32.000000000", + "2019-01-03T02:22:38.000000000", + "2019-01-03T02:24:28.000000000", + "2019-01-03T02:24:52.000000000", + "2019-01-03T02:25:02.000000000", + "2019-01-03T02:26:14.000000000", + "2019-01-03T02:26:40.000000000", + "2019-01-03T02:26:50.000000000", + "2019-01-03T02:28:05.000000000", + "2019-01-03T02:28:12.000000000", + "2019-01-03T02:29:51.000000000", + "2019-01-03T02:30:16.000000000", + "2019-01-03T02:31:31.000000000", + "2019-01-03T02:31:47.000000000", + "2019-01-03T02:33:24.000000000", + "2019-01-03T02:33:46.000000000", + "2019-01-03T02:35:04.000000000", + "2019-01-03T02:35:12.000000000", + "2019-01-03T02:37:10.000000000", + "2019-01-03T02:37:33.000000000", + "2019-01-03T02:37:57.000000000", + "2019-01-03T02:38:19.000000000", + "2019-01-03T02:38:21.000000000", + "2019-01-03T02:38:44.000000000", + "2019-01-03T02:38:53.000000000", + "2019-01-03T02:40:37.000000000", + "2019-01-03T02:43:50.000000000", + "2019-01-03T02:45:00.000000000", + "2019-01-03T02:45:19.000000000", + "2019-01-03T02:45:21.000000000", + "2019-01-03T02:50:58.000000000", + "2019-01-03T02:53:06.000000000", + "2019-01-03T02:55:14.000000000", + "2019-01-03T02:57:39.000000000", + "2019-01-03T02:58:13.000000000", + "2019-01-03T02:59:27.000000000", + "2019-01-03T02:59:49.000000000", + "2019-01-03T03:00:34.000000000", + "2019-01-03T03:03:31.000000000", + "2019-01-03T03:06:59.000000000", + "2019-01-03T03:08:30.000000000", + "2019-01-03T03:08:37.000000000", + "2019-01-03T03:11:37.000000000", + "2019-01-03T03:11:59.000000000", + "2019-01-03T03:14:43.000000000", + "2019-01-03T03:18:33.000000000", + "2019-01-03T03:20:40.000000000", + "2019-01-03T03:21:03.000000000", + "2019-01-03T03:21:28.000000000", + "2019-01-03T03:22:04.000000000", + "2019-01-03T03:26:39.000000000", + "2019-01-03T03:27:38.000000000", + "2019-01-03T03:28:01.000000000", + "2019-01-03T03:28:39.000000000", + "2019-01-03T03:29:01.000000000", + "2019-01-03T03:30:07.000000000", + "2019-01-03T03:33:58.000000000", + "2019-01-03T03:34:30.000000000", + "2019-01-03T03:34:40.000000000", + "2019-01-03T03:35:44.000000000", + "2019-01-03T03:37:22.000000000", + "2019-01-03T03:37:52.000000000", + "2019-01-03T03:38:19.000000000", + "2019-01-03T03:42:20.000000000", + "2019-01-03T03:42:28.000000000", + "2019-01-03T03:43:18.000000000", + "2019-01-03T03:46:41.000000000", + "2019-01-03T03:47:17.000000000", + "2019-01-03T03:47:36.000000000", + "2019-01-03T03:49:34.000000000", + "2019-01-03T03:52:18.000000000", + "2019-01-03T03:55:26.000000000", + "2019-01-03T03:59:23.000000000", + "2019-01-03T03:59:56.000000000", + "2019-01-03T04:00:00.000000000", + "2019-01-03T04:00:11.000000000", + "2019-01-03T04:00:14.000000000", + "2019-01-03T04:01:54.000000000", + "2019-01-03T04:02:07.000000000", + "2019-01-03T04:03:57.000000000", + "2019-01-03T04:05:32.000000000", + "2019-01-03T04:05:38.000000000", + "2019-01-03T04:07:51.000000000", + "2019-01-03T04:08:10.000000000", + "2019-01-03T04:08:24.000000000", + "2019-01-03T04:09:18.000000000", + "2019-01-03T04:10:26.000000000", + "2019-01-03T04:11:44.000000000", + "2019-01-03T04:13:09.000000000", + "2019-01-03T04:13:39.000000000", + "2019-01-03T04:16:42.000000000", + "2019-01-03T04:17:38.000000000", + "2019-01-03T04:18:02.000000000", + "2019-01-03T04:18:30.000000000", + "2019-01-03T04:18:37.000000000", + "2019-01-03T04:20:08.000000000", + "2019-01-03T04:20:16.000000000", + "2019-01-03T04:20:54.000000000", + "2019-01-03T04:22:08.000000000", + "2019-01-03T04:26:31.000000000", + "2019-01-03T04:28:06.000000000", + "2019-01-03T04:28:54.000000000", + "2019-01-03T04:30:36.000000000", + "2019-01-03T04:33:04.000000000", + "2019-01-03T04:33:08.000000000", + "2019-01-03T04:35:35.000000000", + "2019-01-03T04:35:53.000000000", + "2019-01-03T04:37:47.000000000", + "2019-01-03T04:39:34.000000000", + "2019-01-03T04:40:47.000000000", + "2019-01-03T04:41:31.000000000", + "2019-01-03T04:41:46.000000000", + "2019-01-03T04:42:05.000000000", + "2019-01-03T04:42:33.000000000", + "2019-01-03T04:42:59.000000000", + "2019-01-03T04:43:34.000000000", + "2019-01-03T04:44:13.000000000", + "2019-01-03T04:45:01.000000000", + "2019-01-03T04:45:10.000000000", + "2019-01-03T04:45:25.000000000", + "2019-01-03T04:46:32.000000000", + "2019-01-03T04:46:33.000000000", + "2019-01-03T04:46:46.000000000", + "2019-01-03T04:46:58.000000000", + "2019-01-03T04:47:00.000000000", + "2019-01-03T04:49:45.000000000", + "2019-01-03T04:50:11.000000000", + "2019-01-03T04:50:51.000000000", + "2019-01-03T04:51:05.000000000", + "2019-01-03T04:51:27.000000000", + "2019-01-03T04:51:39.000000000", + "2019-01-03T04:52:23.000000000", + "2019-01-03T04:52:34.000000000", + "2019-01-03T04:53:30.000000000", + "2019-01-03T04:55:38.000000000", + "2019-01-03T04:56:08.000000000", + "2019-01-03T04:56:33.000000000", + "2019-01-03T04:56:42.000000000", + "2019-01-03T05:00:21.000000000", + "2019-01-03T05:01:18.000000000", + "2019-01-03T05:02:18.000000000", + "2019-01-03T05:02:40.000000000", + "2019-01-03T05:03:06.000000000", + "2019-01-03T05:03:55.000000000", + "2019-01-03T05:06:02.000000000", + "2019-01-03T05:06:48.000000000", + "2019-01-03T05:08:45.000000000", + "2019-01-03T05:08:54.000000000", + "2019-01-03T05:09:04.000000000", + "2019-01-03T05:10:45.000000000", + "2019-01-03T05:12:41.000000000", + "2019-01-03T05:12:58.000000000", + "2019-01-03T05:13:30.000000000", + "2019-01-03T05:14:31.000000000", + "2019-01-03T05:16:24.000000000", + "2019-01-03T05:17:01.000000000", + "2019-01-03T05:17:29.000000000", + "2019-01-03T05:17:38.000000000", + "2019-01-03T05:18:23.000000000", + "2019-01-03T05:20:00.000000000", + "2019-01-03T05:22:32.000000000", + "2019-01-03T05:22:38.000000000", + "2019-01-03T05:23:05.000000000", + "2019-01-03T05:23:16.000000000", + "2019-01-03T05:23:42.000000000", + "2019-01-03T05:25:04.000000000", + "2019-01-03T05:25:15.000000000", + "2019-01-03T05:26:31.000000000", + "2019-01-03T05:33:27.000000000", + "2019-01-03T05:35:03.000000000", + "2019-01-03T05:35:15.000000000", + "2019-01-03T05:36:38.000000000", + "2019-01-03T05:36:45.000000000", + "2019-01-03T05:38:27.000000000", + "2019-01-03T05:38:43.000000000", + "2019-01-03T05:38:49.000000000", + "2019-01-03T05:38:52.000000000", + "2019-01-03T05:39:04.000000000", + "2019-01-03T05:41:56.000000000", + "2019-01-03T05:44:42.000000000", + "2019-01-03T05:46:41.000000000", + "2019-01-03T05:46:56.000000000", + "2019-01-03T05:47:03.000000000", + "2019-01-03T05:47:09.000000000", + "2019-01-03T05:47:34.000000000", + "2019-01-03T05:48:04.000000000", + "2019-01-03T05:48:13.000000000", + "2019-01-03T05:49:11.000000000", + "2019-01-03T05:51:27.000000000", + "2019-01-03T05:51:42.000000000", + "2019-01-03T05:51:52.000000000", + "2019-01-03T05:52:52.000000000", + "2019-01-03T05:54:29.000000000", + "2019-01-03T05:54:37.000000000", + "2019-01-03T05:55:12.000000000", + "2019-01-03T05:55:38.000000000", + "2019-01-03T05:56:47.000000000", + "2019-01-03T05:57:22.000000000", + "2019-01-03T05:59:30.000000000", + "2019-01-03T06:01:44.000000000", + "2019-01-03T06:01:47.000000000", + "2019-01-03T06:02:32.000000000", + "2019-01-03T06:05:27.000000000", + "2019-01-03T06:06:09.000000000", + "2019-01-03T06:06:38.000000000", + "2019-01-03T06:07:16.000000000", + "2019-01-03T06:08:57.000000000", + "2019-01-03T06:09:16.000000000", + "2019-01-03T06:10:13.000000000", + "2019-01-03T06:10:31.000000000", + "2019-01-03T06:11:40.000000000", + "2019-01-03T06:12:04.000000000", + "2019-01-03T06:13:19.000000000", + "2019-01-03T06:15:59.000000000", + "2019-01-03T06:17:53.000000000", + "2019-01-03T06:18:10.000000000", + "2019-01-03T06:18:51.000000000", + "2019-01-03T06:18:54.000000000", + "2019-01-03T06:19:44.000000000", + "2019-01-03T06:20:09.000000000", + "2019-01-03T06:20:19.000000000", + "2019-01-03T06:22:28.000000000", + "2019-01-03T06:23:13.000000000", + "2019-01-03T06:23:52.000000000", + "2019-01-03T06:23:57.000000000", + "2019-01-03T06:24:19.000000000", + "2019-01-03T06:24:32.000000000", + "2019-01-03T06:25:14.000000000", + "2019-01-03T06:26:29.000000000", + "2019-01-03T06:26:39.000000000", + "2019-01-03T06:27:25.000000000", + "2019-01-03T06:27:48.000000000", + "2019-01-03T06:27:59.000000000", + "2019-01-03T06:28:53.000000000", + "2019-01-03T06:30:16.000000000", + "2019-01-03T06:30:42.000000000", + "2019-01-03T06:31:06.000000000", + "2019-01-03T06:31:16.000000000", + "2019-01-03T06:31:28.000000000", + "2019-01-03T06:31:58.000000000", + "2019-01-03T06:35:02.000000000", + "2019-01-03T06:35:42.000000000", + "2019-01-03T06:36:00.000000000", + "2019-01-03T06:36:41.000000000", + "2019-01-03T06:37:30.000000000", + "2019-01-03T06:41:32.000000000", + "2019-01-03T06:42:59.000000000", + "2019-01-03T06:44:17.000000000", + "2019-01-03T06:45:08.000000000", + "2019-01-03T06:46:24.000000000", + "2019-01-03T06:46:27.000000000", + "2019-01-03T06:49:50.000000000", + "2019-01-03T06:52:16.000000000", + "2019-01-03T06:53:31.000000000", + "2019-01-03T06:53:50.000000000", + "2019-01-03T06:54:35.000000000", + "2019-01-03T06:55:50.000000000", + "2019-01-03T06:56:33.000000000", + "2019-01-03T06:56:35.000000000", + "2019-01-03T06:56:47.000000000", + "2019-01-03T06:56:48.000000000", + "2019-01-03T06:57:25.000000000", + "2019-01-03T06:58:12.000000000", + "2019-01-03T06:59:57.000000000", + "2019-01-03T07:01:35.000000000", + "2019-01-03T07:03:07.000000000", + "2019-01-03T07:03:19.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:06:23.000000000", + "2019-01-03T07:06:47.000000000", + "2019-01-03T07:08:05.000000000", + "2019-01-03T07:08:15.000000000", + "2019-01-03T07:11:10.000000000", + "2019-01-03T07:14:07.000000000", + "2019-01-03T07:15:32.000000000", + "2019-01-03T07:15:33.000000000", + "2019-01-03T07:15:50.000000000", + "2019-01-03T07:16:22.000000000", + "2019-01-03T07:17:29.000000000", + "2019-01-03T07:17:45.000000000", + "2019-01-03T07:18:21.000000000", + "2019-01-03T07:20:48.000000000", + "2019-01-03T07:21:15.000000000", + "2019-01-03T07:22:46.000000000", + "2019-01-03T07:25:41.000000000", + "2019-01-03T07:27:18.000000000", + "2019-01-03T07:27:21.000000000", + "2019-01-03T07:27:22.000000000", + "2019-01-03T07:28:59.000000000", + "2019-01-03T07:29:07.000000000", + "2019-01-03T07:29:47.000000000", + "2019-01-03T07:31:36.000000000", + "2019-01-03T07:32:04.000000000", + "2019-01-03T07:32:47.000000000", + "2019-01-03T07:33:05.000000000", + "2019-01-03T07:33:44.000000000", + "2019-01-03T07:34:20.000000000", + "2019-01-03T07:35:38.000000000", + "2019-01-03T07:38:58.000000000", + "2019-01-03T07:41:01.000000000", + "2019-01-03T07:42:46.000000000", + "2019-01-03T07:43:20.000000000", + "2019-01-03T07:44:12.000000000", + "2019-01-03T07:44:20.000000000", + "2019-01-03T07:45:46.000000000", + "2019-01-03T07:47:21.000000000", + "2019-01-03T07:48:32.000000000", + "2019-01-03T07:49:34.000000000", + "2019-01-03T07:51:56.000000000", + "2019-01-03T07:53:59.000000000", + "2019-01-03T07:56:15.000000000", + "2019-01-03T07:56:43.000000000", + "2019-01-03T07:58:10.000000000", + "2019-01-03T07:59:46.000000000", + "2019-01-03T08:00:56.000000000", + "2019-01-03T08:01:08.000000000", + "2019-01-03T08:01:56.000000000", + "2019-01-03T08:03:52.000000000", + "2019-01-03T08:05:08.000000000", + "2019-01-03T08:06:22.000000000", + "2019-01-03T08:07:10.000000000", + "2019-01-03T08:07:37.000000000", + "2019-01-03T08:08:33.000000000", + "2019-01-03T08:08:44.000000000", + "2019-01-03T08:11:52.000000000", + "2019-01-03T08:13:45.000000000", + "2019-01-03T08:14:23.000000000", + "2019-01-03T08:15:42.000000000", + "2019-01-03T08:16:16.000000000", + "2019-01-03T08:16:17.000000000", + "2019-01-03T08:16:39.000000000", + "2019-01-03T08:16:43.000000000", + "2019-01-03T08:20:27.000000000", + "2019-01-03T08:21:38.000000000", + "2019-01-03T08:21:47.000000000", + "2019-01-03T08:22:16.000000000", + "2019-01-03T08:22:28.000000000", + "2019-01-03T08:23:15.000000000", + "2019-01-03T08:23:25.000000000", + "2019-01-03T08:24:38.000000000", + "2019-01-03T08:24:40.000000000", + "2019-01-03T08:24:44.000000000", + "2019-01-03T08:25:15.000000000", + "2019-01-03T08:26:17.000000000", + "2019-01-03T08:26:30.000000000", + "2019-01-03T08:26:33.000000000", + "2019-01-03T08:27:10.000000000", + "2019-01-03T08:27:32.000000000", + "2019-01-03T08:28:36.000000000", + "2019-01-03T08:29:20.000000000", + "2019-01-03T08:30:21.000000000", + "2019-01-03T08:31:10.000000000", + "2019-01-03T08:32:51.000000000", + "2019-01-03T08:34:18.000000000", + "2019-01-03T08:35:47.000000000", + "2019-01-03T08:37:17.000000000", + "2019-01-03T08:37:43.000000000", + "2019-01-03T08:39:19.000000000", + "2019-01-03T08:39:22.000000000", + "2019-01-03T08:39:33.000000000", + "2019-01-03T08:39:52.000000000", + "2019-01-03T08:40:14.000000000", + "2019-01-03T08:40:15.000000000", + "2019-01-03T08:40:23.000000000", + "2019-01-03T08:42:06.000000000", + "2019-01-03T08:42:09.000000000", + "2019-01-03T08:43:04.000000000", + "2019-01-03T08:43:38.000000000", + "2019-01-03T08:44:15.000000000", + "2019-01-03T08:44:22.000000000", + "2019-01-03T08:45:09.000000000", + "2019-01-03T08:45:16.000000000", + "2019-01-03T08:48:34.000000000", + "2019-01-03T08:49:48.000000000", + "2019-01-03T08:50:49.000000000", + "2019-01-03T08:50:51.000000000", + "2019-01-03T08:52:21.000000000", + "2019-01-03T08:53:05.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:20.000000000", + "2019-01-03T08:56:02.000000000", + "2019-01-03T08:56:13.000000000", + "2019-01-03T08:57:43.000000000", + "2019-01-03T08:58:53.000000000", + "2019-01-03T08:59:17.000000000", + "2019-01-03T08:59:50.000000000", + "2019-01-03T09:00:11.000000000", + "2019-01-03T09:00:19.000000000", + "2019-01-03T09:01:06.000000000", + "2019-01-03T09:02:22.000000000", + "2019-01-03T09:02:47.000000000", + "2019-01-03T09:03:24.000000000", + "2019-01-03T09:03:30.000000000", + "2019-01-03T09:07:53.000000000", + "2019-01-03T09:08:30.000000000", + "2019-01-03T09:09:07.000000000", + "2019-01-03T09:10:43.000000000", + "2019-01-03T09:11:19.000000000", + "2019-01-03T09:11:35.000000000", + "2019-01-03T09:12:08.000000000", + "2019-01-03T09:14:34.000000000", + "2019-01-03T09:14:38.000000000", + "2019-01-03T09:15:12.000000000", + "2019-01-03T09:18:24.000000000", + "2019-01-03T09:19:49.000000000", + "2019-01-03T09:20:11.000000000", + "2019-01-03T09:20:51.000000000", + "2019-01-03T09:21:11.000000000", + "2019-01-03T09:21:14.000000000", + "2019-01-03T09:21:44.000000000", + "2019-01-03T09:22:16.000000000", + "2019-01-03T09:22:21.000000000", + "2019-01-03T09:23:25.000000000", + "2019-01-03T09:24:34.000000000", + "2019-01-03T09:25:49.000000000", + "2019-01-03T09:25:50.000000000", + "2019-01-03T09:26:02.000000000", + "2019-01-03T09:27:06.000000000", + "2019-01-03T09:28:18.000000000", + "2019-01-03T09:28:29.000000000", + "2019-01-03T09:29:48.000000000", + "2019-01-03T09:29:59.000000000", + "2019-01-03T09:31:21.000000000", + "2019-01-03T09:32:49.000000000", + "2019-01-03T09:34:33.000000000", + "2019-01-03T09:35:15.000000000", + "2019-01-03T09:36:51.000000000", + "2019-01-03T09:37:30.000000000", + "2019-01-03T09:37:52.000000000", + "2019-01-03T09:38:37.000000000", + "2019-01-03T09:41:20.000000000", + "2019-01-03T09:41:30.000000000", + "2019-01-03T09:41:43.000000000", + "2019-01-03T09:43:10.000000000", + "2019-01-03T09:44:15.000000000", + "2019-01-03T09:44:35.000000000", + "2019-01-03T09:46:24.000000000", + "2019-01-03T09:46:28.000000000", + "2019-01-03T09:46:55.000000000", + "2019-01-03T09:47:15.000000000", + "2019-01-03T09:47:54.000000000", + "2019-01-03T09:49:10.000000000", + "2019-01-03T09:50:25.000000000", + "2019-01-03T09:51:02.000000000", + "2019-01-03T09:51:24.000000000", + "2019-01-03T09:51:50.000000000", + "2019-01-03T09:51:58.000000000", + "2019-01-03T09:52:58.000000000", + "2019-01-03T09:54:03.000000000", + "2019-01-03T09:58:05.000000000", + "2019-01-03T09:58:15.000000000", + "2019-01-03T09:58:38.000000000", + "2019-01-03T09:59:42.000000000", + "2019-01-03T10:02:57.000000000", + "2019-01-03T10:04:32.000000000", + "2019-01-03T10:04:35.000000000", + "2019-01-03T10:05:11.000000000", + "2019-01-03T10:06:08.000000000", + "2019-01-03T10:06:20.000000000", + "2019-01-03T10:06:23.000000000", + "2019-01-03T10:08:52.000000000", + "2019-01-03T10:09:06.000000000", + "2019-01-03T10:09:44.000000000", + "2019-01-03T10:10:48.000000000", + "2019-01-03T10:11:29.000000000", + "2019-01-03T10:11:48.000000000", + "2019-01-03T10:13:04.000000000", + "2019-01-03T10:13:32.000000000", + "2019-01-03T10:14:33.000000000", + "2019-01-03T10:14:39.000000000", + "2019-01-03T10:15:11.000000000", + "2019-01-03T10:19:56.000000000", + "2019-01-03T10:21:26.000000000", + "2019-01-03T10:21:45.000000000", + "2019-01-03T10:24:03.000000000", + "2019-01-03T10:24:59.000000000", + "2019-01-03T10:26:51.000000000", + "2019-01-03T10:27:09.000000000", + "2019-01-03T10:27:39.000000000", + "2019-01-03T10:28:24.000000000", + "2019-01-03T10:28:41.000000000", + "2019-01-03T10:28:51.000000000", + "2019-01-03T10:30:09.000000000", + "2019-01-03T10:32:35.000000000", + "2019-01-03T10:32:59.000000000", + "2019-01-03T10:34:15.000000000", + "2019-01-03T10:34:29.000000000", + "2019-01-03T10:34:34.000000000", + "2019-01-03T10:35:47.000000000", + "2019-01-03T10:36:21.000000000", + "2019-01-03T10:36:28.000000000", + "2019-01-03T10:38:32.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:34.000000000", + "2019-01-03T10:40:26.000000000", + "2019-01-03T10:41:42.000000000", + "2019-01-03T10:43:02.000000000", + "2019-01-03T10:45:58.000000000", + "2019-01-03T10:47:55.000000000", + "2019-01-03T10:48:03.000000000", + "2019-01-03T10:48:09.000000000", + "2019-01-03T10:49:47.000000000", + "2019-01-03T10:50:47.000000000", + "2019-01-03T10:51:00.000000000", + "2019-01-03T10:51:15.000000000", + "2019-01-03T10:51:54.000000000", + "2019-01-03T10:51:59.000000000", + "2019-01-03T10:52:15.000000000", + "2019-01-03T10:52:46.000000000", + "2019-01-03T10:53:46.000000000", + "2019-01-03T10:55:24.000000000", + "2019-01-03T10:59:26.000000000", + "2019-01-03T11:00:10.000000000", + "2019-01-03T11:00:43.000000000", + "2019-01-03T11:00:44.000000000", + "2019-01-03T11:02:04.000000000", + "2019-01-03T11:03:36.000000000", + "2019-01-03T11:04:28.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:41.000000000", + "2019-01-03T11:05:55.000000000", + "2019-01-03T11:06:06.000000000", + "2019-01-03T11:06:45.000000000", + "2019-01-03T11:07:23.000000000", + "2019-01-03T11:08:31.000000000", + "2019-01-03T11:09:45.000000000", + "2019-01-03T11:10:01.000000000", + "2019-01-03T11:12:03.000000000", + "2019-01-03T11:12:05.000000000", + "2019-01-03T11:13:00.000000000", + "2019-01-03T11:14:19.000000000", + "2019-01-03T11:16:54.000000000", + "2019-01-03T11:18:16.000000000", + "2019-01-03T11:20:33.000000000", + "2019-01-03T11:22:37.000000000", + "2019-01-03T11:22:42.000000000", + "2019-01-03T11:23:53.000000000", + "2019-01-03T11:25:57.000000000", + "2019-01-03T11:26:17.000000000", + "2019-01-03T11:27:00.000000000", + "2019-01-03T11:27:35.000000000", + "2019-01-03T11:28:18.000000000", + "2019-01-03T11:28:45.000000000", + "2019-01-03T11:29:02.000000000", + "2019-01-03T11:29:22.000000000", + "2019-01-03T11:30:31.000000000", + "2019-01-03T11:32:12.000000000", + "2019-01-03T11:32:25.000000000", + "2019-01-03T11:33:04.000000000", + "2019-01-03T11:33:11.000000000", + "2019-01-03T11:34:35.000000000", + "2019-01-03T11:34:42.000000000", + "2019-01-03T11:36:37.000000000", + "2019-01-03T11:37:40.000000000", + "2019-01-03T11:40:08.000000000", + "2019-01-03T11:40:24.000000000", + "2019-01-03T11:40:42.000000000", + "2019-01-03T11:41:44.000000000", + "2019-01-03T11:42:03.000000000", + "2019-01-03T11:42:04.000000000", + "2019-01-03T11:42:50.000000000", + "2019-01-03T11:45:25.000000000", + "2019-01-03T11:46:02.000000000", + "2019-01-03T11:46:37.000000000", + "2019-01-03T11:48:22.000000000", + "2019-01-03T11:48:26.000000000", + "2019-01-03T11:51:18.000000000", + "2019-01-03T11:51:26.000000000", + "2019-01-03T11:52:02.000000000", + "2019-01-03T11:55:01.000000000", + "2019-01-03T11:55:16.000000000", + "2019-01-03T11:55:50.000000000", + "2019-01-03T11:56:20.000000000", + "2019-01-03T11:56:56.000000000", + "2019-01-03T11:57:13.000000000", + "2019-01-03T11:57:15.000000000", + "2019-01-03T11:57:22.000000000", + "2019-01-03T11:59:20.000000000", + "2019-01-03T11:59:22.000000000", + "2019-01-03T12:00:25.000000000", + "2019-01-03T12:00:44.000000000", + "2019-01-03T12:00:57.000000000", + "2019-01-03T12:02:08.000000000", + "2019-01-03T12:02:09.000000000", + "2019-01-03T12:02:34.000000000", + "2019-01-03T12:04:34.000000000", + "2019-01-03T12:06:47.000000000", + "2019-01-03T12:07:25.000000000", + "2019-01-03T12:07:42.000000000", + "2019-01-03T12:08:07.000000000", + "2019-01-03T12:08:53.000000000", + "2019-01-03T12:09:13.000000000", + "2019-01-03T12:09:23.000000000", + "2019-01-03T12:09:27.000000000", + "2019-01-03T12:09:57.000000000", + "2019-01-03T12:10:14.000000000", + "2019-01-03T12:10:27.000000000", + "2019-01-03T12:10:46.000000000", + "2019-01-03T12:11:16.000000000", + "2019-01-03T12:15:24.000000000", + "2019-01-03T12:15:43.000000000", + "2019-01-03T12:16:34.000000000", + "2019-01-03T12:16:52.000000000", + "2019-01-03T12:17:09.000000000", + "2019-01-03T12:18:43.000000000", + "2019-01-03T12:20:43.000000000", + "2019-01-03T12:20:57.000000000", + "2019-01-03T12:21:28.000000000", + "2019-01-03T12:21:39.000000000", + "2019-01-03T12:23:09.000000000", + "2019-01-03T12:23:56.000000000", + "2019-01-03T12:24:50.000000000", + "2019-01-03T12:25:17.000000000", + "2019-01-03T12:25:19.000000000", + "2019-01-03T12:25:51.000000000", + "2019-01-03T12:26:38.000000000", + "2019-01-03T12:26:44.000000000", + "2019-01-03T12:26:49.000000000", + "2019-01-03T12:26:50.000000000", + "2019-01-03T12:29:28.000000000", + "2019-01-03T12:29:42.000000000", + "2019-01-03T12:30:41.000000000", + "2019-01-03T12:31:22.000000000", + "2019-01-03T12:31:37.000000000", + "2019-01-03T12:32:18.000000000", + "2019-01-03T12:33:35.000000000", + "2019-01-03T12:34:04.000000000", + "2019-01-03T12:35:01.000000000", + "2019-01-03T12:35:45.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:40:35.000000000", + "2019-01-03T12:42:04.000000000", + "2019-01-03T12:42:07.000000000", + "2019-01-03T12:46:06.000000000", + "2019-01-03T12:46:43.000000000", + "2019-01-03T12:46:45.000000000", + "2019-01-03T12:50:17.000000000", + "2019-01-03T12:52:16.000000000", + "2019-01-03T12:52:37.000000000", + "2019-01-03T12:52:38.000000000", + "2019-01-03T12:52:45.000000000", + "2019-01-03T12:54:11.000000000", + "2019-01-03T12:54:41.000000000", + "2019-01-03T12:57:07.000000000", + "2019-01-03T13:00:02.000000000", + "2019-01-03T13:00:10.000000000", + "2019-01-03T13:00:13.000000000", + "2019-01-03T13:00:33.000000000", + "2019-01-03T13:02:02.000000000", + "2019-01-03T13:02:38.000000000", + "2019-01-03T13:02:51.000000000", + "2019-01-03T13:04:35.000000000", + "2019-01-03T13:06:29.000000000", + "2019-01-03T13:07:25.000000000", + "2019-01-03T13:08:55.000000000", + "2019-01-03T13:09:53.000000000", + "2019-01-03T13:11:50.000000000", + "2019-01-03T13:12:18.000000000", + "2019-01-03T13:12:24.000000000", + "2019-01-03T13:13:29.000000000", + "2019-01-03T13:14:08.000000000", + "2019-01-03T13:14:22.000000000", + "2019-01-03T13:15:04.000000000", + "2019-01-03T13:15:47.000000000", + "2019-01-03T13:15:52.000000000", + "2019-01-03T13:16:19.000000000", + "2019-01-03T13:20:10.000000000", + "2019-01-03T13:21:04.000000000", + "2019-01-03T13:21:11.000000000", + "2019-01-03T13:21:36.000000000", + "2019-01-03T13:22:51.000000000", + "2019-01-03T13:23:14.000000000", + "2019-01-03T13:23:35.000000000", + "2019-01-03T13:23:54.000000000", + "2019-01-03T13:24:54.000000000", + "2019-01-03T13:26:59.000000000", + "2019-01-03T13:27:34.000000000", + "2019-01-03T13:31:57.000000000", + "2019-01-03T13:32:03.000000000", + "2019-01-03T13:35:05.000000000", + "2019-01-03T13:36:32.000000000", + "2019-01-03T13:39:38.000000000", + "2019-01-03T13:40:05.000000000", + "2019-01-03T13:40:40.000000000", + "2019-01-03T13:41:47.000000000", + "2019-01-03T13:42:35.000000000", + "2019-01-03T13:42:54.000000000", + "2019-01-03T13:47:05.000000000", + "2019-01-03T13:47:09.000000000", + "2019-01-03T13:50:34.000000000", + "2019-01-03T13:50:36.000000000", + "2019-01-03T13:51:33.000000000", + "2019-01-03T13:52:21.000000000", + "2019-01-03T13:52:39.000000000", + "2019-01-03T13:54:14.000000000", + "2019-01-03T13:56:27.000000000", + "2019-01-03T13:59:46.000000000", + "2019-01-03T13:59:48.000000000", + "2019-01-03T14:04:36.000000000", + "2019-01-03T14:07:34.000000000", + "2019-01-03T14:08:20.000000000", + "2019-01-03T14:08:29.000000000", + "2019-01-03T14:08:45.000000000", + "2019-01-03T14:11:48.000000000", + "2019-01-03T14:11:58.000000000", + "2019-01-03T14:14:21.000000000", + "2019-01-03T14:15:05.000000000", + "2019-01-03T14:16:57.000000000", + "2019-01-03T14:17:27.000000000", + "2019-01-03T14:18:30.000000000", + "2019-01-03T14:19:44.000000000", + "2019-01-03T14:21:06.000000000", + "2019-01-03T14:21:12.000000000", + "2019-01-03T14:23:05.000000000", + "2019-01-03T14:23:40.000000000", + "2019-01-03T14:24:15.000000000", + "2019-01-03T14:26:30.000000000", + "2019-01-03T14:26:37.000000000", + "2019-01-03T14:27:14.000000000", + "2019-01-03T14:27:37.000000000", + "2019-01-03T14:28:03.000000000", + "2019-01-03T14:28:05.000000000", + "2019-01-03T14:28:07.000000000", + "2019-01-03T14:30:35.000000000", + "2019-01-03T14:31:41.000000000", + "2019-01-03T14:33:37.000000000", + "2019-01-03T14:33:38.000000000", + "2019-01-03T14:36:28.000000000", + "2019-01-03T14:36:38.000000000", + "2019-01-03T14:36:58.000000000", + "2019-01-03T14:37:57.000000000", + "2019-01-03T14:38:16.000000000", + "2019-01-03T14:38:38.000000000", + "2019-01-03T14:38:51.000000000", + "2019-01-03T14:39:06.000000000", + "2019-01-03T14:39:44.000000000", + "2019-01-03T14:42:29.000000000", + "2019-01-03T14:42:32.000000000", + "2019-01-03T14:42:59.000000000", + "2019-01-03T14:43:26.000000000", + "2019-01-03T14:43:44.000000000", + "2019-01-03T14:45:39.000000000", + "2019-01-03T14:46:22.000000000", + "2019-01-03T14:48:37.000000000", + "2019-01-03T14:49:55.000000000", + "2019-01-03T14:49:59.000000000", + "2019-01-03T14:51:41.000000000", + "2019-01-03T14:52:09.000000000", + "2019-01-03T14:53:36.000000000", + "2019-01-03T14:53:42.000000000", + "2019-01-03T14:55:28.000000000", + "2019-01-03T14:55:46.000000000", + "2019-01-03T14:55:50.000000000", + "2019-01-03T14:56:04.000000000", + "2019-01-03T14:56:45.000000000", + "2019-01-03T14:59:18.000000000", + "2019-01-03T15:02:51.000000000", + "2019-01-03T15:04:04.000000000", + "2019-01-03T15:05:23.000000000", + "2019-01-03T15:06:33.000000000", + "2019-01-03T15:08:22.000000000", + "2019-01-03T15:08:25.000000000", + "2019-01-03T15:09:06.000000000", + "2019-01-03T15:10:16.000000000", + "2019-01-03T15:11:59.000000000", + "2019-01-03T15:14:15.000000000", + "2019-01-03T15:15:20.000000000", + "2019-01-03T15:15:46.000000000", + "2019-01-03T15:15:50.000000000", + "2019-01-03T15:16:08.000000000", + "2019-01-03T15:16:18.000000000", + "2019-01-03T15:18:36.000000000", + "2019-01-03T15:19:21.000000000", + "2019-01-03T15:20:06.000000000", + "2019-01-03T15:20:16.000000000", + "2019-01-03T15:22:00.000000000", + "2019-01-03T15:22:36.000000000", + "2019-01-03T15:26:35.000000000", + "2019-01-03T15:29:04.000000000", + "2019-01-03T15:30:35.000000000", + "2019-01-03T15:31:54.000000000", + "2019-01-03T15:31:59.000000000", + "2019-01-03T15:36:04.000000000", + "2019-01-03T15:40:34.000000000", + "2019-01-03T15:41:02.000000000", + "2019-01-03T15:41:20.000000000", + "2019-01-03T15:44:19.000000000", + "2019-01-03T15:44:49.000000000", + "2019-01-03T15:45:20.000000000", + "2019-01-03T15:45:40.000000000", + "2019-01-03T15:46:49.000000000", + "2019-01-03T15:46:51.000000000", + "2019-01-03T15:47:13.000000000", + "2019-01-03T15:49:10.000000000", + "2019-01-03T15:50:05.000000000", + "2019-01-03T15:50:27.000000000", + "2019-01-03T15:51:35.000000000", + "2019-01-03T15:52:36.000000000", + "2019-01-03T15:54:57.000000000", + "2019-01-03T15:54:59.000000000", + "2019-01-03T15:56:05.000000000", + "2019-01-03T15:56:18.000000000", + "2019-01-03T15:57:04.000000000", + "2019-01-03T15:57:35.000000000", + "2019-01-03T15:57:58.000000000", + "2019-01-03T15:58:50.000000000", + "2019-01-03T16:01:15.000000000", + "2019-01-03T16:01:28.000000000", + "2019-01-03T16:02:41.000000000", + "2019-01-03T16:04:54.000000000", + "2019-01-03T16:06:28.000000000", + "2019-01-03T16:06:34.000000000", + "2019-01-03T16:07:27.000000000", + "2019-01-03T16:07:39.000000000", + "2019-01-03T16:07:40.000000000", + "2019-01-03T16:09:04.000000000", + "2019-01-03T16:10:10.000000000", + "2019-01-03T16:10:29.000000000", + "2019-01-03T16:10:46.000000000", + "2019-01-03T16:11:12.000000000", + "2019-01-03T16:11:22.000000000", + "2019-01-03T16:11:32.000000000", + "2019-01-03T16:13:09.000000000", + "2019-01-03T16:15:45.000000000", + "2019-01-03T16:16:08.000000000", + "2019-01-03T16:16:20.000000000", + "2019-01-03T16:16:36.000000000", + "2019-01-03T16:16:39.000000000", + "2019-01-03T16:16:56.000000000", + "2019-01-03T16:17:22.000000000", + "2019-01-03T16:18:11.000000000", + "2019-01-03T16:18:45.000000000", + "2019-01-03T16:18:50.000000000", + "2019-01-03T16:18:59.000000000", + "2019-01-03T16:19:05.000000000", + "2019-01-03T16:20:22.000000000", + "2019-01-03T16:20:45.000000000", + "2019-01-03T16:21:38.000000000", + "2019-01-03T16:23:28.000000000", + "2019-01-03T16:24:15.000000000", + "2019-01-03T16:24:49.000000000", + "2019-01-03T16:25:44.000000000", + "2019-01-03T16:25:52.000000000", + "2019-01-03T16:26:49.000000000", + "2019-01-03T16:32:47.000000000", + "2019-01-03T16:33:24.000000000", + "2019-01-03T16:33:57.000000000", + "2019-01-03T16:35:26.000000000", + "2019-01-03T16:38:45.000000000", + "2019-01-03T16:40:04.000000000", + "2019-01-03T16:41:39.000000000", + "2019-01-03T16:43:17.000000000", + "2019-01-03T16:44:29.000000000", + "2019-01-03T16:44:36.000000000", + "2019-01-03T16:44:43.000000000", + "2019-01-03T16:46:39.000000000", + "2019-01-03T16:47:01.000000000", + "2019-01-03T16:47:21.000000000", + "2019-01-03T16:47:39.000000000", + "2019-01-03T16:50:10.000000000", + "2019-01-03T16:50:15.000000000", + "2019-01-03T16:50:40.000000000", + "2019-01-03T16:51:48.000000000", + "2019-01-03T16:52:56.000000000", + "2019-01-03T16:55:12.000000000", + "2019-01-03T16:55:13.000000000", + "2019-01-03T16:55:35.000000000", + "2019-01-03T16:57:08.000000000", + "2019-01-03T17:03:07.000000000", + "2019-01-03T17:03:28.000000000", + "2019-01-03T17:03:38.000000000", + "2019-01-03T17:03:51.000000000", + "2019-01-03T17:05:08.000000000", + "2019-01-03T17:05:34.000000000", + "2019-01-03T17:06:26.000000000", + "2019-01-03T17:06:46.000000000", + "2019-01-03T17:07:15.000000000", + "2019-01-03T17:08:32.000000000", + "2019-01-03T17:09:07.000000000", + "2019-01-03T17:13:16.000000000", + "2019-01-03T17:13:47.000000000", + "2019-01-03T17:16:26.000000000", + "2019-01-03T17:16:37.000000000", + "2019-01-03T17:16:42.000000000", + "2019-01-03T17:17:07.000000000", + "2019-01-03T17:17:28.000000000", + "2019-01-03T17:21:43.000000000", + "2019-01-03T17:22:23.000000000", + "2019-01-03T17:23:27.000000000", + "2019-01-03T17:23:31.000000000", + "2019-01-03T17:24:30.000000000", + "2019-01-03T17:24:55.000000000", + "2019-01-03T17:26:48.000000000", + "2019-01-03T17:27:28.000000000", + "2019-01-03T17:28:14.000000000", + "2019-01-03T17:29:29.000000000", + "2019-01-03T17:29:58.000000000", + "2019-01-03T17:30:05.000000000", + "2019-01-03T17:30:23.000000000", + "2019-01-03T17:31:23.000000000", + "2019-01-03T17:32:17.000000000", + "2019-01-03T17:33:02.000000000", + "2019-01-03T17:33:54.000000000", + "2019-01-03T17:34:00.000000000", + "2019-01-03T17:34:37.000000000", + "2019-01-03T17:39:19.000000000", + "2019-01-03T17:39:25.000000000", + "2019-01-03T17:40:07.000000000", + "2019-01-03T17:40:30.000000000", + "2019-01-03T17:40:48.000000000", + "2019-01-03T17:42:01.000000000", + "2019-01-03T17:42:52.000000000", + "2019-01-03T17:44:19.000000000", + "2019-01-03T17:44:40.000000000", + "2019-01-03T17:47:01.000000000", + "2019-01-03T17:47:08.000000000", + "2019-01-03T17:47:25.000000000", + "2019-01-03T17:48:03.000000000", + "2019-01-03T17:48:18.000000000", + "2019-01-03T17:49:13.000000000", + "2019-01-03T17:50:32.000000000", + "2019-01-03T17:52:36.000000000", + "2019-01-03T17:53:05.000000000", + "2019-01-03T17:53:44.000000000", + "2019-01-03T17:53:48.000000000", + "2019-01-03T17:54:12.000000000", + "2019-01-03T17:54:32.000000000", + "2019-01-03T17:55:35.000000000", + "2019-01-03T17:56:37.000000000", + "2019-01-03T17:58:11.000000000", + "2019-01-03T17:58:35.000000000", + "2019-01-03T17:59:16.000000000", + "2019-01-03T17:59:29.000000000", + "2019-01-03T18:02:39.000000000", + "2019-01-03T18:05:34.000000000", + "2019-01-03T18:06:13.000000000", + "2019-01-03T18:08:09.000000000", + "2019-01-03T18:08:27.000000000", + "2019-01-03T18:09:08.000000000", + "2019-01-03T18:10:45.000000000", + "2019-01-03T18:12:20.000000000", + "2019-01-03T18:12:22.000000000", + "2019-01-03T18:14:40.000000000", + "2019-01-03T18:15:22.000000000", + "2019-01-03T18:15:25.000000000", + "2019-01-03T18:17:29.000000000", + "2019-01-03T18:18:08.000000000", + "2019-01-03T18:19:03.000000000", + "2019-01-03T18:19:21.000000000", + "2019-01-03T18:21:51.000000000", + "2019-01-03T18:21:56.000000000", + "2019-01-03T18:23:16.000000000", + "2019-01-03T18:23:36.000000000", + "2019-01-03T18:23:58.000000000", + "2019-01-03T18:24:08.000000000", + "2019-01-03T18:24:35.000000000", + "2019-01-03T18:24:57.000000000", + "2019-01-03T18:26:14.000000000", + "2019-01-03T18:27:48.000000000", + "2019-01-03T18:28:09.000000000", + "2019-01-03T18:28:13.000000000", + "2019-01-03T18:29:01.000000000", + "2019-01-03T18:29:23.000000000", + "2019-01-03T18:29:45.000000000", + "2019-01-03T18:33:41.000000000", + "2019-01-03T18:35:34.000000000", + "2019-01-03T18:36:59.000000000", + "2019-01-03T18:37:51.000000000", + "2019-01-03T18:38:00.000000000", + "2019-01-03T18:38:36.000000000", + "2019-01-03T18:39:53.000000000", + "2019-01-03T18:40:45.000000000", + "2019-01-03T18:41:08.000000000", + "2019-01-03T18:41:28.000000000", + "2019-01-03T18:45:04.000000000", + "2019-01-03T18:45:17.000000000", + "2019-01-03T18:45:23.000000000", + "2019-01-03T18:46:43.000000000", + "2019-01-03T18:47:03.000000000", + "2019-01-03T18:47:06.000000000", + "2019-01-03T18:49:00.000000000", + "2019-01-03T18:49:30.000000000", + "2019-01-03T18:51:14.000000000", + "2019-01-03T18:51:51.000000000", + "2019-01-03T18:52:19.000000000", + "2019-01-03T18:54:02.000000000", + "2019-01-03T18:54:42.000000000", + "2019-01-03T18:56:26.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:48.000000000", + "2019-01-03T18:56:50.000000000", + "2019-01-03T18:58:05.000000000", + "2019-01-03T18:59:52.000000000", + "2019-01-03T19:03:10.000000000", + "2019-01-03T19:05:42.000000000", + "2019-01-03T19:05:46.000000000", + "2019-01-03T19:06:18.000000000", + "2019-01-03T19:06:56.000000000", + "2019-01-03T19:07:06.000000000", + "2019-01-03T19:08:01.000000000", + "2019-01-03T19:08:09.000000000", + "2019-01-03T19:10:34.000000000", + "2019-01-03T19:11:34.000000000", + "2019-01-03T19:13:52.000000000", + "2019-01-03T19:14:30.000000000", + "2019-01-03T19:15:10.000000000", + "2019-01-03T19:17:19.000000000", + "2019-01-03T19:18:35.000000000", + "2019-01-03T19:18:36.000000000", + "2019-01-03T19:20:15.000000000", + "2019-01-03T19:21:17.000000000", + "2019-01-03T19:22:43.000000000", + "2019-01-03T19:23:05.000000000", + "2019-01-03T19:23:10.000000000", + "2019-01-03T19:27:17.000000000", + "2019-01-03T19:27:27.000000000", + "2019-01-03T19:30:30.000000000", + "2019-01-03T19:30:58.000000000", + "2019-01-03T19:31:22.000000000", + "2019-01-03T19:31:46.000000000", + "2019-01-03T19:32:41.000000000", + "2019-01-03T19:34:06.000000000", + "2019-01-03T19:34:21.000000000", + "2019-01-03T19:36:15.000000000", + "2019-01-03T19:36:33.000000000", + "2019-01-03T19:37:33.000000000", + "2019-01-03T19:38:12.000000000", + "2019-01-03T19:40:09.000000000", + "2019-01-03T19:41:56.000000000", + "2019-01-03T19:45:20.000000000", + "2019-01-03T19:47:31.000000000", + "2019-01-03T19:48:12.000000000", + "2019-01-03T19:49:20.000000000", + "2019-01-03T19:50:30.000000000", + "2019-01-03T19:52:33.000000000", + "2019-01-03T19:52:50.000000000", + "2019-01-03T19:53:36.000000000", + "2019-01-03T19:55:48.000000000", + "2019-01-03T19:55:50.000000000", + "2019-01-03T19:57:13.000000000", + "2019-01-03T19:58:14.000000000", + "2019-01-03T19:59:19.000000000", + "2019-01-03T20:02:04.000000000", + "2019-01-03T20:02:42.000000000", + "2019-01-03T20:03:24.000000000", + "2019-01-03T20:06:45.000000000", + "2019-01-03T20:08:06.000000000", + "2019-01-03T20:08:14.000000000", + "2019-01-03T20:08:29.000000000", + "2019-01-03T20:08:35.000000000", + "2019-01-03T20:09:49.000000000", + "2019-01-03T20:10:07.000000000", + "2019-01-03T20:12:48.000000000", + "2019-01-03T20:16:26.000000000", + "2019-01-03T20:18:11.000000000", + "2019-01-03T20:19:18.000000000", + "2019-01-03T20:19:19.000000000", + "2019-01-03T20:20:01.000000000", + "2019-01-03T20:20:07.000000000", + "2019-01-03T20:20:25.000000000", + "2019-01-03T20:20:58.000000000", + "2019-01-03T20:21:26.000000000", + "2019-01-03T20:22:43.000000000", + "2019-01-03T20:23:21.000000000", + "2019-01-03T20:23:53.000000000", + "2019-01-03T20:24:11.000000000", + "2019-01-03T20:24:48.000000000", + "2019-01-03T20:25:22.000000000", + "2019-01-03T20:25:30.000000000", + "2019-01-03T20:25:58.000000000", + "2019-01-03T20:26:52.000000000", + "2019-01-03T20:26:56.000000000", + "2019-01-03T20:27:35.000000000", + "2019-01-03T20:27:41.000000000", + "2019-01-03T20:30:37.000000000", + "2019-01-03T20:32:08.000000000", + "2019-01-03T20:34:28.000000000", + "2019-01-03T20:34:50.000000000", + "2019-01-03T20:35:41.000000000", + "2019-01-03T20:38:15.000000000", + "2019-01-03T20:40:04.000000000", + "2019-01-03T20:40:55.000000000", + "2019-01-03T20:41:53.000000000", + "2019-01-03T20:42:33.000000000", + "2019-01-03T20:43:47.000000000", + "2019-01-03T20:43:50.000000000", + "2019-01-03T20:43:57.000000000", + "2019-01-03T20:45:56.000000000", + "2019-01-03T20:46:08.000000000", + "2019-01-03T20:48:22.000000000", + "2019-01-03T20:51:04.000000000", + "2019-01-03T20:53:30.000000000", + "2019-01-03T20:53:31.000000000", + "2019-01-03T20:55:25.000000000", + "2019-01-03T20:56:13.000000000", + "2019-01-03T20:57:00.000000000", + "2019-01-03T20:57:31.000000000", + "2019-01-03T20:58:46.000000000", + "2019-01-03T20:59:04.000000000", + "2019-01-03T20:59:30.000000000", + "2019-01-03T20:59:58.000000000", + "2019-01-03T21:00:08.000000000", + "2019-01-03T21:01:14.000000000", + "2019-01-03T21:01:52.000000000", + "2019-01-03T21:01:59.000000000", + "2019-01-03T21:02:22.000000000", + "2019-01-03T21:03:01.000000000", + "2019-01-03T21:03:17.000000000", + "2019-01-03T21:03:35.000000000", + "2019-01-03T21:04:24.000000000", + "2019-01-03T21:05:16.000000000", + "2019-01-03T21:05:20.000000000", + "2019-01-03T21:08:09.000000000", + "2019-01-03T21:08:23.000000000", + "2019-01-03T21:08:51.000000000", + "2019-01-03T21:09:53.000000000", + "2019-01-03T21:10:20.000000000", + "2019-01-03T21:10:39.000000000", + "2019-01-03T21:11:04.000000000", + "2019-01-03T21:12:26.000000000", + "2019-01-03T21:13:33.000000000", + "2019-01-03T21:14:26.000000000", + "2019-01-03T21:16:02.000000000", + "2019-01-03T21:16:35.000000000", + "2019-01-03T21:18:03.000000000", + "2019-01-03T21:20:44.000000000", + "2019-01-03T21:21:40.000000000", + "2019-01-03T21:22:13.000000000", + "2019-01-03T21:22:21.000000000", + "2019-01-03T21:22:47.000000000", + "2019-01-03T21:22:52.000000000", + "2019-01-03T21:23:11.000000000", + "2019-01-03T21:23:31.000000000", + "2019-01-03T21:23:46.000000000", + "2019-01-03T21:23:58.000000000", + "2019-01-03T21:25:09.000000000", + "2019-01-03T21:26:01.000000000", + "2019-01-03T21:26:49.000000000", + "2019-01-03T21:27:13.000000000", + "2019-01-03T21:30:51.000000000", + "2019-01-03T21:31:27.000000000", + "2019-01-03T21:32:08.000000000", + "2019-01-03T21:32:41.000000000", + "2019-01-03T21:32:49.000000000", + "2019-01-03T21:34:30.000000000", + "2019-01-03T21:35:46.000000000", + "2019-01-03T21:36:08.000000000", + "2019-01-03T21:36:20.000000000", + "2019-01-03T21:38:48.000000000", + "2019-01-03T21:39:31.000000000", + "2019-01-03T21:39:44.000000000", + "2019-01-03T21:44:00.000000000", + "2019-01-03T21:44:06.000000000", + "2019-01-03T21:44:34.000000000", + "2019-01-03T21:45:44.000000000", + "2019-01-03T21:45:52.000000000", + "2019-01-03T21:47:06.000000000", + "2019-01-03T21:47:41.000000000", + "2019-01-03T21:48:54.000000000", + "2019-01-03T21:49:48.000000000", + "2019-01-03T21:51:46.000000000", + "2019-01-03T21:51:56.000000000", + "2019-01-03T21:53:20.000000000", + "2019-01-03T21:53:39.000000000", + "2019-01-03T21:55:39.000000000", + "2019-01-03T21:55:52.000000000", + "2019-01-03T21:56:22.000000000", + "2019-01-03T21:56:31.000000000", + "2019-01-03T21:57:43.000000000", + "2019-01-03T21:59:21.000000000", + "2019-01-03T22:00:20.000000000", + "2019-01-03T22:00:29.000000000", + "2019-01-03T22:00:47.000000000", + "2019-01-03T22:01:02.000000000", + "2019-01-03T22:01:05.000000000", + "2019-01-03T22:01:17.000000000", + "2019-01-03T22:02:47.000000000", + "2019-01-03T22:04:58.000000000", + "2019-01-03T22:05:02.000000000", + "2019-01-03T22:07:00.000000000", + "2019-01-03T22:07:07.000000000", + "2019-01-03T22:07:19.000000000", + "2019-01-03T22:08:42.000000000", + "2019-01-03T22:09:17.000000000", + "2019-01-03T22:09:54.000000000", + "2019-01-03T22:10:38.000000000", + "2019-01-03T22:11:39.000000000", + "2019-01-03T22:12:15.000000000", + "2019-01-03T22:12:20.000000000", + "2019-01-03T22:13:07.000000000", + "2019-01-03T22:14:06.000000000", + "2019-01-03T22:15:33.000000000", + "2019-01-03T22:16:25.000000000", + "2019-01-03T22:16:47.000000000", + "2019-01-03T22:17:38.000000000", + "2019-01-03T22:18:10.000000000", + "2019-01-03T22:18:35.000000000", + "2019-01-03T22:20:08.000000000", + "2019-01-03T22:23:05.000000000", + "2019-01-03T22:24:38.000000000", + "2019-01-03T22:25:25.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:28:55.000000000", + "2019-01-03T22:29:08.000000000", + "2019-01-03T22:30:53.000000000", + "2019-01-03T22:31:13.000000000", + "2019-01-03T22:32:33.000000000", + "2019-01-03T22:34:19.000000000", + "2019-01-03T22:37:51.000000000", + "2019-01-03T22:37:59.000000000", + "2019-01-03T22:38:19.000000000", + "2019-01-03T22:39:13.000000000", + "2019-01-03T22:41:38.000000000", + "2019-01-03T22:41:49.000000000", + "2019-01-03T22:41:57.000000000", + "2019-01-03T22:43:52.000000000", + "2019-01-03T22:45:05.000000000", + "2019-01-03T22:45:50.000000000", + "2019-01-03T22:47:44.000000000", + "2019-01-03T22:48:14.000000000", + "2019-01-03T22:51:22.000000000", + "2019-01-03T22:52:20.000000000", + "2019-01-03T22:53:44.000000000", + "2019-01-03T22:55:59.000000000", + "2019-01-03T22:56:00.000000000", + "2019-01-03T22:56:20.000000000", + "2019-01-03T22:59:22.000000000", + "2019-01-03T22:59:47.000000000", + "2019-01-03T22:59:56.000000000", + "2019-01-03T23:01:51.000000000", + "2019-01-03T23:01:53.000000000", + "2019-01-03T23:04:23.000000000", + "2019-01-03T23:04:50.000000000", + "2019-01-03T23:05:49.000000000", + "2019-01-03T23:06:30.000000000", + "2019-01-03T23:07:14.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:46.000000000", + "2019-01-03T23:13:52.000000000", + "2019-01-03T23:13:54.000000000", + "2019-01-03T23:14:27.000000000", + "2019-01-03T23:14:42.000000000", + "2019-01-03T23:16:21.000000000", + "2019-01-03T23:17:32.000000000", + "2019-01-03T23:17:45.000000000", + "2019-01-03T23:18:21.000000000", + "2019-01-03T23:18:39.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:20:20.000000000", + "2019-01-03T23:21:04.000000000", + "2019-01-03T23:21:13.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:27:27.000000000", + "2019-01-03T23:27:34.000000000", + "2019-01-03T23:29:13.000000000", + "2019-01-03T23:31:04.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:34:06.000000000", + "2019-01-03T23:36:51.000000000", + "2019-01-03T23:37:04.000000000", + "2019-01-03T23:38:08.000000000", + "2019-01-03T23:38:30.000000000", + "2019-01-03T23:39:07.000000000", + "2019-01-03T23:39:20.000000000", + "2019-01-03T23:39:52.000000000", + "2019-01-03T23:39:56.000000000", + "2019-01-03T23:40:06.000000000", + "2019-01-03T23:41:21.000000000", + "2019-01-03T23:42:06.000000000", + "2019-01-03T23:42:14.000000000", + "2019-01-03T23:42:50.000000000", + "2019-01-03T23:45:20.000000000", + "2019-01-03T23:47:05.000000000", + "2019-01-03T23:47:25.000000000", + "2019-01-03T23:49:12.000000000", + "2019-01-03T23:49:34.000000000", + "2019-01-03T23:50:36.000000000", + "2019-01-03T23:51:23.000000000", + "2019-01-03T23:51:40.000000000", + "2019-01-03T23:53:04.000000000", + "2019-01-03T23:54:32.000000000", + "2019-01-03T23:55:44.000000000", + "2019-01-03T23:56:54.000000000", + "2019-01-03T23:57:48.000000000", + "2019-01-04T00:01:34.000000000", + "2019-01-04T00:02:19.000000000", + "2019-01-04T00:04:39.000000000", + "2019-01-04T00:05:46.000000000", + "2019-01-04T00:06:39.000000000", + "2019-01-04T00:07:34.000000000", + "2019-01-04T00:08:56.000000000", + "2019-01-04T00:09:47.000000000", + "2019-01-04T00:11:19.000000000", + "2019-01-04T00:11:41.000000000", + "2019-01-04T00:12:07.000000000", + "2019-01-04T00:14:01.000000000", + "2019-01-04T00:14:18.000000000", + "2019-01-04T00:15:31.000000000", + "2019-01-04T00:16:19.000000000", + "2019-01-04T00:16:44.000000000", + "2019-01-04T00:17:21.000000000", + "2019-01-04T00:18:10.000000000", + "2019-01-04T00:18:43.000000000", + "2019-01-04T00:19:00.000000000", + "2019-01-04T00:19:12.000000000", + "2019-01-04T00:19:41.000000000", + "2019-01-04T00:21:32.000000000", + "2019-01-04T00:23:17.000000000", + "2019-01-04T00:31:25.000000000", + "2019-01-04T00:33:20.000000000", + "2019-01-04T00:33:37.000000000", + "2019-01-04T00:35:39.000000000", + "2019-01-04T00:35:45.000000000", + "2019-01-04T00:37:14.000000000", + "2019-01-04T00:39:14.000000000", + "2019-01-04T00:39:29.000000000", + "2019-01-04T00:40:11.000000000", + "2019-01-04T00:40:57.000000000", + "2019-01-04T00:41:04.000000000", + "2019-01-04T00:42:49.000000000", + "2019-01-04T00:43:13.000000000", + "2019-01-04T00:43:37.000000000", + "2019-01-04T00:44:21.000000000", + "2019-01-04T00:44:42.000000000", + "2019-01-04T00:45:25.000000000", + "2019-01-04T00:45:54.000000000", + "2019-01-04T00:46:05.000000000", + "2019-01-04T00:47:01.000000000", + "2019-01-04T00:47:04.000000000", + "2019-01-04T00:47:44.000000000", + "2019-01-04T00:48:32.000000000", + "2019-01-04T00:48:55.000000000", + "2019-01-04T00:49:13.000000000", + "2019-01-04T00:49:56.000000000", + "2019-01-04T00:51:10.000000000", + "2019-01-04T00:51:50.000000000", + "2019-01-04T00:54:59.000000000", + "2019-01-04T00:55:23.000000000", + "2019-01-04T00:56:27.000000000", + "2019-01-04T00:56:42.000000000", + "2019-01-04T00:56:59.000000000", + "2019-01-04T00:57:41.000000000", + "2019-01-04T00:57:53.000000000", + "2019-01-04T00:58:24.000000000", + "2019-01-04T00:58:47.000000000", + "2019-01-04T01:00:23.000000000", + "2019-01-04T01:00:34.000000000", + "2019-01-04T01:03:09.000000000", + "2019-01-04T01:03:28.000000000", + "2019-01-04T01:04:34.000000000", + "2019-01-04T01:04:56.000000000", + "2019-01-04T01:05:15.000000000", + "2019-01-04T01:05:46.000000000", + "2019-01-04T01:05:59.000000000", + "2019-01-04T01:06:02.000000000", + "2019-01-04T01:06:20.000000000", + "2019-01-04T01:07:26.000000000", + "2019-01-04T01:09:04.000000000", + "2019-01-04T01:09:38.000000000", + "2019-01-04T01:11:08.000000000", + "2019-01-04T01:11:54.000000000", + "2019-01-04T01:14:01.000000000", + "2019-01-04T01:15:55.000000000", + "2019-01-04T01:16:51.000000000", + "2019-01-04T01:17:12.000000000", + "2019-01-04T01:17:36.000000000", + "2019-01-04T01:18:06.000000000", + "2019-01-04T01:18:43.000000000", + "2019-01-04T01:21:27.000000000", + "2019-01-04T01:21:35.000000000", + "2019-01-04T01:21:49.000000000", + "2019-01-04T01:24:44.000000000", + "2019-01-04T01:25:22.000000000", + "2019-01-04T01:25:33.000000000", + "2019-01-04T01:26:42.000000000", + "2019-01-04T01:27:42.000000000", + "2019-01-04T01:28:29.000000000", + "2019-01-04T01:28:50.000000000", + "2019-01-04T01:29:58.000000000", + "2019-01-04T01:30:46.000000000", + "2019-01-04T01:30:48.000000000", + "2019-01-04T01:30:57.000000000", + "2019-01-04T01:31:19.000000000", + "2019-01-04T01:31:31.000000000", + "2019-01-04T01:31:56.000000000", + "2019-01-04T01:33:33.000000000", + "2019-01-04T01:33:59.000000000", + "2019-01-04T01:34:32.000000000", + "2019-01-04T01:36:02.000000000", + "2019-01-04T01:36:38.000000000", + "2019-01-04T01:37:47.000000000", + "2019-01-04T01:39:26.000000000", + "2019-01-04T01:40:00.000000000", + "2019-01-04T01:40:57.000000000", + "2019-01-04T01:41:07.000000000", + "2019-01-04T01:42:41.000000000", + "2019-01-04T01:43:29.000000000", + "2019-01-04T01:44:39.000000000", + "2019-01-04T01:46:10.000000000", + "2019-01-04T01:46:42.000000000", + "2019-01-04T01:47:02.000000000", + "2019-01-04T01:47:52.000000000", + "2019-01-04T01:48:12.000000000", + "2019-01-04T01:48:47.000000000", + "2019-01-04T01:49:50.000000000", + "2019-01-04T01:49:55.000000000", + "2019-01-04T01:50:27.000000000", + "2019-01-04T01:52:12.000000000", + "2019-01-04T01:53:34.000000000", + "2019-01-04T01:55:03.000000000", + "2019-01-04T01:55:50.000000000", + "2019-01-04T01:56:37.000000000", + "2019-01-04T01:57:09.000000000", + "2019-01-04T01:57:52.000000000", + "2019-01-04T01:57:56.000000000", + "2019-01-04T01:59:05.000000000", + "2019-01-04T02:00:00.000000000", + "2019-01-04T02:01:05.000000000", + "2019-01-04T02:01:17.000000000", + "2019-01-04T02:03:14.000000000", + "2019-01-04T02:03:20.000000000", + "2019-01-04T02:04:56.000000000", + "2019-01-04T02:05:53.000000000", + "2019-01-04T02:06:45.000000000", + "2019-01-04T02:06:46.000000000", + "2019-01-04T02:08:13.000000000", + "2019-01-04T02:10:11.000000000", + "2019-01-04T02:11:01.000000000", + "2019-01-04T02:12:03.000000000", + "2019-01-04T02:12:10.000000000", + "2019-01-04T02:13:43.000000000", + "2019-01-04T02:16:56.000000000", + "2019-01-04T02:18:34.000000000", + "2019-01-04T02:18:55.000000000", + "2019-01-04T02:19:23.000000000", + "2019-01-04T02:22:02.000000000", + "2019-01-04T02:25:49.000000000", + "2019-01-04T02:27:39.000000000", + "2019-01-04T02:27:56.000000000", + "2019-01-04T02:29:49.000000000", + "2019-01-04T02:30:00.000000000", + "2019-01-04T02:30:46.000000000", + "2019-01-04T02:30:50.000000000", + "2019-01-04T02:32:01.000000000", + "2019-01-04T02:32:22.000000000", + "2019-01-04T02:33:40.000000000", + "2019-01-04T02:34:20.000000000", + "2019-01-04T02:34:38.000000000", + "2019-01-04T02:35:24.000000000", + "2019-01-04T02:36:50.000000000", + "2019-01-04T02:37:12.000000000", + "2019-01-04T02:38:47.000000000", + "2019-01-04T02:41:49.000000000", + "2019-01-04T02:42:44.000000000", + "2019-01-04T02:45:40.000000000", + "2019-01-04T02:46:53.000000000", + "2019-01-04T02:47:19.000000000", + "2019-01-04T02:48:42.000000000", + "2019-01-04T02:48:43.000000000", + "2019-01-04T02:49:24.000000000", + "2019-01-04T02:50:13.000000000", + "2019-01-04T02:51:47.000000000", + "2019-01-04T02:53:08.000000000", + "2019-01-04T02:53:45.000000000", + "2019-01-04T02:54:07.000000000", + "2019-01-04T02:54:10.000000000", + "2019-01-04T02:55:32.000000000", + "2019-01-04T02:55:58.000000000", + "2019-01-04T02:56:20.000000000", + "2019-01-04T02:56:56.000000000", + "2019-01-04T02:58:56.000000000", + "2019-01-04T02:59:52.000000000", + "2019-01-04T03:00:26.000000000", + "2019-01-04T03:00:52.000000000", + "2019-01-04T03:01:30.000000000", + "2019-01-04T03:01:55.000000000", + "2019-01-04T03:02:14.000000000", + "2019-01-04T03:02:45.000000000", + "2019-01-04T03:02:55.000000000", + "2019-01-04T03:04:12.000000000", + "2019-01-04T03:04:51.000000000", + "2019-01-04T03:05:50.000000000", + "2019-01-04T03:06:07.000000000", + "2019-01-04T03:06:36.000000000", + "2019-01-04T03:08:00.000000000", + "2019-01-04T03:08:20.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:10:01.000000000", + "2019-01-04T03:10:10.000000000", + "2019-01-04T03:10:54.000000000", + "2019-01-04T03:11:09.000000000", + "2019-01-04T03:13:06.000000000", + "2019-01-04T03:15:17.000000000", + "2019-01-04T03:15:39.000000000", + "2019-01-04T03:16:31.000000000", + "2019-01-04T03:18:20.000000000", + "2019-01-04T03:18:32.000000000", + "2019-01-04T03:18:42.000000000", + "2019-01-04T03:19:24.000000000", + "2019-01-04T03:19:45.000000000", + "2019-01-04T03:20:39.000000000", + "2019-01-04T03:21:34.000000000", + "2019-01-04T03:22:29.000000000", + "2019-01-04T03:22:45.000000000", + "2019-01-04T03:23:27.000000000", + "2019-01-04T03:24:08.000000000", + "2019-01-04T03:24:44.000000000", + "2019-01-04T03:26:21.000000000", + "2019-01-04T03:26:33.000000000", + "2019-01-04T03:27:47.000000000", + "2019-01-04T03:28:31.000000000", + "2019-01-04T03:29:14.000000000", + "2019-01-04T03:29:27.000000000", + "2019-01-04T03:30:17.000000000", + "2019-01-04T03:31:19.000000000", + "2019-01-04T03:32:27.000000000", + "2019-01-04T03:32:35.000000000", + "2019-01-04T03:34:51.000000000", + "2019-01-04T03:36:42.000000000", + "2019-01-04T03:38:24.000000000", + "2019-01-04T03:40:46.000000000", + "2019-01-04T03:40:58.000000000", + "2019-01-04T03:41:27.000000000", + "2019-01-04T03:43:25.000000000", + "2019-01-04T03:44:04.000000000", + "2019-01-04T03:44:09.000000000", + "2019-01-04T03:44:45.000000000", + "2019-01-04T03:47:26.000000000", + "2019-01-04T03:48:14.000000000", + "2019-01-04T03:48:22.000000000", + "2019-01-04T03:48:27.000000000", + "2019-01-04T03:50:08.000000000", + "2019-01-04T03:53:04.000000000", + "2019-01-04T03:54:16.000000000", + "2019-01-04T03:54:34.000000000", + "2019-01-04T03:55:24.000000000", + "2019-01-04T03:55:30.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:59:50.000000000", + "2019-01-04T04:02:19.000000000", + "2019-01-04T04:05:25.000000000", + "2019-01-04T04:07:29.000000000", + "2019-01-04T04:07:30.000000000", + "2019-01-04T04:08:27.000000000", + "2019-01-04T04:09:44.000000000", + "2019-01-04T04:10:50.000000000", + "2019-01-04T04:11:34.000000000", + "2019-01-04T04:13:56.000000000", + "2019-01-04T04:15:56.000000000", + "2019-01-04T04:16:30.000000000", + "2019-01-04T04:16:35.000000000", + "2019-01-04T04:19:27.000000000", + "2019-01-04T04:19:49.000000000", + "2019-01-04T04:22:56.000000000", + "2019-01-04T04:23:07.000000000", + "2019-01-04T04:23:08.000000000", + "2019-01-04T04:24:10.000000000", + "2019-01-04T04:24:53.000000000", + "2019-01-04T04:25:09.000000000", + "2019-01-04T04:25:53.000000000", + "2019-01-04T04:26:42.000000000", + "2019-01-04T04:26:58.000000000", + "2019-01-04T04:27:28.000000000", + "2019-01-04T04:28:38.000000000", + "2019-01-04T04:29:41.000000000", + "2019-01-04T04:30:22.000000000", + "2019-01-04T04:30:31.000000000", + "2019-01-04T04:32:42.000000000", + "2019-01-04T04:36:55.000000000", + "2019-01-04T04:37:05.000000000", + "2019-01-04T04:38:13.000000000", + "2019-01-04T04:44:41.000000000", + "2019-01-04T04:44:51.000000000", + "2019-01-04T04:45:46.000000000", + "2019-01-04T04:46:03.000000000", + "2019-01-04T04:46:23.000000000", + "2019-01-04T04:47:19.000000000", + "2019-01-04T04:47:54.000000000", + "2019-01-04T04:48:48.000000000", + "2019-01-04T04:48:56.000000000", + "2019-01-04T04:49:24.000000000", + "2019-01-04T04:50:14.000000000", + "2019-01-04T04:50:27.000000000", + "2019-01-04T04:51:09.000000000", + "2019-01-04T04:51:11.000000000", + "2019-01-04T04:51:49.000000000", + "2019-01-04T04:53:45.000000000", + "2019-01-04T04:55:10.000000000", + "2019-01-04T04:55:11.000000000", + "2019-01-04T04:55:12.000000000", + "2019-01-04T04:56:16.000000000", + "2019-01-04T04:58:43.000000000", + "2019-01-04T04:58:54.000000000", + "2019-01-04T05:01:30.000000000", + "2019-01-04T05:03:03.000000000", + "2019-01-04T05:03:11.000000000", + "2019-01-04T05:03:35.000000000", + "2019-01-04T05:05:00.000000000", + "2019-01-04T05:06:28.000000000", + "2019-01-04T05:09:44.000000000", + "2019-01-04T05:09:49.000000000", + "2019-01-04T05:10:04.000000000", + "2019-01-04T05:10:08.000000000", + "2019-01-04T05:12:11.000000000", + "2019-01-04T05:12:57.000000000", + "2019-01-04T05:13:15.000000000", + "2019-01-04T05:13:24.000000000", + "2019-01-04T05:15:56.000000000", + "2019-01-04T05:17:05.000000000", + "2019-01-04T05:17:33.000000000", + "2019-01-04T05:17:42.000000000", + "2019-01-04T05:18:00.000000000", + "2019-01-04T05:18:26.000000000", + "2019-01-04T05:19:06.000000000", + "2019-01-04T05:19:30.000000000", + "2019-01-04T05:21:56.000000000", + "2019-01-04T05:22:31.000000000", + "2019-01-04T05:25:32.000000000", + "2019-01-04T05:25:42.000000000", + "2019-01-04T05:26:26.000000000", + "2019-01-04T05:27:35.000000000", + "2019-01-04T05:27:47.000000000", + "2019-01-04T05:30:22.000000000", + "2019-01-04T05:30:39.000000000", + "2019-01-04T05:32:49.000000000", + "2019-01-04T05:33:38.000000000", + "2019-01-04T05:36:29.000000000", + "2019-01-04T05:39:24.000000000", + "2019-01-04T05:39:47.000000000", + "2019-01-04T05:42:02.000000000", + "2019-01-04T05:43:29.000000000", + "2019-01-04T05:43:46.000000000", + "2019-01-04T05:46:07.000000000", + "2019-01-04T05:47:05.000000000", + "2019-01-04T05:48:07.000000000", + "2019-01-04T05:48:50.000000000", + "2019-01-04T05:49:57.000000000", + "2019-01-04T05:50:28.000000000", + "2019-01-04T05:53:15.000000000", + "2019-01-04T05:56:26.000000000", + "2019-01-04T05:56:53.000000000", + "2019-01-04T05:57:43.000000000", + "2019-01-04T05:59:57.000000000", + "2019-01-04T06:00:57.000000000", + "2019-01-04T06:01:36.000000000", + "2019-01-04T06:02:36.000000000", + "2019-01-04T06:04:14.000000000", + "2019-01-04T06:04:28.000000000", + "2019-01-04T06:05:00.000000000", + "2019-01-04T06:07:45.000000000", + "2019-01-04T06:08:25.000000000", + "2019-01-04T06:08:52.000000000", + "2019-01-04T06:09:05.000000000", + "2019-01-04T06:09:42.000000000", + "2019-01-04T06:12:17.000000000", + "2019-01-04T06:12:53.000000000", + "2019-01-04T06:14:13.000000000", + "2019-01-04T06:17:44.000000000", + "2019-01-04T06:19:50.000000000", + "2019-01-04T06:20:45.000000000", + "2019-01-04T06:21:01.000000000", + "2019-01-04T06:21:30.000000000", + "2019-01-04T06:23:27.000000000", + "2019-01-04T06:25:09.000000000", + "2019-01-04T06:25:39.000000000", + "2019-01-04T06:25:44.000000000", + "2019-01-04T06:26:08.000000000", + "2019-01-04T06:28:07.000000000", + "2019-01-04T06:28:14.000000000", + "2019-01-04T06:29:52.000000000", + "2019-01-04T06:30:51.000000000", + "2019-01-04T06:30:57.000000000", + "2019-01-04T06:33:04.000000000", + "2019-01-04T06:33:07.000000000", + "2019-01-04T06:33:49.000000000", + "2019-01-04T06:34:24.000000000", + "2019-01-04T06:36:54.000000000", + "2019-01-04T06:36:57.000000000", + "2019-01-04T06:37:47.000000000", + "2019-01-04T06:37:55.000000000", + "2019-01-04T06:38:26.000000000", + "2019-01-04T06:39:41.000000000", + "2019-01-04T06:41:41.000000000", + "2019-01-04T06:43:17.000000000", + "2019-01-04T06:43:25.000000000", + "2019-01-04T06:44:20.000000000", + "2019-01-04T06:44:24.000000000", + "2019-01-04T06:44:57.000000000", + "2019-01-04T06:47:05.000000000", + "2019-01-04T06:48:02.000000000", + "2019-01-04T06:48:18.000000000", + "2019-01-04T06:48:47.000000000", + "2019-01-04T06:49:42.000000000", + "2019-01-04T06:52:14.000000000", + "2019-01-04T06:52:18.000000000", + "2019-01-04T06:52:27.000000000", + "2019-01-04T06:53:39.000000000", + "2019-01-04T06:54:10.000000000", + "2019-01-04T06:54:23.000000000", + "2019-01-04T06:55:27.000000000", + "2019-01-04T06:56:45.000000000", + "2019-01-04T07:01:03.000000000", + "2019-01-04T07:02:58.000000000", + "2019-01-04T07:03:21.000000000", + "2019-01-04T07:04:34.000000000", + "2019-01-04T07:05:59.000000000", + "2019-01-04T07:06:44.000000000", + "2019-01-04T07:08:12.000000000", + "2019-01-04T07:10:45.000000000", + "2019-01-04T07:10:57.000000000", + "2019-01-04T07:12:14.000000000", + "2019-01-04T07:15:19.000000000", + "2019-01-04T07:15:53.000000000", + "2019-01-04T07:15:58.000000000", + "2019-01-04T07:16:10.000000000", + "2019-01-04T07:17:02.000000000", + "2019-01-04T07:18:23.000000000", + "2019-01-04T07:20:01.000000000", + "2019-01-04T07:20:19.000000000", + "2019-01-04T07:20:21.000000000", + "2019-01-04T07:21:13.000000000", + "2019-01-04T07:22:02.000000000", + "2019-01-04T07:23:30.000000000", + "2019-01-04T07:25:15.000000000", + "2019-01-04T07:29:37.000000000", + "2019-01-04T07:30:26.000000000", + "2019-01-04T07:30:44.000000000", + "2019-01-04T07:31:13.000000000", + "2019-01-04T07:31:28.000000000", + "2019-01-04T07:33:36.000000000", + "2019-01-04T07:33:55.000000000", + "2019-01-04T07:34:49.000000000", + "2019-01-04T07:38:17.000000000", + "2019-01-04T07:39:46.000000000", + "2019-01-04T07:39:48.000000000", + "2019-01-04T07:41:09.000000000", + "2019-01-04T07:41:48.000000000", + "2019-01-04T07:43:06.000000000", + "2019-01-04T07:43:12.000000000", + "2019-01-04T07:43:42.000000000", + "2019-01-04T07:44:05.000000000", + "2019-01-04T07:44:57.000000000", + "2019-01-04T07:44:58.000000000", + "2019-01-04T07:45:09.000000000", + "2019-01-04T07:45:22.000000000", + "2019-01-04T07:45:28.000000000", + "2019-01-04T07:46:15.000000000", + "2019-01-04T07:47:48.000000000", + "2019-01-04T07:48:09.000000000", + "2019-01-04T07:50:02.000000000", + "2019-01-04T07:51:01.000000000", + "2019-01-04T07:51:59.000000000", + "2019-01-04T07:52:18.000000000", + "2019-01-04T07:53:53.000000000", + "2019-01-04T07:54:33.000000000", + "2019-01-04T07:56:13.000000000", + "2019-01-04T07:56:27.000000000", + "2019-01-04T08:00:44.000000000", + "2019-01-04T08:00:59.000000000", + "2019-01-04T08:01:52.000000000", + "2019-01-04T08:02:40.000000000", + "2019-01-04T08:04:09.000000000", + "2019-01-04T08:04:20.000000000", + "2019-01-04T08:05:37.000000000", + "2019-01-04T08:06:07.000000000", + "2019-01-04T08:06:27.000000000", + "2019-01-04T08:07:01.000000000", + "2019-01-04T08:07:44.000000000", + "2019-01-04T08:08:16.000000000", + "2019-01-04T08:08:44.000000000", + "2019-01-04T08:09:04.000000000", + "2019-01-04T08:09:15.000000000", + "2019-01-04T08:10:02.000000000", + "2019-01-04T08:10:14.000000000", + "2019-01-04T08:12:07.000000000", + "2019-01-04T08:12:55.000000000", + "2019-01-04T08:13:03.000000000", + "2019-01-04T08:13:52.000000000", + "2019-01-04T08:14:48.000000000", + "2019-01-04T08:15:59.000000000", + "2019-01-04T08:16:37.000000000", + "2019-01-04T08:17:32.000000000", + "2019-01-04T08:17:43.000000000", + "2019-01-04T08:17:52.000000000", + "2019-01-04T08:18:35.000000000", + "2019-01-04T08:19:07.000000000", + "2019-01-04T08:21:26.000000000", + "2019-01-04T08:23:00.000000000", + "2019-01-04T08:23:22.000000000", + "2019-01-04T08:23:29.000000000", + "2019-01-04T08:24:47.000000000", + "2019-01-04T08:25:14.000000000", + "2019-01-04T08:25:24.000000000", + "2019-01-04T08:25:35.000000000", + "2019-01-04T08:26:19.000000000", + "2019-01-04T08:26:39.000000000", + "2019-01-04T08:28:43.000000000", + "2019-01-04T08:30:20.000000000", + "2019-01-04T08:30:21.000000000", + "2019-01-04T08:32:30.000000000", + "2019-01-04T08:32:45.000000000", + "2019-01-04T08:36:10.000000000", + "2019-01-04T08:36:13.000000000", + "2019-01-04T08:36:39.000000000", + "2019-01-04T08:36:46.000000000", + "2019-01-04T08:37:27.000000000", + "2019-01-04T08:38:02.000000000", + "2019-01-04T08:38:12.000000000", + "2019-01-04T08:39:54.000000000", + "2019-01-04T08:40:02.000000000", + "2019-01-04T08:41:21.000000000", + "2019-01-04T08:42:26.000000000", + "2019-01-04T08:43:44.000000000", + "2019-01-04T08:45:42.000000000", + "2019-01-04T08:46:03.000000000", + "2019-01-04T08:46:12.000000000", + "2019-01-04T08:47:35.000000000", + "2019-01-04T08:48:14.000000000", + "2019-01-04T08:48:33.000000000", + "2019-01-04T08:48:38.000000000", + "2019-01-04T08:48:58.000000000", + "2019-01-04T08:49:21.000000000", + "2019-01-04T08:49:51.000000000", + "2019-01-04T08:50:16.000000000", + "2019-01-04T08:50:30.000000000", + "2019-01-04T08:50:48.000000000", + "2019-01-04T08:53:47.000000000", + "2019-01-04T08:55:07.000000000", + "2019-01-04T08:57:20.000000000", + "2019-01-04T08:57:39.000000000", + "2019-01-04T08:58:05.000000000", + "2019-01-04T08:58:26.000000000", + "2019-01-04T08:58:49.000000000", + "2019-01-04T09:00:22.000000000", + "2019-01-04T09:01:45.000000000", + "2019-01-04T09:01:50.000000000", + "2019-01-04T09:03:34.000000000", + "2019-01-04T09:04:18.000000000", + "2019-01-04T09:04:23.000000000", + "2019-01-04T09:05:36.000000000", + "2019-01-04T09:07:01.000000000", + "2019-01-04T09:07:04.000000000", + "2019-01-04T09:07:58.000000000", + "2019-01-04T09:08:41.000000000", + "2019-01-04T09:09:15.000000000", + "2019-01-04T09:11:28.000000000", + "2019-01-04T09:12:28.000000000", + "2019-01-04T09:12:47.000000000", + "2019-01-04T09:14:50.000000000", + "2019-01-04T09:17:20.000000000", + "2019-01-04T09:19:38.000000000", + "2019-01-04T09:21:14.000000000", + "2019-01-04T09:23:54.000000000", + "2019-01-04T09:26:08.000000000", + "2019-01-04T09:26:39.000000000", + "2019-01-04T09:27:07.000000000", + "2019-01-04T09:27:33.000000000", + "2019-01-04T09:27:49.000000000", + "2019-01-04T09:29:08.000000000", + "2019-01-04T09:29:32.000000000", + "2019-01-04T09:29:48.000000000", + "2019-01-04T09:30:59.000000000", + "2019-01-04T09:32:14.000000000", + "2019-01-04T09:32:36.000000000", + "2019-01-04T09:33:11.000000000", + "2019-01-04T09:35:05.000000000", + "2019-01-04T09:35:13.000000000", + "2019-01-04T09:35:18.000000000", + "2019-01-04T09:36:04.000000000", + "2019-01-04T09:37:08.000000000", + "2019-01-04T09:37:47.000000000", + "2019-01-04T09:38:37.000000000", + "2019-01-04T09:38:58.000000000", + "2019-01-04T09:40:30.000000000", + "2019-01-04T09:40:41.000000000", + "2019-01-04T09:41:43.000000000", + "2019-01-04T09:42:27.000000000", + "2019-01-04T09:43:35.000000000", + "2019-01-04T09:44:17.000000000", + "2019-01-04T09:44:22.000000000", + "2019-01-04T09:44:47.000000000", + "2019-01-04T09:48:06.000000000", + "2019-01-04T09:48:08.000000000", + "2019-01-04T09:50:15.000000000", + "2019-01-04T09:51:15.000000000", + "2019-01-04T09:52:09.000000000", + "2019-01-04T09:54:16.000000000", + "2019-01-04T09:54:17.000000000", + "2019-01-04T09:55:33.000000000", + "2019-01-04T09:55:42.000000000", + "2019-01-04T09:58:12.000000000", + "2019-01-04T09:58:47.000000000", + "2019-01-04T09:59:37.000000000", + "2019-01-04T10:01:01.000000000", + "2019-01-04T10:02:18.000000000", + "2019-01-04T10:06:51.000000000", + "2019-01-04T10:07:07.000000000", + "2019-01-04T10:13:04.000000000", + "2019-01-04T10:13:17.000000000", + "2019-01-04T10:13:19.000000000", + "2019-01-04T10:13:42.000000000", + "2019-01-04T10:13:59.000000000", + "2019-01-04T10:14:40.000000000", + "2019-01-04T10:15:30.000000000", + "2019-01-04T10:15:56.000000000", + "2019-01-04T10:16:27.000000000", + "2019-01-04T10:18:42.000000000", + "2019-01-04T10:18:47.000000000", + "2019-01-04T10:18:54.000000000", + "2019-01-04T10:19:17.000000000", + "2019-01-04T10:19:57.000000000", + "2019-01-04T10:20:44.000000000", + "2019-01-04T10:21:23.000000000", + "2019-01-04T10:24:05.000000000", + "2019-01-04T10:25:14.000000000", + "2019-01-04T10:25:15.000000000", + "2019-01-04T10:26:26.000000000", + "2019-01-04T10:26:28.000000000", + "2019-01-04T10:26:29.000000000", + "2019-01-04T10:28:12.000000000", + "2019-01-04T10:28:41.000000000", + "2019-01-04T10:29:30.000000000", + "2019-01-04T10:29:34.000000000", + "2019-01-04T10:29:56.000000000", + "2019-01-04T10:30:58.000000000", + "2019-01-04T10:31:00.000000000", + "2019-01-04T10:31:17.000000000", + "2019-01-04T10:31:25.000000000", + "2019-01-04T10:32:16.000000000", + "2019-01-04T10:32:52.000000000", + "2019-01-04T10:34:12.000000000", + "2019-01-04T10:35:25.000000000", + "2019-01-04T10:36:09.000000000", + "2019-01-04T10:36:44.000000000", + "2019-01-04T10:40:03.000000000", + "2019-01-04T10:40:05.000000000", + "2019-01-04T10:40:28.000000000", + "2019-01-04T10:40:32.000000000", + "2019-01-04T10:43:46.000000000", + "2019-01-04T10:43:57.000000000", + "2019-01-04T10:46:06.000000000", + "2019-01-04T10:47:07.000000000", + "2019-01-04T10:48:17.000000000", + "2019-01-04T10:48:51.000000000", + "2019-01-04T10:48:58.000000000", + "2019-01-04T10:50:26.000000000", + "2019-01-04T10:50:46.000000000", + "2019-01-04T10:51:36.000000000", + "2019-01-04T10:52:36.000000000", + "2019-01-04T10:53:25.000000000", + "2019-01-04T10:53:26.000000000", + "2019-01-04T10:54:38.000000000", + "2019-01-04T10:55:50.000000000", + "2019-01-04T10:59:27.000000000", + "2019-01-04T10:59:35.000000000", + "2019-01-04T11:01:17.000000000", + "2019-01-04T11:02:46.000000000", + "2019-01-04T11:03:22.000000000", + "2019-01-04T11:03:37.000000000", + "2019-01-04T11:04:31.000000000", + "2019-01-04T11:06:11.000000000", + "2019-01-04T11:07:32.000000000", + "2019-01-04T11:07:48.000000000", + "2019-01-04T11:08:13.000000000", + "2019-01-04T11:09:38.000000000", + "2019-01-04T11:11:40.000000000", + "2019-01-04T11:13:27.000000000", + "2019-01-04T11:14:25.000000000", + "2019-01-04T11:18:54.000000000", + "2019-01-04T11:19:10.000000000", + "2019-01-04T11:19:18.000000000", + "2019-01-04T11:20:04.000000000", + "2019-01-04T11:20:33.000000000", + "2019-01-04T11:20:52.000000000", + "2019-01-04T11:22:41.000000000", + "2019-01-04T11:23:00.000000000", + "2019-01-04T11:25:49.000000000", + "2019-01-04T11:27:37.000000000", + "2019-01-04T11:28:12.000000000", + "2019-01-04T11:28:32.000000000", + "2019-01-04T11:31:37.000000000", + "2019-01-04T11:33:08.000000000", + "2019-01-04T11:33:12.000000000", + "2019-01-04T11:33:17.000000000", + "2019-01-04T11:33:39.000000000", + "2019-01-04T11:34:08.000000000", + "2019-01-04T11:34:20.000000000", + "2019-01-04T11:36:32.000000000", + "2019-01-04T11:38:07.000000000", + "2019-01-04T11:39:37.000000000", + "2019-01-04T11:40:14.000000000", + "2019-01-04T11:41:20.000000000", + "2019-01-04T11:42:11.000000000", + "2019-01-04T11:42:38.000000000", + "2019-01-04T11:44:04.000000000", + "2019-01-04T11:45:45.000000000", + "2019-01-04T11:46:17.000000000", + "2019-01-04T11:46:23.000000000", + "2019-01-04T11:47:48.000000000", + "2019-01-04T11:53:19.000000000", + "2019-01-04T11:53:40.000000000", + "2019-01-04T11:53:46.000000000", + "2019-01-04T11:54:11.000000000", + "2019-01-04T11:54:14.000000000", + "2019-01-04T11:54:52.000000000", + "2019-01-04T11:56:21.000000000", + "2019-01-04T11:57:06.000000000", + "2019-01-04T11:57:33.000000000", + "2019-01-04T11:57:39.000000000", + "2019-01-04T11:58:30.000000000", + "2019-01-04T11:58:40.000000000", + "2019-01-04T11:58:53.000000000", + "2019-01-04T12:01:03.000000000", + "2019-01-04T12:03:12.000000000", + "2019-01-04T12:03:16.000000000", + "2019-01-04T12:03:21.000000000", + "2019-01-04T12:05:03.000000000", + "2019-01-04T12:05:47.000000000", + "2019-01-04T12:06:56.000000000", + "2019-01-04T12:07:45.000000000", + "2019-01-04T12:08:08.000000000", + "2019-01-04T12:08:32.000000000", + "2019-01-04T12:08:45.000000000", + "2019-01-04T12:08:54.000000000", + "2019-01-04T12:11:37.000000000", + "2019-01-04T12:12:08.000000000", + "2019-01-04T12:13:20.000000000", + "2019-01-04T12:13:21.000000000", + "2019-01-04T12:14:53.000000000", + "2019-01-04T12:15:23.000000000", + "2019-01-04T12:18:06.000000000", + "2019-01-04T12:18:11.000000000", + "2019-01-04T12:18:40.000000000", + "2019-01-04T12:18:41.000000000", + "2019-01-04T12:18:47.000000000", + "2019-01-04T12:19:07.000000000", + "2019-01-04T12:20:51.000000000", + "2019-01-04T12:22:20.000000000", + "2019-01-04T12:23:47.000000000", + "2019-01-04T12:24:08.000000000", + "2019-01-04T12:26:18.000000000", + "2019-01-04T12:27:13.000000000", + "2019-01-04T12:28:54.000000000", + "2019-01-04T12:29:00.000000000", + "2019-01-04T12:30:05.000000000", + "2019-01-04T12:30:18.000000000", + "2019-01-04T12:33:26.000000000", + "2019-01-04T12:34:30.000000000", + "2019-01-04T12:34:42.000000000", + "2019-01-04T12:36:17.000000000", + "2019-01-04T12:39:29.000000000", + "2019-01-04T12:40:04.000000000", + "2019-01-04T12:41:43.000000000", + "2019-01-04T12:44:41.000000000", + "2019-01-04T12:45:50.000000000", + "2019-01-04T12:45:54.000000000", + "2019-01-04T12:46:28.000000000", + "2019-01-04T12:46:40.000000000", + "2019-01-04T12:52:31.000000000", + "2019-01-04T12:55:18.000000000", + "2019-01-04T12:55:22.000000000", + "2019-01-04T12:58:23.000000000", + "2019-01-04T12:58:54.000000000", + "2019-01-04T12:59:03.000000000", + "2019-01-04T12:59:09.000000000", + "2019-01-04T12:59:29.000000000", + "2019-01-04T12:59:33.000000000", + "2019-01-04T12:59:40.000000000", + "2019-01-04T13:02:35.000000000", + "2019-01-04T13:03:05.000000000", + "2019-01-04T13:03:26.000000000", + "2019-01-04T13:03:37.000000000", + "2019-01-04T13:03:52.000000000", + "2019-01-04T13:03:58.000000000", + "2019-01-04T13:04:06.000000000", + "2019-01-04T13:06:19.000000000", + "2019-01-04T13:06:39.000000000", + "2019-01-04T13:09:34.000000000", + "2019-01-04T13:09:54.000000000", + "2019-01-04T13:11:08.000000000", + "2019-01-04T13:11:16.000000000", + "2019-01-04T13:12:40.000000000", + "2019-01-04T13:13:32.000000000", + "2019-01-04T13:14:59.000000000", + "2019-01-04T13:17:40.000000000", + "2019-01-04T13:17:51.000000000", + "2019-01-04T13:17:59.000000000", + "2019-01-04T13:18:24.000000000", + "2019-01-04T13:18:45.000000000", + "2019-01-04T13:20:04.000000000", + "2019-01-04T13:20:38.000000000", + "2019-01-04T13:23:05.000000000", + "2019-01-04T13:23:32.000000000", + "2019-01-04T13:24:39.000000000", + "2019-01-04T13:25:52.000000000", + "2019-01-04T13:26:41.000000000", + "2019-01-04T13:26:46.000000000", + "2019-01-04T13:26:56.000000000", + "2019-01-04T13:29:46.000000000", + "2019-01-04T13:30:03.000000000", + "2019-01-04T13:31:07.000000000", + "2019-01-04T13:31:26.000000000", + "2019-01-04T13:38:50.000000000", + "2019-01-04T13:38:57.000000000", + "2019-01-04T13:39:17.000000000", + "2019-01-04T13:39:50.000000000", + "2019-01-04T13:41:08.000000000", + "2019-01-04T13:42:08.000000000", + "2019-01-04T13:42:23.000000000", + "2019-01-04T13:42:39.000000000", + "2019-01-04T13:42:49.000000000", + "2019-01-04T13:43:29.000000000", + "2019-01-04T13:43:45.000000000", + "2019-01-04T13:44:05.000000000", + "2019-01-04T13:47:42.000000000", + "2019-01-04T13:48:08.000000000", + "2019-01-04T13:49:17.000000000", + "2019-01-04T13:49:57.000000000", + "2019-01-04T13:50:26.000000000", + "2019-01-04T13:50:52.000000000", + "2019-01-04T13:51:00.000000000", + "2019-01-04T13:52:33.000000000", + "2019-01-04T13:53:26.000000000", + "2019-01-04T13:54:44.000000000", + "2019-01-04T13:56:02.000000000", + "2019-01-04T13:56:46.000000000", + "2019-01-04T14:00:07.000000000", + "2019-01-04T14:00:23.000000000", + "2019-01-04T14:00:35.000000000", + "2019-01-04T14:00:57.000000000", + "2019-01-04T14:01:06.000000000", + "2019-01-04T14:02:08.000000000", + "2019-01-04T14:02:52.000000000", + "2019-01-04T14:03:33.000000000", + "2019-01-04T14:05:21.000000000", + "2019-01-04T14:09:19.000000000", + "2019-01-04T14:11:16.000000000", + "2019-01-04T14:11:26.000000000", + "2019-01-04T14:11:42.000000000", + "2019-01-04T14:11:44.000000000", + "2019-01-04T14:11:56.000000000", + "2019-01-04T14:13:02.000000000", + "2019-01-04T14:13:35.000000000", + "2019-01-04T14:14:11.000000000", + "2019-01-04T14:14:57.000000000", + "2019-01-04T14:15:21.000000000", + "2019-01-04T14:15:41.000000000", + "2019-01-04T14:16:51.000000000", + "2019-01-04T14:17:58.000000000", + "2019-01-04T14:22:25.000000000", + "2019-01-04T14:22:26.000000000", + "2019-01-04T14:22:45.000000000", + "2019-01-04T14:24:17.000000000", + "2019-01-04T14:25:46.000000000", + "2019-01-04T14:26:18.000000000", + "2019-01-04T14:26:51.000000000", + "2019-01-04T14:27:09.000000000", + "2019-01-04T14:27:47.000000000", + "2019-01-04T14:28:01.000000000", + "2019-01-04T14:28:18.000000000", + "2019-01-04T14:28:40.000000000", + "2019-01-04T14:29:49.000000000", + "2019-01-04T14:29:51.000000000", + "2019-01-04T14:30:28.000000000", + "2019-01-04T14:31:01.000000000", + "2019-01-04T14:31:24.000000000", + "2019-01-04T14:32:11.000000000", + "2019-01-04T14:32:19.000000000", + "2019-01-04T14:32:57.000000000", + "2019-01-04T14:33:06.000000000", + "2019-01-04T14:33:47.000000000", + "2019-01-04T14:35:56.000000000", + "2019-01-04T14:36:05.000000000", + "2019-01-04T14:37:17.000000000", + "2019-01-04T14:37:19.000000000", + "2019-01-04T14:38:30.000000000", + "2019-01-04T14:38:40.000000000", + "2019-01-04T14:40:29.000000000", + "2019-01-04T14:40:39.000000000", + "2019-01-04T14:41:34.000000000", + "2019-01-04T14:42:04.000000000", + "2019-01-04T14:42:25.000000000", + "2019-01-04T14:44:46.000000000", + "2019-01-04T14:45:23.000000000", + "2019-01-04T14:45:48.000000000", + "2019-01-04T14:48:45.000000000", + "2019-01-04T14:48:56.000000000", + "2019-01-04T14:49:24.000000000", + "2019-01-04T14:52:37.000000000", + "2019-01-04T14:54:15.000000000", + "2019-01-04T14:54:20.000000000", + "2019-01-04T14:54:31.000000000", + "2019-01-04T14:59:06.000000000", + "2019-01-04T14:59:11.000000000", + "2019-01-04T15:00:53.000000000", + "2019-01-04T15:03:34.000000000", + "2019-01-04T15:04:49.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:05:47.000000000", + "2019-01-04T15:05:54.000000000", + "2019-01-04T15:05:57.000000000", + "2019-01-04T15:06:31.000000000", + "2019-01-04T15:06:35.000000000", + "2019-01-04T15:07:04.000000000", + "2019-01-04T15:07:05.000000000", + "2019-01-04T15:07:39.000000000", + "2019-01-04T15:08:00.000000000", + "2019-01-04T15:08:25.000000000", + "2019-01-04T15:09:24.000000000", + "2019-01-04T15:09:31.000000000", + "2019-01-04T15:13:24.000000000", + "2019-01-04T15:13:30.000000000", + "2019-01-04T15:13:42.000000000", + "2019-01-04T15:13:43.000000000", + "2019-01-04T15:17:09.000000000", + "2019-01-04T15:17:20.000000000", + "2019-01-04T15:20:43.000000000", + "2019-01-04T15:22:09.000000000", + "2019-01-04T15:22:14.000000000", + "2019-01-04T15:22:41.000000000", + "2019-01-04T15:23:34.000000000", + "2019-01-04T15:24:54.000000000", + "2019-01-04T15:25:21.000000000", + "2019-01-04T15:26:24.000000000", + "2019-01-04T15:27:49.000000000", + "2019-01-04T15:31:25.000000000", + "2019-01-04T15:31:38.000000000", + "2019-01-04T15:32:40.000000000", + "2019-01-04T15:35:08.000000000", + "2019-01-04T15:36:00.000000000", + "2019-01-04T15:36:34.000000000", + "2019-01-04T15:37:30.000000000", + "2019-01-04T15:40:01.000000000", + "2019-01-04T15:40:05.000000000", + "2019-01-04T15:40:49.000000000", + "2019-01-04T15:42:58.000000000", + "2019-01-04T15:43:21.000000000", + "2019-01-04T15:43:25.000000000", + "2019-01-04T15:44:21.000000000", + "2019-01-04T15:45:01.000000000", + "2019-01-04T15:46:20.000000000", + "2019-01-04T15:46:45.000000000", + "2019-01-04T15:49:06.000000000", + "2019-01-04T15:49:58.000000000", + "2019-01-04T15:49:59.000000000", + "2019-01-04T15:50:22.000000000", + "2019-01-04T15:52:38.000000000", + "2019-01-04T15:56:10.000000000", + "2019-01-04T15:57:12.000000000", + "2019-01-04T15:57:50.000000000", + "2019-01-04T15:58:54.000000000", + "2019-01-04T16:00:37.000000000", + "2019-01-04T16:01:13.000000000", + "2019-01-04T16:01:45.000000000", + "2019-01-04T16:03:11.000000000", + "2019-01-04T16:04:07.000000000", + "2019-01-04T16:05:16.000000000", + "2019-01-04T16:05:50.000000000", + "2019-01-04T16:07:19.000000000", + "2019-01-04T16:09:39.000000000", + "2019-01-04T16:10:10.000000000", + "2019-01-04T16:10:48.000000000", + "2019-01-04T16:11:00.000000000", + "2019-01-04T16:11:20.000000000", + "2019-01-04T16:13:06.000000000", + "2019-01-04T16:13:30.000000000", + "2019-01-04T16:13:44.000000000", + "2019-01-04T16:14:53.000000000", + "2019-01-04T16:15:11.000000000", + "2019-01-04T16:15:55.000000000", + "2019-01-04T16:23:00.000000000", + "2019-01-04T16:23:47.000000000", + "2019-01-04T16:24:32.000000000", + "2019-01-04T16:24:56.000000000", + "2019-01-04T16:25:54.000000000", + "2019-01-04T16:25:58.000000000", + "2019-01-04T16:27:32.000000000", + "2019-01-04T16:27:48.000000000", + "2019-01-04T16:28:54.000000000", + "2019-01-04T16:29:50.000000000", + "2019-01-04T16:30:51.000000000", + "2019-01-04T16:32:01.000000000", + "2019-01-04T16:33:21.000000000", + "2019-01-04T16:34:45.000000000", + "2019-01-04T16:38:39.000000000", + "2019-01-04T16:39:09.000000000", + "2019-01-04T16:39:21.000000000", + "2019-01-04T16:40:15.000000000", + "2019-01-04T16:47:30.000000000", + "2019-01-04T16:48:19.000000000", + "2019-01-04T16:48:38.000000000", + "2019-01-04T16:49:04.000000000", + "2019-01-04T16:49:11.000000000", + "2019-01-04T16:50:06.000000000", + "2019-01-04T16:51:28.000000000", + "2019-01-04T16:51:31.000000000", + "2019-01-04T16:51:55.000000000", + "2019-01-04T16:52:20.000000000", + "2019-01-04T16:53:33.000000000", + "2019-01-04T16:53:54.000000000", + "2019-01-04T16:54:13.000000000", + "2019-01-04T16:54:51.000000000", + "2019-01-04T16:55:46.000000000", + "2019-01-04T16:57:08.000000000", + "2019-01-04T16:57:11.000000000", + "2019-01-04T16:57:17.000000000", + "2019-01-04T16:58:15.000000000", + "2019-01-04T16:58:39.000000000", + "2019-01-04T16:58:47.000000000", + "2019-01-04T17:00:16.000000000", + "2019-01-04T17:00:32.000000000", + "2019-01-04T17:00:36.000000000", + "2019-01-04T17:01:57.000000000", + "2019-01-04T17:03:33.000000000", + "2019-01-04T17:04:16.000000000", + "2019-01-04T17:05:58.000000000", + "2019-01-04T17:10:58.000000000", + "2019-01-04T17:11:25.000000000", + "2019-01-04T17:13:03.000000000", + "2019-01-04T17:13:59.000000000", + "2019-01-04T17:14:43.000000000", + "2019-01-04T17:16:46.000000000", + "2019-01-04T17:17:16.000000000", + "2019-01-04T17:20:50.000000000", + "2019-01-04T17:21:03.000000000", + "2019-01-04T17:21:49.000000000", + "2019-01-04T17:21:58.000000000", + "2019-01-04T17:24:18.000000000", + "2019-01-04T17:24:36.000000000", + "2019-01-04T17:24:37.000000000", + "2019-01-04T17:27:12.000000000", + "2019-01-04T17:27:18.000000000", + "2019-01-04T17:29:03.000000000", + "2019-01-04T17:30:12.000000000", + "2019-01-04T17:30:22.000000000", + "2019-01-04T17:31:18.000000000", + "2019-01-04T17:31:42.000000000", + "2019-01-04T17:31:46.000000000", + "2019-01-04T17:32:47.000000000", + "2019-01-04T17:34:44.000000000", + "2019-01-04T17:34:59.000000000", + "2019-01-04T17:35:17.000000000", + "2019-01-04T17:35:34.000000000", + "2019-01-04T17:36:37.000000000", + "2019-01-04T17:38:17.000000000", + "2019-01-04T17:38:48.000000000", + "2019-01-04T17:39:15.000000000", + "2019-01-04T17:43:11.000000000", + "2019-01-04T17:43:17.000000000", + "2019-01-04T17:44:42.000000000", + "2019-01-04T17:44:57.000000000", + "2019-01-04T17:45:38.000000000", + "2019-01-04T17:47:14.000000000", + "2019-01-04T17:47:40.000000000", + "2019-01-04T17:48:27.000000000", + "2019-01-04T17:49:08.000000000", + "2019-01-04T17:50:40.000000000", + "2019-01-04T17:51:31.000000000", + "2019-01-04T17:52:29.000000000", + "2019-01-04T17:58:07.000000000", + "2019-01-04T17:58:20.000000000", + "2019-01-04T17:58:31.000000000", + "2019-01-04T17:59:36.000000000", + "2019-01-04T18:00:01.000000000", + "2019-01-04T18:00:07.000000000", + "2019-01-04T18:00:55.000000000", + "2019-01-04T18:01:56.000000000", + "2019-01-04T18:04:48.000000000", + "2019-01-04T18:04:59.000000000", + "2019-01-04T18:07:34.000000000", + "2019-01-04T18:08:27.000000000", + "2019-01-04T18:09:34.000000000", + "2019-01-04T18:10:59.000000000", + "2019-01-04T18:11:19.000000000", + "2019-01-04T18:14:42.000000000", + "2019-01-04T18:14:54.000000000", + "2019-01-04T18:15:51.000000000", + "2019-01-04T18:17:24.000000000", + "2019-01-04T18:17:54.000000000", + "2019-01-04T18:18:06.000000000", + "2019-01-04T18:18:34.000000000", + "2019-01-04T18:20:25.000000000", + "2019-01-04T18:21:36.000000000", + "2019-01-04T18:24:51.000000000", + "2019-01-04T18:25:04.000000000", + "2019-01-04T18:27:19.000000000", + "2019-01-04T18:28:36.000000000", + "2019-01-04T18:29:32.000000000", + "2019-01-04T18:29:49.000000000", + "2019-01-04T18:30:01.000000000", + "2019-01-04T18:32:38.000000000", + "2019-01-04T18:32:54.000000000", + "2019-01-04T18:33:37.000000000", + "2019-01-04T18:35:45.000000000", + "2019-01-04T18:37:06.000000000", + "2019-01-04T18:40:39.000000000", + "2019-01-04T18:41:36.000000000", + "2019-01-04T18:41:37.000000000", + "2019-01-04T18:42:15.000000000", + "2019-01-04T18:44:09.000000000", + "2019-01-04T18:44:55.000000000", + "2019-01-04T18:45:50.000000000", + "2019-01-04T18:46:26.000000000", + "2019-01-04T18:46:58.000000000", + "2019-01-04T18:47:09.000000000", + "2019-01-04T18:47:47.000000000", + "2019-01-04T18:48:15.000000000", + "2019-01-04T18:48:30.000000000", + "2019-01-04T18:49:31.000000000", + "2019-01-04T18:52:38.000000000", + "2019-01-04T18:52:41.000000000", + "2019-01-04T18:53:30.000000000", + "2019-01-04T18:55:14.000000000", + "2019-01-04T18:55:43.000000000", + "2019-01-04T18:55:50.000000000", + "2019-01-04T18:56:22.000000000", + "2019-01-04T18:57:03.000000000", + "2019-01-04T18:59:42.000000000", + "2019-01-04T19:03:52.000000000", + "2019-01-04T19:04:54.000000000", + "2019-01-04T19:06:46.000000000", + "2019-01-04T19:07:20.000000000", + "2019-01-04T19:08:16.000000000", + "2019-01-04T19:13:51.000000000", + "2019-01-04T19:14:34.000000000", + "2019-01-04T19:15:41.000000000", + "2019-01-04T19:16:12.000000000", + "2019-01-04T19:17:07.000000000", + "2019-01-04T19:17:41.000000000", + "2019-01-04T19:19:09.000000000", + "2019-01-04T19:19:23.000000000", + "2019-01-04T19:19:41.000000000", + "2019-01-04T19:20:16.000000000", + "2019-01-04T19:21:15.000000000", + "2019-01-04T19:21:30.000000000", + "2019-01-04T19:22:23.000000000", + "2019-01-04T19:24:55.000000000", + "2019-01-04T19:25:06.000000000", + "2019-01-04T19:25:11.000000000", + "2019-01-04T19:32:30.000000000", + "2019-01-04T19:34:43.000000000", + "2019-01-04T19:34:53.000000000", + "2019-01-04T19:35:15.000000000", + "2019-01-04T19:36:14.000000000", + "2019-01-04T19:38:49.000000000", + "2019-01-04T19:39:21.000000000", + "2019-01-04T19:41:29.000000000", + "2019-01-04T19:41:43.000000000", + "2019-01-04T19:41:46.000000000", + "2019-01-04T19:46:15.000000000", + "2019-01-04T19:47:35.000000000", + "2019-01-04T19:48:23.000000000", + "2019-01-04T19:48:41.000000000", + "2019-01-04T19:49:38.000000000", + "2019-01-04T19:49:56.000000000", + "2019-01-04T19:50:06.000000000", + "2019-01-04T19:50:08.000000000", + "2019-01-04T19:51:17.000000000", + "2019-01-04T19:52:23.000000000", + "2019-01-04T19:52:49.000000000", + "2019-01-04T19:53:04.000000000", + "2019-01-04T19:53:14.000000000", + "2019-01-04T19:53:24.000000000", + "2019-01-04T19:53:46.000000000", + "2019-01-04T19:53:51.000000000", + "2019-01-04T19:53:59.000000000", + "2019-01-04T19:55:00.000000000", + "2019-01-04T19:55:05.000000000", + "2019-01-04T19:55:43.000000000", + "2019-01-04T19:56:07.000000000", + "2019-01-04T19:56:34.000000000", + "2019-01-04T19:56:46.000000000", + "2019-01-04T19:57:16.000000000", + "2019-01-04T19:57:22.000000000", + "2019-01-04T19:58:12.000000000", + "2019-01-04T19:58:26.000000000", + "2019-01-04T20:01:10.000000000", + "2019-01-04T20:01:16.000000000", + "2019-01-04T20:02:18.000000000", + "2019-01-04T20:02:45.000000000", + "2019-01-04T20:03:02.000000000", + "2019-01-04T20:03:10.000000000", + "2019-01-04T20:04:09.000000000", + "2019-01-04T20:05:05.000000000", + "2019-01-04T20:05:56.000000000", + "2019-01-04T20:06:32.000000000", + "2019-01-04T20:07:19.000000000", + "2019-01-04T20:07:25.000000000", + "2019-01-04T20:08:25.000000000", + "2019-01-04T20:08:56.000000000", + "2019-01-04T20:09:35.000000000", + "2019-01-04T20:10:13.000000000", + "2019-01-04T20:10:49.000000000", + "2019-01-04T20:11:21.000000000", + "2019-01-04T20:11:45.000000000", + "2019-01-04T20:13:34.000000000", + "2019-01-04T20:14:07.000000000", + "2019-01-04T20:14:12.000000000", + "2019-01-04T20:16:03.000000000", + "2019-01-04T20:18:55.000000000", + "2019-01-04T20:21:07.000000000", + "2019-01-04T20:21:15.000000000", + "2019-01-04T20:21:27.000000000", + "2019-01-04T20:23:27.000000000", + "2019-01-04T20:28:30.000000000", + "2019-01-04T20:30:34.000000000", + "2019-01-04T20:31:22.000000000", + "2019-01-04T20:32:31.000000000", + "2019-01-04T20:33:30.000000000", + "2019-01-04T20:34:04.000000000", + "2019-01-04T20:36:09.000000000", + "2019-01-04T20:36:24.000000000", + "2019-01-04T20:37:45.000000000", + "2019-01-04T20:37:47.000000000", + "2019-01-04T20:38:01.000000000", + "2019-01-04T20:38:33.000000000", + "2019-01-04T20:38:47.000000000", + "2019-01-04T20:40:05.000000000", + "2019-01-04T20:40:12.000000000", + "2019-01-04T20:40:36.000000000", + "2019-01-04T20:42:33.000000000", + "2019-01-04T20:43:59.000000000", + "2019-01-04T20:44:03.000000000", + "2019-01-04T20:44:33.000000000", + "2019-01-04T20:45:58.000000000", + "2019-01-04T20:46:13.000000000", + "2019-01-04T20:46:16.000000000", + "2019-01-04T20:48:18.000000000", + "2019-01-04T20:48:46.000000000", + "2019-01-04T20:49:01.000000000", + "2019-01-04T20:49:11.000000000", + "2019-01-04T20:49:38.000000000", + "2019-01-04T20:49:52.000000000", + "2019-01-04T20:51:41.000000000", + "2019-01-04T20:52:54.000000000", + "2019-01-04T20:53:24.000000000", + "2019-01-04T20:57:31.000000000", + "2019-01-04T20:58:38.000000000", + "2019-01-04T20:59:37.000000000", + "2019-01-04T20:59:44.000000000", + "2019-01-04T20:59:49.000000000", + "2019-01-04T21:00:05.000000000", + "2019-01-04T21:01:23.000000000", + "2019-01-04T21:02:16.000000000", + "2019-01-04T21:06:34.000000000", + "2019-01-04T21:07:04.000000000", + "2019-01-04T21:07:49.000000000", + "2019-01-04T21:09:05.000000000", + "2019-01-04T21:09:29.000000000", + "2019-01-04T21:09:58.000000000", + "2019-01-04T21:10:28.000000000", + "2019-01-04T21:11:09.000000000", + "2019-01-04T21:11:27.000000000", + "2019-01-04T21:11:37.000000000", + "2019-01-04T21:11:40.000000000", + "2019-01-04T21:15:38.000000000", + "2019-01-04T21:18:16.000000000", + "2019-01-04T21:18:17.000000000", + "2019-01-04T21:18:28.000000000", + "2019-01-04T21:20:42.000000000", + "2019-01-04T21:21:03.000000000", + "2019-01-04T21:22:05.000000000", + "2019-01-04T21:22:18.000000000", + "2019-01-04T21:23:06.000000000", + "2019-01-04T21:23:45.000000000", + "2019-01-04T21:27:02.000000000", + "2019-01-04T21:27:19.000000000", + "2019-01-04T21:30:21.000000000", + "2019-01-04T21:30:24.000000000", + "2019-01-04T21:30:45.000000000", + "2019-01-04T21:31:45.000000000", + "2019-01-04T21:31:54.000000000", + "2019-01-04T21:34:02.000000000", + "2019-01-04T21:34:36.000000000", + "2019-01-04T21:35:04.000000000", + "2019-01-04T21:35:58.000000000", + "2019-01-04T21:37:01.000000000", + "2019-01-04T21:37:14.000000000", + "2019-01-04T21:37:16.000000000", + "2019-01-04T21:37:48.000000000", + "2019-01-04T21:39:02.000000000", + "2019-01-04T21:39:45.000000000", + "2019-01-04T21:40:41.000000000", + "2019-01-04T21:43:15.000000000", + "2019-01-04T21:43:20.000000000", + "2019-01-04T21:44:20.000000000", + "2019-01-04T21:45:17.000000000", + "2019-01-04T21:46:01.000000000", + "2019-01-04T21:46:12.000000000", + "2019-01-04T21:46:14.000000000", + "2019-01-04T21:46:48.000000000", + "2019-01-04T21:47:52.000000000", + "2019-01-04T21:48:22.000000000", + "2019-01-04T21:48:38.000000000", + "2019-01-04T21:48:51.000000000", + "2019-01-04T21:48:59.000000000", + "2019-01-04T21:49:26.000000000", + "2019-01-04T21:50:34.000000000", + "2019-01-04T21:51:11.000000000", + "2019-01-04T21:53:57.000000000", + "2019-01-04T21:55:42.000000000", + "2019-01-04T21:55:52.000000000", + "2019-01-04T22:00:36.000000000", + "2019-01-04T22:00:45.000000000", + "2019-01-04T22:02:02.000000000", + "2019-01-04T22:02:04.000000000", + "2019-01-04T22:03:08.000000000", + "2019-01-04T22:03:21.000000000", + "2019-01-04T22:03:53.000000000", + "2019-01-04T22:04:05.000000000", + "2019-01-04T22:05:12.000000000", + "2019-01-04T22:05:54.000000000", + "2019-01-04T22:08:48.000000000", + "2019-01-04T22:10:13.000000000", + "2019-01-04T22:10:37.000000000", + "2019-01-04T22:11:10.000000000", + "2019-01-04T22:11:13.000000000", + "2019-01-04T22:13:43.000000000", + "2019-01-04T22:15:01.000000000", + "2019-01-04T22:15:14.000000000", + "2019-01-04T22:15:53.000000000", + "2019-01-04T22:17:49.000000000", + "2019-01-04T22:18:40.000000000", + "2019-01-04T22:20:02.000000000", + "2019-01-04T22:20:38.000000000", + "2019-01-04T22:22:18.000000000", + "2019-01-04T22:23:17.000000000", + "2019-01-04T22:23:48.000000000", + "2019-01-04T22:24:46.000000000", + "2019-01-04T22:28:22.000000000", + "2019-01-04T22:29:17.000000000", + "2019-01-04T22:29:31.000000000", + "2019-01-04T22:30:00.000000000", + "2019-01-04T22:30:35.000000000", + "2019-01-04T22:31:58.000000000", + "2019-01-04T22:32:08.000000000", + "2019-01-04T22:33:30.000000000", + "2019-01-04T22:33:38.000000000", + "2019-01-04T22:35:49.000000000", + "2019-01-04T22:35:51.000000000", + "2019-01-04T22:36:45.000000000", + "2019-01-04T22:36:47.000000000", + "2019-01-04T22:37:06.000000000", + "2019-01-04T22:38:20.000000000", + "2019-01-04T22:39:45.000000000", + "2019-01-04T22:40:47.000000000", + "2019-01-04T22:41:56.000000000", + "2019-01-04T22:42:00.000000000", + "2019-01-04T22:42:07.000000000", + "2019-01-04T22:43:31.000000000", + "2019-01-04T22:44:16.000000000", + "2019-01-04T22:44:49.000000000", + "2019-01-04T22:45:15.000000000", + "2019-01-04T22:45:29.000000000", + "2019-01-04T22:50:07.000000000", + "2019-01-04T22:50:15.000000000", + "2019-01-04T22:51:52.000000000", + "2019-01-04T22:52:37.000000000", + "2019-01-04T22:54:15.000000000", + "2019-01-04T22:54:54.000000000", + "2019-01-04T22:55:18.000000000", + "2019-01-04T22:55:48.000000000", + "2019-01-04T22:56:47.000000000", + "2019-01-04T22:57:06.000000000", + "2019-01-04T22:57:51.000000000", + "2019-01-04T22:57:57.000000000", + "2019-01-04T22:58:30.000000000", + "2019-01-04T22:59:50.000000000", + "2019-01-04T23:00:15.000000000", + "2019-01-04T23:00:39.000000000", + "2019-01-04T23:01:32.000000000", + "2019-01-04T23:01:40.000000000", + "2019-01-04T23:02:23.000000000", + "2019-01-04T23:02:46.000000000", + "2019-01-04T23:03:46.000000000", + "2019-01-04T23:04:18.000000000", + "2019-01-04T23:07:42.000000000", + "2019-01-04T23:08:41.000000000", + "2019-01-04T23:13:03.000000000", + "2019-01-04T23:15:01.000000000", + "2019-01-04T23:15:18.000000000", + "2019-01-04T23:15:21.000000000", + "2019-01-04T23:15:44.000000000", + "2019-01-04T23:15:49.000000000", + "2019-01-04T23:17:12.000000000", + "2019-01-04T23:17:44.000000000", + "2019-01-04T23:19:08.000000000", + "2019-01-04T23:19:45.000000000", + "2019-01-04T23:20:11.000000000", + "2019-01-04T23:20:18.000000000", + "2019-01-04T23:21:00.000000000", + "2019-01-04T23:22:27.000000000", + "2019-01-04T23:22:47.000000000", + "2019-01-04T23:23:22.000000000", + "2019-01-04T23:24:59.000000000", + "2019-01-04T23:27:07.000000000", + "2019-01-04T23:29:00.000000000", + "2019-01-04T23:31:00.000000000", + "2019-01-04T23:31:10.000000000", + "2019-01-04T23:31:40.000000000", + "2019-01-04T23:38:29.000000000", + "2019-01-04T23:38:47.000000000", + "2019-01-04T23:39:18.000000000", + "2019-01-04T23:40:27.000000000", + "2019-01-04T23:41:08.000000000", + "2019-01-04T23:41:18.000000000", + "2019-01-04T23:42:36.000000000", + "2019-01-04T23:44:33.000000000", + "2019-01-04T23:45:16.000000000", + "2019-01-04T23:46:11.000000000", + "2019-01-04T23:46:54.000000000", + "2019-01-04T23:47:09.000000000", + "2019-01-04T23:48:28.000000000", + "2019-01-04T23:49:09.000000000", + "2019-01-04T23:51:20.000000000", + "2019-01-04T23:51:24.000000000", + "2019-01-04T23:53:41.000000000", + "2019-01-04T23:54:39.000000000", + "2019-01-04T23:54:53.000000000", + "2019-01-04T23:55:44.000000000", + "2019-01-04T23:56:31.000000000", + "2019-01-04T23:56:33.000000000", + "2019-01-04T23:57:00.000000000", + "2019-01-04T23:57:07.000000000", + "2019-01-04T23:58:15.000000000", + "2019-01-04T23:59:00.000000000", + "2019-01-05T00:00:15.000000000", + "2019-01-05T00:01:15.000000000", + "2019-01-05T00:02:10.000000000", + "2019-01-05T00:03:31.000000000", + "2019-01-05T00:03:49.000000000", + "2019-01-05T00:03:52.000000000", + "2019-01-05T00:04:10.000000000", + "2019-01-05T00:05:31.000000000", + "2019-01-05T00:05:36.000000000", + "2019-01-05T00:07:06.000000000", + "2019-01-05T00:07:19.000000000", + "2019-01-05T00:11:15.000000000", + "2019-01-05T00:12:27.000000000", + "2019-01-05T00:13:02.000000000", + "2019-01-05T00:13:55.000000000", + "2019-01-05T00:16:09.000000000", + "2019-01-05T00:16:37.000000000", + "2019-01-05T00:16:46.000000000", + "2019-01-05T00:18:26.000000000", + "2019-01-05T00:19:09.000000000", + "2019-01-05T00:19:31.000000000", + "2019-01-05T00:19:45.000000000", + "2019-01-05T00:20:21.000000000", + "2019-01-05T00:21:42.000000000", + "2019-01-05T00:25:08.000000000", + "2019-01-05T00:25:23.000000000", + "2019-01-05T00:25:40.000000000", + "2019-01-05T00:26:35.000000000", + "2019-01-05T00:26:53.000000000", + "2019-01-05T00:27:58.000000000", + "2019-01-05T00:28:22.000000000", + "2019-01-05T00:28:27.000000000", + "2019-01-05T00:29:20.000000000", + "2019-01-05T00:29:56.000000000", + "2019-01-05T00:31:32.000000000", + "2019-01-05T00:32:03.000000000", + "2019-01-05T00:32:30.000000000", + "2019-01-05T00:33:20.000000000", + "2019-01-05T00:35:36.000000000", + "2019-01-05T00:38:57.000000000", + "2019-01-05T00:39:00.000000000", + "2019-01-05T00:39:45.000000000", + "2019-01-05T00:40:59.000000000", + "2019-01-05T00:41:08.000000000", + "2019-01-05T00:42:45.000000000", + "2019-01-05T00:45:27.000000000", + "2019-01-05T00:48:38.000000000", + "2019-01-05T00:49:55.000000000", + "2019-01-05T00:50:41.000000000", + "2019-01-05T00:50:51.000000000", + "2019-01-05T00:51:05.000000000", + "2019-01-05T00:52:26.000000000", + "2019-01-05T00:52:44.000000000", + "2019-01-05T00:54:06.000000000", + "2019-01-05T00:55:17.000000000", + "2019-01-05T00:56:31.000000000", + "2019-01-05T00:57:32.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:02:30.000000000", + "2019-01-05T01:05:15.000000000", + "2019-01-05T01:07:33.000000000", + "2019-01-05T01:10:52.000000000", + "2019-01-05T01:11:56.000000000", + "2019-01-05T01:12:40.000000000", + "2019-01-05T01:13:44.000000000", + "2019-01-05T01:13:50.000000000", + "2019-01-05T01:14:25.000000000", + "2019-01-05T01:16:03.000000000", + "2019-01-05T01:16:36.000000000", + "2019-01-05T01:17:06.000000000", + "2019-01-05T01:17:50.000000000", + "2019-01-05T01:19:48.000000000", + "2019-01-05T01:19:53.000000000", + "2019-01-05T01:20:21.000000000", + "2019-01-05T01:21:11.000000000", + "2019-01-05T01:23:39.000000000", + "2019-01-05T01:25:33.000000000", + "2019-01-05T01:25:50.000000000", + "2019-01-05T01:26:40.000000000", + "2019-01-05T01:26:53.000000000", + "2019-01-05T01:27:28.000000000", + "2019-01-05T01:27:56.000000000", + "2019-01-05T01:28:02.000000000", + "2019-01-05T01:29:37.000000000", + "2019-01-05T01:29:49.000000000", + "2019-01-05T01:31:31.000000000", + "2019-01-05T01:34:01.000000000", + "2019-01-05T01:34:37.000000000", + "2019-01-05T01:35:11.000000000", + "2019-01-05T01:35:28.000000000", + "2019-01-05T01:38:11.000000000", + "2019-01-05T01:38:18.000000000", + "2019-01-05T01:38:45.000000000", + "2019-01-05T01:40:34.000000000", + "2019-01-05T01:41:05.000000000", + "2019-01-05T01:43:38.000000000", + "2019-01-05T01:45:52.000000000", + "2019-01-05T01:47:11.000000000", + "2019-01-05T01:47:28.000000000", + "2019-01-05T01:48:45.000000000", + "2019-01-05T01:48:50.000000000", + "2019-01-05T01:50:55.000000000", + "2019-01-05T01:51:56.000000000", + "2019-01-05T01:52:02.000000000", + "2019-01-05T01:52:22.000000000", + "2019-01-05T01:52:56.000000000", + "2019-01-05T01:55:13.000000000", + "2019-01-05T01:55:52.000000000", + "2019-01-05T01:56:36.000000000", + "2019-01-05T01:56:51.000000000", + "2019-01-05T01:58:59.000000000", + "2019-01-05T01:59:01.000000000", + "2019-01-05T01:59:51.000000000", + "2019-01-05T02:01:29.000000000", + "2019-01-05T02:02:00.000000000", + "2019-01-05T02:02:09.000000000", + "2019-01-05T02:02:14.000000000", + "2019-01-05T02:03:34.000000000", + "2019-01-05T02:04:27.000000000", + "2019-01-05T02:05:08.000000000", + "2019-01-05T02:06:12.000000000", + "2019-01-05T02:06:34.000000000", + "2019-01-05T02:07:05.000000000", + "2019-01-05T02:07:25.000000000", + "2019-01-05T02:08:21.000000000", + "2019-01-05T02:09:22.000000000", + "2019-01-05T02:11:00.000000000", + "2019-01-05T02:11:14.000000000", + "2019-01-05T02:11:28.000000000", + "2019-01-05T02:12:55.000000000", + "2019-01-05T02:14:08.000000000", + "2019-01-05T02:16:23.000000000", + "2019-01-05T02:17:10.000000000", + "2019-01-05T02:17:15.000000000", + "2019-01-05T02:17:54.000000000", + "2019-01-05T02:18:51.000000000", + "2019-01-05T02:19:10.000000000", + "2019-01-05T02:19:34.000000000", + "2019-01-05T02:22:34.000000000", + "2019-01-05T02:24:11.000000000", + "2019-01-05T02:24:14.000000000", + "2019-01-05T02:25:16.000000000", + "2019-01-05T02:26:13.000000000", + "2019-01-05T02:29:46.000000000", + "2019-01-05T02:31:43.000000000", + "2019-01-05T02:32:26.000000000", + "2019-01-05T02:32:57.000000000", + "2019-01-05T02:33:00.000000000", + "2019-01-05T02:33:22.000000000", + "2019-01-05T02:34:03.000000000", + "2019-01-05T02:34:32.000000000", + "2019-01-05T02:35:09.000000000", + "2019-01-05T02:37:05.000000000", + "2019-01-05T02:37:22.000000000", + "2019-01-05T02:37:24.000000000", + "2019-01-05T02:38:10.000000000", + "2019-01-05T02:38:39.000000000", + "2019-01-05T02:39:22.000000000", + "2019-01-05T02:43:06.000000000", + "2019-01-05T02:43:40.000000000", + "2019-01-05T02:44:28.000000000", + "2019-01-05T02:46:37.000000000", + "2019-01-05T02:49:10.000000000", + "2019-01-05T02:50:02.000000000", + "2019-01-05T02:50:13.000000000", + "2019-01-05T02:50:25.000000000", + "2019-01-05T02:51:12.000000000", + "2019-01-05T02:51:53.000000000", + "2019-01-05T02:52:51.000000000", + "2019-01-05T02:53:44.000000000", + "2019-01-05T02:55:38.000000000", + "2019-01-05T02:57:47.000000000", + "2019-01-05T02:59:21.000000000", + "2019-01-05T03:00:00.000000000", + "2019-01-05T03:00:12.000000000", + "2019-01-05T03:01:43.000000000", + "2019-01-05T03:01:51.000000000", + "2019-01-05T03:02:55.000000000", + "2019-01-05T03:03:59.000000000", + "2019-01-05T03:04:15.000000000", + "2019-01-05T03:05:33.000000000", + "2019-01-05T03:11:54.000000000", + "2019-01-05T03:12:33.000000000", + "2019-01-05T03:13:50.000000000", + "2019-01-05T03:15:30.000000000", + "2019-01-05T03:15:48.000000000", + "2019-01-05T03:16:00.000000000", + "2019-01-05T03:19:01.000000000", + "2019-01-05T03:20:40.000000000", + "2019-01-05T03:21:19.000000000", + "2019-01-05T03:21:31.000000000", + "2019-01-05T03:21:35.000000000", + "2019-01-05T03:22:48.000000000", + "2019-01-05T03:25:14.000000000", + "2019-01-05T03:25:22.000000000", + "2019-01-05T03:25:27.000000000", + "2019-01-05T03:26:09.000000000", + "2019-01-05T03:26:35.000000000", + "2019-01-05T03:28:23.000000000", + "2019-01-05T03:29:45.000000000", + "2019-01-05T03:29:57.000000000", + "2019-01-05T03:30:11.000000000", + "2019-01-05T03:30:21.000000000", + "2019-01-05T03:31:54.000000000", + "2019-01-05T03:32:10.000000000", + "2019-01-05T03:32:44.000000000", + "2019-01-05T03:34:33.000000000", + "2019-01-05T03:35:03.000000000", + "2019-01-05T03:35:19.000000000", + "2019-01-05T03:35:21.000000000", + "2019-01-05T03:35:36.000000000", + "2019-01-05T03:36:29.000000000", + "2019-01-05T03:38:41.000000000", + "2019-01-05T03:40:31.000000000", + "2019-01-05T03:41:28.000000000", + "2019-01-05T03:42:31.000000000", + "2019-01-05T03:44:17.000000000", + "2019-01-05T03:46:10.000000000", + "2019-01-05T03:48:37.000000000", + "2019-01-05T03:51:41.000000000", + "2019-01-05T03:52:32.000000000", + "2019-01-05T03:55:41.000000000", + "2019-01-05T03:55:53.000000000", + "2019-01-05T03:56:17.000000000", + "2019-01-05T03:56:34.000000000", + "2019-01-05T03:58:01.000000000", + "2019-01-05T03:58:10.000000000", + "2019-01-05T03:58:31.000000000", + "2019-01-05T03:59:32.000000000", + "2019-01-05T04:00:30.000000000", + "2019-01-05T04:00:37.000000000", + "2019-01-05T04:00:57.000000000", + "2019-01-05T04:01:03.000000000", + "2019-01-05T04:02:00.000000000", + "2019-01-05T04:04:27.000000000", + "2019-01-05T04:09:51.000000000", + "2019-01-05T04:10:05.000000000", + "2019-01-05T04:10:19.000000000", + "2019-01-05T04:10:20.000000000", + "2019-01-05T04:10:34.000000000", + "2019-01-05T04:10:37.000000000", + "2019-01-05T04:12:33.000000000", + "2019-01-05T04:13:21.000000000", + "2019-01-05T04:15:28.000000000", + "2019-01-05T04:15:48.000000000", + "2019-01-05T04:17:31.000000000", + "2019-01-05T04:17:49.000000000", + "2019-01-05T04:18:49.000000000", + "2019-01-05T04:20:00.000000000", + "2019-01-05T04:20:53.000000000", + "2019-01-05T04:22:16.000000000", + "2019-01-05T04:22:40.000000000", + "2019-01-05T04:22:55.000000000", + "2019-01-05T04:24:00.000000000", + "2019-01-05T04:24:15.000000000", + "2019-01-05T04:25:34.000000000", + "2019-01-05T04:26:31.000000000", + "2019-01-05T04:26:52.000000000", + "2019-01-05T04:27:54.000000000", + "2019-01-05T04:28:58.000000000", + "2019-01-05T04:29:17.000000000", + "2019-01-05T04:31:29.000000000", + "2019-01-05T04:31:57.000000000", + "2019-01-05T04:32:24.000000000", + "2019-01-05T04:34:53.000000000", + "2019-01-05T04:34:54.000000000", + "2019-01-05T04:35:11.000000000", + "2019-01-05T04:36:36.000000000", + "2019-01-05T04:36:50.000000000", + "2019-01-05T04:39:16.000000000", + "2019-01-05T04:39:42.000000000", + "2019-01-05T04:39:51.000000000", + "2019-01-05T04:40:44.000000000", + "2019-01-05T04:40:50.000000000", + "2019-01-05T04:42:09.000000000", + "2019-01-05T04:42:36.000000000", + "2019-01-05T04:42:45.000000000", + "2019-01-05T04:43:34.000000000", + "2019-01-05T04:45:15.000000000", + "2019-01-05T04:46:29.000000000", + "2019-01-05T04:47:12.000000000", + "2019-01-05T04:47:24.000000000", + "2019-01-05T04:48:22.000000000", + "2019-01-05T04:50:14.000000000", + "2019-01-05T04:50:15.000000000", + "2019-01-05T04:51:16.000000000", + "2019-01-05T04:52:16.000000000", + "2019-01-05T04:52:19.000000000", + "2019-01-05T04:54:09.000000000", + "2019-01-05T04:55:15.000000000", + "2019-01-05T04:55:48.000000000", + "2019-01-05T04:56:50.000000000", + "2019-01-05T05:00:02.000000000", + "2019-01-05T05:00:47.000000000", + "2019-01-05T05:01:17.000000000", + "2019-01-05T05:01:24.000000000", + "2019-01-05T05:03:20.000000000", + "2019-01-05T05:04:03.000000000", + "2019-01-05T05:04:53.000000000", + "2019-01-05T05:05:16.000000000", + "2019-01-05T05:05:51.000000000", + "2019-01-05T05:09:11.000000000", + "2019-01-05T05:09:26.000000000", + "2019-01-05T05:10:00.000000000", + "2019-01-05T05:11:40.000000000", + "2019-01-05T05:12:04.000000000", + "2019-01-05T05:13:02.000000000", + "2019-01-05T05:14:08.000000000", + "2019-01-05T05:14:28.000000000", + "2019-01-05T05:14:45.000000000", + "2019-01-05T05:15:40.000000000", + "2019-01-05T05:17:11.000000000", + "2019-01-05T05:20:29.000000000", + "2019-01-05T05:22:57.000000000", + "2019-01-05T05:23:16.000000000", + "2019-01-05T05:24:38.000000000", + "2019-01-05T05:24:42.000000000", + "2019-01-05T05:24:43.000000000", + "2019-01-05T05:26:13.000000000", + "2019-01-05T05:26:16.000000000", + "2019-01-05T05:26:22.000000000", + "2019-01-05T05:26:52.000000000", + "2019-01-05T05:26:57.000000000", + "2019-01-05T05:27:51.000000000", + "2019-01-05T05:28:33.000000000", + "2019-01-05T05:28:46.000000000", + "2019-01-05T05:28:58.000000000", + "2019-01-05T05:29:22.000000000", + "2019-01-05T05:29:32.000000000", + "2019-01-05T05:29:55.000000000", + "2019-01-05T05:30:25.000000000", + "2019-01-05T05:30:38.000000000", + "2019-01-05T05:31:38.000000000", + "2019-01-05T05:32:49.000000000", + "2019-01-05T05:33:35.000000000", + "2019-01-05T05:34:25.000000000", + "2019-01-05T05:35:27.000000000", + "2019-01-05T05:35:40.000000000", + "2019-01-05T05:37:11.000000000", + "2019-01-05T05:37:32.000000000", + "2019-01-05T05:37:51.000000000", + "2019-01-05T05:37:57.000000000", + "2019-01-05T05:41:00.000000000", + "2019-01-05T05:42:17.000000000", + "2019-01-05T05:42:31.000000000", + "2019-01-05T05:44:39.000000000", + "2019-01-05T05:46:52.000000000", + "2019-01-05T05:48:03.000000000", + "2019-01-05T05:48:40.000000000", + "2019-01-05T05:52:28.000000000", + "2019-01-05T05:53:13.000000000", + "2019-01-05T05:56:56.000000000", + "2019-01-05T05:58:57.000000000", + "2019-01-05T05:59:04.000000000", + "2019-01-05T05:59:53.000000000", + "2019-01-05T06:00:17.000000000", + "2019-01-05T06:01:29.000000000", + "2019-01-05T06:01:49.000000000", + "2019-01-05T06:03:12.000000000", + "2019-01-05T06:04:49.000000000", + "2019-01-05T06:04:56.000000000", + "2019-01-05T06:05:27.000000000", + "2019-01-05T06:05:42.000000000", + "2019-01-05T06:06:00.000000000", + "2019-01-05T06:06:02.000000000", + "2019-01-05T06:06:08.000000000", + "2019-01-05T06:07:49.000000000", + "2019-01-05T06:08:03.000000000", + "2019-01-05T06:08:05.000000000", + "2019-01-05T06:08:35.000000000", + "2019-01-05T06:08:39.000000000", + "2019-01-05T06:08:56.000000000", + "2019-01-05T06:09:55.000000000", + "2019-01-05T06:10:24.000000000", + "2019-01-05T06:12:06.000000000", + "2019-01-05T06:12:14.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:27.000000000", + "2019-01-05T06:13:45.000000000", + "2019-01-05T06:13:50.000000000", + "2019-01-05T06:13:53.000000000", + "2019-01-05T06:14:52.000000000", + "2019-01-05T06:15:27.000000000", + "2019-01-05T06:18:29.000000000", + "2019-01-05T06:18:30.000000000", + "2019-01-05T06:18:47.000000000", + "2019-01-05T06:19:20.000000000", + "2019-01-05T06:20:11.000000000", + "2019-01-05T06:22:49.000000000", + "2019-01-05T06:23:19.000000000", + "2019-01-05T06:27:07.000000000", + "2019-01-05T06:31:26.000000000", + "2019-01-05T06:31:49.000000000", + "2019-01-05T06:32:17.000000000", + "2019-01-05T06:34:29.000000000", + "2019-01-05T06:34:31.000000000", + "2019-01-05T06:34:32.000000000", + "2019-01-05T06:36:45.000000000", + "2019-01-05T06:38:06.000000000", + "2019-01-05T06:39:46.000000000", + "2019-01-05T06:40:46.000000000", + "2019-01-05T06:42:00.000000000", + "2019-01-05T06:42:07.000000000", + "2019-01-05T06:42:55.000000000", + "2019-01-05T06:44:59.000000000", + "2019-01-05T06:46:17.000000000", + "2019-01-05T06:46:43.000000000", + "2019-01-05T06:47:01.000000000", + "2019-01-05T06:47:02.000000000", + "2019-01-05T06:48:46.000000000", + "2019-01-05T06:52:19.000000000", + "2019-01-05T06:53:16.000000000", + "2019-01-05T06:54:33.000000000", + "2019-01-05T06:55:37.000000000", + "2019-01-05T06:58:09.000000000", + "2019-01-05T06:58:41.000000000", + "2019-01-05T06:58:56.000000000", + "2019-01-05T06:59:50.000000000", + "2019-01-05T07:00:23.000000000", + "2019-01-05T07:00:41.000000000", + "2019-01-05T07:01:36.000000000", + "2019-01-05T07:02:14.000000000", + "2019-01-05T07:02:47.000000000", + "2019-01-05T07:03:31.000000000", + "2019-01-05T07:05:04.000000000", + "2019-01-05T07:05:23.000000000", + "2019-01-05T07:06:00.000000000", + "2019-01-05T07:06:55.000000000", + "2019-01-05T07:07:05.000000000", + "2019-01-05T07:07:33.000000000", + "2019-01-05T07:09:43.000000000", + "2019-01-05T07:10:03.000000000", + "2019-01-05T07:11:16.000000000", + "2019-01-05T07:12:00.000000000", + "2019-01-05T07:16:06.000000000", + "2019-01-05T07:16:08.000000000", + "2019-01-05T07:16:21.000000000", + "2019-01-05T07:16:33.000000000", + "2019-01-05T07:17:29.000000000", + "2019-01-05T07:18:16.000000000", + "2019-01-05T07:18:46.000000000", + "2019-01-05T07:19:23.000000000", + "2019-01-05T07:19:33.000000000", + "2019-01-05T07:19:38.000000000", + "2019-01-05T07:24:43.000000000", + "2019-01-05T07:26:05.000000000", + "2019-01-05T07:26:44.000000000", + "2019-01-05T07:28:40.000000000", + "2019-01-05T07:30:07.000000000", + "2019-01-05T07:30:52.000000000", + "2019-01-05T07:30:54.000000000", + "2019-01-05T07:31:25.000000000", + "2019-01-05T07:33:24.000000000", + "2019-01-05T07:33:28.000000000", + "2019-01-05T07:35:08.000000000", + "2019-01-05T07:35:11.000000000", + "2019-01-05T07:36:27.000000000", + "2019-01-05T07:40:03.000000000", + "2019-01-05T07:41:28.000000000", + "2019-01-05T07:43:13.000000000", + "2019-01-05T07:43:17.000000000", + "2019-01-05T07:44:12.000000000", + "2019-01-05T07:44:27.000000000", + "2019-01-05T07:44:29.000000000", + "2019-01-05T07:45:27.000000000", + "2019-01-05T07:47:05.000000000", + "2019-01-05T07:48:07.000000000", + "2019-01-05T07:48:38.000000000", + "2019-01-05T07:50:33.000000000", + "2019-01-05T07:50:54.000000000", + "2019-01-05T07:51:23.000000000", + "2019-01-05T07:52:54.000000000", + "2019-01-05T07:54:56.000000000", + "2019-01-05T07:56:05.000000000", + "2019-01-05T07:58:29.000000000", + "2019-01-05T08:02:46.000000000", + "2019-01-05T08:03:24.000000000", + "2019-01-05T08:05:15.000000000", + "2019-01-05T08:05:23.000000000", + "2019-01-05T08:05:40.000000000", + "2019-01-05T08:09:18.000000000", + "2019-01-05T08:09:51.000000000", + "2019-01-05T08:10:01.000000000", + "2019-01-05T08:10:54.000000000", + "2019-01-05T08:11:45.000000000", + "2019-01-05T08:12:13.000000000", + "2019-01-05T08:19:00.000000000", + "2019-01-05T08:20:14.000000000", + "2019-01-05T08:21:28.000000000", + "2019-01-05T08:21:42.000000000", + "2019-01-05T08:23:14.000000000", + "2019-01-05T08:23:18.000000000", + "2019-01-05T08:23:49.000000000", + "2019-01-05T08:23:54.000000000", + "2019-01-05T08:24:43.000000000", + "2019-01-05T08:26:36.000000000", + "2019-01-05T08:26:59.000000000", + "2019-01-05T08:29:43.000000000", + "2019-01-05T08:30:11.000000000", + "2019-01-05T08:30:32.000000000", + "2019-01-05T08:30:59.000000000", + "2019-01-05T08:31:48.000000000", + "2019-01-05T08:32:44.000000000", + "2019-01-05T08:33:29.000000000", + "2019-01-05T08:34:33.000000000", + "2019-01-05T08:39:10.000000000", + "2019-01-05T08:39:12.000000000", + "2019-01-05T08:41:13.000000000", + "2019-01-05T08:42:59.000000000", + "2019-01-05T08:44:04.000000000", + "2019-01-05T08:45:03.000000000", + "2019-01-05T08:45:35.000000000", + "2019-01-05T08:45:50.000000000", + "2019-01-05T08:45:58.000000000", + "2019-01-05T08:46:39.000000000", + "2019-01-05T08:48:02.000000000", + "2019-01-05T08:50:02.000000000", + "2019-01-05T08:50:41.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:32.000000000", + "2019-01-05T08:51:40.000000000", + "2019-01-05T08:51:44.000000000", + "2019-01-05T08:51:48.000000000", + "2019-01-05T08:52:16.000000000", + "2019-01-05T08:54:00.000000000", + "2019-01-05T08:54:01.000000000", + "2019-01-05T08:54:16.000000000", + "2019-01-05T08:55:01.000000000", + "2019-01-05T08:56:43.000000000", + "2019-01-05T08:59:31.000000000", + "2019-01-05T09:00:01.000000000", + "2019-01-05T09:00:14.000000000", + "2019-01-05T09:00:39.000000000", + "2019-01-05T09:00:44.000000000", + "2019-01-05T09:01:34.000000000", + "2019-01-05T09:02:23.000000000", + "2019-01-05T09:02:51.000000000", + "2019-01-05T09:03:01.000000000", + "2019-01-05T09:03:28.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:06:21.000000000", + "2019-01-05T09:07:52.000000000", + "2019-01-05T09:09:37.000000000", + "2019-01-05T09:10:12.000000000", + "2019-01-05T09:10:13.000000000", + "2019-01-05T09:10:48.000000000", + "2019-01-05T09:11:06.000000000", + "2019-01-05T09:11:13.000000000", + "2019-01-05T09:11:44.000000000", + "2019-01-05T09:14:18.000000000", + "2019-01-05T09:14:45.000000000", + "2019-01-05T09:15:15.000000000", + "2019-01-05T09:16:09.000000000", + "2019-01-05T09:16:33.000000000", + "2019-01-05T09:18:54.000000000", + "2019-01-05T09:21:45.000000000", + "2019-01-05T09:21:46.000000000", + "2019-01-05T09:26:32.000000000", + "2019-01-05T09:27:01.000000000", + "2019-01-05T09:27:04.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:54.000000000", + "2019-01-05T09:31:27.000000000", + "2019-01-05T09:31:47.000000000", + "2019-01-05T09:32:29.000000000", + "2019-01-05T09:36:18.000000000", + "2019-01-05T09:38:59.000000000", + "2019-01-05T09:39:59.000000000", + "2019-01-05T09:40:16.000000000", + "2019-01-05T09:41:01.000000000", + "2019-01-05T09:41:12.000000000", + "2019-01-05T09:41:21.000000000", + "2019-01-05T09:43:09.000000000", + "2019-01-05T09:43:11.000000000", + "2019-01-05T09:43:21.000000000", + "2019-01-05T09:45:42.000000000", + "2019-01-05T09:45:44.000000000", + "2019-01-05T09:46:38.000000000", + "2019-01-05T09:47:12.000000000", + "2019-01-05T09:47:49.000000000", + "2019-01-05T09:49:35.000000000", + "2019-01-05T09:51:37.000000000", + "2019-01-05T09:52:25.000000000", + "2019-01-05T09:52:35.000000000", + "2019-01-05T09:52:46.000000000", + "2019-01-05T09:55:58.000000000", + "2019-01-05T09:56:50.000000000", + "2019-01-05T09:57:50.000000000", + "2019-01-05T09:58:32.000000000", + "2019-01-05T10:00:49.000000000", + "2019-01-05T10:01:57.000000000", + "2019-01-05T10:03:00.000000000", + "2019-01-05T10:03:58.000000000", + "2019-01-05T10:04:18.000000000", + "2019-01-05T10:04:20.000000000", + "2019-01-05T10:04:40.000000000", + "2019-01-05T10:04:46.000000000", + "2019-01-05T10:05:09.000000000", + "2019-01-05T10:07:15.000000000", + "2019-01-05T10:08:40.000000000", + "2019-01-05T10:09:25.000000000", + "2019-01-05T10:10:13.000000000", + "2019-01-05T10:10:38.000000000", + "2019-01-05T10:10:47.000000000", + "2019-01-05T10:13:11.000000000", + "2019-01-05T10:14:09.000000000", + "2019-01-05T10:14:55.000000000", + "2019-01-05T10:15:50.000000000", + "2019-01-05T10:15:59.000000000", + "2019-01-05T10:17:41.000000000", + "2019-01-05T10:19:48.000000000", + "2019-01-05T10:20:54.000000000", + "2019-01-05T10:23:50.000000000", + "2019-01-05T10:24:04.000000000", + "2019-01-05T10:24:19.000000000", + "2019-01-05T10:24:55.000000000", + "2019-01-05T10:25:19.000000000", + "2019-01-05T10:25:48.000000000", + "2019-01-05T10:26:03.000000000", + "2019-01-05T10:26:50.000000000", + "2019-01-05T10:27:49.000000000", + "2019-01-05T10:27:50.000000000", + "2019-01-05T10:27:59.000000000", + "2019-01-05T10:29:53.000000000", + "2019-01-05T10:30:33.000000000", + "2019-01-05T10:30:39.000000000", + "2019-01-05T10:31:36.000000000", + "2019-01-05T10:32:28.000000000", + "2019-01-05T10:34:24.000000000", + "2019-01-05T10:36:04.000000000", + "2019-01-05T10:36:19.000000000", + "2019-01-05T10:37:25.000000000", + "2019-01-05T10:42:07.000000000", + "2019-01-05T10:42:41.000000000", + "2019-01-05T10:43:19.000000000", + "2019-01-05T10:46:38.000000000", + "2019-01-05T10:47:14.000000000", + "2019-01-05T10:47:58.000000000", + "2019-01-05T10:48:45.000000000", + "2019-01-05T10:49:17.000000000", + "2019-01-05T10:49:23.000000000", + "2019-01-05T10:49:31.000000000", + "2019-01-05T10:50:36.000000000", + "2019-01-05T10:52:18.000000000", + "2019-01-05T10:52:25.000000000", + "2019-01-05T10:53:13.000000000", + "2019-01-05T10:53:23.000000000", + "2019-01-05T10:55:48.000000000", + "2019-01-05T10:56:07.000000000", + "2019-01-05T10:58:09.000000000", + "2019-01-05T10:59:42.000000000", + "2019-01-05T11:01:20.000000000", + "2019-01-05T11:04:04.000000000", + "2019-01-05T11:04:36.000000000", + "2019-01-05T11:05:42.000000000", + "2019-01-05T11:06:45.000000000", + "2019-01-05T11:08:54.000000000", + "2019-01-05T11:10:42.000000000", + "2019-01-05T11:11:29.000000000", + "2019-01-05T11:11:47.000000000", + "2019-01-05T11:12:32.000000000", + "2019-01-05T11:13:37.000000000", + "2019-01-05T11:13:56.000000000", + "2019-01-05T11:14:17.000000000", + "2019-01-05T11:15:40.000000000", + "2019-01-05T11:16:35.000000000", + "2019-01-05T11:16:58.000000000", + "2019-01-05T11:16:59.000000000", + "2019-01-05T11:18:05.000000000", + "2019-01-05T11:19:34.000000000", + "2019-01-05T11:20:17.000000000", + "2019-01-05T11:21:28.000000000", + "2019-01-05T11:21:45.000000000", + "2019-01-05T11:22:02.000000000", + "2019-01-05T11:23:01.000000000", + "2019-01-05T11:25:51.000000000", + "2019-01-05T11:26:36.000000000", + "2019-01-05T11:27:34.000000000", + "2019-01-05T11:28:52.000000000", + "2019-01-05T11:29:44.000000000", + "2019-01-05T11:31:11.000000000", + "2019-01-05T11:31:23.000000000", + "2019-01-05T11:34:17.000000000", + "2019-01-05T11:37:04.000000000", + "2019-01-05T11:37:41.000000000", + "2019-01-05T11:38:55.000000000", + "2019-01-05T11:40:47.000000000", + "2019-01-05T11:43:38.000000000", + "2019-01-05T11:45:00.000000000", + "2019-01-05T11:45:16.000000000", + "2019-01-05T11:45:39.000000000", + "2019-01-05T11:46:08.000000000", + "2019-01-05T11:50:09.000000000", + "2019-01-05T11:51:21.000000000", + "2019-01-05T11:51:32.000000000", + "2019-01-05T11:52:21.000000000", + "2019-01-05T11:53:21.000000000", + "2019-01-05T11:53:36.000000000", + "2019-01-05T11:54:24.000000000", + "2019-01-05T11:55:37.000000000", + "2019-01-05T11:56:07.000000000", + "2019-01-05T11:56:20.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:30.000000000", + "2019-01-05T11:57:28.000000000", + "2019-01-05T11:57:45.000000000", + "2019-01-05T12:00:06.000000000", + "2019-01-05T12:01:10.000000000", + "2019-01-05T12:01:19.000000000", + "2019-01-05T12:01:30.000000000", + "2019-01-05T12:02:11.000000000", + "2019-01-05T12:02:35.000000000", + "2019-01-05T12:03:42.000000000", + "2019-01-05T12:04:12.000000000", + "2019-01-05T12:05:14.000000000", + "2019-01-05T12:06:52.000000000", + "2019-01-05T12:07:21.000000000", + "2019-01-05T12:07:45.000000000", + "2019-01-05T12:08:20.000000000", + "2019-01-05T12:08:37.000000000", + "2019-01-05T12:11:11.000000000", + "2019-01-05T12:12:31.000000000", + "2019-01-05T12:12:52.000000000", + "2019-01-05T12:12:59.000000000", + "2019-01-05T12:14:52.000000000", + "2019-01-05T12:15:15.000000000", + "2019-01-05T12:16:40.000000000", + "2019-01-05T12:17:14.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:18:22.000000000", + "2019-01-05T12:18:59.000000000", + "2019-01-05T12:19:47.000000000", + "2019-01-05T12:20:16.000000000", + "2019-01-05T12:20:42.000000000", + "2019-01-05T12:22:24.000000000", + "2019-01-05T12:23:31.000000000", + "2019-01-05T12:26:54.000000000", + "2019-01-05T12:27:01.000000000", + "2019-01-05T12:28:06.000000000", + "2019-01-05T12:29:46.000000000", + "2019-01-05T12:30:26.000000000", + "2019-01-05T12:30:50.000000000", + "2019-01-05T12:31:50.000000000", + "2019-01-05T12:32:21.000000000", + "2019-01-05T12:32:44.000000000", + "2019-01-05T12:32:48.000000000", + "2019-01-05T12:34:51.000000000", + "2019-01-05T12:35:28.000000000", + "2019-01-05T12:35:31.000000000", + "2019-01-05T12:38:55.000000000", + "2019-01-05T12:40:00.000000000", + "2019-01-05T12:40:12.000000000", + "2019-01-05T12:40:50.000000000", + "2019-01-05T12:41:47.000000000", + "2019-01-05T12:42:16.000000000", + "2019-01-05T12:43:49.000000000", + "2019-01-05T12:44:11.000000000", + "2019-01-05T12:47:57.000000000", + "2019-01-05T12:48:09.000000000", + "2019-01-05T12:48:17.000000000", + "2019-01-05T12:49:23.000000000", + "2019-01-05T12:49:30.000000000", + "2019-01-05T12:49:43.000000000", + "2019-01-05T12:50:08.000000000", + "2019-01-05T12:54:28.000000000", + "2019-01-05T12:56:26.000000000", + "2019-01-05T12:58:43.000000000", + "2019-01-05T12:58:49.000000000", + "2019-01-05T12:59:48.000000000", + "2019-01-05T13:02:39.000000000", + "2019-01-05T13:02:45.000000000", + "2019-01-05T13:03:29.000000000", + "2019-01-05T13:03:44.000000000", + "2019-01-05T13:03:55.000000000", + "2019-01-05T13:05:06.000000000", + "2019-01-05T13:05:38.000000000", + "2019-01-05T13:06:16.000000000", + "2019-01-05T13:07:54.000000000", + "2019-01-05T13:08:00.000000000", + "2019-01-05T13:08:21.000000000", + "2019-01-05T13:10:46.000000000", + "2019-01-05T13:12:20.000000000", + "2019-01-05T13:13:00.000000000", + "2019-01-05T13:13:51.000000000", + "2019-01-05T13:15:10.000000000", + "2019-01-05T13:15:16.000000000", + "2019-01-05T13:15:30.000000000", + "2019-01-05T13:16:29.000000000", + "2019-01-05T13:16:46.000000000", + "2019-01-05T13:17:04.000000000", + "2019-01-05T13:18:59.000000000", + "2019-01-05T13:19:49.000000000", + "2019-01-05T13:22:00.000000000", + "2019-01-05T13:22:09.000000000", + "2019-01-05T13:23:00.000000000", + "2019-01-05T13:23:57.000000000", + "2019-01-05T13:24:00.000000000", + "2019-01-05T13:24:16.000000000", + "2019-01-05T13:24:33.000000000", + "2019-01-05T13:26:24.000000000", + "2019-01-05T13:26:28.000000000", + "2019-01-05T13:27:27.000000000", + "2019-01-05T13:27:35.000000000", + "2019-01-05T13:29:55.000000000", + "2019-01-05T13:30:34.000000000", + "2019-01-05T13:30:36.000000000", + "2019-01-05T13:32:15.000000000", + "2019-01-05T13:32:47.000000000", + "2019-01-05T13:32:58.000000000", + "2019-01-05T13:33:02.000000000", + "2019-01-05T13:33:28.000000000", + "2019-01-05T13:34:33.000000000", + "2019-01-05T13:35:35.000000000", + "2019-01-05T13:35:38.000000000", + "2019-01-05T13:35:39.000000000", + "2019-01-05T13:35:45.000000000", + "2019-01-05T13:37:07.000000000", + "2019-01-05T13:38:28.000000000", + "2019-01-05T13:39:11.000000000", + "2019-01-05T13:39:57.000000000", + "2019-01-05T13:40:28.000000000", + "2019-01-05T13:40:56.000000000", + "2019-01-05T13:41:23.000000000", + "2019-01-05T13:41:52.000000000", + "2019-01-05T13:42:37.000000000", + "2019-01-05T13:43:23.000000000", + "2019-01-05T13:43:29.000000000", + "2019-01-05T13:46:38.000000000", + "2019-01-05T13:47:29.000000000", + "2019-01-05T13:47:45.000000000", + "2019-01-05T13:48:57.000000000", + "2019-01-05T13:51:05.000000000", + "2019-01-05T13:51:50.000000000", + "2019-01-05T13:51:53.000000000", + "2019-01-05T13:52:09.000000000", + "2019-01-05T13:52:22.000000000", + "2019-01-05T13:52:50.000000000", + "2019-01-05T13:54:07.000000000", + "2019-01-05T13:54:16.000000000", + "2019-01-05T13:54:22.000000000", + "2019-01-05T13:54:37.000000000", + "2019-01-05T13:55:18.000000000", + "2019-01-05T13:55:20.000000000", + "2019-01-05T13:56:15.000000000", + "2019-01-05T13:57:26.000000000", + "2019-01-05T13:57:50.000000000", + "2019-01-05T13:58:19.000000000", + "2019-01-05T13:58:51.000000000", + "2019-01-05T14:03:07.000000000", + "2019-01-05T14:04:36.000000000", + "2019-01-05T14:05:43.000000000", + "2019-01-05T14:06:06.000000000", + "2019-01-05T14:06:35.000000000", + "2019-01-05T14:08:23.000000000", + "2019-01-05T14:10:11.000000000", + "2019-01-05T14:11:16.000000000", + "2019-01-05T14:12:36.000000000", + "2019-01-05T14:15:12.000000000", + "2019-01-05T14:17:14.000000000", + "2019-01-05T14:18:08.000000000", + "2019-01-05T14:19:49.000000000", + "2019-01-05T14:20:48.000000000", + "2019-01-05T14:21:20.000000000", + "2019-01-05T14:21:46.000000000", + "2019-01-05T14:22:46.000000000", + "2019-01-05T14:23:12.000000000", + "2019-01-05T14:24:26.000000000", + "2019-01-05T14:25:24.000000000", + "2019-01-05T14:28:45.000000000", + "2019-01-05T14:30:34.000000000", + "2019-01-05T14:33:48.000000000", + "2019-01-05T14:33:52.000000000", + "2019-01-05T14:34:18.000000000", + "2019-01-05T14:34:34.000000000", + "2019-01-05T14:35:38.000000000", + "2019-01-05T14:37:31.000000000", + "2019-01-05T14:39:14.000000000", + "2019-01-05T14:39:49.000000000", + "2019-01-05T14:42:43.000000000", + "2019-01-05T14:43:16.000000000", + "2019-01-05T14:44:08.000000000", + "2019-01-05T14:44:53.000000000", + "2019-01-05T14:45:32.000000000", + "2019-01-05T14:45:46.000000000", + "2019-01-05T14:45:57.000000000", + "2019-01-05T14:47:23.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:52:38.000000000", + "2019-01-05T14:54:17.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:56:35.000000000", + "2019-01-05T14:57:01.000000000", + "2019-01-05T14:57:15.000000000", + "2019-01-05T14:57:51.000000000", + "2019-01-05T14:58:46.000000000", + "2019-01-05T15:00:29.000000000", + "2019-01-05T15:01:48.000000000", + "2019-01-05T15:06:00.000000000", + "2019-01-05T15:06:24.000000000", + "2019-01-05T15:07:10.000000000", + "2019-01-05T15:08:27.000000000", + "2019-01-05T15:08:30.000000000", + "2019-01-05T15:09:55.000000000", + "2019-01-05T15:11:17.000000000", + "2019-01-05T15:11:22.000000000", + "2019-01-05T15:11:34.000000000", + "2019-01-05T15:12:06.000000000", + "2019-01-05T15:14:40.000000000", + "2019-01-05T15:15:51.000000000", + "2019-01-05T15:18:48.000000000", + "2019-01-05T15:18:57.000000000", + "2019-01-05T15:21:47.000000000", + "2019-01-05T15:22:34.000000000", + "2019-01-05T15:23:18.000000000", + "2019-01-05T15:23:33.000000000", + "2019-01-05T15:24:51.000000000", + "2019-01-05T15:25:11.000000000", + "2019-01-05T15:25:13.000000000", + "2019-01-05T15:26:21.000000000", + "2019-01-05T15:27:38.000000000", + "2019-01-05T15:29:24.000000000", + "2019-01-05T15:30:13.000000000", + "2019-01-05T15:32:27.000000000", + "2019-01-05T15:32:44.000000000", + "2019-01-05T15:33:02.000000000", + "2019-01-05T15:33:04.000000000", + "2019-01-05T15:34:20.000000000", + "2019-01-05T15:36:13.000000000", + "2019-01-05T15:36:35.000000000", + "2019-01-05T15:37:06.000000000", + "2019-01-05T15:39:03.000000000", + "2019-01-05T15:40:03.000000000", + "2019-01-05T15:41:29.000000000", + "2019-01-05T15:41:46.000000000", + "2019-01-05T15:42:17.000000000", + "2019-01-05T15:43:02.000000000", + "2019-01-05T15:43:13.000000000", + "2019-01-05T15:44:14.000000000", + "2019-01-05T15:44:58.000000000", + "2019-01-05T15:46:11.000000000", + "2019-01-05T15:47:11.000000000", + "2019-01-05T15:49:20.000000000", + "2019-01-05T15:50:09.000000000", + "2019-01-05T15:53:01.000000000", + "2019-01-05T15:54:28.000000000", + "2019-01-05T15:54:41.000000000", + "2019-01-05T15:56:30.000000000", + "2019-01-05T15:56:32.000000000", + "2019-01-05T15:58:40.000000000", + "2019-01-05T15:58:41.000000000", + "2019-01-05T15:58:53.000000000", + "2019-01-05T16:01:23.000000000", + "2019-01-05T16:01:54.000000000", + "2019-01-05T16:01:57.000000000", + "2019-01-05T16:03:09.000000000", + "2019-01-05T16:04:24.000000000", + "2019-01-05T16:05:37.000000000", + "2019-01-05T16:05:46.000000000", + "2019-01-05T16:06:14.000000000", + "2019-01-05T16:07:23.000000000", + "2019-01-05T16:09:09.000000000", + "2019-01-05T16:11:02.000000000", + "2019-01-05T16:12:16.000000000", + "2019-01-05T16:12:45.000000000", + "2019-01-05T16:13:04.000000000", + "2019-01-05T16:14:43.000000000", + "2019-01-05T16:15:12.000000000", + "2019-01-05T16:15:22.000000000", + "2019-01-05T16:16:39.000000000", + "2019-01-05T16:16:46.000000000", + "2019-01-05T16:17:36.000000000", + "2019-01-05T16:18:52.000000000", + "2019-01-05T16:19:34.000000000", + "2019-01-05T16:19:37.000000000", + "2019-01-05T16:20:47.000000000", + "2019-01-05T16:21:30.000000000", + "2019-01-05T16:22:05.000000000", + "2019-01-05T16:22:45.000000000", + "2019-01-05T16:22:56.000000000", + "2019-01-05T16:23:10.000000000", + "2019-01-05T16:23:17.000000000", + "2019-01-05T16:25:00.000000000", + "2019-01-05T16:27:05.000000000", + "2019-01-05T16:28:48.000000000", + "2019-01-05T16:29:09.000000000", + "2019-01-05T16:31:14.000000000", + "2019-01-05T16:31:42.000000000", + "2019-01-05T16:32:38.000000000", + "2019-01-05T16:33:22.000000000", + "2019-01-05T16:36:05.000000000", + "2019-01-05T16:36:20.000000000", + "2019-01-05T16:39:53.000000000", + "2019-01-05T16:40:01.000000000", + "2019-01-05T16:40:06.000000000", + "2019-01-05T16:40:57.000000000", + "2019-01-05T16:41:59.000000000", + "2019-01-05T16:44:01.000000000", + "2019-01-05T16:45:06.000000000", + "2019-01-05T16:46:00.000000000", + "2019-01-05T16:46:01.000000000", + "2019-01-05T16:46:09.000000000", + "2019-01-05T16:46:35.000000000", + "2019-01-05T16:47:04.000000000", + "2019-01-05T16:47:22.000000000", + "2019-01-05T16:47:24.000000000", + "2019-01-05T16:48:32.000000000", + "2019-01-05T16:49:31.000000000", + "2019-01-05T16:50:36.000000000", + "2019-01-05T16:51:44.000000000", + "2019-01-05T16:52:17.000000000", + "2019-01-05T16:52:55.000000000", + "2019-01-05T16:53:22.000000000", + "2019-01-05T16:54:32.000000000", + "2019-01-05T16:55:41.000000000", + "2019-01-05T16:56:15.000000000", + "2019-01-05T16:57:32.000000000", + "2019-01-05T16:59:21.000000000", + "2019-01-05T16:59:53.000000000", + "2019-01-05T17:00:55.000000000", + "2019-01-05T17:01:11.000000000", + "2019-01-05T17:03:43.000000000", + "2019-01-05T17:04:31.000000000", + "2019-01-05T17:04:40.000000000", + "2019-01-05T17:05:41.000000000", + "2019-01-05T17:07:05.000000000", + "2019-01-05T17:07:23.000000000", + "2019-01-05T17:08:16.000000000", + "2019-01-05T17:08:59.000000000", + "2019-01-05T17:11:17.000000000", + "2019-01-05T17:12:56.000000000", + "2019-01-05T17:16:29.000000000", + "2019-01-05T17:17:06.000000000", + "2019-01-05T17:17:08.000000000", + "2019-01-05T17:17:26.000000000", + "2019-01-05T17:19:10.000000000", + "2019-01-05T17:19:12.000000000", + "2019-01-05T17:19:26.000000000", + "2019-01-05T17:19:45.000000000", + "2019-01-05T17:21:21.000000000", + "2019-01-05T17:23:08.000000000", + "2019-01-05T17:24:00.000000000", + "2019-01-05T17:24:34.000000000", + "2019-01-05T17:25:01.000000000", + "2019-01-05T17:27:55.000000000", + "2019-01-05T17:28:23.000000000", + "2019-01-05T17:30:30.000000000", + "2019-01-05T17:31:00.000000000", + "2019-01-05T17:32:53.000000000", + "2019-01-05T17:33:05.000000000", + "2019-01-05T17:33:15.000000000", + "2019-01-05T17:33:25.000000000", + "2019-01-05T17:33:27.000000000", + "2019-01-05T17:36:05.000000000", + "2019-01-05T17:36:54.000000000", + "2019-01-05T17:37:39.000000000", + "2019-01-05T17:38:10.000000000", + "2019-01-05T17:38:20.000000000", + "2019-01-05T17:38:50.000000000", + "2019-01-05T17:40:43.000000000", + "2019-01-05T17:40:47.000000000", + "2019-01-05T17:41:25.000000000", + "2019-01-05T17:41:38.000000000", + "2019-01-05T17:41:46.000000000", + "2019-01-05T17:42:08.000000000", + "2019-01-05T17:43:30.000000000", + "2019-01-05T17:44:27.000000000", + "2019-01-05T17:45:29.000000000", + "2019-01-05T17:45:43.000000000", + "2019-01-05T17:46:17.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:49:40.000000000", + "2019-01-05T17:51:06.000000000", + "2019-01-05T17:51:50.000000000", + "2019-01-05T17:52:35.000000000", + "2019-01-05T17:52:53.000000000", + "2019-01-05T17:53:08.000000000", + "2019-01-05T17:53:29.000000000", + "2019-01-05T17:53:37.000000000", + "2019-01-05T17:53:38.000000000", + "2019-01-05T17:54:09.000000000", + "2019-01-05T17:54:32.000000000", + "2019-01-05T17:54:45.000000000", + "2019-01-05T17:55:01.000000000", + "2019-01-05T17:56:32.000000000", + "2019-01-05T17:57:38.000000000", + "2019-01-05T17:58:57.000000000", + "2019-01-05T17:59:19.000000000", + "2019-01-05T18:00:43.000000000", + "2019-01-05T18:01:47.000000000", + "2019-01-05T18:03:03.000000000", + "2019-01-05T18:04:05.000000000", + "2019-01-05T18:05:10.000000000", + "2019-01-05T18:06:06.000000000", + "2019-01-05T18:06:13.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:24.000000000", + "2019-01-05T18:06:48.000000000", + "2019-01-05T18:07:16.000000000", + "2019-01-05T18:10:41.000000000", + "2019-01-05T18:12:52.000000000", + "2019-01-05T18:13:29.000000000", + "2019-01-05T18:13:40.000000000", + "2019-01-05T18:14:58.000000000", + "2019-01-05T18:15:26.000000000", + "2019-01-05T18:16:15.000000000", + "2019-01-05T18:19:02.000000000", + "2019-01-05T18:21:11.000000000", + "2019-01-05T18:25:41.000000000", + "2019-01-05T18:25:43.000000000", + "2019-01-05T18:27:56.000000000", + "2019-01-05T18:28:23.000000000", + "2019-01-05T18:30:09.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:31:26.000000000", + "2019-01-05T18:31:53.000000000", + "2019-01-05T18:32:24.000000000", + "2019-01-05T18:36:09.000000000", + "2019-01-05T18:37:29.000000000", + "2019-01-05T18:37:34.000000000", + "2019-01-05T18:37:59.000000000", + "2019-01-05T18:39:19.000000000", + "2019-01-05T18:41:42.000000000", + "2019-01-05T18:42:17.000000000", + "2019-01-05T18:42:30.000000000", + "2019-01-05T18:43:12.000000000", + "2019-01-05T18:45:40.000000000", + "2019-01-05T18:46:48.000000000", + "2019-01-05T18:47:14.000000000", + "2019-01-05T18:48:27.000000000", + "2019-01-05T18:48:54.000000000", + "2019-01-05T18:50:27.000000000", + "2019-01-05T18:50:50.000000000", + "2019-01-05T18:51:55.000000000", + "2019-01-05T18:52:29.000000000", + "2019-01-05T18:53:24.000000000", + "2019-01-05T18:53:41.000000000", + "2019-01-05T18:54:59.000000000", + "2019-01-05T18:55:47.000000000", + "2019-01-05T18:57:05.000000000", + "2019-01-05T18:57:42.000000000", + "2019-01-05T18:57:54.000000000", + "2019-01-05T18:59:01.000000000", + "2019-01-05T18:59:18.000000000", + "2019-01-05T19:00:48.000000000", + "2019-01-05T19:01:32.000000000", + "2019-01-05T19:01:36.000000000", + "2019-01-05T19:03:43.000000000", + "2019-01-05T19:04:14.000000000", + "2019-01-05T19:04:40.000000000", + "2019-01-05T19:05:13.000000000", + "2019-01-05T19:07:24.000000000", + "2019-01-05T19:08:11.000000000", + "2019-01-05T19:10:10.000000000", + "2019-01-05T19:11:20.000000000", + "2019-01-05T19:11:46.000000000", + "2019-01-05T19:12:15.000000000", + "2019-01-05T19:12:28.000000000", + "2019-01-05T19:13:06.000000000", + "2019-01-05T19:17:13.000000000", + "2019-01-05T19:19:01.000000000", + "2019-01-05T19:19:47.000000000", + "2019-01-05T19:20:43.000000000", + "2019-01-05T19:21:31.000000000", + "2019-01-05T19:21:53.000000000", + "2019-01-05T19:21:59.000000000", + "2019-01-05T19:22:11.000000000", + "2019-01-05T19:22:25.000000000", + "2019-01-05T19:22:30.000000000", + "2019-01-05T19:23:48.000000000", + "2019-01-05T19:25:52.000000000", + "2019-01-05T19:26:13.000000000", + "2019-01-05T19:26:18.000000000", + "2019-01-05T19:26:58.000000000", + "2019-01-05T19:28:20.000000000", + "2019-01-05T19:28:43.000000000", + "2019-01-05T19:29:16.000000000", + "2019-01-05T19:30:16.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:45.000000000", + "2019-01-05T19:30:48.000000000", + "2019-01-05T19:32:05.000000000", + "2019-01-05T19:32:13.000000000", + "2019-01-05T19:32:33.000000000", + "2019-01-05T19:33:00.000000000", + "2019-01-05T19:33:13.000000000", + "2019-01-05T19:34:00.000000000", + "2019-01-05T19:34:38.000000000", + "2019-01-05T19:36:26.000000000", + "2019-01-05T19:39:27.000000000", + "2019-01-05T19:39:43.000000000", + "2019-01-05T19:40:04.000000000", + "2019-01-05T19:40:32.000000000", + "2019-01-05T19:41:15.000000000", + "2019-01-05T19:42:03.000000000", + "2019-01-05T19:46:04.000000000", + "2019-01-05T19:46:32.000000000", + "2019-01-05T19:46:48.000000000", + "2019-01-05T19:47:57.000000000", + "2019-01-05T19:48:20.000000000", + "2019-01-05T19:49:19.000000000", + "2019-01-05T19:49:28.000000000", + "2019-01-05T19:51:03.000000000", + "2019-01-05T19:52:16.000000000", + "2019-01-05T19:52:43.000000000", + "2019-01-05T19:55:23.000000000", + "2019-01-05T19:55:24.000000000", + "2019-01-05T19:55:28.000000000", + "2019-01-05T19:56:55.000000000", + "2019-01-05T19:57:00.000000000", + "2019-01-05T19:58:34.000000000", + "2019-01-05T19:59:58.000000000", + "2019-01-05T20:00:10.000000000", + "2019-01-05T20:01:00.000000000", + "2019-01-05T20:01:08.000000000", + "2019-01-05T20:01:28.000000000", + "2019-01-05T20:05:11.000000000", + "2019-01-05T20:05:37.000000000", + "2019-01-05T20:05:42.000000000", + "2019-01-05T20:08:15.000000000", + "2019-01-05T20:09:50.000000000", + "2019-01-05T20:11:06.000000000", + "2019-01-05T20:13:14.000000000", + "2019-01-05T20:14:24.000000000", + "2019-01-05T20:16:12.000000000", + "2019-01-05T20:16:17.000000000", + "2019-01-05T20:16:29.000000000", + "2019-01-05T20:16:41.000000000", + "2019-01-05T20:17:49.000000000", + "2019-01-05T20:20:04.000000000", + "2019-01-05T20:22:07.000000000", + "2019-01-05T20:22:47.000000000", + "2019-01-05T20:29:17.000000000", + "2019-01-05T20:30:06.000000000", + "2019-01-05T20:30:32.000000000", + "2019-01-05T20:32:58.000000000", + "2019-01-05T20:34:04.000000000", + "2019-01-05T20:34:32.000000000", + "2019-01-05T20:35:13.000000000", + "2019-01-05T20:35:23.000000000", + "2019-01-05T20:36:48.000000000", + "2019-01-05T20:38:42.000000000", + "2019-01-05T20:39:36.000000000", + "2019-01-05T20:40:10.000000000", + "2019-01-05T20:40:25.000000000", + "2019-01-05T20:42:48.000000000", + "2019-01-05T20:43:54.000000000", + "2019-01-05T20:44:07.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:45:45.000000000", + "2019-01-05T20:47:22.000000000", + "2019-01-05T20:50:38.000000000", + "2019-01-05T20:50:43.000000000", + "2019-01-05T20:53:04.000000000", + "2019-01-05T20:53:13.000000000", + "2019-01-05T20:53:52.000000000", + "2019-01-05T20:54:18.000000000", + "2019-01-05T20:55:30.000000000", + "2019-01-05T20:55:41.000000000", + "2019-01-05T20:55:44.000000000", + "2019-01-05T20:56:31.000000000", + "2019-01-05T20:58:14.000000000", + "2019-01-05T20:59:14.000000000", + "2019-01-05T20:59:32.000000000", + "2019-01-05T21:00:27.000000000", + "2019-01-05T21:00:58.000000000", + "2019-01-05T21:02:10.000000000", + "2019-01-05T21:02:54.000000000", + "2019-01-05T21:03:21.000000000", + "2019-01-05T21:03:32.000000000", + "2019-01-05T21:04:40.000000000", + "2019-01-05T21:05:02.000000000", + "2019-01-05T21:05:50.000000000", + "2019-01-05T21:06:37.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:10:43.000000000", + "2019-01-05T21:11:34.000000000", + "2019-01-05T21:11:45.000000000", + "2019-01-05T21:13:02.000000000", + "2019-01-05T21:17:18.000000000", + "2019-01-05T21:18:23.000000000", + "2019-01-05T21:18:41.000000000", + "2019-01-05T21:20:50.000000000", + "2019-01-05T21:21:30.000000000", + "2019-01-05T21:22:38.000000000", + "2019-01-05T21:23:26.000000000", + "2019-01-05T21:24:39.000000000", + "2019-01-05T21:25:11.000000000", + "2019-01-05T21:26:13.000000000", + "2019-01-05T21:26:14.000000000", + "2019-01-05T21:27:12.000000000", + "2019-01-05T21:27:30.000000000", + "2019-01-05T21:27:34.000000000", + "2019-01-05T21:27:39.000000000", + "2019-01-05T21:27:53.000000000", + "2019-01-05T21:32:01.000000000", + "2019-01-05T21:32:19.000000000", + "2019-01-05T21:33:29.000000000", + "2019-01-05T21:34:30.000000000", + "2019-01-05T21:36:00.000000000", + "2019-01-05T21:36:56.000000000", + "2019-01-05T21:40:36.000000000", + "2019-01-05T21:43:36.000000000", + "2019-01-05T21:43:41.000000000", + "2019-01-05T21:45:29.000000000", + "2019-01-05T21:46:40.000000000", + "2019-01-05T21:47:28.000000000", + "2019-01-05T21:48:42.000000000", + "2019-01-05T21:49:24.000000000", + "2019-01-05T21:49:44.000000000", + "2019-01-05T21:51:35.000000000", + "2019-01-05T21:52:47.000000000", + "2019-01-05T21:53:08.000000000", + "2019-01-05T21:53:55.000000000", + "2019-01-05T21:58:22.000000000", + "2019-01-05T22:01:13.000000000", + "2019-01-05T22:01:39.000000000", + "2019-01-05T22:01:44.000000000", + "2019-01-05T22:02:40.000000000", + "2019-01-05T22:03:47.000000000", + "2019-01-05T22:04:06.000000000", + "2019-01-05T22:04:57.000000000", + "2019-01-05T22:06:30.000000000", + "2019-01-05T22:06:42.000000000", + "2019-01-05T22:06:59.000000000", + "2019-01-05T22:07:10.000000000", + "2019-01-05T22:07:35.000000000", + "2019-01-05T22:07:40.000000000", + "2019-01-05T22:08:20.000000000", + "2019-01-05T22:08:58.000000000", + "2019-01-05T22:09:18.000000000", + "2019-01-05T22:12:20.000000000", + "2019-01-05T22:14:19.000000000", + "2019-01-05T22:14:58.000000000", + "2019-01-05T22:16:38.000000000", + "2019-01-05T22:16:45.000000000", + "2019-01-05T22:18:17.000000000", + "2019-01-05T22:18:45.000000000", + "2019-01-05T22:19:30.000000000", + "2019-01-05T22:20:15.000000000", + "2019-01-05T22:20:45.000000000", + "2019-01-05T22:21:56.000000000", + "2019-01-05T22:22:20.000000000", + "2019-01-05T22:23:51.000000000", + "2019-01-05T22:24:13.000000000", + "2019-01-05T22:24:23.000000000", + "2019-01-05T22:24:35.000000000", + "2019-01-05T22:25:22.000000000", + "2019-01-05T22:26:00.000000000", + "2019-01-05T22:28:19.000000000", + "2019-01-05T22:29:12.000000000", + "2019-01-05T22:31:01.000000000", + "2019-01-05T22:33:48.000000000", + "2019-01-05T22:33:59.000000000", + "2019-01-05T22:35:28.000000000", + "2019-01-05T22:36:06.000000000", + "2019-01-05T22:37:19.000000000", + "2019-01-05T22:39:01.000000000", + "2019-01-05T22:39:38.000000000", + "2019-01-05T22:40:51.000000000", + "2019-01-05T22:41:18.000000000", + "2019-01-05T22:44:40.000000000", + "2019-01-05T22:45:43.000000000", + "2019-01-05T22:46:17.000000000", + "2019-01-05T22:47:06.000000000", + "2019-01-05T22:47:20.000000000", + "2019-01-05T22:47:37.000000000", + "2019-01-05T22:48:47.000000000", + "2019-01-05T22:51:38.000000000", + "2019-01-05T22:51:44.000000000", + "2019-01-05T22:51:47.000000000", + "2019-01-05T22:52:12.000000000", + "2019-01-05T22:53:12.000000000", + "2019-01-05T22:54:01.000000000", + "2019-01-05T22:54:38.000000000", + "2019-01-05T22:55:26.000000000", + "2019-01-05T22:56:09.000000000", + "2019-01-05T22:56:58.000000000", + "2019-01-05T23:00:25.000000000", + "2019-01-05T23:00:32.000000000", + "2019-01-05T23:00:45.000000000", + "2019-01-05T23:03:01.000000000", + "2019-01-05T23:04:36.000000000", + "2019-01-05T23:04:43.000000000", + "2019-01-05T23:05:07.000000000", + "2019-01-05T23:05:11.000000000", + "2019-01-05T23:05:50.000000000", + "2019-01-05T23:06:53.000000000", + "2019-01-05T23:12:28.000000000", + "2019-01-05T23:12:32.000000000", + "2019-01-05T23:13:17.000000000", + "2019-01-05T23:13:59.000000000", + "2019-01-05T23:18:13.000000000", + "2019-01-05T23:20:37.000000000", + "2019-01-05T23:20:43.000000000", + "2019-01-05T23:22:35.000000000", + "2019-01-05T23:23:02.000000000", + "2019-01-05T23:25:44.000000000", + "2019-01-05T23:26:21.000000000", + "2019-01-05T23:26:47.000000000", + "2019-01-05T23:28:32.000000000", + "2019-01-05T23:29:31.000000000", + "2019-01-05T23:30:07.000000000", + "2019-01-05T23:30:23.000000000", + "2019-01-05T23:33:50.000000000", + "2019-01-05T23:34:00.000000000", + "2019-01-05T23:34:06.000000000", + "2019-01-05T23:34:16.000000000", + "2019-01-05T23:35:16.000000000", + "2019-01-05T23:35:45.000000000", + "2019-01-05T23:35:58.000000000", + "2019-01-05T23:37:18.000000000", + "2019-01-05T23:37:26.000000000", + "2019-01-05T23:37:51.000000000", + "2019-01-05T23:38:29.000000000", + "2019-01-05T23:38:46.000000000", + "2019-01-05T23:38:54.000000000", + "2019-01-05T23:43:02.000000000", + "2019-01-05T23:44:12.000000000", + "2019-01-05T23:46:08.000000000", + "2019-01-05T23:46:26.000000000", + "2019-01-05T23:47:00.000000000", + "2019-01-05T23:47:30.000000000", + "2019-01-05T23:49:51.000000000", + "2019-01-05T23:50:12.000000000", + "2019-01-05T23:51:36.000000000", + "2019-01-05T23:51:45.000000000", + "2019-01-05T23:52:48.000000000", + "2019-01-05T23:53:02.000000000", + "2019-01-05T23:53:06.000000000", + "2019-01-05T23:53:58.000000000", + "2019-01-05T23:55:21.000000000", + "2019-01-05T23:55:42.000000000", + "2019-01-05T23:56:06.000000000", + "2019-01-05T23:56:31.000000000", + "2019-01-05T23:56:32.000000000", + "2019-01-05T23:57:49.000000000", + "2019-01-05T23:58:27.000000000", + "2019-01-06T00:00:34.000000000", + "2019-01-06T00:01:21.000000000", + "2019-01-06T00:02:09.000000000", + "2019-01-06T00:03:25.000000000", + "2019-01-06T00:03:29.000000000", + "2019-01-06T00:03:40.000000000", + "2019-01-06T00:03:48.000000000", + "2019-01-06T00:04:32.000000000", + "2019-01-06T00:06:14.000000000", + "2019-01-06T00:06:25.000000000", + "2019-01-06T00:06:51.000000000", + "2019-01-06T00:07:13.000000000", + "2019-01-06T00:09:22.000000000", + "2019-01-06T00:09:27.000000000", + "2019-01-06T00:09:50.000000000", + "2019-01-06T00:11:12.000000000", + "2019-01-06T00:12:35.000000000", + "2019-01-06T00:12:47.000000000", + "2019-01-06T00:13:20.000000000", + "2019-01-06T00:13:50.000000000", + "2019-01-06T00:15:37.000000000", + "2019-01-06T00:16:59.000000000", + "2019-01-06T00:17:00.000000000", + "2019-01-06T00:17:53.000000000", + "2019-01-06T00:18:47.000000000", + "2019-01-06T00:19:20.000000000", + "2019-01-06T00:23:06.000000000", + "2019-01-06T00:23:32.000000000", + "2019-01-06T00:23:49.000000000", + "2019-01-06T00:24:26.000000000", + "2019-01-06T00:24:47.000000000", + "2019-01-06T00:25:00.000000000", + "2019-01-06T00:25:32.000000000", + "2019-01-06T00:25:48.000000000", + "2019-01-06T00:26:10.000000000", + "2019-01-06T00:27:22.000000000", + "2019-01-06T00:28:27.000000000", + "2019-01-06T00:28:41.000000000", + "2019-01-06T00:28:45.000000000", + "2019-01-06T00:30:29.000000000", + "2019-01-06T00:30:43.000000000", + "2019-01-06T00:30:55.000000000", + "2019-01-06T00:31:25.000000000", + "2019-01-06T00:31:27.000000000", + "2019-01-06T00:32:39.000000000", + "2019-01-06T00:33:27.000000000", + "2019-01-06T00:35:40.000000000", + "2019-01-06T00:35:44.000000000", + "2019-01-06T00:37:48.000000000", + "2019-01-06T00:38:14.000000000", + "2019-01-06T00:39:23.000000000", + "2019-01-06T00:41:14.000000000", + "2019-01-06T00:42:34.000000000", + "2019-01-06T00:43:23.000000000", + "2019-01-06T00:43:33.000000000", + "2019-01-06T00:43:54.000000000", + "2019-01-06T00:43:55.000000000", + "2019-01-06T00:44:42.000000000", + "2019-01-06T00:46:13.000000000", + "2019-01-06T00:47:54.000000000", + "2019-01-06T00:48:28.000000000", + "2019-01-06T00:49:05.000000000", + "2019-01-06T00:50:08.000000000", + "2019-01-06T00:50:11.000000000", + "2019-01-06T00:50:49.000000000", + "2019-01-06T00:51:55.000000000", + "2019-01-06T00:53:08.000000000", + "2019-01-06T00:56:15.000000000", + "2019-01-06T00:56:26.000000000", + "2019-01-06T00:56:46.000000000", + "2019-01-06T01:01:57.000000000", + "2019-01-06T01:03:17.000000000", + "2019-01-06T01:03:23.000000000", + "2019-01-06T01:04:27.000000000", + "2019-01-06T01:04:36.000000000", + "2019-01-06T01:07:59.000000000", + "2019-01-06T01:08:12.000000000", + "2019-01-06T01:09:21.000000000", + "2019-01-06T01:09:31.000000000", + "2019-01-06T01:10:14.000000000", + "2019-01-06T01:10:17.000000000", + "2019-01-06T01:10:31.000000000", + "2019-01-06T01:11:36.000000000", + "2019-01-06T01:11:46.000000000", + "2019-01-06T01:13:27.000000000", + "2019-01-06T01:13:31.000000000", + "2019-01-06T01:15:01.000000000", + "2019-01-06T01:15:08.000000000", + "2019-01-06T01:15:26.000000000", + "2019-01-06T01:16:00.000000000", + "2019-01-06T01:16:20.000000000", + "2019-01-06T01:17:48.000000000", + "2019-01-06T01:18:03.000000000", + "2019-01-06T01:20:11.000000000", + "2019-01-06T01:21:08.000000000", + "2019-01-06T01:21:32.000000000", + "2019-01-06T01:22:04.000000000", + "2019-01-06T01:22:21.000000000", + "2019-01-06T01:22:53.000000000", + "2019-01-06T01:24:16.000000000", + "2019-01-06T01:25:09.000000000", + "2019-01-06T01:27:47.000000000", + "2019-01-06T01:28:41.000000000", + "2019-01-06T01:29:26.000000000", + "2019-01-06T01:29:45.000000000", + "2019-01-06T01:30:37.000000000", + "2019-01-06T01:33:37.000000000", + "2019-01-06T01:34:43.000000000", + "2019-01-06T01:35:38.000000000", + "2019-01-06T01:37:19.000000000", + "2019-01-06T01:37:55.000000000", + "2019-01-06T01:38:10.000000000", + "2019-01-06T01:39:50.000000000", + "2019-01-06T01:39:58.000000000", + "2019-01-06T01:40:26.000000000", + "2019-01-06T01:40:54.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:44:13.000000000", + "2019-01-06T01:47:30.000000000", + "2019-01-06T01:48:09.000000000", + "2019-01-06T01:48:17.000000000", + "2019-01-06T01:48:57.000000000", + "2019-01-06T01:50:06.000000000", + "2019-01-06T01:50:54.000000000", + "2019-01-06T01:50:56.000000000", + "2019-01-06T01:51:09.000000000", + "2019-01-06T01:52:22.000000000", + "2019-01-06T01:52:33.000000000", + "2019-01-06T01:53:59.000000000", + "2019-01-06T01:55:03.000000000", + "2019-01-06T01:56:15.000000000", + "2019-01-06T01:56:39.000000000", + "2019-01-06T01:59:24.000000000", + "2019-01-06T02:01:57.000000000", + "2019-01-06T02:04:00.000000000", + "2019-01-06T02:04:01.000000000", + "2019-01-06T02:08:57.000000000", + "2019-01-06T02:10:03.000000000", + "2019-01-06T02:11:26.000000000", + "2019-01-06T02:12:35.000000000", + "2019-01-06T02:12:44.000000000", + "2019-01-06T02:13:49.000000000", + "2019-01-06T02:16:02.000000000", + "2019-01-06T02:16:14.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:17:07.000000000", + "2019-01-06T02:17:08.000000000", + "2019-01-06T02:18:47.000000000", + "2019-01-06T02:20:53.000000000", + "2019-01-06T02:23:43.000000000", + "2019-01-06T02:26:07.000000000", + "2019-01-06T02:27:09.000000000", + "2019-01-06T02:28:36.000000000", + "2019-01-06T02:28:55.000000000", + "2019-01-06T02:30:10.000000000", + "2019-01-06T02:31:22.000000000", + "2019-01-06T02:33:14.000000000", + "2019-01-06T02:33:57.000000000", + "2019-01-06T02:35:31.000000000", + "2019-01-06T02:35:37.000000000", + "2019-01-06T02:36:52.000000000", + "2019-01-06T02:36:55.000000000", + "2019-01-06T02:37:09.000000000", + "2019-01-06T02:37:17.000000000", + "2019-01-06T02:38:06.000000000", + "2019-01-06T02:38:57.000000000", + "2019-01-06T02:40:03.000000000", + "2019-01-06T02:41:25.000000000", + "2019-01-06T02:42:02.000000000", + "2019-01-06T02:43:24.000000000", + "2019-01-06T02:43:42.000000000", + "2019-01-06T02:43:43.000000000", + "2019-01-06T02:44:05.000000000", + "2019-01-06T02:49:56.000000000", + "2019-01-06T02:52:20.000000000", + "2019-01-06T02:54:17.000000000", + "2019-01-06T02:56:03.000000000", + "2019-01-06T02:59:45.000000000", + "2019-01-06T03:00:42.000000000", + "2019-01-06T03:01:05.000000000", + "2019-01-06T03:02:26.000000000", + "2019-01-06T03:03:03.000000000", + "2019-01-06T03:05:28.000000000", + "2019-01-06T03:08:35.000000000", + "2019-01-06T03:09:25.000000000", + "2019-01-06T03:10:20.000000000", + "2019-01-06T03:11:00.000000000", + "2019-01-06T03:11:43.000000000", + "2019-01-06T03:13:29.000000000", + "2019-01-06T03:16:48.000000000", + "2019-01-06T03:16:49.000000000", + "2019-01-06T03:17:37.000000000", + "2019-01-06T03:17:39.000000000", + "2019-01-06T03:18:39.000000000", + "2019-01-06T03:18:46.000000000", + "2019-01-06T03:19:52.000000000", + "2019-01-06T03:20:08.000000000", + "2019-01-06T03:20:39.000000000", + "2019-01-06T03:20:56.000000000", + "2019-01-06T03:21:46.000000000", + "2019-01-06T03:22:48.000000000", + "2019-01-06T03:23:03.000000000", + "2019-01-06T03:24:16.000000000", + "2019-01-06T03:32:38.000000000", + "2019-01-06T03:34:06.000000000", + "2019-01-06T03:34:12.000000000", + "2019-01-06T03:34:25.000000000", + "2019-01-06T03:34:57.000000000", + "2019-01-06T03:37:39.000000000", + "2019-01-06T03:38:47.000000000", + "2019-01-06T03:39:10.000000000", + "2019-01-06T03:40:52.000000000", + "2019-01-06T03:43:35.000000000", + "2019-01-06T03:43:36.000000000", + "2019-01-06T03:44:20.000000000", + "2019-01-06T03:45:40.000000000", + "2019-01-06T03:47:29.000000000", + "2019-01-06T03:49:45.000000000", + "2019-01-06T03:50:32.000000000", + "2019-01-06T03:50:35.000000000", + "2019-01-06T03:51:56.000000000", + "2019-01-06T03:52:34.000000000", + "2019-01-06T03:54:05.000000000", + "2019-01-06T03:54:51.000000000", + "2019-01-06T03:55:31.000000000", + "2019-01-06T03:55:36.000000000", + "2019-01-06T03:58:55.000000000", + "2019-01-06T04:00:23.000000000", + "2019-01-06T04:00:33.000000000", + "2019-01-06T04:02:31.000000000", + "2019-01-06T04:02:40.000000000", + "2019-01-06T04:02:46.000000000", + "2019-01-06T04:03:30.000000000", + "2019-01-06T04:04:56.000000000", + "2019-01-06T04:06:19.000000000", + "2019-01-06T04:07:51.000000000", + "2019-01-06T04:08:22.000000000", + "2019-01-06T04:09:23.000000000", + "2019-01-06T04:10:00.000000000", + "2019-01-06T04:10:49.000000000", + "2019-01-06T04:10:57.000000000", + "2019-01-06T04:11:44.000000000", + "2019-01-06T04:11:58.000000000", + "2019-01-06T04:13:30.000000000", + "2019-01-06T04:13:37.000000000", + "2019-01-06T04:15:40.000000000", + "2019-01-06T04:17:24.000000000", + "2019-01-06T04:18:40.000000000", + "2019-01-06T04:19:16.000000000", + "2019-01-06T04:19:24.000000000", + "2019-01-06T04:20:18.000000000", + "2019-01-06T04:21:05.000000000", + "2019-01-06T04:21:06.000000000", + "2019-01-06T04:21:50.000000000", + "2019-01-06T04:22:21.000000000", + "2019-01-06T04:23:48.000000000", + "2019-01-06T04:25:23.000000000", + "2019-01-06T04:26:13.000000000", + "2019-01-06T04:27:00.000000000", + "2019-01-06T04:30:07.000000000", + "2019-01-06T04:30:48.000000000", + "2019-01-06T04:31:13.000000000", + "2019-01-06T04:32:47.000000000", + "2019-01-06T04:34:28.000000000", + "2019-01-06T04:34:29.000000000", + "2019-01-06T04:34:32.000000000", + "2019-01-06T04:35:00.000000000", + "2019-01-06T04:35:11.000000000", + "2019-01-06T04:36:03.000000000", + "2019-01-06T04:39:15.000000000", + "2019-01-06T04:41:29.000000000", + "2019-01-06T04:43:03.000000000", + "2019-01-06T04:43:25.000000000", + "2019-01-06T04:43:29.000000000", + "2019-01-06T04:43:36.000000000", + "2019-01-06T04:44:27.000000000", + "2019-01-06T04:45:27.000000000", + "2019-01-06T04:46:09.000000000", + "2019-01-06T04:49:21.000000000", + "2019-01-06T04:49:25.000000000", + "2019-01-06T04:53:14.000000000", + "2019-01-06T04:54:54.000000000", + "2019-01-06T04:55:02.000000000", + "2019-01-06T04:55:47.000000000", + "2019-01-06T04:55:57.000000000", + "2019-01-06T04:56:32.000000000", + "2019-01-06T04:57:26.000000000", + "2019-01-06T04:57:41.000000000", + "2019-01-06T04:58:06.000000000", + "2019-01-06T04:58:47.000000000", + "2019-01-06T04:59:15.000000000", + "2019-01-06T05:01:51.000000000", + "2019-01-06T05:01:52.000000000", + "2019-01-06T05:01:57.000000000", + "2019-01-06T05:02:36.000000000", + "2019-01-06T05:03:13.000000000", + "2019-01-06T05:05:18.000000000", + "2019-01-06T05:06:03.000000000", + "2019-01-06T05:07:09.000000000", + "2019-01-06T05:07:32.000000000", + "2019-01-06T05:08:38.000000000", + "2019-01-06T05:10:55.000000000", + "2019-01-06T05:11:02.000000000", + "2019-01-06T05:13:18.000000000", + "2019-01-06T05:15:21.000000000", + "2019-01-06T05:16:16.000000000", + "2019-01-06T05:17:42.000000000", + "2019-01-06T05:18:03.000000000", + "2019-01-06T05:18:39.000000000", + "2019-01-06T05:18:47.000000000", + "2019-01-06T05:23:03.000000000", + "2019-01-06T05:23:12.000000000", + "2019-01-06T05:23:29.000000000", + "2019-01-06T05:25:26.000000000", + "2019-01-06T05:25:38.000000000", + "2019-01-06T05:25:40.000000000", + "2019-01-06T05:26:42.000000000", + "2019-01-06T05:27:42.000000000", + "2019-01-06T05:28:12.000000000", + "2019-01-06T05:28:32.000000000", + "2019-01-06T05:28:37.000000000", + "2019-01-06T05:29:29.000000000", + "2019-01-06T05:31:31.000000000", + "2019-01-06T05:32:21.000000000", + "2019-01-06T05:32:33.000000000", + "2019-01-06T05:33:02.000000000", + "2019-01-06T05:33:29.000000000", + "2019-01-06T05:34:44.000000000", + "2019-01-06T05:36:11.000000000", + "2019-01-06T05:36:19.000000000", + "2019-01-06T05:38:07.000000000", + "2019-01-06T05:39:14.000000000", + "2019-01-06T05:40:21.000000000", + "2019-01-06T05:40:43.000000000", + "2019-01-06T05:41:01.000000000", + "2019-01-06T05:41:07.000000000", + "2019-01-06T05:42:16.000000000", + "2019-01-06T05:42:21.000000000", + "2019-01-06T05:42:24.000000000", + "2019-01-06T05:44:07.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:45:51.000000000", + "2019-01-06T05:45:55.000000000", + "2019-01-06T05:46:03.000000000", + "2019-01-06T05:46:34.000000000", + "2019-01-06T05:48:18.000000000", + "2019-01-06T05:51:32.000000000", + "2019-01-06T05:51:38.000000000", + "2019-01-06T05:52:56.000000000", + "2019-01-06T05:52:57.000000000", + "2019-01-06T05:58:10.000000000", + "2019-01-06T06:00:07.000000000", + "2019-01-06T06:00:23.000000000", + "2019-01-06T06:01:43.000000000", + "2019-01-06T06:03:13.000000000", + "2019-01-06T06:04:27.000000000", + "2019-01-06T06:04:48.000000000", + "2019-01-06T06:06:53.000000000", + "2019-01-06T06:06:59.000000000", + "2019-01-06T06:09:01.000000000", + "2019-01-06T06:09:08.000000000", + "2019-01-06T06:09:36.000000000", + "2019-01-06T06:09:57.000000000", + "2019-01-06T06:10:15.000000000", + "2019-01-06T06:10:55.000000000", + "2019-01-06T06:11:50.000000000", + "2019-01-06T06:11:51.000000000", + "2019-01-06T06:13:35.000000000", + "2019-01-06T06:14:18.000000000", + "2019-01-06T06:14:31.000000000", + "2019-01-06T06:15:52.000000000", + "2019-01-06T06:16:01.000000000", + "2019-01-06T06:16:45.000000000", + "2019-01-06T06:16:46.000000000", + "2019-01-06T06:18:12.000000000", + "2019-01-06T06:20:38.000000000", + "2019-01-06T06:20:40.000000000", + "2019-01-06T06:23:10.000000000", + "2019-01-06T06:23:47.000000000", + "2019-01-06T06:26:26.000000000", + "2019-01-06T06:28:01.000000000", + "2019-01-06T06:28:31.000000000", + "2019-01-06T06:28:51.000000000", + "2019-01-06T06:33:35.000000000", + "2019-01-06T06:34:39.000000000", + "2019-01-06T06:36:56.000000000", + "2019-01-06T06:37:47.000000000", + "2019-01-06T06:39:50.000000000", + "2019-01-06T06:40:14.000000000", + "2019-01-06T06:40:42.000000000", + "2019-01-06T06:41:01.000000000", + "2019-01-06T06:41:11.000000000", + "2019-01-06T06:41:20.000000000", + "2019-01-06T06:41:21.000000000", + "2019-01-06T06:41:32.000000000", + "2019-01-06T06:41:47.000000000", + "2019-01-06T06:42:03.000000000", + "2019-01-06T06:42:12.000000000", + "2019-01-06T06:45:14.000000000", + "2019-01-06T06:48:30.000000000", + "2019-01-06T06:49:57.000000000", + "2019-01-06T06:53:02.000000000", + "2019-01-06T06:53:28.000000000", + "2019-01-06T06:54:04.000000000", + "2019-01-06T06:54:16.000000000", + "2019-01-06T06:54:20.000000000", + "2019-01-06T06:57:05.000000000", + "2019-01-06T06:57:27.000000000", + "2019-01-06T06:58:31.000000000", + "2019-01-06T06:59:07.000000000", + "2019-01-06T06:59:41.000000000", + "2019-01-06T06:59:48.000000000", + "2019-01-06T07:01:23.000000000", + "2019-01-06T07:01:40.000000000", + "2019-01-06T07:01:51.000000000", + "2019-01-06T07:04:27.000000000", + "2019-01-06T07:04:57.000000000", + "2019-01-06T07:05:29.000000000", + "2019-01-06T07:05:41.000000000", + "2019-01-06T07:06:51.000000000", + "2019-01-06T07:07:57.000000000", + "2019-01-06T07:10:19.000000000", + "2019-01-06T07:12:05.000000000", + "2019-01-06T07:13:26.000000000", + "2019-01-06T07:14:30.000000000", + "2019-01-06T07:15:16.000000000", + "2019-01-06T07:15:53.000000000", + "2019-01-06T07:21:29.000000000", + "2019-01-06T07:22:36.000000000", + "2019-01-06T07:22:43.000000000", + "2019-01-06T07:23:03.000000000", + "2019-01-06T07:24:49.000000000", + "2019-01-06T07:24:59.000000000", + "2019-01-06T07:25:01.000000000", + "2019-01-06T07:25:23.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:27:30.000000000", + "2019-01-06T07:27:33.000000000", + "2019-01-06T07:27:54.000000000", + "2019-01-06T07:28:11.000000000", + "2019-01-06T07:28:48.000000000", + "2019-01-06T07:29:59.000000000", + "2019-01-06T07:30:10.000000000", + "2019-01-06T07:30:16.000000000", + "2019-01-06T07:30:29.000000000", + "2019-01-06T07:32:12.000000000", + "2019-01-06T07:34:01.000000000", + "2019-01-06T07:37:25.000000000", + "2019-01-06T07:39:11.000000000", + "2019-01-06T07:40:38.000000000", + "2019-01-06T07:40:44.000000000", + "2019-01-06T07:43:16.000000000", + "2019-01-06T07:45:34.000000000", + "2019-01-06T07:46:29.000000000", + "2019-01-06T07:47:04.000000000", + "2019-01-06T07:47:06.000000000", + "2019-01-06T07:48:21.000000000", + "2019-01-06T07:49:06.000000000", + "2019-01-06T07:50:03.000000000", + "2019-01-06T07:51:08.000000000", + "2019-01-06T07:53:50.000000000", + "2019-01-06T07:53:51.000000000", + "2019-01-06T07:54:20.000000000", + "2019-01-06T07:54:23.000000000", + "2019-01-06T07:54:37.000000000", + "2019-01-06T07:56:28.000000000", + "2019-01-06T07:57:27.000000000", + "2019-01-06T07:57:51.000000000", + "2019-01-06T07:59:36.000000000", + "2019-01-06T08:02:08.000000000", + "2019-01-06T08:02:22.000000000", + "2019-01-06T08:02:50.000000000", + "2019-01-06T08:03:16.000000000", + "2019-01-06T08:04:29.000000000", + "2019-01-06T08:05:26.000000000", + "2019-01-06T08:05:27.000000000", + "2019-01-06T08:06:43.000000000", + "2019-01-06T08:08:05.000000000", + "2019-01-06T08:10:14.000000000", + "2019-01-06T08:10:31.000000000", + "2019-01-06T08:11:11.000000000", + "2019-01-06T08:11:17.000000000", + "2019-01-06T08:12:55.000000000", + "2019-01-06T08:12:57.000000000", + "2019-01-06T08:14:17.000000000", + "2019-01-06T08:15:24.000000000", + "2019-01-06T08:16:43.000000000", + "2019-01-06T08:16:45.000000000", + "2019-01-06T08:17:14.000000000", + "2019-01-06T08:18:21.000000000", + "2019-01-06T08:20:02.000000000", + "2019-01-06T08:21:40.000000000", + "2019-01-06T08:22:10.000000000", + "2019-01-06T08:23:24.000000000", + "2019-01-06T08:23:30.000000000", + "2019-01-06T08:26:43.000000000", + "2019-01-06T08:27:56.000000000", + "2019-01-06T08:28:26.000000000", + "2019-01-06T08:28:58.000000000", + "2019-01-06T08:30:57.000000000", + "2019-01-06T08:32:27.000000000", + "2019-01-06T08:33:59.000000000", + "2019-01-06T08:34:03.000000000", + "2019-01-06T08:35:05.000000000", + "2019-01-06T08:35:57.000000000", + "2019-01-06T08:36:06.000000000", + "2019-01-06T08:36:51.000000000", + "2019-01-06T08:36:59.000000000", + "2019-01-06T08:37:16.000000000", + "2019-01-06T08:37:35.000000000", + "2019-01-06T08:37:39.000000000", + "2019-01-06T08:40:10.000000000", + "2019-01-06T08:40:30.000000000", + "2019-01-06T08:40:40.000000000", + "2019-01-06T08:41:25.000000000", + "2019-01-06T08:41:54.000000000", + "2019-01-06T08:42:44.000000000", + "2019-01-06T08:43:44.000000000", + "2019-01-06T08:44:43.000000000", + "2019-01-06T08:45:59.000000000", + "2019-01-06T08:47:29.000000000", + "2019-01-06T08:47:30.000000000", + "2019-01-06T08:48:07.000000000", + "2019-01-06T08:48:41.000000000", + "2019-01-06T08:51:35.000000000", + "2019-01-06T08:52:37.000000000", + "2019-01-06T08:52:49.000000000", + "2019-01-06T08:53:43.000000000", + "2019-01-06T08:55:13.000000000", + "2019-01-06T08:58:04.000000000", + "2019-01-06T08:58:07.000000000", + "2019-01-06T08:58:20.000000000", + "2019-01-06T09:00:14.000000000", + "2019-01-06T09:00:29.000000000", + "2019-01-06T09:03:40.000000000", + "2019-01-06T09:04:17.000000000", + "2019-01-06T09:04:20.000000000", + "2019-01-06T09:05:51.000000000", + "2019-01-06T09:10:38.000000000", + "2019-01-06T09:10:53.000000000", + "2019-01-06T09:13:27.000000000", + "2019-01-06T09:14:55.000000000", + "2019-01-06T09:15:33.000000000", + "2019-01-06T09:15:49.000000000", + "2019-01-06T09:16:05.000000000", + "2019-01-06T09:17:03.000000000", + "2019-01-06T09:17:13.000000000", + "2019-01-06T09:18:30.000000000", + "2019-01-06T09:18:38.000000000", + "2019-01-06T09:19:58.000000000", + "2019-01-06T09:21:05.000000000", + "2019-01-06T09:21:20.000000000", + "2019-01-06T09:22:09.000000000", + "2019-01-06T09:24:15.000000000", + "2019-01-06T09:25:13.000000000", + "2019-01-06T09:25:15.000000000", + "2019-01-06T09:25:42.000000000", + "2019-01-06T09:27:01.000000000", + "2019-01-06T09:28:04.000000000", + "2019-01-06T09:28:47.000000000", + "2019-01-06T09:29:14.000000000", + "2019-01-06T09:31:17.000000000", + "2019-01-06T09:31:49.000000000", + "2019-01-06T09:32:17.000000000", + "2019-01-06T09:32:26.000000000", + "2019-01-06T09:32:51.000000000", + "2019-01-06T09:33:00.000000000", + "2019-01-06T09:34:14.000000000", + "2019-01-06T09:36:00.000000000", + "2019-01-06T09:36:03.000000000", + "2019-01-06T09:36:09.000000000", + "2019-01-06T09:36:58.000000000", + "2019-01-06T09:37:11.000000000", + "2019-01-06T09:39:53.000000000", + "2019-01-06T09:40:16.000000000", + "2019-01-06T09:44:35.000000000", + "2019-01-06T09:46:10.000000000", + "2019-01-06T09:46:57.000000000", + "2019-01-06T09:47:47.000000000", + "2019-01-06T09:48:41.000000000", + "2019-01-06T09:49:27.000000000", + "2019-01-06T09:50:52.000000000", + "2019-01-06T09:51:49.000000000", + "2019-01-06T09:53:50.000000000", + "2019-01-06T09:54:07.000000000", + "2019-01-06T09:55:47.000000000", + "2019-01-06T09:55:55.000000000", + "2019-01-06T09:55:56.000000000", + "2019-01-06T09:57:10.000000000", + "2019-01-06T09:57:34.000000000", + "2019-01-06T09:59:24.000000000", + "2019-01-06T10:01:45.000000000", + "2019-01-06T10:04:47.000000000", + "2019-01-06T10:04:57.000000000", + "2019-01-06T10:05:07.000000000", + "2019-01-06T10:05:49.000000000", + "2019-01-06T10:08:40.000000000", + "2019-01-06T10:10:03.000000000", + "2019-01-06T10:10:56.000000000", + "2019-01-06T10:14:24.000000000", + "2019-01-06T10:14:38.000000000", + "2019-01-06T10:14:58.000000000", + "2019-01-06T10:16:39.000000000", + "2019-01-06T10:16:51.000000000", + "2019-01-06T10:17:36.000000000", + "2019-01-06T10:18:26.000000000", + "2019-01-06T10:19:34.000000000", + "2019-01-06T10:21:41.000000000", + "2019-01-06T10:22:49.000000000", + "2019-01-06T10:23:12.000000000", + "2019-01-06T10:28:55.000000000", + "2019-01-06T10:29:10.000000000", + "2019-01-06T10:29:15.000000000", + "2019-01-06T10:29:36.000000000", + "2019-01-06T10:30:03.000000000", + "2019-01-06T10:31:19.000000000", + "2019-01-06T10:31:20.000000000", + "2019-01-06T10:31:49.000000000", + "2019-01-06T10:32:32.000000000", + "2019-01-06T10:32:42.000000000", + "2019-01-06T10:33:32.000000000", + "2019-01-06T10:34:07.000000000", + "2019-01-06T10:37:25.000000000", + "2019-01-06T10:39:40.000000000", + "2019-01-06T10:41:24.000000000", + "2019-01-06T10:41:31.000000000", + "2019-01-06T10:41:35.000000000", + "2019-01-06T10:42:56.000000000", + "2019-01-06T10:43:06.000000000", + "2019-01-06T10:43:09.000000000", + "2019-01-06T10:43:28.000000000", + "2019-01-06T10:45:19.000000000", + "2019-01-06T10:45:59.000000000", + "2019-01-06T10:46:08.000000000", + "2019-01-06T10:47:43.000000000", + "2019-01-06T10:48:19.000000000", + "2019-01-06T10:48:23.000000000", + "2019-01-06T10:48:25.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:49:31.000000000", + "2019-01-06T10:49:53.000000000", + "2019-01-06T10:50:38.000000000", + "2019-01-06T10:52:14.000000000", + "2019-01-06T10:53:35.000000000", + "2019-01-06T10:54:07.000000000", + "2019-01-06T10:55:18.000000000", + "2019-01-06T10:55:47.000000000", + "2019-01-06T10:57:33.000000000", + "2019-01-06T10:59:23.000000000", + "2019-01-06T11:01:11.000000000", + "2019-01-06T11:01:52.000000000", + "2019-01-06T11:02:00.000000000", + "2019-01-06T11:04:19.000000000", + "2019-01-06T11:04:25.000000000", + "2019-01-06T11:05:40.000000000", + "2019-01-06T11:06:23.000000000", + "2019-01-06T11:06:29.000000000", + "2019-01-06T11:07:45.000000000", + "2019-01-06T11:08:38.000000000", + "2019-01-06T11:08:51.000000000", + "2019-01-06T11:08:57.000000000", + "2019-01-06T11:09:34.000000000", + "2019-01-06T11:09:58.000000000", + "2019-01-06T11:10:29.000000000", + "2019-01-06T11:11:08.000000000", + "2019-01-06T11:11:48.000000000", + "2019-01-06T11:13:56.000000000", + "2019-01-06T11:14:15.000000000", + "2019-01-06T11:15:11.000000000", + "2019-01-06T11:15:35.000000000", + "2019-01-06T11:16:16.000000000", + "2019-01-06T11:16:45.000000000", + "2019-01-06T11:16:57.000000000", + "2019-01-06T11:20:00.000000000", + "2019-01-06T11:22:47.000000000", + "2019-01-06T11:23:37.000000000", + "2019-01-06T11:26:02.000000000", + "2019-01-06T11:27:31.000000000", + "2019-01-06T11:27:40.000000000", + "2019-01-06T11:28:40.000000000", + "2019-01-06T11:29:47.000000000", + "2019-01-06T11:30:38.000000000", + "2019-01-06T11:32:02.000000000", + "2019-01-06T11:32:46.000000000", + "2019-01-06T11:33:28.000000000", + "2019-01-06T11:35:03.000000000", + "2019-01-06T11:35:53.000000000", + "2019-01-06T11:36:38.000000000", + "2019-01-06T11:37:47.000000000", + "2019-01-06T11:37:56.000000000", + "2019-01-06T11:39:06.000000000", + "2019-01-06T11:39:18.000000000", + "2019-01-06T11:39:19.000000000", + "2019-01-06T11:40:56.000000000", + "2019-01-06T11:42:24.000000000", + "2019-01-06T11:42:26.000000000", + "2019-01-06T11:44:20.000000000", + "2019-01-06T11:44:43.000000000", + "2019-01-06T11:45:30.000000000", + "2019-01-06T11:45:39.000000000", + "2019-01-06T11:46:23.000000000", + "2019-01-06T11:49:02.000000000", + "2019-01-06T11:49:24.000000000", + "2019-01-06T11:49:43.000000000", + "2019-01-06T11:50:36.000000000", + "2019-01-06T11:50:46.000000000", + "2019-01-06T11:50:57.000000000", + "2019-01-06T11:52:50.000000000", + "2019-01-06T11:55:45.000000000", + "2019-01-06T11:55:47.000000000", + "2019-01-06T11:56:22.000000000", + "2019-01-06T11:57:22.000000000", + "2019-01-06T11:58:31.000000000", + "2019-01-06T11:59:05.000000000", + "2019-01-06T11:59:07.000000000", + "2019-01-06T12:00:05.000000000", + "2019-01-06T12:04:08.000000000", + "2019-01-06T12:04:16.000000000", + "2019-01-06T12:06:13.000000000", + "2019-01-06T12:06:59.000000000", + "2019-01-06T12:08:28.000000000", + "2019-01-06T12:08:47.000000000", + "2019-01-06T12:09:29.000000000", + "2019-01-06T12:14:58.000000000", + "2019-01-06T12:16:33.000000000", + "2019-01-06T12:16:42.000000000", + "2019-01-06T12:16:43.000000000", + "2019-01-06T12:19:03.000000000", + "2019-01-06T12:21:35.000000000", + "2019-01-06T12:21:58.000000000", + "2019-01-06T12:22:55.000000000", + "2019-01-06T12:24:43.000000000", + "2019-01-06T12:25:39.000000000", + "2019-01-06T12:25:50.000000000", + "2019-01-06T12:26:55.000000000", + "2019-01-06T12:27:15.000000000", + "2019-01-06T12:30:08.000000000", + "2019-01-06T12:30:18.000000000", + "2019-01-06T12:30:45.000000000", + "2019-01-06T12:31:47.000000000", + "2019-01-06T12:32:01.000000000", + "2019-01-06T12:33:11.000000000", + "2019-01-06T12:36:11.000000000", + "2019-01-06T12:38:51.000000000", + "2019-01-06T12:39:45.000000000", + "2019-01-06T12:42:47.000000000", + "2019-01-06T12:43:10.000000000", + "2019-01-06T12:46:58.000000000", + "2019-01-06T12:47:05.000000000", + "2019-01-06T12:48:22.000000000", + "2019-01-06T12:48:24.000000000", + "2019-01-06T12:49:18.000000000", + "2019-01-06T12:49:39.000000000", + "2019-01-06T12:50:34.000000000", + "2019-01-06T12:50:39.000000000", + "2019-01-06T12:50:44.000000000", + "2019-01-06T12:50:52.000000000", + "2019-01-06T12:51:49.000000000", + "2019-01-06T12:55:18.000000000", + "2019-01-06T12:55:46.000000000", + "2019-01-06T12:57:08.000000000", + "2019-01-06T12:57:40.000000000", + "2019-01-06T12:59:34.000000000", + "2019-01-06T13:00:51.000000000", + "2019-01-06T13:01:27.000000000", + "2019-01-06T13:01:29.000000000", + "2019-01-06T13:03:22.000000000", + "2019-01-06T13:04:14.000000000", + "2019-01-06T13:04:36.000000000", + "2019-01-06T13:04:44.000000000", + "2019-01-06T13:04:52.000000000", + "2019-01-06T13:06:42.000000000", + "2019-01-06T13:07:07.000000000", + "2019-01-06T13:07:54.000000000", + "2019-01-06T13:11:23.000000000", + "2019-01-06T13:12:08.000000000", + "2019-01-06T13:12:16.000000000", + "2019-01-06T13:16:26.000000000", + "2019-01-06T13:16:54.000000000", + "2019-01-06T13:19:22.000000000", + "2019-01-06T13:19:56.000000000", + "2019-01-06T13:20:46.000000000", + "2019-01-06T13:21:18.000000000", + "2019-01-06T13:21:43.000000000", + "2019-01-06T13:23:13.000000000", + "2019-01-06T13:24:21.000000000", + "2019-01-06T13:27:12.000000000", + "2019-01-06T13:28:24.000000000", + "2019-01-06T13:29:14.000000000", + "2019-01-06T13:32:22.000000000", + "2019-01-06T13:32:57.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:34:04.000000000", + "2019-01-06T13:34:50.000000000", + "2019-01-06T13:36:48.000000000", + "2019-01-06T13:36:59.000000000", + "2019-01-06T13:39:07.000000000", + "2019-01-06T13:39:15.000000000", + "2019-01-06T13:40:00.000000000", + "2019-01-06T13:40:06.000000000", + "2019-01-06T13:41:45.000000000", + "2019-01-06T13:44:04.000000000", + "2019-01-06T13:44:18.000000000", + "2019-01-06T13:44:32.000000000", + "2019-01-06T13:47:32.000000000", + "2019-01-06T13:48:08.000000000", + "2019-01-06T13:49:21.000000000", + "2019-01-06T13:50:23.000000000", + "2019-01-06T13:53:42.000000000", + "2019-01-06T13:54:29.000000000", + "2019-01-06T13:54:55.000000000", + "2019-01-06T13:55:57.000000000", + "2019-01-06T13:58:20.000000000", + "2019-01-06T13:58:55.000000000", + "2019-01-06T13:58:57.000000000", + "2019-01-06T13:59:54.000000000", + "2019-01-06T13:59:57.000000000", + "2019-01-06T13:59:58.000000000", + "2019-01-06T14:00:22.000000000", + "2019-01-06T14:01:20.000000000", + "2019-01-06T14:02:32.000000000", + "2019-01-06T14:03:52.000000000", + "2019-01-06T14:04:38.000000000", + "2019-01-06T14:05:46.000000000", + "2019-01-06T14:06:29.000000000", + "2019-01-06T14:07:14.000000000", + "2019-01-06T14:08:17.000000000", + "2019-01-06T14:08:25.000000000", + "2019-01-06T14:09:00.000000000", + "2019-01-06T14:11:10.000000000", + "2019-01-06T14:11:30.000000000", + "2019-01-06T14:11:54.000000000", + "2019-01-06T14:13:08.000000000", + "2019-01-06T14:13:11.000000000", + "2019-01-06T14:14:12.000000000", + "2019-01-06T14:14:48.000000000", + "2019-01-06T14:15:30.000000000", + "2019-01-06T14:16:08.000000000", + "2019-01-06T14:16:46.000000000", + "2019-01-06T14:16:49.000000000", + "2019-01-06T14:17:19.000000000", + "2019-01-06T14:17:48.000000000", + "2019-01-06T14:18:44.000000000", + "2019-01-06T14:18:49.000000000", + "2019-01-06T14:21:20.000000000", + "2019-01-06T14:23:29.000000000", + "2019-01-06T14:23:55.000000000", + "2019-01-06T14:24:00.000000000", + "2019-01-06T14:24:12.000000000", + "2019-01-06T14:24:24.000000000", + "2019-01-06T14:25:34.000000000", + "2019-01-06T14:26:51.000000000", + "2019-01-06T14:30:03.000000000", + "2019-01-06T14:30:32.000000000", + "2019-01-06T14:31:10.000000000", + "2019-01-06T14:31:18.000000000", + "2019-01-06T14:32:35.000000000", + "2019-01-06T14:32:46.000000000", + "2019-01-06T14:34:58.000000000", + "2019-01-06T14:36:31.000000000", + "2019-01-06T14:37:32.000000000", + "2019-01-06T14:38:10.000000000", + "2019-01-06T14:39:15.000000000", + "2019-01-06T14:39:57.000000000", + "2019-01-06T14:40:38.000000000", + "2019-01-06T14:41:09.000000000", + "2019-01-06T14:41:16.000000000", + "2019-01-06T14:42:20.000000000", + "2019-01-06T14:42:33.000000000", + "2019-01-06T14:43:02.000000000", + "2019-01-06T14:43:03.000000000", + "2019-01-06T14:43:07.000000000", + "2019-01-06T14:43:15.000000000", + "2019-01-06T14:44:04.000000000", + "2019-01-06T14:44:23.000000000", + "2019-01-06T14:44:42.000000000", + "2019-01-06T14:45:35.000000000", + "2019-01-06T14:45:39.000000000", + "2019-01-06T14:48:22.000000000", + "2019-01-06T14:48:49.000000000", + "2019-01-06T14:49:09.000000000", + "2019-01-06T14:50:16.000000000", + "2019-01-06T14:50:37.000000000", + "2019-01-06T14:52:00.000000000", + "2019-01-06T14:55:19.000000000", + "2019-01-06T14:57:04.000000000", + "2019-01-06T14:57:10.000000000", + "2019-01-06T14:57:18.000000000", + "2019-01-06T14:57:21.000000000", + "2019-01-06T14:57:30.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:16.000000000", + "2019-01-06T14:58:27.000000000", + "2019-01-06T14:59:58.000000000", + "2019-01-06T15:00:04.000000000", + "2019-01-06T15:00:53.000000000", + "2019-01-06T15:01:33.000000000", + "2019-01-06T15:01:48.000000000", + "2019-01-06T15:02:30.000000000", + "2019-01-06T15:04:10.000000000", + "2019-01-06T15:04:36.000000000", + "2019-01-06T15:06:16.000000000", + "2019-01-06T15:07:47.000000000", + "2019-01-06T15:09:11.000000000", + "2019-01-06T15:09:26.000000000", + "2019-01-06T15:10:14.000000000", + "2019-01-06T15:10:38.000000000", + "2019-01-06T15:10:42.000000000", + "2019-01-06T15:12:02.000000000", + "2019-01-06T15:13:23.000000000", + "2019-01-06T15:13:38.000000000", + "2019-01-06T15:13:44.000000000", + "2019-01-06T15:14:43.000000000", + "2019-01-06T15:19:07.000000000", + "2019-01-06T15:19:36.000000000", + "2019-01-06T15:19:52.000000000", + "2019-01-06T15:20:29.000000000", + "2019-01-06T15:20:44.000000000", + "2019-01-06T15:22:27.000000000", + "2019-01-06T15:23:21.000000000", + "2019-01-06T15:23:46.000000000", + "2019-01-06T15:23:50.000000000", + "2019-01-06T15:25:37.000000000", + "2019-01-06T15:27:17.000000000", + "2019-01-06T15:27:33.000000000", + "2019-01-06T15:27:55.000000000", + "2019-01-06T15:29:07.000000000", + "2019-01-06T15:29:37.000000000", + "2019-01-06T15:29:45.000000000", + "2019-01-06T15:31:25.000000000", + "2019-01-06T15:32:07.000000000", + "2019-01-06T15:32:17.000000000", + "2019-01-06T15:33:24.000000000", + "2019-01-06T15:33:55.000000000", + "2019-01-06T15:35:15.000000000", + "2019-01-06T15:36:01.000000000", + "2019-01-06T15:37:20.000000000", + "2019-01-06T15:38:09.000000000", + "2019-01-06T15:40:53.000000000", + "2019-01-06T15:43:12.000000000", + "2019-01-06T15:44:40.000000000", + "2019-01-06T15:45:36.000000000", + "2019-01-06T15:45:57.000000000", + "2019-01-06T15:46:25.000000000", + "2019-01-06T15:46:44.000000000", + "2019-01-06T15:51:41.000000000", + "2019-01-06T15:53:26.000000000", + "2019-01-06T15:54:02.000000000", + "2019-01-06T15:55:59.000000000", + "2019-01-06T15:59:08.000000000", + "2019-01-06T16:01:01.000000000", + "2019-01-06T16:01:25.000000000", + "2019-01-06T16:01:37.000000000", + "2019-01-06T16:01:50.000000000", + "2019-01-06T16:02:36.000000000", + "2019-01-06T16:03:13.000000000", + "2019-01-06T16:03:25.000000000", + "2019-01-06T16:04:05.000000000", + "2019-01-06T16:05:39.000000000", + "2019-01-06T16:05:56.000000000", + "2019-01-06T16:07:49.000000000", + "2019-01-06T16:08:16.000000000", + "2019-01-06T16:09:31.000000000", + "2019-01-06T16:09:36.000000000", + "2019-01-06T16:09:49.000000000", + "2019-01-06T16:12:34.000000000", + "2019-01-06T16:13:38.000000000", + "2019-01-06T16:13:57.000000000", + "2019-01-06T16:17:21.000000000", + "2019-01-06T16:18:07.000000000", + "2019-01-06T16:18:27.000000000", + "2019-01-06T16:21:14.000000000", + "2019-01-06T16:22:43.000000000", + "2019-01-06T16:22:52.000000000", + "2019-01-06T16:23:18.000000000", + "2019-01-06T16:26:36.000000000", + "2019-01-06T16:26:45.000000000", + "2019-01-06T16:27:26.000000000", + "2019-01-06T16:27:34.000000000", + "2019-01-06T16:27:43.000000000", + "2019-01-06T16:29:06.000000000", + "2019-01-06T16:31:33.000000000", + "2019-01-06T16:31:34.000000000", + "2019-01-06T16:32:58.000000000", + "2019-01-06T16:33:43.000000000", + "2019-01-06T16:35:02.000000000", + "2019-01-06T16:35:13.000000000", + "2019-01-06T16:35:55.000000000", + "2019-01-06T16:40:13.000000000", + "2019-01-06T16:40:19.000000000", + "2019-01-06T16:41:38.000000000", + "2019-01-06T16:44:18.000000000", + "2019-01-06T16:44:20.000000000", + "2019-01-06T16:45:49.000000000", + "2019-01-06T16:46:28.000000000", + "2019-01-06T16:46:58.000000000", + "2019-01-06T16:48:43.000000000", + "2019-01-06T16:48:56.000000000", + "2019-01-06T16:49:00.000000000", + "2019-01-06T16:51:03.000000000", + "2019-01-06T16:52:19.000000000", + "2019-01-06T16:53:26.000000000", + "2019-01-06T16:56:38.000000000", + "2019-01-06T16:57:17.000000000", + "2019-01-06T16:58:00.000000000", + "2019-01-06T16:58:54.000000000", + "2019-01-06T16:59:33.000000000", + "2019-01-06T17:00:12.000000000", + "2019-01-06T17:00:46.000000000", + "2019-01-06T17:02:01.000000000", + "2019-01-06T17:04:00.000000000", + "2019-01-06T17:04:02.000000000", + "2019-01-06T17:08:10.000000000", + "2019-01-06T17:08:48.000000000", + "2019-01-06T17:08:56.000000000", + "2019-01-06T17:10:38.000000000", + "2019-01-06T17:10:43.000000000", + "2019-01-06T17:11:52.000000000", + "2019-01-06T17:15:14.000000000", + "2019-01-06T17:15:22.000000000", + "2019-01-06T17:17:34.000000000", + "2019-01-06T17:21:05.000000000", + "2019-01-06T17:21:29.000000000", + "2019-01-06T17:21:38.000000000", + "2019-01-06T17:22:02.000000000", + "2019-01-06T17:26:16.000000000", + "2019-01-06T17:27:19.000000000", + "2019-01-06T17:28:44.000000000", + "2019-01-06T17:29:20.000000000", + "2019-01-06T17:29:34.000000000", + "2019-01-06T17:30:44.000000000", + "2019-01-06T17:32:54.000000000", + "2019-01-06T17:33:03.000000000", + "2019-01-06T17:33:38.000000000", + "2019-01-06T17:34:38.000000000", + "2019-01-06T17:34:57.000000000", + "2019-01-06T17:35:06.000000000", + "2019-01-06T17:35:25.000000000", + "2019-01-06T17:36:19.000000000", + "2019-01-06T17:38:48.000000000", + "2019-01-06T17:40:49.000000000", + "2019-01-06T17:43:31.000000000", + "2019-01-06T17:44:13.000000000", + "2019-01-06T17:45:53.000000000", + "2019-01-06T17:45:55.000000000", + "2019-01-06T17:45:59.000000000", + "2019-01-06T17:46:30.000000000", + "2019-01-06T17:48:13.000000000", + "2019-01-06T17:48:25.000000000", + "2019-01-06T17:48:59.000000000", + "2019-01-06T17:50:38.000000000", + "2019-01-06T17:51:05.000000000", + "2019-01-06T17:52:31.000000000", + "2019-01-06T17:54:52.000000000", + "2019-01-06T17:55:26.000000000", + "2019-01-06T17:55:30.000000000", + "2019-01-06T17:55:36.000000000", + "2019-01-06T17:56:34.000000000", + "2019-01-06T17:57:40.000000000", + "2019-01-06T17:59:30.000000000", + "2019-01-06T18:03:15.000000000", + "2019-01-06T18:03:18.000000000", + "2019-01-06T18:03:57.000000000", + "2019-01-06T18:04:04.000000000", + "2019-01-06T18:04:34.000000000", + "2019-01-06T18:04:45.000000000", + "2019-01-06T18:05:17.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:07:37.000000000", + "2019-01-06T18:08:10.000000000", + "2019-01-06T18:11:09.000000000", + "2019-01-06T18:11:23.000000000", + "2019-01-06T18:11:29.000000000", + "2019-01-06T18:13:50.000000000", + "2019-01-06T18:14:05.000000000", + "2019-01-06T18:14:48.000000000", + "2019-01-06T18:14:58.000000000", + "2019-01-06T18:15:08.000000000", + "2019-01-06T18:15:34.000000000", + "2019-01-06T18:15:38.000000000", + "2019-01-06T18:16:37.000000000", + "2019-01-06T18:17:11.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:19:12.000000000", + "2019-01-06T18:19:50.000000000", + "2019-01-06T18:20:33.000000000", + "2019-01-06T18:21:23.000000000", + "2019-01-06T18:23:26.000000000", + "2019-01-06T18:23:29.000000000", + "2019-01-06T18:23:37.000000000", + "2019-01-06T18:25:51.000000000", + "2019-01-06T18:28:01.000000000", + "2019-01-06T18:29:35.000000000", + "2019-01-06T18:30:06.000000000", + "2019-01-06T18:30:36.000000000", + "2019-01-06T18:31:39.000000000", + "2019-01-06T18:32:48.000000000", + "2019-01-06T18:34:10.000000000", + "2019-01-06T18:35:26.000000000", + "2019-01-06T18:36:59.000000000", + "2019-01-06T18:37:00.000000000", + "2019-01-06T18:39:00.000000000", + "2019-01-06T18:41:01.000000000", + "2019-01-06T18:41:44.000000000", + "2019-01-06T18:42:46.000000000", + "2019-01-06T18:44:52.000000000", + "2019-01-06T18:45:28.000000000", + "2019-01-06T18:46:09.000000000", + "2019-01-06T18:47:11.000000000", + "2019-01-06T18:47:15.000000000", + "2019-01-06T18:48:31.000000000", + "2019-01-06T18:49:22.000000000", + "2019-01-06T18:50:29.000000000", + "2019-01-06T18:50:32.000000000", + "2019-01-06T18:50:33.000000000", + "2019-01-06T18:51:28.000000000", + "2019-01-06T18:51:46.000000000", + "2019-01-06T18:55:10.000000000", + "2019-01-06T18:55:21.000000000", + "2019-01-06T18:56:20.000000000", + "2019-01-06T18:58:42.000000000", + "2019-01-06T19:00:25.000000000", + "2019-01-06T19:00:58.000000000", + "2019-01-06T19:01:05.000000000", + "2019-01-06T19:01:26.000000000", + "2019-01-06T19:03:41.000000000", + "2019-01-06T19:04:36.000000000", + "2019-01-06T19:05:19.000000000", + "2019-01-06T19:05:24.000000000", + "2019-01-06T19:06:36.000000000", + "2019-01-06T19:07:25.000000000", + "2019-01-06T19:07:35.000000000", + "2019-01-06T19:08:23.000000000", + "2019-01-06T19:09:51.000000000", + "2019-01-06T19:11:40.000000000", + "2019-01-06T19:15:59.000000000", + "2019-01-06T19:17:00.000000000", + "2019-01-06T19:17:05.000000000", + "2019-01-06T19:17:19.000000000", + "2019-01-06T19:17:20.000000000", + "2019-01-06T19:17:25.000000000", + "2019-01-06T19:17:34.000000000", + "2019-01-06T19:17:43.000000000", + "2019-01-06T19:18:25.000000000", + "2019-01-06T19:18:27.000000000", + "2019-01-06T19:20:32.000000000", + "2019-01-06T19:21:50.000000000", + "2019-01-06T19:22:09.000000000", + "2019-01-06T19:22:21.000000000", + "2019-01-06T19:24:26.000000000", + "2019-01-06T19:24:48.000000000", + "2019-01-06T19:25:29.000000000", + "2019-01-06T19:26:16.000000000", + "2019-01-06T19:26:29.000000000", + "2019-01-06T19:26:44.000000000", + "2019-01-06T19:30:14.000000000", + "2019-01-06T19:33:15.000000000", + "2019-01-06T19:33:17.000000000", + "2019-01-06T19:33:46.000000000", + "2019-01-06T19:35:12.000000000", + "2019-01-06T19:35:42.000000000", + "2019-01-06T19:36:06.000000000", + "2019-01-06T19:36:55.000000000", + "2019-01-06T19:38:01.000000000", + "2019-01-06T19:39:00.000000000", + "2019-01-06T19:39:12.000000000", + "2019-01-06T19:39:56.000000000", + "2019-01-06T19:41:34.000000000", + "2019-01-06T19:41:51.000000000", + "2019-01-06T19:42:52.000000000", + "2019-01-06T19:43:28.000000000", + "2019-01-06T19:44:02.000000000", + "2019-01-06T19:44:20.000000000", + "2019-01-06T19:47:22.000000000", + "2019-01-06T19:49:10.000000000", + "2019-01-06T19:50:33.000000000", + "2019-01-06T19:51:13.000000000", + "2019-01-06T19:51:23.000000000", + "2019-01-06T19:55:40.000000000", + "2019-01-06T19:56:04.000000000", + "2019-01-06T19:57:47.000000000", + "2019-01-06T19:58:05.000000000", + "2019-01-06T19:59:26.000000000", + "2019-01-06T20:01:38.000000000", + "2019-01-06T20:01:54.000000000", + "2019-01-06T20:02:08.000000000", + "2019-01-06T20:03:34.000000000", + "2019-01-06T20:04:56.000000000", + "2019-01-06T20:11:24.000000000", + "2019-01-06T20:12:20.000000000", + "2019-01-06T20:14:50.000000000", + "2019-01-06T20:15:34.000000000", + "2019-01-06T20:16:06.000000000", + "2019-01-06T20:16:46.000000000", + "2019-01-06T20:17:04.000000000", + "2019-01-06T20:17:30.000000000", + "2019-01-06T20:17:49.000000000", + "2019-01-06T20:18:08.000000000", + "2019-01-06T20:19:06.000000000", + "2019-01-06T20:19:39.000000000", + "2019-01-06T20:19:42.000000000", + "2019-01-06T20:21:27.000000000", + "2019-01-06T20:22:03.000000000", + "2019-01-06T20:22:58.000000000", + "2019-01-06T20:23:03.000000000", + "2019-01-06T20:24:44.000000000", + "2019-01-06T20:25:06.000000000", + "2019-01-06T20:26:33.000000000", + "2019-01-06T20:27:16.000000000", + "2019-01-06T20:27:23.000000000", + "2019-01-06T20:28:19.000000000", + "2019-01-06T20:29:45.000000000", + "2019-01-06T20:29:53.000000000", + "2019-01-06T20:30:05.000000000", + "2019-01-06T20:31:57.000000000", + "2019-01-06T20:32:51.000000000", + "2019-01-06T20:33:50.000000000", + "2019-01-06T20:34:48.000000000", + "2019-01-06T20:35:47.000000000", + "2019-01-06T20:38:32.000000000", + "2019-01-06T20:38:46.000000000", + "2019-01-06T20:40:34.000000000", + "2019-01-06T20:40:59.000000000", + "2019-01-06T20:41:53.000000000", + "2019-01-06T20:43:29.000000000", + "2019-01-06T20:43:45.000000000", + "2019-01-06T20:43:48.000000000", + "2019-01-06T20:44:25.000000000", + "2019-01-06T20:46:54.000000000", + "2019-01-06T20:47:09.000000000", + "2019-01-06T20:48:15.000000000", + "2019-01-06T20:48:45.000000000", + "2019-01-06T20:49:44.000000000", + "2019-01-06T20:51:52.000000000", + "2019-01-06T20:52:39.000000000", + "2019-01-06T20:55:56.000000000", + "2019-01-06T20:56:19.000000000", + "2019-01-06T20:56:51.000000000", + "2019-01-06T20:59:21.000000000", + "2019-01-06T21:01:16.000000000", + "2019-01-06T21:02:45.000000000", + "2019-01-06T21:06:53.000000000", + "2019-01-06T21:11:34.000000000", + "2019-01-06T21:11:54.000000000", + "2019-01-06T21:13:09.000000000", + "2019-01-06T21:13:48.000000000", + "2019-01-06T21:18:29.000000000", + "2019-01-06T21:19:36.000000000", + "2019-01-06T21:19:52.000000000", + "2019-01-06T21:20:07.000000000", + "2019-01-06T21:20:54.000000000", + "2019-01-06T21:22:47.000000000", + "2019-01-06T21:23:35.000000000", + "2019-01-06T21:23:52.000000000", + "2019-01-06T21:25:06.000000000", + "2019-01-06T21:25:58.000000000", + "2019-01-06T21:26:29.000000000", + "2019-01-06T21:27:18.000000000", + "2019-01-06T21:28:23.000000000", + "2019-01-06T21:30:56.000000000", + "2019-01-06T21:32:20.000000000", + "2019-01-06T21:33:03.000000000", + "2019-01-06T21:34:15.000000000", + "2019-01-06T21:34:31.000000000", + "2019-01-06T21:34:44.000000000", + "2019-01-06T21:34:47.000000000", + "2019-01-06T21:35:06.000000000", + "2019-01-06T21:36:08.000000000", + "2019-01-06T21:37:02.000000000", + "2019-01-06T21:38:06.000000000", + "2019-01-06T21:38:09.000000000", + "2019-01-06T21:38:50.000000000", + "2019-01-06T21:39:55.000000000", + "2019-01-06T21:40:41.000000000", + "2019-01-06T21:41:16.000000000", + "2019-01-06T21:42:13.000000000", + "2019-01-06T21:42:28.000000000", + "2019-01-06T21:42:40.000000000", + "2019-01-06T21:42:47.000000000", + "2019-01-06T21:43:03.000000000", + "2019-01-06T21:44:43.000000000", + "2019-01-06T21:45:39.000000000", + "2019-01-06T21:47:32.000000000", + "2019-01-06T21:49:22.000000000", + "2019-01-06T21:50:02.000000000", + "2019-01-06T21:52:14.000000000", + "2019-01-06T21:53:39.000000000", + "2019-01-06T21:55:09.000000000", + "2019-01-06T21:55:37.000000000", + "2019-01-06T21:56:40.000000000", + "2019-01-06T21:57:08.000000000", + "2019-01-06T21:58:17.000000000", + "2019-01-06T21:59:01.000000000", + "2019-01-06T21:59:02.000000000", + "2019-01-06T21:59:46.000000000", + "2019-01-06T22:00:59.000000000", + "2019-01-06T22:01:10.000000000", + "2019-01-06T22:02:38.000000000", + "2019-01-06T22:04:17.000000000", + "2019-01-06T22:05:13.000000000", + "2019-01-06T22:06:24.000000000", + "2019-01-06T22:06:55.000000000", + "2019-01-06T22:08:40.000000000", + "2019-01-06T22:09:17.000000000", + "2019-01-06T22:09:57.000000000", + "2019-01-06T22:12:04.000000000", + "2019-01-06T22:13:45.000000000", + "2019-01-06T22:15:55.000000000", + "2019-01-06T22:16:00.000000000", + "2019-01-06T22:18:42.000000000", + "2019-01-06T22:21:08.000000000", + "2019-01-06T22:21:33.000000000", + "2019-01-06T22:22:15.000000000", + "2019-01-06T22:22:17.000000000", + "2019-01-06T22:22:34.000000000", + "2019-01-06T22:22:50.000000000", + "2019-01-06T22:24:03.000000000", + "2019-01-06T22:24:07.000000000", + "2019-01-06T22:24:20.000000000", + "2019-01-06T22:26:22.000000000", + "2019-01-06T22:27:07.000000000", + "2019-01-06T22:28:08.000000000", + "2019-01-06T22:28:43.000000000", + "2019-01-06T22:29:04.000000000", + "2019-01-06T22:29:34.000000000", + "2019-01-06T22:29:51.000000000", + "2019-01-06T22:30:43.000000000", + "2019-01-06T22:31:07.000000000", + "2019-01-06T22:31:30.000000000", + "2019-01-06T22:32:12.000000000", + "2019-01-06T22:32:27.000000000", + "2019-01-06T22:34:42.000000000", + "2019-01-06T22:35:00.000000000", + "2019-01-06T22:36:09.000000000", + "2019-01-06T22:36:24.000000000", + "2019-01-06T22:37:22.000000000", + "2019-01-06T22:37:57.000000000", + "2019-01-06T22:38:56.000000000", + "2019-01-06T22:39:37.000000000", + "2019-01-06T22:41:57.000000000", + "2019-01-06T22:44:31.000000000", + "2019-01-06T22:44:42.000000000", + "2019-01-06T22:48:29.000000000", + "2019-01-06T22:50:27.000000000", + "2019-01-06T22:51:09.000000000", + "2019-01-06T22:52:57.000000000", + "2019-01-06T22:54:45.000000000", + "2019-01-06T22:54:54.000000000", + "2019-01-06T22:55:28.000000000", + "2019-01-06T22:55:56.000000000", + "2019-01-06T22:56:32.000000000", + "2019-01-06T22:56:56.000000000", + "2019-01-06T22:57:34.000000000", + "2019-01-06T22:59:55.000000000", + "2019-01-06T23:01:11.000000000", + "2019-01-06T23:01:23.000000000", + "2019-01-06T23:02:02.000000000", + "2019-01-06T23:02:17.000000000", + "2019-01-06T23:04:11.000000000", + "2019-01-06T23:04:28.000000000", + "2019-01-06T23:04:57.000000000", + "2019-01-06T23:05:23.000000000", + "2019-01-06T23:06:34.000000000", + "2019-01-06T23:07:04.000000000", + "2019-01-06T23:08:23.000000000", + "2019-01-06T23:08:27.000000000", + "2019-01-06T23:09:16.000000000", + "2019-01-06T23:09:32.000000000", + "2019-01-06T23:11:09.000000000", + "2019-01-06T23:12:58.000000000", + "2019-01-06T23:12:59.000000000", + "2019-01-06T23:13:05.000000000", + "2019-01-06T23:13:53.000000000", + "2019-01-06T23:15:54.000000000", + "2019-01-06T23:17:45.000000000", + "2019-01-06T23:18:55.000000000", + "2019-01-06T23:20:29.000000000", + "2019-01-06T23:23:01.000000000", + "2019-01-06T23:25:19.000000000", + "2019-01-06T23:26:28.000000000", + "2019-01-06T23:28:20.000000000", + "2019-01-06T23:28:27.000000000", + "2019-01-06T23:28:38.000000000", + "2019-01-06T23:28:50.000000000", + "2019-01-06T23:30:11.000000000", + "2019-01-06T23:31:06.000000000", + "2019-01-06T23:31:25.000000000", + "2019-01-06T23:32:31.000000000", + "2019-01-06T23:32:58.000000000", + "2019-01-06T23:33:56.000000000", + "2019-01-06T23:35:13.000000000", + "2019-01-06T23:35:31.000000000", + "2019-01-06T23:35:49.000000000", + "2019-01-06T23:36:59.000000000", + "2019-01-06T23:38:05.000000000", + "2019-01-06T23:39:43.000000000", + "2019-01-06T23:41:28.000000000", + "2019-01-06T23:43:06.000000000", + "2019-01-06T23:43:20.000000000", + "2019-01-06T23:43:50.000000000", + "2019-01-06T23:46:45.000000000", + "2019-01-06T23:46:47.000000000", + "2019-01-06T23:48:15.000000000", + "2019-01-06T23:49:03.000000000", + "2019-01-06T23:50:08.000000000", + "2019-01-06T23:50:26.000000000", + "2019-01-06T23:50:53.000000000", + "2019-01-06T23:51:33.000000000", + "2019-01-06T23:53:35.000000000", + "2019-01-06T23:54:51.000000000", + "2019-01-06T23:55:28.000000000", + "2019-01-06T23:55:42.000000000", + "2019-01-06T23:58:24.000000000", + "2019-01-06T23:58:46.000000000", + "2019-01-06T23:59:45.000000000", + "2019-01-07T00:01:51.000000000", + "2019-01-07T00:01:54.000000000", + "2019-01-07T00:03:49.000000000", + "2019-01-07T00:04:12.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:43.000000000", + "2019-01-07T00:07:29.000000000", + "2019-01-07T00:08:58.000000000", + "2019-01-07T00:12:21.000000000", + "2019-01-07T00:13:34.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:14:20.000000000", + "2019-01-07T00:14:37.000000000", + "2019-01-07T00:18:44.000000000", + "2019-01-07T00:20:52.000000000", + "2019-01-07T00:21:09.000000000", + "2019-01-07T00:21:30.000000000", + "2019-01-07T00:22:11.000000000", + "2019-01-07T00:22:13.000000000", + "2019-01-07T00:24:17.000000000", + "2019-01-07T00:25:17.000000000", + "2019-01-07T00:25:39.000000000", + "2019-01-07T00:25:53.000000000", + "2019-01-07T00:26:28.000000000", + "2019-01-07T00:27:50.000000000", + "2019-01-07T00:28:13.000000000", + "2019-01-07T00:28:51.000000000", + "2019-01-07T00:29:13.000000000", + "2019-01-07T00:29:21.000000000", + "2019-01-07T00:29:29.000000000", + "2019-01-07T00:29:55.000000000", + "2019-01-07T00:29:56.000000000", + "2019-01-07T00:30:23.000000000", + "2019-01-07T00:31:03.000000000", + "2019-01-07T00:32:14.000000000", + "2019-01-07T00:33:49.000000000", + "2019-01-07T00:34:07.000000000", + "2019-01-07T00:34:32.000000000", + "2019-01-07T00:34:59.000000000", + "2019-01-07T00:38:57.000000000", + "2019-01-07T00:40:52.000000000", + "2019-01-07T00:42:08.000000000", + "2019-01-07T00:42:20.000000000", + "2019-01-07T00:42:25.000000000", + "2019-01-07T00:43:03.000000000", + "2019-01-07T00:44:29.000000000", + "2019-01-07T00:45:00.000000000", + "2019-01-07T00:45:52.000000000", + "2019-01-07T00:46:49.000000000", + "2019-01-07T00:48:31.000000000", + "2019-01-07T00:48:53.000000000", + "2019-01-07T00:52:13.000000000", + "2019-01-07T00:52:29.000000000", + "2019-01-07T00:54:10.000000000", + "2019-01-07T00:54:39.000000000", + "2019-01-07T00:54:53.000000000", + "2019-01-07T00:56:29.000000000", + "2019-01-07T00:56:55.000000000", + "2019-01-07T00:57:56.000000000", + "2019-01-07T00:58:21.000000000", + "2019-01-07T00:58:31.000000000", + "2019-01-07T00:58:56.000000000", + "2019-01-07T00:59:39.000000000", + "2019-01-07T01:00:32.000000000", + "2019-01-07T01:03:03.000000000", + "2019-01-07T01:03:40.000000000", + "2019-01-07T01:03:45.000000000", + "2019-01-07T01:04:14.000000000", + "2019-01-07T01:07:12.000000000", + "2019-01-07T01:08:31.000000000", + "2019-01-07T01:10:11.000000000", + "2019-01-07T01:10:14.000000000", + "2019-01-07T01:10:33.000000000", + "2019-01-07T01:11:06.000000000", + "2019-01-07T01:12:25.000000000", + "2019-01-07T01:12:42.000000000", + "2019-01-07T01:16:41.000000000", + "2019-01-07T01:18:09.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:20:24.000000000", + "2019-01-07T01:24:39.000000000", + "2019-01-07T01:24:43.000000000", + "2019-01-07T01:28:14.000000000", + "2019-01-07T01:28:40.000000000", + "2019-01-07T01:30:20.000000000", + "2019-01-07T01:30:39.000000000", + "2019-01-07T01:30:40.000000000", + "2019-01-07T01:31:12.000000000", + "2019-01-07T01:32:06.000000000", + "2019-01-07T01:32:09.000000000", + "2019-01-07T01:32:39.000000000", + "2019-01-07T01:33:45.000000000", + "2019-01-07T01:35:11.000000000", + "2019-01-07T01:35:54.000000000", + "2019-01-07T01:37:33.000000000", + "2019-01-07T01:38:35.000000000", + "2019-01-07T01:38:56.000000000", + "2019-01-07T01:43:49.000000000", + "2019-01-07T01:44:27.000000000", + "2019-01-07T01:46:50.000000000", + "2019-01-07T01:47:17.000000000", + "2019-01-07T01:48:42.000000000", + "2019-01-07T01:48:53.000000000", + "2019-01-07T01:51:40.000000000", + "2019-01-07T01:51:49.000000000", + "2019-01-07T01:52:58.000000000", + "2019-01-07T01:53:33.000000000", + "2019-01-07T01:54:08.000000000", + "2019-01-07T01:54:39.000000000", + "2019-01-07T01:54:43.000000000", + "2019-01-07T01:54:55.000000000", + "2019-01-07T01:57:39.000000000", + "2019-01-07T01:58:15.000000000", + "2019-01-07T02:00:42.000000000", + "2019-01-07T02:00:49.000000000", + "2019-01-07T02:01:51.000000000", + "2019-01-07T02:04:04.000000000", + "2019-01-07T02:05:19.000000000", + "2019-01-07T02:06:34.000000000", + "2019-01-07T02:07:12.000000000", + "2019-01-07T02:07:37.000000000", + "2019-01-07T02:08:53.000000000", + "2019-01-07T02:11:13.000000000", + "2019-01-07T02:11:41.000000000", + "2019-01-07T02:11:53.000000000", + "2019-01-07T02:12:03.000000000", + "2019-01-07T02:12:16.000000000", + "2019-01-07T02:12:27.000000000", + "2019-01-07T02:13:23.000000000", + "2019-01-07T02:13:33.000000000", + "2019-01-07T02:13:55.000000000", + "2019-01-07T02:15:28.000000000", + "2019-01-07T02:16:19.000000000", + "2019-01-07T02:16:24.000000000", + "2019-01-07T02:17:03.000000000", + "2019-01-07T02:21:42.000000000", + "2019-01-07T02:21:54.000000000", + "2019-01-07T02:23:06.000000000", + "2019-01-07T02:23:18.000000000", + "2019-01-07T02:24:02.000000000", + "2019-01-07T02:24:39.000000000", + "2019-01-07T02:25:12.000000000", + "2019-01-07T02:25:28.000000000", + "2019-01-07T02:25:36.000000000", + "2019-01-07T02:26:34.000000000", + "2019-01-07T02:27:29.000000000", + "2019-01-07T02:27:30.000000000", + "2019-01-07T02:28:02.000000000", + "2019-01-07T02:28:32.000000000", + "2019-01-07T02:28:55.000000000", + "2019-01-07T02:29:00.000000000", + "2019-01-07T02:29:10.000000000", + "2019-01-07T02:30:18.000000000", + "2019-01-07T02:31:06.000000000", + "2019-01-07T02:34:29.000000000", + "2019-01-07T02:35:01.000000000", + "2019-01-07T02:35:51.000000000", + "2019-01-07T02:36:10.000000000", + "2019-01-07T02:36:55.000000000", + "2019-01-07T02:37:48.000000000", + "2019-01-07T02:38:13.000000000", + "2019-01-07T02:38:50.000000000", + "2019-01-07T02:39:21.000000000", + "2019-01-07T02:40:55.000000000", + "2019-01-07T02:41:09.000000000", + "2019-01-07T02:41:45.000000000", + "2019-01-07T02:42:06.000000000", + "2019-01-07T02:42:34.000000000", + "2019-01-07T02:43:03.000000000", + "2019-01-07T02:44:15.000000000", + "2019-01-07T02:45:15.000000000", + "2019-01-07T02:45:35.000000000", + "2019-01-07T02:45:37.000000000", + "2019-01-07T02:47:10.000000000", + "2019-01-07T02:52:09.000000000", + "2019-01-07T02:52:49.000000000", + "2019-01-07T02:55:14.000000000", + "2019-01-07T02:57:10.000000000", + "2019-01-07T02:58:26.000000000", + "2019-01-07T02:58:40.000000000", + "2019-01-07T03:00:43.000000000", + "2019-01-07T03:02:44.000000000", + "2019-01-07T03:02:57.000000000", + "2019-01-07T03:03:03.000000000", + "2019-01-07T03:03:41.000000000", + "2019-01-07T03:05:27.000000000", + "2019-01-07T03:05:51.000000000", + "2019-01-07T03:06:00.000000000", + "2019-01-07T03:06:51.000000000", + "2019-01-07T03:08:20.000000000", + "2019-01-07T03:08:55.000000000", + "2019-01-07T03:09:32.000000000", + "2019-01-07T03:11:33.000000000", + "2019-01-07T03:12:35.000000000", + "2019-01-07T03:13:24.000000000", + "2019-01-07T03:13:43.000000000", + "2019-01-07T03:16:48.000000000", + "2019-01-07T03:18:41.000000000", + "2019-01-07T03:18:43.000000000", + "2019-01-07T03:22:31.000000000", + "2019-01-07T03:23:53.000000000", + "2019-01-07T03:26:29.000000000", + "2019-01-07T03:26:34.000000000", + "2019-01-07T03:26:50.000000000", + "2019-01-07T03:27:20.000000000", + "2019-01-07T03:28:53.000000000", + "2019-01-07T03:30:12.000000000", + "2019-01-07T03:33:26.000000000", + "2019-01-07T03:33:51.000000000", + "2019-01-07T03:34:17.000000000", + "2019-01-07T03:34:32.000000000", + "2019-01-07T03:34:46.000000000", + "2019-01-07T03:35:10.000000000", + "2019-01-07T03:35:15.000000000", + "2019-01-07T03:36:25.000000000", + "2019-01-07T03:38:12.000000000", + "2019-01-07T03:42:38.000000000", + "2019-01-07T03:44:11.000000000", + "2019-01-07T03:45:09.000000000", + "2019-01-07T03:46:10.000000000", + "2019-01-07T03:46:38.000000000", + "2019-01-07T03:47:32.000000000", + "2019-01-07T03:48:02.000000000", + "2019-01-07T03:50:59.000000000", + "2019-01-07T03:51:10.000000000", + "2019-01-07T03:51:35.000000000", + "2019-01-07T03:52:27.000000000", + "2019-01-07T03:52:50.000000000", + "2019-01-07T03:54:07.000000000", + "2019-01-07T03:55:07.000000000", + "2019-01-07T03:55:44.000000000", + "2019-01-07T03:56:06.000000000", + "2019-01-07T03:56:07.000000000", + "2019-01-07T03:56:52.000000000", + "2019-01-07T03:57:45.000000000", + "2019-01-07T03:59:56.000000000", + "2019-01-07T04:00:21.000000000", + "2019-01-07T04:03:49.000000000", + "2019-01-07T04:04:05.000000000", + "2019-01-07T04:05:57.000000000", + "2019-01-07T04:07:17.000000000", + "2019-01-07T04:08:30.000000000", + "2019-01-07T04:10:43.000000000", + "2019-01-07T04:11:28.000000000", + "2019-01-07T04:12:12.000000000", + "2019-01-07T04:12:18.000000000", + "2019-01-07T04:12:37.000000000", + "2019-01-07T04:13:57.000000000", + "2019-01-07T04:16:21.000000000", + "2019-01-07T04:18:14.000000000", + "2019-01-07T04:19:00.000000000", + "2019-01-07T04:19:12.000000000", + "2019-01-07T04:24:10.000000000", + "2019-01-07T04:25:04.000000000", + "2019-01-07T04:26:42.000000000", + "2019-01-07T04:28:03.000000000", + "2019-01-07T04:31:09.000000000", + "2019-01-07T04:34:55.000000000", + "2019-01-07T04:35:19.000000000", + "2019-01-07T04:36:03.000000000", + "2019-01-07T04:36:48.000000000", + "2019-01-07T04:38:43.000000000", + "2019-01-07T04:41:25.000000000", + "2019-01-07T04:41:47.000000000", + "2019-01-07T04:41:55.000000000", + "2019-01-07T04:42:22.000000000", + "2019-01-07T04:42:24.000000000", + "2019-01-07T04:42:41.000000000", + "2019-01-07T04:44:16.000000000", + "2019-01-07T04:44:29.000000000", + "2019-01-07T04:45:01.000000000", + "2019-01-07T04:45:43.000000000", + "2019-01-07T04:46:07.000000000", + "2019-01-07T04:46:27.000000000", + "2019-01-07T04:46:36.000000000", + "2019-01-07T04:50:55.000000000", + "2019-01-07T04:52:06.000000000", + "2019-01-07T04:53:14.000000000", + "2019-01-07T04:53:23.000000000", + "2019-01-07T04:53:40.000000000", + "2019-01-07T04:54:49.000000000", + "2019-01-07T04:56:04.000000000", + "2019-01-07T04:56:59.000000000", + "2019-01-07T05:01:21.000000000", + "2019-01-07T05:01:22.000000000", + "2019-01-07T05:03:16.000000000", + "2019-01-07T05:03:17.000000000", + "2019-01-07T05:04:23.000000000", + "2019-01-07T05:06:16.000000000", + "2019-01-07T05:07:51.000000000", + "2019-01-07T05:08:32.000000000", + "2019-01-07T05:10:21.000000000", + "2019-01-07T05:11:07.000000000", + "2019-01-07T05:11:22.000000000", + "2019-01-07T05:17:10.000000000", + "2019-01-07T05:18:20.000000000", + "2019-01-07T05:20:47.000000000", + "2019-01-07T05:20:51.000000000", + "2019-01-07T05:20:57.000000000", + "2019-01-07T05:20:58.000000000", + "2019-01-07T05:22:02.000000000", + "2019-01-07T05:22:04.000000000", + "2019-01-07T05:23:33.000000000", + "2019-01-07T05:24:31.000000000", + "2019-01-07T05:25:16.000000000", + "2019-01-07T05:25:53.000000000", + "2019-01-07T05:26:47.000000000", + "2019-01-07T05:27:11.000000000", + "2019-01-07T05:28:05.000000000", + "2019-01-07T05:28:18.000000000", + "2019-01-07T05:29:11.000000000", + "2019-01-07T05:29:30.000000000", + "2019-01-07T05:30:08.000000000", + "2019-01-07T05:31:20.000000000", + "2019-01-07T05:33:44.000000000", + "2019-01-07T05:34:00.000000000", + "2019-01-07T05:34:01.000000000", + "2019-01-07T05:35:17.000000000", + "2019-01-07T05:35:19.000000000", + "2019-01-07T05:35:48.000000000", + "2019-01-07T05:36:34.000000000", + "2019-01-07T05:39:22.000000000", + "2019-01-07T05:39:50.000000000", + "2019-01-07T05:40:26.000000000", + "2019-01-07T05:41:40.000000000", + "2019-01-07T05:42:43.000000000", + "2019-01-07T05:42:49.000000000", + "2019-01-07T05:42:54.000000000", + "2019-01-07T05:43:23.000000000", + "2019-01-07T05:48:37.000000000", + "2019-01-07T05:49:06.000000000", + "2019-01-07T05:56:56.000000000", + "2019-01-07T05:56:57.000000000", + "2019-01-07T05:57:24.000000000", + "2019-01-07T05:58:15.000000000", + "2019-01-07T05:58:50.000000000", + "2019-01-07T05:59:24.000000000", + "2019-01-07T06:00:29.000000000", + "2019-01-07T06:01:26.000000000", + "2019-01-07T06:01:45.000000000", + "2019-01-07T06:02:11.000000000", + "2019-01-07T06:02:16.000000000", + "2019-01-07T06:07:32.000000000", + "2019-01-07T06:08:18.000000000", + "2019-01-07T06:09:25.000000000", + "2019-01-07T06:10:05.000000000", + "2019-01-07T06:10:51.000000000", + "2019-01-07T06:11:02.000000000", + "2019-01-07T06:11:55.000000000", + "2019-01-07T06:13:52.000000000", + "2019-01-07T06:16:34.000000000", + "2019-01-07T06:16:41.000000000", + "2019-01-07T06:17:23.000000000", + "2019-01-07T06:18:17.000000000", + "2019-01-07T06:19:03.000000000", + "2019-01-07T06:22:08.000000000", + "2019-01-07T06:23:14.000000000", + "2019-01-07T06:23:29.000000000", + "2019-01-07T06:24:47.000000000", + "2019-01-07T06:27:30.000000000", + "2019-01-07T06:27:43.000000000", + "2019-01-07T06:28:29.000000000", + "2019-01-07T06:29:41.000000000", + "2019-01-07T06:30:46.000000000", + "2019-01-07T06:31:24.000000000", + "2019-01-07T06:33:41.000000000", + "2019-01-07T06:35:58.000000000", + "2019-01-07T06:37:37.000000000", + "2019-01-07T06:37:42.000000000", + "2019-01-07T06:38:24.000000000", + "2019-01-07T06:39:12.000000000", + "2019-01-07T06:42:17.000000000", + "2019-01-07T06:42:24.000000000", + "2019-01-07T06:44:52.000000000", + "2019-01-07T06:45:17.000000000", + "2019-01-07T06:46:21.000000000", + "2019-01-07T06:48:06.000000000", + "2019-01-07T06:48:10.000000000", + "2019-01-07T06:48:11.000000000", + "2019-01-07T06:48:36.000000000", + "2019-01-07T06:50:04.000000000", + "2019-01-07T06:50:48.000000000", + "2019-01-07T06:52:46.000000000", + "2019-01-07T06:52:51.000000000", + "2019-01-07T06:52:59.000000000", + "2019-01-07T06:54:19.000000000", + "2019-01-07T06:55:09.000000000", + "2019-01-07T06:56:21.000000000", + "2019-01-07T06:57:13.000000000", + "2019-01-07T06:59:08.000000000", + "2019-01-07T06:59:34.000000000", + "2019-01-07T07:00:16.000000000", + "2019-01-07T07:00:39.000000000", + "2019-01-07T07:01:19.000000000", + "2019-01-07T07:01:57.000000000", + "2019-01-07T07:02:31.000000000", + "2019-01-07T07:02:34.000000000", + "2019-01-07T07:02:46.000000000", + "2019-01-07T07:02:53.000000000", + "2019-01-07T07:03:22.000000000", + "2019-01-07T07:04:06.000000000", + "2019-01-07T07:04:32.000000000", + "2019-01-07T07:05:15.000000000", + "2019-01-07T07:05:45.000000000", + "2019-01-07T07:06:36.000000000", + "2019-01-07T07:07:33.000000000", + "2019-01-07T07:07:55.000000000", + "2019-01-07T07:08:28.000000000", + "2019-01-07T07:08:56.000000000", + "2019-01-07T07:09:12.000000000", + "2019-01-07T07:10:29.000000000", + "2019-01-07T07:13:26.000000000", + "2019-01-07T07:13:40.000000000", + "2019-01-07T07:15:15.000000000", + "2019-01-07T07:15:42.000000000", + "2019-01-07T07:17:27.000000000", + "2019-01-07T07:17:42.000000000", + "2019-01-07T07:17:52.000000000", + "2019-01-07T07:17:57.000000000", + "2019-01-07T07:18:46.000000000", + "2019-01-07T07:19:00.000000000", + "2019-01-07T07:19:18.000000000", + "2019-01-07T07:19:50.000000000", + "2019-01-07T07:19:54.000000000", + "2019-01-07T07:19:59.000000000", + "2019-01-07T07:21:27.000000000", + "2019-01-07T07:22:13.000000000", + "2019-01-07T07:23:19.000000000", + "2019-01-07T07:23:45.000000000", + "2019-01-07T07:24:41.000000000", + "2019-01-07T07:25:00.000000000", + "2019-01-07T07:25:29.000000000", + "2019-01-07T07:28:08.000000000", + "2019-01-07T07:29:08.000000000", + "2019-01-07T07:29:18.000000000", + "2019-01-07T07:30:06.000000000", + "2019-01-07T07:30:28.000000000", + "2019-01-07T07:32:45.000000000", + "2019-01-07T07:33:21.000000000", + "2019-01-07T07:33:56.000000000", + "2019-01-07T07:34:20.000000000", + "2019-01-07T07:34:22.000000000", + "2019-01-07T07:34:43.000000000", + "2019-01-07T07:35:34.000000000", + "2019-01-07T07:39:25.000000000", + "2019-01-07T07:39:32.000000000", + "2019-01-07T07:40:17.000000000", + "2019-01-07T07:42:39.000000000", + "2019-01-07T07:44:54.000000000", + "2019-01-07T07:45:03.000000000", + "2019-01-07T07:49:30.000000000", + "2019-01-07T07:50:23.000000000", + "2019-01-07T07:51:10.000000000", + "2019-01-07T07:53:41.000000000", + "2019-01-07T07:54:52.000000000", + "2019-01-07T07:54:57.000000000", + "2019-01-07T07:57:42.000000000", + "2019-01-07T07:58:18.000000000", + "2019-01-07T07:58:31.000000000", + "2019-01-07T07:58:59.000000000", + "2019-01-07T08:01:03.000000000", + "2019-01-07T08:03:52.000000000", + "2019-01-07T08:04:40.000000000", + "2019-01-07T08:05:01.000000000", + "2019-01-07T08:05:51.000000000", + "2019-01-07T08:06:44.000000000", + "2019-01-07T08:07:09.000000000", + "2019-01-07T08:09:43.000000000", + "2019-01-07T08:09:58.000000000", + "2019-01-07T08:11:19.000000000", + "2019-01-07T08:11:48.000000000", + "2019-01-07T08:13:02.000000000", + "2019-01-07T08:15:25.000000000", + "2019-01-07T08:15:27.000000000", + "2019-01-07T08:15:33.000000000", + "2019-01-07T08:16:56.000000000", + "2019-01-07T08:17:29.000000000", + "2019-01-07T08:17:59.000000000", + "2019-01-07T08:19:06.000000000", + "2019-01-07T08:20:05.000000000", + "2019-01-07T08:21:58.000000000", + "2019-01-07T08:22:41.000000000", + "2019-01-07T08:26:02.000000000", + "2019-01-07T08:28:37.000000000", + "2019-01-07T08:29:42.000000000", + "2019-01-07T08:30:15.000000000", + "2019-01-07T08:31:13.000000000", + "2019-01-07T08:31:30.000000000", + "2019-01-07T08:31:45.000000000", + "2019-01-07T08:34:08.000000000", + "2019-01-07T08:34:49.000000000", + "2019-01-07T08:34:58.000000000", + "2019-01-07T08:35:29.000000000", + "2019-01-07T08:36:29.000000000", + "2019-01-07T08:37:00.000000000", + "2019-01-07T08:39:30.000000000", + "2019-01-07T08:41:16.000000000", + "2019-01-07T08:41:23.000000000", + "2019-01-07T08:42:37.000000000", + "2019-01-07T08:43:20.000000000", + "2019-01-07T08:43:26.000000000", + "2019-01-07T08:43:50.000000000", + "2019-01-07T08:45:21.000000000", + "2019-01-07T08:46:58.000000000", + "2019-01-07T08:47:59.000000000", + "2019-01-07T08:48:33.000000000", + "2019-01-07T08:49:40.000000000", + "2019-01-07T08:54:16.000000000", + "2019-01-07T08:54:37.000000000", + "2019-01-07T08:56:09.000000000", + "2019-01-07T08:56:12.000000000", + "2019-01-07T09:00:08.000000000", + "2019-01-07T09:00:34.000000000", + "2019-01-07T09:00:48.000000000", + "2019-01-07T09:00:57.000000000", + "2019-01-07T09:01:08.000000000", + "2019-01-07T09:01:30.000000000", + "2019-01-07T09:01:46.000000000", + "2019-01-07T09:01:59.000000000", + "2019-01-07T09:02:06.000000000", + "2019-01-07T09:02:46.000000000", + "2019-01-07T09:02:52.000000000", + "2019-01-07T09:03:11.000000000", + "2019-01-07T09:04:24.000000000", + "2019-01-07T09:04:44.000000000", + "2019-01-07T09:06:08.000000000", + "2019-01-07T09:06:16.000000000", + "2019-01-07T09:06:54.000000000", + "2019-01-07T09:09:28.000000000", + "2019-01-07T09:09:58.000000000", + "2019-01-07T09:10:21.000000000", + "2019-01-07T09:10:59.000000000", + "2019-01-07T09:12:27.000000000", + "2019-01-07T09:12:50.000000000", + "2019-01-07T09:13:04.000000000", + "2019-01-07T09:14:27.000000000", + "2019-01-07T09:14:34.000000000", + "2019-01-07T09:17:02.000000000", + "2019-01-07T09:17:30.000000000", + "2019-01-07T09:18:30.000000000", + "2019-01-07T09:18:37.000000000", + "2019-01-07T09:20:12.000000000", + "2019-01-07T09:20:25.000000000", + "2019-01-07T09:20:46.000000000", + "2019-01-07T09:22:10.000000000", + "2019-01-07T09:22:22.000000000", + "2019-01-07T09:23:10.000000000", + "2019-01-07T09:25:17.000000000", + "2019-01-07T09:25:29.000000000", + "2019-01-07T09:25:34.000000000", + "2019-01-07T09:26:24.000000000", + "2019-01-07T09:27:29.000000000", + "2019-01-07T09:28:32.000000000", + "2019-01-07T09:29:52.000000000", + "2019-01-07T09:30:51.000000000", + "2019-01-07T09:32:08.000000000", + "2019-01-07T09:33:07.000000000", + "2019-01-07T09:33:49.000000000", + "2019-01-07T09:33:55.000000000", + "2019-01-07T09:34:31.000000000", + "2019-01-07T09:36:46.000000000", + "2019-01-07T09:37:08.000000000", + "2019-01-07T09:37:18.000000000", + "2019-01-07T09:41:47.000000000", + "2019-01-07T09:44:14.000000000", + "2019-01-07T09:44:35.000000000", + "2019-01-07T09:45:29.000000000", + "2019-01-07T09:46:47.000000000", + "2019-01-07T09:47:55.000000000", + "2019-01-07T09:48:36.000000000", + "2019-01-07T09:49:57.000000000", + "2019-01-07T09:50:43.000000000", + "2019-01-07T09:55:13.000000000", + "2019-01-07T09:55:41.000000000", + "2019-01-07T09:56:33.000000000", + "2019-01-07T09:56:39.000000000", + "2019-01-07T09:56:48.000000000", + "2019-01-07T09:58:14.000000000", + "2019-01-07T09:58:28.000000000", + "2019-01-07T09:59:38.000000000", + "2019-01-07T10:01:23.000000000", + "2019-01-07T10:01:38.000000000", + "2019-01-07T10:01:48.000000000", + "2019-01-07T10:05:22.000000000", + "2019-01-07T10:07:15.000000000", + "2019-01-07T10:07:21.000000000", + "2019-01-07T10:12:37.000000000", + "2019-01-07T10:15:16.000000000", + "2019-01-07T10:15:50.000000000", + "2019-01-07T10:15:52.000000000", + "2019-01-07T10:16:52.000000000", + "2019-01-07T10:18:25.000000000", + "2019-01-07T10:19:32.000000000", + "2019-01-07T10:20:13.000000000", + "2019-01-07T10:23:19.000000000", + "2019-01-07T10:23:38.000000000", + "2019-01-07T10:24:50.000000000", + "2019-01-07T10:25:41.000000000", + "2019-01-07T10:26:32.000000000", + "2019-01-07T10:28:06.000000000", + "2019-01-07T10:28:11.000000000", + "2019-01-07T10:29:17.000000000", + "2019-01-07T10:30:03.000000000", + "2019-01-07T10:30:26.000000000", + "2019-01-07T10:30:36.000000000", + "2019-01-07T10:31:30.000000000", + "2019-01-07T10:31:52.000000000", + "2019-01-07T10:31:53.000000000", + "2019-01-07T10:32:08.000000000", + "2019-01-07T10:33:34.000000000", + "2019-01-07T10:35:15.000000000", + "2019-01-07T10:35:53.000000000", + "2019-01-07T10:36:00.000000000", + "2019-01-07T10:36:46.000000000", + "2019-01-07T10:36:58.000000000", + "2019-01-07T10:38:52.000000000", + "2019-01-07T10:40:07.000000000", + "2019-01-07T10:43:12.000000000", + "2019-01-07T10:43:13.000000000", + "2019-01-07T10:45:07.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:46:47.000000000", + "2019-01-07T10:47:43.000000000", + "2019-01-07T10:47:46.000000000", + "2019-01-07T10:49:28.000000000", + "2019-01-07T10:49:39.000000000", + "2019-01-07T10:50:58.000000000", + "2019-01-07T10:52:57.000000000", + "2019-01-07T10:53:15.000000000", + "2019-01-07T10:54:23.000000000", + "2019-01-07T10:54:30.000000000", + "2019-01-07T10:54:56.000000000", + "2019-01-07T10:54:59.000000000", + "2019-01-07T10:56:17.000000000", + "2019-01-07T10:56:40.000000000", + "2019-01-07T10:57:41.000000000", + "2019-01-07T10:58:07.000000000", + "2019-01-07T10:58:09.000000000", + "2019-01-07T10:58:17.000000000", + "2019-01-07T10:58:29.000000000", + "2019-01-07T11:00:31.000000000", + "2019-01-07T11:02:52.000000000", + "2019-01-07T11:03:56.000000000", + "2019-01-07T11:04:09.000000000", + "2019-01-07T11:04:15.000000000", + "2019-01-07T11:04:28.000000000", + "2019-01-07T11:06:37.000000000", + "2019-01-07T11:07:31.000000000", + "2019-01-07T11:11:05.000000000", + "2019-01-07T11:11:37.000000000", + "2019-01-07T11:13:27.000000000", + "2019-01-07T11:13:40.000000000", + "2019-01-07T11:13:54.000000000", + "2019-01-07T11:14:59.000000000", + "2019-01-07T11:16:48.000000000", + "2019-01-07T11:18:00.000000000", + "2019-01-07T11:18:20.000000000", + "2019-01-07T11:19:27.000000000", + "2019-01-07T11:20:11.000000000", + "2019-01-07T11:20:18.000000000", + "2019-01-07T11:22:19.000000000", + "2019-01-07T11:22:24.000000000", + "2019-01-07T11:22:46.000000000", + "2019-01-07T11:23:28.000000000", + "2019-01-07T11:23:30.000000000", + "2019-01-07T11:25:02.000000000", + "2019-01-07T11:25:36.000000000", + "2019-01-07T11:26:23.000000000", + "2019-01-07T11:27:52.000000000", + "2019-01-07T11:28:15.000000000", + "2019-01-07T11:30:02.000000000", + "2019-01-07T11:30:06.000000000", + "2019-01-07T11:30:28.000000000", + "2019-01-07T11:30:45.000000000", + "2019-01-07T11:30:55.000000000", + "2019-01-07T11:32:28.000000000", + "2019-01-07T11:32:45.000000000", + "2019-01-07T11:33:31.000000000", + "2019-01-07T11:36:10.000000000", + "2019-01-07T11:36:16.000000000", + "2019-01-07T11:37:20.000000000", + "2019-01-07T11:38:17.000000000", + "2019-01-07T11:40:25.000000000", + "2019-01-07T11:40:42.000000000", + "2019-01-07T11:43:30.000000000", + "2019-01-07T11:43:51.000000000", + "2019-01-07T11:45:09.000000000", + "2019-01-07T11:45:58.000000000", + "2019-01-07T11:46:13.000000000", + "2019-01-07T11:46:58.000000000", + "2019-01-07T11:47:05.000000000", + "2019-01-07T11:47:59.000000000", + "2019-01-07T11:48:13.000000000", + "2019-01-07T11:48:19.000000000", + "2019-01-07T11:49:55.000000000", + "2019-01-07T11:51:45.000000000", + "2019-01-07T11:52:39.000000000", + "2019-01-07T11:53:10.000000000", + "2019-01-07T11:53:20.000000000", + "2019-01-07T11:54:12.000000000", + "2019-01-07T11:55:35.000000000", + "2019-01-07T11:56:47.000000000", + "2019-01-07T11:57:09.000000000", + "2019-01-07T11:57:44.000000000", + "2019-01-07T11:58:36.000000000", + "2019-01-07T11:59:21.000000000", + "2019-01-07T12:02:52.000000000", + "2019-01-07T12:03:19.000000000", + "2019-01-07T12:04:02.000000000", + "2019-01-07T12:04:20.000000000", + "2019-01-07T12:04:34.000000000", + "2019-01-07T12:06:42.000000000", + "2019-01-07T12:07:19.000000000", + "2019-01-07T12:08:44.000000000", + "2019-01-07T12:09:18.000000000", + "2019-01-07T12:09:21.000000000", + "2019-01-07T12:09:39.000000000", + "2019-01-07T12:11:29.000000000", + "2019-01-07T12:12:21.000000000", + "2019-01-07T12:13:07.000000000", + "2019-01-07T12:13:30.000000000", + "2019-01-07T12:13:33.000000000", + "2019-01-07T12:14:13.000000000", + "2019-01-07T12:15:12.000000000", + "2019-01-07T12:16:37.000000000", + "2019-01-07T12:16:49.000000000", + "2019-01-07T12:18:00.000000000", + "2019-01-07T12:19:40.000000000", + "2019-01-07T12:20:23.000000000", + "2019-01-07T12:21:48.000000000", + "2019-01-07T12:22:11.000000000", + "2019-01-07T12:24:40.000000000", + "2019-01-07T12:25:00.000000000", + "2019-01-07T12:26:26.000000000", + "2019-01-07T12:26:59.000000000", + "2019-01-07T12:28:26.000000000", + "2019-01-07T12:28:50.000000000", + "2019-01-07T12:28:52.000000000", + "2019-01-07T12:29:23.000000000", + "2019-01-07T12:29:33.000000000", + "2019-01-07T12:30:17.000000000", + "2019-01-07T12:31:21.000000000", + "2019-01-07T12:32:40.000000000", + "2019-01-07T12:34:21.000000000", + "2019-01-07T12:34:38.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:37:16.000000000", + "2019-01-07T12:37:20.000000000", + "2019-01-07T12:37:23.000000000", + "2019-01-07T12:38:07.000000000", + "2019-01-07T12:39:48.000000000", + "2019-01-07T12:40:26.000000000", + "2019-01-07T12:41:30.000000000", + "2019-01-07T12:41:39.000000000", + "2019-01-07T12:41:43.000000000", + "2019-01-07T12:41:53.000000000", + "2019-01-07T12:43:40.000000000", + "2019-01-07T12:46:37.000000000", + "2019-01-07T12:48:30.000000000", + "2019-01-07T12:49:43.000000000", + "2019-01-07T12:51:14.000000000", + "2019-01-07T12:53:05.000000000", + "2019-01-07T12:53:14.000000000", + "2019-01-07T12:53:21.000000000", + "2019-01-07T12:53:37.000000000", + "2019-01-07T12:54:18.000000000", + "2019-01-07T12:54:56.000000000", + "2019-01-07T12:55:43.000000000", + "2019-01-07T12:56:47.000000000", + "2019-01-07T12:57:02.000000000", + "2019-01-07T12:57:17.000000000", + "2019-01-07T12:57:29.000000000", + "2019-01-07T12:57:36.000000000", + "2019-01-07T12:57:49.000000000", + "2019-01-07T12:58:38.000000000", + "2019-01-07T12:58:54.000000000", + "2019-01-07T13:00:51.000000000", + "2019-01-07T13:04:20.000000000", + "2019-01-07T13:05:15.000000000", + "2019-01-07T13:05:17.000000000", + "2019-01-07T13:05:41.000000000", + "2019-01-07T13:07:49.000000000", + "2019-01-07T13:08:20.000000000", + "2019-01-07T13:10:13.000000000", + "2019-01-07T13:11:02.000000000", + "2019-01-07T13:11:53.000000000", + "2019-01-07T13:14:17.000000000", + "2019-01-07T13:15:10.000000000", + "2019-01-07T13:15:17.000000000", + "2019-01-07T13:17:04.000000000", + "2019-01-07T13:18:12.000000000", + "2019-01-07T13:19:34.000000000", + "2019-01-07T13:20:59.000000000", + "2019-01-07T13:22:38.000000000", + "2019-01-07T13:23:31.000000000", + "2019-01-07T13:25:14.000000000", + "2019-01-07T13:25:58.000000000", + "2019-01-07T13:26:10.000000000", + "2019-01-07T13:26:49.000000000", + "2019-01-07T13:28:35.000000000", + "2019-01-07T13:28:46.000000000", + "2019-01-07T13:28:48.000000000", + "2019-01-07T13:30:18.000000000", + "2019-01-07T13:31:46.000000000", + "2019-01-07T13:32:06.000000000", + "2019-01-07T13:32:10.000000000", + "2019-01-07T13:32:12.000000000", + "2019-01-07T13:32:17.000000000", + "2019-01-07T13:34:46.000000000", + "2019-01-07T13:36:02.000000000", + "2019-01-07T13:36:48.000000000", + "2019-01-07T13:37:05.000000000", + "2019-01-07T13:38:07.000000000", + "2019-01-07T13:38:38.000000000", + "2019-01-07T13:40:21.000000000", + "2019-01-07T13:40:28.000000000", + "2019-01-07T13:42:11.000000000", + "2019-01-07T13:42:59.000000000", + "2019-01-07T13:46:11.000000000", + "2019-01-07T13:47:46.000000000", + "2019-01-07T13:47:49.000000000", + "2019-01-07T13:48:38.000000000", + "2019-01-07T13:49:23.000000000", + "2019-01-07T13:50:32.000000000", + "2019-01-07T13:50:36.000000000", + "2019-01-07T13:53:32.000000000", + "2019-01-07T13:55:19.000000000", + "2019-01-07T13:58:09.000000000", + "2019-01-07T14:03:02.000000000", + "2019-01-07T14:04:28.000000000", + "2019-01-07T14:05:13.000000000", + "2019-01-07T14:07:51.000000000", + "2019-01-07T14:10:12.000000000", + "2019-01-07T14:14:28.000000000", + "2019-01-07T14:16:06.000000000", + "2019-01-07T14:17:54.000000000", + "2019-01-07T14:18:35.000000000", + "2019-01-07T14:19:19.000000000", + "2019-01-07T14:20:22.000000000", + "2019-01-07T14:20:31.000000000", + "2019-01-07T14:21:09.000000000", + "2019-01-07T14:21:41.000000000", + "2019-01-07T14:22:49.000000000", + "2019-01-07T14:22:55.000000000", + "2019-01-07T14:23:06.000000000", + "2019-01-07T14:23:50.000000000", + "2019-01-07T14:25:47.000000000", + "2019-01-07T14:26:25.000000000", + "2019-01-07T14:26:31.000000000", + "2019-01-07T14:28:13.000000000", + "2019-01-07T14:29:32.000000000", + "2019-01-07T14:29:59.000000000", + "2019-01-07T14:30:03.000000000", + "2019-01-07T14:30:52.000000000", + "2019-01-07T14:31:01.000000000", + "2019-01-07T14:31:52.000000000", + "2019-01-07T14:32:53.000000000", + "2019-01-07T14:35:39.000000000", + "2019-01-07T14:36:39.000000000", + "2019-01-07T14:37:06.000000000", + "2019-01-07T14:38:05.000000000", + "2019-01-07T14:39:51.000000000", + "2019-01-07T14:40:37.000000000", + "2019-01-07T14:41:41.000000000", + "2019-01-07T14:43:55.000000000", + "2019-01-07T14:45:19.000000000", + "2019-01-07T14:45:42.000000000", + "2019-01-07T14:46:40.000000000", + "2019-01-07T14:51:08.000000000", + "2019-01-07T14:52:27.000000000", + "2019-01-07T14:52:46.000000000", + "2019-01-07T14:54:51.000000000", + "2019-01-07T14:56:59.000000000", + "2019-01-07T14:57:06.000000000", + "2019-01-07T14:59:46.000000000", + "2019-01-07T15:02:39.000000000", + "2019-01-07T15:02:40.000000000", + "2019-01-07T15:03:24.000000000", + "2019-01-07T15:06:10.000000000", + "2019-01-07T15:07:31.000000000", + "2019-01-07T15:07:47.000000000", + "2019-01-07T15:08:46.000000000", + "2019-01-07T15:08:51.000000000", + "2019-01-07T15:09:09.000000000", + "2019-01-07T15:10:13.000000000", + "2019-01-07T15:10:20.000000000", + "2019-01-07T15:10:47.000000000", + "2019-01-07T15:12:36.000000000", + "2019-01-07T15:12:54.000000000", + "2019-01-07T15:13:44.000000000", + "2019-01-07T15:13:50.000000000", + "2019-01-07T15:16:59.000000000", + "2019-01-07T15:17:20.000000000", + "2019-01-07T15:17:33.000000000", + "2019-01-07T15:17:53.000000000", + "2019-01-07T15:18:33.000000000", + "2019-01-07T15:18:47.000000000", + "2019-01-07T15:19:37.000000000", + "2019-01-07T15:19:56.000000000", + "2019-01-07T15:20:14.000000000", + "2019-01-07T15:20:47.000000000", + "2019-01-07T15:21:32.000000000", + "2019-01-07T15:22:29.000000000", + "2019-01-07T15:22:31.000000000", + "2019-01-07T15:23:04.000000000", + "2019-01-07T15:23:06.000000000", + "2019-01-07T15:23:10.000000000", + "2019-01-07T15:23:38.000000000", + "2019-01-07T15:24:16.000000000", + "2019-01-07T15:25:52.000000000", + "2019-01-07T15:26:26.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:18.000000000", + "2019-01-07T15:27:29.000000000", + "2019-01-07T15:28:42.000000000", + "2019-01-07T15:28:52.000000000", + "2019-01-07T15:29:37.000000000", + "2019-01-07T15:29:42.000000000", + "2019-01-07T15:30:09.000000000", + "2019-01-07T15:30:54.000000000", + "2019-01-07T15:32:15.000000000", + "2019-01-07T15:32:21.000000000", + "2019-01-07T15:32:24.000000000", + "2019-01-07T15:32:48.000000000", + "2019-01-07T15:33:31.000000000", + "2019-01-07T15:34:32.000000000", + "2019-01-07T15:34:36.000000000", + "2019-01-07T15:34:50.000000000", + "2019-01-07T15:35:15.000000000", + "2019-01-07T15:35:46.000000000", + "2019-01-07T15:36:18.000000000", + "2019-01-07T15:38:40.000000000", + "2019-01-07T15:39:20.000000000", + "2019-01-07T15:40:42.000000000", + "2019-01-07T15:42:50.000000000", + "2019-01-07T15:43:02.000000000", + "2019-01-07T15:43:58.000000000", + "2019-01-07T15:45:34.000000000", + "2019-01-07T15:48:03.000000000", + "2019-01-07T15:49:01.000000000", + "2019-01-07T15:50:21.000000000", + "2019-01-07T15:51:06.000000000", + "2019-01-07T15:52:46.000000000", + "2019-01-07T15:52:56.000000000", + "2019-01-07T15:54:29.000000000", + "2019-01-07T15:54:44.000000000", + "2019-01-07T15:56:34.000000000", + "2019-01-07T15:56:40.000000000", + "2019-01-07T15:59:16.000000000", + "2019-01-07T15:59:59.000000000", + "2019-01-07T16:01:15.000000000", + "2019-01-07T16:02:34.000000000", + "2019-01-07T16:03:19.000000000", + "2019-01-07T16:03:56.000000000", + "2019-01-07T16:04:48.000000000", + "2019-01-07T16:06:47.000000000", + "2019-01-07T16:07:23.000000000", + "2019-01-07T16:09:10.000000000", + "2019-01-07T16:10:30.000000000", + "2019-01-07T16:10:45.000000000", + "2019-01-07T16:10:52.000000000", + "2019-01-07T16:10:58.000000000", + "2019-01-07T16:11:16.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:58.000000000", + "2019-01-07T16:12:14.000000000", + "2019-01-07T16:13:08.000000000", + "2019-01-07T16:14:47.000000000", + "2019-01-07T16:15:50.000000000", + "2019-01-07T16:15:55.000000000", + "2019-01-07T16:17:00.000000000", + "2019-01-07T16:17:27.000000000", + "2019-01-07T16:17:41.000000000", + "2019-01-07T16:17:46.000000000", + "2019-01-07T16:18:09.000000000", + "2019-01-07T16:18:42.000000000", + "2019-01-07T16:19:22.000000000", + "2019-01-07T16:20:53.000000000", + "2019-01-07T16:21:32.000000000", + "2019-01-07T16:26:22.000000000", + "2019-01-07T16:26:40.000000000", + "2019-01-07T16:27:28.000000000", + "2019-01-07T16:27:32.000000000", + "2019-01-07T16:29:07.000000000", + "2019-01-07T16:29:40.000000000", + "2019-01-07T16:29:56.000000000", + "2019-01-07T16:31:08.000000000", + "2019-01-07T16:31:10.000000000", + "2019-01-07T16:31:24.000000000", + "2019-01-07T16:31:55.000000000", + "2019-01-07T16:32:27.000000000", + "2019-01-07T16:33:15.000000000", + "2019-01-07T16:34:54.000000000", + "2019-01-07T16:35:06.000000000", + "2019-01-07T16:35:13.000000000", + "2019-01-07T16:36:21.000000000", + "2019-01-07T16:40:15.000000000", + "2019-01-07T16:40:27.000000000", + "2019-01-07T16:40:50.000000000", + "2019-01-07T16:42:41.000000000", + "2019-01-07T16:43:06.000000000", + "2019-01-07T16:44:00.000000000", + "2019-01-07T16:44:05.000000000", + "2019-01-07T16:44:17.000000000", + "2019-01-07T16:45:43.000000000", + "2019-01-07T16:47:00.000000000", + "2019-01-07T16:47:48.000000000", + "2019-01-07T16:47:54.000000000", + "2019-01-07T16:48:14.000000000", + "2019-01-07T16:48:28.000000000", + "2019-01-07T16:48:39.000000000", + "2019-01-07T16:51:00.000000000", + "2019-01-07T16:53:11.000000000", + "2019-01-07T16:53:36.000000000", + "2019-01-07T16:58:40.000000000", + "2019-01-07T16:59:33.000000000", + "2019-01-07T17:00:56.000000000", + "2019-01-07T17:01:11.000000000", + "2019-01-07T17:02:04.000000000", + "2019-01-07T17:02:06.000000000", + "2019-01-07T17:02:12.000000000", + "2019-01-07T17:03:04.000000000", + "2019-01-07T17:03:36.000000000", + "2019-01-07T17:03:40.000000000", + "2019-01-07T17:04:04.000000000", + "2019-01-07T17:05:10.000000000", + "2019-01-07T17:06:20.000000000", + "2019-01-07T17:08:10.000000000", + "2019-01-07T17:10:31.000000000", + "2019-01-07T17:11:38.000000000", + "2019-01-07T17:12:00.000000000", + "2019-01-07T17:12:08.000000000", + "2019-01-07T17:13:10.000000000", + "2019-01-07T17:13:53.000000000", + "2019-01-07T17:14:00.000000000", + "2019-01-07T17:14:19.000000000", + "2019-01-07T17:14:37.000000000", + "2019-01-07T17:15:38.000000000", + "2019-01-07T17:18:17.000000000", + "2019-01-07T17:18:55.000000000", + "2019-01-07T17:19:01.000000000", + "2019-01-07T17:19:48.000000000", + "2019-01-07T17:21:56.000000000", + "2019-01-07T17:22:58.000000000", + "2019-01-07T17:24:43.000000000", + "2019-01-07T17:24:44.000000000", + "2019-01-07T17:26:03.000000000", + "2019-01-07T17:26:33.000000000", + "2019-01-07T17:27:46.000000000", + "2019-01-07T17:28:15.000000000", + "2019-01-07T17:29:33.000000000", + "2019-01-07T17:29:57.000000000", + "2019-01-07T17:30:37.000000000", + "2019-01-07T17:30:58.000000000", + "2019-01-07T17:33:50.000000000", + "2019-01-07T17:36:31.000000000", + "2019-01-07T17:40:25.000000000", + "2019-01-07T17:40:56.000000000", + "2019-01-07T17:40:57.000000000", + "2019-01-07T17:41:05.000000000", + "2019-01-07T17:41:40.000000000", + "2019-01-07T17:41:49.000000000", + "2019-01-07T17:42:45.000000000", + "2019-01-07T17:44:43.000000000", + "2019-01-07T17:44:48.000000000", + "2019-01-07T17:45:13.000000000", + "2019-01-07T17:46:37.000000000", + "2019-01-07T17:47:49.000000000", + "2019-01-07T17:47:56.000000000", + "2019-01-07T17:48:21.000000000", + "2019-01-07T17:48:56.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:55:15.000000000", + "2019-01-07T17:58:33.000000000", + "2019-01-07T18:00:20.000000000", + "2019-01-07T18:01:10.000000000", + "2019-01-07T18:01:29.000000000", + "2019-01-07T18:01:43.000000000", + "2019-01-07T18:02:13.000000000", + "2019-01-07T18:03:47.000000000", + "2019-01-07T18:07:28.000000000", + "2019-01-07T18:09:09.000000000", + "2019-01-07T18:10:29.000000000", + "2019-01-07T18:11:04.000000000", + "2019-01-07T18:13:44.000000000", + "2019-01-07T18:14:41.000000000", + "2019-01-07T18:14:59.000000000", + "2019-01-07T18:15:36.000000000", + "2019-01-07T18:16:30.000000000", + "2019-01-07T18:16:44.000000000", + "2019-01-07T18:16:46.000000000", + "2019-01-07T18:18:01.000000000", + "2019-01-07T18:19:02.000000000", + "2019-01-07T18:19:05.000000000", + "2019-01-07T18:20:15.000000000", + "2019-01-07T18:20:24.000000000", + "2019-01-07T18:21:23.000000000", + "2019-01-07T18:21:48.000000000", + "2019-01-07T18:22:13.000000000", + "2019-01-07T18:22:19.000000000", + "2019-01-07T18:22:38.000000000", + "2019-01-07T18:23:29.000000000", + "2019-01-07T18:25:47.000000000", + "2019-01-07T18:26:12.000000000", + "2019-01-07T18:26:52.000000000", + "2019-01-07T18:27:09.000000000", + "2019-01-07T18:27:25.000000000", + "2019-01-07T18:28:31.000000000", + "2019-01-07T18:29:57.000000000", + "2019-01-07T18:30:04.000000000", + "2019-01-07T18:32:16.000000000", + "2019-01-07T18:32:53.000000000", + "2019-01-07T18:33:48.000000000", + "2019-01-07T18:33:58.000000000", + "2019-01-07T18:35:25.000000000", + "2019-01-07T18:36:00.000000000", + "2019-01-07T18:36:08.000000000", + "2019-01-07T18:37:32.000000000", + "2019-01-07T18:38:49.000000000", + "2019-01-07T18:42:37.000000000", + "2019-01-07T18:44:55.000000000", + "2019-01-07T18:44:56.000000000", + "2019-01-07T18:45:08.000000000", + "2019-01-07T18:46:10.000000000", + "2019-01-07T18:49:40.000000000", + "2019-01-07T18:51:24.000000000", + "2019-01-07T18:51:53.000000000", + "2019-01-07T18:52:01.000000000", + "2019-01-07T18:52:35.000000000", + "2019-01-07T18:53:48.000000000", + "2019-01-07T18:54:13.000000000", + "2019-01-07T18:56:21.000000000", + "2019-01-07T18:56:58.000000000", + "2019-01-07T18:57:42.000000000", + "2019-01-07T18:58:49.000000000", + "2019-01-07T19:00:22.000000000", + "2019-01-07T19:02:06.000000000", + "2019-01-07T19:02:13.000000000", + "2019-01-07T19:02:15.000000000", + "2019-01-07T19:03:39.000000000", + "2019-01-07T19:03:44.000000000", + "2019-01-07T19:06:11.000000000", + "2019-01-07T19:06:22.000000000", + "2019-01-07T19:08:05.000000000", + "2019-01-07T19:08:45.000000000", + "2019-01-07T19:11:28.000000000", + "2019-01-07T19:12:51.000000000", + "2019-01-07T19:13:41.000000000", + "2019-01-07T19:13:44.000000000", + "2019-01-07T19:14:56.000000000", + "2019-01-07T19:15:14.000000000", + "2019-01-07T19:16:24.000000000", + "2019-01-07T19:16:34.000000000", + "2019-01-07T19:17:20.000000000", + "2019-01-07T19:18:21.000000000", + "2019-01-07T19:19:07.000000000", + "2019-01-07T19:19:33.000000000", + "2019-01-07T19:20:53.000000000", + "2019-01-07T19:21:16.000000000", + "2019-01-07T19:22:43.000000000", + "2019-01-07T19:22:58.000000000", + "2019-01-07T19:26:05.000000000", + "2019-01-07T19:26:07.000000000", + "2019-01-07T19:26:13.000000000", + "2019-01-07T19:27:23.000000000", + "2019-01-07T19:28:01.000000000", + "2019-01-07T19:29:41.000000000", + "2019-01-07T19:30:16.000000000", + "2019-01-07T19:30:22.000000000", + "2019-01-07T19:30:25.000000000", + "2019-01-07T19:30:47.000000000", + "2019-01-07T19:32:59.000000000", + "2019-01-07T19:33:36.000000000", + "2019-01-07T19:34:10.000000000", + "2019-01-07T19:34:52.000000000", + "2019-01-07T19:35:23.000000000", + "2019-01-07T19:38:16.000000000", + "2019-01-07T19:38:18.000000000", + "2019-01-07T19:38:47.000000000", + "2019-01-07T19:39:45.000000000", + "2019-01-07T19:39:50.000000000", + "2019-01-07T19:40:48.000000000", + "2019-01-07T19:41:16.000000000", + "2019-01-07T19:42:24.000000000", + "2019-01-07T19:43:09.000000000", + "2019-01-07T19:44:07.000000000", + "2019-01-07T19:44:22.000000000", + "2019-01-07T19:44:42.000000000", + "2019-01-07T19:47:22.000000000", + "2019-01-07T19:48:07.000000000", + "2019-01-07T19:48:23.000000000", + "2019-01-07T19:49:53.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:52:28.000000000", + "2019-01-07T19:52:45.000000000", + "2019-01-07T19:52:52.000000000", + "2019-01-07T19:56:35.000000000", + "2019-01-07T19:59:05.000000000", + "2019-01-07T20:00:25.000000000", + "2019-01-07T20:01:14.000000000", + "2019-01-07T20:01:20.000000000", + "2019-01-07T20:01:46.000000000", + "2019-01-07T20:01:47.000000000", + "2019-01-07T20:04:02.000000000", + "2019-01-07T20:04:14.000000000", + "2019-01-07T20:07:00.000000000", + "2019-01-07T20:08:32.000000000", + "2019-01-07T20:11:29.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:13:41.000000000", + "2019-01-07T20:16:22.000000000", + "2019-01-07T20:18:24.000000000", + "2019-01-07T20:18:39.000000000", + "2019-01-07T20:19:22.000000000", + "2019-01-07T20:20:35.000000000", + "2019-01-07T20:21:25.000000000", + "2019-01-07T20:22:52.000000000", + "2019-01-07T20:23:41.000000000", + "2019-01-07T20:32:51.000000000", + "2019-01-07T20:33:56.000000000", + "2019-01-07T20:34:52.000000000", + "2019-01-07T20:35:25.000000000", + "2019-01-07T20:36:27.000000000", + "2019-01-07T20:39:11.000000000", + "2019-01-07T20:42:25.000000000", + "2019-01-07T20:43:18.000000000", + "2019-01-07T20:43:28.000000000", + "2019-01-07T20:45:30.000000000", + "2019-01-07T20:45:45.000000000", + "2019-01-07T20:46:10.000000000", + "2019-01-07T20:47:16.000000000", + "2019-01-07T20:47:20.000000000", + "2019-01-07T20:47:26.000000000", + "2019-01-07T20:48:38.000000000", + "2019-01-07T20:49:33.000000000", + "2019-01-07T20:49:43.000000000", + "2019-01-07T20:51:31.000000000", + "2019-01-07T20:52:22.000000000", + "2019-01-07T20:53:33.000000000", + "2019-01-07T20:54:04.000000000", + "2019-01-07T20:55:24.000000000", + "2019-01-07T20:56:08.000000000", + "2019-01-07T20:57:22.000000000", + "2019-01-07T20:57:30.000000000", + "2019-01-07T20:58:00.000000000", + "2019-01-07T20:59:33.000000000", + "2019-01-07T21:01:06.000000000", + "2019-01-07T21:01:19.000000000", + "2019-01-07T21:01:43.000000000", + "2019-01-07T21:03:37.000000000", + "2019-01-07T21:03:45.000000000", + "2019-01-07T21:04:37.000000000", + "2019-01-07T21:06:54.000000000", + "2019-01-07T21:07:33.000000000", + "2019-01-07T21:07:41.000000000", + "2019-01-07T21:09:00.000000000", + "2019-01-07T21:11:30.000000000", + "2019-01-07T21:12:41.000000000", + "2019-01-07T21:14:34.000000000", + "2019-01-07T21:14:42.000000000", + "2019-01-07T21:15:47.000000000", + "2019-01-07T21:15:49.000000000", + "2019-01-07T21:16:53.000000000", + "2019-01-07T21:18:39.000000000", + "2019-01-07T21:19:04.000000000", + "2019-01-07T21:20:05.000000000", + "2019-01-07T21:20:29.000000000", + "2019-01-07T21:20:50.000000000", + "2019-01-07T21:21:28.000000000", + "2019-01-07T21:23:26.000000000", + "2019-01-07T21:23:31.000000000", + "2019-01-07T21:24:18.000000000", + "2019-01-07T21:25:49.000000000", + "2019-01-07T21:26:42.000000000", + "2019-01-07T21:27:30.000000000", + "2019-01-07T21:27:42.000000000", + "2019-01-07T21:28:10.000000000", + "2019-01-07T21:30:39.000000000", + "2019-01-07T21:32:14.000000000", + "2019-01-07T21:32:27.000000000", + "2019-01-07T21:35:11.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:30.000000000", + "2019-01-07T21:37:19.000000000", + "2019-01-07T21:38:08.000000000", + "2019-01-07T21:38:11.000000000", + "2019-01-07T21:38:33.000000000", + "2019-01-07T21:39:03.000000000", + "2019-01-07T21:40:51.000000000", + "2019-01-07T21:41:21.000000000", + "2019-01-07T21:42:55.000000000", + "2019-01-07T21:43:30.000000000", + "2019-01-07T21:43:59.000000000", + "2019-01-07T21:44:51.000000000", + "2019-01-07T21:45:42.000000000", + "2019-01-07T21:48:22.000000000", + "2019-01-07T21:48:57.000000000", + "2019-01-07T21:49:42.000000000", + "2019-01-07T21:50:48.000000000", + "2019-01-07T21:51:14.000000000", + "2019-01-07T21:51:41.000000000", + "2019-01-07T21:51:46.000000000", + "2019-01-07T21:52:38.000000000", + "2019-01-07T21:53:55.000000000", + "2019-01-07T21:53:57.000000000", + "2019-01-07T21:54:15.000000000", + "2019-01-07T21:56:30.000000000", + "2019-01-07T21:57:11.000000000", + "2019-01-07T21:57:15.000000000", + "2019-01-07T21:57:41.000000000", + "2019-01-07T21:59:05.000000000", + "2019-01-07T21:59:13.000000000", + "2019-01-07T22:01:26.000000000", + "2019-01-07T22:05:14.000000000", + "2019-01-07T22:05:55.000000000", + "2019-01-07T22:06:48.000000000", + "2019-01-07T22:07:49.000000000", + "2019-01-07T22:08:37.000000000", + "2019-01-07T22:12:30.000000000", + "2019-01-07T22:12:58.000000000", + "2019-01-07T22:13:10.000000000", + "2019-01-07T22:14:17.000000000", + "2019-01-07T22:14:32.000000000", + "2019-01-07T22:14:58.000000000", + "2019-01-07T22:15:10.000000000", + "2019-01-07T22:15:30.000000000", + "2019-01-07T22:16:40.000000000", + "2019-01-07T22:17:11.000000000", + "2019-01-07T22:18:02.000000000", + "2019-01-07T22:20:17.000000000", + "2019-01-07T22:20:40.000000000", + "2019-01-07T22:21:51.000000000", + "2019-01-07T22:22:10.000000000", + "2019-01-07T22:22:26.000000000", + "2019-01-07T22:24:52.000000000", + "2019-01-07T22:24:59.000000000", + "2019-01-07T22:25:26.000000000", + "2019-01-07T22:26:45.000000000", + "2019-01-07T22:26:58.000000000", + "2019-01-07T22:28:48.000000000", + "2019-01-07T22:30:42.000000000", + "2019-01-07T22:31:17.000000000", + "2019-01-07T22:31:20.000000000", + "2019-01-07T22:31:38.000000000", + "2019-01-07T22:31:46.000000000", + "2019-01-07T22:32:47.000000000", + "2019-01-07T22:33:28.000000000", + "2019-01-07T22:34:16.000000000", + "2019-01-07T22:34:20.000000000", + "2019-01-07T22:34:36.000000000", + "2019-01-07T22:35:41.000000000", + "2019-01-07T22:37:25.000000000", + "2019-01-07T22:37:27.000000000", + "2019-01-07T22:38:05.000000000", + "2019-01-07T22:39:10.000000000", + "2019-01-07T22:39:21.000000000", + "2019-01-07T22:40:05.000000000", + "2019-01-07T22:40:25.000000000", + "2019-01-07T22:40:49.000000000", + "2019-01-07T22:41:31.000000000", + "2019-01-07T22:42:13.000000000", + "2019-01-07T22:42:27.000000000", + "2019-01-07T22:42:40.000000000", + "2019-01-07T22:43:33.000000000", + "2019-01-07T22:44:48.000000000", + "2019-01-07T22:45:51.000000000", + "2019-01-07T22:47:41.000000000", + "2019-01-07T22:47:55.000000000", + "2019-01-07T22:48:03.000000000", + "2019-01-07T22:49:30.000000000", + "2019-01-07T22:51:00.000000000", + "2019-01-07T22:52:44.000000000", + "2019-01-07T22:53:35.000000000", + "2019-01-07T22:53:53.000000000", + "2019-01-07T22:56:35.000000000", + "2019-01-07T22:58:50.000000000", + "2019-01-07T22:59:07.000000000", + "2019-01-07T23:00:06.000000000", + "2019-01-07T23:08:30.000000000", + "2019-01-07T23:09:38.000000000", + "2019-01-07T23:10:21.000000000", + "2019-01-07T23:10:40.000000000", + "2019-01-07T23:11:05.000000000", + "2019-01-07T23:14:01.000000000", + "2019-01-07T23:14:39.000000000", + "2019-01-07T23:14:44.000000000", + "2019-01-07T23:16:26.000000000", + "2019-01-07T23:19:06.000000000", + "2019-01-07T23:19:58.000000000", + "2019-01-07T23:20:46.000000000", + "2019-01-07T23:20:49.000000000", + "2019-01-07T23:21:58.000000000", + "2019-01-07T23:23:04.000000000", + "2019-01-07T23:25:11.000000000", + "2019-01-07T23:26:26.000000000", + "2019-01-07T23:27:14.000000000", + "2019-01-07T23:27:21.000000000", + "2019-01-07T23:28:16.000000000", + "2019-01-07T23:29:24.000000000", + "2019-01-07T23:30:44.000000000", + "2019-01-07T23:32:09.000000000", + "2019-01-07T23:33:08.000000000", + "2019-01-07T23:33:20.000000000", + "2019-01-07T23:34:52.000000000", + "2019-01-07T23:34:56.000000000", + "2019-01-07T23:35:31.000000000", + "2019-01-07T23:35:59.000000000", + "2019-01-07T23:38:21.000000000", + "2019-01-07T23:38:55.000000000", + "2019-01-07T23:42:27.000000000", + "2019-01-07T23:43:23.000000000", + "2019-01-07T23:43:40.000000000", + "2019-01-07T23:45:29.000000000", + "2019-01-07T23:47:01.000000000", + "2019-01-07T23:47:15.000000000", + "2019-01-07T23:47:55.000000000", + "2019-01-07T23:48:12.000000000", + "2019-01-07T23:49:23.000000000", + "2019-01-07T23:49:45.000000000", + "2019-01-07T23:50:07.000000000", + "2019-01-07T23:51:07.000000000", + "2019-01-07T23:51:52.000000000", + "2019-01-07T23:53:18.000000000", + "2019-01-07T23:53:19.000000000", + "2019-01-07T23:53:56.000000000", + "2019-01-07T23:55:56.000000000" + ], + "y": [ + 0.1263522856994191, + 0.36014959075929787, + 0.022628133708820858, + 0.22728528839607967, + 0.2624968684537138, + 0.1686234783570382, + 0.1852587646593266, + 0.07324361145847649, + 0.3368485339710549, + 0.18143913655890084, + 0.12399822992179294, + 0.27241559909281277, + 0.13168593406553009, + 0.13252422852868528, + 0.11631258839917319, + 0.2710259835416995, + 0.3086540781328186, + 0.2779064127359905, + 0.2752406359806218, + 0.20991151100737052, + 0.13166253704125114, + 0.3213265257860998, + 0.24342397374821986, + 0.1905386542535198, + 0.3958954612178187, + 0.2032860727821585, + 0.24673666109373657, + 0.4186300128476597, + 0.11665461563880167, + 0.2490120474652311, + 0.19359541917836176, + 0.27327787529976677, + 0.22154433457714753, + 0.3021435682973157, + 0.28749472010344534, + 0.3795507532302944, + 0.2851551755200168, + 0.45331633939404065, + 0.18175175372263208, + 0.20715084190945124, + 0.20718480298592565, + 0.3176591244515703, + 0.07799025392037037, + 0.3082201530937728, + 0.2548145662797511, + 0.14254597179345074, + 0.30501642649495686, + 0.15790793159101307, + 0.447098535316736, + 0.3845925071408165, + 0.2566574280741117, + 0.17245291140643682, + 0.3327818302847286, + 0.17093085971128935, + 0.2897897905752669, + 0.32023075716443095, + 0.2522872605652668, + 0.33172963348203355, + 0.15966457536342185, + 0.12148239552493673, + 0.24696972313319285, + 0.3004708199928507, + 0.22651601961937123, + 0.20634272755549493, + 0.3137698710180952, + 0.3417920202362645, + 0.4069072140200588, + 0.5178154503297507, + 0.3887998541516994, + 0.33979834734243786, + 0.21472787136983074, + 0.24401587311077583, + 0.2625918006489531, + 0.41721393774668336, + 0.3375284078551844, + 0.22814194066391214, + 0.30847938332988895, + 0.2065396782920198, + 0.21361491157022872, + 0.36869657199480965, + 0.28432911534528726, + 0.3281068099916397, + 0.33806931227636494, + 0.24788452158570867, + 0.2200545987562544, + 0.37334632681974383, + 0.26253225297908844, + 0.08663788820251878, + 0.29729694702953063, + 0.3435553972252621, + 0.30805191925249964, + 0.5477397492312314, + 0.306120516281956, + 0.32440809504100876, + 0.21170413408292763, + 0.3391957619242633, + 0.3372562366776885, + 0.36509542623544505, + 0.2811854927382701, + 0.47455986039103865, + 0.5382109478788732, + 0.4967227304722535, + 0.39638534969707706, + 0.4738953956793874, + 0.3340007138739113, + 0.4000238051947201, + 0.30543720444971273, + 0.5466926780900468, + 0.4732784165081349, + 0.2910082820398407, + 0.19017049666802996, + 0.6466671470437071, + 0.31908125122133313, + 0.4179652377859408, + 0.5033411130659877, + 0.3975358303105121, + 0.2602827367090229, + 0.49670228272730316, + 0.43948030779867936, + 0.5005158047393906, + 0.44078492182575724, + 0.47479272870363576, + 0.5736393069952512, + 0.4741926216801173, + 0.46339490822068613, + 0.6038314194213288, + 0.38132240655101574, + 0.47892910592365195, + 0.43153771684753783, + 0.3914942584220751, + 0.511857217582782, + 0.5398675887384, + 0.40347157384600657, + 0.39753716830407415, + 0.4361973418188006, + 0.463010846597021, + 0.542744402724428, + 0.6122981359958097, + 0.5796943440320891, + 0.5599797419038003, + 0.47982084991186985, + 0.6852352208753101, + 0.5573287534328728, + 0.6267449731303493, + 0.5748316522014512, + 0.6414453105267491, + 0.427507583680091, + 0.542317466269775, + 0.518676240334923, + 0.64145430435081, + 0.49795861604344444, + 0.6681869846883532, + 0.5902035509975994, + 0.40236539408187544, + 0.6228663076181484, + 0.6254612849579999, + 0.46977567563955563, + 0.49324720065696676, + 0.5694167086724046, + 0.7474789980067975, + 0.5155359792316555, + 0.4168753458696843, + 0.5946528080086838, + 0.6600887382292422, + 0.40035511415343855, + 0.5319336088834195, + 0.60786203607711, + 0.5264401853834593, + 0.5314884354424483, + 0.46751554055259215, + 0.5496205991897035, + 0.38745425023206403, + 0.6261238060172182, + 0.6371205451573116, + 0.3733912021145578, + 0.5821361653489404, + 0.6438172876298369, + 0.634189662655463, + 0.47201668752528647, + 0.5906564332496715, + 0.8475779623423965, + 0.6523787220781425, + 0.5466442254355237, + 0.8517004278578071, + 0.7571046938949508, + 0.7764347734560031, + 0.4750563242453747, + 0.7621849663788093, + 0.5852707091998374, + 0.7457995254842827, + 0.7631063995095608, + 0.6736889625860454, + 0.7442190300219436, + 0.7291459139819974, + 0.680408649537435, + 0.6765972986533992, + 0.5686770404020334, + 0.736064125296865, + 0.6562580336848068, + 0.829935111790953, + 0.7679788409422055, + 0.711060944135222, + 0.6096114756267729, + 0.7373256252828442, + 0.6549564849112448, + 0.7029809177248393, + 0.6250304291666342, + 0.63289827942602, + 0.5799207540762914, + 0.8745789037683352, + 0.548057785050949, + 0.6748016823417385, + 0.5684564766859718, + 0.7362060158701539, + 0.7104507910107418, + 0.576139693916483, + 0.637244852183225, + 0.8366135658830189, + 0.7601608937215467, + 0.7764842553922771, + 0.7514865591864986, + 0.9843099586611138, + 0.7922653361174389, + 0.7120389282839076, + 0.8157935547932764, + 0.9479902925317741, + 0.8136018873781669, + 0.7634683161317138, + 0.8128023244394378, + 0.5907988003076673, + 0.9843564643470342, + 0.828513984806648, + 0.603831812315115, + 1.0386772589624274, + 0.8773559845000378, + 0.7317948950507079, + 0.8268419938146503, + 0.9400663076891753, + 0.8858674325355539, + 0.8807850788628929, + 0.7497116626653461, + 0.7998189663389327, + 0.5831821415173261, + 0.7742436007523701, + 0.7190043102339105, + 0.8843298312118386, + 0.9042710288572642, + 0.796658348472187, + 0.9200008006772868, + 0.9355217052711927, + 0.771224897976295, + 0.9329223625220825, + 1.0447034822678818, + 0.8476744377003522, + 0.9237422786118114, + 0.9762734455479664, + 1.1521777655855663, + 0.8941346151405869, + 0.975298051692121, + 0.9697806198014984, + 1.0406273995970339, + 0.843759088569862, + 0.9314288713596168, + 0.8446589986997645, + 0.8547668551265927, + 0.8864229017741927, + 0.8749574609120532, + 0.6887266945493117, + 0.9701463277765979, + 0.93631071279348, + 1.0345219445094078, + 0.9708177933371746, + 0.9556180445798659, + 0.9826050469906531, + 1.1298220991377776, + 1.056826771737668, + 1.052272276991623, + 1.0176260865782276, + 0.9735030057217984, + 0.9959896591041176, + 1.1536632491892578, + 1.1208492773574805, + 1.2434945547480245, + 1.1443259386669142, + 1.0212337923953703, + 1.0608530397648832, + 1.0176363940103985, + 1.034998801316838, + 1.1202803835408062, + 0.9616168391886734, + 1.0949361589557056, + 1.1642794010155768, + 0.9632223385100622, + 1.0108515074922153, + 1.1476618399252927, + 1.2457568007585664, + 1.019580263010919, + 1.105634740079185, + 1.0020601199826271, + 1.175703885508771, + 1.076425880597215, + 1.180699667519397, + 1.021212228568757, + 1.140392869864906, + 1.1410357697008613, + 1.1022353240708533, + 1.2046398275179007, + 1.1301667654060341, + 1.2164239882918468, + 1.3105088519206098, + 1.0768848182336785, + 1.1570876197715052, + 1.1366340788754898, + 1.2846017716725124, + 1.255299247832245, + 1.2265437375272534, + 1.1883823892778593, + 1.3216455556650586, + 1.0437850832335736, + 1.1581570339907996, + 1.2606883238015787, + 1.12480571921912, + 1.212881508361891, + 1.149323614540266, + 1.2129646483302565, + 1.2883246195767435, + 1.2268482307604605, + 1.164655305252006, + 1.080990923817359, + 1.100254607196632, + 1.306449130245274, + 1.2151231254007338, + 1.1515406786770093, + 1.2956505774455915, + 1.2695060825372666, + 1.370567797422912, + 1.2959268753986433, + 1.1544239411566566, + 1.2452205703520698, + 1.357870457794676, + 1.3717374094392651, + 1.3474726168442264, + 1.2370656697969171, + 1.3152470482825824, + 1.4310040254599423, + 1.4754195404575952, + 1.4381493329751192, + 1.3203627217973504, + 1.2424474884528878, + 1.5350192636850268, + 1.400495437275266, + 1.3810991768858345, + 1.291854071302098, + 1.1187082612587025, + 1.297234880935012, + 1.3055727125207408, + 1.4376467584954247, + 1.240465286324805, + 1.4366225581527026, + 1.344604749253031, + 1.5000508852504375, + 1.3719617896738872, + 1.2191021358647331, + 1.2044333306321413, + 1.3692448488411826, + 1.380532318217686, + 1.4438627906016932, + 1.4921053044230728, + 1.4973149512253356, + 1.4756137959887454, + 1.5599923968618423, + 1.3256089778001523, + 1.3501326279361234, + 1.519672664423473, + 1.585806621450703, + 1.4181100284087618, + 1.346800107213359, + 1.3873360657724398, + 1.5868825048016726, + 1.5454049281008506, + 1.2535476598780042, + 1.6479045618481054, + 1.2793413200722863, + 1.406262283638691, + 1.4479854138977388, + 1.4582180832829839, + 1.6085838954332434, + 1.544418829854699, + 1.6126949936654038, + 1.3521916440938266, + 1.679827217337467, + 1.3848426466858768, + 1.6802516615239838, + 1.5558791742093554, + 1.4189101729578646, + 1.2690768924370155, + 1.5578066398243542, + 1.6551317898709745, + 1.574486198687899, + 1.6703340576334151, + 1.3691124406806225, + 1.5866817834214673, + 1.6991315604959474, + 1.547141844098486, + 1.6417379448511917, + 1.5708764207267774, + 1.3850189825935537, + 1.5627607666658612, + 1.6098534118086238, + 1.6499973597273425, + 1.5636406238566523, + 1.450051971140331, + 1.5217858078226578, + 1.6551845047547367, + 1.4862870696479877, + 1.6092694798596427, + 1.6586527917797937, + 1.5823281022326217, + 1.5938333470587454, + 1.795318193017344, + 1.5638254545530266, + 1.3419515579726229, + 1.7174981235262143, + 1.5220051749921155, + 1.623317613284881, + 1.6368194920354326, + 1.7498326865488913, + 1.5858456114371309, + 1.6200197569960288, + 1.8111552692334796, + 1.5796882822175393, + 1.7015813689139643, + 1.7178087189967322, + 1.6964901527333607, + 1.7195097701284106, + 1.741252852101788, + 1.6469138073749237, + 1.875899306296994, + 1.4714163824493747, + 1.7670530844627617, + 1.793265608034938, + 1.5887599512368995, + 1.640844982855146, + 1.7309440386506763, + 1.7446061442085663, + 1.8366682951099043, + 1.8230334383121551, + 1.684016963574103, + 1.7368420474687327, + 1.8870578335498975, + 1.8340356864389877, + 1.7422314185819754, + 1.6268993183864349, + 1.674318602415692, + 1.9411021687105834, + 1.9594591120392566, + 1.6883463501971017, + 1.7762832562507065, + 1.7296198359883634, + 1.8128720267280205, + 1.754886490363402, + 1.7365575691365152, + 1.8213578873003424, + 1.706350762884922, + 1.836144323389797, + 1.7169675832078781, + 1.72622403893711, + 1.7961248071238982, + 1.838497192294133, + 1.673338606421774, + 1.6740231297991426, + 1.8133857050565794, + 1.549074020125802, + 1.721683856027414, + 1.611933186762961, + 1.8113306476183437, + 1.925427654337267, + 1.9417987387714195, + 1.750137108987937, + 1.9791086427037303, + 1.9292223748600528, + 1.777645775040187, + 1.959577847622206, + 1.7425245502665083, + 1.6513894274370544, + 1.8202074784218754, + 1.8738424588326759, + 1.7586398832104286, + 1.8370012781026794, + 2.022065020807546, + 1.8964561263144708, + 1.8193011461218145, + 1.7895340458367979, + 1.8859686836504685, + 1.81288698333421, + 1.97760735808735, + 1.8281806376219394, + 1.9004602416908234, + 1.7496656115214209, + 1.9143462218609093, + 2.0171769593465343, + 1.9040834375076174, + 1.6231005667399354, + 1.8183789547077478, + 2.009685986285841, + 1.9124542258845896, + 1.934141372394084, + 1.75310817737518, + 1.851823227694661, + 1.8696286122333206, + 1.8226756176917578, + 1.9207128299778062, + 1.9601094632488434, + 1.9251671548927034, + 1.946538938268409, + 2.117149947744753, + 2.0271003197178086, + 1.8262880192779447, + 2.0382980225846508, + 2.134319507502233, + 1.980316804824428, + 1.999066464520362, + 1.9341302059219703, + 1.9768981751147163, + 2.112520837561922, + 1.9501652121815516, + 1.9628067889409009, + 2.1059233642293322, + 1.8660767644773921, + 1.874389447053195, + 2.0054279455308537, + 2.023991350879393, + 1.9453873740116825, + 1.8312270949675864, + 2.0133676099700897, + 1.9658932113252807, + 1.9557253676816062, + 2.073638329115994, + 2.022739198514483, + 2.08360018501134, + 1.9819576580539726, + 2.042948605407955, + 1.9859057666326054, + 1.9777575127654479, + 1.9815184224771683, + 1.9428287435876133, + 2.053359626250444, + 2.0085519133529917, + 2.0735735020564703, + 2.020603833339427, + 2.1135080887637634, + 2.0763907566416213, + 1.9259819368027356, + 1.9764246109820154, + 2.0731802963664583, + 2.1621305979999823, + 2.0740248278103794, + 2.0560653664916475, + 1.9296785778489811, + 2.083438787447004, + 2.0791261748714387, + 1.8694596194327284, + 2.233822272208228, + 2.3461314620258995, + 2.103162575000764, + 2.1596406350395085, + 2.114372304845636, + 2.1679182842512157, + 1.9245262707216648, + 2.1073340348597682, + 2.2700971702355024, + 2.0756383935892115, + 2.1846054479185653, + 2.1983025168164345, + 1.9770952631577026, + 2.0583421274715272, + 2.047123533318668, + 2.078541166424273, + 2.1502583428699706, + 2.047575539443908, + 2.12938805099781, + 2.2032583132811934, + 2.071845764549456, + 2.0189997004873583, + 2.1162567239679944, + 2.1076884918430614, + 2.1878171191248454, + 2.1188653454309505, + 2.179257147105665, + 2.035637178013926, + 2.1134361554639067, + 2.2508567313063037, + 2.2475026850335893, + 1.9687354196251465, + 2.1878002756337067, + 2.071645721590306, + 2.295304239375609, + 2.2625289493322227, + 2.267292718252798, + 2.1812624449467517, + 2.258469877292437, + 2.223970246252071, + 2.021105577682663, + 2.1947390822105772, + 2.218600057728971, + 2.173068374302874, + 2.1574772301707883, + 2.2523549942305086, + 2.128030001051987, + 2.0889172745782973, + 2.082905481412227, + 2.2640019001213028, + 2.1762878077407346, + 2.091961543804096, + 2.0830215486057284, + 2.136741428676327, + 2.0182890764565866, + 2.0157160804079193, + 2.108697547968046, + 2.1453098186872817, + 2.249162025685229, + 2.0674928269482287, + 2.114221143897737, + 2.114050437182817, + 2.1866110433512826, + 2.205994238270298, + 2.2013875927527105, + 2.27218322280106, + 2.2962793594841377, + 2.283369906953327, + 2.1749100732174913, + 2.3763544205343314, + 2.2129674138708766, + 2.198128132785584, + 2.325667607132249, + 2.234949379605312, + 2.1470514339140445, + 2.238824072559101, + 2.2225944055702507, + 2.181731379006088, + 2.12849745871879, + 2.206512366961424, + 2.4047270640910425, + 2.176568159459274, + 2.025241588135591, + 2.2980954948524603, + 1.946141494643768, + 2.3367095153867985, + 2.2550965727989043, + 2.2105222532853452, + 2.109679745502091, + 2.2524661773995738, + 2.1576780504146105, + 2.1454036588059093, + 2.1799799819615044, + 2.206904411601126, + 2.1065389680892084, + 2.2631944600243017, + 2.137077925901916, + 2.246167218562621, + 2.2883302351475905, + 2.263281182408713, + 2.198950766136169, + 2.2511221797865315, + 2.0559885370003625, + 2.3312701084759624, + 2.1612038422714854, + 2.308663156714581, + 2.048288500668344, + 2.131414784386131, + 2.2049992714081017, + 2.090450596379825, + 2.139096719463656, + 2.4375523854692616, + 2.281179594979242, + 2.207164384674086, + 2.0838265059471577, + 1.9826805516251162, + 2.3488736478869936, + 2.072970112998223, + 2.118022900626757, + 2.2156283359770206, + 2.0272545961796244, + 2.1448578159705707, + 2.3010352281968394, + 2.1587882117158124, + 2.2121694467925326, + 2.2940257036202762, + 1.998798992874002, + 2.1456471375690374, + 2.3344864094588775, + 2.108339591380288, + 2.0917800341506467, + 2.264515710954707, + 2.3861663409462026, + 2.2245349587363004, + 2.2149447811684198, + 2.3267016136079812, + 2.094575713216769, + 2.2339186724171234, + 2.2659712297897623, + 2.2266445916916364, + 2.1732250677896117, + 2.2369215546617283, + 2.137971401421878, + 2.400784349474062, + 2.097900938738596, + 2.2657689967645727, + 2.3927948432024695, + 2.1707053130984546, + 2.1703929192099567, + 2.177144140265059, + 2.1956188274884822, + 2.0864624594799395, + 2.083184356513531, + 2.228092605906318, + 2.065872913146351, + 2.2435541182866054, + 2.1750052563626427, + 2.2433948965873394, + 2.1167663598302497, + 2.2239016267355836, + 2.289149991325546, + 2.296884536652137, + 2.1358624140679145, + 2.0904976691597623, + 2.299184445322082, + 2.04740703899501, + 2.3041250047550186, + 2.1683559913677355, + 2.1805871812834616, + 2.2792924714487914, + 2.190760086474289, + 2.1781694586204567, + 2.222691902712001, + 1.9919961845889815, + 2.0320116993715196, + 2.1748939433736343, + 2.2773121367332663, + 2.127142682604374, + 2.1870951479165694, + 2.1279949237727886, + 2.2108498815427495, + 2.1916786945073907, + 2.124271100072292, + 2.1866701524451484, + 2.165902155409571, + 2.1066595035707936, + 2.120338516173318, + 2.168448400068734, + 2.190325653089692, + 2.173824624312863, + 2.2318479649091683, + 2.260850239971883, + 1.9441403569910987, + 2.2139703156621113, + 2.0922270371524276, + 2.092284785044107, + 2.179603734995371, + 2.0422522078330627, + 2.2115805368061103, + 2.213266480864563, + 2.0317493635702792, + 2.248513405359371, + 2.195139264669508, + 2.0294117827659353, + 2.23081319555223, + 2.0528871225296306, + 2.1819643498166195, + 2.194253360412879, + 2.1967352406383753, + 2.026224586747338, + 2.1895830465934547, + 2.0356604169668846, + 2.1855325242694414, + 2.1954131598579893, + 2.0779913468371682, + 2.2128684028538403, + 1.850438094335909, + 2.0108904152761715, + 2.2294826977465934, + 2.1494283327867794, + 2.0235545174744662, + 1.9546006693675388, + 1.9970610716733492, + 2.188083586709946, + 2.023631688179744, + 2.281425254771692, + 2.0133315347719205, + 1.9777057951612653, + 2.034803963931678, + 2.027270820988056, + 1.840878970107363, + 2.099320356281403, + 2.116149947855282, + 1.8944342602101303, + 2.0861746828866474, + 1.9585285758857822, + 2.0963665656956376, + 1.7949681522063767, + 1.9696030846032708, + 2.0448365867578002, + 1.977676091792304, + 2.033754956209549, + 1.8264889543248162, + 2.019949839534284, + 1.9267691574849186, + 2.057701057049263, + 1.9656093167165876, + 2.093572643057705, + 2.031668546822602, + 2.0164670593799396, + 2.0683710609006205, + 1.861452237009308, + 2.175299846400757, + 1.910918673099653, + 1.9620089514372003, + 2.2325526841658787, + 1.944878728407779, + 2.0227891317097058, + 1.9180015846121068, + 2.0122109889962703, + 2.0707820445918848, + 2.1582975211981315, + 1.7497539847372972, + 1.9144263503538637, + 2.0778477687073287, + 2.049378331328239, + 2.1042182766713124, + 2.1409353261307085, + 2.008139127490542, + 2.0761607069298433, + 1.8212394361330804, + 1.8960730236774654, + 1.971417879189657, + 1.952479897958446, + 2.002416934848463, + 2.1475623646662294, + 1.8815556769751536, + 2.081262290605281, + 1.9923938144575426, + 2.0674790528389284, + 2.012596568477059, + 1.9889272176994433, + 1.9861861820870836, + 2.1083795973249773, + 2.0340636722096144, + 1.7780949768545917, + 2.01944723655978, + 1.9869551148379623, + 1.887642869244557, + 1.8703635854745804, + 1.9592331435600878, + 2.002059180096436, + 1.82150876239608, + 1.872491204663891, + 2.133282307706811, + 2.0797335850599095, + 1.8717264006576115, + 1.9412895259062082, + 2.0633398231732274, + 1.8823250067481896, + 1.944171562240797, + 1.8194500153263047, + 1.9213898528677875, + 1.868496534352303, + 1.9635650117718777, + 2.0019949661583665, + 1.9414529345188576, + 1.875741165545029, + 1.926955925768801, + 1.9138293672005173, + 1.753079302026226, + 1.611067387211568, + 1.895027324589378, + 1.740856032097566, + 1.7908610703308954, + 1.8935667119974238, + 1.7746043191924765, + 1.7525433611161203, + 1.8710916902450405, + 1.9147372358260646, + 1.7739597844766057, + 1.7075568121456088, + 1.7798607736473784, + 1.8957206738253722, + 1.9961424752737393, + 1.910669938389406, + 1.649610611332697, + 1.7987297242088995, + 1.8619209226488906, + 1.8697632583196238, + 1.84565965291715, + 1.9575390889653006, + 1.5893236581854817, + 1.7272661651477317, + 1.7682793805314325, + 1.9384382007729857, + 1.769014524350607, + 1.814087840341843, + 1.7055714988477209, + 1.7566765191812552, + 1.835496688417308, + 1.766818172348217, + 1.8280076832052223, + 1.906828546762679, + 1.9558675085032728, + 1.5108699469007534, + 1.7426289088198303, + 1.636217820275433, + 1.6843938043969178, + 1.8751983988405345, + 1.8514973163251307, + 1.5486497306721037, + 1.6164204004931193, + 1.6125193637638664, + 1.6996114684096528, + 1.7786494941194815, + 1.5292938935331446, + 1.724712603002742, + 1.6176576710370294, + 1.6599979312837505, + 1.5607196241071888, + 1.6764603993532352, + 1.6930251108096233, + 1.8011841752790758, + 1.6710514261629823, + 1.7497553120905036, + 1.5885069689303972, + 1.5793907439901433, + 1.4878347896182325, + 1.7056162590602562, + 1.6002583972339965, + 1.5544633161827823, + 1.6905625558774007, + 1.501032356508237, + 1.586607469814221, + 1.6266239118441004, + 1.6924307484495658, + 1.5002755625204522, + 1.522229332625436, + 1.3832029384209972, + 1.4338295495409508, + 1.5639743903642522, + 1.4307009011299507, + 1.9254838149846172, + 1.423934541108924, + 1.6562310670369869, + 1.6070149903219897, + 1.6794478795429846, + 1.5867569684458946, + 1.4819072652156406, + 1.7895358048703103, + 1.8325021600104252, + 1.459207304017708, + 1.7131704169381292, + 1.5476132297649465, + 1.5240778083662545, + 1.4790294202278569, + 1.532105165348595, + 1.5857866240897707, + 1.9016608007387599, + 1.5536942190439065, + 1.4323570139691697, + 1.3050950709854268, + 1.4955887928020597, + 1.4146107083857145, + 1.5130491762782008, + 1.3856871321185915, + 1.4886690342617257, + 1.3873404935852394, + 1.5835994661909647, + 1.4685166886096122, + 1.531974558097216, + 1.5846415437437402, + 1.4838478449000034, + 1.6241343292552712, + 1.5319461737353346, + 1.3718316467347667, + 1.5691934457945442, + 1.3641701551571166, + 1.5219581224286076, + 1.422994109273904, + 1.545247916624428, + 1.5524015654298369, + 1.5824565221641582, + 1.21522741033547, + 1.2535110377571452, + 1.5114912385674417, + 1.3535514112099187, + 1.4276998702653807, + 1.403271601778169, + 1.2416056845703531, + 1.4340687821212768, + 1.4426022115950938, + 1.4293276297214277, + 1.3423585896768753, + 1.2411160956894327, + 1.4542078442999176, + 1.4085127576386651, + 1.3398851817691884, + 1.459756484846758, + 1.2727932590379178, + 1.247718502206675, + 1.5151457177066217, + 1.3290786306725486, + 1.4466349101093923, + 1.2990007388316909, + 1.3433328865465555, + 1.1182778887778497, + 1.2997755692955315, + 1.5048745526116676, + 1.3172750303424936, + 1.2702671367906726, + 1.3605268246546858, + 1.2814014600764003, + 1.2685466424499003, + 1.4681717006865869, + 1.2600838584300658, + 1.4389079452820694, + 1.131440291719907, + 1.3226454812965076, + 1.314815319829126, + 1.2031198248292208, + 1.020242119735758, + 1.2388463094381525, + 1.4785298607690716, + 1.1304448490477426, + 1.325911863056537, + 1.275786775049858, + 1.4759037055960031, + 1.1374733948252362, + 1.3491531880916785, + 1.2750061525511323, + 1.1788543056025789, + 1.0070962391482796, + 1.1219213652501547, + 1.1714805905516201, + 1.0272560081897482, + 1.1079421833673087, + 0.9930668480509472, + 1.0571314705731196, + 1.0085369277320821, + 1.14072691824546, + 1.219939631582258, + 1.2427230415431056, + 1.354539185128477, + 1.0177098452505464, + 1.0384182331456, + 1.0802999948430931, + 1.0614515257983943, + 1.1925450233240902, + 1.0133460398518455, + 1.2244434208484578, + 1.2115189866255414, + 1.1547806253017476, + 1.2790090980239452, + 0.9461642671612449, + 1.0275757074383784, + 1.092275076095123, + 1.062508373931139, + 1.1265783578233348, + 1.1827122455666501, + 1.1613609458973433, + 1.143061201850479, + 1.2751462161973568, + 1.2931849409424514, + 0.9328559232740309, + 1.088840638949694, + 1.0526588862139576, + 1.0905758966155892, + 0.946754755254189, + 0.9022976114337569, + 1.1814912295031055, + 1.1347002670272, + 1.1727343231756533, + 1.0842037423155868, + 1.0997537872694993, + 1.2160572974639305, + 1.1215929276420438, + 0.8785799644737642, + 0.8440477339831243, + 0.9069769182949582, + 1.0198007138023142, + 1.1421646389259947, + 0.9724792169860097, + 0.9652890026591983, + 1.020386669910304, + 1.1551171288786215, + 0.9433652141963614, + 1.0445832928218088, + 1.0551037758022936, + 1.2746311512169928, + 0.9640410729118442, + 0.9161594196302445, + 0.9392943794009235, + 0.9602250594383989, + 1.0259932428595517, + 0.9316820172740832, + 0.9581540643496673, + 1.0328639363893366, + 0.9569689671401946, + 1.01080819221064, + 0.9631112424548268, + 0.8976967653407925, + 0.7789411989372412, + 0.9384067864179457, + 1.0468970769046315, + 0.8493271137683258, + 0.8812434447179509, + 0.9235864571803316, + 0.8860407189851398, + 0.8546362561490463, + 0.9577105751513609, + 1.032360905728204, + 0.9374268630965531, + 0.8880196703621255, + 0.9043431616412926, + 0.8967453297825695, + 0.9616013353840912, + 0.8814397901628171, + 0.8568272483327868, + 0.7339535768643098, + 0.7805856372377459, + 0.8770755992544892, + 0.842030273186262, + 1.0251382448884694, + 1.000922838521154, + 0.9047334019346192, + 0.6691618648447649, + 0.7903423894243815, + 0.8445181341406924, + 0.9362907938279964, + 0.7692416308179774, + 0.8027502701627109, + 0.766770644249672, + 0.7535945701511902, + 0.6335215712788181, + 0.8989535333889583, + 0.814831416935742, + 0.9090838775772195, + 0.7786637997802093, + 0.7228608304258125, + 0.6377839145012171, + 0.756776836631572, + 0.5638236246937145, + 0.8209271516968323, + 0.8772980372708585, + 0.7609292113867975, + 0.646679152220127, + 0.7056826332728581, + 0.7870280806088672, + 0.7656731624964206, + 0.6602967190045951, + 0.9759055715815632, + 0.7284452873397184, + 0.7041745931485941, + 0.6930903209241852, + 0.8118884983429221, + 0.7369710513488974, + 0.6339927972850291, + 0.6675667012533805, + 0.6489240745526683, + 0.6052211295013995, + 0.7495291088710895, + 0.5910884509866268, + 0.6794847509398021, + 0.6216905555636307, + 0.4878788589500933, + 0.7312432880196639, + 0.6466653994936483, + 0.5625000573515175, + 0.6531556819834632, + 0.6906604661224235, + 0.6105569067640161, + 0.5212878576285287, + 0.6649587517283204, + 0.5473442451292853, + 0.623539680656794, + 0.5370446016487905, + 0.7284514904198879, + 0.7409323483660358, + 0.6978221804897569, + 0.46803300480534427, + 0.40148511864228453, + 0.4675134467521437, + 0.7810482263320232, + 0.6597670601533716, + 0.750232320684286, + 0.6303938088732242, + 0.6668919759967099, + 0.7065702172924627, + 0.7133279976328609, + 0.46061189857058193, + 0.6888766319303049, + 0.4229361380591168, + 0.6512448124621674, + 0.6658088039482428, + 0.5518130697985922, + 0.6306650234490709, + 0.43343770135487125, + 0.4058585525043145, + 0.6879394626169282, + 0.6142859704657601, + 0.5412973064616524, + 0.44771552208515764, + 0.5079794803851256, + 0.49895186814791365, + 0.4796331924247307, + 0.5368615207511853, + 0.5286385518382511, + 0.6552757828788999, + 0.2803737773965082, + 0.4723726252183199, + 0.4309558872998944, + 0.5723483518368471, + 0.5967600625663555, + 0.4331606565111115, + 0.3204776402199807, + 0.43086711420247625, + 0.4726018556713063, + 0.5436376251170512, + 0.3663475314389461, + 0.5176783719384679, + 0.5223820538063526, + 0.5898953820982751, + 0.37949800706647546, + 0.585192831033735, + 0.5589183435054538, + 0.38848336601480077, + 0.4798218966309767, + 0.6627056442630318, + 0.37527951922552044, + 0.5461322959976218, + 0.436102303728363, + 0.2737740495958849, + 0.41446080231186516, + 0.5502296848058389, + 0.30625316023317534, + 0.430765667267877, + 0.48241426835673684, + 0.35749611685030686, + 0.43286683010024646, + 0.5519249098799844, + 0.5275362199863105, + 0.5624265617112737, + 0.3161816258272748, + 0.38739592548592355, + 0.4817847637303145, + 0.37174530897434177, + 0.5382838759758712, + 0.35194556139443833, + 0.37899883719213434, + 0.5525794796102288, + 0.3041830777258805, + 0.3556303765088004, + 0.3966891353256932, + 0.4670845471023615, + 0.36591360175633325, + 0.2943184854337672, + 0.5127644919594679, + 0.35085741189908065, + 0.4581555311391163, + 0.404485001673097, + 0.33669409150937823, + 0.2056037379309139, + 0.44810361747182675, + 0.3783441523063011, + 0.4437309252808459, + 0.3330261703299712, + 0.38088441829596326, + 0.36293183685526376, + 0.3323316385422831, + 0.26231348279895245, + 0.46459420230698933, + 0.4339651680987875, + 0.2612275007262789, + 0.07522143991318342, + 0.5764778887572805, + 0.40280054231230306, + 0.20456340547807372, + 0.12674951654368585, + 0.2212647902230422, + 0.31139897749704326, + 0.38026724007589774, + 0.2290029756022749, + 0.2595166634799653, + 0.30217874763814795, + 0.40874802557093676, + 0.3569977979364986, + 0.3397541937123572, + 0.3719359032013454, + 0.3129847484588311, + 0.3904810385779419, + 0.5562570691852625, + 0.34115303676446423, + 0.4232361818724374, + 0.2827044127224566, + 0.4045010899265413, + 0.4758563519488854, + 0.5383261214322108, + 0.3252042088219995, + 0.2948486281508286, + 0.4826074131168746, + 0.32913472814681094, + 0.426660749618504, + 0.22702530220364445, + 0.21836870863903002, + 0.22865973632331954, + 0.09582984085804544, + 0.17303408091473532, + 0.4052659250746826, + 0.351953271959713, + 0.265181443859523, + 0.2922943360078962, + 0.2929986830305831, + 0.4375063074221513, + 0.2764523504347878, + 0.3036470258178471, + 0.2814643282210441, + 0.3422113032854847, + 0.44795205771993474, + 0.5273386740302906, + 0.3594574500093799, + 0.3128143839708067, + 0.30714714537461485, + 0.2498515209957256, + 0.6110611353903679, + 0.41306594984362544, + 0.15884597916406704, + 0.19199471122261763, + 0.36625817591067145, + 0.21624781099591472, + 0.3429454777134231, + 0.40394935248864516, + 0.08442233029439555, + 0.17071105877723297, + 0.16292926109128586, + 0.18409955689476615, + 0.2621982767437888, + 0.10320862197722058, + 0.005015878853652178, + 0.13192536360062684, + 0.30920140469065927, + 0.06278669206350634, + 0.2294418060255711, + 0.10185718606600408, + 0.004048762336684081, + 0.1924042460616434, + 0.02416214375713069, + 0.2500735087424807, + 0.07514087537935246, + 0.29536193991194637, + 0.20249973142565328, + 0.276688639620234, + 0.22184806788036554, + 0.020119840435982, + 0.1374961019046056, + 0.498717765922344, + 0.34006158063862396, + 0.11353114470228914, + 0.16711239905489192, + 0.25382038999580614, + 0.24711190306521638, + 0.2608360966957386, + 0.27622948083405835, + 0.10560802549653327, + 0.2942710271062941, + 0.23345911684496234, + 0.16489453256377135, + 0.23406549411982738, + 0.37535957134287834, + 0.3742897907883198, + 0.1659747497392888, + 0.15338522613345262, + 0.28084790765700063, + 0.1742488680325846, + 0.22036954895276886, + 0.0817177052077574, + 0.3186067292984612, + 0.19310844570269586, + 0.20007809951083597, + 0.07773650995185821, + 0.1725110980071529, + 0.23788994347305065, + 0.1150106538260892, + 0.32046050424324835, + 0.3515358333052109, + 0.06098022426045005, + 0.2606051014019454, + 0.13638764398001182, + 0.12802828005614847, + 0.12560081318380795, + 0.026883735472489234, + 0.36217991393382737, + 0.20263850043507853, + 0.3111017569589774, + 0.0487835008012559, + 0.17213510421557002, + 0.2747406559968963, + 0.25122231795824534, + 0.1014339591711298, + 0.2786037996902317, + 0.12218689936553534, + 0.30806715143883123, + 0.14904349757656915, + 0.3671697304425882, + 0.21978230705655552, + 0.10395678340733316, + 0.15993336512836948, + 0.20433505730777418, + 0.28525337306336906, + 0.19497276704248312, + 0.19812155845502263, + 0.27635118944013565, + 0.2400111941213505, + 0.07111627853363131, + 0.30712731740374233, + 0.3317449240024787, + 0.13520491698229883, + 0.08209448588742274, + 0.13454789025851127, + 0.1796484347702387, + 0.36357752522536524, + 0.2666147797057642, + -0.0010157758493243019, + 0.33530730123289976, + 0.2173724146560582, + 0.07272431037097477, + 0.2660999337252869, + 0.3237167535978942, + 0.3563131446065799, + 0.2951986406084004, + 0.16826613726072884, + 0.0520912340954115, + 0.15695366115894294, + 0.23780103739709202, + 0.2804550645768606, + 0.24187026033400993, + 0.2813453509481238, + 0.005461843724736487, + 0.1927565081643004, + 0.15170012910834274, + 0.2338491408267956, + 0.046584118518669365, + 0.2749713320330944, + 0.1488373644490012, + 0.2771723950565502, + 0.35495480977422467, + 0.43447369749351805, + 0.3544196209123801, + 0.3322343132138663, + 0.1083425316893741, + 0.2919163802837011, + 0.08196181763912366, + 0.2169520094351914, + 0.31520370905043293, + 0.22154924173049645, + 0.14006534623436767, + 0.09439808552062415, + 0.08580242938873811, + 0.4217569864653433, + 0.3480215927331132, + 0.40742973265283355, + 0.14437513139486924, + 0.198414330873165, + 0.14260732238593757, + 0.3010816589045132, + 0.2745294365242514, + 0.26143195410961045, + 0.24602434072459728, + 0.2891445023216909, + 0.26204075720656245, + 0.18722553509942652, + 0.3282116307885396, + 0.047600006395387, + 0.2010661451141813, + 0.1723852313975541, + 0.2810898673492326, + 0.32074026438041037, + 0.11929362404562255, + 0.28490209040131026, + 0.31995047524848114, + 0.20012029960558037, + 0.28754108123703687, + 0.4406943535588899, + 0.384195444650523, + 0.27179838768280246, + 0.2750842209482546, + 0.22790152636054176, + 0.22811231655811542, + 0.33539201560718035, + 0.3778407398918391, + 0.18004795069939156, + 0.09054907922599367, + 0.25034560668917194, + 0.2174657398705595, + 0.389882115186428, + 0.36614269764839746, + 0.2294480768253562, + 0.2470697328039095, + 0.2546197431293915, + 0.12632325807026762, + 0.2447611308127298, + 0.3612787832938816, + 0.28881607367779444, + 0.13270868331264915, + 0.4312567462847281, + 0.39543139542936323, + 0.3755606313661931, + 0.34201012101510236, + 0.2188676295626812, + 0.27182888699550817, + 0.30246851822969667, + 0.49737562234444443, + 0.42809375435706554, + 0.30491930572717, + 0.49853015701368625, + 0.5144584892329097, + 0.17789569976005504, + 0.32329636834612574, + 0.2674255656561729, + 0.37934179751780583, + 0.29023200052162523, + 0.3040600951034616, + 0.3086645071639999, + 0.41373768057813776, + 0.362606397615208, + 0.5098334046523026, + 0.301967436072869, + 0.49458645163474313, + 0.24911083354964222, + 0.2857548061207497, + 0.1989726733073735, + 0.4050071692556243, + 0.33033227079655475, + 0.32398133263178064, + 0.3198910090368038, + 0.4024201798106803, + 0.5435637524077092, + 0.5147605329057776, + 0.4385004081294442, + 0.4013899699322915, + 0.4078333975036178, + 0.35161282146048195, + 0.43096332316030517, + 0.3179432606851851, + 0.3327509007732852, + 0.4720599293182949, + 0.3891111521797534, + 0.1986346878259416, + 0.48386530979617803, + 0.4503461850594831, + 0.4815651185263048, + 0.4218892591022784, + 0.6490190766746429, + 0.614027868027527, + 0.35762095881322586, + 0.3739291340884705, + 0.3872609398837923, + 0.41628976331598383, + 0.251847825016587, + 0.49522993351986344, + 0.35321651574751944, + 0.41222701330592404, + 0.45018806668445976, + 0.4653856373283201, + 0.6354567057619533, + 0.45614860154637554, + 0.46674562068439346, + 0.33325323190196626, + 0.34448319507774283, + 0.3114884961986879, + 0.4128856503060497, + 0.42544932448900263, + 0.3836620485056487, + 0.3661586106799884, + 0.4217806432285899, + 0.49782401526356646, + 0.5632006974316353, + 0.3236085820775706, + 0.557937273348726, + 0.3423595955962187, + 0.6183044522563627, + 0.5833014187903443, + 0.40582500601251026, + 0.5252589640450166, + 0.5959854479242103, + 0.4572621784801986, + 0.5071315280933465, + 0.5305225166583932, + 0.549983231125671, + 0.5677685623689297, + 0.522882420512559, + 0.5823863839439606, + 0.5732592945624171, + 0.5747554240170059, + 0.43244414548928484, + 0.6231987274564424, + 0.4831708068895224, + 0.7474940584651781, + 0.5794491369462871, + 0.34707561464001585, + 0.6398265953535421, + 0.44477137545521556, + 0.6347160483500014, + 0.6418353932974733, + 0.8444055203561972, + 0.46311188655925856, + 0.6605555997314376, + 0.49232052911318536, + 0.7283258683219017, + 0.54765870823627, + 0.6823656793665794, + 0.6622580551548867, + 0.4813165703272717, + 0.5622877870496508, + 0.5226870073637876, + 0.6438130897018061, + 0.7558303743373544, + 0.5759512506432701, + 0.7315959681577839, + 0.4806721164893355, + 0.5746940537651385, + 0.7576886057191821, + 0.5010129069986257, + 0.628184711103943, + 0.768434274437493, + 0.5634799848223973, + 0.740768232749048, + 0.5764378045959123, + 0.49049532217659525, + 0.6972794040740171, + 0.682585446979619, + 0.5950283326897187, + 0.8359073559754634, + 0.6606107680146341, + 0.7545009410504397, + 0.6514156884740911, + 0.5992864440568826, + 0.6984678091318376, + 0.769911549551487, + 0.7395658225480645, + 0.7309212218466455, + 0.49218135420874787, + 0.9034845350496299, + 0.7517191301527991, + 0.7047130980311276, + 0.8981718136964394, + 0.7607743705950905, + 0.7495370737262523, + 0.7353107030492934, + 0.7949116195668842, + 0.8883017643163862, + 0.9020603626277663, + 0.7367128144992074, + 0.762581243996571, + 0.8039984486644159, + 0.7307998890919124, + 0.7769700871795414, + 0.7250354689405608, + 0.8391140912830396, + 0.7938554149566585, + 0.8230871161830918, + 0.7752403476392878, + 0.6858527726022581, + 0.8435752154821157, + 0.9061023448232755, + 0.670839903443853, + 0.5904795493807016, + 0.6582226378342245, + 0.7626158902478014, + 0.8495434324110797, + 1.017325075887191, + 1.069500004321597, + 0.7101974631563513, + 0.9274419352929689, + 0.8482590293957243, + 1.032745689079972, + 0.6819865379995903, + 0.8624106319075435, + 0.9178755617502163, + 0.812342004422402, + 0.8669566338809318, + 0.852741758510846, + 0.9568592888360957, + 0.7471862866223153, + 0.9728417499264187, + 0.8957949562196021, + 0.7514823773395796, + 0.8395806424550658, + 0.8238934074367399, + 0.7888603720326647, + 0.9833973550552046, + 0.8346959265686784, + 0.7405609913873284, + 0.92470592018997, + 0.8207906957058175, + 0.8423689385420842, + 0.8927748971704452, + 1.0047626350893097, + 0.9640578253273939, + 0.8625178838249286, + 1.0019514012974635, + 0.9218071423927459, + 0.9674423305613269, + 0.911244428342077, + 1.0225259534467175, + 0.9759763728460686, + 1.1245388736640103, + 0.9447513049133013, + 0.9573037451203109, + 0.9298397701435047, + 0.9027805626396049, + 1.0756321728616984, + 1.1441211155466948, + 0.8795668645697026, + 1.2782464176146204, + 1.0364528220929143, + 1.0799577008528487, + 0.8706066115824775, + 0.9487250381737068, + 0.960407589137142, + 1.1292562961369412, + 1.0594376487499917, + 1.207363390030579, + 1.2267384183297563, + 1.1510982332064645, + 0.9973566938633871, + 0.8836761136792821, + 1.0733370409990268, + 1.1257938320894039, + 1.042071470837352, + 1.1455765022992754, + 0.9537180529665423, + 1.01075438776346, + 1.282763905143722, + 1.0647156353795848, + 1.0676413409370684, + 1.0964578756862642, + 1.0922290478163175, + 1.0534791813343307, + 1.1634111787692107, + 1.3154845278181244, + 1.156163847945855, + 1.2768539259487046, + 1.011122594954446, + 1.079779525622413, + 0.9143444029140222, + 0.923702369648347, + 1.173196716046904, + 1.1694867872965804, + 1.0760418259100568, + 1.0230780653089935, + 1.2394008414394924, + 1.176605913629914, + 1.1016315270062542, + 1.2366286616303588, + 1.19523019640395, + 1.3588676835834441, + 1.220942997798384, + 1.4412967267031256, + 1.071044114207776, + 1.399691032520056, + 1.1899976237430245, + 1.1278028129743867, + 1.151588536388638, + 1.3017219075829642, + 1.2474285362338975, + 1.3218430603489204, + 1.151251808930213, + 1.3259923773216293, + 1.3936729574652973, + 1.3582941930595709, + 1.3346844453146547, + 1.184733043729157, + 1.362687294974049, + 1.1719510627229794, + 1.1475828033130506, + 1.2498434580772109, + 1.3067593922052236, + 1.2931651070929766, + 1.214468595787028, + 1.2376716512853285, + 1.3455960376841116, + 1.264811301759108, + 1.2356811207092162, + 1.2440206780073335, + 1.2868293356400202, + 1.470993839325387, + 1.0552166510177219, + 1.1962054898816028, + 1.3530273772580783, + 1.2996993559359433, + 1.1544867179621363, + 1.241702278045526, + 1.4116569803747694, + 1.2365426745930166, + 1.4206706417746382, + 1.274627677508057, + 1.4426897836944057, + 1.37610896305247, + 1.502649139651739, + 1.4018315484816108, + 1.3613808174132667, + 1.274815069400001, + 1.3925262260974716, + 1.5918589696415493, + 1.348068018313391, + 1.321589603013689, + 1.3556341883836667, + 1.3737246843720081, + 1.3635344557473672, + 1.7046646530327356, + 1.5225442346081248, + 1.3314783863834088, + 1.3129025562595518, + 1.366854722355782, + 1.3668526610284497, + 1.3745614923209575, + 1.4486163895251947, + 1.5291186836218336, + 1.4241425269969803, + 1.4278162062493494, + 1.506894635370247, + 1.3480823167797225, + 1.5812748024539736, + 1.581666293360509, + 1.6592869406223445, + 1.6209111657118045, + 1.4587325728008862, + 1.4117830412547492, + 1.4919116035757582, + 1.4310403706998125, + 1.5117945309866887, + 1.6157224182568672, + 1.46625130274092, + 1.4810851880961167, + 1.493670338902762, + 1.5713611006974162, + 1.4514251137850862, + 1.4634814520671673, + 1.6576036628481428, + 1.62778287961939, + 1.4880889964255544, + 1.5279710563183202, + 1.5349663169285512, + 1.6471124729239779, + 1.5226901675930191, + 1.5982002032481069, + 1.5890485583259129, + 1.7060833907128514, + 1.5143088405511682, + 1.4730778352534903, + 1.719205629569155, + 1.6638919661940037, + 1.4463955558481945, + 1.559946113130016, + 1.698036017868301, + 1.515712057318047, + 1.6120826599127747, + 1.6790494110552725, + 1.919356128698729, + 1.5741786314710995, + 1.6033157236695865, + 1.6543291352654514, + 1.5537113472756257, + 1.648465387459966, + 1.4972902493019005, + 1.7295647517030526, + 1.671155366406168, + 1.711350750338021, + 1.6945600431233974, + 1.8416533678115823, + 1.7469506172195648, + 1.4800883023327809, + 1.787055364456978, + 1.6560975439242946, + 1.6445702139205305, + 1.656454775446676, + 1.5832763338766322, + 1.7530191538990036, + 1.6016974942026707, + 1.7849028061841206, + 1.7362988072718906, + 1.681014618223608, + 1.5205032989126879, + 1.671209596167479, + 1.6227045170611196, + 1.6007674123105489, + 1.645030730378593, + 1.6758386565000318, + 1.809413882866085, + 1.5946631482516924, + 1.7027499326113864, + 1.6298655646128575, + 1.7540720191155739, + 1.6122202804961252, + 1.8825513130304456, + 1.6948273330321562, + 1.7472059367701245, + 1.921334104262231, + 1.69971385632801, + 1.7002689858364968, + 1.8262131848350305, + 1.9142979185165376, + 1.706480282713048, + 1.7327617260666794, + 1.832741489195825, + 1.7205709657309471, + 1.7189814005750645, + 1.8528627352764375, + 1.8365263557103388, + 1.8323753518671326, + 1.7957687986031041, + 1.9208745297972354, + 1.7682112025492036, + 1.685868147101932, + 1.8130295898966968, + 1.7780872530681706, + 1.9517849931083116, + 1.9084813876111089, + 2.0044715659248777, + 1.8297321964541793, + 1.752349579137291, + 1.8137427745983252, + 1.9698862553324825, + 1.7763181052684116, + 1.8729568393820857, + 1.9187760461999857, + 1.9197702119612337, + 1.9791326845145947, + 2.073658541161329, + 1.9473037933550785, + 2.027560492389654, + 1.853689037685078, + 1.9424055940387028, + 2.0003225267567295, + 1.9400535604971885, + 1.7599324024492489, + 1.9515927464462934, + 1.824014779229893, + 1.9825463750244943, + 1.8893384456910554, + 1.859277374217882, + 1.7973447738427004, + 1.83992483081912, + 1.9390984385381282, + 1.9898565537269726, + 1.9437162072932361, + 1.912969890708973, + 1.818980325180432, + 1.8562303803608882, + 1.9777921509137455, + 1.9994179407783297, + 1.8688076119922787, + 1.747171555052705, + 1.7841887125795672, + 1.8064304628007979, + 1.9044514864234223, + 1.9273686563386792, + 1.858728246306009, + 2.03054835604163, + 2.0342800388932862, + 1.993677589174543, + 1.9437154775813563, + 1.9376320961759264, + 1.7115444710098136, + 2.183611239556047, + 1.9144557666028845, + 1.8534856287188681, + 1.963564863040614, + 1.9765310644394851, + 1.9474765274502717, + 1.9970233635310382, + 2.131842917096564, + 2.3673123492093637, + 1.9779983822595448, + 1.9812667405267153, + 2.1323537627922575, + 1.9835895076553038, + 1.90354800868135, + 1.9500123121438102, + 2.2369621808543743, + 1.9601965474385639, + 2.013470748029745, + 2.0216271019868035, + 2.2035894526219524, + 2.1105982072544487, + 2.046571138846656, + 1.9544574038681148, + 2.01732726744516, + 2.0044073638482076, + 1.9160139675012364, + 2.2260327020040798, + 2.2245640420398387, + 2.233339996019682, + 2.161319565621436, + 2.0292414399173584, + 2.0315301946894717, + 2.002601769105284, + 2.0668441300037506, + 1.955332365274728, + 2.2803476329045207, + 1.9874545856618349, + 1.848036340447674, + 2.037136125759257, + 1.8916668702251545, + 2.0897371208003985, + 2.054278884615401, + 2.1383323204651026, + 2.2664318407693798, + 2.033942758275328, + 2.1388653850838404, + 2.0193358316104253, + 2.0486117221808895, + 2.05866849600707, + 2.139331419286836, + 2.056166498371678, + 2.142666471274206, + 2.123143486838254, + 2.210655357548754, + 2.2502129099707564, + 2.1421876848900108, + 2.098988538301672, + 2.0720121757174086, + 2.2658041152807886, + 2.1902704620322644, + 2.1506805816131105, + 2.151675861407423, + 2.0799628238600727, + 2.2763587293078964, + 2.139447560522961, + 2.0869981119823775, + 2.195441658692335, + 2.152666872547667, + 2.0664089567733193, + 1.8905768810875112, + 2.2793975703343015, + 1.9825247270911552, + 2.0437192264896096, + 2.266274306120264, + 2.067875793945718, + 2.076014383867943, + 2.13014399226767, + 2.024881133815819, + 2.053323224597733, + 1.9468332372635362, + 2.173641444551732, + 2.172148090665144, + 2.1766973498887863, + 2.0270109394125244, + 2.261703254293289, + 2.128623120798517, + 2.1263891778067494, + 2.1690298046009957, + 2.1202657943613183, + 2.1582331088221696, + 2.09642119090684, + 2.189663119690007, + 2.1598588053988683, + 2.306795210526616, + 2.162056061014976, + 2.050337653517132, + 2.2780265031628977, + 2.0241780016993407, + 2.3095134666750066, + 1.973834676984024, + 2.1095900995906733, + 2.185614360152478, + 2.14226007052794, + 2.1833946042192407, + 2.3590191656091677, + 2.1991133745447904, + 1.9780357239693953, + 2.222270507720364, + 2.0778359157311335, + 2.2363108759804087, + 2.0114437950442015, + 2.1985805209953786, + 2.1851090370837665, + 2.3220284983822572, + 2.2475039346173857, + 2.45566991265522, + 2.167872889797478, + 2.2437066700105146, + 2.023719600058331, + 2.245567054641756, + 2.238325886576545, + 2.268368661794595, + 2.1996984459638993, + 2.1401575994948616, + 2.175326486811436, + 1.976794171511594, + 2.003310951052227, + 2.2306309766122236, + 2.175384608256207, + 2.190617850936924, + 2.3419497042704935, + 2.130326378198493, + 2.2664382980247275, + 2.1599925803062767, + 2.154907690264575, + 2.0578241777607573, + 2.0681243996206256, + 2.2598129212815588, + 2.1801875026217292, + 2.308217341073853, + 2.2654806907948486, + 2.2821715924250494, + 2.0527076244466738, + 2.2629674281863514, + 2.2931898850498498, + 2.0600304277719137, + 2.1537021840149984, + 2.111776309303901, + 2.099327825327333, + 2.0762450950646345, + 2.1881001968573877, + 2.071691676287364, + 2.1879858744608605, + 2.180393568595171, + 2.2639907892549136, + 2.3177451655965617, + 2.293180710530273, + 2.1350065418776523, + 2.3048110615191306, + 2.3378722407676396, + 2.18775192282343, + 2.1808638831764493, + 2.1883178342540117, + 2.3273882991713526, + 2.4028052171572085, + 2.2561187690010778, + 2.363132570312508, + 2.2942385334090147, + 2.323695193620845, + 2.182568845159106, + 2.2582541173276667, + 2.296969525642424, + 2.28748922794179, + 1.9549565897171681, + 2.205201869937558, + 2.2320443853200644, + 2.1549194502908544, + 2.4085645612448268, + 2.4101466433331304, + 2.317442954037164, + 2.2640789279971454, + 2.1629348350535587, + 2.2340819743006617, + 2.198992625305786, + 2.2952353080436776, + 2.259406431410144, + 2.333201452739315, + 2.078883448729898, + 2.2912895712483143, + 2.076554335373697, + 2.1919941444947804, + 2.307271785398983, + 2.279276487329718, + 2.280796403124957, + 2.1073423071520088, + 2.2670223071532027, + 2.102725127002156, + 2.15750801441591, + 2.5080490909992044, + 2.2287874202382576, + 2.0524619065207843, + 2.190444770439703, + 2.192368794970824, + 2.0215049571778825, + 2.1303252680111675, + 2.246228660221849, + 2.119993900241324, + 2.149167979778268, + 2.2749702746649128, + 2.1853230376964268, + 2.2915258040476756, + 2.230999983862631, + 2.150515811422563, + 2.4083613995075903, + 2.0139156206281528, + 2.1323331287649374, + 2.214919311054271, + 2.0530957114244304, + 2.133574263246862, + 2.153563306642686, + 1.9894506241187009, + 2.1986414542329946, + 2.082265876136038, + 1.9585251726344057, + 2.11358420214946, + 2.029667987618804, + 2.0874991340073747, + 1.9930292124512083, + 2.2654459903457513, + 2.2843787051500475, + 2.156860696484632, + 2.146865770479279, + 1.9868837838287534, + 2.211552237677528, + 2.123158337048632, + 2.173465323768346, + 2.199290699878339, + 2.0788582118781482, + 2.067297837925286, + 2.314147151117736, + 2.159389703369552, + 2.110976697852835, + 2.2607512861549934, + 2.1625156553009575, + 1.9663722174373086, + 1.99700892512177, + 2.189026931651355, + 2.252851863196992, + 2.26420251011921, + 1.9322846002780085, + 2.2073399203768505, + 2.060711163040428, + 2.165125739175636, + 2.186721797943879, + 2.1416336290779374, + 2.111502081758696, + 1.9943135615977543, + 2.245363128257461, + 2.2034702980851955, + 2.1828339260515275, + 2.108857058974905, + 2.2783775599111973, + 2.1236310982110473, + 2.1523015809596653, + 2.130611436902874, + 2.1403548078125403, + 2.0901381765554565, + 2.1498326241724772, + 1.9817247807071956, + 1.9979507879416767, + 2.1032326474153575, + 2.234593743580862, + 2.0513402582493145, + 2.0106787560444, + 2.008915892704373, + 2.0899456054829586, + 2.0164392760368623, + 2.0386490760395057, + 2.046172370046207, + 2.1495884232473568, + 2.34478404766636, + 1.9240034884912496, + 2.022020376663525, + 2.0079142335104487, + 2.1656565116333613, + 1.935520765779754, + 2.046173067703049, + 2.0325037238830044, + 2.0055746336570874, + 2.009849810164879, + 1.8755270123641494, + 2.0786955654591224, + 2.078408300736777, + 1.9931328080638258, + 2.0683412122090608, + 1.8472365621937692, + 1.8481688305368302, + 1.785416915189148, + 1.720709754553104, + 1.9455775471152938, + 2.128079721474557, + 2.0871857985492075, + 2.104714086998076, + 2.112403896109895, + 2.12156910068075, + 2.0178479608854536, + 2.124456651905932, + 2.0332436408903285, + 2.093852761591266, + 1.9722242107368084, + 2.015841562389882, + 1.9865097020926785, + 2.008704728802091, + 1.9058045174046543, + 1.8790438136085585, + 1.8324259731531753, + 2.1113372345840893, + 1.932081415079182, + 2.0158982285585334, + 1.9610598209254013, + 2.0144268928608198, + 1.9683256862815368, + 1.9390531143058323, + 1.8562396259638179, + 1.8653829742780497, + 1.9808134385788945, + 1.7347204763345672, + 2.0925309004840256, + 2.007779134134971, + 1.993783920297525, + 1.9458001417051543, + 2.016631297376853, + 1.924300347099051, + 1.9136407481014321, + 1.871953065057762, + 1.9762465143559935, + 1.9575866262619241, + 1.7086881831686123, + 1.7713668129364653, + 2.005253064630796, + 1.8564304501347395, + 1.758184513232378, + 1.8445509771414283, + 1.9310308931182625, + 1.8617454586439512, + 1.8929767559072976, + 1.8147809386818499, + 1.8312672613787446, + 1.7688411441325997, + 2.0264776910865754, + 1.83296066998275, + 1.8922107012100517, + 1.7556069164878598, + 1.867247953926515, + 1.915321428550323, + 1.7358593978798809, + 1.9249287816899212, + 1.9255680793244743, + 1.8108983485743009, + 1.869624062442307, + 1.7644712082480403, + 1.9352906818514886, + 1.9497000612522126, + 1.8524094405115392, + 1.798854165240273, + 1.8071187180496586, + 1.8396229846391479, + 1.752683988095371, + 1.6492969363210492, + 1.8606363310167324, + 1.7810773271826195, + 1.7790774188195284, + 1.5985930163814535, + 1.8992512496315817, + 1.8938225391270376, + 1.7202063408093453, + 1.7463701112508192, + 1.8932429546919376, + 1.763984102142402, + 1.7017317283651547, + 1.7531204026277354, + 1.614756647621579, + 1.9148608830312084, + 1.5698491114560218, + 1.8107888633286353, + 1.9084083685841096, + 1.7443440542606612, + 1.7736300640636393, + 1.7350131670512572, + 1.7381322220541364, + 1.6731482917077591, + 1.6387285170476507, + 1.6032981115803562, + 1.7842348786628235, + 1.4331104551707587, + 1.7308829365669307, + 1.6775083691351445, + 1.9967277009899922, + 1.737695360091829, + 1.7322294262902524, + 1.664125679830772, + 1.5720842833631827, + 1.5638685888811579, + 1.5935034077756767, + 1.7458979847652891, + 1.6682352452070812, + 1.685883763771961, + 1.645823735035221, + 1.6790321300682827, + 1.8588237944696853, + 1.7075752461378135, + 1.6358632842304384, + 1.4927930535017309, + 1.638561589476657, + 1.4951233921069234, + 1.6732241079943146, + 1.57875484558875, + 1.4017204973247148, + 1.5649545283328408, + 1.5612358211504023, + 1.60280636885736, + 1.5463357482665432, + 1.6815486077698418, + 1.4298211952149222, + 1.7079847713751164, + 1.6014182263938972, + 1.7395176065704567, + 1.4584149085215556, + 1.623442992529179, + 1.6101884254717287, + 1.5659850379662548, + 1.6019447486307676, + 1.5154158222850562, + 1.4517516138944493, + 1.679738345299574, + 1.8170462473237652, + 1.6631872928311555, + 1.5081754939708687, + 1.512479450898408, + 1.463759118363894, + 1.4678302783103692, + 1.5946016615592902, + 1.4742755651012478, + 1.4801131141122459, + 1.635580950005872, + 1.4827048550861632, + 1.2981176077633718, + 1.5804492136954431, + 1.3556159523220384, + 1.4801809326748385, + 1.5931356227044622, + 1.533944822269907, + 1.4520606441415915, + 1.418170653611838, + 1.310850414718321, + 1.2349971755857165, + 1.5279297382048942, + 1.5753339900665637, + 1.331063721241381, + 1.405852516063871, + 1.4019957065444708, + 1.436809030321721, + 1.2881808046286969, + 1.3186919106973205, + 1.4165630056309726, + 1.3993373629979045, + 1.573925158043394, + 1.3819600416145674, + 1.4673736647349287, + 1.3602784043765048, + 1.398145630281012, + 1.3880605885943722, + 1.5072281165237755, + 1.416880940665464, + 1.6773902037473283, + 1.2498552316833458, + 1.4813842597174367, + 1.3317106323657146, + 1.267077447210572, + 1.4803930191505303, + 1.3740317245485787, + 1.5151506306904383, + 1.397156759132535, + 1.3066844573962533, + 1.3104822719151867, + 1.3587620871895474, + 1.0534944342343657, + 1.2831700836157585, + 1.2050430861182244, + 1.428967331581077, + 1.2311843081866811, + 1.357493250298853, + 1.2871537063193765, + 1.3093855525873057, + 1.175809751068986, + 1.233006519186857, + 1.1355115341483466, + 1.4664443812813885, + 1.1569137074306557, + 1.3831543003513167, + 1.3322897407833747, + 1.1993818162050327, + 1.093259575867059, + 1.1051049622580467, + 1.3485902234540235, + 1.2920255873356195, + 1.258644248709252, + 1.201302002567142, + 1.2745524426316222, + 1.1879854074973204, + 1.3155239833987145, + 1.3213321281978283, + 1.4302814488063493, + 1.0513182753003103, + 1.194429957260664, + 1.1502037116968373, + 1.2867377824481492, + 1.2216988785133578, + 1.1332233327236825, + 1.3037904498540152, + 0.9670004145707547, + 1.1876106803596471, + 1.199574144596866, + 1.2997894194308248, + 1.0784074256597034, + 0.9352800582930115, + 1.2517603871692646, + 0.9497092331581927, + 1.166974502364498, + 1.1100175332436484, + 1.2681603427117314, + 1.2384138139723417, + 1.1138685070487648, + 1.0315859815608546, + 1.0093158028213836, + 1.0894190899757956, + 0.95079211966495, + 1.0777331567475337, + 1.078615452494352, + 1.0121955648127858, + 1.1546771897897048, + 1.150689092735286, + 1.0003801882456587, + 1.0266796641059355, + 1.0699380703333539, + 1.0281203336061195, + 1.1440953230720685, + 1.2065014268686312, + 0.9985406523961989, + 0.9870814505090254, + 1.0759679335431283, + 1.0122613124571975, + 1.1196112226477823, + 1.0401706428213255, + 1.0678006655857892, + 0.9380166652944327, + 0.9863654685762815, + 0.9805144753911395, + 1.0925725324950377, + 1.127339268054066, + 0.87949235429953, + 1.104038240723479, + 0.8572132832117837, + 1.2697575585481704, + 0.8853575935893365, + 0.9021428487337487, + 0.8364619113170789, + 0.9950813966567377, + 0.9530351556257951, + 0.9027136770352651, + 0.8072699982091247, + 1.1885347134841429, + 0.9389714813988137, + 1.0565564986665785, + 0.879315771172805, + 1.0114772742154228, + 0.8417339168480785, + 0.9379215541981869, + 1.063538975840902, + 0.9297918862870006, + 0.9278239360432845, + 0.9808307512321831, + 0.9555474110529103, + 0.8244798080801228, + 0.8385647223670909, + 0.7291467350241649, + 1.1000587161240334, + 0.8751341334249687, + 0.9187825215558972, + 0.8954771949166197, + 1.0125716561982572, + 0.8764787434871604, + 0.8399915576527155, + 0.8018811487440395, + 0.8433111098102529, + 0.977334171460835, + 0.9824065950996906, + 0.6956137370270513, + 0.8210897447662929, + 0.9609826074895802, + 0.9120307180444092, + 0.883422971376687, + 0.8530379439291836, + 0.8386240399815765, + 0.8605130074190157, + 0.7015826206270751, + 0.8139439971744781, + 0.9091453146888925, + 0.9687664276576411, + 0.7207750623723498, + 0.882454591399362, + 0.7310670332364019, + 0.7664061417583347, + 0.7952572363114482, + 0.6984635785119706, + 0.7831367705006711, + 0.7728740271478842, + 0.8085659973392583, + 0.6676396911876503, + 0.9595894201275249, + 0.7805952166479935, + 0.6750728648343762, + 0.7769577804638471, + 0.6688650226742091, + 0.6691330251074566, + 0.7248692911361081, + 0.6357508668913614, + 0.6966221652893021, + 0.6601836194392512, + 0.8179893599146895, + 0.6887073645066714, + 0.7365920274464645, + 0.7027057782333231, + 0.8247459544792577, + 0.6347695298681402, + 0.618212376792639, + 0.8643834408709338, + 0.7870247684701464, + 0.4633617092509178, + 0.6571877691727716, + 0.6962562058759765, + 0.5925825529766972, + 0.5932863504716296, + 0.5681347252043959, + 0.7060018400417792, + 0.6323783992217632, + 0.6965581806170297, + 0.6934522670121711, + 0.6132652676299796, + 0.738231068957845, + 0.4329917408870412, + 0.47916039632635044, + 0.6069819603623855, + 0.652560009816984, + 0.46683281957493705, + 0.6583107745851772, + 0.6458831023570696, + 0.7275777555302031, + 0.4455136560186881, + 0.5514232246765518, + 0.5169271989816784, + 0.6386215809435911, + 0.6608288704575147, + 0.6046035755192103, + 0.5425768425831446, + 0.5629864036776766, + 0.481591984619705, + 0.6916999330434832, + 0.44764556705952174, + 0.6493288541961717, + 0.4630438890283842, + 0.5711829140282586, + 0.5901890294248919, + 0.5337152966581707, + 0.5435156209715981, + 0.4345966185975474, + 0.3726078006903135, + 0.4952440631930404, + 0.5537020020564564, + 0.4600395391274465, + 0.30387772587122164, + 0.30599189476905764, + 0.5189394845662283, + 0.301371361829521, + 0.37005828113282874, + 0.5757062370640798, + 0.4050156897942026, + 0.4966470557788521, + 0.4667587559711035, + 0.3919815613928519, + 0.6498969793749083, + 0.56098915912882, + 0.47952863716031857, + 0.6620187905994904, + 0.5133130772699207, + 0.4123739892018995, + 0.711932661921104, + 0.649068406692602, + 0.5021934664826846, + 0.33575654596950555, + 0.4321890106284774, + 0.41400079518373606, + 0.45185982186467927, + 0.46935391676206517, + 0.6423166724346681, + 0.6712067843565664, + 0.4895334512087855, + 0.38836728383504426, + 0.5709705755351715, + 0.49749900677996667, + 0.35196077134552417, + 0.5668460529423761, + 0.4814057306856345, + 0.26273300448897713, + 0.4664951603603705, + 0.3577661967870427, + 0.5504877197668634, + 0.3983312252292607, + 0.27326651233654187, + 0.5394929493464158, + 0.5291979105050819, + 0.29454227403765537, + 0.44702740902292215, + 0.33569476802439635, + 0.28497727417815655, + 0.4942922752253205, + 0.40064972686699435, + 0.498437873726826, + 0.4038438994507632, + 0.2344812284332644, + 0.4588363979192943, + 0.13209737585973408, + 0.33612232762562144, + 0.44192052462478376, + 0.5091022125581401, + 0.2706467239522526, + 0.14420525538285367, + 0.14516864388441938, + 0.3723021069388328, + 0.2603662291615816, + 0.2181061771916454, + 0.3849828146715913, + 0.34003628281847315, + 0.5329967315583344, + 0.4311417005651925, + 0.323993830565422, + 0.5136714268256097, + 0.41489863242669134, + 0.3580392960823945, + 0.18061816261746952, + 0.5338996546976922, + 0.2549701217093175, + 0.34526548281523006, + 0.11972852977747961, + 0.20791368030465793, + 0.3727976185479057, + 0.39701165959537915, + 0.3339731161923615, + 0.2992982092652043, + 0.22429258428843005, + 0.2508302564247081, + 0.3208762052714079, + 0.3807336666481908, + 0.37913275414122927, + 0.3046555835383338, + 0.24516711675892916, + 0.33947023533360543, + 0.2563728214522294, + 0.21146006525191763, + 0.33425150392820885, + 0.34961528510506973, + 0.3675110786441565, + 0.14542322237554234, + 0.1973048935886486, + 0.5175769338445741, + 0.3343605036065586, + 0.3014033011442574, + 0.3227156109711145, + 0.06980229736597746, + 0.09728343834550501, + 0.34819722174416895, + 0.3022523587714918, + 0.2420192206639288, + 0.2916837125665856, + 0.3398726061321927, + 0.48094977397108757, + 0.3302118834997472, + 0.2872411198648873, + 0.49492148529997493, + 0.3822391250611081, + 0.30608991864722995, + 0.21727898300890142, + 0.1315109676074133, + 0.2734037041152313, + 0.1530641994180466, + 0.18589001922328807, + 0.2331945512117867, + 0.3209232411820849, + 0.31343339384114743, + 0.1403226189726759, + 0.14811673593831448, + 0.25055304223650876, + 0.3078215411614541, + 0.1560443505036811, + 0.33363716963771545, + 0.19433059065203692, + 0.055916128105389845, + 0.16322014866023604, + 0.19154497939608484, + 0.14461314853709478, + 0.23138929438403746, + 0.322280142810193, + 0.15076559718331195, + 0.21704656745754716, + 0.17046831953114105, + 0.3897211074278517, + 0.15290694103166258, + 0.2847480217773848, + 0.12787322464566306, + 0.17396783989516104, + 0.3589921654481413, + 0.20845450563184992, + 0.2457007036634906, + 0.35950510768086474, + 0.29597962703542313, + 0.16564053285014846, + 0.17071052036340786, + 0.11269962404604529, + 0.13574118241795025, + 0.24551729466485392, + 0.29996770533535033, + 0.3309483910644123, + 0.20477561736518116, + 0.3003710070178804, + 0.22751842387135482, + 0.1570513104696344, + 0.09668745235284601, + 0.1966677950157494, + 0.19652314980655874, + 0.348826114067372, + 0.204333783053976, + 0.31728621650855227, + 0.19770077731291016, + 0.3179447022336305, + 0.16828847452014245, + 0.10941021908996836, + 0.09239211211150011, + 0.2943201776813304, + 0.21161218307773727, + 0.09370302546991431, + 0.12032359470858443, + 0.33073437335555456, + 0.11515768305945334, + 0.12913745614224953, + 0.31513519119474853, + 0.3568952443044887, + 0.3897682702257769, + 0.16456611703142068, + 0.11199662253522141, + 0.3624337273931396, + 0.020867097700737358, + 0.13899242706519016, + 0.1052683190961623, + 0.14650758907049363, + 0.30500913788530204, + 0.18385569571639876, + 0.13638717752363083, + 0.0960717756713022, + 0.16172942928073422, + 0.16721376659478077, + 0.3535243762815605, + 0.207974912397611, + 0.11721907781748162, + 0.2811301932620133, + 0.075589028105873, + 0.31548359063674286, + 0.032113737807852094, + 0.16488811780568374, + 0.14472621994767615, + 0.2516089471547833, + 0.11208739183373662, + 0.19449639529594429, + 0.1916503701126784, + 0.23181251744522557, + 0.05641489724146667, + 0.2394297936525584, + 0.27359771280149303, + 0.17112997567386817, + 0.314732869275867, + 0.30898909680362785, + 0.25000004120793995, + 0.28303563390892844, + 0.13341840346877917, + 0.33522078320302284, + 0.22071126686941825, + 0.3216016529778241, + 0.20362167496404157, + 0.08989660786058923, + 0.1686633725330278, + 0.13831941091694427, + 0.17081516814654144, + 0.3919173761121032, + 0.23291072660502737, + 0.22999565975950642, + 0.05381602388184534, + 0.2182619318896589, + 0.13300704372442876, + 0.2287265028683486, + 0.3153252200409359, + 0.14094852176732478, + 0.17874449371874737, + 0.2802567427808814, + 0.1551113560490824, + 0.09427602491350007, + 0.23244395879268545, + 0.07977672710340986, + 0.23245127223385165, + 0.34281039542869546, + 0.017458720275846662, + 0.16774224603498178, + 0.3580926812558427, + 0.3402738981199258, + 0.177524548963657, + 0.25285490452758197, + 0.07354483665983785, + 0.3077867911781353, + 0.18270145424620288, + 0.38312096788888705, + 0.2111066803490539, + 0.30615471382067794, + 0.21539153955585827, + 0.22770126726869366, + 0.18055252682405515, + 0.07847507685500499, + 0.23614235220623914, + 0.2400634973366539, + 0.24775953550627042, + 0.27119379631485774, + 0.48089115694101325, + 0.1945501571968026, + 0.2663134053876624, + 0.24625497264957802, + 0.11784797854280063, + 0.20827149632716935, + 0.27628221303620515, + 0.23368408884227448, + 0.16902609867706958, + 0.13370960522618935, + 0.403956771852948, + 0.26283283426449505, + 0.30654801345622557, + 0.29765287582507644, + 0.17118979310815574, + 0.35705188862947157, + 0.46515895590580103, + 0.31889215421908723, + 0.2478734309282053, + 0.047097319612060956, + 0.24629405214261763, + 0.3114339303868123, + 0.2959693314145212, + 0.2932880408814013, + 0.3466565996703861, + 0.18245771158155089, + 0.4302998883153194, + 0.2371897765082519, + 0.09526809418313881, + 0.28388107546818353, + 0.14318413018489548, + 0.4571122414166885, + 0.14959546180917038, + 0.35490877658662534, + 0.17618781307783893, + 0.3706392435427511, + 0.3205578502868892, + 0.3954209682388406, + 0.28795457215733916, + 0.3670506572239327, + 0.284323572494844, + 0.2388165939879143, + 0.11277988097543828, + 0.3254303665481037, + 0.3270826326336756, + 0.25359989281843437, + 0.2384892925909486, + 0.32544479638883755, + 0.18111078539663567, + 0.3923404869563982, + 0.29265680941175565, + 0.25817863871325436, + 0.2331657149725089, + 0.41234332177905136, + 0.3798276336334605, + 0.2806743571563415, + 0.3844682040188511, + 0.29969173641992913, + 0.5595780511697988, + 0.33863410979474046, + 0.42659814536963864, + 0.3005072336883216, + 0.08835707483705374, + 0.3112157286752538, + 0.3082830815311239, + 0.3480626877512255, + 0.31495929915139237, + 0.33157034291699783, + 0.47964023525684407, + 0.3240523362181976, + 0.22108512554665521, + 0.45272507206133106, + 0.5094614260695308, + 0.32214918886292543, + 0.5232511549134832, + 0.44770948568391056, + 0.5104134938400225, + 0.29970007127076387, + 0.541569797968631, + 0.28758655436400454, + 0.3439501901730813, + 0.4374635652115456, + 0.39666826374537706, + 0.23218582043350255, + 0.4008075303014487, + 0.35902912023665773, + 0.3584151748162728, + 0.503426757178437, + 0.33759787473950637, + 0.35603942860422594, + 0.36531719548021924, + 0.4729034544416847, + 0.33101239456631304, + 0.3305144698317696, + 0.4249983425639564, + 0.4317933502476544, + 0.6376887091338578, + 0.4781701255540836, + 0.46644099786636445, + 0.6411586981752035, + 0.44336189562830436, + 0.4801442233440247, + 0.42480548818338004, + 0.31334624263628497, + 0.3911111298955123, + 0.6190706073682124, + 0.4684391478457492, + 0.29955663154606527, + 0.4988040424941024, + 0.5194528720220074, + 0.4183669623852976, + 0.45686568494370133, + 0.4730202831681541, + 0.4530311302994986, + 0.5007889898478571, + 0.41702547742119866, + 0.5100997134700174, + 0.5782435924242804, + 0.39940837229166437, + 0.6714701887617841, + 0.7342102538239921, + 0.38153816549889774, + 0.5464574787699318, + 0.5003531924762977, + 0.5129230028243189, + 0.5657770012511216, + 0.6204139536664638, + 0.6023948463397303, + 0.39560223596465455, + 0.4029414282756613, + 0.45069495628583667, + 0.627624228462139, + 0.5190919080952218, + 0.3764274204289351, + 0.5408847633797137, + 0.6517619484665086, + 0.6596002982269388, + 0.45373018247152647, + 0.6163296873321757, + 0.5323052266166833, + 0.7331852791662041, + 0.6260825974292163, + 0.5189389914950635, + 0.40621640907808443, + 0.42350969323203175, + 0.7509038827357601, + 0.694045850813795, + 0.515230841283954, + 0.7265343758075615, + 0.6179983695857569, + 0.6532878627954506, + 0.46477779265103814, + 0.6090975716938553, + 0.5688711525820029, + 0.5803377041588688, + 0.6401377208693892, + 0.7345571334440252, + 0.5300323683461126, + 0.6956526811854966, + 0.5776778109809473, + 0.5765169674549964, + 0.6219956751941186, + 0.583549656358888, + 0.5686738684188894, + 0.8391525795181931, + 0.6495377822204467, + 0.6906961733713685, + 0.6059551028578579, + 0.6847186653641809, + 0.5580276849909644, + 0.4412443358380199, + 0.7843850301219841, + 0.6206117109092738, + 0.5705205530416163, + 0.7907805343249433, + 0.647869585899452, + 0.812934723825838, + 0.7082824767347135, + 0.6198726746374713, + 0.6932685290538977, + 0.6752209881147933, + 0.6572398197371738, + 0.7459766013994014, + 0.6033295804704127, + 0.7606199603579062, + 0.7244859442721358, + 0.7948823808731517, + 0.9068061512351125, + 0.8933675728861428, + 0.9005832322332306, + 0.7477021856822291, + 0.903503849057621, + 0.8885867082791317, + 0.7122756230081005, + 0.7931178351719356, + 0.8763248650385329, + 0.7110164103989929, + 0.8106302122322845, + 0.8034949676038324, + 0.6462550153638491, + 0.9771268966299217, + 0.7568007562455846, + 0.6831762384406628, + 0.8853135435965874, + 0.7004271543366125, + 0.8116111785827449, + 0.8019783665985385, + 0.8718405214067848, + 0.7351841053279901, + 0.7372542697216913, + 0.9164977262715239, + 0.7044752210854344, + 0.7781513288616979, + 0.8132795919719285, + 0.8214926083925908, + 0.7623502961212435, + 0.8084861233551125, + 0.9256719495628588, + 1.061864901765183, + 0.9196909145195772, + 0.8822238448078816, + 0.998166750054099, + 0.8805506006259307, + 0.9458975641226401, + 0.7828741675635792, + 1.0708369506363924, + 0.8838377357969556, + 0.9039965375156317, + 0.9170334052270943, + 1.0101281173958392, + 0.8093640113988709, + 0.9209523775279702, + 1.0137855340212423, + 0.8434660899122354, + 1.028178318438695, + 0.8722225995618487, + 0.9759428776330221, + 0.9060802747283704, + 0.9060501724162668, + 1.033319595683873, + 0.9278889251290028, + 1.233016308639685, + 0.9872638716516021, + 1.14150373558779, + 0.8784870060586264, + 0.97868653446742, + 0.9898821837282439, + 0.8961515264392247, + 1.0166985401468345, + 1.001213240720511, + 0.9577541801682747, + 1.0200004607589717, + 1.0257298491306557, + 0.9405497409122272, + 1.0326510057207159, + 0.9842684587866579, + 1.209818675795848, + 1.1302459251961345, + 1.038096569756945, + 1.0901705415395486, + 1.133988877438966, + 0.9257556166907763, + 1.1377054193341558, + 0.9319160193357718, + 1.008195319744458, + 1.1259588663634892, + 0.9860080379534715, + 1.0524722949467318, + 1.1383009055411981, + 0.9848445689381709, + 1.1141277652912311, + 1.0768327311385133, + 1.1802168275125544, + 0.8657451811057411, + 1.2555290746722134, + 1.065531128230428, + 1.2057992750160387, + 1.0329111066931083, + 1.129155449862051, + 1.2090594772492864, + 1.2203027996596445, + 1.0438870681399885, + 1.1224625238928494, + 1.2055505079727211, + 1.300767945979396, + 1.4189588743882358, + 1.1317856294143422, + 1.1663962851524412, + 1.119629409070905, + 1.3207890928026198, + 1.3149842879061633, + 1.206242460258295, + 1.0992610668495586, + 1.2044821543769972, + 1.1395544627622305, + 1.2898889472195354, + 1.2236340475159413, + 1.2085323728750674, + 1.1816402645937356, + 1.10833638961836, + 1.09989788758418, + 1.3343952486250377, + 1.3353020598184213, + 1.3077516139740963, + 1.3238085093808059, + 1.2346080627035467, + 1.227346265509868, + 1.2598537071257692, + 1.255533847599037, + 1.2732585405957904, + 1.1843227809453514, + 1.3354069139791767, + 1.3042758251278126, + 1.3087519307135629, + 1.2214313548853069, + 1.2843095707693695, + 1.1790705064579545, + 1.2971288645021664, + 1.4246150965325397, + 1.0838523144302896, + 1.1991411263396718, + 1.2292954816846084, + 1.4164160488349504, + 1.286027340139359, + 1.3321356948783645, + 1.4074633815393014, + 1.2750372838790827, + 1.4145769301025652, + 1.2448268416942847, + 1.202687685953741, + 1.3757184008758934, + 1.4446742771708607, + 1.488897935872237, + 1.3859132843725135, + 1.4755843374687005, + 1.3649439438313071, + 1.2891573732144397, + 1.3659273741967402, + 1.4294352054707689, + 1.434176531497037, + 1.408476544720495, + 1.5332818219630675, + 1.3354844115660238, + 1.431189194628663, + 1.423988232014126, + 1.303454991652685, + 1.407090594990726, + 1.332175090803459, + 1.5448215082186727, + 1.4246310388552867, + 1.3432047295471998, + 1.6270187714545976, + 1.488876082417727, + 1.5690739828322757, + 1.389729956758676, + 1.4725948896315366, + 1.3030069216672346, + 1.6851056542822023, + 1.4753503340774567, + 1.3074708188841988, + 1.5321637256550136, + 1.6824946513628516, + 1.5867576435423705, + 1.498656546213108, + 1.462922577101919, + 1.579708392918046, + 1.3017302040983505, + 1.571170650852057, + 1.4753044917244293, + 1.609908254089298, + 1.4323533407701852, + 1.546657709764407, + 1.5529242264684395, + 1.5849957158517183, + 1.3977585161156452, + 1.4938305866295134, + 1.3941876676218967, + 1.4461374780808474, + 1.6611790565019833, + 1.4061925437504916, + 1.6244198455452499, + 1.5903301414971953, + 1.6007787630276877, + 1.5663317762673177, + 1.5721641923642684, + 1.5009979348786107, + 1.517038427197571, + 1.4111450453735848, + 1.7547813709802318, + 1.7739933265053658, + 1.6717741771753951, + 1.6104004671357834, + 1.6178822025138544, + 1.5857931055558194, + 1.7236374647907144, + 1.7484384622792477, + 1.5384762938273717, + 1.636330792504407, + 1.9062152730741113, + 1.637587628955942, + 1.6132335735207728, + 1.6437268335038295, + 1.5887030451464808, + 1.6367693385748927, + 1.5020317108365255, + 1.663540808790906, + 1.5300803770974623, + 1.8403525657849962, + 1.5810981725890565, + 1.6508376775675162, + 1.7374034536385061, + 1.7163442983427413, + 1.762663699722126, + 1.7723677490867944, + 1.7383859183384254, + 1.6780195336656019, + 1.5265465050755151, + 1.7469250237912763, + 1.7798694229401864, + 1.9950030068432327, + 1.6763998672885738, + 1.7117138258194775, + 1.861661530216046, + 1.824280081561071, + 1.8390171826922204, + 1.626269528644028, + 1.5702496367480627, + 1.7056206445675859, + 1.6581274347377282, + 1.8764168454724057, + 1.7933468569110054, + 1.6936289625417693, + 1.6098110177144755, + 1.7254043542680986, + 1.9502729061300892, + 1.7456508424459154, + 1.8492190981624974, + 1.9464500646877028, + 1.6224832310707789, + 1.773571683447317, + 1.6745433442836681, + 1.7735987600672496, + 1.7437010438285343, + 1.7127279284953405, + 1.6536508125306804, + 1.6331860186530394, + 1.9974890188341856, + 1.7145131046596298, + 1.6622931167802606, + 1.9526176613287896, + 1.8306142883505727, + 1.8030313699248122, + 1.773641003804392, + 1.7675951556401324, + 1.7776323538038716, + 1.9038197063175382, + 1.876101003206607, + 1.8619955145384328, + 1.9761567793184835, + 1.6995504451508705, + 1.8497044689225133, + 1.8272338108746415, + 2.043909469650156, + 1.875378181501487, + 1.9512070486530595, + 1.785972244387514, + 2.112016450499787, + 1.8666730726615097, + 1.9029927058771512, + 1.899100940520624, + 1.900596951261686, + 1.811670959554806, + 1.7939401624804514, + 2.071067751785916, + 1.901969110699929, + 1.8852561756792487, + 1.7896802366315891, + 1.8368565551807932, + 1.9311675070679268, + 1.9101175743567813, + 1.926179311608399, + 1.8809926361053064, + 1.860208639278959, + 2.010378388769074, + 2.0884076203390647, + 1.8138247673303949, + 1.9446911825650055, + 1.7589809246064483, + 1.9040353386338742, + 2.034108750564543, + 1.8902512614545515, + 1.953094643732454, + 1.8633404810320144, + 2.0484145734433326, + 1.9814936006094022, + 2.0279209240989045, + 1.9128960651244153, + 1.9447875106684822, + 1.989609800534383, + 2.1040669327586348, + 1.9889348670860754, + 2.060428595803643, + 1.9584150073059854, + 2.105171617135943, + 2.165871024395056, + 2.094868478252863, + 1.9544913710408949, + 1.8771732516589306, + 1.9233536211072917, + 1.9517095024873496, + 2.003763935213663, + 1.9758478961957255, + 2.0001505112021842, + 1.9591819645808242, + 2.006951169624548, + 1.986241658536963, + 2.189764590943345, + 1.950706248776318, + 1.946488046386965, + 2.0597396260892973, + 1.7956379371679656, + 2.0167519266445635, + 2.008605754304483, + 2.0920925192666058, + 1.8782611364366553, + 1.988726770442149, + 2.0813123831308924, + 2.0032302595282925, + 2.107306181765437, + 2.047994695399683, + 2.105664945716841, + 2.1975831768624414, + 1.986377774529811, + 2.0457517254672473, + 1.9665791363048641, + 2.096494903039023, + 1.8668700428019243, + 2.1864728636962028, + 2.0882603931323525, + 1.9973576082317925, + 2.148254762892776, + 2.0836342947502486, + 1.922501397061028, + 1.973000032043925, + 2.0797101661938058, + 2.136028485540217, + 1.9519444482480746, + 1.9042398948441774, + 2.185556543591706, + 2.1412138276574786, + 2.1450230995690545, + 2.0890501758472344, + 2.097538741698565, + 1.8998660117075035, + 1.9461479792310974, + 2.0580642493650796, + 1.9513506694483906, + 1.9798400632055577, + 1.9645713535677407, + 2.1287714091863745, + 2.04647878755806, + 2.126233109254797, + 2.0781707251228414, + 2.2608962401027677, + 2.1235834006355625, + 2.1113442659365558, + 2.17330988032843, + 2.0319243647739107, + 2.195256059442862, + 1.9966335227165066, + 2.12306163876109, + 2.024161846328814, + 2.0926268550309173, + 2.1558028654110823, + 2.164087387039784, + 2.007069444623209, + 2.2417689257531923, + 2.0988171642742213, + 2.0947944550362627, + 2.1973273594783973, + 2.2119392786943326, + 2.0293494800262497, + 2.0994478085739536, + 2.097791829804608, + 2.1400767346376983, + 2.1829645522542647, + 2.0545882071204167, + 2.2369571869538856, + 2.078511655844127, + 2.1479272754092187, + 2.123019955550825, + 2.1619937312935167, + 1.9981775272925826, + 1.9860182305186556, + 2.089989147432279, + 2.147640053681875, + 2.0341502524107224, + 2.354696619877965, + 2.106158408526293, + 2.166823080164491, + 2.030198773811368, + 2.2049277793274182, + 2.267231260587554, + 2.0067523563672616, + 2.1261485626818577, + 2.017133622656764, + 2.273179121577616, + 2.1465027636407776, + 2.0096942841201555, + 2.170829509300972, + 2.3009083739188325, + 2.288455157577809, + 2.191985621330292, + 2.34697326326059, + 2.0982321825798596, + 2.0450779934788743, + 2.3165363745215783, + 2.299462965096582, + 2.002431158883418, + 2.092713187146493, + 2.0704394986268757, + 2.111675355883018, + 2.3071821741029845, + 2.1393188401670535, + 2.2061924293639237, + 2.291171814499224, + 2.1841890576153795, + 2.380951207294918, + 2.14208322469429, + 2.2354238899170884, + 2.1809089567968702, + 2.200074954136843, + 2.2308877913670955, + 2.223325382035145, + 2.273557974839486, + 2.272649617616054, + 2.208071108501721, + 2.2759628080978875, + 2.200161137510057, + 2.163970470105753, + 2.1055905724506907, + 2.2443859500290184, + 2.2742243793579466, + 2.1309715614127858, + 2.181576007240706, + 2.1767498099441918, + 2.2889080835486633, + 2.1711950376899205, + 2.297646355477709, + 2.0973589749749135, + 2.404562407576782, + 2.25604865670528, + 2.1368021499817087, + 2.10929022319347, + 2.0143881509887187, + 2.073501434293705, + 2.312060670291225, + 2.07330102706296, + 2.0615526723475193, + 2.1180181000273777, + 1.9912546741860524, + 2.2931710011748963, + 2.2356449988026226, + 2.0101601665536277, + 2.1913898392051956, + 2.230915472211721, + 2.21016238442931, + 2.19234275782365, + 2.3586248449881264, + 2.3304433884345395, + 2.077900398865124, + 2.267081536857132, + 2.1758636846859987, + 2.086275624389906, + 2.1009332515574295, + 2.128663145401375, + 2.2334351344504157, + 2.3482574125684614, + 2.266129769029983, + 2.412976045678995, + 2.1915778276591347, + 2.0722018215814946, + 2.168265390389295, + 2.073558211337504, + 2.1045735417395357, + 2.1804312697840817, + 2.4131118461559833, + 2.1254577430886434, + 2.279074516784855, + 2.180995391316204, + 2.147887083207807, + 2.2330918094664685, + 1.9384391569723831, + 2.1556486308848064, + 2.248631991566782, + 2.1526682164646163, + 2.1849160384242134, + 2.2201463747506915, + 2.0605341679249896, + 1.9115108887683823, + 2.1102329419333263, + 2.110645525766595, + 2.335003647919777, + 2.364807289425749, + 2.144424070705871, + 2.0912256769754127, + 2.3297097198917025, + 2.2277568830894268, + 2.115867761358548, + 2.172545284120499, + 2.175076009773112, + 2.0507689019397364, + 2.2909468727826687, + 1.9915344339172898, + 2.19549198672623, + 2.1766675976822056, + 2.1492962320992843, + 2.0925485327853846, + 2.078612954112076, + 2.276262044827945, + 2.1970745689698536, + 2.2425836619054, + 2.227569992541705, + 2.269597512359573, + 2.098954787290789, + 2.244442055827614, + 2.200920813711578, + 2.2992133340288, + 2.292899935531113, + 2.1204566682450157, + 2.0438213532824543, + 2.240047175462889, + 2.203858274357973, + 2.110600189284129, + 2.1269312469379233, + 2.197659264595346, + 2.1973497503094137, + 2.0272579069392522, + 2.0643929586752887, + 2.1492842900232354, + 2.20348023576126, + 2.2903564414802053, + 2.01157885041985, + 2.162912443954475, + 2.034550559338054, + 2.169119386007355, + 2.0512480330698275, + 2.1892942133951556, + 2.181357531118251, + 2.1656067958338467, + 2.232901382573999, + 2.2697846768228715, + 2.202747728777272, + 2.286609173022385, + 1.9054871499186044, + 2.0278918986781376, + 2.1715250036262512, + 2.1756559519231473, + 2.1757569723270436, + 2.044943649028975, + 2.1200486082631635, + 1.9565253252185195, + 2.2069532346441556, + 2.080108264216459, + 2.0180587543967268, + 1.9644889582581513, + 2.065395221503548, + 2.109756695162142, + 1.957215205138735, + 2.05870440074371, + 2.137429690143825, + 1.9444728539496015, + 2.1330865701855535, + 1.9598216669444721, + 2.068844434586289, + 2.0972712231054893, + 2.182713210309986, + 2.079802580241652, + 2.1758817976705975, + 2.0828781076872462, + 2.1288550083098277, + 2.1255400771612885, + 2.015548170992234, + 2.0227340027712617, + 2.152608265323519, + 1.9092302516355244, + 2.143919015473939, + 1.8434247592872475, + 2.0571624952947083, + 1.934752388240966, + 2.04505898813683, + 2.0480573368599475, + 1.9314822110973968, + 2.047850910653219, + 1.9427262716107356, + 2.0736853916070617, + 2.0698404085092217, + 2.1538892384042607, + 1.8765500822505063, + 1.8975598380559924, + 2.161075852148259, + 2.095971714686171, + 2.090681539049956, + 1.9257807041706172, + 2.0282817747598623, + 2.0075178120446644, + 2.09461825207975, + 1.9319526705358112, + 1.9686006187811733, + 2.0375448488200756, + 1.9699592163141226, + 2.054889907050475, + 1.9769208616135452, + 2.022387112675332, + 2.10119484769249, + 1.9501019297156121, + 2.015539122005962, + 1.994727121283509, + 2.103332926493914, + 1.910537426031871, + 2.0632944517859086, + 1.9469834454091515, + 1.9507453943691382, + 2.0496189801468465, + 1.9683802753315072, + 2.042113160790126, + 1.7299200895238678, + 1.6627427976358973, + 1.7597019159421914, + 1.7977410059413237, + 1.7831547254474747, + 1.8924664817973254, + 1.928544989340885, + 1.830042656351275, + 1.8878377366919135, + 1.8438289367599787, + 1.8720234380720027, + 1.8718539928867421, + 1.8319959711445344, + 1.889039717323325, + 1.9332781527805047, + 1.9071709809184498, + 1.8708254597051834, + 1.9571080403651833, + 1.9782487547434888, + 1.9601924830225208, + 1.9713137031421402, + 1.8348310262157574, + 2.0911142670400444, + 1.832110708463961, + 1.883328930127279, + 1.9452084695826208, + 1.8271231462486088, + 1.9743436932178016, + 1.8023384779678513, + 1.6578679837697863, + 1.8880811780482105, + 1.7816723992690928, + 1.9407831828093265, + 1.7313458622965434, + 1.9553183715998521, + 1.7618955759510877, + 1.831825370159179, + 1.8518862189742797, + 1.9616872933297265, + 1.871551307931652, + 1.7538914890090294, + 1.8272296908487884, + 1.832271997890804, + 1.858500178564386, + 1.82950987380561, + 1.7104054941880886, + 1.8690575976459964, + 1.7668899638253586, + 1.5804175033234331, + 1.6946111266151038, + 1.75926068661548, + 1.7691287399130329, + 1.5603093433889095, + 1.7090715978664028, + 1.6383766008140093, + 1.861557224089928, + 1.8337983654303118, + 1.7278519377596018, + 1.9304943949225637, + 1.72945451908591, + 1.8096107193683408, + 1.6422101322129472, + 1.7072596963821427, + 1.5842388145358988, + 1.4971229964988444, + 1.7265465155664408, + 1.6682109552089384, + 1.5911991643542593, + 1.666625399104234, + 1.5634858565977483, + 1.7997327521067814, + 1.6940313188448102, + 1.7388697286944965, + 1.6400776202989966, + 1.888831976472459, + 1.5734678251229135, + 1.6733773935758762, + 1.9138029195683834, + 1.7574062711742195, + 1.6762330179989355, + 1.4508109811212746, + 1.6781576131049107, + 1.8645198965123533, + 1.6956441896821146, + 1.5162600541159674, + 1.5351654664697012, + 1.6245580145678005, + 1.5262696904596034, + 1.5078692133403448, + 1.8042843208304775, + 1.6741999004341788, + 1.6410428271194883, + 1.6531637667325925, + 1.5380774869242286, + 1.5816755331503813, + 1.5384445585681898, + 1.4230230396785992, + 1.5619628005870712, + 1.6524748213361808, + 1.737000008295926, + 1.4757370636727887, + 1.4824790718118683, + 1.7290410531549076, + 1.5950353278637721, + 1.5237764045531976, + 1.639905677546439, + 1.4210032938307757, + 1.4734914917580957, + 1.3542629032004154, + 1.527316920261951, + 1.4928687560253089, + 1.6872739596215582, + 1.5935909745521364, + 1.6405497458723515, + 1.3667554429199367, + 1.5023282701339853, + 1.52661430873805, + 1.5803170171578944, + 1.476535863564369, + 1.6141696647333565, + 1.4105859336096875, + 1.5363804112016706, + 1.636251741305443, + 1.4842724326917536, + 1.3814093847246667, + 1.2237342915691227, + 1.32761847367897, + 1.3828224862135643, + 1.5369564618645546, + 1.442106636266593, + 1.5718613079835202, + 1.4979929126958536, + 1.4772577614820241, + 1.48179816173816, + 1.303141505976786, + 1.3706484200071722, + 1.3508804852531302, + 1.4597690019152225, + 1.302676461086615, + 1.4271865447492098, + 1.4350076064436958, + 1.4361918699007121, + 1.4737261997965174, + 1.2366115764107026, + 1.5109212869217403, + 1.2921340864829558, + 1.4199477849540656, + 1.3261660254703207, + 1.303137241075747, + 1.3727900465166567, + 1.1636111403142904, + 1.2761892489391065, + 1.3721563595853685, + 1.309243714573061, + 1.3118626982993, + 1.3852420005840769, + 1.2306757736074658, + 1.6133958176838665, + 1.330713740953092, + 1.3385781484581005, + 1.314383549195764, + 1.2615306351740596, + 1.1681435756177292, + 1.2415141643049323, + 1.426193571149557, + 1.1883549670735953, + 1.208953913139234, + 1.3121681861879977, + 1.4676067946993163, + 1.3186009822382503, + 1.2114411779030434, + 1.3501260837833662, + 1.3051952680367542, + 1.4044519844776169, + 1.4163837532283876, + 1.3197531629459798, + 1.3790227714144756, + 1.2701212858464035, + 1.2241594581886912, + 1.3304637534364432, + 1.347776222401475, + 1.247035602933041, + 1.190336320241846, + 1.2775622163001294, + 1.246624821637179, + 1.2508394820061353, + 1.1519938913192962, + 1.4513456389617676, + 1.1646549369144419, + 1.3267752453551913, + 1.3738288473968834, + 1.1909823821724295, + 1.0869238658014817, + 1.0613593285219782, + 1.2107702473124697, + 1.0305787285501473, + 1.2811657434858883, + 1.2046253211025706, + 1.1710898952596362, + 1.1353571874652946, + 1.1885064419969198, + 1.2144824973927328, + 1.0676454288258443, + 1.1217992783239688, + 0.9838098450964792, + 1.1544922154973074, + 1.273274094223645, + 0.9639248170722613, + 1.0919046092896156, + 1.0177685016173528, + 1.1829373415190914, + 1.2270386921888756, + 1.159092735387423, + 0.9959912946486699, + 1.1662159375638803, + 1.0109549654638195, + 1.1083922603650467, + 0.900762182429658, + 1.0643048162607216, + 1.0469128358146114, + 1.023218498733567, + 0.8462037440015562, + 0.9374295709347514, + 1.0939468178161298, + 1.0016553527819716, + 1.1151325436210267, + 1.1042471484889635, + 0.9346459565110219, + 1.0720123411655749, + 0.9698826926662316, + 1.0371608296820962, + 1.1289410737494932, + 1.0468763758132866, + 1.037957488721184, + 1.1878601868918934, + 0.9702205167647616, + 1.030866705240942, + 1.040651779116445, + 0.9882876880489789, + 0.9234197591465096, + 0.9145765260576957, + 0.949458331348342, + 1.0558483742341072, + 0.8995814062668223, + 0.9250413551061442, + 0.9286486629540651, + 0.9854632252684128, + 0.9985390075795035, + 0.9655131859843018, + 0.9794207978346838, + 0.8088238649300084, + 1.080079662112812, + 0.9241298857672576, + 1.0087373393425232, + 0.8930685230450595, + 0.9914011838744385, + 0.9169173139412758, + 0.9680043025304084, + 1.0525840407973124, + 0.9336214737004545, + 0.846238431754679, + 0.9648309964954899, + 0.8526314007669877, + 1.0086044278660242, + 0.8798928853067546, + 0.902086270401336, + 0.8572244328614175, + 0.7482753097715767, + 0.8267849211239282, + 0.8548512381804736, + 1.027100502098258, + 0.8604085657972426, + 0.7782498590601536, + 0.8767211180966981, + 0.8753068010594108, + 1.026104288013648, + 0.8401004397127444, + 0.8118774305178011, + 0.8860441845480947, + 0.7892121742765691, + 0.7552233529372173, + 1.0386782545813882, + 0.7533011937933366, + 0.8190622720720336, + 0.7697121705533208, + 0.7907585216802099, + 0.7504834564923879, + 0.7853056517254864, + 0.8488265802438563, + 0.802754807238231, + 0.7993400941257831, + 0.882847644210726, + 0.7363667367051688, + 0.7729803177148998, + 1.0116397946712847, + 0.7765696759910369, + 0.6515555212453737, + 0.9133301171275555, + 0.7730282709551274, + 0.7899556538017163, + 1.0248594492668972, + 0.7021292473348676, + 0.7780906829387599, + 0.8546754608671805, + 0.7502892001379085, + 0.7356010944639848, + 0.7044969759069992, + 0.43429723221320043, + 0.7333810881995504, + 0.8176033461022278, + 0.7942988924259766, + 0.7119855836358931, + 0.6712379360557563, + 0.6149594531684577, + 0.7102914018822657, + 0.7285539915948516, + 0.7009766537004897, + 0.6419404457156904, + 0.6685910691609355, + 0.6258371072018707, + 0.8286140008349918, + 0.7114418919656667, + 0.7233746177625769, + 0.6573765274462895, + 0.6736738308391548, + 0.7566386592673722, + 0.4241033111270348, + 0.6999075083301831, + 0.6226772434789047, + 0.8032296544655505, + 0.7357899936745813, + 0.7535268182594309, + 0.48297736024252563, + 0.7134847823623528, + 0.750476853122882, + 0.5419907066651032, + 0.7021144484092581, + 0.6752733119756138, + 0.6934334538102921, + 0.7336764218391337, + 0.6475207614885627, + 0.5836349573013953, + 0.44160108900984296, + 0.6517735609998999, + 0.5599780306571819, + 0.6988936315919101, + 0.5944312479097335, + 0.895534944230045, + 0.43845067276296584, + 0.6475991969307846, + 0.2708440216041128, + 0.6525396267647432, + 0.5213164732134067, + 0.7126865459749834, + 0.44140707591161643, + 0.5457259830020322, + 0.5034447102971544, + 0.443817880249682, + 0.4374841517437549, + 0.5239859308099876, + 0.5620915779674147, + 0.5964263619466875, + 0.5424006216287705, + 0.48360632011326876, + 0.4087468811624613, + 0.308202338060303, + 0.6171252704898569, + 0.47827703674726013, + 0.4955784158204105, + 0.5707981149671432, + 0.5015851382511959, + 0.46430042083102785, + 0.6611071527179266, + 0.6357273835178157, + 0.3204792098280711, + 0.44588284423728497, + 0.44081997729013, + 0.491808925472309, + 0.7550599958555926, + 0.5321264615873107, + 0.5225617906964023, + 0.43127735317747706, + 0.4725683805685811, + 0.39096328700920957, + 0.43227389413402434, + 0.4567601418115907, + 0.5222416883837653, + 0.5178428743426389, + 0.4796710985928522, + 0.5644915098994598, + 0.43951213544873646, + 0.5167140529750116, + 0.3625820724276898, + 0.601736646060504, + 0.6079218350053861, + 0.4251435934016276, + 0.37597787763062973, + 0.3957957617465191, + 0.5490753948310829, + 0.32290843692052007, + 0.3871054443737974, + 0.5464837439958196, + 0.5993328136715065, + 0.331088023260798, + 0.3124342086822972, + 0.42839681955495534, + 0.3179406050193916, + 0.29102245078686007, + 0.4663722571234052, + 0.23478509545715953, + 0.4453500915128926, + 0.5023928258956434, + 0.4369798982807238, + 0.18621097792991323, + 0.45286905052466186, + 0.38951705875945364, + 0.3782137029492689, + 0.36707303781870027, + 0.37701827883585076, + 0.3551330309753559, + 0.25077185676420577, + 0.49435256434708175, + 0.42223316414229395, + 0.43792375410850143, + 0.4165249321568384, + 0.455141026110239, + 0.27823365045204096, + 0.3344115995583224, + 0.3341976742939453, + 0.3412373135771216, + 0.6215201250822937, + 0.4783331131128453, + 0.46393774526275494, + 0.41478378410896444, + 0.44049705147336826, + 0.354518357724401, + 0.07086901021006842, + 0.23353551921500093, + 0.3905903240263886, + 0.3437828090920001, + 0.3048666600645838, + 0.17107134299204974, + 0.2711226914335595, + 0.10558310339138299, + 0.0977367382478822, + 0.33852671606937923, + 0.19213987136203242, + 0.17702023882572848, + 0.14567967039114646, + 0.27469645274779464, + 0.41517648880722996, + 0.30890771677384443, + 0.26440303986477165, + 0.3741106999875051, + 0.022914609647535833, + 0.43480729202212914, + 0.3353175951153004, + 0.4104385910706745, + 0.35899429088007406, + 0.30089612028249485, + 0.32524172274272534, + 0.355643916549784, + 0.3061837894940411, + 0.19712913352704564, + 0.3223591574277819, + 0.3141769676186513, + 0.21640693937328934, + 0.27536570945649586, + 0.34146484136016847, + 0.3347698154331057, + 0.04284658465402333, + 0.29065961530072465, + 0.2269309254383994, + 0.10997688161899785, + 0.30826603793219876, + 0.34866501416760654, + 0.22528676582643672, + 0.2007739097769184, + 0.44414908727773605, + 0.12396440176212087, + 0.28012664453632474, + 0.3515371387025426, + 0.30130338706110843, + 0.3026496217599949, + 0.1771649480155472, + 0.37562195632947737, + 0.3554020621302653, + 0.22175517259025912, + 0.3087211755116057, + 0.2230198797201718, + 0.23353803840437912, + 0.26991621932670123, + 0.14775616838417777, + 0.14671457799330037, + 0.22324543026779323, + 0.21223989049846936, + 0.22004484097628493, + 0.06741599141219953, + 0.08539597423551046, + 0.21324911301717547, + 0.04974377542117181, + 0.15452111359896914, + 0.31412851849183, + 0.0805908298083472, + 0.08063347311933447, + 0.28037913665512715, + 0.2391139214289458, + 0.26646664910056345, + 0.26338004721137076, + 0.24308424477114493, + 0.14650849474522992, + 0.21104831431641294, + 0.2530633577492951, + 0.2521998461308272, + 0.3277059929928178, + 0.2992385208182837, + 0.131957527259771, + 0.17195224199752618, + 0.47081448642155144, + 0.3227368054071095, + 0.07144568962252243, + 0.49762579402992463, + 0.24710040348367068, + 0.16637238382030498, + 0.17469951073521922, + 0.1847732135261831, + 0.17705739318002847, + 0.17818520128764076, + 0.20610064181779036, + 0.20076788919563157, + 0.12442811908855461, + 0.4134330806566803, + 0.09685976401355334, + 0.18033074388893933, + 0.1062305041532759, + 0.23176220167837536, + 0.19971750482117306, + 0.3580673289112697, + 0.26734714123247627, + 0.18582268799642537, + 0.2247951807584187, + 0.21156396617043488, + 0.2386119835836481, + 0.23400390578235336, + 0.11645023651823691, + 0.18445557620684855, + 0.11477529894717735, + 0.3397716881827201, + 0.37315620781713926, + 0.13957050745858182, + 0.1210704157357762, + 0.26925621574438025, + 0.06525156294626616, + 0.1607967548796064, + 0.3698903397214275, + 0.27505434781606664, + 0.364960542582235, + 0.4158438209488423, + 0.12271418236276804, + 0.37044202661934245, + 0.1556847141080508, + 0.04955633633063233, + 0.2461416208054783, + 0.2557968022489946, + 0.09670636771254139, + 0.08529053041231538, + 0.4227755949934481, + 0.2079456360851125, + 0.2809317957541455, + 0.36516321437541255, + 0.3133373687994258, + 0.2557900766543091, + 0.1910546003189825, + 0.046609557699423654, + 0.31443855341362265, + 0.06887649412235325, + 0.20448586769376492, + 0.27876671027966904, + 0.16625469833343964, + 0.12638966224070658, + 0.1391853589272974, + 0.2920109433159991, + 0.16716772408935654, + 0.2937669508942005, + 0.24748495498252343, + 0.2903647361666098, + 0.15990801214087225, + -0.011056313027514003, + 0.06729888728919095, + 0.3746966851794318, + 0.3576546043345296, + 0.21340541537166377, + 0.1682388301385927, + 0.18120541674848076, + 0.22977816901651002, + 0.21418579345638594, + 0.2767120565163759, + -0.06962644892730546, + 0.37624822377152134, + 0.06810660323995885, + 0.2300538806201094, + 0.21221862646575684, + 0.3344790806155696, + 0.2758060916607164, + 0.2772657596969434, + 0.15108333684025407, + 0.2943326748727113, + 0.1301896811020517, + 0.035882300909870685, + 0.25275497595453644, + 0.3858727858084264, + 0.20730275195767148, + 0.03541961381909278, + 0.3949641746363019, + 0.19476346982743775, + 0.21981864511641508, + 0.3116711713436988, + 0.295089000824023, + 0.40392354744856307, + 0.19149865912072453, + 0.40173887881095216, + 0.3522401435977386, + 0.1177330916114748, + 0.2712493151229942, + 0.2531563732914652, + 0.25528029436701244, + 0.3661035504586622, + 0.21295245533697504, + 0.20112139849559602, + 0.20814936634217243, + 0.2810835274792864, + 0.2989661998376578, + 0.2622491289544239, + 0.25391417413075573, + 0.2272207270986058, + 0.23992998249656255, + 0.16328435682347942, + 0.2921589085271912, + 0.2687457273103667, + 0.039151085429065924, + 0.3428636665718616, + 0.14070715685131563, + 0.19007793203975457, + 0.24015433464234834, + 0.22042637792685277, + 0.2223437369170273, + 0.23253868568012878, + 0.2751072196858515, + 0.25045107408360046, + 0.49489203199378945, + 0.23902340692581442, + 0.20422814913700715, + 0.40255090466089455, + 0.26611014345232914, + 0.35573428138730623, + 0.3034823857143029, + 0.4210895636351158, + 0.3512745101221591, + 0.24829032558414788, + 0.48490340482886296, + 0.3312442845178651, + 0.38136299916276395, + 0.35630796583743324, + 0.30425154676350885, + 0.4235167729207837, + 0.35851029333720674, + 0.24147631583204382, + 0.3886209638842314, + 0.49084478067626947, + 0.35696085506054576, + 0.28240028059245126, + 0.41770338341988433, + 0.34521074424209297, + 0.41491297458615095, + 0.31845108885412604, + 0.5253836794448723, + 0.36334047425835314, + 0.39980735006441287, + 0.2856549525004187, + 0.38981032040085084, + 0.4038162035202202, + 0.41807317561278534, + 0.43062632286789104, + 0.5777488226101989, + 0.3310797422133354, + 0.3506155689016363, + 0.355484521223706, + 0.369312069615591, + 0.32994073585649486, + 0.4047995356961685, + 0.41218734490517234, + 0.3621083289651507, + 0.389497779002326, + 0.42986318219167674, + 0.3428929366398368, + 0.2964690844076555, + 0.3084094477972232, + 0.43522233027475454, + 0.4051461715985804, + 0.5475059980921338, + 0.3704202015131934, + 0.38894127863563505, + 0.3884963319939366, + 0.2556912616452978, + 0.33443625647660163, + 0.462908417646022, + 0.4794190571340984, + 0.33062303991747494, + 0.3440941059332963, + 0.2592540518458277, + 0.4029465599154237, + 0.34334865566902967, + 0.5196064995988318, + 0.5473391142101247, + 0.305802090508422, + 0.38063091050801345, + 0.5853943223481781, + 0.23062544828892695, + 0.4289836122099975, + 0.41897772377476095, + 0.44014006019583407, + 0.41985320587974806, + 0.4221511024650326, + 0.4642684468227925, + 0.23260119904750703, + 0.5439005995969806, + 0.24425855202615512, + 0.5389201148508727, + 0.6296421227881043, + 0.35454280444956354, + 0.49056025332196485, + 0.4628703721289281, + 0.5637366411101186, + 0.38755072094508136, + 0.5354572380215069, + 0.32694173020671524, + 0.38166497574940594, + 0.36824060967022565, + 0.6017960013574187, + 0.4599230619647427, + 0.37736361283611686, + 0.6292003508286292, + 0.5747464496433269, + 0.5072782757035407, + 0.5547465708879333, + 0.4923598284738967, + 0.598478494393434, + 0.6735218155695473, + 0.5087303670863459, + 0.704911984369021, + 0.5913985704546455, + 0.6223150853254475, + 0.6595571089538785, + 0.45847873460786054, + 0.7163605871862101, + 0.6212444151384241, + 0.6403312777182705, + 0.2774056777811682, + 0.7743363785743531, + 0.5676472553536386, + 0.7168353462318579, + 0.5688810031938727, + 0.551959665169865, + 0.5688838969307302, + 0.5880918128028467, + 0.3958221916762028, + 0.7581666387139817, + 0.5474010325984928, + 0.7858582088962536, + 0.5382819624437132, + 0.5654323202725333, + 0.560370860262982, + 0.5091735841225808, + 0.39788676160339054, + 0.49926349254822955, + 0.6790196574888894, + 0.6780330274582539, + 0.5819284520947244, + 0.5567715388880304, + 0.4624204355226507, + 0.5766897452730544, + 0.9038169656980697, + 0.6892257900935883, + 0.7101498782355461, + 0.5623167843030678, + 0.7378446975856174, + 0.6942026685487044, + 0.631159039013311, + 0.877950449042259, + 0.5852267456669338, + 0.4722617498549733, + 0.6959842655118877, + 0.762547155404198, + 0.5724876821323378, + 0.9147413430260851, + 0.6706321446831365, + 0.7623765895962115, + 0.6956968648765595, + 0.6242857605024636, + 0.9512870320194671, + 0.8364304896426878, + 0.7072915461200773, + 0.8514199298989674, + 0.8758165160295519, + 0.8405845700429124, + 0.734304765113573, + 0.8570996805975671, + 0.7277617902219576, + 0.8990722837083105, + 0.7112969236287773, + 0.7433153400909456, + 0.9656399413247909, + 0.7585543764802685, + 0.7284535201783202, + 0.8467514059559647, + 0.8318204339442578, + 0.8472763389370072, + 0.9004489580309782, + 0.702997420872769, + 0.7749710334975304, + 0.8998501629685605, + 0.7935074703371534, + 0.8191727927419793, + 0.5304783920214275, + 0.7598029725499301, + 0.8891751902796386, + 0.9736103465413216, + 0.8570383261863471, + 0.7787057343340111, + 0.8157339729638571, + 0.896458335443144, + 0.8111534573637919, + 0.7674112086701476, + 0.9548505104641599, + 1.1055322716316422, + 0.9704088531657857, + 0.833527111232965, + 0.8548588601102624, + 0.7925540599015795, + 0.9272082880420384, + 1.1313864724359113, + 1.0419640514090012, + 1.2749581461602855, + 0.9306216427588397, + 0.9280485465939438, + 0.9230026534550192, + 0.9548154475034779, + 1.04517344322052, + 0.8321022593593963, + 0.900178226131094, + 0.7895784546274924, + 0.874003350407715, + 0.9866386219907973, + 1.0818308557247174, + 0.9689284041239823, + 1.0699184368944692, + 1.027445930382493, + 0.8979581158574421, + 0.9897276029523373, + 0.8839472651736271, + 0.9370504520461671, + 0.9650693073809692, + 0.943292656753163, + 1.0909637009358222, + 0.9507761536584141, + 1.112818077279596, + 0.8697746938829691, + 1.1267994146867302, + 1.0725998784331332, + 0.9779655861564949, + 1.1343867534279284, + 1.0245767370753667, + 0.9297274679596795, + 0.9998393883949117, + 0.9251061301441887, + 1.1058494235070153, + 1.308916962847695, + 1.3318589884815732, + 1.0937747821035464, + 0.9466918056840891, + 0.9212701682087912, + 1.1072536507889164, + 1.0303823942012222, + 1.078050040248018, + 1.1688478734671546, + 0.887120433404715, + 0.9952040122721428, + 0.9895315075920935, + 1.268790334149234, + 1.1186013597424307, + 1.2040941323654848, + 1.1934970801511462, + 1.0396349408975443, + 1.0399934588744464, + 1.2096755105926162, + 1.0308735387286738, + 1.0342697477176432, + 1.1554992620377535, + 1.2558206914891437, + 1.107805622804171, + 1.0999656681760155, + 1.244009499152896, + 1.2595084313050482, + 0.999434482758843, + 1.199585572410156, + 1.3298309979248897, + 1.2604426165684735, + 1.1065210422786609, + 1.0411629576746757, + 1.3101082883008228, + 1.1330780358840662, + 1.1305993845601936, + 1.1981376654918583, + 1.127671021461234, + 1.0938750256302958, + 1.213702487229218, + 1.1090305840773063, + 1.119414151841826, + 1.1429550314717625, + 1.255578714401671, + 1.4065253632879668, + 1.2402371165661321, + 1.2268368325645018, + 1.2851934592943055, + 1.3462885849079151, + 1.1981553794961217, + 1.2524489912239374, + 1.2612335707372004, + 1.564546742014655, + 1.2366428903087032, + 1.2644713234934275, + 1.1816108403979844, + 1.3886125462931462, + 1.367116844791087, + 1.3879033779651917, + 1.2582648792879598, + 1.3194319120988658, + 1.2717698263888737, + 1.1959525592098816, + 1.4000855581220688, + 1.412904093687991, + 1.3975782810723485, + 1.1807957048323066, + 1.5923338221089023, + 1.414200270237492, + 1.2759997923257547, + 1.4745217831347992, + 1.3120759094514403, + 1.3869903907784649, + 1.4645314837235928, + 1.3074873558761029, + 1.3414497033204933, + 1.5488392176116748, + 1.4734354393617681, + 1.5164823050126675, + 1.448056083670207, + 1.498845598431798, + 1.5065554998725275, + 1.329961828409302, + 1.3538236855324723, + 1.2661972587214343, + 1.3586177594119655, + 1.3215563245830455, + 1.531491403965013, + 1.3785955247151096, + 1.4848772343103074, + 1.669644780858273, + 1.1995091513980736, + 1.3934297334415353, + 1.5608365313760595, + 1.415052897325066, + 1.510581132693821, + 1.4643052377271497, + 1.6517064813734867, + 1.5735796115718128, + 1.5867758531483003, + 1.6164344364410275, + 1.4103155006589476, + 1.4264685188779436, + 1.5110730122673326, + 1.5125203159288432, + 1.393086076914972, + 1.5459546143685372, + 1.5586462861735315, + 1.5119857134776251, + 1.4753184456416484, + 1.5556426696483532, + 1.4043994639489865, + 1.3382109186141826, + 1.4110783370787605, + 1.489469214161075, + 1.4708047568873373, + 1.5785446369014648, + 1.4882674035848702, + 1.562671801161028, + 1.5024440347941614, + 1.5247367223760835, + 1.5238771558567938, + 1.4880517249335985, + 1.548280203679113, + 1.6491624555964663, + 1.421972034704599, + 1.4266926822399162, + 1.5661079313165305, + 1.6329985871168995, + 1.6135736663665174, + 1.716307984528691, + 1.7375328482292238, + 1.616975722727596, + 1.6064367029759299, + 1.6632034656461776, + 1.6121976332180843, + 1.6675800651507717, + 1.595920517476548, + 1.4527385739634007, + 1.5476716268858277, + 1.614316427977594, + 1.5918696319711256, + 1.7075046687127389, + 1.5481380422077093, + 1.6400405950372738, + 1.7489809441178916, + 1.8259757919783581, + 1.6921564833571119, + 1.7461263962779312, + 1.6631091159278657, + 1.6505146476821015, + 1.5081869779052623, + 1.6721248812124934, + 1.824197201161386, + 1.831460717616109, + 1.7309093422852404, + 1.6842022818913336, + 1.6692370426976142, + 1.7782684041315842, + 1.6136869453090283, + 1.6707007141555372, + 1.5355616135606003, + 1.6959936158158, + 1.652376938907871, + 1.6858555453900739, + 1.8337867504817649, + 1.5783972551399585, + 1.6832555016101753, + 1.7441801740299918, + 1.705748202083505, + 1.7618021636662096, + 1.7089858983609263, + 1.9087130057692934, + 1.8387375536898924, + 1.7820276562776047, + 1.7285210116915164, + 1.7696296914366587, + 1.682718598964406, + 1.860074076829266, + 1.7117772191038751, + 1.796897128956229, + 1.7720522794888784, + 1.7162994982658928, + 1.8883806693269456, + 1.6948262305717803, + 1.7687514820013204, + 1.783109152121092, + 1.9110585529829809, + 1.7774597478361132, + 1.864597648270462, + 1.847679118104406, + 1.9505252382149176, + 1.7272284222632561, + 1.6284845520341875, + 1.775964867032276, + 1.9213950055301408, + 1.675946169473423, + 1.8334404660239225, + 1.8313794442984301, + 1.8947142968440156, + 1.8935875203009218, + 1.9025270029553893, + 1.8285123696521668, + 1.9866016934431532, + 1.8969489382064686, + 1.6832777357358824, + 1.8990068242083737, + 1.8651321294035237, + 1.865538173756614, + 1.772161374913824, + 1.7757828759845666, + 1.8167146599906732, + 1.8944259089468873, + 1.8773155253153206, + 1.8574424794333608, + 1.888683737002651, + 2.013913235508838, + 1.9258237811995784, + 1.8823127988918786, + 1.8717470437551427, + 1.9985867251895344, + 1.9761245276653578, + 1.8873223350833557, + 1.9936898081622465, + 1.7812189111447552, + 1.8696961224210207, + 2.0989185829651094, + 1.8544197125730524, + 2.0162152379966254, + 1.7533328530686345, + 1.909634529984388, + 1.986587335542606, + 1.8122843600085594, + 1.9707929231115755, + 1.9985542501406766, + 1.9426760659533633, + 1.9085327106985728, + 2.196911988761094, + 1.9474373295675396, + 1.8635956466313974, + 2.0672037079362986, + 2.010085383531597, + 1.915577401780328, + 1.9898432757963995, + 1.9529184242037945, + 2.2436784709068585, + 2.014818467764559, + 1.9932695666312286, + 2.092400811377836, + 1.8701047118801906, + 2.0560025671094375, + 1.8786211301732947, + 2.009276095986943, + 1.910572481304807, + 1.9690177198488334, + 2.2299280432609874, + 2.099474599118847, + 2.1493984076385275, + 2.1715975490768744, + 2.254597787836268, + 1.962671408565539, + 1.9620268003345647, + 1.8758300550843043, + 2.1131998563613674, + 2.0195927606177224, + 1.9819947056591065, + 1.990322756373477, + 2.1024036951773444, + 1.9788846965039855, + 2.080785583012678, + 2.098837836603897, + 2.09554123830269, + 2.090017524315565, + 2.0625423817695308, + 2.0076435964840953, + 2.1665834907228585, + 2.046357622625077, + 2.2830284039367745, + 2.1774389301137944, + 2.1920253150620157, + 1.9708660941663703, + 2.1634274996493867, + 2.268010480930546, + 2.242340493772433, + 2.190427807203115, + 2.113184861269102, + 1.9383065884310395, + 1.8563587640748263, + 1.9682106438756182, + 2.1492671703287924, + 2.2157341815468294, + 1.9282537436253084, + 2.0035469869344733, + 2.238301440960516, + 2.166663991096823, + 2.0085108872380686, + 2.056854703877719, + 1.9292974076633242, + 2.1287934618800124, + 2.051116431135464, + 2.2392940779824735, + 1.9996426991907736, + 2.0826631259785944, + 2.1337684547088482, + 1.9987439845609474, + 2.070660103980922, + 2.1390068565055387, + 2.3308784858601497, + 2.163730385869175, + 2.21027431813125, + 2.1950297334573134, + 2.111916943681018, + 2.191389184878111, + 2.235056757908753, + 2.1734409350330828, + 2.1992647150182805, + 1.9885313558653879, + 2.042101416294879, + 2.132104597594001, + 2.161917094111423, + 2.001252916340332, + 2.091490198320473, + 2.086156442647193, + 2.199575360913722, + 2.0555097760006626, + 2.042848460261886, + 2.2542719281112533, + 2.2178434228042154, + 2.193103275603404, + 2.3948086497270022, + 2.1472116389991873, + 2.4096445353182827, + 2.0256755307135075, + 2.182375743532711, + 2.1348797950624103, + 2.1251096462711963, + 1.954955794510381, + 2.2700365366138313, + 2.2746512138765693, + 2.278844941588137, + 2.0921418505750817, + 2.271849919222555, + 2.2859727584030156, + 2.118989288105493, + 2.20953914772641, + 2.2430502401041115, + 2.3119990742314442, + 2.2299520538481397, + 2.1998016225815116, + 2.2188884803395736, + 2.1463532713721443, + 2.4879456416719528, + 2.174799861768971, + 2.2016941862042905, + 2.1334806919356524, + 2.3366995197239997, + 2.18961827073086, + 2.2540133160447264, + 2.2063622187503222, + 2.13329278653329, + 2.13897473591009, + 2.1477195795247983, + 2.2070514626001816, + 2.188118241299622, + 2.1604372638853238, + 2.283669386546604, + 2.2011084230707403, + 2.2042314127142264, + 2.251958028831071, + 2.1634556893987065, + 2.3191405583213567, + 2.2139655792991912, + 2.088548456822896, + 2.100914813614242, + 2.1342042077919436, + 2.279724889573815, + 2.3758510587652975, + 2.173127587458649, + 2.2919480815653652, + 2.2728280005293016, + 2.310636550006214, + 2.3232496176063213, + 2.322532309071996, + 2.0766574346054476, + 2.2539458329546536, + 2.3433454622724033, + 2.4524335287170067, + 2.1300115810885925, + 2.3179523483473643, + 2.1598131321420153, + 2.1532934028003496, + 2.2447807021756465, + 2.2126173502912296, + 2.105999908984318, + 2.129184022325258, + 2.21620737780907, + 2.0970118372671105, + 2.3825318111045797, + 2.2758081107515387, + 2.0902149734038984, + 2.3469961591850836, + 2.133727119571359, + 2.140043045553107, + 2.010501624158617, + 2.1910431494810436, + 2.175650551762398, + 2.018788988418604, + 2.042126473709064, + 2.2152536016497213, + 2.2373407369282337, + 2.2166316139071243, + 2.2137862701127684, + 2.2138378803714267, + 2.034531587355983, + 2.1970304266568017, + 2.0607056787407516, + 2.2584419905412028, + 2.2308776363290446, + 2.230697392611923, + 2.153217388345325, + 2.215807127057721, + 2.1740405064151123, + 2.236714991115408, + 2.2125969290471, + 2.0947837231174824, + 2.144349212702389, + 2.2097824772976633, + 2.1489000929834803, + 2.290839306308264, + 2.092811540312028, + 2.093216347949769, + 2.3458673121603426, + 2.1627737674110854, + 2.1435101930450813, + 2.261341086731561, + 2.332799894485356, + 2.2224758024627502, + 2.1051046339460493, + 2.2864682736923885, + 2.1149826351511516, + 2.08827715328671, + 2.074222092323959, + 2.215198974519642, + 2.1798549286076994, + 2.319432307886824, + 2.2819649095587344, + 2.1075254601068765, + 2.041923543173914, + 2.1083533024465484, + 2.147574592227363, + 2.1553479035469816, + 2.10424352077733, + 2.1841540315932533, + 2.200733203701042, + 2.2684932897118393, + 2.281251473765457, + 2.1549760362135584, + 2.12915203415809, + 2.1497517017217356, + 2.063060104749019, + 2.2033474653870266, + 2.0130617529494117, + 2.159970382649739, + 2.1114780667373605, + 2.220815349228526, + 1.9458533198996408, + 2.039924364100913, + 2.2666516492485154, + 2.077387638594526, + 2.0643947462167773, + 2.083526239174707, + 2.123404471142627, + 2.180984967365887, + 2.1647849175467773, + 2.158485102523497, + 2.144377815035814, + 2.03987205853781, + 2.1187319860324614, + 2.1176221378085844, + 2.1346675585562442, + 2.118637074203486, + 2.146048776262681, + 2.0679308973584476, + 2.4381381990523687, + 2.294644120866477, + 2.175212672581924, + 2.1926964731615115, + 2.1078088074137256, + 2.1435238615650336, + 2.195928176077621, + 2.1791598780190142, + 2.1769652203597025, + 1.9902622831845962, + 1.9315361710661163, + 1.9246990281092626, + 2.0795616115280837, + 2.170899862322579, + 2.2130049589549543, + 2.0899797004352796, + 2.0544128581532686, + 2.08894800398015, + 2.06340723037091, + 2.1483789536143476, + 1.971142768462512, + 1.9873360711390191, + 2.1084215893803253, + 2.048476827067492, + 1.9408427603136964, + 2.1387218255324343, + 2.065190507058375, + 2.013949308689722, + 1.9891890145074358, + 2.098698464012388, + 2.1397738330362857, + 2.011080980224181, + 1.9222949023904061, + 2.1553196417144607, + 1.8399581754170942, + 2.0436363667814796, + 2.147349130194011, + 1.869492391356384, + 2.1514350936291473, + 2.3510373085744307, + 2.0024982921653574, + 2.24134127089684, + 2.014580403261152, + 2.107930769874134, + 2.1976604162348723, + 2.1323480163303765, + 2.0897179138437445, + 1.8816045725936699, + 2.1107181347794466, + 2.090510905764649, + 2.0090081609706365, + 2.104048765570417, + 1.9921575772691342, + 1.988084202616058, + 2.0064464880894253, + 2.108738741488493, + 2.055636801514507, + 1.935179593780122, + 1.9604142635052577, + 2.010906228180139, + 1.8573797170024637, + 1.8957927009862914, + 1.7940010454814843, + 1.8841403687884677, + 1.9792176402861, + 2.0319293766718856, + 1.8174906621391125, + 2.239746890802519, + 2.0002255899633448, + 2.1119675033188106, + 1.8223658739711832, + 1.7538489934874992, + 2.0603960657914757, + 2.1087064805552234, + 2.064046053015429, + 1.9470843955773227, + 1.8665545948717768, + 1.846587327350204, + 1.8696094872384865, + 1.9473331017554896, + 2.030133097417874, + 1.7310091008566275, + 1.9807415007270808, + 1.8159659555064742, + 2.042939749572888, + 1.9737581613635162, + 1.856926271955871, + 1.826532622693534, + 1.980387302310533, + 1.8274649070434275, + 1.8736242705110595, + 2.0516619536695786, + 1.9011683212222683, + 1.9123015844299749, + 1.8052037451675902, + 2.03756316510804, + 1.7852034947952433, + 1.8163411398742177, + 1.9315012531107165, + 1.7633623192697048, + 1.9228670714071274, + 1.927849023241668, + 1.9163268160856377, + 1.777083086581878, + 1.8435554044809808, + 1.7313177781281104, + 1.737837648437333, + 1.794640077439566, + 1.847792087585628, + 1.8616848052488848, + 1.799800130016643, + 1.705105252609633, + 1.7239587449317608, + 1.8980408457180777, + 1.8223537106485428, + 1.9620134685618555, + 1.6020631172091182, + 1.866689250130118, + 1.7624356393276943, + 1.8974609662032476, + 1.7809111869115737, + 1.8932635124076487, + 1.693194484316, + 1.9610344106213098, + 1.7865939502007946, + 2.01571692644696, + 1.8566810892512597, + 1.8585298377085533, + 1.8828560224436115, + 1.8517031048690993, + 2.035797929762168, + 1.8297172106961115, + 1.7584075871974547, + 1.888421297127444, + 1.9078160015669323, + 1.944996194965421, + 1.9595895230193314, + 1.8648131642490486, + 1.844303616068154, + 1.6546466364736643, + 1.805422868657868, + 1.7301025970004853, + 1.9163081230650392, + 1.7385528103458425, + 1.8298914934697392, + 1.5641579166129207, + 1.8842549549509038, + 1.644503996895432, + 1.6634707274827623, + 1.4583087695930514, + 1.6691476291304879, + 1.6485761677517439, + 1.655458980491623, + 1.6765836683348818, + 1.8746837529366207, + 1.7147836846449591, + 1.6501239742246927, + 1.8214676956873175, + 1.6825810492257476, + 1.6846083569240462, + 1.6739799857428794, + 1.8470250743895535, + 1.718448864694147, + 1.7440535109113926, + 1.6568192879804748, + 1.6362867495434896, + 1.835573710471001, + 1.6218456450608745, + 1.5571499868847694, + 1.6376941968682466, + 1.6090746948564112, + 1.4630427162079254, + 1.7952248288820938, + 1.539621042296445, + 1.6776486434222042, + 1.513128076063344, + 1.4951608642577225, + 1.531684215161048, + 1.7418594657955786, + 1.6193023394641854, + 1.4426817987476888, + 1.642699347425359, + 1.6155511643560736, + 1.7304347822254322, + 1.605583213813856, + 1.615647728740064, + 1.679847478691971, + 1.4806191730320735, + 1.421238840590363, + 1.738632517711737, + 1.382039158133104, + 1.5771809465618878, + 1.757613005916132, + 1.792752970492732, + 1.6703120941216953, + 1.5158642125400015, + 1.6136106625846667, + 1.5309825152630474, + 1.4075002601824032, + 1.6297555716367824, + 1.712638695794674, + 1.3530538125561593, + 1.611285947127262, + 1.6008811344131104, + 1.4816010515736273, + 1.638785935757955, + 1.5488545700610143, + 1.395554833921479, + 1.4533318781231925, + 1.5114890363409712, + 1.549274058796595, + 1.503896101085209, + 1.4487638105371534, + 1.4558302373188556, + 1.5303727189495495, + 1.4593841665784222, + 1.1718061041842949, + 1.431226770231443, + 1.3735822720085584, + 1.398173667134966, + 1.412090007167123, + 1.4983624132432936, + 1.442693795927217, + 1.6109116920312823, + 1.3366228199269206, + 1.4524636726490923, + 1.1517732302775512, + 1.5097865198663565, + 1.3967968958986645, + 1.5244974849995798, + 1.2952963334098857, + 1.4156182247676967, + 1.3560269293306273, + 1.252809260234339, + 1.365143453171627, + 1.4031047261898422, + 1.460562721808352, + 1.4702028018110962, + 1.5190440708230497, + 1.415994925706141, + 1.3252842258646564, + 1.5471271328903828, + 1.2053567195214105, + 1.6075468522343934, + 1.308179064435271, + 1.2920303431362115, + 1.371411545544865, + 1.4322602159478734, + 1.2638862434937732, + 1.3404564763954754, + 1.2394785961938741, + 1.2686058851075062, + 1.081059973170691, + 1.2810099014574141, + 1.399845444361896, + 1.466399492408865, + 1.255805661147456, + 1.204051393888991, + 1.46800192692282, + 1.1759491050289481, + 1.363457781926793, + 1.286139421621122, + 1.247808716108432, + 1.3300094217175933, + 1.2233199741318879, + 1.1458097335474684, + 1.215123401198169, + 1.272999973503871, + 1.1408003466485765, + 1.1105491119764055, + 1.223872528800902, + 1.2494214567351243, + 1.208599194812426, + 1.1298900124603102, + 1.1556522283005353, + 1.203927988655378, + 1.181488448497122, + 1.3555298915976917, + 1.2871233355751512, + 1.2283176507165199, + 0.9687183271473344, + 1.3827246025458901, + 1.0653738086996725, + 1.3024887521356387, + 1.3537748820426718, + 1.2150091223862518, + 1.0872686617025888, + 0.9186962507222034, + 1.0870493366209686, + 1.127011481435453, + 1.0867999103849812, + 1.2350559260982599, + 0.9720095667045524, + 1.2261373189483329, + 0.9045285177422108, + 1.020819478337526, + 1.035558128982041, + 1.0263660791058642, + 1.0512252774730366, + 1.0968408216122094, + 0.9638711534896731, + 1.1304275587037034, + 1.059018078695235, + 0.9989754493078403, + 0.9472163779532743, + 1.0417709867265845, + 1.0335370003941744, + 0.9770880658310565, + 1.1200471806512655, + 0.9282981408196123, + 1.0414420095127497, + 1.0794169188364375, + 0.8712405074524247, + 0.9601571197126477, + 1.1416245587190308, + 1.2120677487330556, + 1.0094095530775926, + 0.8992812875950128, + 0.7841709870835668, + 0.8873230465750456, + 1.1295613522231542, + 1.1496809010376454, + 0.9066264056214745, + 1.0229629968213236, + 0.750148445054447, + 0.8618172643725142, + 1.001140114951718, + 0.999996640531023, + 0.9325385251972358, + 0.871663053261019, + 0.9668548463545121, + 0.9839836105482325, + 0.8498644815625678, + 0.8583197341200572, + 1.0677508706018473, + 0.8251530397619127, + 0.9982480631892399, + 0.9544526011893856, + 0.8977256082369929, + 0.9069479304278053, + 0.8861881969522847, + 0.8919832626638846, + 1.0638851480536824, + 0.9528087434180272, + 1.043585100763864, + 0.9619603728692966, + 0.8895900236855817, + 0.8854342735261658, + 0.8291952993569409, + 0.8269462823567635, + 0.8831005777409128, + 1.0172192026168458, + 0.8492476625156206, + 0.9377979339016937, + 1.0561819141752062, + 1.0006181191027594, + 0.8189192149949133, + 0.707656773872587, + 0.762084363647419, + 0.6773225425152738, + 0.8632998380664744, + 0.8340801690569188, + 0.9382399028067548, + 0.8185029320248759, + 0.7814588190168593, + 0.951930664584318, + 0.7018216241824744, + 0.774605702163388, + 0.9485147724818452, + 0.8973130009344438, + 0.5341946295303861, + 0.7177473924946692, + 0.8167884861254349, + 0.6798330641537119, + 0.7441911671979385, + 0.9026755764879251, + 0.8879078007469527, + 0.7944874650279475, + 0.9945069221334509, + 0.73144549899172, + 0.7233228702856171, + 0.671229656536043, + 0.7671219327710739, + 0.6298019147197635, + 0.7524714504748523, + 0.6434005546074514, + 0.7378459202501995, + 0.7220718078005084, + 0.7460998681643018, + 0.5424235447744157, + 0.6479364254626494, + 0.9252347905770888, + 0.7078983748521062, + 0.7354173960427571, + 0.6704002789861, + 0.4769071313092827, + 0.6976646910731434, + 0.4966724798875735, + 0.7248898039058088, + 0.6507585701356381, + 0.6782835162749525, + 0.5530710894224435, + 0.6386273949675476, + 0.4927069194177363, + 0.6163817033276455, + 0.5850197976821447, + 0.6928337336892395, + 0.61391775900114, + 0.632151170963197, + 0.6336185459067832, + 0.5958546927386416, + 0.5023309154459019, + 0.5778906700490852, + 0.5185169523439133, + 0.6521036448023683, + 0.5533665053888451, + 0.6827506680201897, + 0.7141322501547475, + 0.6154114847811415, + 0.4938474780710591, + 0.48350606664395734, + 0.4774384944025979, + 0.5638757220598675, + 0.482968867373209, + 0.45828589271510034, + 0.493314655787086, + 0.4941087615886385, + 0.4535462737885186, + 0.522851809508827, + 0.5353287394474656, + 0.5530207929720677, + 0.5354743343021559, + 0.4082587130119866, + 0.5289304527161602, + 0.5374625570450356, + 0.6237236541487209, + 0.6040939347612253, + 0.6063903689366323, + 0.5846287269432899, + 0.5604036784380032, + 0.48619004315243625, + 0.44573019842999506, + 0.3578574118202537, + 0.659185540501239, + 0.5478762174030367, + 0.5824922283969751, + 0.5406744388303776, + 0.38217556143963227, + 0.5105957655463834, + 0.27671966803206705, + 0.6258682934120059, + 0.5110695680663848, + 0.5204727912812122, + 0.6195765033306976, + 0.24466932723019924, + 0.6275239685340491, + 0.44800945560232897, + 0.27855405961769486, + 0.3623879161759019, + 0.4369255709078428, + 0.4965731267344893, + 0.3158871162020852, + 0.5270703180654736, + 0.45643243014245544, + 0.4431728259537397, + 0.5974549572053673, + 0.609560615469917, + 0.5555598854632605, + 0.4266791167731113, + 0.5285789779636241, + 0.5669254793019725, + 0.3888646434684172, + 0.2991799241403498, + 0.673400513468837, + 0.5097067288427205, + 0.4289248943189723, + 0.36200022064645565, + 0.22693647425349692, + 0.42651162606740145, + 0.39699201738421014, + 0.2686882318799054, + 0.5724350626781421, + 0.4181052544248832, + 0.3705856551701956, + 0.4970344112868916, + 0.2996616061227577, + 0.4759172577077013, + 0.5253231157603406, + 0.6656129867113771, + 0.4529930984675602, + 0.4785117363542613, + 0.3787434027859556, + 0.49104887298086275, + 0.3064801239331683, + 0.3296709217082385, + 0.29106606211556363, + 0.3692392201610096, + 0.2923963140628225, + 0.3580968476155332, + 0.304575715889843, + 0.40206662256673886, + 0.4486511017883492, + 0.4052768611662265, + 0.31550917753762586, + 0.21189632144138915, + 0.270322145254434, + 0.23131346460160881, + 0.3724323323794867, + 0.3510769513793628, + 0.3717911749882672, + 0.3467339878029705, + 0.3642410814015692, + 0.4583354745643735, + 0.4609980474689398, + 0.3527075851285368, + 0.14975520528662414, + 0.4112853779943143, + 0.4602994955452373, + 0.3073405743568183, + 0.35482629889591016, + 0.16833848948359445, + 0.25491835812404356, + 0.36839421019535123, + 0.09524297018799618, + 0.22601024883228618, + 0.3993540945692545, + 0.397364605182459, + 0.3237648112443726, + 0.2670795473354986, + 0.284206912958931, + 0.422094940359192, + 0.4228195755776677, + 0.33896201016012506, + 0.31168663811493236, + 0.47090757741336176, + 0.06425358861780503, + 0.38094228760282084, + 0.4467479062010514, + 0.2715618817012324, + 0.29351220266926226, + 0.4379305176099494, + 0.25545755152618915, + 0.3070877972553415, + 0.23261920227738997, + 0.3409101836661396, + 0.41144132581164095, + 0.32822723912549834, + 0.2649365076023015, + 0.20580493793015847, + 0.2113184479641805, + 0.24121526274349986, + 0.2048461056930255, + 0.05861827403586661, + 0.23462664540269118, + 0.19986992912388496, + 0.2532594478805847, + 0.2173758129983267, + 0.32160111728210483, + 0.2687513049071022, + 0.16334918679992394, + 0.33251859352186863, + 0.26217025375352515, + 0.20034773052311033, + 0.29081627164531904, + 0.031754622866610016, + 0.4049583129235937, + 0.19759453492486606, + 0.2760945248410182, + 0.11956877017466365, + 0.2863073836728546, + 0.24604419314254566, + 0.28310116098899646, + 0.3630983465072888, + 0.23084199006756995, + 0.2097369306079295, + 0.24657062087712223, + 0.28234737788656816, + 0.40301645363210703, + 0.1438097232944952, + 0.1617210621686242, + 0.12512388092403381, + 0.29113378121037936, + 0.17917881951282869, + 0.1751914848495304, + 0.36202697548272034, + 0.38024135056197605, + 0.26553028229840336, + 0.23158089944002716, + 0.22866171495996357, + 0.30409795903518416, + 0.1701009106738964, + 0.021458022472154226, + 0.23037720265163664, + 0.13682337070769413, + 0.16727449027645022, + 0.33818116260525444, + 0.14475650220160763, + 0.3340679483657787, + 0.3504093837844464, + 0.25315155849751625, + 0.06541517656597304, + 0.2398997219610633, + 0.3672587117913798, + 0.29899583125794965, + 0.18600415700050862, + 0.2833110554405316, + 0.2665238103547235, + 0.30127528996107844, + 0.15934717786879574, + 0.20795422679777123, + 0.2238995172525881, + 0.10332815266115813, + 0.39547666836388506, + 0.1551091116112512, + 0.2662343538684489, + 0.15846914646981425, + 0.340663115578374, + 0.2222330958517945, + 0.14309017970315457, + 0.2952754730268727, + 0.15505404204812873, + 0.27370932929212277, + -0.04491563558537856, + 0.1602017380199759, + 0.13323666041971138, + 0.16053807341763807, + 0.23285889251064484, + 0.12459594727085364, + 0.40571094140959485, + 0.06731924972720976, + 0.27369711118036716, + 0.22734333095280485, + 0.02925825211960842, + 0.33239514731601794, + 0.1595157973972408, + 0.25849714063695073, + 0.2281740645249161, + 0.14335958375309626, + 0.20264313133225664, + 0.19372345197899857, + 0.1949848409889048, + 0.23508428293873634, + 0.08178082172299825, + 0.2218616747811034, + 0.14728419511060376, + 0.3502208764977792, + 0.23414801735842325, + 0.20903019071200366, + 0.16319781208694287, + 0.12045570102800275, + -0.028810458472660644, + 0.21654496570599766, + 0.3952091877030477, + 0.22980532765016193, + 0.28418111124805334, + 0.30020706946022335, + 0.1737828948088145, + 0.2903812199973534, + 0.23094125770280546, + 0.22404833891189194, + -0.03405554132481994, + 0.19773835262625877, + 0.2516615786248778, + 0.12550461917487743, + -0.012277772069905879, + 0.0996816445025193, + 0.059383967095184176, + 0.14663826474116118, + 0.10288038797203, + 0.24067525895590958, + 0.2981091726390034, + 0.3821896283746461, + 0.225757988850535, + 0.3335359226584213, + 0.1961206039933907, + 0.19603217675191767, + 0.24173829512688005, + 0.23740302939287214, + 0.22681613496839176, + 0.20286016428382422, + 0.2036008369924024, + 0.084491012073875, + 0.39072276087580426, + 0.25980346670010956, + 0.25938389190873756, + 0.21139949985864923, + 0.09296175726407666, + 0.3075276098274098, + 0.23477475570110634, + 0.28505191839299243, + 0.19970090865715293, + 0.20515350386191844, + 0.2826926534183006, + 0.23158092256337875, + 0.13925078418837483, + 0.05636823896541293, + 0.2628686160215082, + 0.20883058701305707, + 0.3717939127827127, + 0.2149071127209869, + 0.32184039728625274, + 0.28988797689332324, + 0.2787420817624121, + 0.26807946973215546, + 0.2469923545820609, + 0.4443424871040026, + 0.2787427006216587, + 0.17809624760355464, + 0.367044204827032, + 0.3737855550092452, + 0.2290854286057174, + 0.29629139098618884, + 0.0684556815692576, + 0.27615870847822854, + 0.1645635126392185, + 0.34038027692074946, + 0.09171753659670334, + 0.24101776704497102, + 0.19076075800081044, + 0.15513314944709633, + 0.2742044197181961, + 0.257370055988579, + 0.1962711197146733, + 0.1922238348957621, + 0.21086082175722387, + 0.011820691220217505, + 0.399461105650343, + 0.4111357546702237, + 0.4281915220989765, + 0.2861258452693363, + 0.360028574545237, + 0.33297963668640496, + 0.2662023465504889, + 0.33479279004118756, + 0.3864085152650498, + 0.4812909858343922, + 0.387452289298895, + 0.36768257130340076, + 0.2849952455296001, + 0.30287491806634753, + 0.35419953990636516, + 0.10047259457970892, + 0.3197403905845244, + 0.24629514389235851, + 0.4248353921041993, + 0.22726671923305425, + 0.2841334173998418, + 0.2575519740299897, + 0.2669225705536624, + 0.3574516296209964, + 0.3502504841180551, + 0.46246784791029, + 0.21983835651517003, + 0.37898583955282217, + 0.417895564113384, + 0.3269693742935164, + 0.4251560214482045, + 0.38280931799939244, + 0.40649451690541993, + 0.3069164007077142, + 0.2518621675586187, + 0.3665020774171996, + 0.39173222955834347, + 0.43718869297317214, + 0.3895116759715808, + 0.3003034171535021, + 0.504023465666881, + 0.596731769109332, + 0.18594690875212935, + 0.5626686287598364, + 0.4265115248218388, + 0.3395531805700826, + 0.39115252769097325, + 0.3036534998308073, + 0.2973167561122608, + 0.25713872913999986, + 0.4927536370853665, + 0.33578141732230615, + 0.28448848540519883, + 0.478255315055399, + 0.549990607072671, + 0.3165371080120062, + 0.461862978066848, + 0.43900848985973806, + 0.6109963812570605, + 0.40384480457653793, + 0.33415027950596693, + 0.30092394908082987, + 0.3904193397823595, + 0.5270609076897023, + 0.2992984200166187, + 0.3826569540258654, + 0.45398526016624235, + 0.2901741780167306, + 0.3119556478020353, + 0.3959667812569737, + 0.5345148834607195, + 0.4531188293436939, + 0.46020505171486553, + 0.48507047658700914, + 0.39340341044202376, + 0.40516924374813734, + 0.4755709200583347, + 0.5488006735813735, + 0.355271555883383, + 0.40791641716649474, + 0.4579455858542249, + 0.42925628958707557, + 0.6054006964806975, + 0.5362165297288471, + 0.6277884336542773, + 0.5156191958786026, + 0.3639569045845038, + 0.4638103384865134, + 0.45369208630602814, + 0.4541090858954801, + 0.5900903966800243, + 0.42241348179326105, + 0.3895657044145964, + 0.4600518992050455, + 0.3607214135499497, + 0.7666188436795951, + 0.5059697451963154, + 0.7717834888947505, + 0.5998232346003436, + 0.5252470063811054, + 0.41420592062725026, + 0.48723294687032215, + 0.6883973842204218, + 0.6742045926811, + 0.6832167780630859, + 0.6381693946234106, + 0.47441006064662355, + 0.5665681306005891, + 0.7084604280626075, + 0.53321743828669, + 0.590949496416607, + 0.5815894659596373, + 0.46360019780831657, + 0.6479265536363504, + 0.5417826672597854, + 0.5959347724429069, + 0.49872322342775804, + 0.6985125549062232, + 0.6038567907440666, + 0.5314482696155316, + 0.6190162043014363, + 0.681532184446972, + 0.4952494006354807, + 0.5183088350196354, + 0.5457736238157747, + 0.6231904220160422, + 0.7506068486409114, + 0.5095424903643213, + 0.5909385072710549, + 0.774492457635195, + 0.5838361794473564, + 0.5491831503046428, + 0.6893468393145376, + 0.6243480155060767, + 0.7515333293814455, + 0.5540347543626691, + 0.7389318041109958, + 0.7541430835563787, + 0.5604254863849554, + 0.7073380760271807, + 0.5517971119741615, + 0.6661802665147671, + 0.5593472218417906, + 0.6922408798755967, + 0.8306414047956265, + 0.5236095528705246, + 0.620780136031694, + 0.7462932160807596, + 0.75703189861993, + 0.520945730075522, + 0.7408526901152406, + 0.3179090391003456, + 0.7228538159292045, + 0.7714173432547923, + 0.7378370843028993, + 0.7078595775021684, + 0.6076811535027938, + 0.5333442207422594, + 0.8987622561131279, + 0.8748742333871968, + 0.8389989686352316, + 0.7858572951508666, + 0.6500916232948972, + 0.7566785177663038, + 0.7306226269852223, + 0.8206700412339719, + 0.9840554921356797, + 0.6891661022012016, + 0.8064466726478304, + 0.5639925866306175, + 0.716228786291473, + 0.7314374848162934, + 0.8012857158603618, + 0.5870432033837226, + 0.7271585638381421, + 0.7111468861092369, + 0.8898461767909999, + 0.7984711180351812, + 0.7656738137070174, + 0.7773660716303228, + 0.8210648740562008, + 0.920485538089284, + 0.8307836327861768, + 0.9903917461417364, + 0.7445722682599194, + 0.9387023804664111, + 0.682236685510066, + 0.8465733518996886, + 0.9419520214852223, + 0.8625342252992587, + 0.9951733139660894, + 1.0024103714731158, + 0.8598803879174758, + 0.8925276054182059, + 0.7946645471017916, + 0.9090933091251755, + 0.910773800841431, + 0.93847737972734, + 0.9030731671840981, + 1.09596839489576, + 0.9385594320900391, + 0.7391902384596464, + 0.9382289465068461, + 0.9927180487040349, + 0.960615068223654, + 0.8929436470101583, + 0.9743624813922306, + 0.9844377722256666, + 1.0525271660533149, + 1.0076668669317077, + 0.9900250188657181, + 1.0274355521030227, + 0.8655730092400846, + 1.1403407583570213, + 0.9398612777944542, + 0.951292315122614, + 0.9747906378220124, + 1.0227641529276783, + 0.847909130345756, + 1.0635369808491695, + 1.0404476346227527, + 1.0816978821442358, + 0.9095589912130374, + 0.9453797839524168, + 0.9090698074177702, + 1.0522823858652393, + 1.0736421532617424, + 1.1534117207509407, + 1.1134660848839482, + 1.0306761640817403, + 1.1376014919406174, + 1.1610856745137053, + 1.0635236010761857, + 1.1298484228011627, + 1.1486098869486208, + 1.271973721883299, + 1.2892082287105664, + 1.1669719013881312, + 0.9695922144453809, + 0.9875223992962263, + 1.085787750677464, + 1.2741111879318399, + 1.0928167248067726, + 1.0708609685697639, + 1.1288306611554204, + 1.0330840470130083, + 1.1744518368132013, + 1.1536230080749554, + 1.138203916790124, + 1.2313609576525932, + 1.153164566702245, + 1.1676506969232077, + 1.071141176707222, + 1.1501832145611128, + 0.9667095496828483, + 1.040480962673402, + 1.2546142081051335, + 0.9890705801218951, + 1.2399051240634227, + 1.0173902969236288, + 1.371078551402388, + 1.1225126387868876, + 1.2159489511431445, + 1.2352603817844385, + 1.2852612804552388, + 1.3368141325745921, + 1.1057157990788715, + 1.4174908469940697, + 1.3119511812634088, + 1.242999124130061, + 1.3968521268252876, + 1.3020296251825767, + 1.3331691299677861, + 1.2534954709568351, + 1.2461950236050932, + 1.2566080968678977, + 1.3781055197988565, + 1.212114830733753, + 1.300901453549493, + 1.331340122443103, + 1.253659095696713, + 1.3808903295010944, + 1.4209689400768333, + 1.4558181481269894, + 1.1763081226688756, + 1.0722646339732687, + 1.3095330189968875, + 1.4487479092164763, + 1.2618832650737566, + 1.2022610046475528, + 1.4701633622083525, + 1.3267299050046577, + 1.3692531304441562, + 1.402669588211055, + 1.4313965370183568, + 1.3499098620531458, + 1.2206032284158366, + 1.1723734242163848, + 1.389818077728571, + 1.3876107412809762, + 1.3624852113533672, + 1.1965614251362475, + 1.194012867858092, + 1.2119820085915705, + 1.551201017488698, + 1.4900137460542844, + 1.4250169721639403, + 1.1778962618329718, + 1.181513608359831, + 1.5136797515409943, + 1.2230217752508907, + 1.4344960583933688, + 1.3878280472406772, + 1.5150230478443276, + 1.4314278992303209, + 1.3582556106806245, + 1.1043882414064352, + 1.23594892182181, + 1.4145238636484292, + 1.6093328640009528, + 1.421954720462015, + 1.5328659861131058, + 1.4538243406298093, + 1.3187140145813503, + 1.3663423426405596, + 1.4735119113231965, + 1.5228675024540559, + 1.5111928308515512, + 1.5842879240255678, + 1.6297652129066276, + 1.638009621643948, + 1.5526803392352275, + 1.4664085553111088, + 1.5654196384583843, + 1.4607881711397326, + 1.4788955549687637, + 1.4240496142150347, + 1.3282897069023074, + 1.56962980441674, + 1.446093405177856, + 1.499818546791334, + 1.654768690911776, + 1.6781345302742245, + 1.5840910172802882, + 1.502534850690761, + 1.5218695028624578, + 1.5178236973242367, + 1.5462210144329174, + 1.5008273096409313, + 1.5172287946573026, + 1.4148081158392471, + 1.5775452288376235, + 1.568211015936969, + 1.6250146590951775, + 1.7379450129568415, + 1.558789981971275, + 1.6882710019408627, + 1.6358958085755582, + 1.4063625899198042, + 1.4366169416928547, + 1.4718886554883464, + 1.8669996538804106, + 1.5187749145336145, + 1.71667385383135, + 1.6037576866502137, + 1.6451746293411178, + 1.6406370902011285, + 1.631221311946416, + 1.6163926410888991, + 1.546941571311765, + 1.5501052362704952, + 1.7593364920064722, + 1.5797224535871068, + 1.73087330205067, + 1.7758217708902178, + 1.6748659912654993, + 1.5920162511042109, + 1.5104245520222475, + 1.6283741225601434, + 1.7590095414647544, + 1.6865218770488246, + 1.5380220840331738, + 1.698195236917669, + 1.7936454869076457, + 1.617701208136455, + 1.5643369063382158, + 1.7925146976620434, + 1.7525446796769033, + 1.6536723865660874, + 1.7661368753223439, + 1.5604137236412872, + 1.718173343649212, + 1.888982264256497, + 1.8922503470606433, + 1.7960587891777657, + 1.814151699472453, + 1.8904931656382877, + 1.6711036119516134, + 1.7815947333036757, + 1.5385608724298951, + 1.5984301171046051, + 1.693734532844413, + 1.8407471081087983, + 1.8509812247019002, + 1.8575472221588574, + 1.7378545586188903, + 1.719507151293558, + 1.5686589930384012, + 1.925482234822518, + 1.7350570560493181, + 1.6882381587083881, + 1.8450943512931886, + 1.886325795021313, + 1.8677778133821397, + 1.961412929575851, + 1.8714499051641909, + 1.8750965259996737, + 1.7675416137352542, + 1.7843051248551565, + 2.068607043559898, + 1.7572759134986775, + 1.8279687296643472, + 1.8682238214167584, + 1.776043473873178, + 1.9656695469426781, + 1.8049123695615346, + 1.7542266663766644, + 1.9171760446543087, + 1.8171882142567426, + 1.72890117300177, + 2.0780313073516354, + 1.7828974431332754, + 1.7447460166834547, + 1.841683150113918, + 1.9865411586186967, + 1.8028643334900418, + 1.9061737144784958, + 1.9621910350348812, + 1.8735893133274153, + 1.6693868556827374, + 2.0824192738578557, + 1.8784775981447315, + 2.0597206686048413, + 1.924459988986323, + 1.973674179872568, + 2.009156979612148, + 1.7381914323187058, + 1.7632849958332595, + 1.9978082203937502, + 1.817213173752931, + 1.757575806069901, + 1.9382748870553512, + 1.7624057905615722, + 1.7754308319313976, + 1.9210476987624856, + 2.007413798142923, + 2.0804978270919263, + 1.9405180196206866, + 1.9834308529833944, + 2.025282420192965, + 2.0840513287771554, + 1.9909028394968933, + 1.9182527099999325, + 1.8976764944495377, + 2.012031546272869, + 1.8923796076911539, + 1.8597377722526383, + 2.034893445355496, + 1.9545521428784143, + 2.0468754903425754, + 1.866966434334485, + 1.9408416256061396, + 2.0032828077075626, + 2.021280219686252, + 1.7974439001811096, + 2.1938578871086283, + 1.918441346695746, + 1.8639601734921032, + 2.0568010307075775, + 2.0017916026872893, + 1.9403196789037833, + 2.0402429143776146, + 1.8921297919817148, + 1.936049383084606, + 2.0825734436476346, + 1.9706693885353241, + 2.086848067133764, + 2.0339239002439413, + 2.1628995207873714, + 1.9650153343969612, + 2.0232136382047528, + 2.1370133999696312, + 2.20557383195526, + 2.055800882958297, + 1.979317994387903, + 2.062189556403735, + 1.901240426209639, + 2.0425378615080088, + 2.0958546514621488, + 2.0756502311326757, + 2.0083090114926208, + 2.1292656991712335, + 2.166659672815222, + 2.20387847054313, + 2.099539390159951, + 2.0223957293808366, + 2.2519293170687886, + 1.9761060076950812, + 2.181523674083543, + 2.058123872097857, + 1.9277078737423816, + 2.0585762325907133, + 2.019676091550438, + 2.1382460842315387, + 2.069099567364609, + 2.086090057443297, + 2.1515130110724363, + 2.1051082116919466, + 1.9890109224242938, + 2.052774353249273, + 2.1195047664533107, + 1.9062686342004727, + 2.0302297780838567, + 2.2244848331086056, + 2.0361944934859695, + 2.094522215833047, + 2.0908070038363684, + 1.9400851013973917, + 2.105104973823167, + 2.0908981670150215, + 2.1249444263074375, + 2.103316663118922, + 2.0633450210785265, + 2.326546571369978, + 2.3369191643079605, + 2.1049581484896156, + 2.0578576594972064, + 2.100287627995596, + 2.208221921081931, + 2.162542613040428, + 2.1540644437246312, + 2.127347968934198, + 2.0680787020796956, + 2.0678315977617956, + 1.9506766734267171, + 1.9812559099523595, + 2.1508190803607685, + 2.142758781989676, + 2.190382015513891, + 2.0927007659344996, + 2.2267236057153963, + 2.274925815652568, + 2.0858191870639953, + 2.1249352092208267, + 2.0473976542320718, + 2.224438362780503, + 2.0480122183215808, + 2.156830987279919, + 2.188205398694498, + 2.292131127542956, + 2.17365576265491, + 2.1156531426961074, + 2.1030885061488167, + 2.246045128898757, + 1.9965375606394178, + 2.166495659792091, + 2.314631249114704, + 2.0970969262675876, + 2.1424464624329627, + 2.133483698277155, + 2.2645756333332745, + 2.203637802046724, + 2.1840044162876624, + 2.2300706560711796, + 2.1160878480911496, + 2.1177813793529716, + 1.9695505021823514, + 2.0913219688084856, + 2.3595056675708883, + 2.086639735279821, + 2.1699318571248245, + 2.1966557763817605, + 2.076986161720778, + 2.3703351641808106, + 2.2321074059801123, + 2.3745291717368002, + 2.2485009931365325, + 2.116801719999997, + 2.2879912145326013, + 2.2230333407131173, + 2.0999507010106044, + 2.153008464711346, + 2.2082839164359664, + 2.037668733638703, + 2.116300523445747, + 2.1705132561120655, + 2.2190656035473837, + 2.1538759504710363, + 1.9204482709077992, + 2.2270557724040025, + 2.377854458385952, + 2.210472530204426, + 2.3943635627815416, + 2.303212817329609, + 2.41552988868072, + 2.211827874663507, + 2.206015016629949, + 2.1183608113708274, + 2.1521515197295615, + 2.149515066622412, + 2.262240960478131, + 2.2251407063648965, + 2.2092400248865514, + 2.1415034214407487, + 2.1792951665104248, + 2.1989147760675065, + 2.345647955176414, + 2.21279171642833, + 2.1378116514618744, + 2.158568466829203, + 2.191155018133345, + 2.325755696923771, + 2.042374334851464, + 2.2613581619378453, + 2.2304305044874426, + 2.2050013942654507, + 2.396299471679614, + 2.1716200826172076, + 2.3609829819926933, + 2.3314988504051772, + 2.2929107823493347, + 2.1040054037163753, + 2.0789856095677166, + 2.2694108673965516, + 2.1356415601264884, + 2.1700226046022224, + 2.0534284024752427, + 2.2855797946499288, + 2.239584307832711, + 2.1036554998025805, + 2.2056964865797704, + 2.0609460982175904, + 2.3885879141995874, + 2.0769690354959778, + 2.1564798750142455, + 2.246043748800554, + 2.2658241987804733, + 2.3144489442596976, + 2.2345346751280135, + 2.4927667137588116, + 2.0920827403668962, + 2.102858308075647, + 2.1923131215640757, + 2.314145174210912, + 2.225881859345255, + 2.098948515604679, + 2.1794311403843385, + 2.159122938075313, + 2.234422905575697, + 2.2636770367023717, + 2.315718527245527, + 2.1956197191578215, + 2.318077027897805, + 2.0865622971516693, + 2.216574225193925, + 2.105889463902503, + 2.1259801776269045, + 2.294769710954164, + 2.1967563692868333, + 2.1445724494681255, + 2.340029575472937, + 2.2938780682817965, + 2.215744908586839, + 2.135475794199007, + 2.2773334811289403, + 2.2753202575285836, + 2.2411220498393654, + 2.0751138503251596, + 2.1306126416982742, + 2.011915026139896, + 2.111825134916644, + 2.1894281322574147, + 2.255452275882588, + 1.9827846025041969, + 1.9859673962296767, + 2.2004092048067982, + 2.2138202507386446, + 2.1655684484949345, + 2.246402593052322, + 2.095712151077217, + 2.0176389140422746, + 2.0178169510553876, + 2.078614215738842, + 2.18412634980551, + 2.322693979081675, + 2.2830954078886814, + 2.0182119705335997, + 1.8855884116895325, + 2.1349262416035115, + 2.05785286793903, + 2.134100119138215, + 2.2937299203540547, + 2.3884935593684373, + 2.0923532252293717, + 2.0608065458666753, + 2.294061456165499, + 2.1930881415435053, + 2.034008025190217, + 2.169350398152197, + 2.2331490653079618, + 2.159344434276948, + 1.9507565561558138, + 2.1561393488505822, + 2.150062739694749, + 2.078109363061765, + 2.0749331152014885, + 1.8785847319920743, + 2.138122166993091, + 2.1223382117496357, + 2.1139323897586646, + 2.100572765956316, + 2.128025304002398, + 2.3050769868787717, + 2.1516985955404406, + 2.0937058392236993, + 2.1338910943101004, + 2.0624647212718172, + 2.1251030915427642, + 2.241460203949387, + 2.0662239021150257, + 2.022038763722254, + 2.0858441478657967, + 1.9921909084826699, + 2.0748223618101544, + 2.211814523514495, + 2.1911170654326013, + 1.997549915598496, + 1.7894687983827549, + 2.0722958427205227, + 2.1165392058215877, + 2.1632965145938217, + 1.9770589949824178, + 2.1031768303522838, + 2.005901160156431, + 2.0454021922908936, + 1.974869282098201, + 2.186984220210145, + 1.9333046421725655, + 2.0294290316091566, + 1.9983845954279549, + 2.06010944197602, + 2.1439078265074265, + 2.2601815101046814, + 1.9748511299681386, + 2.1407638364246764, + 1.9720117862756177, + 1.919284561753358, + 2.059305385250497, + 2.066176609674031, + 1.9933113067378576, + 2.1001257637490363, + 2.2660011088853076, + 1.9121363916027871, + 2.126478667419371, + 2.0601768488287617, + 1.9846493697636733, + 2.0257950601801387, + 2.056192768026813, + 2.05975375281422, + 2.1519148731031734, + 1.9638377483829832, + 1.9670772332563005, + 2.039242052150331, + 1.9340854309091862, + 2.032558915693806, + 2.0234279900187224, + 2.063557222425147, + 1.8852690833406982, + 1.9733051295930406, + 1.8228889850503047, + 1.9086890158397856, + 1.8831711989504307, + 1.86323194524372, + 1.96805204876634, + 2.0409300999216704, + 1.8945642342416242, + 1.9341777223888312, + 1.9777365407436904, + 1.7326518353892535, + 1.9314581235096309, + 1.9654090854956976, + 1.9895237884149841, + 1.8087025618445185, + 1.9958713538673123, + 1.932389013409888, + 1.9530800557506052, + 2.053456102272502, + 1.751515169316077, + 1.7783318218408757, + 1.68845329728219, + 1.9128035923616984, + 1.8882359288240238, + 1.8969187257887794, + 1.8754951991979536, + 1.9857789045333982, + 1.7778966235903813, + 2.0200037613021955, + 1.9039803380640794, + 1.7593425467937835, + 1.7884683367556762, + 1.9180444153088707, + 1.8985420532078914, + 1.7580399710619015, + 1.7809217809381641, + 1.7737712672996315, + 1.830233073185102, + 1.7852255404375437, + 1.8945004948268318, + 2.0021616538562865, + 1.9332461816063014, + 1.689300669281866, + 1.8387591139673307, + 1.7924148650557739, + 1.9194474904931027, + 1.9100705191943204, + 2.0126721048513128, + 1.7436179238474634, + 1.74361075263289, + 1.7267493191490322, + 1.7511089685267602, + 1.8220249128906594, + 1.8241207267717132, + 1.7938986796925227, + 1.677931237082732, + 1.8002145360237054, + 1.7436937731953712, + 1.7874528562248133, + 1.8286362270903809, + 1.869765126035104, + 1.919086989521653, + 1.8424954452450777, + 1.7328713928475188, + 1.848885074406971, + 1.665239299677375, + 1.7846365436383123, + 1.7581470871081832, + 1.8435610959388078, + 1.724700045546547, + 1.7787940265841462, + 1.7213055490288938, + 1.7429328293692876, + 1.7116949101457055, + 1.811711728967308, + 1.6866895438606138, + 1.6917522623828793, + 1.7227959172088876, + 1.8675945954971829, + 1.9155145649375667, + 1.93211339208962, + 1.6725232609314338, + 1.6152668929282403, + 1.7151638165394552, + 1.6737135671425287, + 1.7886548822241206, + 1.6081836553212325, + 1.8188801289979568, + 1.5142201594632645, + 1.7467892824799893, + 1.6095325088031158, + 1.8270028987315974, + 1.6128082609214842, + 1.7427137447682208, + 1.755019636053069, + 1.5214528892872567, + 1.6643764932624139, + 1.4638423356510484, + 1.7511347151355243, + 1.731612702229373, + 1.6042444061006846, + 1.687611210077331, + 1.6552654995789087, + 1.5347481009325432, + 1.7218220613748911, + 1.7484060209775705, + 1.6156732134224572, + 1.6008185045233911, + 1.821805630085377, + 1.6933379746410964, + 1.518605000497926, + 1.5428110305690106, + 1.435164862184509, + 1.6715918799330207, + 1.6282519084113116, + 1.4908123209489677, + 1.6154613417282195, + 1.4057380626258251, + 1.5128509347074997, + 1.4847899027475635, + 1.611995872273727, + 1.4851345981013762, + 1.6393701195333938, + 1.821783020620563, + 1.4649094465884096, + 1.4010582938934861, + 1.4152690509643913, + 1.5285722715810306, + 1.7229104019337131, + 1.5127068835282047, + 1.6009708772476068, + 1.5852403858588275, + 1.7631546852445237, + 1.4931396704678226, + 1.447513111324636, + 1.4407407281335776, + 1.523349415138741, + 1.2880065406471572, + 1.3992523124236298, + 1.515386277978919, + 1.459347649304009, + 1.666500083090408, + 1.6214930893865962, + 1.4758371841158464, + 1.3551113414953988, + 1.4750278264542427, + 1.4994363711107392, + 1.3770802889062712, + 1.4597227822478707, + 1.332828932581587, + 1.6635544468433832, + 1.3932990614275278, + 1.3365307584362631, + 1.3022520847164443, + 1.5192371364892934, + 1.4752918824360266, + 1.3056011354501915, + 1.2267479512671204, + 1.4386441280472368, + 1.3040859212411475, + 1.333358017175562, + 1.195934674068311, + 1.3447504126963243, + 1.3987138097256275, + 1.2810310898578683, + 1.4373910656485906, + 1.258030887069173, + 1.5250744216822478, + 1.360782367442881, + 1.3650708724513922, + 1.4473760201016066, + 1.31611889457073, + 1.464763122857292, + 1.472628791779277, + 1.3185788212128924, + 1.3526907263579193, + 1.4057877855588494, + 1.2520323294495241, + 1.232008156509703, + 1.365204691979504, + 1.2589915568756822, + 1.3593977217280007, + 1.4028333918195894, + 1.3776160689034818, + 1.312987803866278, + 1.255007788592198, + 1.2372238212986681, + 1.2505934326277026, + 1.3265156480547935, + 1.1967592549119443, + 1.4680040312159703, + 1.4494249235165098, + 1.2622451235041172, + 1.2273187345494752, + 1.1568618696359037, + 1.4057984327943918, + 1.0700088787086444, + 1.242872790399663, + 1.2778574000402068, + 1.2750597587662464, + 1.1548152855020974, + 1.3137662704096733, + 1.2082933868363017, + 1.0618839885636533, + 1.2279763645704704, + 1.4370968310881782, + 1.3291536845864864, + 1.3669474848961602, + 1.2785540479509945, + 1.0899746456989696, + 1.1888566292474998, + 1.11978888233799, + 1.2395477941907962, + 1.1779372835098, + 1.0523394435070421, + 1.2391392300878736, + 1.1082201701110976, + 1.0503446877996552, + 1.1217086687122708, + 1.0650815323700353, + 1.2923302892021082, + 1.1978880516211499, + 1.0920472777941788, + 1.1625190998491703, + 1.122869600252843, + 1.027469555756213, + 1.2499038638906794, + 1.0719270005327473, + 1.1192125641528015, + 0.991650971295916, + 1.1368492350118524, + 1.1767659482678803, + 1.1101917540039892, + 1.301786617134889, + 1.1334903893641957, + 1.1317446592796585, + 1.0283609097290232, + 1.1873789008858167, + 1.0680220255161785, + 1.0134442325070976, + 1.1712532686028854, + 0.9986669480679377, + 0.9689525913017036, + 1.0142591242026728, + 1.045644761265851, + 1.0779265928274893, + 1.114237945243802, + 1.040984843311561, + 1.0040009796128506, + 0.8203743357101551, + 1.1912885723127702, + 0.9507688000442918, + 1.1008578698941047, + 0.9022836402480081, + 1.1704257753628617, + 1.0198231427224227, + 1.0678628447327447, + 0.9658019558337431, + 1.0157195733929079, + 1.0247904423721395, + 0.9515523559309921, + 0.9862488601528344, + 0.8789746199371973, + 0.9814712026439011, + 0.9536410096373975, + 0.9295999230415197, + 1.0633717282237736, + 0.9002744799943777, + 0.9520666541424372, + 0.8385451725342944, + 0.940009467401939, + 0.9201343649132395, + 0.8883416845564225, + 0.9841479141100644, + 0.8966378452779507, + 0.8605942052499407, + 0.8940009467972777, + 0.7248731948277931, + 0.9566563214135249, + 0.8118154652801531, + 0.8009262772699423, + 0.7305109950435312, + 0.990880745017656, + 0.7825120066275346, + 0.7850038877661203, + 0.8114208256439845, + 0.8379704301775773, + 0.8601723259876332, + 0.9327872963208723, + 0.926359107305213, + 0.7007741396894676, + 0.8105913130719794, + 0.9198851660929654, + 1.0159586101721028, + 0.7561425669828378, + 0.7790991745923599, + 0.6570645581894327, + 0.7426270020698389, + 0.6838040158775313, + 0.705963499102041, + 0.7050723738022496, + 0.940877894014966, + 0.8908227371718331, + 0.6847432047527197, + 0.7069938397585805, + 0.7211580155117626, + 0.7048558038419696, + 0.826373565615051, + 0.7609591604289797, + 0.7582921312709725, + 0.6368580671923356, + 0.8826196823806456, + 0.78598191081048, + 0.7521432214911529, + 0.6543424402339486, + 0.6908878471713125, + 0.8369676040733396, + 0.6775166833646907, + 0.6599482572268982, + 0.6122781981525925, + 0.755205451586715, + 0.4898655443884862, + 0.6200875520072986, + 0.7600072286978581, + 0.6521195631233223, + 0.6307327215587285, + 0.6168951748236988, + 0.7872442901066695, + 0.6029147107253365, + 0.6968910604494505, + 0.5020076295137795, + 0.5933747384435656, + 0.7115962573399286, + 0.6491292729187257, + 0.6175511871450426, + 0.7254095516123811, + 0.6174395645581062, + 0.7041172992852337, + 0.7113706707908699, + 0.7203342315124945, + 0.7236529505599926, + 0.618813656104893, + 0.67240342519839, + 0.6525809769784294, + 0.5481950842705362, + 0.827973586441287, + 0.5164994211635452, + 0.8128419454529858, + 0.6014574516312237, + 0.600948287523637, + 0.6389651571927353, + 0.5811742543269506, + 0.6179588486172705, + 0.7771481077746886, + 0.43265441787294323, + 0.5854583687436117, + 0.677370408581399, + 0.6792061251069716, + 0.7046424876201299, + 0.4827064184215427, + 0.5845154484048487, + 0.5492685280835073, + 0.44030381582464995, + 0.6362356229699547, + 0.5626308749796063, + 0.5434580122830072, + 0.654691667159019, + 0.4703143957335175, + 0.6518675789307504, + 0.6140227166364903, + 0.43912604272798256, + 0.6014922653950081, + 0.662192304999388, + 0.6137729194561504, + 0.45961123646855634, + 0.33393339203299366, + 0.700884475898172, + 0.5042065082771037, + 0.48914531477857104, + 0.36774247699003176, + 0.5496784237417065, + 0.5734260367853022, + 0.3402315829885856, + 0.26653173086711346, + 0.36050789099577474, + 0.5862894646448633, + 0.5500801111495823, + 0.513773213815005, + 0.4801702388611614, + 0.44291650556864043, + 0.33973758639559326, + 0.5327144181729163, + 0.680821091632255, + 0.324867628951908, + 0.5137021226425771, + 0.4010957982230033, + 0.6650408102221972, + 0.4878748599224536, + 0.41286335382137396, + 0.3693818461468452, + 0.5937531456931237, + 0.4481861976441083, + 0.38665743155979215, + 0.4244694411796163, + 0.2678801956226683, + 0.1085287026870565, + 0.4683406661717212, + 0.2960441699811476, + 0.5765211388214561, + 0.5289315371961542, + 0.318966117860253, + 0.3381096141566728, + 0.43971298246190865, + 0.4986368090900818, + 0.5122425924721963, + 0.4948607965047812, + 0.429792121449816, + 0.46316043407419094, + 0.2948946338283476, + 0.19114671461081453, + 0.3197854869894165, + 0.3430265706270602, + 0.33518396195434874, + 0.5889438361039032, + 0.46237982198033367, + 0.43960666838703255, + 0.432442224050062, + 0.18712346768806573, + 0.4445569662453685, + 0.29423645619331795, + 0.2351889922607192, + 0.4263370191935527, + 0.21067780616277573, + 0.4618317693478551, + 0.34314799118917716, + 0.3400137201024839, + 0.33733114871129194, + 0.3390416604826478, + 0.4586687591092553, + 0.3492674005998104, + 0.31171452410343264, + 0.40773765065023443, + 0.33181513661465556, + 0.464144935006728, + 0.23448941532564735, + 0.427518417310233, + 0.4170280352443709, + 0.19102439560259868, + 0.30839884807021356, + 0.43964568394281095, + 0.3090544428238704, + 0.5521596801819871, + 0.33188403530327076, + 0.3613018951165232, + 0.250637287131397, + 0.14297108812672193, + 0.3969820651193041, + 0.04263538458482008, + 0.24403903791859743, + 0.3491363790742886, + 0.33232190875998285, + 0.4253998172778833, + 0.3177522356934441, + 0.2954610945689962, + 0.236585172237626, + 0.287576587290524, + 0.19045264813986437, + 0.32342268891889037, + 0.4465233202131884, + 0.17324532941495216, + 0.22717279107970711, + 0.28360148607212315, + 0.10891810924700873, + 0.4243531675565368, + 0.501178076563767, + 0.25379633648728533, + 0.37511132959413596, + 0.2530093069553776, + 0.292386132983057, + 0.501430139928067, + 0.5068728622327999, + 0.3754808907353542, + 0.1326375821911764, + 0.06418207970096973, + 0.3821882928270764, + 0.231120669966677, + 0.32102527468793074, + 0.13527016603005992, + 0.2948400262248345, + 0.2777216373841034, + 0.1655479756480606, + 0.32581160402949233, + 0.12865993771584416, + 0.2621497199390285, + 0.14931563070301507, + 0.29258994419003076, + 0.29244711484187086, + 0.34934080053033056, + 0.2977915775584573, + 0.3426692882072134, + 0.0812464495394723, + 0.301601269620982, + 0.2443069355747497, + 0.16847321860959594, + 0.33742250759546233, + 0.20957275705097816, + 0.36486854471428254, + 0.11500396274348716, + 0.09040776696530237, + 0.3091611033472152, + 0.21642884458943207, + 0.2854541151636622, + 0.11699786184117246, + 0.3597727745699175, + 0.2262407720717949, + 0.3585345743552323, + 0.2507577344815789, + 0.27818048722587324, + 0.42562799956885966, + 0.030748360078371006, + 0.19626653420762122, + 0.26989540636244946, + 0.20031384516729445, + 0.16136488676451272, + 0.08202035827482629, + 0.19620889167768998, + 0.18518171139445722, + 0.2104843699927249, + 0.2296674594025972, + 0.14532772785422232, + 0.11479814857201125, + 0.2783386875842936, + 0.07354078285313798, + 0.20202340991260279, + 0.3142103706219059, + 0.1701342524646931, + 0.09504812876144794, + 0.3386645822571193, + 0.2546517918453211, + 0.2328881979985364, + 0.2511369649126954, + 0.33124878427183935, + 0.16785458885131296, + 0.1842038236128385, + 0.07135517356601298, + 0.27032503111969997, + 0.078991696914726, + 0.0951831672941128, + 0.1548747277836465, + 0.06403897251821686, + 0.2181541421042883, + 0.2303056178965294, + 0.3190503014611617, + 0.3589460414568433, + 0.1693599695881517, + 0.475029562925457, + 0.1966995431111079, + 0.23760511305174423, + 0.317698262444746, + 0.24169538382111797, + 0.09754617203139931, + 0.037837407471806916, + 0.32696133107181, + 0.19743389889347038, + 0.223907661756107, + 0.1137728337963047, + 0.24310832228119716, + 0.1787728954233388, + 0.32685992707208356, + 0.15878272500112614, + 0.19653302793810085, + 0.25724334033165475, + 0.1470895386805296, + 0.1687302073533921, + 0.5002474215499216, + 0.08149908352564056, + 0.18685031840443028, + 0.27579996214522573, + 0.15768823970858542, + 0.2949831026277986, + 0.0597394092300442, + 0.2281515181684375, + 0.1811786904184754, + 0.027728432224436078, + 0.23876810840113324, + 0.17609393416496216, + 0.06197380680842296, + 0.21300191289485054, + 0.14477938739523627, + 0.19580819545783176, + 0.34527311377743886, + 0.19986735815187995, + 0.16928825132372305, + 0.1536381124647734, + 0.27867253855155216, + 0.34380515509925785, + 0.0806047990535356, + 0.2189878449906137, + 0.48938531296274373, + 0.23751509982995245, + 0.15980353890129004, + 0.03398563031238977, + 0.32775967255227034, + 0.18549274881491173, + 0.09396957281912507, + 0.18112441963182127, + 0.24859846465032814, + 0.19882213154119896, + 0.25828416758892125, + 0.2083623332695843, + 0.32961870492466516, + 0.3152293778864253, + 0.11853027318678244, + 0.19123354488657143, + 0.29101919631595874, + 0.19266659881435003, + 0.26360000331391154, + 0.3127522325055515, + 0.3716764709134554, + 0.09372025173289286, + 0.2712381518587936, + 0.29491387041645895, + 0.27813112954406705, + 0.22346940652460565, + 0.1964314889942232, + 0.14639989495596398, + 0.2697224568495565, + 0.12676404496190274, + 0.31485800032244426, + 0.37597397899964624, + 0.41702658215897054, + 0.1946314664215093, + 0.24058008855786212, + 0.22646927312191542, + 0.37224903536349196, + 0.07642531595409671, + 0.31391216794726173, + 0.1530837281224206, + 0.20900971649013067, + 0.3480189451974023, + 0.14750882752494748, + 0.3683660183570042, + 0.44543942938386266, + 0.16253947812092934, + 0.35229373763972394, + 0.24944989172164742, + 0.2077679886705275, + 0.26369909609151937, + 0.36349451969525887, + 0.11358199639288552, + 0.13044384359232583, + 0.12654316720848746, + 0.2068532336032477, + 0.2539038207299605, + 0.32845505843867095, + 0.3549256725734973, + 0.3563887221352011, + 0.5070023527646428, + 0.27367288253717953, + 0.27915409246319345, + 0.33592881991759355, + 0.3526605593267204, + 0.3169713814745909, + 0.2910256159952327, + 0.3118733614731405, + 0.3762298148786062, + 0.4375545982401533, + 0.29995818988000633, + 0.4580815981098604, + 0.16788356921033748, + 0.16169015365900163, + 0.3682293710969482, + 0.3905326908405298, + 0.2548889723192398, + 0.33425366264274997, + 0.16983907602343465, + 0.16255642455802208, + 0.35189610493080187, + 0.36909397596837273, + 0.4247360609885639, + 0.3237823440473048, + 0.3037145408561561, + 0.31572126668437395, + 0.21149395535318866, + 0.21315777135609315, + 0.355841774592937, + 0.25982096979154234, + 0.3721542505887169, + 0.30748415121694567, + 0.2168837053405562, + 0.47023108171388417, + 0.2575878247667065, + 0.5359080461171678, + 0.3071250877278909, + 0.20097308143063974, + 0.44458129563231535, + 0.534007698503012, + 0.26749030825251585, + 0.2773010730962377, + 0.2546633490757419, + 0.3682802644738009, + 0.4619006734080703, + 0.42769891206161753, + 0.4459353517356551, + 0.3143410426565947, + 0.4615438675081761, + 0.31816641950720337, + 0.37338758255153887, + 0.20319859855853473, + 0.2527943127928355, + 0.4361476552280493, + 0.3924612775234934, + 0.37410590612187916, + 0.4750318940170676, + 0.3183923329292542, + 0.27735025181851314, + 0.27429168693306016, + 0.5128102147597018, + 0.3773448306087995, + 0.5590245465127714, + 0.41027680959692264, + 0.568259360445972, + 0.43627987376081745, + 0.6228530645153557, + 0.43440846125241617, + 0.36358713052350083, + 0.4947580507417847, + 0.43785987264216836, + 0.463978072024888, + 0.36486485353081055, + 0.489368948377524, + 0.49328340395000975, + 0.42193423829327864, + 0.5935579402836791, + 0.45429762842521515, + 0.35261667848504474, + 0.3807656554675744, + 0.4099128142789458, + 0.4622238085967374, + 0.5447790820610102, + 0.710210186416124, + 0.5087252779699956, + 0.47747424207315775, + 0.5839862710347923, + 0.360309214664307, + 0.41925960970266263, + 0.5399385500219591, + 0.44557782699623405, + 0.40312582000465425, + 0.3971391951314721, + 0.5541616034182564, + 0.36832396067149853, + 0.45698463327660965, + 0.6507095623915136, + 0.39716149357496755, + 0.4842353227402382, + 0.6962770211902412, + 0.5843142012571977, + 0.5499764693629343, + 0.6715376885678099, + 0.5858419145386989, + 0.4945140922421776, + 0.6608017101076263, + 0.392322936988089, + 0.6184482324288225, + 0.5612850741821993, + 0.47447378261529766, + 0.5591596859328062, + 0.5888636440815388, + 0.6355108379186618, + 0.5394749864547586, + 0.6000529956522692, + 0.4084094838248524, + 0.6002430498371971, + 0.457494799556919, + 0.4373130431990023, + 0.6782402446903034, + 0.7475728373016103, + 0.7515066285421131, + 0.525744968812898, + 0.542881978925368, + 0.4967100320423459, + 0.5485281670733293, + 0.6621726532102765, + 0.5598738043932785, + 0.82630361040708, + 0.5740109514769174, + 0.6146767352018706, + 0.8014201862831112, + 0.6911442221260833, + 0.5177204819205088, + 0.6644270892898588, + 0.452825052556467, + 0.7197376207147642, + 0.7092034575373457, + 0.5923160969593245, + 0.5736816065226762, + 0.8229583096680914, + 0.8286882609938689, + 0.7870186390452537, + 0.6566546743522967, + 0.5785342438264229, + 0.7289509262740448, + 0.6668908414045213, + 0.6729028843352886, + 0.6867025074476463, + 0.5239171021591031, + 0.7705277144129115, + 0.5753436635316452, + 0.5870927303281224, + 0.7295493637290134, + 0.6831920544430689, + 0.7955054354437392, + 0.9161279152011097, + 0.6971192193341534, + 0.8439078589982084, + 0.5960322843386655, + 0.8902752579568278, + 0.7030831398268229, + 0.8179735730949639, + 0.7506458497006816, + 0.6477923289202653, + 0.787436367307784, + 0.8379412593918191, + 0.8723938437292763, + 0.5947946312613895, + 0.7526096683454818, + 0.9024793355242482, + 0.7042347638428703, + 0.787856640625036, + 0.8092734754724407, + 0.7480380325322391, + 0.76947026986704, + 1.0518447021509325, + 0.7995514254718046, + 0.8029166387629956, + 0.813166513642145, + 0.8494812640025519, + 0.8878070070173769, + 1.0018148671323353, + 0.8696226980539047, + 0.8556647987144187, + 0.6730658847387908, + 0.9293670446307325, + 0.8917951314860597, + 0.7067953908030522, + 0.8606535399609898, + 0.8854490241418904, + 1.0254636084304656, + 0.8647449812340938, + 0.8413556381008317, + 1.0195789117917822, + 0.8256157015963663, + 0.9056533394259474, + 0.779624875899068, + 0.9553553339096617, + 0.9976938728551936, + 1.052423496443226, + 0.8279366052167336, + 1.0095833829456566, + 1.024870542159448, + 0.8031583200790052, + 1.0312262915866677, + 1.0066943487727644, + 1.0590919079597607, + 0.9174362272171398, + 0.9535132834516956, + 0.7824749247950522, + 0.9675084636110444, + 1.0663913166311492, + 0.9648487051330724, + 0.9390902182402269, + 1.0364798868755698, + 0.8892598042921711, + 0.904318040797795, + 0.9439536688116458, + 0.9621114356823818, + 0.9466847564261881, + 1.0622142525990554, + 1.1639288763728117, + 0.9767571205065538, + 1.0057692967055682, + 0.9662691186086473, + 1.1903010746390863, + 1.071670280604018, + 1.0949728131705188, + 1.16450461840785, + 0.9997264367773633, + 1.070581612358608, + 1.266739709719668, + 0.8628156829556926, + 1.0152275836462594, + 1.1386395449860949, + 1.108471715459847, + 0.8765695265553868, + 1.0486098923713087, + 1.0102949462915007, + 0.9118827502051081, + 1.0854559171112368, + 1.1344136003268206, + 1.0940239295523024, + 1.1903752674646244, + 0.9940065768117021, + 1.3427701193789234, + 1.2257648267502796, + 1.2019990657936412, + 1.2090128403241092, + 1.3611874070177477, + 1.0808614485360895, + 1.1432135985768221, + 0.9931351533645524, + 1.2680908009052687, + 1.2941999165498994, + 1.2227734086773787, + 1.0900468082140247, + 0.9914093466890224, + 1.1764588268572285, + 1.141990386133337, + 1.1442082202074222, + 1.2657625681294418, + 1.1012399568512492, + 1.0831449541832872, + 1.0486869528764489, + 1.210713769200658, + 1.166370709555925, + 1.1968956956956551, + 1.1869375744023762, + 1.3135939635204577, + 1.2069922639857686, + 1.2087785078348383, + 1.1512808104027215, + 1.2765186228706598, + 1.1158528956512415, + 1.3281359143095135, + 1.1191247250406258, + 1.3787558776277093, + 1.4414466005676356, + 1.3941557408818432, + 1.245544805572263, + 1.3148944903699304, + 1.203559210512771, + 1.354231854189886, + 1.2313632864720558, + 1.2272320293150925, + 1.299822495732199, + 1.3436177278641914, + 1.3566153459782522, + 1.2259798820068297, + 1.1662806107726373, + 1.300428507631125, + 1.2361370714263895, + 1.1955273728941254, + 1.3585289511941248, + 1.279836299154119, + 1.386832008097791, + 1.3773307091351903, + 1.4675023424408113, + 1.2182106087523181, + 1.438092404058605, + 1.3222794056821774, + 1.4055675215853607, + 1.3370147262300016, + 1.3013697814717167, + 1.4053004107318974, + 1.5011607164007361, + 1.3723075449499493, + 1.2123649906012397, + 1.5490446554373516, + 1.4698417834143198, + 1.2708964796775972, + 1.3851358213735692, + 1.340261039497487, + 1.5105441783752283, + 1.271577908413682, + 1.4437861942209549, + 1.1851757045906819, + 1.3657792240880628, + 1.37986256727371, + 1.3123444927014982, + 1.5583443989186339, + 1.2934184903555814, + 1.625475246263731, + 1.3787543258185933, + 1.479670531957711, + 1.3926070443850571, + 1.5118221963102398, + 1.4580612505027069, + 1.5025674271319254, + 1.5274217594693722, + 1.457616324893077, + 1.4088048133469215, + 1.4730007435204027, + 1.2611872606592034, + 1.5327751713740485, + 1.4562122591392523, + 1.513212593874804, + 1.5535435884434312, + 1.3284778868904663, + 1.634539268101594, + 1.617842797602009, + 1.457501217778694, + 1.3637656985204192, + 1.4784237768052064, + 1.7129421481601101, + 1.3602868057285544, + 1.5525185371085248, + 1.4911398168374597, + 1.7189775111516805, + 1.4694318721999506, + 1.6228835831263828, + 1.654507265642215, + 1.404734455069903, + 1.5406912789928229, + 1.5386093052646492, + 1.5628685621222271, + 1.5998032734219314, + 1.588235502937199, + 1.5735855736161757, + 1.731413395648663, + 1.4631037144139438, + 1.7055336115772886, + 1.606805649092945, + 1.5239423938815548, + 1.7380256757302504, + 1.5301921304904322, + 1.5281308242660012, + 1.7286038494312537, + 1.9640353131464368, + 1.6006625054606707, + 1.7616348732936216, + 1.791597790484287, + 1.7346289894296472, + 1.5167379346115477, + 1.8035349872790754, + 1.7003989919806874, + 1.51470614945133, + 1.753455563166931, + 1.4275244221847954, + 1.5720366544488524, + 1.7442323995202313, + 1.4915038959789169, + 1.7335048344472015, + 1.6218019287566157, + 1.7838624997567687, + 1.5287570645634772, + 1.6543928382989588, + 1.7950327761641818, + 1.59134745658079, + 1.6292375551753047, + 1.4760033147594953, + 1.7373148370628788, + 1.7624923979524059, + 1.8442101487864848, + 1.7799294290443732, + 1.7279597959030886, + 2.047346604687149, + 1.5148038971085127, + 1.7884094637620265, + 2.0032907611244237, + 1.6359485469768058, + 1.7816462431125122, + 1.8742551586193268, + 1.6224228423933031, + 1.7464153233151858, + 1.760723202560714, + 1.7231195551727354, + 1.861924141549195, + 1.7776821623859596, + 1.6798507288790092, + 1.6416409645187555, + 1.8997831093059812, + 1.7790890298393462, + 1.8953040542862305, + 1.9351738476257256, + 1.7892692476702172, + 1.7365458326910959, + 2.0102972818622966, + 1.8042765159349285, + 1.8629200951037173, + 2.0893793019825804, + 1.8008151437993016, + 1.8148430426056963, + 1.8544153208643583, + 1.8368050609909317, + 1.855342125622943, + 1.8687570970409053, + 1.8865094165778347, + 1.5703082422174108, + 1.8170722990841075, + 1.8578905303217395, + 1.9463393582504998, + 1.9990474941546474, + 1.7704244240023823, + 1.685204962033988, + 2.085420411303377, + 1.7835674851456653, + 1.800502941029635, + 1.7679602282987374, + 1.9106165132010384, + 1.7847447203419913, + 1.8879974313273142, + 1.9819182544881186, + 2.0664440068868273, + 2.0250883834970876, + 1.9506952646174969, + 1.8637549052582232, + 1.9769044822366784, + 1.8548365466095371, + 2.0129434727189843, + 1.8743471614520941, + 2.0562736595189315, + 2.0944069172400703, + 2.0077395456653173, + 2.0777649787917354, + 1.9309780067194646, + 2.082370509748415, + 1.8009761440709064, + 2.0478432276737317, + 1.8756509011800295, + 1.8090874917854824, + 2.110141201120323, + 2.1992289224583925, + 2.0388219164839776, + 2.1087865035926976, + 1.9111598638766436, + 1.866610004539803, + 1.9291023154461098, + 1.9653751949729785, + 1.9180893495105407, + 2.007374932286608, + 1.9003152809606156, + 2.0531218441640866, + 1.8817866362459506, + 2.025334388727498, + 2.030238357555006, + 1.902585145733038, + 1.8734620492344756, + 1.93998730275956, + 1.9794816654077179, + 2.019688696905775, + 2.116634612685253, + 2.003047503283899, + 2.238742053507097, + 1.8501396521183087, + 2.088607279965761, + 1.9550088444378562, + 2.1201823437080067, + 2.0012663870506215, + 1.918078877507176, + 1.886226941450751, + 1.9381750169381444, + 1.8926747544686948, + 2.131868136967433, + 1.979497844943514, + 2.1087097384967763, + 2.074638266154019, + 1.9945957890961, + 2.070743067042134, + 2.032755858089989, + 2.017575935804436, + 2.0838052133486182, + 2.177574813752074, + 1.846265118608159, + 2.0650528701879596, + 2.0853348988451015, + 1.9805144939784107, + 1.9779166773098387, + 2.0449350264553026, + 2.1429616878071287, + 2.1165705025319395, + 2.0377808075017634, + 2.14377454631435, + 2.0916979547166457, + 2.126075811380211, + 2.052163607567413, + 2.1893716994742998, + 2.0727974413076606, + 2.2465565491005597, + 2.2175023099583435, + 2.0148164114614344, + 2.035359065607058, + 2.017620534317544, + 1.9960922910365133, + 2.1044983725604536, + 2.1289839235037977, + 2.181554872549456, + 2.1822581728573978, + 2.147209807784535, + 2.1596021959931573, + 2.0153915065685717, + 2.255775930940589, + 2.1011525058570517, + 1.9119852367040666, + 2.2683445235867397, + 2.155914903111459, + 2.1487539442027095, + 2.057954035183421, + 2.1037747939754823, + 2.290066094673301, + 2.1134947645281943, + 2.097323283762247, + 2.0112836029793226, + 2.1453755233859715, + 2.2249375968065834, + 2.1526557611916344, + 2.1521754981227703, + 2.341540984628204, + 1.8795183291399837, + 2.3364788789841597, + 2.2754831775049666, + 2.197000004689217, + 2.1782894633691896, + 2.209137818203913, + 2.0448219500165203, + 2.1654653344359094, + 2.1648061534874743, + 2.0499467212382414, + 2.194693153519261, + 2.02202385166685, + 2.1437684985626575, + 2.094423907794803, + 2.1221335046729495, + 2.0107686221430203, + 2.2398670411066752, + 2.128560421630201, + 2.39354060414432, + 2.169309237000073, + 2.223897857999546, + 2.1107824973303337, + 2.118514678653151, + 2.20270288559276, + 2.0745417442935326, + 2.2326554718967513, + 2.0631550742776907, + 2.259078192854252, + 1.957238220218386, + 2.1358426488210176, + 2.1651969333320897, + 2.3289807315437843, + 2.1531865979241873, + 2.2815260975834994, + 2.1140884792175556, + 2.214712879526047, + 2.0982421087590155, + 2.2178212052359876, + 2.123852507409065, + 2.231021455671588, + 2.3495687370632186, + 2.272113097535592, + 2.045682683050397, + 2.327876515836759, + 2.1563725332394985, + 2.1264930576459333, + 2.3444278438088157, + 2.0643503638682965, + 2.1678678228815507, + 2.1252482727990394, + 2.065156457676416, + 2.333467517952961, + 2.1213716680697354, + 2.396939684222493, + 2.247612625182662, + 2.2004353294673678, + 2.2824104606045506, + 2.044972107618596, + 2.1689709735782494, + 2.2132619784035747, + 2.284301545630976, + 2.201619878766932, + 2.0287606759956827, + 2.275343127086887, + 2.4224563290133303, + 2.27406362144053, + 2.2725283102074196, + 2.1239691020998923, + 2.3399957795668325, + 2.0554011103719363, + 2.2868179935537545, + 2.018751245511294, + 2.409611254357152, + 2.1097192754614786, + 2.0877032823048403, + 2.0652796527708093, + 2.2092613603052587, + 2.280708139511123, + 2.2291766531202537, + 2.2589203203184924, + 2.2534988255587933, + 2.047456268562283, + 1.9204042892116744, + 2.2342625464066495, + 2.088496650106674, + 2.2804948957619082, + 2.1254872219622825, + 2.237818937573367, + 2.193942137688515, + 2.194843114429819, + 2.1442037039218445, + 2.3444551143100267, + 2.2965730008687606, + 2.0665862057309305, + 2.095114207295429, + 2.1535520030270994, + 2.235792832243951, + 2.0775443840707144, + 2.360316826120864, + 2.3587524479571655, + 2.0683196995580677, + 2.359268078942423, + 2.0320931157643267, + 2.321220159010225, + 2.3025785393667757, + 2.17748803541142, + 2.3465661896661443, + 2.434739942381788, + 2.3429705618743686, + 2.194525929892095, + 2.057218060001422, + 2.15250131590997, + 2.215704071260967, + 2.1507175836782646, + 2.136373736867676, + 2.148182058701601, + 2.2442028367528932, + 2.0566576744428935, + 2.106815803511181, + 2.2125041115227537, + 2.100858264241435, + 2.017414987930064, + 2.021548957314484, + 2.1619322338569713, + 2.0125699727751822, + 2.132435935085699, + 2.130946382240363, + 2.1339888327468968, + 2.2385242528799174, + 2.210787657328775, + 2.167657297663495, + 1.9800219860937047, + 2.0232822290835775, + 2.0947699326474223, + 2.2188533805206836, + 2.1281942973089394, + 2.1320686285613415, + 2.0532986785008873, + 1.9607205472529168, + 1.9534137089298553, + 2.1057259574802325, + 2.1822138460191547, + 2.143419766315405, + 2.1420142629089076, + 2.1241850260961685, + 2.082194271693402, + 2.303494506293113, + 1.9971877898504031, + 2.1074635597761615, + 2.3026501309167995, + 2.252899242967413, + 2.1235584329916577, + 2.077032916267321, + 1.9915455867890801, + 2.006462421622928, + 2.1198699422490024, + 2.159256813747438, + 2.1320185181230498, + 2.3122349576593564, + 2.1404949804387035, + 2.2528181112394026, + 2.396958425456159, + 2.0444173633366893, + 2.276639009307161, + 2.017371645157349, + 2.278753933332535, + 2.1027555108070737, + 2.341721727359195, + 2.108690868375071, + 2.191771214530966, + 2.232364377853443, + 2.1108509693358823, + 2.0627852339234822, + 2.133197458273958, + 2.018190558429308, + 2.175940529084132, + 2.182805817909207, + 2.1455677961838284, + 2.1419782240390792, + 2.1801083561065697, + 2.2279436031303907, + 2.025322711550718, + 2.100087359922597, + 2.1795166779736768, + 2.2419480111195607, + 2.006349471904017, + 2.113597855930129, + 2.059851413214289, + 2.0641755834489794, + 2.0471067939766816, + 2.1138330031750585, + 2.3135345745035543, + 2.0136620871332593, + 1.8708633381101072, + 2.029130132057352, + 1.9773854127853627, + 2.0931120600600623, + 2.326921576527967, + 2.303017971575322, + 1.9692895574798646, + 2.0095767485500087, + 2.1443663740609704, + 1.886731236596058, + 2.0490905679118527, + 2.1111513080206645, + 1.8755902926526087, + 2.083786795057831, + 2.1015120123715674, + 1.9275693448345206, + 2.0601069937507983, + 1.9148683598243483, + 2.1427039386159503, + 2.119320538698228, + 1.9915305610640854, + 1.9034155225719314, + 1.9962694979764026, + 2.037009931807092, + 2.031305948336762, + 1.9823107330671195, + 2.1317184512576377, + 1.986070476800199, + 2.0259686610151015, + 1.9937247751534042, + 2.0925932278227193, + 2.0431879019349046, + 2.1926125804138774, + 1.991852280769656, + 1.992965407182086, + 2.044597958040391, + 1.969465431194035, + 1.915172796088904, + 1.7997702790171306, + 1.8711308764057026, + 1.9695253886159436, + 1.8515153762400174, + 2.0181509347141455, + 2.0885984924855947, + 1.8502983265002397, + 1.9001228416659108, + 2.0194069716032454, + 1.8258113309387172, + 1.7788428159679013, + 1.9915669226484412, + 1.967739472759313, + 1.9771044817183299, + 1.9442687317269194, + 1.915718809780857, + 1.8981397188969447, + 1.9962200198060107, + 1.88036713652763, + 1.9087971995088457, + 1.7627537208006645, + 2.02813686427551, + 1.9324353303245256, + 2.0726450478628884, + 2.113555731038454, + 1.808804378320784, + 1.9820827990993943, + 1.8049404564617242, + 1.8406898967053011, + 1.9670421132692464, + 1.953483746901604, + 1.8141685571506279, + 1.8702908832666694, + 1.8464419544664916, + 1.8090721611887746, + 1.8905913546281108, + 2.021283597709187, + 1.9177367071601945, + 1.7921869636102905, + 1.816621298062814, + 1.8744826590683994, + 2.008744145228201, + 2.057688393388385, + 1.9401161360824626, + 1.829322445234676, + 1.682140757763679, + 1.718198444666902, + 1.8087416923488115, + 1.8837232166351177, + 1.7340468010317558, + 1.9093441837286333, + 1.78562677473894, + 1.8846376197314414, + 1.7501088348813298, + 1.923262685333831, + 1.803219543657405, + 1.7549044441204338, + 1.725582766641432, + 2.059545992830043, + 1.9252753670749594, + 1.7324877256758582, + 1.740152252266449, + 1.6754317820785531, + 1.773591557856837, + 1.8710438226228494, + 1.7517550775758788, + 1.8747520230081478, + 1.837490199298446, + 1.7906809270708508, + 1.8831848980364674, + 1.8459289053435985, + 1.8111648321132812, + 1.723128996675673, + 1.7531919587115097, + 1.6601553810619998, + 1.6075372640432455, + 1.9517405059615198, + 1.790207930717616, + 1.6009152155998785, + 1.889119476460149, + 1.8023956993169772, + 1.7206742562290829, + 1.6066130306495647, + 1.6952866776336701, + 1.6171770337618803, + 1.7357250839498664, + 1.7238520918951143, + 1.7274072197783739, + 1.6764728904106425, + 1.6725861583369817, + 1.6551755180573748, + 1.6523336938082078, + 1.546592634555948, + 1.6099534667760727, + 1.7887387142419962, + 1.7640200796573484, + 1.6759337585190603, + 1.6392591371564003, + 1.4919780514887437, + 1.6674783955903019, + 1.6664059180564883, + 1.4122977602369389, + 1.5999053537995052, + 1.5470435827854858, + 1.5871548185331634, + 1.7871552264000072, + 1.7950147084791037, + 1.4491247461269605, + 1.426119145757147, + 1.5988284805942383, + 1.558494233189775, + 1.5951078279498583, + 1.7659402194583356, + 1.4268804070935872, + 1.415674934208641, + 1.6296151518540398, + 1.473358372245198, + 1.301737122628162, + 1.5385528333654084, + 1.645031899305301, + 1.7956747261211632, + 1.528093807264598, + 1.4628331011647642, + 1.65338303953568, + 1.43952266592674, + 1.4928580106491531, + 1.5418878828469107, + 1.4625643189371624, + 1.5016483633577493, + 1.3891945478526826, + 1.6581851513822043, + 1.564282657008347, + 1.6232953306953022, + 1.3990839627455023, + 1.4184228363581357, + 1.3747575362340543, + 1.4629421189776306, + 1.4848346008574642, + 1.492728844665444, + 1.398574965696651, + 1.5105825839301852, + 1.5465913856887945, + 1.4027437285154258, + 1.5389386003584213, + 1.5721850948544542, + 1.39021647676499, + 1.530273591138078, + 1.5659298215948327, + 1.340280036258254, + 1.487856017853354, + 1.458288120521929, + 1.4790722229264588, + 1.5579423272065251, + 1.3376516203347968, + 1.4369216679431254, + 1.4661818746143738, + 1.4404283145077892, + 1.5376556798160026, + 1.462186840455836, + 1.3146223657377172, + 1.4111591036865159, + 1.2780345115516725, + 1.4567579415730734, + 1.5363349579010779, + 1.4283625507750162, + 1.535171449329959, + 1.4823663788628931, + 1.5150272739464727, + 1.433913054247102, + 1.2954730896000033, + 1.3033148723392902, + 1.430501927442282, + 1.3210784405700853, + 1.4439676087881637, + 1.374011137761124, + 1.4402163080963057, + 1.4311975978320532, + 1.3911790492966323, + 1.4620206647731688, + 1.380807355833772, + 1.3478075881847789, + 1.2881385863729802, + 1.1165057650208285, + 1.4054390369607312, + 1.256321966053292, + 1.4398813917674795, + 1.2387344274010286, + 1.2048935100935498, + 1.2860912410336054, + 1.396701759669011, + 1.3821090106313374, + 1.200067345280647, + 1.2585613722871845, + 1.324237050891741, + 1.2431600157264597, + 1.279809072695463, + 1.2726904261387293, + 1.2902408956033793, + 1.1721780650577907, + 1.3067427975624657, + 1.1891471174307113, + 1.254330660340165, + 1.1417575491182272, + 1.214358166678296, + 1.0969899940807455, + 1.1410097947269684, + 1.0436054716077363, + 1.1052039067562511, + 1.1610696793983901, + 1.1390079367951744, + 1.1192678896347128, + 1.19595370506965, + 1.2800263744244023, + 1.1555846519804247, + 0.964443043217375, + 1.1808888947537386, + 1.2241987031609898, + 1.0669267535335407, + 1.1924172636454065, + 1.2158048605457734, + 1.1284699622514558, + 1.240306673011009, + 1.222491062710807, + 1.164586202952183, + 1.055028411365313, + 1.2309765268603932, + 1.151366987558513, + 1.09001106831358, + 1.0183755702394723, + 1.1063605827728524, + 1.1572036071989393, + 1.1394480996723246, + 1.1101610042545265, + 0.8502668808650371, + 1.0584704516819718, + 1.2164205471959213, + 1.0508705245131877, + 1.0436501355596626, + 1.0758213816338804, + 0.9486090356533325, + 0.9120166590833663, + 1.0654104034888754, + 1.0416954219394663, + 0.9024303354290315, + 1.239465257929661, + 1.0907250906009696, + 0.9430942022908106, + 0.9844099314246906, + 0.8997086141031376, + 1.0681782479586157, + 0.9615748016169272, + 1.013746793140762, + 1.1459108319350706, + 1.1009673569811755, + 0.9720609503866701, + 0.8643080687726641, + 0.92021772939179, + 1.006019726306554, + 1.1586480399604728, + 1.0636671381067913, + 0.870714639287849, + 0.8545632483971666, + 0.9025633812585612, + 1.0036943802659875, + 1.1133820031806598, + 0.8342285198657935, + 1.0937023267807793, + 0.8629756214715292, + 0.9036482721663914, + 1.0561925550087374, + 0.9426688442498325, + 0.8805284009808046, + 0.9410171392949059, + 1.109512508566563, + 1.0717769406165472, + 0.8867765872049201, + 0.9776752216347726, + 0.8400613896922375, + 0.9999847111439797, + 0.9735759806657147, + 0.8281745137700868, + 0.8072404679135903, + 1.150450446937734, + 0.9860130765930486, + 0.8588086454698179, + 0.7513996445609759, + 0.7308303490441425, + 0.7507642890643351, + 0.8592667966697406, + 0.8133350309831404, + 0.9696389776675914, + 0.8225051216171472, + 0.7058616466010265, + 0.6876140148368409, + 0.8552660857025869, + 0.8379678903794632, + 0.7445955532839771, + 0.8533613388044626, + 0.6323613325520479, + 0.8056201483151021, + 0.8181583882853011, + 0.7533349057536122, + 0.6592460671481126, + 0.9358854482421421, + 1.0357131590750743, + 0.9140549871229074, + 0.7298404524340701, + 0.6603417484075517, + 0.7495977682836222, + 0.5896469826531634, + 0.9983468112936633, + 0.8913582939958352, + 0.8069038882717137, + 0.6543610257103334, + 0.8791686343397684, + 0.6370278995494443, + 0.8607279571779847, + 0.8656743269072195, + 0.7492914848168827, + 0.8913418072193606, + 0.6814297459383873, + 0.6879495762147484, + 0.6986034026975438, + 0.7083086726250353, + 0.802587472004264, + 0.6718170415983906, + 0.8109494278437472, + 0.5449237215130818, + 0.8466772184318162, + 0.9121201091216172, + 0.5825105114565665, + 0.6109408998941316, + 0.6173921582540056, + 0.6626559992955061, + 0.5987785458840607, + 0.8034026044530984, + 0.7066755131787813, + 0.5747727072435447, + 0.6722615958561208, + 0.7443664298765249, + 0.7178805943719239, + 0.7556449650367133, + 0.617466167879751, + 0.6927442471175664, + 0.6478039238854443, + 0.5662250008282309, + 0.6386241828768164, + 0.6434058961300135, + 0.6775848342588907, + 0.688646251414197, + 0.4631105978618901, + 0.591231458871408, + 0.5810793717823893, + 0.6250211760831351, + 0.5334888286227926, + 0.6840069360976092, + 0.5930253210368732, + 0.6832956338480303, + 0.7742745375543498, + 0.5179385375690937, + 0.453384044712283, + 0.6261322526614204, + 0.6961482315189432, + 0.7008593616100427, + 0.5753341989111997, + 0.5079443202620564, + 0.37308653194782415, + 0.4927093793818197, + 0.4321601463211391, + 0.5207788650596306, + 0.582540504048135, + 0.5506672228160473, + 0.47767207602750017, + 0.6112165581368973, + 0.3866377250121983, + 0.46867302436236413, + 0.4718338093764391, + 0.6564683382385466, + 0.41749865017450344, + 0.44660602484400713, + 0.5843620539379292, + 0.6014949652531028, + 0.4377607080078225, + 0.6686526170837304, + 0.6577382485311597, + 0.5766282244581484, + 0.4293349438482311, + 0.5695528371191371, + 0.4771255593609623, + 0.5902214239709637, + 0.4030332673689786, + 0.49827605691595234, + 0.39574934260724653, + 0.5639973533677899, + 0.39506419326716546, + 0.5467712773415413, + 0.35456285072237603, + 0.5201178040315337, + 0.3299083676981903, + 0.5273926220970977, + 0.48192072441217976, + 0.4493233121841112, + 0.37666297416784233, + 0.49734048085205845, + 0.4086271485088236, + 0.2913341204245593, + 0.3843020396214, + 0.29283244281671217, + 0.33801228843906883, + 0.5489532512522733, + 0.39917862805965204, + 0.46778184634342473, + 0.5578386183849267, + 0.34011488530083916, + 0.1898638852292835, + 0.47038623196075735, + 0.1765577920359694, + 0.3167735934254273, + 0.5183964151903481, + 0.39507297342890946, + 0.39624159760894123, + 0.29201832816486173, + 0.4244647348399207, + 0.3736597264653406, + 0.3615516593169511, + 0.5825775864548075, + 0.5232632408823603, + 0.4301355460021692, + 0.24289605779746795, + 0.44742406296916776, + 0.4318806376080436, + 0.22505355868127533, + 0.21263453064085502, + 0.3980831467853667, + 0.26378778952253845, + 0.3113434594069725, + 0.40986670962123795, + 0.34957770579763764, + 0.33429447324027856, + 0.3910727124567424, + 0.33063314718998915, + 0.3140068284894912, + 0.21869696229309923, + 0.3261596876999246, + 0.32720916125627875, + 0.34171259988791464, + 0.32356021311556293, + 0.36360440919251125, + 0.4133283653138773, + 0.4524213738709205, + 0.4835133231731852, + 0.2887138297346859, + 0.435320573837346, + 0.44753639666180245, + 0.4014076870774931, + 0.24086904208951565, + 0.36524261516119927, + 0.42097287559589136, + 0.3179878104342771, + 0.18113931256751162, + 0.23204753409960038, + 0.2966010638696927, + 0.396887218063257, + 0.20655416988452813, + 0.35284700748331455, + 0.2797185228821934, + 0.42954747466729815, + 0.33827105618152586, + 0.1990989787961039, + 0.1631176036378142, + 0.24565649964381922, + 0.32728561632774383, + 0.13368206389510903, + 0.47141723860178775, + 0.11493851881540457, + 0.29793115253481856, + 0.29136877783463705, + 0.26550179119002304, + 0.3653083670285423, + 0.47564694787870976, + 0.280186794819418, + 0.2587038820752051, + 0.37523503733078617, + 0.40617011256367863, + 0.17280241114147443, + 0.37680564694650015, + 0.4396726398743921, + 0.36827407390001343, + 0.19833083618828334, + 0.4519584152060333, + 0.3813250679396312, + 0.34725847075889327, + 0.22801518472033339, + 0.2161760316509079, + 0.31047176984596414, + 0.16040335770165093, + 0.43511340274085275, + 0.12147582963261727, + 0.144498714562167, + 0.24735734958394612, + 0.1538569412989244, + 0.25490657139093165, + 0.09843980524203949, + 0.15114778566932952, + 0.10481139468950965, + 0.26942944228627713, + 0.4117082384410991, + 0.17175327719980926, + 0.3190056647657638, + 0.2999663315172767, + 0.229229430837129, + 0.20078462303261266, + 0.25982212020218165, + 0.25490090227029494, + 0.30604006625228797, + 0.024499604818694842, + 0.09730330076408175, + 0.36660779772581054, + 0.2097935815750399, + 0.08053545947463628, + 0.24479613473909875, + 0.2336763936394315, + 0.2945827555415442, + 0.08006083342839329, + 0.3635244173319876, + 0.11746785382877635, + 0.24375090088172396, + -0.01959076803471302, + 0.22118620947214768, + 0.24647465069278363, + 0.21191012909716414, + 0.15730839674160274, + 0.1811679796964617, + 0.36466084818579975, + 0.18469226816231368, + 0.18034950701123081, + 0.0020228052167346744, + 0.2104622743998849, + 0.4447423202379344, + 0.15544699984060983, + 0.47440394810849296, + 0.1655923317024582, + 0.15065920982777442, + 0.22161481610339798, + 0.25929943012077544, + 0.20376847436249645, + 0.07924018975898581, + 0.39579329508615135, + 0.11496520671664029, + 0.106132556142634, + 0.3111439958810957, + -0.005850493979138033, + 0.3088790672745342, + 0.23544321632603327, + 0.2707903720400082, + 0.10346828576280542, + 0.1846318762789335, + 0.23863683391470653, + 0.07737920247131659, + 0.116976841771908, + 0.07076789834197189, + 0.12709606722636052, + 0.15390134768748573, + 0.16971676572509448, + 0.1699330035559987, + 0.23572550215098334, + 0.14838410399875018, + 0.23786896433135693, + 0.17285874246486943, + 0.19281278579733777, + 0.28844446014440356, + 0.2942517273503346, + 0.04749065263802468, + 0.09499817062805287, + 0.10544353726411873, + 0.23601490137346964, + 0.31957001659784506, + 0.1840771444372084, + 0.25330404987094307, + 0.050993109480014176, + 0.23517780954485948, + 0.19743085681820488, + 0.3197070616167546, + 0.2650196404321694, + 0.1202437760075287, + 0.4404915249179079, + 0.22762525988198368, + 0.13970238460745976, + 0.31125452564137923, + 0.12314857687592502, + 0.21291458478566305, + 0.27980050834493253, + 0.1697544471724968, + 0.18090218690586102, + 0.23256926691944185, + 0.1991762619019251, + 0.3220029248531422, + 0.1278358377508004, + 0.12482646077506886, + 0.14619935004105444, + 0.1433486639853036, + 0.3281003302228135, + 0.4307757344517106, + 0.09716255396245581, + -0.0025669239514893305, + 0.31286970711653617, + 0.26309707675577987, + 0.03212767149541823, + 0.2736150629391898, + 0.20806055480442903, + 0.32626674956541285, + 0.22395443680975616, + 0.19584947670078928, + 0.22521208578469049, + 0.1948343326832364, + 0.32644942767120466, + 0.07223432236981667, + 0.2244307296007287, + 0.30901629977202455, + 0.2786381132291142, + 0.29233903581966253, + 0.1976607759712459, + 0.3395558085652895, + 0.31398282310442527, + 0.1207260557563472, + 0.2545060005836888, + 0.1631341818047935, + 0.1857007341214196, + 0.29008665932334643, + 0.18646790373537772, + 0.25180017103983665, + 0.28515778516643836, + 0.07034679341185823, + 0.1932022713296038, + 0.25923639179057706, + 0.15813077236400494, + 0.43906396948198245, + 0.18893486270875195, + 0.23681594865600922, + 0.2607956569460393, + 0.28138358037395905, + 0.26157582238585586, + 0.19491361708625157, + 0.2853240209113714, + 0.11155096774412421, + 0.43909401292436134, + 0.13649042722348412, + 0.2708808850256989, + 0.31246120176425957, + 0.10070213093292882, + 0.2848906626493366, + -0.03018722359847903, + 0.2514869667491138, + 0.1880269895237648, + 0.29821610968666895, + 0.27065231781197, + 0.27880268890853904, + 0.29768138212401557, + 0.23413587644386638, + 0.41426472793469227, + 0.23312805984134835, + 0.3879236948312131, + 0.1759546323422187, + 0.1940486309066059, + 0.35168362893798794, + 0.39427944030310724, + 0.3373578714151185, + 0.2885087136624281, + 0.45680730243058537, + 0.33680818370816745, + 0.2415389316499701, + 0.39633571843656495, + 0.29538424418805276, + 0.242059160558954, + 0.31272073591600197, + 0.22701758259134253, + 0.251920853978733, + 0.18363838941747018, + 0.3517396325090508, + 0.3023593018377254, + 0.4538132709188576, + 0.2763721012661025, + 0.44754792030121543, + 0.4576863138487943, + 0.4238918600217835, + 0.2848786775037126, + 0.3583430479593768, + 0.3558453250529756, + 0.2743510047538442, + 0.34207708306729434, + 0.2239620478236825, + 0.32837781056291193, + 0.5338231752850457, + 0.2830507444043026, + 0.46969176581836924, + 0.4126153166493715, + 0.1803436318020475, + 0.2767957297167677, + 0.32826684027965725, + 0.2395417140493537, + 0.3337211747005228, + 0.3493061618873257, + 0.398528589110941, + 0.5329903637112644, + 0.3490181476106231, + 0.38557467032553505, + 0.3001077773937775, + 0.4632372617989229, + 0.25209789536902494, + 0.4465244826100296, + 0.3444366011166638, + 0.3283997934529131, + 0.43010420285858886, + 0.2787548464736489, + 0.3370676521750055, + 0.4602049514678897, + 0.34780556113054595, + 0.2778165376169861, + 0.3614103615842472, + 0.5390552187592759, + 0.36610357736401855, + 0.49568242454230654, + 0.3373708124606596, + 0.32035577715768726, + 0.3735327046358317, + 0.37767543121561675, + 0.4368769454583865, + 0.5513289731552806, + 0.5305722879242776, + 0.4629682931856332, + 0.5231143698354775, + 0.433400382102353, + 0.5162951262596939, + 0.34156168479519255, + 0.5706061765994573, + 0.28272512346827383, + 0.3392415608896467, + 0.6483399040481262, + 0.41779763912268, + 0.5011595137257229, + 0.5033432097225615, + 0.5074934287391288, + 0.4743591614526801, + 0.3170366934485495, + 0.5702613503295761, + 0.5153651557555085, + 0.38722686143853746, + 0.5369151691138464, + 0.5308575711588607, + 0.3607107375991727, + 0.3745318544390525, + 0.48008821604121404, + 0.5118662378578531, + 0.5252837128476524, + 0.5198198817832276, + 0.6155559870632692, + 0.4772228235197395, + 0.46297491968169385, + 0.6564923418892505, + 0.6186175824593049, + 0.45297979822051776, + 0.5185612940193804, + 0.604334532004693, + 0.44160168123654436, + 0.4279837073530728, + 0.664748328975628, + 0.5455381862822044, + 0.5158895008492306, + 0.487635271416467, + 0.4430295235357625, + 0.4430691219935706, + 0.4575259908235922, + 0.6001867894276981, + 0.6728381288468174, + 0.6447680622028865, + 0.5656211361113421, + 0.40267096038265693, + 0.6855148776852047, + 0.583311746152262, + 0.5414443661331177, + 0.5651795009536948, + 0.5172440263550369, + 0.6506353636055017, + 0.6561964409287985, + 0.7123795014876646, + 0.6674134173767633, + 0.6867815985646581, + 0.7145076758519557, + 0.8092675762052949, + 0.7426547967465602, + 0.8105594820227798, + 0.6199093104486694, + 0.3782964132271834, + 0.6328866012575218, + 0.5692160834755357, + 0.6557063392658636, + 0.5816890526008828, + 0.6023729434647092, + 0.7333814318080549, + 0.7632705168833355, + 0.6458005268259633, + 0.6474448946088884, + 0.6463038464716845, + 0.7610177664922506, + 0.7653038149150424, + 0.5466745527747665, + 0.4656307880470093, + 0.7020205711150971, + 0.6805021457904151, + 0.7474828274092181, + 0.8191642468416126, + 0.7683527789023267, + 0.6521391509956129, + 0.7523507169626491, + 0.5602995018176403, + 0.86981512418253, + 0.6752358908063654, + 0.7401117634916082, + 0.6754977995430115, + 0.7325458142820349, + 0.7042024897597322, + 0.5415433482807346, + 0.784666360919874, + 0.8894532298106403, + 0.6974593663909547, + 0.6841080373888618, + 0.8386275928365637, + 0.7145656653483866, + 0.7778981335995188, + 0.6736697132336422, + 0.9125593143482307, + 0.7106043721312203, + 0.6943046189006385, + 0.7413133834072669, + 0.7286364379456972, + 0.799825084419649, + 0.9224117269685531, + 0.8945572077149053, + 0.9509878273638239, + 0.7710553940114495, + 0.9692150540946621, + 0.7062441969211487, + 0.8127435018177185, + 0.8155140895353311, + 0.9157442685858451, + 0.8376828172972717, + 0.8517435190424899, + 0.8912505826931513, + 0.5995517670543422, + 0.7940421512510829, + 0.5073196955990602, + 0.8093660489453551, + 0.8741050827385515, + 0.848703961351053, + 0.8235620146618247, + 0.9597084920119777, + 0.887179917310463, + 1.0332686442785999, + 0.8978663675689676, + 0.7366092238140052, + 0.9495652941125083, + 0.909884168742618, + 0.9038227180036702, + 1.0314254687419222, + 0.7425067676126076, + 0.9063602508653811, + 0.7690180474825794, + 0.8286130423834354, + 1.1206335432509589, + 1.0107229572966925, + 0.8651744953326128, + 0.9487951931805206, + 1.2180403686514356, + 0.8839780410670337, + 1.101805472680568, + 0.9702295293999986, + 1.1006256969490844, + 0.9548813610303774, + 1.1027954905525175, + 1.1762587387976413, + 1.0193717078870248, + 0.9455536598031489, + 1.1199861229079362, + 0.988880235031857, + 0.9148884142189365, + 0.9082245197221933, + 1.2494752846415609, + 0.945466829726331, + 1.077504738611219, + 1.0753426866648315, + 1.0058024460437427, + 1.0442163219585048, + 1.2113717350104434, + 1.1482247351786639, + 1.0352243406243025, + 0.9772976750921692, + 0.7867203912463145, + 1.0968670149084594, + 0.8967821842503118, + 1.0915145883713437, + 1.1634661876938952, + 1.004691903709583, + 0.9295261427273993, + 1.0627765893556775, + 1.1895838390306586, + 1.1540827476695747, + 1.098706760768875, + 1.127447436065626, + 0.961094014250585, + 1.0074664211291555, + 1.1112930295240173, + 1.047795918950136, + 1.1327778251016816, + 1.2213084794505764, + 1.0876012957678165, + 1.0272530783548413, + 1.1878539050309511, + 1.2403771812096807, + 1.1783851061561281, + 1.3203922805228747, + 1.1388051649753625, + 1.1682067998122885, + 1.1793749787489982, + 1.1485416686442196, + 0.9667966345315155, + 0.9539824505034717, + 1.037777861842162, + 1.2211139652980632, + 1.0493077854931545, + 1.3002212852114161, + 1.1591453406482688, + 1.100928970849027, + 1.2810886900833882, + 1.1406508194924572, + 1.1713491909408484, + 1.272868047056273, + 1.2042592575392843, + 1.1745277545998236, + 1.128042425791234, + 1.1782735281646146, + 1.3394976879618077, + 1.3723777763225375, + 1.33248746301937, + 1.2633709024977986, + 1.3134010837164094, + 1.3148219884317522, + 1.2135804289216903, + 1.3117258217468202, + 1.2872749630131928, + 1.3442588392743362, + 1.2114844202127837, + 1.1995426566359633, + 1.275716896876011, + 1.2852061898042908, + 1.3452383144550186, + 1.455885334386373, + 1.5040910282236273, + 1.2780377476615294, + 1.3697897141603104, + 1.2635348354212832, + 1.318277275396541, + 1.4435423701527679, + 1.516884020537157, + 1.4445804012498271, + 1.1332934882150452, + 1.398584443101627, + 1.367082037518116, + 1.3878909336601604, + 1.5362949121696645, + 1.6823346944709192, + 1.568987081313619, + 1.5094617253858538, + 1.398927186408478, + 1.4200023240287714, + 1.3561549895636453, + 1.3179376088366175, + 1.5400968804493187, + 1.3048885921837443, + 1.340124186346416, + 1.4297047993617948, + 1.2779743140371334, + 1.4452838805170005, + 1.457988087801501, + 1.376332040934763, + 1.490422717125079, + 1.3935323042948855, + 1.5020699805592328, + 1.461183162452399, + 1.4329050956385652, + 1.4666899991377187, + 1.4741860780192753, + 1.470661825747138, + 1.4867930597738184, + 1.3002598957180709, + 1.415303644659669, + 1.5035724775487778, + 1.3197839804652958, + 1.3915842704146608, + 1.573206044537172, + 1.509497220497745, + 1.3622193567069822, + 1.3975941143165964, + 1.5836550329251542, + 1.502026035433289, + 1.4346426369659275, + 1.6825140662200524, + 1.337495450473249, + 1.407195563801454, + 1.6975529794927928, + 1.3793774984989557, + 1.818547216325706, + 1.4606073491247717, + 1.4846768402800785, + 1.49131995244075, + 1.65719700426182, + 1.7315016784575805, + 1.5318270266394685, + 1.6362813626823336, + 1.7094148358869374, + 1.5544103897706685, + 1.5279533093650368, + 1.4790114334002755, + 1.451491962063677, + 1.4889628731257252, + 1.5450562299605763, + 1.5209430954006389, + 1.6765177302601781, + 1.6628023466709514, + 1.5360584208824308, + 1.5435477584781658, + 1.6348272710849137, + 1.682026573633935, + 1.610146137331561, + 1.6909699310828272, + 1.6630289251836803, + 1.6630511176140554, + 1.5762458244422781, + 1.5730609073934698, + 1.7245288171451907, + 1.7797227533912015, + 1.6124666781564527, + 1.5665934122965897, + 1.7946893612953077, + 1.6137650226802793, + 1.5660124026530862, + 1.8151434402974778, + 1.6020040249011382, + 1.685646162246313, + 1.7411517651912798, + 1.5980682878108194, + 1.6940770385042698, + 1.6144228173017054, + 1.6398897842758893, + 1.7775642530941862, + 1.6756794050153425, + 1.6365195267163404, + 1.666181710762184, + 1.8220443312739465, + 1.668153250619331, + 1.884007823484939, + 1.6505321956534817, + 1.8405051183088723, + 1.8167992723489406, + 1.4991203148665422, + 1.9593354901771587, + 1.7153858241349569, + 1.7573317858424264, + 1.675533519911829, + 1.6983913234451198, + 1.7751337746251044, + 1.7924161497650801, + 1.7098727749196698, + 1.7454678687614178, + 1.7848728199034107, + 1.8892861924269253, + 1.794824571450299, + 1.797455069349926, + 1.9690956237857882, + 1.6900223680309097, + 1.5405323827594237, + 1.777458075710659, + 1.7664945624362176, + 1.8336601476279433, + 1.8275243920247544, + 1.7689636283473764, + 1.7835381023010999, + 1.783402568612039, + 1.9502508353985424, + 1.839114676066839, + 1.847273991244967, + 1.7610997971436175, + 1.8470336112199233, + 1.875316850259659, + 1.8638192371813913, + 1.9866605209317543, + 1.7684062019732933, + 1.752879237719737, + 1.9242086524746627, + 1.7934985321145702, + 1.7936053714813394, + 1.9076456750249833, + 2.019708705316489, + 1.8608779675650489, + 1.910811871037635, + 1.815233003362883, + 1.8919668505397027, + 1.752989948526023, + 1.8380589657177078, + 2.0528052898020483, + 2.0116147998809573, + 1.9815858400831035, + 1.8375275621123561, + 1.9682166828405698, + 1.8872798543821792, + 1.8677774016561526, + 2.08210062778904, + 1.9190877775507391, + 1.9101735903863177, + 1.9225824908230438, + 1.942721285170646, + 2.033566816765418, + 1.9169000415408464, + 1.945341829751651, + 1.855204644247746, + 2.0626182135403903, + 2.046198011495987, + 1.9048694707942468, + 1.9520850888843393, + 1.941608016117538, + 1.8519676677685268, + 2.103617417640276, + 2.1542257362004564, + 1.9994456002417444, + 2.0435598146604437, + 2.164744959095846, + 1.992176867322905, + 2.077377822374966, + 1.9104763870747776, + 1.8189538180537235, + 1.966595366217236, + 2.010267487035383, + 1.8540921076213086, + 2.051775311569174, + 1.8103443624096769, + 2.091707305995048, + 2.0393184329261396, + 2.107618939650257, + 1.9789018060949302, + 2.0779580494326795, + 2.044966770852477, + 2.0189626006991612, + 2.1298461509472486, + 1.9254352336154594, + 1.7303950049302634, + 2.118886505923284, + 2.1210307993232247, + 2.016011794103667, + 2.015406362710546, + 2.0453013682173684, + 1.9376149124685247, + 2.0355593533548713, + 1.9492693666195657, + 2.022720412079746, + 2.0841567067712, + 1.930046470366676, + 1.955797987764436, + 2.1322182504316456, + 2.0097943505106137, + 2.0913961408538113, + 2.1384743540567026, + 2.0809702295692296, + 1.9510387424167894, + 1.9741600227695766, + 2.02345567250616, + 2.0969357513577704, + 2.0764493597341627, + 1.983373213709535, + 2.1197295105675504, + 1.93170095988448, + 2.1133962361595526, + 2.1211257558652505, + 2.120507199107217, + 2.1553402302008586, + 2.1589007645259097, + 2.024674483832399, + 2.163779141275733, + 2.122206333344807, + 2.3012049941914707, + 2.049762653032734, + 2.2543846675183508, + 2.2324308828122654, + 2.0336395609677735, + 2.0945993708810473, + 2.2862664303720517, + 1.9152074926089204, + 2.0565787811879526, + 2.068752700069662, + 2.1586190545148822, + 2.157578983767491, + 2.1914367667479935, + 2.0897997108359765, + 2.030178829830784, + 2.0806478536049036, + 2.2625388237849107, + 2.1704441839562953, + 2.000453494978799, + 2.150028629874204, + 2.1406851707563606, + 2.09442568384901, + 2.0869258379843987, + 2.092870290197957, + 2.171600010610676, + 1.9531151389236476, + 2.298027562287942, + 2.0657628210022856, + 2.232242359008746, + 2.169397693595706, + 2.077084227495093, + 2.112076762928428, + 2.197339463567587, + 2.097113129511313, + 1.9874802797536257, + 2.1452710308087535, + 2.243365754016439, + 2.1075718221098554, + 2.2714064608253213, + 2.2185918195717935, + 2.175084877587082, + 1.9044787232326958, + 2.0948001791437347, + 2.2778728233472454, + 2.131509421324761, + 2.251858820293389, + 2.1791538968668713, + 2.174542907352147, + 1.9447373422729763, + 2.197172432675647, + 2.194661581383472, + 2.164674489713403, + 2.1534449550436796, + 2.257215323950912, + 2.019947247905552, + 2.182605734929546, + 2.153023055001753, + 2.317857547113247, + 2.260867822243936, + 2.0856116186452414, + 2.136396941255383, + 2.2001420248788928, + 2.348099994808767, + 2.1426942365640542, + 2.036087812209456, + 2.0936272953174884, + 2.1472965220709574, + 2.0714950079830436, + 2.0558276760326133, + 2.278194654807474, + 2.3808027286528017, + 2.05132213106966, + 2.054149834056619, + 2.14077162143286, + 2.289865497667926, + 2.038591714224767, + 2.1545014247006025, + 2.2426279956247503, + 2.235236617892828, + 2.099549637614015, + 2.2961759070083207, + 2.2024740420822355, + 2.1935298307408853, + 2.0472997261481103, + 2.1652790938749193, + 2.260977508726001, + 2.209912159678729, + 2.204926107586701, + 2.240489367544746, + 2.27316234178197, + 2.1389714901799493, + 2.315183176676635, + 2.2581683382740003, + 2.2528914128187276, + 2.394236468456547, + 2.329086388314868, + 2.4013118512490355, + 2.147860225932213, + 2.1774160411371284, + 2.3760563100969203, + 2.1276790028723624, + 2.123437168482262, + 2.335767864998692, + 2.047436070912665, + 2.1880891367718704, + 2.0907053945072933, + 2.159651239398048, + 2.333117998490748, + 2.0959012537077424, + 2.420389871053546, + 2.0354241799517196, + 2.1239026916248918, + 2.2302128116871627, + 2.0122359969834394, + 2.105655587688531, + 2.211140641623561, + 2.212330536237346, + 2.163006846171225, + 2.1007740678639366, + 2.252989778408896, + 2.071436585215607, + 2.0428461580606223, + 2.2365429777250347, + 2.204568167577316, + 2.1887880384302405, + 2.1677972023914913, + 2.328780231647979, + 2.2477514111422225, + 2.216543725834973, + 2.1948273973569385, + 2.0234187268398225, + 2.1748097104056257, + 2.177834462658324, + 2.250828160081487, + 2.180319315702399, + 2.340194911836119, + 2.10430665534653, + 2.098022932564293, + 1.9905435360242658, + 2.2517915308408636, + 2.2699420509027526, + 2.219769809447873, + 2.1796545253404234, + 2.2337657926986774, + 2.1985201133599652, + 2.1549121225225245, + 2.0470213646983715, + 2.1140755511261977, + 2.2839636240155783, + 2.200421905836179, + 2.229697035406821, + 2.144255473111008, + 2.2321112074572564, + 2.06325960003352, + 2.3027718876995205, + 2.223515803269123, + 2.0680029300503606, + 2.0291386259804143, + 2.133361939647505, + 2.1324586307408304, + 2.2497304728811898, + 2.113613943680002, + 2.0141537312188857, + 2.1033310167013686, + 2.181968607328503, + 2.24854017927827, + 2.2735665933176614, + 2.029860385507663, + 2.225824652772595, + 2.0150880623738843, + 2.051307588632414, + 2.2868570877123466, + 2.1835058688879934, + 2.0073251021737306, + 2.2216676697739377, + 2.047277362735211, + 1.9583413276966377, + 2.1290700532458056, + 2.1082022388285115, + 2.0796229497288796, + 2.1577036294375107, + 2.3011911403363214, + 2.088301195465197, + 2.0240067240396287, + 2.160026952896188, + 2.031170149777068, + 2.008274962966762, + 2.1226326248861453, + 2.0387713187655403, + 2.1314710963180477, + 1.98382423137352, + 2.1820428656162956, + 2.2403392939622075, + 2.1173264386972197, + 2.1035259959170074, + 2.0654801996276597, + 2.043212993700444, + 1.9397682077833747, + 2.0419607103830812, + 2.181448397525136, + 2.0668777775284872, + 2.1510323120450106, + 1.9616888181376548, + 2.1284529956827094, + 2.1051919144819387, + 2.0196705346830868, + 2.0869121513096203, + 2.2936053899771642, + 2.170440608288201, + 2.172844231440268, + 2.0683708802663063, + 2.0493580467297345, + 2.029038548739715, + 2.1190014610349945, + 2.044771621993836, + 2.181471693390703, + 2.019659443409049, + 2.0738277699647796, + 2.1834317197294615, + 2.2413521706539097, + 2.060522371403577, + 2.246732453026115, + 2.1139319406404, + 2.110216306168556, + 2.00130327911983, + 1.9622441387248353, + 1.9369746203275455, + 2.1007124144367517, + 2.114447897274484, + 2.017311225364216, + 2.0943110758623904, + 1.900022051410238, + 1.9856545058034967, + 1.8568262626963437, + 1.8826466734800378, + 1.870846893481697, + 2.0876184642100206, + 2.0240103640261373, + 1.9725182838202722, + 2.1284225298841046, + 2.199583381033537, + 2.030337780593434, + 2.0384492082939922, + 1.9719501043749441, + 1.9702700629022558, + 2.026916660844495, + 1.9064547795844717, + 2.033480368500345, + 2.0424652835583768, + 2.1131589848345875, + 2.1120984272237773, + 2.1602349747913685, + 2.090585291551784, + 2.10933019127886, + 1.8953428083653876, + 1.9376087758762321, + 1.9853862614337143, + 1.9057297163929072, + 2.0391639283808503, + 1.9301745291022867, + 1.9224480462385425, + 2.127210554916455, + 1.9681025711359452, + 1.8342643190212529, + 2.0520939172401906, + 2.0630296913482185, + 2.038532067581261, + 1.8399995481055775, + 1.9078105402363024, + 2.190713300120317, + 1.9736183184665013, + 1.9998821171482017, + 1.9974560291976111, + 1.9845201618442168, + 1.9606422930778475, + 2.122407188127257, + 1.8500308295800099, + 1.834266075041026, + 1.7657059507229251, + 1.8468794591561206, + 1.9583901946728552, + 2.047843730815469, + 1.9581195990344775, + 2.0724336066602542, + 1.6989752186943425, + 1.8988915518417435, + 1.9498346790682324, + 1.8731285249402723, + 1.859010286921417, + 1.9474027610940479, + 1.9121092391672094, + 1.9249060851948523, + 1.78020784340673, + 1.9020535383797592, + 1.858076582842327, + 1.982933278828663, + 1.7332167205094469, + 1.843347646540344, + 1.8437112708276417, + 1.999698865945519, + 2.090741981282971, + 1.8519759863772083, + 1.8989737427449915, + 1.650222486296096, + 1.75684748367397, + 1.9074803753718892, + 1.8584279130892232, + 1.7894319892403945, + 1.7225329910358584, + 2.0107720969081937, + 1.884081475029549, + 1.7879095807065524, + 1.7670356076782696, + 1.8303344370434507, + 1.6077116249782795, + 1.7593410517272812, + 1.8108089607024203, + 2.0114049324077667, + 1.563935067500455, + 1.7260599274168327, + 1.8090579193158112, + 1.6870736907708437, + 1.8347199076032066, + 1.724650531092241, + 1.8075195232188654, + 1.6561246255188338, + 1.7871684997425705, + 1.6914171648813838, + 1.675403597293108, + 1.8537378387400256, + 1.7734805201550685, + 1.72414733899435, + 1.600661424687507, + 1.913542041494952, + 1.7349429931719635, + 1.5806102782852234, + 1.4476981529673303, + 1.7583469029391563, + 1.7044258255046798, + 1.6693841866681025, + 1.4625778881211002, + 1.4370319473241715, + 1.8797271757012775, + 1.7467554572732698, + 1.7632632286617502, + 1.6833794834230347, + 1.5815290794990131, + 1.631716364211345, + 1.6884870230998135, + 1.7163310242202339, + 1.7632586987536578, + 1.7436995664045403, + 1.5770832553257594, + 1.5891763340045146, + 1.6627111408303177, + 1.6207505245760396, + 1.6379180796696415, + 1.6870669918349188, + 1.6177698534684775, + 1.5517850916378633, + 1.828185615739388, + 1.619738192566574, + 1.6208325441011973, + 1.7137850368681125, + 1.4893029157312443, + 1.6336880732271428, + 1.549882872817738, + 1.5762066595714932, + 1.4195574508213002, + 1.6867527721415982, + 1.6543711478457288, + 1.678611613260463, + 1.5855873891006844, + 1.5978088234443781, + 1.5778959810794455, + 1.4303306803837914, + 1.6381144713881033, + 1.594326677701046, + 1.6644561973527074, + 1.5770064377225836, + 1.6832049030745888, + 1.591812720341504, + 1.5119294575888484, + 1.6346890234292686, + 1.6031213266883653, + 1.6234925272566723, + 1.5648521663914332, + 1.4928554248563453, + 1.4295886730297769, + 1.3970351663493696, + 1.3362986324739203, + 1.4384636742815886, + 1.5332636600249088, + 1.557663159135716, + 1.43831609630284, + 1.4212848274681955, + 1.3746654159968477, + 1.5077777490638296, + 1.5084996175753462, + 1.546774286998007, + 1.3029365494043357, + 1.4520055561413598, + 1.6319020028669005, + 1.7228017026638878, + 1.386691234923683, + 1.5348968165379744, + 1.4043369735815494, + 1.5470910475632182, + 1.6065496071810874, + 1.4013258844332834, + 1.4450918083205255, + 1.3750199788382103, + 1.2792055824841637, + 1.17830181474842, + 1.2289615141707235, + 1.1801359913300669, + 1.4401103108323983, + 1.3747815608355942, + 1.3776807258933088, + 1.3138616415643614, + 1.3336000509945047, + 1.2836476782143724, + 1.233771157976192, + 1.51213269256361, + 1.3709838106211691, + 1.3624279453347865, + 1.2366741894635807, + 1.2823683305679094, + 1.3228630103419887, + 1.2243181226326914, + 1.3157031949162121, + 1.361872934036386, + 1.132880840015659, + 1.3663930211932893, + 1.4495870004458296, + 1.3954374240687915, + 1.377659885486547, + 1.0545099264451776, + 1.4705983404262615, + 1.190217093259226, + 1.2724633704915436, + 1.278582619341933, + 1.181605259613546, + 1.3768080954217101, + 1.1840680043072602, + 1.2707011663787398, + 1.4504066425707942, + 1.4350706419236279, + 1.197611119294618, + 1.3827208664503106, + 1.4638708145275614, + 1.3606230921209386, + 1.0797195341216066, + 1.3788720967815578, + 1.214022152557159, + 1.1559091414901268, + 1.3623818033764419, + 1.1728532755610463, + 1.368183006174225, + 1.4219590091576217, + 1.0589640891313792, + 1.3642232863512025, + 1.2708842636596462, + 1.1008768814603989, + 1.1142924419503049, + 1.151487893829524, + 1.1279112218484648, + 1.2815405770253032, + 1.166983768315856, + 1.086659568832255, + 1.0525834970138657, + 1.1082892156242594, + 1.0393504508255764, + 1.034548393742416, + 1.2338490044216224, + 1.0409124804672443, + 1.144046231462928, + 1.1989301129249275, + 1.1390164593262904, + 1.2545354399257886, + 1.038058461497219, + 1.2888368209688852, + 1.064735901885798, + 0.9584962626499304, + 1.1670840942416618, + 0.91551263705666, + 1.0390215010562678, + 1.0314755628844674, + 1.0060005145691087, + 1.1556714273317068, + 1.0071306609088917, + 1.080302355506543, + 1.0504497106453339, + 1.1562608228661488, + 1.0862346690709908, + 1.0249578841695453, + 0.9710841851697749, + 1.1207679370716206, + 0.9037338899179218, + 1.205726698360881, + 0.8991337684793288, + 1.1464671284301078, + 1.033534202312123, + 0.9351129664732067, + 1.011463937117761, + 1.1415855798576116, + 0.9486357234727688, + 1.098010521804344, + 0.808052997258079, + 1.0402927239205861, + 1.0954039266882838, + 1.090837927974799, + 0.8835522485281632, + 0.904516236424246, + 0.9912217199973145, + 0.9337553116120597, + 0.9946523840185573, + 0.9804501880897419, + 1.014244358240081, + 0.7960286461654379, + 1.0111545996274727, + 0.7479701904549185, + 0.8673519867578324, + 0.9393181777570573, + 0.8997025999573852, + 0.7357506370593351, + 1.0694844761580506, + 0.9325209926684089, + 0.9934419190486495, + 0.954326866908082, + 0.7918214099524286, + 0.7924864379103059, + 0.9410063113966787, + 0.8859932785859748, + 1.05543210850741, + 0.999671619785235, + 0.8619392927619501, + 0.8308684830057503, + 0.7191828777929035, + 1.0668180269481864, + 1.0853744849175004, + 1.0056829674187435, + 0.9387723109342695, + 0.6853324475302268, + 0.7399386676544577, + 0.8427329008776476, + 0.6313715321551386, + 0.9566180659696599, + 0.9310639795413986, + 0.9418783363470915, + 0.7361553292769439, + 0.9259588755513454, + 0.8038889994743549, + 0.8496785495971508, + 0.7752370856586028, + 0.8267309125459127, + 0.7494200193952074, + 0.6689837263772811, + 0.7616948261711401, + 0.686075038161842, + 0.9141628689244728, + 0.8754233569140881, + 0.5748435343617373, + 0.9034063910422316, + 0.6566606148182975, + 0.935436492547746, + 0.8565211371234618, + 0.7611665112760233, + 0.7464257652061502, + 0.7447103300331596, + 0.8760706849017901, + 0.655598268504029, + 0.763924245207792, + 0.6968110989317995, + 0.7423659965017627, + 0.7798095794891423, + 0.6129669256534076, + 0.6487909644228288, + 0.5654137267304885, + 0.660761783293503, + 0.672814111478874, + 0.6838542116125045, + 0.727775615062963, + 0.5371297750933208, + 0.8014228585262403, + 0.7339998838426165, + 0.7969932333900025, + 0.690058907946193, + 0.48433055747969106, + 0.6037843426830061, + 0.7244222925467309, + 0.8875787778434154, + 0.5788706941107943, + 0.6216568231463081, + 0.6168005218504078, + 0.5980000969572092, + 0.5463496596023244, + 0.5098318897529464, + 0.45113561306567374, + 0.522861478141725, + 0.6864746120716165, + 0.5681750433808981, + 0.5523965562818072, + 0.5679026622056588, + 0.6272815279549535, + 0.6011299986277719, + 0.6817625856538897, + 0.6194691635514429, + 0.5513451912035588, + 0.5046404768709162, + 0.6640346425314445, + 0.5183651701841653, + 0.7403368726618775, + 0.5923526384129011, + 0.7065593234340783, + 0.6047826392733799, + 0.6090030370992913, + 0.5771694875612358, + 0.45546614546699127, + 0.7236808114024452, + 0.7207269376423169, + 0.5267354154620911, + 0.42323226499877054, + 0.5510284089260654, + 0.4453298599232897, + 0.446617536417457, + 0.4756562370562364, + 0.5177802318416048, + 0.6276054535376662, + 0.5018498444487648, + 0.6761252565236774, + 0.3237464042650297, + 0.6549457551438014, + 0.3690971572200479, + 0.6391712387939412, + 0.5649609986592183, + 0.38283138315900317, + 0.4257817221317649, + 0.550458461229224, + 0.2792598330097713, + 0.45302234860156093, + 0.36755873073991774, + 0.3327232998107015, + 0.345039170152595, + 0.3502269538547459, + 0.5357952594843848, + 0.8141129361282984, + 0.5614067362006055, + 0.3478683655767425, + 0.4104411733627386, + 0.6079598770468434, + 0.513210847847329, + 0.6041544651875546, + 0.409623008034501, + 0.42238031738763165, + 0.4645032349344555, + 0.5293281084510564, + 0.35891734884776466, + 0.5075839049484983, + 0.4841032068230547, + 0.4565202769495508, + 0.5825416170791765, + 0.51664894349641, + 0.3368777873587083, + 0.40944541967094145, + 0.28466206467002453, + 0.24581484664866468, + 0.3001140796021969, + 0.46354302946902187, + 0.46365178555664355, + 0.2906225441856867, + 0.48073287377475754, + 0.49283398585584176, + 0.4780692095465431, + 0.435630359132763, + 0.3381732630034698, + 0.5180694057906406, + 0.47656169770320245, + 0.3009627562396025, + 0.3802017879749106, + 0.35414495689240477, + 0.3945313431075284, + 0.4796656584606957, + 0.2725575573822439, + 0.5058606321180775, + 0.2816923282069514, + 0.036619809675041415, + 0.22959639236505175, + 0.39974360479655585, + 0.38812474438273437, + 0.3722919624359927, + 0.39773952020166947, + 0.3788313001719958, + 0.1948226205766206, + 0.28438283550527865, + 0.44866082703156446, + 0.30778771616343803, + 0.3096403116593651, + 0.3534591812342175, + 0.47609727725484974, + 0.4078405247002738, + 0.2601428464574026, + 0.17386038755899225, + 0.3427101003259272, + 0.4978226639835533, + 0.5124468660284467, + 0.3016339636634053, + 0.43168289004546634, + 0.435375647154569, + 0.45556738776095207, + 0.30278384087631244, + 0.19264216543898943, + 0.41247146834968107, + 0.32247101707653514, + 0.18048040238119775, + 0.19955136543927904, + 0.34983486671435704, + 0.3906227148514465, + 0.32018529294160586, + 0.25344174409171594, + 0.28529498783151136, + 0.3041100786545216, + 0.36523664730204, + 0.14994520989433607, + 0.2664026236628076, + 0.3367900023063629, + 0.2915075246653236, + 0.2979635374030499, + 0.2694793064587289, + 0.2005403622797548, + 0.16000872204087796, + 0.18629762920164195, + 0.37029078737617394, + 0.11041772165244756, + 0.35679550331798726, + 0.1978662553303876, + 0.39949921653238873, + 0.2644883969660365, + 0.22000112576017478, + 0.23660093252926812, + 0.14131112650757968, + 0.23269537085607944, + 0.4569898408133528, + 0.16508002929732205, + 0.27897224961827605, + 0.3360658236730244, + 0.04338796284897528, + 0.0779008927235717, + 0.1884047854367442, + 0.2731294692290955, + 0.1346233232029584, + 0.24358538240168387, + 0.2837853538096692, + 0.28344873284480315, + 0.15218857879670789, + 0.21565421030988588, + 0.11220262376988913, + 0.22715759346335765, + 0.04171009612154586, + 0.16297005052048907, + 0.17307227057429492, + 0.2555048646345902, + 0.38358805235564963, + 0.22137436609778588, + 0.11840469702220635, + 0.19708300414482077, + 0.18614529072618005, + 0.11865963319349772, + 0.2885330859822503, + 0.2392090251264876, + 0.2424875530800104, + 0.33242734837543875, + 0.04561506224080247, + 0.3002442599087067, + 0.14270656658048098, + 0.06749926255710686, + 0.10063830975271443, + 0.2694158872344268, + 0.19043569510348732, + 0.28754270342949667, + 0.24479852797277107, + 0.15994936501268672, + 0.4333918969610146, + 0.24958142269200667, + 0.16475501919894275, + 0.15966767611553984, + 0.3354767968077853, + 0.25052441290254096, + 0.17129883601804577, + 0.18840563490000936, + 0.07594653051859898, + 0.15475162734079126, + 0.0690344500807864, + 0.16762957946799148, + 0.2510303141887071, + 0.30890023137068495, + 0.10922058111069063, + 0.2188108112487605, + 0.26849657599729554, + 0.18039085926735698, + 0.13870536430691893, + 0.22702507461540194, + 0.2033920970840991, + 0.14867028742795468, + 0.26940822979144186, + 0.15189728062056784, + 0.025207496443330896, + 0.29063243623349333, + 0.03503599582723743, + 0.1377703457844736, + 0.07501355479735985, + 0.1812689612536526, + 0.30328534341650476, + 0.28886560772276304, + 0.1954901624329922, + 0.1473569349228125, + 0.15720415636778082, + 0.29130720285921907, + 0.2776348361186633, + 0.15507995764016408, + 0.27171057357140704, + 0.2193114249847284, + 0.21170787814822659, + 0.28752881516774165, + 0.19258807359679583, + 0.26278834751587693, + 0.149434009332173, + 0.2451600524531992, + 0.021695744440457437, + 0.11158581009965031, + 0.26459956546008234, + 0.1737822608239624, + 0.006153960136777797, + 0.13283764967566697, + 0.3827463638698647, + 0.17003302153319086, + 0.2286584541838577, + 0.15914985505816331, + 0.11853854383184953, + 0.08230271190284405, + 0.2175400436321677, + 0.07822075001161413, + 0.4008762035026294, + 0.1224362095149249, + 0.04480433007202342, + 0.1393798096420676, + 0.18471207499818995, + 0.2459173319159639, + 0.16268036650390316, + 0.16134882006838133, + 0.0843144768534161, + 0.1418539277694075, + 0.3035735061145914, + 0.2952971566794582, + 0.22294524172092975, + 0.025396235810643875, + 0.3164599592055044, + 0.10517235146921323, + -0.016089149377042478, + 0.20192639310175348 + ] + }, + { + "mode": "lines", + "name": "var2", + "type": "scatter", + "x": [ + "2019-01-01T00:02:42.000000000", + "2019-01-01T00:02:59.000000000", + "2019-01-01T00:04:03.000000000", + "2019-01-01T00:04:24.000000000", + "2019-01-01T00:05:47.000000000", + "2019-01-01T00:06:20.000000000", + "2019-01-01T00:06:54.000000000", + "2019-01-01T00:07:44.000000000", + "2019-01-01T00:07:47.000000000", + "2019-01-01T00:07:55.000000000", + "2019-01-01T00:11:11.000000000", + "2019-01-01T00:12:34.000000000", + "2019-01-01T00:14:15.000000000", + "2019-01-01T00:15:26.000000000", + "2019-01-01T00:15:55.000000000", + "2019-01-01T00:16:54.000000000", + "2019-01-01T00:17:26.000000000", + "2019-01-01T00:18:13.000000000", + "2019-01-01T00:18:32.000000000", + "2019-01-01T00:20:11.000000000", + "2019-01-01T00:20:40.000000000", + "2019-01-01T00:24:09.000000000", + "2019-01-01T00:24:38.000000000", + "2019-01-01T00:25:34.000000000", + "2019-01-01T00:26:16.000000000", + "2019-01-01T00:28:27.000000000", + "2019-01-01T00:28:42.000000000", + "2019-01-01T00:29:14.000000000", + "2019-01-01T00:32:11.000000000", + "2019-01-01T00:32:18.000000000", + "2019-01-01T00:32:45.000000000", + "2019-01-01T00:34:28.000000000", + "2019-01-01T00:34:36.000000000", + "2019-01-01T00:35:03.000000000", + "2019-01-01T00:35:18.000000000", + "2019-01-01T00:36:00.000000000", + "2019-01-01T00:36:17.000000000", + "2019-01-01T00:36:24.000000000", + "2019-01-01T00:38:59.000000000", + "2019-01-01T00:41:06.000000000", + "2019-01-01T00:41:33.000000000", + "2019-01-01T00:41:48.000000000", + "2019-01-01T00:44:17.000000000", + "2019-01-01T00:44:51.000000000", + "2019-01-01T00:44:56.000000000", + "2019-01-01T00:47:19.000000000", + "2019-01-01T00:47:28.000000000", + "2019-01-01T00:47:29.000000000", + "2019-01-01T00:47:47.000000000", + "2019-01-01T00:48:43.000000000", + "2019-01-01T00:49:34.000000000", + "2019-01-01T00:51:50.000000000", + "2019-01-01T00:52:27.000000000", + "2019-01-01T00:53:52.000000000", + "2019-01-01T00:54:55.000000000", + "2019-01-01T00:57:00.000000000", + "2019-01-01T00:57:40.000000000", + "2019-01-01T00:58:07.000000000", + "2019-01-01T01:00:33.000000000", + "2019-01-01T01:00:36.000000000", + "2019-01-01T01:00:59.000000000", + "2019-01-01T01:03:43.000000000", + "2019-01-01T01:04:12.000000000", + "2019-01-01T01:04:52.000000000", + "2019-01-01T01:05:42.000000000", + "2019-01-01T01:05:45.000000000", + "2019-01-01T01:07:39.000000000", + "2019-01-01T01:07:43.000000000", + "2019-01-01T01:10:13.000000000", + "2019-01-01T01:10:43.000000000", + "2019-01-01T01:11:03.000000000", + "2019-01-01T01:11:25.000000000", + "2019-01-01T01:12:01.000000000", + "2019-01-01T01:12:30.000000000", + "2019-01-01T01:15:29.000000000", + "2019-01-01T01:15:42.000000000", + "2019-01-01T01:16:23.000000000", + "2019-01-01T01:16:36.000000000", + "2019-01-01T01:18:40.000000000", + "2019-01-01T01:18:44.000000000", + "2019-01-01T01:21:30.000000000", + "2019-01-01T01:22:31.000000000", + "2019-01-01T01:23:29.000000000", + "2019-01-01T01:23:41.000000000", + "2019-01-01T01:27:51.000000000", + "2019-01-01T01:27:54.000000000", + "2019-01-01T01:27:58.000000000", + "2019-01-01T01:28:34.000000000", + "2019-01-01T01:29:07.000000000", + "2019-01-01T01:31:55.000000000", + "2019-01-01T01:32:20.000000000", + "2019-01-01T01:33:18.000000000", + "2019-01-01T01:34:22.000000000", + "2019-01-01T01:34:33.000000000", + "2019-01-01T01:35:06.000000000", + "2019-01-01T01:35:12.000000000", + "2019-01-01T01:36:18.000000000", + "2019-01-01T01:36:26.000000000", + "2019-01-01T01:38:28.000000000", + "2019-01-01T01:39:00.000000000", + "2019-01-01T01:39:53.000000000", + "2019-01-01T01:40:42.000000000", + "2019-01-01T01:42:50.000000000", + "2019-01-01T01:42:52.000000000", + "2019-01-01T01:43:40.000000000", + "2019-01-01T01:46:57.000000000", + "2019-01-01T01:47:56.000000000", + "2019-01-01T01:49:05.000000000", + "2019-01-01T01:49:08.000000000", + "2019-01-01T01:50:34.000000000", + "2019-01-01T01:51:35.000000000", + "2019-01-01T01:52:38.000000000", + "2019-01-01T01:52:48.000000000", + "2019-01-01T01:53:36.000000000", + "2019-01-01T01:55:22.000000000", + "2019-01-01T01:57:54.000000000", + "2019-01-01T01:58:37.000000000", + "2019-01-01T02:00:16.000000000", + "2019-01-01T02:00:30.000000000", + "2019-01-01T02:00:32.000000000", + "2019-01-01T02:01:51.000000000", + "2019-01-01T02:02:14.000000000", + "2019-01-01T02:02:49.000000000", + "2019-01-01T02:04:11.000000000", + "2019-01-01T02:06:21.000000000", + "2019-01-01T02:08:03.000000000", + "2019-01-01T02:08:26.000000000", + "2019-01-01T02:08:35.000000000", + "2019-01-01T02:09:18.000000000", + "2019-01-01T02:09:45.000000000", + "2019-01-01T02:10:01.000000000", + "2019-01-01T02:10:28.000000000", + "2019-01-01T02:10:50.000000000", + "2019-01-01T02:11:23.000000000", + "2019-01-01T02:12:37.000000000", + "2019-01-01T02:12:51.000000000", + "2019-01-01T02:13:07.000000000", + "2019-01-01T02:13:42.000000000", + "2019-01-01T02:18:18.000000000", + "2019-01-01T02:20:15.000000000", + "2019-01-01T02:20:58.000000000", + "2019-01-01T02:23:27.000000000", + "2019-01-01T02:24:09.000000000", + "2019-01-01T02:25:07.000000000", + "2019-01-01T02:25:45.000000000", + "2019-01-01T02:27:48.000000000", + "2019-01-01T02:30:26.000000000", + "2019-01-01T02:31:48.000000000", + "2019-01-01T02:32:34.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:33:18.000000000", + "2019-01-01T02:33:49.000000000", + "2019-01-01T02:36:02.000000000", + "2019-01-01T02:37:39.000000000", + "2019-01-01T02:38:55.000000000", + "2019-01-01T02:39:30.000000000", + "2019-01-01T02:39:33.000000000", + "2019-01-01T02:40:05.000000000", + "2019-01-01T02:40:54.000000000", + "2019-01-01T02:41:40.000000000", + "2019-01-01T02:41:49.000000000", + "2019-01-01T02:43:24.000000000", + "2019-01-01T02:44:04.000000000", + "2019-01-01T02:44:45.000000000", + "2019-01-01T02:44:48.000000000", + "2019-01-01T02:45:01.000000000", + "2019-01-01T02:48:17.000000000", + "2019-01-01T02:49:20.000000000", + "2019-01-01T02:49:50.000000000", + "2019-01-01T02:50:18.000000000", + "2019-01-01T02:50:31.000000000", + "2019-01-01T02:51:59.000000000", + "2019-01-01T02:52:13.000000000", + "2019-01-01T02:52:16.000000000", + "2019-01-01T02:53:10.000000000", + "2019-01-01T02:57:45.000000000", + "2019-01-01T02:57:47.000000000", + "2019-01-01T02:58:12.000000000", + "2019-01-01T02:59:06.000000000", + "2019-01-01T02:59:08.000000000", + "2019-01-01T03:00:16.000000000", + "2019-01-01T03:01:18.000000000", + "2019-01-01T03:02:31.000000000", + "2019-01-01T03:02:50.000000000", + "2019-01-01T03:05:15.000000000", + "2019-01-01T03:06:30.000000000", + "2019-01-01T03:06:57.000000000", + "2019-01-01T03:07:04.000000000", + "2019-01-01T03:07:17.000000000", + "2019-01-01T03:07:30.000000000", + "2019-01-01T03:08:42.000000000", + "2019-01-01T03:09:36.000000000", + "2019-01-01T03:11:54.000000000", + "2019-01-01T03:12:40.000000000", + "2019-01-01T03:14:09.000000000", + "2019-01-01T03:16:10.000000000", + "2019-01-01T03:18:31.000000000", + "2019-01-01T03:19:42.000000000", + "2019-01-01T03:24:27.000000000", + "2019-01-01T03:27:10.000000000", + "2019-01-01T03:27:13.000000000", + "2019-01-01T03:31:09.000000000", + "2019-01-01T03:31:33.000000000", + "2019-01-01T03:32:06.000000000", + "2019-01-01T03:36:55.000000000", + "2019-01-01T03:37:00.000000000", + "2019-01-01T03:38:47.000000000", + "2019-01-01T03:38:57.000000000", + "2019-01-01T03:39:12.000000000", + "2019-01-01T03:49:46.000000000", + "2019-01-01T03:50:20.000000000", + "2019-01-01T03:50:31.000000000", + "2019-01-01T03:50:39.000000000", + "2019-01-01T03:50:45.000000000", + "2019-01-01T03:52:18.000000000", + "2019-01-01T03:52:40.000000000", + "2019-01-01T03:54:13.000000000", + "2019-01-01T03:54:49.000000000", + "2019-01-01T03:55:12.000000000", + "2019-01-01T03:55:41.000000000", + "2019-01-01T03:57:07.000000000", + "2019-01-01T03:57:15.000000000", + "2019-01-01T03:57:18.000000000", + "2019-01-01T03:58:25.000000000", + "2019-01-01T04:01:58.000000000", + "2019-01-01T04:02:15.000000000", + "2019-01-01T04:03:13.000000000", + "2019-01-01T04:04:04.000000000", + "2019-01-01T04:08:12.000000000", + "2019-01-01T04:08:27.000000000", + "2019-01-01T04:09:00.000000000", + "2019-01-01T04:09:33.000000000", + "2019-01-01T04:10:57.000000000", + "2019-01-01T04:13:39.000000000", + "2019-01-01T04:14:50.000000000", + "2019-01-01T04:15:23.000000000", + "2019-01-01T04:17:45.000000000", + "2019-01-01T04:19:42.000000000", + "2019-01-01T04:20:28.000000000", + "2019-01-01T04:21:00.000000000", + "2019-01-01T04:21:26.000000000", + "2019-01-01T04:22:36.000000000", + "2019-01-01T04:24:07.000000000", + "2019-01-01T04:24:29.000000000", + "2019-01-01T04:25:17.000000000", + "2019-01-01T04:26:29.000000000", + "2019-01-01T04:27:18.000000000", + "2019-01-01T04:27:19.000000000", + "2019-01-01T04:28:14.000000000", + "2019-01-01T04:28:40.000000000", + "2019-01-01T04:30:07.000000000", + "2019-01-01T04:30:17.000000000", + "2019-01-01T04:30:41.000000000", + "2019-01-01T04:33:18.000000000", + "2019-01-01T04:34:49.000000000", + "2019-01-01T04:35:36.000000000", + "2019-01-01T04:35:47.000000000", + "2019-01-01T04:35:57.000000000", + "2019-01-01T04:36:05.000000000", + "2019-01-01T04:36:10.000000000", + "2019-01-01T04:36:22.000000000", + "2019-01-01T04:36:37.000000000", + "2019-01-01T04:38:44.000000000", + "2019-01-01T04:39:22.000000000", + "2019-01-01T04:39:34.000000000", + "2019-01-01T04:40:33.000000000", + "2019-01-01T04:40:38.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:42:22.000000000", + "2019-01-01T04:43:26.000000000", + "2019-01-01T04:44:02.000000000", + "2019-01-01T04:44:24.000000000", + "2019-01-01T04:44:52.000000000", + "2019-01-01T04:44:59.000000000", + "2019-01-01T04:46:34.000000000", + "2019-01-01T04:48:35.000000000", + "2019-01-01T04:49:28.000000000", + "2019-01-01T04:49:44.000000000", + "2019-01-01T04:49:58.000000000", + "2019-01-01T04:50:34.000000000", + "2019-01-01T04:53:00.000000000", + "2019-01-01T04:53:34.000000000", + "2019-01-01T04:55:24.000000000", + "2019-01-01T04:55:28.000000000", + "2019-01-01T04:55:29.000000000", + "2019-01-01T04:56:18.000000000", + "2019-01-01T04:57:06.000000000", + "2019-01-01T04:57:11.000000000", + "2019-01-01T05:00:55.000000000", + "2019-01-01T05:01:46.000000000", + "2019-01-01T05:02:42.000000000", + "2019-01-01T05:03:21.000000000", + "2019-01-01T05:04:16.000000000", + "2019-01-01T05:04:24.000000000", + "2019-01-01T05:10:08.000000000", + "2019-01-01T05:11:57.000000000", + "2019-01-01T05:14:53.000000000", + "2019-01-01T05:14:58.000000000", + "2019-01-01T05:19:08.000000000", + "2019-01-01T05:20:27.000000000", + "2019-01-01T05:21:05.000000000", + "2019-01-01T05:21:15.000000000", + "2019-01-01T05:21:33.000000000", + "2019-01-01T05:25:05.000000000", + "2019-01-01T05:25:10.000000000", + "2019-01-01T05:25:39.000000000", + "2019-01-01T05:25:45.000000000", + "2019-01-01T05:26:35.000000000", + "2019-01-01T05:27:41.000000000", + "2019-01-01T05:30:44.000000000", + "2019-01-01T05:35:30.000000000", + "2019-01-01T05:35:32.000000000", + "2019-01-01T05:36:03.000000000", + "2019-01-01T05:36:07.000000000", + "2019-01-01T05:37:12.000000000", + "2019-01-01T05:39:00.000000000", + "2019-01-01T05:39:04.000000000", + "2019-01-01T05:39:37.000000000", + "2019-01-01T05:40:39.000000000", + "2019-01-01T05:41:45.000000000", + "2019-01-01T05:43:52.000000000", + "2019-01-01T05:45:07.000000000", + "2019-01-01T05:46:13.000000000", + "2019-01-01T05:48:40.000000000", + "2019-01-01T05:48:44.000000000", + "2019-01-01T05:49:17.000000000", + "2019-01-01T05:50:05.000000000", + "2019-01-01T05:50:11.000000000", + "2019-01-01T05:50:16.000000000", + "2019-01-01T05:50:31.000000000", + "2019-01-01T05:51:45.000000000", + "2019-01-01T05:52:21.000000000", + "2019-01-01T05:53:11.000000000", + "2019-01-01T05:55:59.000000000", + "2019-01-01T05:56:12.000000000", + "2019-01-01T05:56:35.000000000", + "2019-01-01T05:57:20.000000000", + "2019-01-01T05:57:49.000000000", + "2019-01-01T05:58:57.000000000", + "2019-01-01T05:59:12.000000000", + "2019-01-01T06:00:20.000000000", + "2019-01-01T06:00:21.000000000", + "2019-01-01T06:01:00.000000000", + "2019-01-01T06:02:23.000000000", + "2019-01-01T06:02:34.000000000", + "2019-01-01T06:02:38.000000000", + "2019-01-01T06:03:49.000000000", + "2019-01-01T06:05:10.000000000", + "2019-01-01T06:05:30.000000000", + "2019-01-01T06:07:32.000000000", + "2019-01-01T06:08:10.000000000", + "2019-01-01T06:09:35.000000000", + "2019-01-01T06:12:25.000000000", + "2019-01-01T06:12:26.000000000", + "2019-01-01T06:12:56.000000000", + "2019-01-01T06:13:03.000000000", + "2019-01-01T06:15:09.000000000", + "2019-01-01T06:15:28.000000000", + "2019-01-01T06:15:53.000000000", + "2019-01-01T06:16:56.000000000", + "2019-01-01T06:17:39.000000000", + "2019-01-01T06:18:20.000000000", + "2019-01-01T06:18:27.000000000", + "2019-01-01T06:18:56.000000000", + "2019-01-01T06:19:23.000000000", + "2019-01-01T06:19:35.000000000", + "2019-01-01T06:19:56.000000000", + "2019-01-01T06:20:07.000000000", + "2019-01-01T06:21:21.000000000", + "2019-01-01T06:21:26.000000000", + "2019-01-01T06:22:09.000000000", + "2019-01-01T06:23:56.000000000", + "2019-01-01T06:24:36.000000000", + "2019-01-01T06:25:11.000000000", + "2019-01-01T06:26:24.000000000", + "2019-01-01T06:27:47.000000000", + "2019-01-01T06:28:18.000000000", + "2019-01-01T06:29:14.000000000", + "2019-01-01T06:29:22.000000000", + "2019-01-01T06:30:42.000000000", + "2019-01-01T06:31:47.000000000", + "2019-01-01T06:31:51.000000000", + "2019-01-01T06:31:54.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:35:17.000000000", + "2019-01-01T06:35:30.000000000", + "2019-01-01T06:38:02.000000000", + "2019-01-01T06:39:21.000000000", + "2019-01-01T06:39:39.000000000", + "2019-01-01T06:40:15.000000000", + "2019-01-01T06:40:29.000000000", + "2019-01-01T06:41:55.000000000", + "2019-01-01T06:43:05.000000000", + "2019-01-01T06:43:25.000000000", + "2019-01-01T06:43:28.000000000", + "2019-01-01T06:45:16.000000000", + "2019-01-01T06:46:34.000000000", + "2019-01-01T06:47:08.000000000", + "2019-01-01T06:50:42.000000000", + "2019-01-01T06:51:23.000000000", + "2019-01-01T06:52:20.000000000", + "2019-01-01T06:52:24.000000000", + "2019-01-01T06:52:44.000000000", + "2019-01-01T06:52:47.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:55:08.000000000", + "2019-01-01T06:55:49.000000000", + "2019-01-01T06:56:28.000000000", + "2019-01-01T06:56:33.000000000", + "2019-01-01T06:57:51.000000000", + "2019-01-01T07:00:11.000000000", + "2019-01-01T07:01:31.000000000", + "2019-01-01T07:02:30.000000000", + "2019-01-01T07:04:06.000000000", + "2019-01-01T07:04:31.000000000", + "2019-01-01T07:05:15.000000000", + "2019-01-01T07:05:27.000000000", + "2019-01-01T07:05:49.000000000", + "2019-01-01T07:06:17.000000000", + "2019-01-01T07:06:26.000000000", + "2019-01-01T07:07:31.000000000", + "2019-01-01T07:09:21.000000000", + "2019-01-01T07:12:19.000000000", + "2019-01-01T07:12:26.000000000", + "2019-01-01T07:13:56.000000000", + "2019-01-01T07:15:03.000000000", + "2019-01-01T07:17:28.000000000", + "2019-01-01T07:18:04.000000000", + "2019-01-01T07:18:56.000000000", + "2019-01-01T07:19:21.000000000", + "2019-01-01T07:19:46.000000000", + "2019-01-01T07:20:31.000000000", + "2019-01-01T07:21:47.000000000", + "2019-01-01T07:24:25.000000000", + "2019-01-01T07:25:25.000000000", + "2019-01-01T07:25:42.000000000", + "2019-01-01T07:27:45.000000000", + "2019-01-01T07:30:45.000000000", + "2019-01-01T07:31:25.000000000", + "2019-01-01T07:31:33.000000000", + "2019-01-01T07:33:28.000000000", + "2019-01-01T07:35:13.000000000", + "2019-01-01T07:37:16.000000000", + "2019-01-01T07:40:34.000000000", + "2019-01-01T07:40:45.000000000", + "2019-01-01T07:40:56.000000000", + "2019-01-01T07:40:59.000000000", + "2019-01-01T07:41:00.000000000", + "2019-01-01T07:41:59.000000000", + "2019-01-01T07:42:38.000000000", + "2019-01-01T07:42:48.000000000", + "2019-01-01T07:42:52.000000000", + "2019-01-01T07:43:41.000000000", + "2019-01-01T07:44:49.000000000", + "2019-01-01T07:46:28.000000000", + "2019-01-01T07:48:34.000000000", + "2019-01-01T07:52:21.000000000", + "2019-01-01T07:52:59.000000000", + "2019-01-01T07:54:07.000000000", + "2019-01-01T07:55:16.000000000", + "2019-01-01T07:57:04.000000000", + "2019-01-01T07:58:08.000000000", + "2019-01-01T07:58:18.000000000", + "2019-01-01T07:58:55.000000000", + "2019-01-01T08:00:30.000000000", + "2019-01-01T08:04:08.000000000", + "2019-01-01T08:04:46.000000000", + "2019-01-01T08:05:49.000000000", + "2019-01-01T08:06:01.000000000", + "2019-01-01T08:06:54.000000000", + "2019-01-01T08:08:15.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:11:33.000000000", + "2019-01-01T08:11:47.000000000", + "2019-01-01T08:12:03.000000000", + "2019-01-01T08:12:53.000000000", + "2019-01-01T08:13:17.000000000", + "2019-01-01T08:13:31.000000000", + "2019-01-01T08:14:10.000000000", + "2019-01-01T08:15:24.000000000", + "2019-01-01T08:16:02.000000000", + "2019-01-01T08:16:30.000000000", + "2019-01-01T08:18:19.000000000", + "2019-01-01T08:18:51.000000000", + "2019-01-01T08:19:43.000000000", + "2019-01-01T08:20:02.000000000", + "2019-01-01T08:23:31.000000000", + "2019-01-01T08:24:37.000000000", + "2019-01-01T08:25:06.000000000", + "2019-01-01T08:25:19.000000000", + "2019-01-01T08:26:39.000000000", + "2019-01-01T08:27:52.000000000", + "2019-01-01T08:28:57.000000000", + "2019-01-01T08:29:44.000000000", + "2019-01-01T08:31:48.000000000", + "2019-01-01T08:32:26.000000000", + "2019-01-01T08:33:39.000000000", + "2019-01-01T08:34:11.000000000", + "2019-01-01T08:34:22.000000000", + "2019-01-01T08:35:40.000000000", + "2019-01-01T08:36:29.000000000", + "2019-01-01T08:37:39.000000000", + "2019-01-01T08:38:36.000000000", + "2019-01-01T08:40:08.000000000", + "2019-01-01T08:42:51.000000000", + "2019-01-01T08:43:20.000000000", + "2019-01-01T08:44:20.000000000", + "2019-01-01T08:44:52.000000000", + "2019-01-01T08:45:35.000000000", + "2019-01-01T08:49:10.000000000", + "2019-01-01T08:49:34.000000000", + "2019-01-01T08:49:36.000000000", + "2019-01-01T08:49:56.000000000", + "2019-01-01T08:50:29.000000000", + "2019-01-01T08:51:09.000000000", + "2019-01-01T08:51:37.000000000", + "2019-01-01T08:52:25.000000000", + "2019-01-01T08:52:39.000000000", + "2019-01-01T08:53:09.000000000", + "2019-01-01T08:55:15.000000000", + "2019-01-01T08:57:16.000000000", + "2019-01-01T08:57:29.000000000", + "2019-01-01T08:57:56.000000000", + "2019-01-01T08:59:55.000000000", + "2019-01-01T09:00:54.000000000", + "2019-01-01T09:01:24.000000000", + "2019-01-01T09:01:29.000000000", + "2019-01-01T09:02:12.000000000", + "2019-01-01T09:03:24.000000000", + "2019-01-01T09:04:03.000000000", + "2019-01-01T09:04:55.000000000", + "2019-01-01T09:05:05.000000000", + "2019-01-01T09:05:18.000000000", + "2019-01-01T09:06:33.000000000", + "2019-01-01T09:10:15.000000000", + "2019-01-01T09:13:49.000000000", + "2019-01-01T09:14:59.000000000", + "2019-01-01T09:16:48.000000000", + "2019-01-01T09:17:01.000000000", + "2019-01-01T09:17:06.000000000", + "2019-01-01T09:18:34.000000000", + "2019-01-01T09:19:35.000000000", + "2019-01-01T09:20:33.000000000", + "2019-01-01T09:20:53.000000000", + "2019-01-01T09:21:43.000000000", + "2019-01-01T09:24:16.000000000", + "2019-01-01T09:25:05.000000000", + "2019-01-01T09:25:44.000000000", + "2019-01-01T09:26:30.000000000", + "2019-01-01T09:27:13.000000000", + "2019-01-01T09:30:16.000000000", + "2019-01-01T09:30:19.000000000", + "2019-01-01T09:31:42.000000000", + "2019-01-01T09:32:19.000000000", + "2019-01-01T09:33:27.000000000", + "2019-01-01T09:33:44.000000000", + "2019-01-01T09:36:24.000000000", + "2019-01-01T09:37:53.000000000", + "2019-01-01T09:42:07.000000000", + "2019-01-01T09:43:32.000000000", + "2019-01-01T09:43:38.000000000", + "2019-01-01T09:44:02.000000000", + "2019-01-01T09:44:10.000000000", + "2019-01-01T09:44:55.000000000", + "2019-01-01T09:45:05.000000000", + "2019-01-01T09:45:12.000000000", + "2019-01-01T09:45:26.000000000", + "2019-01-01T09:45:47.000000000", + "2019-01-01T09:45:55.000000000", + "2019-01-01T09:49:15.000000000", + "2019-01-01T09:49:27.000000000", + "2019-01-01T09:50:02.000000000", + "2019-01-01T09:53:04.000000000", + "2019-01-01T09:53:19.000000000", + "2019-01-01T09:55:17.000000000", + "2019-01-01T09:56:17.000000000", + "2019-01-01T09:57:18.000000000", + "2019-01-01T09:59:07.000000000", + "2019-01-01T09:59:32.000000000", + "2019-01-01T10:00:22.000000000", + "2019-01-01T10:00:43.000000000", + "2019-01-01T10:01:05.000000000", + "2019-01-01T10:01:11.000000000", + "2019-01-01T10:02:19.000000000", + "2019-01-01T10:02:34.000000000", + "2019-01-01T10:03:22.000000000", + "2019-01-01T10:05:03.000000000", + "2019-01-01T10:05:16.000000000", + "2019-01-01T10:06:34.000000000", + "2019-01-01T10:07:02.000000000", + "2019-01-01T10:07:34.000000000", + "2019-01-01T10:07:48.000000000", + "2019-01-01T10:09:55.000000000", + "2019-01-01T10:11:45.000000000", + "2019-01-01T10:11:55.000000000", + "2019-01-01T10:13:39.000000000", + "2019-01-01T10:14:02.000000000", + "2019-01-01T10:14:28.000000000", + "2019-01-01T10:14:42.000000000", + "2019-01-01T10:15:32.000000000", + "2019-01-01T10:16:13.000000000", + "2019-01-01T10:16:48.000000000", + "2019-01-01T10:19:00.000000000", + "2019-01-01T10:20:20.000000000", + "2019-01-01T10:20:21.000000000", + "2019-01-01T10:23:57.000000000", + "2019-01-01T10:24:28.000000000", + "2019-01-01T10:24:37.000000000", + "2019-01-01T10:24:44.000000000", + "2019-01-01T10:25:54.000000000", + "2019-01-01T10:26:21.000000000", + "2019-01-01T10:27:11.000000000", + "2019-01-01T10:28:30.000000000", + "2019-01-01T10:28:45.000000000", + "2019-01-01T10:30:43.000000000", + "2019-01-01T10:30:49.000000000", + "2019-01-01T10:31:03.000000000", + "2019-01-01T10:31:15.000000000", + "2019-01-01T10:31:36.000000000", + "2019-01-01T10:33:12.000000000", + "2019-01-01T10:33:57.000000000", + "2019-01-01T10:34:00.000000000", + "2019-01-01T10:35:14.000000000", + "2019-01-01T10:36:35.000000000", + "2019-01-01T10:39:36.000000000", + "2019-01-01T10:40:55.000000000", + "2019-01-01T10:41:41.000000000", + "2019-01-01T10:43:05.000000000", + "2019-01-01T10:44:02.000000000", + "2019-01-01T10:44:08.000000000", + "2019-01-01T10:44:54.000000000", + "2019-01-01T10:45:19.000000000", + "2019-01-01T10:46:03.000000000", + "2019-01-01T10:48:55.000000000", + "2019-01-01T10:50:58.000000000", + "2019-01-01T10:52:13.000000000", + "2019-01-01T10:52:16.000000000", + "2019-01-01T10:53:07.000000000", + "2019-01-01T10:53:48.000000000", + "2019-01-01T10:56:09.000000000", + "2019-01-01T10:58:49.000000000", + "2019-01-01T11:00:22.000000000", + "2019-01-01T11:01:43.000000000", + "2019-01-01T11:02:27.000000000", + "2019-01-01T11:03:03.000000000", + "2019-01-01T11:07:06.000000000", + "2019-01-01T11:07:10.000000000", + "2019-01-01T11:07:25.000000000", + "2019-01-01T11:08:05.000000000", + "2019-01-01T11:09:36.000000000", + "2019-01-01T11:09:49.000000000", + "2019-01-01T11:10:16.000000000", + "2019-01-01T11:10:40.000000000", + "2019-01-01T11:12:01.000000000", + "2019-01-01T11:12:32.000000000", + "2019-01-01T11:15:09.000000000", + "2019-01-01T11:15:12.000000000", + "2019-01-01T11:15:25.000000000", + "2019-01-01T11:17:29.000000000", + "2019-01-01T11:17:36.000000000", + "2019-01-01T11:19:01.000000000", + "2019-01-01T11:19:02.000000000", + "2019-01-01T11:19:14.000000000", + "2019-01-01T11:21:30.000000000", + "2019-01-01T11:24:46.000000000", + "2019-01-01T11:27:17.000000000", + "2019-01-01T11:28:21.000000000", + "2019-01-01T11:29:12.000000000", + "2019-01-01T11:34:18.000000000", + "2019-01-01T11:34:31.000000000", + "2019-01-01T11:34:40.000000000", + "2019-01-01T11:35:04.000000000", + "2019-01-01T11:35:38.000000000", + "2019-01-01T11:36:31.000000000", + "2019-01-01T11:37:43.000000000", + "2019-01-01T11:38:29.000000000", + "2019-01-01T11:38:36.000000000", + "2019-01-01T11:39:09.000000000", + "2019-01-01T11:39:12.000000000", + "2019-01-01T11:40:07.000000000", + "2019-01-01T11:41:16.000000000", + "2019-01-01T11:42:45.000000000", + "2019-01-01T11:46:21.000000000", + "2019-01-01T11:47:04.000000000", + "2019-01-01T11:47:36.000000000", + "2019-01-01T11:48:19.000000000", + "2019-01-01T11:49:17.000000000", + "2019-01-01T11:49:18.000000000", + "2019-01-01T11:50:06.000000000", + "2019-01-01T11:53:01.000000000", + "2019-01-01T11:55:32.000000000", + "2019-01-01T11:56:24.000000000", + "2019-01-01T11:57:09.000000000", + "2019-01-01T11:58:11.000000000", + "2019-01-01T11:59:07.000000000", + "2019-01-01T12:00:23.000000000", + "2019-01-01T12:00:57.000000000", + "2019-01-01T12:01:02.000000000", + "2019-01-01T12:02:26.000000000", + "2019-01-01T12:03:34.000000000", + "2019-01-01T12:03:57.000000000", + "2019-01-01T12:04:16.000000000", + "2019-01-01T12:05:13.000000000", + "2019-01-01T12:05:14.000000000", + "2019-01-01T12:05:31.000000000", + "2019-01-01T12:06:43.000000000", + "2019-01-01T12:07:00.000000000", + "2019-01-01T12:07:30.000000000", + "2019-01-01T12:08:54.000000000", + "2019-01-01T12:10:19.000000000", + "2019-01-01T12:10:38.000000000", + "2019-01-01T12:13:42.000000000", + "2019-01-01T12:16:07.000000000", + "2019-01-01T12:16:40.000000000", + "2019-01-01T12:17:41.000000000", + "2019-01-01T12:19:36.000000000", + "2019-01-01T12:20:09.000000000", + "2019-01-01T12:21:43.000000000", + "2019-01-01T12:23:44.000000000", + "2019-01-01T12:24:01.000000000", + "2019-01-01T12:24:54.000000000", + "2019-01-01T12:25:03.000000000", + "2019-01-01T12:25:14.000000000", + "2019-01-01T12:27:02.000000000", + "2019-01-01T12:27:04.000000000", + "2019-01-01T12:27:05.000000000", + "2019-01-01T12:28:35.000000000", + "2019-01-01T12:30:16.000000000", + "2019-01-01T12:30:28.000000000", + "2019-01-01T12:31:24.000000000", + "2019-01-01T12:31:56.000000000", + "2019-01-01T12:32:56.000000000", + "2019-01-01T12:33:10.000000000", + "2019-01-01T12:33:13.000000000", + "2019-01-01T12:33:50.000000000", + "2019-01-01T12:33:52.000000000", + "2019-01-01T12:34:42.000000000", + "2019-01-01T12:34:53.000000000", + "2019-01-01T12:34:55.000000000", + "2019-01-01T12:37:05.000000000", + "2019-01-01T12:37:09.000000000", + "2019-01-01T12:37:18.000000000", + "2019-01-01T12:37:20.000000000", + "2019-01-01T12:38:21.000000000", + "2019-01-01T12:39:44.000000000", + "2019-01-01T12:41:04.000000000", + "2019-01-01T12:41:10.000000000", + "2019-01-01T12:42:13.000000000", + "2019-01-01T12:44:45.000000000", + "2019-01-01T12:45:49.000000000", + "2019-01-01T12:46:05.000000000", + "2019-01-01T12:47:29.000000000", + "2019-01-01T12:49:37.000000000", + "2019-01-01T12:49:46.000000000", + "2019-01-01T12:54:47.000000000", + "2019-01-01T12:55:29.000000000", + "2019-01-01T12:55:33.000000000", + "2019-01-01T12:56:29.000000000", + "2019-01-01T12:57:37.000000000", + "2019-01-01T12:58:24.000000000", + "2019-01-01T12:58:40.000000000", + "2019-01-01T12:59:24.000000000", + "2019-01-01T12:59:40.000000000", + "2019-01-01T13:03:16.000000000", + "2019-01-01T13:03:44.000000000", + "2019-01-01T13:03:48.000000000", + "2019-01-01T13:05:09.000000000", + "2019-01-01T13:07:52.000000000", + "2019-01-01T13:07:57.000000000", + "2019-01-01T13:09:20.000000000", + "2019-01-01T13:10:52.000000000", + "2019-01-01T13:11:08.000000000", + "2019-01-01T13:11:47.000000000", + "2019-01-01T13:12:00.000000000", + "2019-01-01T13:13:27.000000000", + "2019-01-01T13:14:00.000000000", + "2019-01-01T13:14:59.000000000", + "2019-01-01T13:15:00.000000000", + "2019-01-01T13:15:35.000000000", + "2019-01-01T13:16:56.000000000", + "2019-01-01T13:17:37.000000000", + "2019-01-01T13:19:10.000000000", + "2019-01-01T13:21:30.000000000", + "2019-01-01T13:25:09.000000000", + "2019-01-01T13:28:55.000000000", + "2019-01-01T13:30:52.000000000", + "2019-01-01T13:34:22.000000000", + "2019-01-01T13:34:53.000000000", + "2019-01-01T13:35:13.000000000", + "2019-01-01T13:35:42.000000000", + "2019-01-01T13:40:21.000000000", + "2019-01-01T13:40:27.000000000", + "2019-01-01T13:42:03.000000000", + "2019-01-01T13:43:09.000000000", + "2019-01-01T13:46:19.000000000", + "2019-01-01T13:47:09.000000000", + "2019-01-01T13:48:53.000000000", + "2019-01-01T13:48:57.000000000", + "2019-01-01T13:49:14.000000000", + "2019-01-01T13:50:03.000000000", + "2019-01-01T13:50:09.000000000", + "2019-01-01T13:50:51.000000000", + "2019-01-01T13:53:15.000000000", + "2019-01-01T13:54:31.000000000", + "2019-01-01T13:56:40.000000000", + "2019-01-01T13:56:51.000000000", + "2019-01-01T13:57:32.000000000", + "2019-01-01T13:59:12.000000000", + "2019-01-01T13:59:16.000000000", + "2019-01-01T13:59:27.000000000", + "2019-01-01T13:59:34.000000000", + "2019-01-01T14:00:18.000000000", + "2019-01-01T14:01:14.000000000", + "2019-01-01T14:02:10.000000000", + "2019-01-01T14:03:06.000000000", + "2019-01-01T14:03:53.000000000", + "2019-01-01T14:04:35.000000000", + "2019-01-01T14:04:51.000000000", + "2019-01-01T14:05:58.000000000", + "2019-01-01T14:08:36.000000000", + "2019-01-01T14:09:56.000000000", + "2019-01-01T14:10:53.000000000", + "2019-01-01T14:15:32.000000000", + "2019-01-01T14:16:13.000000000", + "2019-01-01T14:17:12.000000000", + "2019-01-01T14:18:24.000000000", + "2019-01-01T14:19:59.000000000", + "2019-01-01T14:22:21.000000000", + "2019-01-01T14:24:27.000000000", + "2019-01-01T14:25:43.000000000", + "2019-01-01T14:26:23.000000000", + "2019-01-01T14:26:24.000000000", + "2019-01-01T14:28:27.000000000", + "2019-01-01T14:28:55.000000000", + "2019-01-01T14:30:54.000000000", + "2019-01-01T14:32:53.000000000", + "2019-01-01T14:34:57.000000000", + "2019-01-01T14:35:39.000000000", + "2019-01-01T14:36:17.000000000", + "2019-01-01T14:36:44.000000000", + "2019-01-01T14:38:18.000000000", + "2019-01-01T14:38:32.000000000", + "2019-01-01T14:38:56.000000000", + "2019-01-01T14:38:58.000000000", + "2019-01-01T14:39:00.000000000", + "2019-01-01T14:40:20.000000000", + "2019-01-01T14:40:29.000000000", + "2019-01-01T14:40:51.000000000", + "2019-01-01T14:41:42.000000000", + "2019-01-01T14:42:58.000000000", + "2019-01-01T14:44:22.000000000", + "2019-01-01T14:44:30.000000000", + "2019-01-01T14:46:14.000000000", + "2019-01-01T14:47:00.000000000", + "2019-01-01T14:47:13.000000000", + "2019-01-01T14:47:25.000000000", + "2019-01-01T14:47:57.000000000", + "2019-01-01T14:48:48.000000000", + "2019-01-01T14:49:06.000000000", + "2019-01-01T14:49:08.000000000", + "2019-01-01T14:50:36.000000000", + "2019-01-01T14:52:05.000000000", + "2019-01-01T14:53:49.000000000", + "2019-01-01T14:54:06.000000000", + "2019-01-01T14:56:23.000000000", + "2019-01-01T14:56:42.000000000", + "2019-01-01T14:57:36.000000000", + "2019-01-01T14:57:43.000000000", + "2019-01-01T14:57:57.000000000", + "2019-01-01T14:58:03.000000000", + "2019-01-01T14:59:25.000000000", + "2019-01-01T15:00:00.000000000", + "2019-01-01T15:00:24.000000000", + "2019-01-01T15:01:28.000000000", + "2019-01-01T15:02:12.000000000", + "2019-01-01T15:04:11.000000000", + "2019-01-01T15:05:10.000000000", + "2019-01-01T15:07:47.000000000", + "2019-01-01T15:08:54.000000000", + "2019-01-01T15:09:08.000000000", + "2019-01-01T15:09:09.000000000", + "2019-01-01T15:09:35.000000000", + "2019-01-01T15:13:11.000000000", + "2019-01-01T15:13:13.000000000", + "2019-01-01T15:14:57.000000000", + "2019-01-01T15:16:27.000000000", + "2019-01-01T15:16:41.000000000", + "2019-01-01T15:18:36.000000000", + "2019-01-01T15:19:31.000000000", + "2019-01-01T15:20:11.000000000", + "2019-01-01T15:20:17.000000000", + "2019-01-01T15:20:44.000000000", + "2019-01-01T15:20:58.000000000", + "2019-01-01T15:21:58.000000000", + "2019-01-01T15:23:26.000000000", + "2019-01-01T15:24:24.000000000", + "2019-01-01T15:25:49.000000000", + "2019-01-01T15:29:16.000000000", + "2019-01-01T15:29:40.000000000", + "2019-01-01T15:30:14.000000000", + "2019-01-01T15:30:31.000000000", + "2019-01-01T15:30:39.000000000", + "2019-01-01T15:31:13.000000000", + "2019-01-01T15:31:30.000000000", + "2019-01-01T15:33:14.000000000", + "2019-01-01T15:33:17.000000000", + "2019-01-01T15:33:36.000000000", + "2019-01-01T15:36:46.000000000", + "2019-01-01T15:39:05.000000000", + "2019-01-01T15:39:07.000000000", + "2019-01-01T15:40:16.000000000", + "2019-01-01T15:40:52.000000000", + "2019-01-01T15:41:25.000000000", + "2019-01-01T15:41:44.000000000", + "2019-01-01T15:42:03.000000000", + "2019-01-01T15:44:27.000000000", + "2019-01-01T15:45:23.000000000", + "2019-01-01T15:45:33.000000000", + "2019-01-01T15:45:59.000000000", + "2019-01-01T15:47:36.000000000", + "2019-01-01T15:49:06.000000000", + "2019-01-01T15:49:37.000000000", + "2019-01-01T15:49:48.000000000", + "2019-01-01T15:50:04.000000000", + "2019-01-01T15:50:57.000000000", + "2019-01-01T15:51:18.000000000", + "2019-01-01T15:53:14.000000000", + "2019-01-01T15:53:45.000000000", + "2019-01-01T15:54:16.000000000", + "2019-01-01T15:55:00.000000000", + "2019-01-01T15:56:21.000000000", + "2019-01-01T15:56:46.000000000", + "2019-01-01T15:59:39.000000000", + "2019-01-01T15:59:56.000000000", + "2019-01-01T16:00:29.000000000", + "2019-01-01T16:02:27.000000000", + "2019-01-01T16:05:10.000000000", + "2019-01-01T16:07:52.000000000", + "2019-01-01T16:09:14.000000000", + "2019-01-01T16:11:39.000000000", + "2019-01-01T16:11:45.000000000", + "2019-01-01T16:12:55.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:15:44.000000000", + "2019-01-01T16:16:14.000000000", + "2019-01-01T16:17:53.000000000", + "2019-01-01T16:19:16.000000000", + "2019-01-01T16:19:27.000000000", + "2019-01-01T16:20:09.000000000", + "2019-01-01T16:20:35.000000000", + "2019-01-01T16:21:53.000000000", + "2019-01-01T16:22:55.000000000", + "2019-01-01T16:22:56.000000000", + "2019-01-01T16:23:03.000000000", + "2019-01-01T16:23:59.000000000", + "2019-01-01T16:24:08.000000000", + "2019-01-01T16:27:49.000000000", + "2019-01-01T16:30:02.000000000", + "2019-01-01T16:30:05.000000000", + "2019-01-01T16:30:21.000000000", + "2019-01-01T16:31:28.000000000", + "2019-01-01T16:31:32.000000000", + "2019-01-01T16:31:35.000000000", + "2019-01-01T16:33:36.000000000", + "2019-01-01T16:34:17.000000000", + "2019-01-01T16:35:13.000000000", + "2019-01-01T16:35:37.000000000", + "2019-01-01T16:37:25.000000000", + "2019-01-01T16:38:49.000000000", + "2019-01-01T16:40:37.000000000", + "2019-01-01T16:41:02.000000000", + "2019-01-01T16:42:07.000000000", + "2019-01-01T16:42:23.000000000", + "2019-01-01T16:42:34.000000000", + "2019-01-01T16:44:40.000000000", + "2019-01-01T16:49:09.000000000", + "2019-01-01T16:49:51.000000000", + "2019-01-01T16:50:15.000000000", + "2019-01-01T16:50:57.000000000", + "2019-01-01T16:52:39.000000000", + "2019-01-01T16:55:17.000000000", + "2019-01-01T16:55:32.000000000", + "2019-01-01T16:56:48.000000000", + "2019-01-01T16:58:06.000000000", + "2019-01-01T16:58:32.000000000", + "2019-01-01T16:59:18.000000000", + "2019-01-01T17:02:04.000000000", + "2019-01-01T17:02:39.000000000", + "2019-01-01T17:02:51.000000000", + "2019-01-01T17:03:15.000000000", + "2019-01-01T17:03:18.000000000", + "2019-01-01T17:04:25.000000000", + "2019-01-01T17:05:41.000000000", + "2019-01-01T17:06:44.000000000", + "2019-01-01T17:07:03.000000000", + "2019-01-01T17:07:08.000000000", + "2019-01-01T17:07:36.000000000", + "2019-01-01T17:09:05.000000000", + "2019-01-01T17:09:26.000000000", + "2019-01-01T17:09:43.000000000", + "2019-01-01T17:10:19.000000000", + "2019-01-01T17:10:36.000000000", + "2019-01-01T17:11:15.000000000", + "2019-01-01T17:11:23.000000000", + "2019-01-01T17:13:22.000000000", + "2019-01-01T17:13:47.000000000", + "2019-01-01T17:16:35.000000000", + "2019-01-01T17:17:39.000000000", + "2019-01-01T17:17:49.000000000", + "2019-01-01T17:20:36.000000000", + "2019-01-01T17:20:47.000000000", + "2019-01-01T17:21:11.000000000", + "2019-01-01T17:21:13.000000000", + "2019-01-01T17:22:58.000000000", + "2019-01-01T17:23:16.000000000", + "2019-01-01T17:25:10.000000000", + "2019-01-01T17:26:20.000000000", + "2019-01-01T17:26:47.000000000", + "2019-01-01T17:27:04.000000000", + "2019-01-01T17:27:33.000000000", + "2019-01-01T17:30:22.000000000", + "2019-01-01T17:30:46.000000000", + "2019-01-01T17:30:47.000000000", + "2019-01-01T17:30:52.000000000", + "2019-01-01T17:31:26.000000000", + "2019-01-01T17:34:21.000000000", + "2019-01-01T17:35:56.000000000", + "2019-01-01T17:37:02.000000000", + "2019-01-01T17:37:03.000000000", + "2019-01-01T17:39:10.000000000", + "2019-01-01T17:39:32.000000000", + "2019-01-01T17:39:34.000000000", + "2019-01-01T17:40:20.000000000", + "2019-01-01T17:40:49.000000000", + "2019-01-01T17:40:59.000000000", + "2019-01-01T17:41:25.000000000", + "2019-01-01T17:42:05.000000000", + "2019-01-01T17:45:43.000000000", + "2019-01-01T17:46:31.000000000", + "2019-01-01T17:46:37.000000000", + "2019-01-01T17:47:33.000000000", + "2019-01-01T17:48:28.000000000", + "2019-01-01T17:49:41.000000000", + "2019-01-01T17:52:15.000000000", + "2019-01-01T17:56:05.000000000", + "2019-01-01T17:56:17.000000000", + "2019-01-01T17:56:31.000000000", + "2019-01-01T17:58:54.000000000", + "2019-01-01T18:00:19.000000000", + "2019-01-01T18:02:10.000000000", + "2019-01-01T18:03:20.000000000", + "2019-01-01T18:03:49.000000000", + "2019-01-01T18:05:11.000000000", + "2019-01-01T18:05:46.000000000", + "2019-01-01T18:06:17.000000000", + "2019-01-01T18:06:51.000000000", + "2019-01-01T18:07:38.000000000", + "2019-01-01T18:08:10.000000000", + "2019-01-01T18:09:03.000000000", + "2019-01-01T18:09:24.000000000", + "2019-01-01T18:09:37.000000000", + "2019-01-01T18:10:36.000000000", + "2019-01-01T18:12:07.000000000", + "2019-01-01T18:12:55.000000000", + "2019-01-01T18:15:10.000000000", + "2019-01-01T18:15:42.000000000", + "2019-01-01T18:15:46.000000000", + "2019-01-01T18:17:20.000000000", + "2019-01-01T18:17:57.000000000", + "2019-01-01T18:19:35.000000000", + "2019-01-01T18:20:10.000000000", + "2019-01-01T18:21:48.000000000", + "2019-01-01T18:21:54.000000000", + "2019-01-01T18:22:14.000000000", + "2019-01-01T18:24:03.000000000", + "2019-01-01T18:25:15.000000000", + "2019-01-01T18:27:25.000000000", + "2019-01-01T18:28:59.000000000", + "2019-01-01T18:30:11.000000000", + "2019-01-01T18:32:19.000000000", + "2019-01-01T18:33:30.000000000", + "2019-01-01T18:33:35.000000000", + "2019-01-01T18:35:05.000000000", + "2019-01-01T18:35:23.000000000", + "2019-01-01T18:36:10.000000000", + "2019-01-01T18:36:40.000000000", + "2019-01-01T18:36:54.000000000", + "2019-01-01T18:37:16.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:49.000000000", + "2019-01-01T18:42:03.000000000", + "2019-01-01T18:43:20.000000000", + "2019-01-01T18:43:26.000000000", + "2019-01-01T18:43:51.000000000", + "2019-01-01T18:45:00.000000000", + "2019-01-01T18:48:05.000000000", + "2019-01-01T18:48:53.000000000", + "2019-01-01T18:49:27.000000000", + "2019-01-01T18:50:05.000000000", + "2019-01-01T18:51:02.000000000", + "2019-01-01T18:52:00.000000000", + "2019-01-01T18:52:21.000000000", + "2019-01-01T18:52:30.000000000", + "2019-01-01T18:52:43.000000000", + "2019-01-01T18:55:08.000000000", + "2019-01-01T18:55:28.000000000", + "2019-01-01T18:55:50.000000000", + "2019-01-01T19:02:53.000000000", + "2019-01-01T19:03:57.000000000", + "2019-01-01T19:04:34.000000000", + "2019-01-01T19:05:03.000000000", + "2019-01-01T19:05:11.000000000", + "2019-01-01T19:06:50.000000000", + "2019-01-01T19:07:27.000000000", + "2019-01-01T19:08:35.000000000", + "2019-01-01T19:09:09.000000000", + "2019-01-01T19:10:12.000000000", + "2019-01-01T19:10:13.000000000", + "2019-01-01T19:10:21.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:13:39.000000000", + "2019-01-01T19:14:17.000000000", + "2019-01-01T19:14:23.000000000", + "2019-01-01T19:14:39.000000000", + "2019-01-01T19:15:11.000000000", + "2019-01-01T19:18:11.000000000", + "2019-01-01T19:19:55.000000000", + "2019-01-01T19:20:14.000000000", + "2019-01-01T19:22:26.000000000", + "2019-01-01T19:22:33.000000000", + "2019-01-01T19:25:28.000000000", + "2019-01-01T19:26:24.000000000", + "2019-01-01T19:26:58.000000000", + "2019-01-01T19:28:47.000000000", + "2019-01-01T19:29:49.000000000", + "2019-01-01T19:30:26.000000000", + "2019-01-01T19:30:36.000000000", + "2019-01-01T19:31:56.000000000", + "2019-01-01T19:32:06.000000000", + "2019-01-01T19:33:09.000000000", + "2019-01-01T19:33:10.000000000", + "2019-01-01T19:34:25.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:41.000000000", + "2019-01-01T19:35:05.000000000", + "2019-01-01T19:37:26.000000000", + "2019-01-01T19:37:39.000000000", + "2019-01-01T19:38:24.000000000", + "2019-01-01T19:38:30.000000000", + "2019-01-01T19:39:07.000000000", + "2019-01-01T19:39:10.000000000", + "2019-01-01T19:41:03.000000000", + "2019-01-01T19:42:23.000000000", + "2019-01-01T19:43:06.000000000", + "2019-01-01T19:43:35.000000000", + "2019-01-01T19:44:34.000000000", + "2019-01-01T19:45:23.000000000", + "2019-01-01T19:46:20.000000000", + "2019-01-01T19:46:26.000000000", + "2019-01-01T19:47:31.000000000", + "2019-01-01T19:48:39.000000000", + "2019-01-01T19:49:10.000000000", + "2019-01-01T19:49:38.000000000", + "2019-01-01T19:51:27.000000000", + "2019-01-01T19:51:39.000000000", + "2019-01-01T19:51:46.000000000", + "2019-01-01T19:53:35.000000000", + "2019-01-01T19:53:36.000000000", + "2019-01-01T19:54:06.000000000", + "2019-01-01T19:55:49.000000000", + "2019-01-01T19:55:57.000000000", + "2019-01-01T19:58:03.000000000", + "2019-01-01T19:58:23.000000000", + "2019-01-01T20:00:47.000000000", + "2019-01-01T20:01:26.000000000", + "2019-01-01T20:03:55.000000000", + "2019-01-01T20:05:35.000000000", + "2019-01-01T20:07:00.000000000", + "2019-01-01T20:07:22.000000000", + "2019-01-01T20:09:50.000000000", + "2019-01-01T20:12:15.000000000", + "2019-01-01T20:12:44.000000000", + "2019-01-01T20:13:50.000000000", + "2019-01-01T20:14:48.000000000", + "2019-01-01T20:14:56.000000000", + "2019-01-01T20:15:35.000000000", + "2019-01-01T20:16:20.000000000", + "2019-01-01T20:16:50.000000000", + "2019-01-01T20:17:32.000000000", + "2019-01-01T20:19:27.000000000", + "2019-01-01T20:22:29.000000000", + "2019-01-01T20:23:01.000000000", + "2019-01-01T20:23:07.000000000", + "2019-01-01T20:25:23.000000000", + "2019-01-01T20:25:49.000000000", + "2019-01-01T20:25:56.000000000", + "2019-01-01T20:28:49.000000000", + "2019-01-01T20:30:53.000000000", + "2019-01-01T20:31:22.000000000", + "2019-01-01T20:31:44.000000000", + "2019-01-01T20:34:27.000000000", + "2019-01-01T20:37:16.000000000", + "2019-01-01T20:37:23.000000000", + "2019-01-01T20:37:58.000000000", + "2019-01-01T20:38:12.000000000", + "2019-01-01T20:38:59.000000000", + "2019-01-01T20:39:43.000000000", + "2019-01-01T20:40:01.000000000", + "2019-01-01T20:40:21.000000000", + "2019-01-01T20:42:02.000000000", + "2019-01-01T20:42:14.000000000", + "2019-01-01T20:42:46.000000000", + "2019-01-01T20:43:00.000000000", + "2019-01-01T20:46:23.000000000", + "2019-01-01T20:47:50.000000000", + "2019-01-01T20:49:07.000000000", + "2019-01-01T20:49:09.000000000", + "2019-01-01T20:49:34.000000000", + "2019-01-01T20:49:38.000000000", + "2019-01-01T20:49:52.000000000", + "2019-01-01T20:52:16.000000000", + "2019-01-01T20:52:26.000000000", + "2019-01-01T20:53:15.000000000", + "2019-01-01T20:55:37.000000000", + "2019-01-01T20:58:09.000000000", + "2019-01-01T20:58:19.000000000", + "2019-01-01T20:58:22.000000000", + "2019-01-01T20:59:14.000000000", + "2019-01-01T20:59:48.000000000", + "2019-01-01T21:01:40.000000000", + "2019-01-01T21:01:42.000000000", + "2019-01-01T21:01:50.000000000", + "2019-01-01T21:03:35.000000000", + "2019-01-01T21:04:30.000000000", + "2019-01-01T21:04:59.000000000", + "2019-01-01T21:05:03.000000000", + "2019-01-01T21:05:28.000000000", + "2019-01-01T21:05:36.000000000", + "2019-01-01T21:06:02.000000000", + "2019-01-01T21:08:15.000000000", + "2019-01-01T21:10:51.000000000", + "2019-01-01T21:11:16.000000000", + "2019-01-01T21:12:01.000000000", + "2019-01-01T21:12:55.000000000", + "2019-01-01T21:14:01.000000000", + "2019-01-01T21:15:11.000000000", + "2019-01-01T21:15:36.000000000", + "2019-01-01T21:16:12.000000000", + "2019-01-01T21:17:30.000000000", + "2019-01-01T21:17:43.000000000", + "2019-01-01T21:18:55.000000000", + "2019-01-01T21:19:35.000000000", + "2019-01-01T21:19:48.000000000", + "2019-01-01T21:22:04.000000000", + "2019-01-01T21:24:01.000000000", + "2019-01-01T21:24:39.000000000", + "2019-01-01T21:26:27.000000000", + "2019-01-01T21:27:08.000000000", + "2019-01-01T21:30:42.000000000", + "2019-01-01T21:31:09.000000000", + "2019-01-01T21:31:40.000000000", + "2019-01-01T21:31:48.000000000", + "2019-01-01T21:31:56.000000000", + "2019-01-01T21:32:00.000000000", + "2019-01-01T21:35:24.000000000", + "2019-01-01T21:37:22.000000000", + "2019-01-01T21:38:22.000000000", + "2019-01-01T21:40:46.000000000", + "2019-01-01T21:41:57.000000000", + "2019-01-01T21:43:10.000000000", + "2019-01-01T21:44:50.000000000", + "2019-01-01T21:45:56.000000000", + "2019-01-01T21:52:10.000000000", + "2019-01-01T21:53:08.000000000", + "2019-01-01T21:54:20.000000000", + "2019-01-01T21:54:56.000000000", + "2019-01-01T21:55:00.000000000", + "2019-01-01T21:55:35.000000000", + "2019-01-01T21:55:41.000000000", + "2019-01-01T21:56:56.000000000", + "2019-01-01T21:58:09.000000000", + "2019-01-01T22:01:13.000000000", + "2019-01-01T22:04:18.000000000", + "2019-01-01T22:04:30.000000000", + "2019-01-01T22:05:11.000000000", + "2019-01-01T22:08:01.000000000", + "2019-01-01T22:09:16.000000000", + "2019-01-01T22:09:36.000000000", + "2019-01-01T22:12:02.000000000", + "2019-01-01T22:12:24.000000000", + "2019-01-01T22:12:31.000000000", + "2019-01-01T22:13:38.000000000", + "2019-01-01T22:16:21.000000000", + "2019-01-01T22:17:15.000000000", + "2019-01-01T22:18:08.000000000", + "2019-01-01T22:18:37.000000000", + "2019-01-01T22:21:49.000000000", + "2019-01-01T22:22:11.000000000", + "2019-01-01T22:22:17.000000000", + "2019-01-01T22:22:24.000000000", + "2019-01-01T22:23:49.000000000", + "2019-01-01T22:24:05.000000000", + "2019-01-01T22:28:43.000000000", + "2019-01-01T22:29:41.000000000", + "2019-01-01T22:30:05.000000000", + "2019-01-01T22:32:29.000000000", + "2019-01-01T22:35:02.000000000", + "2019-01-01T22:35:47.000000000", + "2019-01-01T22:36:21.000000000", + "2019-01-01T22:36:38.000000000", + "2019-01-01T22:36:47.000000000", + "2019-01-01T22:37:56.000000000", + "2019-01-01T22:38:08.000000000", + "2019-01-01T22:38:28.000000000", + "2019-01-01T22:38:56.000000000", + "2019-01-01T22:39:31.000000000", + "2019-01-01T22:41:39.000000000", + "2019-01-01T22:41:48.000000000", + "2019-01-01T22:41:59.000000000", + "2019-01-01T22:42:16.000000000", + "2019-01-01T22:43:08.000000000", + "2019-01-01T22:43:12.000000000", + "2019-01-01T22:43:24.000000000", + "2019-01-01T22:45:57.000000000", + "2019-01-01T22:46:22.000000000", + "2019-01-01T22:46:37.000000000", + "2019-01-01T22:47:50.000000000", + "2019-01-01T22:48:18.000000000", + "2019-01-01T22:48:29.000000000", + "2019-01-01T22:49:04.000000000", + "2019-01-01T22:50:37.000000000", + "2019-01-01T22:51:13.000000000", + "2019-01-01T22:56:46.000000000", + "2019-01-01T22:57:31.000000000", + "2019-01-01T22:57:37.000000000", + "2019-01-01T22:59:29.000000000", + "2019-01-01T23:03:23.000000000", + "2019-01-01T23:03:37.000000000", + "2019-01-01T23:04:37.000000000", + "2019-01-01T23:06:04.000000000", + "2019-01-01T23:07:20.000000000", + "2019-01-01T23:07:40.000000000", + "2019-01-01T23:08:42.000000000", + "2019-01-01T23:08:48.000000000", + "2019-01-01T23:09:29.000000000", + "2019-01-01T23:10:34.000000000", + "2019-01-01T23:12:16.000000000", + "2019-01-01T23:12:25.000000000", + "2019-01-01T23:12:27.000000000", + "2019-01-01T23:12:30.000000000", + "2019-01-01T23:12:36.000000000", + "2019-01-01T23:14:03.000000000", + "2019-01-01T23:15:00.000000000", + "2019-01-01T23:15:08.000000000", + "2019-01-01T23:17:29.000000000", + "2019-01-01T23:20:27.000000000", + "2019-01-01T23:20:28.000000000", + "2019-01-01T23:21:35.000000000", + "2019-01-01T23:23:18.000000000", + "2019-01-01T23:23:21.000000000", + "2019-01-01T23:24:31.000000000", + "2019-01-01T23:25:08.000000000", + "2019-01-01T23:27:04.000000000", + "2019-01-01T23:28:56.000000000", + "2019-01-01T23:29:12.000000000", + "2019-01-01T23:29:29.000000000", + "2019-01-01T23:30:03.000000000", + "2019-01-01T23:30:16.000000000", + "2019-01-01T23:31:04.000000000", + "2019-01-01T23:32:44.000000000", + "2019-01-01T23:34:02.000000000", + "2019-01-01T23:34:10.000000000", + "2019-01-01T23:35:46.000000000", + "2019-01-01T23:35:55.000000000", + "2019-01-01T23:36:14.000000000", + "2019-01-01T23:36:27.000000000", + "2019-01-01T23:37:57.000000000", + "2019-01-01T23:40:17.000000000", + "2019-01-01T23:40:48.000000000", + "2019-01-01T23:41:12.000000000", + "2019-01-01T23:42:29.000000000", + "2019-01-01T23:43:07.000000000", + "2019-01-01T23:43:17.000000000", + "2019-01-01T23:43:57.000000000", + "2019-01-01T23:44:09.000000000", + "2019-01-01T23:45:39.000000000", + "2019-01-01T23:46:58.000000000", + "2019-01-01T23:47:13.000000000", + "2019-01-01T23:47:56.000000000", + "2019-01-01T23:48:12.000000000", + "2019-01-01T23:48:41.000000000", + "2019-01-01T23:49:23.000000000", + "2019-01-01T23:52:06.000000000", + "2019-01-01T23:52:43.000000000", + "2019-01-01T23:53:10.000000000", + "2019-01-01T23:53:38.000000000", + "2019-01-01T23:54:11.000000000", + "2019-01-01T23:55:05.000000000", + "2019-01-01T23:55:06.000000000", + "2019-01-01T23:55:33.000000000", + "2019-01-01T23:59:30.000000000", + "2019-01-02T00:00:46.000000000", + "2019-01-02T00:01:11.000000000", + "2019-01-02T00:01:18.000000000", + "2019-01-02T00:02:02.000000000", + "2019-01-02T00:06:14.000000000", + "2019-01-02T00:06:34.000000000", + "2019-01-02T00:06:46.000000000", + "2019-01-02T00:07:44.000000000", + "2019-01-02T00:07:57.000000000", + "2019-01-02T00:10:14.000000000", + "2019-01-02T00:11:28.000000000", + "2019-01-02T00:11:32.000000000", + "2019-01-02T00:12:17.000000000", + "2019-01-02T00:15:53.000000000", + "2019-01-02T00:16:23.000000000", + "2019-01-02T00:18:19.000000000", + "2019-01-02T00:19:08.000000000", + "2019-01-02T00:19:18.000000000", + "2019-01-02T00:19:36.000000000", + "2019-01-02T00:21:57.000000000", + "2019-01-02T00:22:05.000000000", + "2019-01-02T00:23:03.000000000", + "2019-01-02T00:25:04.000000000", + "2019-01-02T00:25:32.000000000", + "2019-01-02T00:28:40.000000000", + "2019-01-02T00:30:56.000000000", + "2019-01-02T00:32:03.000000000", + "2019-01-02T00:32:22.000000000", + "2019-01-02T00:34:54.000000000", + "2019-01-02T00:35:14.000000000", + "2019-01-02T00:36:49.000000000", + "2019-01-02T00:38:14.000000000", + "2019-01-02T00:38:35.000000000", + "2019-01-02T00:38:52.000000000", + "2019-01-02T00:39:17.000000000", + "2019-01-02T00:39:38.000000000", + "2019-01-02T00:41:21.000000000", + "2019-01-02T00:43:59.000000000", + "2019-01-02T00:44:11.000000000", + "2019-01-02T00:45:35.000000000", + "2019-01-02T00:45:38.000000000", + "2019-01-02T00:48:12.000000000", + "2019-01-02T00:48:16.000000000", + "2019-01-02T00:48:29.000000000", + "2019-01-02T00:49:28.000000000", + "2019-01-02T00:51:06.000000000", + "2019-01-02T00:52:15.000000000", + "2019-01-02T00:54:21.000000000", + "2019-01-02T00:54:24.000000000", + "2019-01-02T00:54:42.000000000", + "2019-01-02T00:55:32.000000000", + "2019-01-02T00:55:44.000000000", + "2019-01-02T00:55:54.000000000", + "2019-01-02T00:56:11.000000000", + "2019-01-02T00:57:00.000000000", + "2019-01-02T00:57:41.000000000", + "2019-01-02T00:58:44.000000000", + "2019-01-02T00:58:52.000000000", + "2019-01-02T00:59:23.000000000", + "2019-01-02T01:02:02.000000000", + "2019-01-02T01:02:12.000000000", + "2019-01-02T01:02:47.000000000", + "2019-01-02T01:04:51.000000000", + "2019-01-02T01:06:37.000000000", + "2019-01-02T01:06:54.000000000", + "2019-01-02T01:08:20.000000000", + "2019-01-02T01:08:44.000000000", + "2019-01-02T01:10:27.000000000", + "2019-01-02T01:11:39.000000000", + "2019-01-02T01:11:46.000000000", + "2019-01-02T01:12:04.000000000", + "2019-01-02T01:13:20.000000000", + "2019-01-02T01:13:55.000000000", + "2019-01-02T01:14:45.000000000", + "2019-01-02T01:15:49.000000000", + "2019-01-02T01:18:12.000000000", + "2019-01-02T01:18:38.000000000", + "2019-01-02T01:19:07.000000000", + "2019-01-02T01:20:04.000000000", + "2019-01-02T01:23:00.000000000", + "2019-01-02T01:23:06.000000000", + "2019-01-02T01:24:43.000000000", + "2019-01-02T01:24:55.000000000", + "2019-01-02T01:26:12.000000000", + "2019-01-02T01:27:03.000000000", + "2019-01-02T01:28:39.000000000", + "2019-01-02T01:28:54.000000000", + "2019-01-02T01:28:56.000000000", + "2019-01-02T01:29:23.000000000", + "2019-01-02T01:29:49.000000000", + "2019-01-02T01:30:00.000000000", + "2019-01-02T01:30:50.000000000", + "2019-01-02T01:32:50.000000000", + "2019-01-02T01:33:52.000000000", + "2019-01-02T01:34:58.000000000", + "2019-01-02T01:36:01.000000000", + "2019-01-02T01:37:45.000000000", + "2019-01-02T01:38:10.000000000", + "2019-01-02T01:39:49.000000000", + "2019-01-02T01:39:55.000000000", + "2019-01-02T01:40:20.000000000", + "2019-01-02T01:42:07.000000000", + "2019-01-02T01:42:17.000000000", + "2019-01-02T01:46:26.000000000", + "2019-01-02T01:46:37.000000000", + "2019-01-02T01:46:47.000000000", + "2019-01-02T01:50:27.000000000", + "2019-01-02T01:50:48.000000000", + "2019-01-02T01:50:58.000000000", + "2019-01-02T01:51:40.000000000", + "2019-01-02T01:52:30.000000000", + "2019-01-02T01:52:43.000000000", + "2019-01-02T01:53:01.000000000", + "2019-01-02T01:54:43.000000000", + "2019-01-02T01:55:49.000000000", + "2019-01-02T01:57:17.000000000", + "2019-01-02T01:57:56.000000000", + "2019-01-02T01:58:20.000000000", + "2019-01-02T01:58:40.000000000", + "2019-01-02T01:59:54.000000000", + "2019-01-02T02:00:30.000000000", + "2019-01-02T02:01:56.000000000", + "2019-01-02T02:02:30.000000000", + "2019-01-02T02:02:57.000000000", + "2019-01-02T02:03:54.000000000", + "2019-01-02T02:07:24.000000000", + "2019-01-02T02:08:13.000000000", + "2019-01-02T02:08:21.000000000", + "2019-01-02T02:08:36.000000000", + "2019-01-02T02:09:45.000000000", + "2019-01-02T02:10:10.000000000", + "2019-01-02T02:11:22.000000000", + "2019-01-02T02:13:49.000000000", + "2019-01-02T02:14:29.000000000", + "2019-01-02T02:14:46.000000000", + "2019-01-02T02:17:50.000000000", + "2019-01-02T02:19:02.000000000", + "2019-01-02T02:19:28.000000000", + "2019-01-02T02:20:54.000000000", + "2019-01-02T02:21:24.000000000", + "2019-01-02T02:22:09.000000000", + "2019-01-02T02:24:57.000000000", + "2019-01-02T02:25:33.000000000", + "2019-01-02T02:25:48.000000000", + "2019-01-02T02:26:05.000000000", + "2019-01-02T02:26:12.000000000", + "2019-01-02T02:27:41.000000000", + "2019-01-02T02:30:07.000000000", + "2019-01-02T02:34:28.000000000", + "2019-01-02T02:38:08.000000000", + "2019-01-02T02:39:41.000000000", + "2019-01-02T02:40:17.000000000", + "2019-01-02T02:41:31.000000000", + "2019-01-02T02:41:47.000000000", + "2019-01-02T02:41:49.000000000", + "2019-01-02T02:45:49.000000000", + "2019-01-02T02:46:50.000000000", + "2019-01-02T02:47:35.000000000", + "2019-01-02T02:48:47.000000000", + "2019-01-02T02:51:39.000000000", + "2019-01-02T02:51:40.000000000", + "2019-01-02T02:53:10.000000000", + "2019-01-02T02:53:23.000000000", + "2019-01-02T02:53:30.000000000", + "2019-01-02T02:53:48.000000000", + "2019-01-02T02:54:01.000000000", + "2019-01-02T02:55:01.000000000", + "2019-01-02T02:56:10.000000000", + "2019-01-02T02:56:12.000000000", + "2019-01-02T02:57:03.000000000", + "2019-01-02T02:57:04.000000000", + "2019-01-02T02:57:14.000000000", + "2019-01-02T02:57:15.000000000", + "2019-01-02T02:57:49.000000000", + "2019-01-02T02:58:41.000000000", + "2019-01-02T03:00:10.000000000", + "2019-01-02T03:00:43.000000000", + "2019-01-02T03:00:54.000000000", + "2019-01-02T03:01:40.000000000", + "2019-01-02T03:02:17.000000000", + "2019-01-02T03:02:58.000000000", + "2019-01-02T03:04:32.000000000", + "2019-01-02T03:06:17.000000000", + "2019-01-02T03:08:03.000000000", + "2019-01-02T03:08:31.000000000", + "2019-01-02T03:12:12.000000000", + "2019-01-02T03:13:28.000000000", + "2019-01-02T03:15:46.000000000", + "2019-01-02T03:17:12.000000000", + "2019-01-02T03:17:25.000000000", + "2019-01-02T03:18:22.000000000", + "2019-01-02T03:18:55.000000000", + "2019-01-02T03:23:00.000000000", + "2019-01-02T03:23:52.000000000", + "2019-01-02T03:25:18.000000000", + "2019-01-02T03:27:24.000000000", + "2019-01-02T03:29:21.000000000", + "2019-01-02T03:30:33.000000000", + "2019-01-02T03:31:35.000000000", + "2019-01-02T03:32:45.000000000", + "2019-01-02T03:33:14.000000000", + "2019-01-02T03:33:34.000000000", + "2019-01-02T03:34:38.000000000", + "2019-01-02T03:35:18.000000000", + "2019-01-02T03:35:35.000000000", + "2019-01-02T03:35:52.000000000", + "2019-01-02T03:36:51.000000000", + "2019-01-02T03:36:59.000000000", + "2019-01-02T03:37:17.000000000", + "2019-01-02T03:40:28.000000000", + "2019-01-02T03:41:19.000000000", + "2019-01-02T03:43:02.000000000", + "2019-01-02T03:43:33.000000000", + "2019-01-02T03:43:55.000000000", + "2019-01-02T03:45:10.000000000", + "2019-01-02T03:46:16.000000000", + "2019-01-02T03:46:50.000000000", + "2019-01-02T03:46:53.000000000", + "2019-01-02T03:48:58.000000000", + "2019-01-02T03:49:26.000000000", + "2019-01-02T03:49:40.000000000", + "2019-01-02T03:51:59.000000000", + "2019-01-02T03:52:15.000000000", + "2019-01-02T03:52:18.000000000", + "2019-01-02T03:52:50.000000000", + "2019-01-02T03:53:25.000000000", + "2019-01-02T03:54:39.000000000", + "2019-01-02T03:54:55.000000000", + "2019-01-02T03:55:28.000000000", + "2019-01-02T03:55:57.000000000", + "2019-01-02T03:55:58.000000000", + "2019-01-02T03:56:03.000000000", + "2019-01-02T03:57:42.000000000", + "2019-01-02T03:58:04.000000000", + "2019-01-02T03:58:13.000000000", + "2019-01-02T03:59:17.000000000", + "2019-01-02T03:59:41.000000000", + "2019-01-02T04:01:05.000000000", + "2019-01-02T04:01:48.000000000", + "2019-01-02T04:01:59.000000000", + "2019-01-02T04:02:52.000000000", + "2019-01-02T04:04:24.000000000", + "2019-01-02T04:05:27.000000000", + "2019-01-02T04:05:50.000000000", + "2019-01-02T04:06:28.000000000", + "2019-01-02T04:08:17.000000000", + "2019-01-02T04:09:27.000000000", + "2019-01-02T04:10:19.000000000", + "2019-01-02T04:11:03.000000000", + "2019-01-02T04:14:49.000000000", + "2019-01-02T04:16:10.000000000", + "2019-01-02T04:18:25.000000000", + "2019-01-02T04:20:00.000000000", + "2019-01-02T04:20:21.000000000", + "2019-01-02T04:21:14.000000000", + "2019-01-02T04:22:52.000000000", + "2019-01-02T04:23:36.000000000", + "2019-01-02T04:24:32.000000000", + "2019-01-02T04:26:00.000000000", + "2019-01-02T04:28:26.000000000", + "2019-01-02T04:29:06.000000000", + "2019-01-02T04:30:07.000000000", + "2019-01-02T04:32:36.000000000", + "2019-01-02T04:33:19.000000000", + "2019-01-02T04:33:37.000000000", + "2019-01-02T04:35:32.000000000", + "2019-01-02T04:35:58.000000000", + "2019-01-02T04:36:36.000000000", + "2019-01-02T04:37:52.000000000", + "2019-01-02T04:38:24.000000000", + "2019-01-02T04:39:07.000000000", + "2019-01-02T04:39:18.000000000", + "2019-01-02T04:39:34.000000000", + "2019-01-02T04:40:47.000000000", + "2019-01-02T04:41:11.000000000", + "2019-01-02T04:41:33.000000000", + "2019-01-02T04:41:59.000000000", + "2019-01-02T04:44:01.000000000", + "2019-01-02T04:44:22.000000000", + "2019-01-02T04:47:45.000000000", + "2019-01-02T04:48:38.000000000", + "2019-01-02T04:50:20.000000000", + "2019-01-02T04:51:18.000000000", + "2019-01-02T04:51:27.000000000", + "2019-01-02T04:54:40.000000000", + "2019-01-02T04:54:44.000000000", + "2019-01-02T04:54:52.000000000", + "2019-01-02T04:55:03.000000000", + "2019-01-02T04:56:51.000000000", + "2019-01-02T04:57:13.000000000", + "2019-01-02T04:57:47.000000000", + "2019-01-02T04:58:03.000000000", + "2019-01-02T04:59:10.000000000", + "2019-01-02T05:00:32.000000000", + "2019-01-02T05:02:25.000000000", + "2019-01-02T05:03:10.000000000", + "2019-01-02T05:03:50.000000000", + "2019-01-02T05:04:03.000000000", + "2019-01-02T05:04:22.000000000", + "2019-01-02T05:06:03.000000000", + "2019-01-02T05:07:17.000000000", + "2019-01-02T05:08:47.000000000", + "2019-01-02T05:09:21.000000000", + "2019-01-02T05:09:30.000000000", + "2019-01-02T05:10:07.000000000", + "2019-01-02T05:10:10.000000000", + "2019-01-02T05:10:35.000000000", + "2019-01-02T05:10:37.000000000", + "2019-01-02T05:10:56.000000000", + "2019-01-02T05:12:33.000000000", + "2019-01-02T05:13:37.000000000", + "2019-01-02T05:14:23.000000000", + "2019-01-02T05:15:33.000000000", + "2019-01-02T05:17:00.000000000", + "2019-01-02T05:17:12.000000000", + "2019-01-02T05:18:37.000000000", + "2019-01-02T05:19:17.000000000", + "2019-01-02T05:19:28.000000000", + "2019-01-02T05:19:37.000000000", + "2019-01-02T05:21:02.000000000", + "2019-01-02T05:22:40.000000000", + "2019-01-02T05:23:20.000000000", + "2019-01-02T05:23:23.000000000", + "2019-01-02T05:23:38.000000000", + "2019-01-02T05:23:51.000000000", + "2019-01-02T05:23:52.000000000", + "2019-01-02T05:24:21.000000000", + "2019-01-02T05:24:22.000000000", + "2019-01-02T05:25:18.000000000", + "2019-01-02T05:26:23.000000000", + "2019-01-02T05:27:32.000000000", + "2019-01-02T05:28:19.000000000", + "2019-01-02T05:30:11.000000000", + "2019-01-02T05:31:58.000000000", + "2019-01-02T05:32:06.000000000", + "2019-01-02T05:33:28.000000000", + "2019-01-02T05:34:23.000000000", + "2019-01-02T05:34:30.000000000", + "2019-01-02T05:34:43.000000000", + "2019-01-02T05:35:41.000000000", + "2019-01-02T05:36:20.000000000", + "2019-01-02T05:36:47.000000000", + "2019-01-02T05:37:32.000000000", + "2019-01-02T05:37:36.000000000", + "2019-01-02T05:40:35.000000000", + "2019-01-02T05:41:37.000000000", + "2019-01-02T05:41:48.000000000", + "2019-01-02T05:42:55.000000000", + "2019-01-02T05:44:16.000000000", + "2019-01-02T05:44:32.000000000", + "2019-01-02T05:45:36.000000000", + "2019-01-02T05:46:03.000000000", + "2019-01-02T05:47:33.000000000", + "2019-01-02T05:47:38.000000000", + "2019-01-02T05:47:51.000000000", + "2019-01-02T05:50:32.000000000", + "2019-01-02T05:51:02.000000000", + "2019-01-02T05:51:23.000000000", + "2019-01-02T05:53:25.000000000", + "2019-01-02T05:53:26.000000000", + "2019-01-02T05:53:39.000000000", + "2019-01-02T05:55:24.000000000", + "2019-01-02T05:56:03.000000000", + "2019-01-02T05:57:00.000000000", + "2019-01-02T05:57:13.000000000", + "2019-01-02T05:57:42.000000000", + "2019-01-02T05:57:50.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:59:05.000000000", + "2019-01-02T05:59:13.000000000", + "2019-01-02T06:00:06.000000000", + "2019-01-02T06:00:26.000000000", + "2019-01-02T06:00:34.000000000", + "2019-01-02T06:00:48.000000000", + "2019-01-02T06:02:13.000000000", + "2019-01-02T06:02:15.000000000", + "2019-01-02T06:02:43.000000000", + "2019-01-02T06:04:27.000000000", + "2019-01-02T06:04:57.000000000", + "2019-01-02T06:06:26.000000000", + "2019-01-02T06:06:38.000000000", + "2019-01-02T06:08:38.000000000", + "2019-01-02T06:11:48.000000000", + "2019-01-02T06:13:33.000000000", + "2019-01-02T06:14:22.000000000", + "2019-01-02T06:14:31.000000000", + "2019-01-02T06:14:36.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:16:02.000000000", + "2019-01-02T06:16:58.000000000", + "2019-01-02T06:17:28.000000000", + "2019-01-02T06:18:06.000000000", + "2019-01-02T06:20:58.000000000", + "2019-01-02T06:21:33.000000000", + "2019-01-02T06:22:21.000000000", + "2019-01-02T06:22:35.000000000", + "2019-01-02T06:24:22.000000000", + "2019-01-02T06:24:56.000000000", + "2019-01-02T06:26:33.000000000", + "2019-01-02T06:26:59.000000000", + "2019-01-02T06:27:07.000000000", + "2019-01-02T06:27:11.000000000", + "2019-01-02T06:28:04.000000000", + "2019-01-02T06:28:33.000000000", + "2019-01-02T06:28:46.000000000", + "2019-01-02T06:28:50.000000000", + "2019-01-02T06:30:21.000000000", + "2019-01-02T06:30:50.000000000", + "2019-01-02T06:33:56.000000000", + "2019-01-02T06:35:05.000000000", + "2019-01-02T06:35:25.000000000", + "2019-01-02T06:36:49.000000000", + "2019-01-02T06:39:32.000000000", + "2019-01-02T06:40:28.000000000", + "2019-01-02T06:41:14.000000000", + "2019-01-02T06:41:23.000000000", + "2019-01-02T06:42:16.000000000", + "2019-01-02T06:43:01.000000000", + "2019-01-02T06:43:36.000000000", + "2019-01-02T06:44:07.000000000", + "2019-01-02T06:46:57.000000000", + "2019-01-02T06:47:44.000000000", + "2019-01-02T06:48:14.000000000", + "2019-01-02T06:48:26.000000000", + "2019-01-02T06:48:35.000000000", + "2019-01-02T06:51:25.000000000", + "2019-01-02T06:52:33.000000000", + "2019-01-02T06:54:11.000000000", + "2019-01-02T06:54:55.000000000", + "2019-01-02T06:55:23.000000000", + "2019-01-02T06:55:25.000000000", + "2019-01-02T06:55:44.000000000", + "2019-01-02T07:03:53.000000000", + "2019-01-02T07:04:21.000000000", + "2019-01-02T07:04:38.000000000", + "2019-01-02T07:05:28.000000000", + "2019-01-02T07:05:49.000000000", + "2019-01-02T07:08:58.000000000", + "2019-01-02T07:09:08.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:11:25.000000000", + "2019-01-02T07:13:31.000000000", + "2019-01-02T07:13:41.000000000", + "2019-01-02T07:15:55.000000000", + "2019-01-02T07:16:00.000000000", + "2019-01-02T07:17:22.000000000", + "2019-01-02T07:18:01.000000000", + "2019-01-02T07:18:24.000000000", + "2019-01-02T07:21:16.000000000", + "2019-01-02T07:22:38.000000000", + "2019-01-02T07:23:37.000000000", + "2019-01-02T07:25:02.000000000", + "2019-01-02T07:25:22.000000000", + "2019-01-02T07:26:20.000000000", + "2019-01-02T07:26:47.000000000", + "2019-01-02T07:27:35.000000000", + "2019-01-02T07:27:46.000000000", + "2019-01-02T07:27:51.000000000", + "2019-01-02T07:28:11.000000000", + "2019-01-02T07:29:32.000000000", + "2019-01-02T07:30:07.000000000", + "2019-01-02T07:31:17.000000000", + "2019-01-02T07:31:27.000000000", + "2019-01-02T07:31:52.000000000", + "2019-01-02T07:32:08.000000000", + "2019-01-02T07:32:24.000000000", + "2019-01-02T07:33:40.000000000", + "2019-01-02T07:35:24.000000000", + "2019-01-02T07:36:19.000000000", + "2019-01-02T07:37:02.000000000", + "2019-01-02T07:37:25.000000000", + "2019-01-02T07:37:57.000000000", + "2019-01-02T07:38:54.000000000", + "2019-01-02T07:39:19.000000000", + "2019-01-02T07:39:29.000000000", + "2019-01-02T07:43:10.000000000", + "2019-01-02T07:44:41.000000000", + "2019-01-02T07:45:28.000000000", + "2019-01-02T07:46:08.000000000", + "2019-01-02T07:46:37.000000000", + "2019-01-02T07:46:43.000000000", + "2019-01-02T07:48:24.000000000", + "2019-01-02T07:49:48.000000000", + "2019-01-02T07:50:19.000000000", + "2019-01-02T07:50:35.000000000", + "2019-01-02T07:51:36.000000000", + "2019-01-02T07:52:08.000000000", + "2019-01-02T07:52:56.000000000", + "2019-01-02T07:53:29.000000000", + "2019-01-02T07:54:02.000000000", + "2019-01-02T07:54:37.000000000", + "2019-01-02T07:57:24.000000000", + "2019-01-02T07:58:40.000000000", + "2019-01-02T07:59:04.000000000", + "2019-01-02T08:00:16.000000000", + "2019-01-02T08:02:25.000000000", + "2019-01-02T08:03:21.000000000", + "2019-01-02T08:05:02.000000000", + "2019-01-02T08:05:20.000000000", + "2019-01-02T08:06:12.000000000", + "2019-01-02T08:07:45.000000000", + "2019-01-02T08:08:09.000000000", + "2019-01-02T08:08:54.000000000", + "2019-01-02T08:09:48.000000000", + "2019-01-02T08:10:23.000000000", + "2019-01-02T08:10:34.000000000", + "2019-01-02T08:11:19.000000000", + "2019-01-02T08:12:26.000000000", + "2019-01-02T08:12:58.000000000", + "2019-01-02T08:14:39.000000000", + "2019-01-02T08:14:45.000000000", + "2019-01-02T08:14:53.000000000", + "2019-01-02T08:15:23.000000000", + "2019-01-02T08:16:06.000000000", + "2019-01-02T08:16:25.000000000", + "2019-01-02T08:16:53.000000000", + "2019-01-02T08:17:38.000000000", + "2019-01-02T08:18:47.000000000", + "2019-01-02T08:18:51.000000000", + "2019-01-02T08:21:10.000000000", + "2019-01-02T08:21:20.000000000", + "2019-01-02T08:22:10.000000000", + "2019-01-02T08:23:25.000000000", + "2019-01-02T08:24:50.000000000", + "2019-01-02T08:25:35.000000000", + "2019-01-02T08:25:38.000000000", + "2019-01-02T08:27:20.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:56.000000000", + "2019-01-02T08:27:59.000000000", + "2019-01-02T08:29:27.000000000", + "2019-01-02T08:31:53.000000000", + "2019-01-02T08:33:09.000000000", + "2019-01-02T08:34:17.000000000", + "2019-01-02T08:34:50.000000000", + "2019-01-02T08:34:55.000000000", + "2019-01-02T08:36:07.000000000", + "2019-01-02T08:37:25.000000000", + "2019-01-02T08:38:57.000000000", + "2019-01-02T08:39:25.000000000", + "2019-01-02T08:39:43.000000000", + "2019-01-02T08:39:46.000000000", + "2019-01-02T08:40:11.000000000", + "2019-01-02T08:40:17.000000000", + "2019-01-02T08:42:05.000000000", + "2019-01-02T08:42:29.000000000", + "2019-01-02T08:43:10.000000000", + "2019-01-02T08:43:17.000000000", + "2019-01-02T08:44:03.000000000", + "2019-01-02T08:44:42.000000000", + "2019-01-02T08:44:44.000000000", + "2019-01-02T08:44:50.000000000", + "2019-01-02T08:46:45.000000000", + "2019-01-02T08:46:55.000000000", + "2019-01-02T08:48:19.000000000", + "2019-01-02T08:48:20.000000000", + "2019-01-02T08:48:39.000000000", + "2019-01-02T08:52:12.000000000", + "2019-01-02T08:52:30.000000000", + "2019-01-02T08:53:25.000000000", + "2019-01-02T08:53:34.000000000", + "2019-01-02T08:54:27.000000000", + "2019-01-02T08:54:56.000000000", + "2019-01-02T08:55:15.000000000", + "2019-01-02T08:55:27.000000000", + "2019-01-02T08:55:51.000000000", + "2019-01-02T08:55:58.000000000", + "2019-01-02T08:56:07.000000000", + "2019-01-02T08:56:47.000000000", + "2019-01-02T08:56:58.000000000", + "2019-01-02T08:57:36.000000000", + "2019-01-02T08:58:53.000000000", + "2019-01-02T09:00:03.000000000", + "2019-01-02T09:00:06.000000000", + "2019-01-02T09:00:20.000000000", + "2019-01-02T09:02:25.000000000", + "2019-01-02T09:06:28.000000000", + "2019-01-02T09:06:29.000000000", + "2019-01-02T09:08:35.000000000", + "2019-01-02T09:10:11.000000000", + "2019-01-02T09:11:04.000000000", + "2019-01-02T09:13:51.000000000", + "2019-01-02T09:14:15.000000000", + "2019-01-02T09:15:57.000000000", + "2019-01-02T09:16:16.000000000", + "2019-01-02T09:16:26.000000000", + "2019-01-02T09:17:27.000000000", + "2019-01-02T09:20:36.000000000", + "2019-01-02T09:24:35.000000000", + "2019-01-02T09:26:47.000000000", + "2019-01-02T09:28:27.000000000", + "2019-01-02T09:30:43.000000000", + "2019-01-02T09:30:55.000000000", + "2019-01-02T09:32:17.000000000", + "2019-01-02T09:34:34.000000000", + "2019-01-02T09:34:36.000000000", + "2019-01-02T09:34:52.000000000", + "2019-01-02T09:34:59.000000000", + "2019-01-02T09:35:54.000000000", + "2019-01-02T09:36:57.000000000", + "2019-01-02T09:37:50.000000000", + "2019-01-02T09:42:01.000000000", + "2019-01-02T09:42:25.000000000", + "2019-01-02T09:43:41.000000000", + "2019-01-02T09:45:20.000000000", + "2019-01-02T09:48:14.000000000", + "2019-01-02T09:48:46.000000000", + "2019-01-02T09:49:16.000000000", + "2019-01-02T09:49:47.000000000", + "2019-01-02T09:52:12.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:37.000000000", + "2019-01-02T09:53:51.000000000", + "2019-01-02T09:55:00.000000000", + "2019-01-02T09:56:21.000000000", + "2019-01-02T09:57:34.000000000", + "2019-01-02T09:59:25.000000000", + "2019-01-02T09:59:51.000000000", + "2019-01-02T10:01:02.000000000", + "2019-01-02T10:01:42.000000000", + "2019-01-02T10:02:00.000000000", + "2019-01-02T10:02:33.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:58.000000000", + "2019-01-02T10:05:00.000000000", + "2019-01-02T10:05:04.000000000", + "2019-01-02T10:05:58.000000000", + "2019-01-02T10:06:41.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:49.000000000", + "2019-01-02T10:09:57.000000000", + "2019-01-02T10:10:38.000000000", + "2019-01-02T10:10:50.000000000", + "2019-01-02T10:13:04.000000000", + "2019-01-02T10:13:12.000000000", + "2019-01-02T10:14:13.000000000", + "2019-01-02T10:16:13.000000000", + "2019-01-02T10:16:28.000000000", + "2019-01-02T10:17:53.000000000", + "2019-01-02T10:17:54.000000000", + "2019-01-02T10:19:34.000000000", + "2019-01-02T10:20:21.000000000", + "2019-01-02T10:20:31.000000000", + "2019-01-02T10:21:47.000000000", + "2019-01-02T10:22:25.000000000", + "2019-01-02T10:24:03.000000000", + "2019-01-02T10:24:49.000000000", + "2019-01-02T10:29:00.000000000", + "2019-01-02T10:30:50.000000000", + "2019-01-02T10:30:52.000000000", + "2019-01-02T10:30:58.000000000", + "2019-01-02T10:32:07.000000000", + "2019-01-02T10:32:27.000000000", + "2019-01-02T10:32:33.000000000", + "2019-01-02T10:32:44.000000000", + "2019-01-02T10:32:45.000000000", + "2019-01-02T10:35:10.000000000", + "2019-01-02T10:38:19.000000000", + "2019-01-02T10:38:57.000000000", + "2019-01-02T10:40:40.000000000", + "2019-01-02T10:42:29.000000000", + "2019-01-02T10:42:51.000000000", + "2019-01-02T10:42:54.000000000", + "2019-01-02T10:45:20.000000000", + "2019-01-02T10:46:22.000000000", + "2019-01-02T10:47:30.000000000", + "2019-01-02T10:47:55.000000000", + "2019-01-02T10:50:42.000000000", + "2019-01-02T10:51:00.000000000", + "2019-01-02T10:51:56.000000000", + "2019-01-02T10:52:37.000000000", + "2019-01-02T10:55:44.000000000", + "2019-01-02T10:56:24.000000000", + "2019-01-02T10:56:38.000000000", + "2019-01-02T10:56:47.000000000", + "2019-01-02T10:57:59.000000000", + "2019-01-02T10:58:17.000000000", + "2019-01-02T10:59:25.000000000", + "2019-01-02T11:00:29.000000000", + "2019-01-02T11:01:33.000000000", + "2019-01-02T11:02:40.000000000", + "2019-01-02T11:03:10.000000000", + "2019-01-02T11:04:35.000000000", + "2019-01-02T11:05:19.000000000", + "2019-01-02T11:06:17.000000000", + "2019-01-02T11:06:27.000000000", + "2019-01-02T11:06:42.000000000", + "2019-01-02T11:08:54.000000000", + "2019-01-02T11:09:40.000000000", + "2019-01-02T11:09:54.000000000", + "2019-01-02T11:11:59.000000000", + "2019-01-02T11:12:17.000000000", + "2019-01-02T11:13:22.000000000", + "2019-01-02T11:14:06.000000000", + "2019-01-02T11:15:33.000000000", + "2019-01-02T11:16:10.000000000", + "2019-01-02T11:17:48.000000000", + "2019-01-02T11:19:15.000000000", + "2019-01-02T11:19:28.000000000", + "2019-01-02T11:19:43.000000000", + "2019-01-02T11:20:59.000000000", + "2019-01-02T11:25:35.000000000", + "2019-01-02T11:27:50.000000000", + "2019-01-02T11:30:05.000000000", + "2019-01-02T11:30:14.000000000", + "2019-01-02T11:30:42.000000000", + "2019-01-02T11:31:23.000000000", + "2019-01-02T11:33:04.000000000", + "2019-01-02T11:33:57.000000000", + "2019-01-02T11:34:10.000000000", + "2019-01-02T11:40:13.000000000", + "2019-01-02T11:41:32.000000000", + "2019-01-02T11:42:48.000000000", + "2019-01-02T11:43:17.000000000", + "2019-01-02T11:45:19.000000000", + "2019-01-02T11:46:09.000000000", + "2019-01-02T11:48:16.000000000", + "2019-01-02T11:49:37.000000000", + "2019-01-02T11:53:24.000000000", + "2019-01-02T11:54:27.000000000", + "2019-01-02T11:55:14.000000000", + "2019-01-02T11:56:50.000000000", + "2019-01-02T11:56:58.000000000", + "2019-01-02T11:57:04.000000000", + "2019-01-02T11:57:08.000000000", + "2019-01-02T11:57:14.000000000", + "2019-01-02T11:57:47.000000000", + "2019-01-02T11:59:25.000000000", + "2019-01-02T11:59:58.000000000", + "2019-01-02T12:00:35.000000000", + "2019-01-02T12:02:01.000000000", + "2019-01-02T12:02:06.000000000", + "2019-01-02T12:02:43.000000000", + "2019-01-02T12:03:14.000000000", + "2019-01-02T12:04:33.000000000", + "2019-01-02T12:04:35.000000000", + "2019-01-02T12:05:31.000000000", + "2019-01-02T12:06:08.000000000", + "2019-01-02T12:08:11.000000000", + "2019-01-02T12:08:20.000000000", + "2019-01-02T12:11:30.000000000", + "2019-01-02T12:11:34.000000000", + "2019-01-02T12:12:18.000000000", + "2019-01-02T12:15:30.000000000", + "2019-01-02T12:20:07.000000000", + "2019-01-02T12:20:59.000000000", + "2019-01-02T12:24:06.000000000", + "2019-01-02T12:26:09.000000000", + "2019-01-02T12:26:32.000000000", + "2019-01-02T12:26:48.000000000", + "2019-01-02T12:27:26.000000000", + "2019-01-02T12:30:19.000000000", + "2019-01-02T12:32:32.000000000", + "2019-01-02T12:36:19.000000000", + "2019-01-02T12:39:40.000000000", + "2019-01-02T12:39:44.000000000", + "2019-01-02T12:41:33.000000000", + "2019-01-02T12:42:00.000000000", + "2019-01-02T12:42:08.000000000", + "2019-01-02T12:42:14.000000000", + "2019-01-02T12:44:45.000000000", + "2019-01-02T12:45:58.000000000", + "2019-01-02T12:48:04.000000000", + "2019-01-02T12:49:22.000000000", + "2019-01-02T12:49:49.000000000", + "2019-01-02T12:50:10.000000000", + "2019-01-02T12:51:06.000000000", + "2019-01-02T12:52:47.000000000", + "2019-01-02T12:53:42.000000000", + "2019-01-02T12:54:31.000000000", + "2019-01-02T12:56:26.000000000", + "2019-01-02T12:59:31.000000000", + "2019-01-02T13:01:03.000000000", + "2019-01-02T13:02:20.000000000", + "2019-01-02T13:02:35.000000000", + "2019-01-02T13:03:37.000000000", + "2019-01-02T13:04:15.000000000", + "2019-01-02T13:05:05.000000000", + "2019-01-02T13:05:29.000000000", + "2019-01-02T13:07:17.000000000", + "2019-01-02T13:08:44.000000000", + "2019-01-02T13:09:35.000000000", + "2019-01-02T13:10:25.000000000", + "2019-01-02T13:11:04.000000000", + "2019-01-02T13:11:58.000000000", + "2019-01-02T13:12:25.000000000", + "2019-01-02T13:13:54.000000000", + "2019-01-02T13:17:07.000000000", + "2019-01-02T13:17:18.000000000", + "2019-01-02T13:17:22.000000000", + "2019-01-02T13:17:52.000000000", + "2019-01-02T13:18:26.000000000", + "2019-01-02T13:18:34.000000000", + "2019-01-02T13:18:44.000000000", + "2019-01-02T13:21:37.000000000", + "2019-01-02T13:21:58.000000000", + "2019-01-02T13:22:03.000000000", + "2019-01-02T13:22:30.000000000", + "2019-01-02T13:22:39.000000000", + "2019-01-02T13:24:37.000000000", + "2019-01-02T13:24:52.000000000", + "2019-01-02T13:26:00.000000000", + "2019-01-02T13:26:38.000000000", + "2019-01-02T13:30:08.000000000", + "2019-01-02T13:31:04.000000000", + "2019-01-02T13:31:22.000000000", + "2019-01-02T13:32:37.000000000", + "2019-01-02T13:33:42.000000000", + "2019-01-02T13:36:50.000000000", + "2019-01-02T13:37:30.000000000", + "2019-01-02T13:38:11.000000000", + "2019-01-02T13:38:12.000000000", + "2019-01-02T13:38:38.000000000", + "2019-01-02T13:41:04.000000000", + "2019-01-02T13:41:43.000000000", + "2019-01-02T13:41:56.000000000", + "2019-01-02T13:42:45.000000000", + "2019-01-02T13:42:49.000000000", + "2019-01-02T13:44:53.000000000", + "2019-01-02T13:45:02.000000000", + "2019-01-02T13:45:35.000000000", + "2019-01-02T13:48:19.000000000", + "2019-01-02T13:48:40.000000000", + "2019-01-02T13:49:01.000000000", + "2019-01-02T13:49:25.000000000", + "2019-01-02T13:50:31.000000000", + "2019-01-02T13:52:27.000000000", + "2019-01-02T13:52:38.000000000", + "2019-01-02T13:53:08.000000000", + "2019-01-02T13:53:10.000000000", + "2019-01-02T13:53:15.000000000", + "2019-01-02T13:53:24.000000000", + "2019-01-02T13:53:46.000000000", + "2019-01-02T13:53:57.000000000", + "2019-01-02T13:55:17.000000000", + "2019-01-02T13:56:29.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:57:12.000000000", + "2019-01-02T13:57:33.000000000", + "2019-01-02T14:00:56.000000000", + "2019-01-02T14:01:13.000000000", + "2019-01-02T14:03:14.000000000", + "2019-01-02T14:04:51.000000000", + "2019-01-02T14:05:18.000000000", + "2019-01-02T14:05:48.000000000", + "2019-01-02T14:05:51.000000000", + "2019-01-02T14:07:19.000000000", + "2019-01-02T14:08:04.000000000", + "2019-01-02T14:08:42.000000000", + "2019-01-02T14:09:33.000000000", + "2019-01-02T14:09:43.000000000", + "2019-01-02T14:10:58.000000000", + "2019-01-02T14:13:01.000000000", + "2019-01-02T14:13:31.000000000", + "2019-01-02T14:14:03.000000000", + "2019-01-02T14:16:38.000000000", + "2019-01-02T14:17:03.000000000", + "2019-01-02T14:18:53.000000000", + "2019-01-02T14:19:02.000000000", + "2019-01-02T14:19:56.000000000", + "2019-01-02T14:22:11.000000000", + "2019-01-02T14:22:18.000000000", + "2019-01-02T14:25:02.000000000", + "2019-01-02T14:25:35.000000000", + "2019-01-02T14:25:48.000000000", + "2019-01-02T14:26:09.000000000", + "2019-01-02T14:27:43.000000000", + "2019-01-02T14:27:46.000000000", + "2019-01-02T14:29:00.000000000", + "2019-01-02T14:29:32.000000000", + "2019-01-02T14:29:42.000000000", + "2019-01-02T14:29:44.000000000", + "2019-01-02T14:29:45.000000000", + "2019-01-02T14:29:51.000000000", + "2019-01-02T14:31:42.000000000", + "2019-01-02T14:33:25.000000000", + "2019-01-02T14:33:45.000000000", + "2019-01-02T14:34:36.000000000", + "2019-01-02T14:35:22.000000000", + "2019-01-02T14:35:52.000000000", + "2019-01-02T14:36:24.000000000", + "2019-01-02T14:37:05.000000000", + "2019-01-02T14:37:13.000000000", + "2019-01-02T14:38:31.000000000", + "2019-01-02T14:38:51.000000000", + "2019-01-02T14:39:24.000000000", + "2019-01-02T14:40:00.000000000", + "2019-01-02T14:41:30.000000000", + "2019-01-02T14:41:35.000000000", + "2019-01-02T14:42:00.000000000", + "2019-01-02T14:42:31.000000000", + "2019-01-02T14:44:18.000000000", + "2019-01-02T14:46:23.000000000", + "2019-01-02T14:47:00.000000000", + "2019-01-02T14:49:54.000000000", + "2019-01-02T14:50:09.000000000", + "2019-01-02T14:51:34.000000000", + "2019-01-02T14:52:05.000000000", + "2019-01-02T14:52:12.000000000", + "2019-01-02T14:53:17.000000000", + "2019-01-02T14:54:12.000000000", + "2019-01-02T14:55:05.000000000", + "2019-01-02T14:57:04.000000000", + "2019-01-02T14:57:18.000000000", + "2019-01-02T15:01:44.000000000", + "2019-01-02T15:01:50.000000000", + "2019-01-02T15:03:01.000000000", + "2019-01-02T15:03:04.000000000", + "2019-01-02T15:03:55.000000000", + "2019-01-02T15:03:58.000000000", + "2019-01-02T15:04:25.000000000", + "2019-01-02T15:04:32.000000000", + "2019-01-02T15:05:19.000000000", + "2019-01-02T15:08:49.000000000", + "2019-01-02T15:08:51.000000000", + "2019-01-02T15:10:57.000000000", + "2019-01-02T15:11:12.000000000", + "2019-01-02T15:11:22.000000000", + "2019-01-02T15:13:12.000000000", + "2019-01-02T15:16:25.000000000", + "2019-01-02T15:16:28.000000000", + "2019-01-02T15:16:59.000000000", + "2019-01-02T15:17:51.000000000", + "2019-01-02T15:18:25.000000000", + "2019-01-02T15:21:36.000000000", + "2019-01-02T15:21:55.000000000", + "2019-01-02T15:25:44.000000000", + "2019-01-02T15:26:11.000000000", + "2019-01-02T15:27:02.000000000", + "2019-01-02T15:31:04.000000000", + "2019-01-02T15:33:38.000000000", + "2019-01-02T15:34:04.000000000", + "2019-01-02T15:36:22.000000000", + "2019-01-02T15:37:15.000000000", + "2019-01-02T15:37:39.000000000", + "2019-01-02T15:39:06.000000000", + "2019-01-02T15:41:19.000000000", + "2019-01-02T15:41:27.000000000", + "2019-01-02T15:42:43.000000000", + "2019-01-02T15:43:31.000000000", + "2019-01-02T15:44:06.000000000", + "2019-01-02T15:45:36.000000000", + "2019-01-02T15:47:47.000000000", + "2019-01-02T15:48:37.000000000", + "2019-01-02T15:49:08.000000000", + "2019-01-02T15:49:10.000000000", + "2019-01-02T15:50:00.000000000", + "2019-01-02T15:50:22.000000000", + "2019-01-02T15:50:58.000000000", + "2019-01-02T15:51:26.000000000", + "2019-01-02T15:53:52.000000000", + "2019-01-02T15:54:09.000000000", + "2019-01-02T15:55:00.000000000", + "2019-01-02T15:55:57.000000000", + "2019-01-02T15:56:11.000000000", + "2019-01-02T15:56:44.000000000", + "2019-01-02T15:57:04.000000000", + "2019-01-02T16:00:26.000000000", + "2019-01-02T16:01:52.000000000", + "2019-01-02T16:03:24.000000000", + "2019-01-02T16:03:28.000000000", + "2019-01-02T16:04:32.000000000", + "2019-01-02T16:06:01.000000000", + "2019-01-02T16:06:43.000000000", + "2019-01-02T16:06:48.000000000", + "2019-01-02T16:07:51.000000000", + "2019-01-02T16:08:06.000000000", + "2019-01-02T16:08:19.000000000", + "2019-01-02T16:08:24.000000000", + "2019-01-02T16:08:26.000000000", + "2019-01-02T16:08:48.000000000", + "2019-01-02T16:09:01.000000000", + "2019-01-02T16:09:43.000000000", + "2019-01-02T16:12:38.000000000", + "2019-01-02T16:13:11.000000000", + "2019-01-02T16:13:18.000000000", + "2019-01-02T16:13:51.000000000", + "2019-01-02T16:14:31.000000000", + "2019-01-02T16:15:03.000000000", + "2019-01-02T16:15:27.000000000", + "2019-01-02T16:16:02.000000000", + "2019-01-02T16:16:45.000000000", + "2019-01-02T16:17:06.000000000", + "2019-01-02T16:17:13.000000000", + "2019-01-02T16:18:13.000000000", + "2019-01-02T16:19:17.000000000", + "2019-01-02T16:19:31.000000000", + "2019-01-02T16:22:27.000000000", + "2019-01-02T16:23:43.000000000", + "2019-01-02T16:24:15.000000000", + "2019-01-02T16:26:51.000000000", + "2019-01-02T16:26:55.000000000", + "2019-01-02T16:27:21.000000000", + "2019-01-02T16:28:09.000000000", + "2019-01-02T16:29:29.000000000", + "2019-01-02T16:31:59.000000000", + "2019-01-02T16:32:15.000000000", + "2019-01-02T16:33:55.000000000", + "2019-01-02T16:37:59.000000000", + "2019-01-02T16:38:29.000000000", + "2019-01-02T16:39:14.000000000", + "2019-01-02T16:40:59.000000000", + "2019-01-02T16:41:43.000000000", + "2019-01-02T16:42:07.000000000", + "2019-01-02T16:43:53.000000000", + "2019-01-02T16:44:01.000000000", + "2019-01-02T16:44:47.000000000", + "2019-01-02T16:45:22.000000000", + "2019-01-02T16:46:49.000000000", + "2019-01-02T16:46:56.000000000", + "2019-01-02T16:48:18.000000000", + "2019-01-02T16:49:53.000000000", + "2019-01-02T16:55:59.000000000", + "2019-01-02T16:57:05.000000000", + "2019-01-02T16:58:29.000000000", + "2019-01-02T16:58:31.000000000", + "2019-01-02T16:58:56.000000000", + "2019-01-02T17:00:16.000000000", + "2019-01-02T17:01:22.000000000", + "2019-01-02T17:03:54.000000000", + "2019-01-02T17:04:02.000000000", + "2019-01-02T17:04:11.000000000", + "2019-01-02T17:04:27.000000000", + "2019-01-02T17:05:23.000000000", + "2019-01-02T17:05:42.000000000", + "2019-01-02T17:07:12.000000000", + "2019-01-02T17:08:04.000000000", + "2019-01-02T17:08:41.000000000", + "2019-01-02T17:09:24.000000000", + "2019-01-02T17:10:09.000000000", + "2019-01-02T17:10:26.000000000", + "2019-01-02T17:12:32.000000000", + "2019-01-02T17:12:50.000000000", + "2019-01-02T17:12:55.000000000", + "2019-01-02T17:13:10.000000000", + "2019-01-02T17:14:49.000000000", + "2019-01-02T17:15:09.000000000", + "2019-01-02T17:16:11.000000000", + "2019-01-02T17:17:52.000000000", + "2019-01-02T17:19:33.000000000", + "2019-01-02T17:20:11.000000000", + "2019-01-02T17:20:24.000000000", + "2019-01-02T17:21:14.000000000", + "2019-01-02T17:21:15.000000000", + "2019-01-02T17:21:56.000000000", + "2019-01-02T17:22:07.000000000", + "2019-01-02T17:22:21.000000000", + "2019-01-02T17:22:22.000000000", + "2019-01-02T17:23:39.000000000", + "2019-01-02T17:25:15.000000000", + "2019-01-02T17:25:19.000000000", + "2019-01-02T17:25:51.000000000", + "2019-01-02T17:26:33.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:28:09.000000000", + "2019-01-02T17:28:38.000000000", + "2019-01-02T17:28:54.000000000", + "2019-01-02T17:30:41.000000000", + "2019-01-02T17:31:38.000000000", + "2019-01-02T17:31:51.000000000", + "2019-01-02T17:33:33.000000000", + "2019-01-02T17:35:48.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:38:48.000000000", + "2019-01-02T17:39:59.000000000", + "2019-01-02T17:40:43.000000000", + "2019-01-02T17:40:55.000000000", + "2019-01-02T17:41:05.000000000", + "2019-01-02T17:43:22.000000000", + "2019-01-02T17:48:16.000000000", + "2019-01-02T17:48:56.000000000", + "2019-01-02T17:50:29.000000000", + "2019-01-02T17:50:56.000000000", + "2019-01-02T17:51:04.000000000", + "2019-01-02T17:53:22.000000000", + "2019-01-02T17:53:41.000000000", + "2019-01-02T17:53:43.000000000", + "2019-01-02T17:54:37.000000000", + "2019-01-02T17:55:06.000000000", + "2019-01-02T17:57:05.000000000", + "2019-01-02T18:00:53.000000000", + "2019-01-02T18:02:19.000000000", + "2019-01-02T18:02:32.000000000", + "2019-01-02T18:03:44.000000000", + "2019-01-02T18:05:34.000000000", + "2019-01-02T18:06:06.000000000", + "2019-01-02T18:06:19.000000000", + "2019-01-02T18:07:27.000000000", + "2019-01-02T18:07:44.000000000", + "2019-01-02T18:11:12.000000000", + "2019-01-02T18:12:11.000000000", + "2019-01-02T18:12:28.000000000", + "2019-01-02T18:12:43.000000000", + "2019-01-02T18:13:26.000000000", + "2019-01-02T18:14:48.000000000", + "2019-01-02T18:16:04.000000000", + "2019-01-02T18:20:13.000000000", + "2019-01-02T18:21:16.000000000", + "2019-01-02T18:21:22.000000000", + "2019-01-02T18:21:26.000000000", + "2019-01-02T18:21:34.000000000", + "2019-01-02T18:22:12.000000000", + "2019-01-02T18:23:17.000000000", + "2019-01-02T18:24:25.000000000", + "2019-01-02T18:25:07.000000000", + "2019-01-02T18:26:06.000000000", + "2019-01-02T18:26:11.000000000", + "2019-01-02T18:27:02.000000000", + "2019-01-02T18:27:57.000000000", + "2019-01-02T18:27:59.000000000", + "2019-01-02T18:30:05.000000000", + "2019-01-02T18:33:09.000000000", + "2019-01-02T18:33:26.000000000", + "2019-01-02T18:36:34.000000000", + "2019-01-02T18:37:08.000000000", + "2019-01-02T18:39:04.000000000", + "2019-01-02T18:40:19.000000000", + "2019-01-02T18:40:38.000000000", + "2019-01-02T18:40:54.000000000", + "2019-01-02T18:41:38.000000000", + "2019-01-02T18:41:55.000000000", + "2019-01-02T18:42:07.000000000", + "2019-01-02T18:42:33.000000000", + "2019-01-02T18:46:52.000000000", + "2019-01-02T18:50:41.000000000", + "2019-01-02T18:51:45.000000000", + "2019-01-02T18:51:51.000000000", + "2019-01-02T18:53:52.000000000", + "2019-01-02T18:54:09.000000000", + "2019-01-02T18:56:21.000000000", + "2019-01-02T18:56:33.000000000", + "2019-01-02T18:58:12.000000000", + "2019-01-02T18:59:24.000000000", + "2019-01-02T19:01:16.000000000", + "2019-01-02T19:01:17.000000000", + "2019-01-02T19:01:50.000000000", + "2019-01-02T19:02:17.000000000", + "2019-01-02T19:02:55.000000000", + "2019-01-02T19:03:34.000000000", + "2019-01-02T19:05:34.000000000", + "2019-01-02T19:07:31.000000000", + "2019-01-02T19:09:07.000000000", + "2019-01-02T19:09:53.000000000", + "2019-01-02T19:11:03.000000000", + "2019-01-02T19:11:42.000000000", + "2019-01-02T19:12:04.000000000", + "2019-01-02T19:12:21.000000000", + "2019-01-02T19:12:54.000000000", + "2019-01-02T19:13:15.000000000", + "2019-01-02T19:14:03.000000000", + "2019-01-02T19:15:18.000000000", + "2019-01-02T19:16:11.000000000", + "2019-01-02T19:17:02.000000000", + "2019-01-02T19:17:12.000000000", + "2019-01-02T19:17:58.000000000", + "2019-01-02T19:18:02.000000000", + "2019-01-02T19:18:06.000000000", + "2019-01-02T19:19:12.000000000", + "2019-01-02T19:20:23.000000000", + "2019-01-02T19:21:02.000000000", + "2019-01-02T19:21:04.000000000", + "2019-01-02T19:21:09.000000000", + "2019-01-02T19:22:05.000000000", + "2019-01-02T19:24:09.000000000", + "2019-01-02T19:25:19.000000000", + "2019-01-02T19:25:58.000000000", + "2019-01-02T19:26:35.000000000", + "2019-01-02T19:28:12.000000000", + "2019-01-02T19:29:22.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:30:17.000000000", + "2019-01-02T19:31:04.000000000", + "2019-01-02T19:31:30.000000000", + "2019-01-02T19:32:42.000000000", + "2019-01-02T19:35:31.000000000", + "2019-01-02T19:35:34.000000000", + "2019-01-02T19:35:51.000000000", + "2019-01-02T19:36:37.000000000", + "2019-01-02T19:40:50.000000000", + "2019-01-02T19:41:24.000000000", + "2019-01-02T19:41:25.000000000", + "2019-01-02T19:41:54.000000000", + "2019-01-02T19:43:30.000000000", + "2019-01-02T19:44:21.000000000", + "2019-01-02T19:44:43.000000000", + "2019-01-02T19:44:58.000000000", + "2019-01-02T19:46:38.000000000", + "2019-01-02T19:48:20.000000000", + "2019-01-02T19:50:10.000000000", + "2019-01-02T19:52:16.000000000", + "2019-01-02T19:53:56.000000000", + "2019-01-02T19:54:02.000000000", + "2019-01-02T19:55:32.000000000", + "2019-01-02T19:55:34.000000000", + "2019-01-02T19:57:06.000000000", + "2019-01-02T19:57:33.000000000", + "2019-01-02T19:58:16.000000000", + "2019-01-02T19:59:16.000000000", + "2019-01-02T20:00:41.000000000", + "2019-01-02T20:01:58.000000000", + "2019-01-02T20:02:03.000000000", + "2019-01-02T20:02:18.000000000", + "2019-01-02T20:04:01.000000000", + "2019-01-02T20:04:06.000000000", + "2019-01-02T20:04:13.000000000", + "2019-01-02T20:04:26.000000000", + "2019-01-02T20:04:45.000000000", + "2019-01-02T20:05:57.000000000", + "2019-01-02T20:07:12.000000000", + "2019-01-02T20:07:36.000000000", + "2019-01-02T20:08:50.000000000", + "2019-01-02T20:10:46.000000000", + "2019-01-02T20:10:49.000000000", + "2019-01-02T20:11:41.000000000", + "2019-01-02T20:13:26.000000000", + "2019-01-02T20:15:15.000000000", + "2019-01-02T20:17:15.000000000", + "2019-01-02T20:18:32.000000000", + "2019-01-02T20:19:58.000000000", + "2019-01-02T20:24:07.000000000", + "2019-01-02T20:25:39.000000000", + "2019-01-02T20:26:34.000000000", + "2019-01-02T20:27:38.000000000", + "2019-01-02T20:30:33.000000000", + "2019-01-02T20:31:32.000000000", + "2019-01-02T20:32:58.000000000", + "2019-01-02T20:33:01.000000000", + "2019-01-02T20:33:27.000000000", + "2019-01-02T20:33:33.000000000", + "2019-01-02T20:34:40.000000000", + "2019-01-02T20:36:38.000000000", + "2019-01-02T20:38:11.000000000", + "2019-01-02T20:38:36.000000000", + "2019-01-02T20:38:43.000000000", + "2019-01-02T20:39:19.000000000", + "2019-01-02T20:45:46.000000000", + "2019-01-02T20:47:07.000000000", + "2019-01-02T20:47:47.000000000", + "2019-01-02T20:48:51.000000000", + "2019-01-02T20:49:03.000000000", + "2019-01-02T20:50:46.000000000", + "2019-01-02T20:52:00.000000000", + "2019-01-02T20:52:35.000000000", + "2019-01-02T20:53:07.000000000", + "2019-01-02T20:53:39.000000000", + "2019-01-02T20:54:07.000000000", + "2019-01-02T20:54:10.000000000", + "2019-01-02T20:56:40.000000000", + "2019-01-02T21:00:04.000000000", + "2019-01-02T21:00:28.000000000", + "2019-01-02T21:00:42.000000000", + "2019-01-02T21:02:37.000000000", + "2019-01-02T21:03:27.000000000", + "2019-01-02T21:04:43.000000000", + "2019-01-02T21:04:45.000000000", + "2019-01-02T21:05:13.000000000", + "2019-01-02T21:06:07.000000000", + "2019-01-02T21:06:17.000000000", + "2019-01-02T21:06:22.000000000", + "2019-01-02T21:09:07.000000000", + "2019-01-02T21:10:55.000000000", + "2019-01-02T21:11:46.000000000", + "2019-01-02T21:12:12.000000000", + "2019-01-02T21:12:21.000000000", + "2019-01-02T21:12:42.000000000", + "2019-01-02T21:12:57.000000000", + "2019-01-02T21:14:13.000000000", + "2019-01-02T21:15:03.000000000", + "2019-01-02T21:17:34.000000000", + "2019-01-02T21:19:13.000000000", + "2019-01-02T21:22:06.000000000", + "2019-01-02T21:22:43.000000000", + "2019-01-02T21:22:45.000000000", + "2019-01-02T21:24:19.000000000", + "2019-01-02T21:24:29.000000000", + "2019-01-02T21:24:52.000000000", + "2019-01-02T21:27:03.000000000", + "2019-01-02T21:27:13.000000000", + "2019-01-02T21:27:51.000000000", + "2019-01-02T21:28:09.000000000", + "2019-01-02T21:30:28.000000000", + "2019-01-02T21:30:41.000000000", + "2019-01-02T21:31:48.000000000", + "2019-01-02T21:31:56.000000000", + "2019-01-02T21:33:09.000000000", + "2019-01-02T21:34:41.000000000", + "2019-01-02T21:35:21.000000000", + "2019-01-02T21:35:52.000000000", + "2019-01-02T21:36:07.000000000", + "2019-01-02T21:36:40.000000000", + "2019-01-02T21:37:00.000000000", + "2019-01-02T21:37:54.000000000", + "2019-01-02T21:38:01.000000000", + "2019-01-02T21:38:57.000000000", + "2019-01-02T21:40:04.000000000", + "2019-01-02T21:40:30.000000000", + "2019-01-02T21:41:59.000000000", + "2019-01-02T21:42:36.000000000", + "2019-01-02T21:43:33.000000000", + "2019-01-02T21:43:35.000000000", + "2019-01-02T21:45:43.000000000", + "2019-01-02T21:45:47.000000000", + "2019-01-02T21:46:43.000000000", + "2019-01-02T21:46:52.000000000", + "2019-01-02T21:47:23.000000000", + "2019-01-02T21:48:21.000000000", + "2019-01-02T21:48:39.000000000", + "2019-01-02T21:50:12.000000000", + "2019-01-02T21:50:28.000000000", + "2019-01-02T21:50:47.000000000", + "2019-01-02T21:50:55.000000000", + "2019-01-02T21:52:31.000000000", + "2019-01-02T21:53:03.000000000", + "2019-01-02T21:53:44.000000000", + "2019-01-02T21:54:17.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:59:37.000000000", + "2019-01-02T22:00:05.000000000", + "2019-01-02T22:00:39.000000000", + "2019-01-02T22:01:23.000000000", + "2019-01-02T22:02:15.000000000", + "2019-01-02T22:03:03.000000000", + "2019-01-02T22:03:39.000000000", + "2019-01-02T22:05:47.000000000", + "2019-01-02T22:07:38.000000000", + "2019-01-02T22:08:02.000000000", + "2019-01-02T22:09:57.000000000", + "2019-01-02T22:10:22.000000000", + "2019-01-02T22:10:57.000000000", + "2019-01-02T22:12:26.000000000", + "2019-01-02T22:12:29.000000000", + "2019-01-02T22:12:40.000000000", + "2019-01-02T22:12:55.000000000", + "2019-01-02T22:14:12.000000000", + "2019-01-02T22:14:48.000000000", + "2019-01-02T22:21:23.000000000", + "2019-01-02T22:22:10.000000000", + "2019-01-02T22:22:13.000000000", + "2019-01-02T22:23:14.000000000", + "2019-01-02T22:25:37.000000000", + "2019-01-02T22:26:00.000000000", + "2019-01-02T22:26:06.000000000", + "2019-01-02T22:27:07.000000000", + "2019-01-02T22:27:30.000000000", + "2019-01-02T22:27:50.000000000", + "2019-01-02T22:28:22.000000000", + "2019-01-02T22:31:01.000000000", + "2019-01-02T22:31:07.000000000", + "2019-01-02T22:31:33.000000000", + "2019-01-02T22:32:59.000000000", + "2019-01-02T22:33:54.000000000", + "2019-01-02T22:33:59.000000000", + "2019-01-02T22:34:00.000000000", + "2019-01-02T22:34:29.000000000", + "2019-01-02T22:34:38.000000000", + "2019-01-02T22:35:18.000000000", + "2019-01-02T22:35:30.000000000", + "2019-01-02T22:37:57.000000000", + "2019-01-02T22:42:13.000000000", + "2019-01-02T22:43:35.000000000", + "2019-01-02T22:44:28.000000000", + "2019-01-02T22:44:40.000000000", + "2019-01-02T22:44:58.000000000", + "2019-01-02T22:46:00.000000000", + "2019-01-02T22:46:09.000000000", + "2019-01-02T22:51:22.000000000", + "2019-01-02T22:54:31.000000000", + "2019-01-02T22:55:37.000000000", + "2019-01-02T22:56:08.000000000", + "2019-01-02T22:56:28.000000000", + "2019-01-02T22:56:38.000000000", + "2019-01-02T22:56:51.000000000", + "2019-01-02T22:58:01.000000000", + "2019-01-02T23:00:20.000000000", + "2019-01-02T23:04:36.000000000", + "2019-01-02T23:05:21.000000000", + "2019-01-02T23:07:55.000000000", + "2019-01-02T23:08:08.000000000", + "2019-01-02T23:09:35.000000000", + "2019-01-02T23:10:24.000000000", + "2019-01-02T23:10:59.000000000", + "2019-01-02T23:12:45.000000000", + "2019-01-02T23:12:54.000000000", + "2019-01-02T23:13:29.000000000", + "2019-01-02T23:13:48.000000000", + "2019-01-02T23:15:37.000000000", + "2019-01-02T23:15:40.000000000", + "2019-01-02T23:15:48.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:47.000000000", + "2019-01-02T23:16:59.000000000", + "2019-01-02T23:19:21.000000000", + "2019-01-02T23:19:23.000000000", + "2019-01-02T23:19:33.000000000", + "2019-01-02T23:20:01.000000000", + "2019-01-02T23:20:30.000000000", + "2019-01-02T23:20:42.000000000", + "2019-01-02T23:23:03.000000000", + "2019-01-02T23:24:53.000000000", + "2019-01-02T23:25:19.000000000", + "2019-01-02T23:25:43.000000000", + "2019-01-02T23:27:29.000000000", + "2019-01-02T23:28:31.000000000", + "2019-01-02T23:29:12.000000000", + "2019-01-02T23:29:41.000000000", + "2019-01-02T23:29:48.000000000", + "2019-01-02T23:30:09.000000000", + "2019-01-02T23:30:28.000000000", + "2019-01-02T23:32:14.000000000", + "2019-01-02T23:32:41.000000000", + "2019-01-02T23:33:00.000000000", + "2019-01-02T23:33:17.000000000", + "2019-01-02T23:33:42.000000000", + "2019-01-02T23:36:23.000000000", + "2019-01-02T23:36:58.000000000", + "2019-01-02T23:37:06.000000000", + "2019-01-02T23:37:10.000000000", + "2019-01-02T23:39:12.000000000", + "2019-01-02T23:40:01.000000000", + "2019-01-02T23:40:22.000000000", + "2019-01-02T23:40:30.000000000", + "2019-01-02T23:40:38.000000000", + "2019-01-02T23:42:11.000000000", + "2019-01-02T23:44:07.000000000", + "2019-01-02T23:44:20.000000000", + "2019-01-02T23:44:36.000000000", + "2019-01-02T23:44:56.000000000", + "2019-01-02T23:47:43.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:34.000000000", + "2019-01-02T23:51:10.000000000", + "2019-01-02T23:52:45.000000000", + "2019-01-02T23:53:39.000000000", + "2019-01-02T23:53:43.000000000", + "2019-01-02T23:53:56.000000000", + "2019-01-02T23:54:13.000000000", + "2019-01-02T23:54:19.000000000", + "2019-01-02T23:55:46.000000000", + "2019-01-02T23:57:47.000000000", + "2019-01-02T23:58:58.000000000", + "2019-01-02T23:59:34.000000000", + "2019-01-03T00:00:42.000000000", + "2019-01-03T00:01:36.000000000", + "2019-01-03T00:04:57.000000000", + "2019-01-03T00:05:13.000000000", + "2019-01-03T00:07:23.000000000", + "2019-01-03T00:08:21.000000000", + "2019-01-03T00:08:44.000000000", + "2019-01-03T00:09:44.000000000", + "2019-01-03T00:09:49.000000000", + "2019-01-03T00:10:22.000000000", + "2019-01-03T00:10:36.000000000", + "2019-01-03T00:11:36.000000000", + "2019-01-03T00:13:12.000000000", + "2019-01-03T00:14:12.000000000", + "2019-01-03T00:14:19.000000000", + "2019-01-03T00:15:38.000000000", + "2019-01-03T00:17:00.000000000", + "2019-01-03T00:17:01.000000000", + "2019-01-03T00:18:56.000000000", + "2019-01-03T00:19:04.000000000", + "2019-01-03T00:21:05.000000000", + "2019-01-03T00:25:46.000000000", + "2019-01-03T00:26:38.000000000", + "2019-01-03T00:27:26.000000000", + "2019-01-03T00:27:33.000000000", + "2019-01-03T00:28:26.000000000", + "2019-01-03T00:28:53.000000000", + "2019-01-03T00:29:32.000000000", + "2019-01-03T00:31:22.000000000", + "2019-01-03T00:31:55.000000000", + "2019-01-03T00:32:56.000000000", + "2019-01-03T00:33:35.000000000", + "2019-01-03T00:35:46.000000000", + "2019-01-03T00:35:47.000000000", + "2019-01-03T00:38:43.000000000", + "2019-01-03T00:38:52.000000000", + "2019-01-03T00:38:55.000000000", + "2019-01-03T00:39:18.000000000", + "2019-01-03T00:40:17.000000000", + "2019-01-03T00:40:25.000000000", + "2019-01-03T00:41:56.000000000", + "2019-01-03T00:42:04.000000000", + "2019-01-03T00:43:05.000000000", + "2019-01-03T00:43:20.000000000", + "2019-01-03T00:44:38.000000000", + "2019-01-03T00:45:57.000000000", + "2019-01-03T00:47:08.000000000", + "2019-01-03T00:47:34.000000000", + "2019-01-03T00:48:25.000000000", + "2019-01-03T00:49:05.000000000", + "2019-01-03T00:49:54.000000000", + "2019-01-03T00:50:56.000000000", + "2019-01-03T00:51:40.000000000", + "2019-01-03T00:51:59.000000000", + "2019-01-03T00:54:50.000000000", + "2019-01-03T00:55:50.000000000", + "2019-01-03T01:00:18.000000000", + "2019-01-03T01:00:41.000000000", + "2019-01-03T01:00:48.000000000", + "2019-01-03T01:01:25.000000000", + "2019-01-03T01:01:30.000000000", + "2019-01-03T01:01:38.000000000", + "2019-01-03T01:02:00.000000000", + "2019-01-03T01:02:07.000000000", + "2019-01-03T01:02:50.000000000", + "2019-01-03T01:04:03.000000000", + "2019-01-03T01:04:58.000000000", + "2019-01-03T01:05:09.000000000", + "2019-01-03T01:05:49.000000000", + "2019-01-03T01:06:00.000000000", + "2019-01-03T01:06:39.000000000", + "2019-01-03T01:08:38.000000000", + "2019-01-03T01:09:24.000000000", + "2019-01-03T01:09:39.000000000", + "2019-01-03T01:09:55.000000000", + "2019-01-03T01:10:15.000000000", + "2019-01-03T01:10:20.000000000", + "2019-01-03T01:10:59.000000000", + "2019-01-03T01:11:27.000000000", + "2019-01-03T01:12:27.000000000", + "2019-01-03T01:12:48.000000000", + "2019-01-03T01:15:11.000000000", + "2019-01-03T01:15:35.000000000", + "2019-01-03T01:18:59.000000000", + "2019-01-03T01:19:22.000000000", + "2019-01-03T01:19:47.000000000", + "2019-01-03T01:19:48.000000000", + "2019-01-03T01:22:00.000000000", + "2019-01-03T01:23:27.000000000", + "2019-01-03T01:24:52.000000000", + "2019-01-03T01:25:32.000000000", + "2019-01-03T01:27:00.000000000", + "2019-01-03T01:27:18.000000000", + "2019-01-03T01:28:38.000000000", + "2019-01-03T01:30:13.000000000", + "2019-01-03T01:31:43.000000000", + "2019-01-03T01:32:02.000000000", + "2019-01-03T01:32:16.000000000", + "2019-01-03T01:32:57.000000000", + "2019-01-03T01:33:45.000000000", + "2019-01-03T01:34:17.000000000", + "2019-01-03T01:34:35.000000000", + "2019-01-03T01:35:22.000000000", + "2019-01-03T01:35:25.000000000", + "2019-01-03T01:35:52.000000000", + "2019-01-03T01:35:54.000000000", + "2019-01-03T01:36:03.000000000", + "2019-01-03T01:36:20.000000000", + "2019-01-03T01:36:53.000000000", + "2019-01-03T01:39:59.000000000", + "2019-01-03T01:40:02.000000000", + "2019-01-03T01:40:20.000000000", + "2019-01-03T01:42:06.000000000", + "2019-01-03T01:42:39.000000000", + "2019-01-03T01:43:18.000000000", + "2019-01-03T01:43:24.000000000", + "2019-01-03T01:43:37.000000000", + "2019-01-03T01:43:51.000000000", + "2019-01-03T01:45:51.000000000", + "2019-01-03T01:46:07.000000000", + "2019-01-03T01:46:17.000000000", + "2019-01-03T01:46:23.000000000", + "2019-01-03T01:46:24.000000000", + "2019-01-03T01:46:28.000000000", + "2019-01-03T01:47:38.000000000", + "2019-01-03T01:48:01.000000000", + "2019-01-03T01:48:06.000000000", + "2019-01-03T01:49:13.000000000", + "2019-01-03T01:49:20.000000000", + "2019-01-03T01:50:08.000000000", + "2019-01-03T01:51:14.000000000", + "2019-01-03T01:51:24.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:54:02.000000000", + "2019-01-03T01:55:05.000000000", + "2019-01-03T01:55:43.000000000", + "2019-01-03T01:55:51.000000000", + "2019-01-03T01:56:34.000000000", + "2019-01-03T01:57:05.000000000", + "2019-01-03T01:57:54.000000000", + "2019-01-03T01:58:21.000000000", + "2019-01-03T01:58:38.000000000", + "2019-01-03T01:59:53.000000000", + "2019-01-03T02:00:41.000000000", + "2019-01-03T02:00:45.000000000", + "2019-01-03T02:02:29.000000000", + "2019-01-03T02:02:34.000000000", + "2019-01-03T02:02:48.000000000", + "2019-01-03T02:05:57.000000000", + "2019-01-03T02:08:02.000000000", + "2019-01-03T02:08:06.000000000", + "2019-01-03T02:08:46.000000000", + "2019-01-03T02:11:15.000000000", + "2019-01-03T02:11:25.000000000", + "2019-01-03T02:11:58.000000000", + "2019-01-03T02:12:51.000000000", + "2019-01-03T02:13:07.000000000", + "2019-01-03T02:14:54.000000000", + "2019-01-03T02:17:59.000000000", + "2019-01-03T02:18:33.000000000", + "2019-01-03T02:19:24.000000000", + "2019-01-03T02:21:32.000000000", + "2019-01-03T02:22:38.000000000", + "2019-01-03T02:24:28.000000000", + "2019-01-03T02:24:52.000000000", + "2019-01-03T02:25:02.000000000", + "2019-01-03T02:26:14.000000000", + "2019-01-03T02:26:40.000000000", + "2019-01-03T02:26:50.000000000", + "2019-01-03T02:28:05.000000000", + "2019-01-03T02:28:12.000000000", + "2019-01-03T02:29:51.000000000", + "2019-01-03T02:30:16.000000000", + "2019-01-03T02:31:31.000000000", + "2019-01-03T02:31:47.000000000", + "2019-01-03T02:33:24.000000000", + "2019-01-03T02:33:46.000000000", + "2019-01-03T02:35:04.000000000", + "2019-01-03T02:35:12.000000000", + "2019-01-03T02:37:10.000000000", + "2019-01-03T02:37:33.000000000", + "2019-01-03T02:37:57.000000000", + "2019-01-03T02:38:19.000000000", + "2019-01-03T02:38:21.000000000", + "2019-01-03T02:38:44.000000000", + "2019-01-03T02:38:53.000000000", + "2019-01-03T02:40:37.000000000", + "2019-01-03T02:43:50.000000000", + "2019-01-03T02:45:00.000000000", + "2019-01-03T02:45:19.000000000", + "2019-01-03T02:45:21.000000000", + "2019-01-03T02:50:58.000000000", + "2019-01-03T02:53:06.000000000", + "2019-01-03T02:55:14.000000000", + "2019-01-03T02:57:39.000000000", + "2019-01-03T02:58:13.000000000", + "2019-01-03T02:59:27.000000000", + "2019-01-03T02:59:49.000000000", + "2019-01-03T03:00:34.000000000", + "2019-01-03T03:03:31.000000000", + "2019-01-03T03:06:59.000000000", + "2019-01-03T03:08:30.000000000", + "2019-01-03T03:08:37.000000000", + "2019-01-03T03:11:37.000000000", + "2019-01-03T03:11:59.000000000", + "2019-01-03T03:14:43.000000000", + "2019-01-03T03:18:33.000000000", + "2019-01-03T03:20:40.000000000", + "2019-01-03T03:21:03.000000000", + "2019-01-03T03:21:28.000000000", + "2019-01-03T03:22:04.000000000", + "2019-01-03T03:26:39.000000000", + "2019-01-03T03:27:38.000000000", + "2019-01-03T03:28:01.000000000", + "2019-01-03T03:28:39.000000000", + "2019-01-03T03:29:01.000000000", + "2019-01-03T03:30:07.000000000", + "2019-01-03T03:33:58.000000000", + "2019-01-03T03:34:30.000000000", + "2019-01-03T03:34:40.000000000", + "2019-01-03T03:35:44.000000000", + "2019-01-03T03:37:22.000000000", + "2019-01-03T03:37:52.000000000", + "2019-01-03T03:38:19.000000000", + "2019-01-03T03:42:20.000000000", + "2019-01-03T03:42:28.000000000", + "2019-01-03T03:43:18.000000000", + "2019-01-03T03:46:41.000000000", + "2019-01-03T03:47:17.000000000", + "2019-01-03T03:47:36.000000000", + "2019-01-03T03:49:34.000000000", + "2019-01-03T03:52:18.000000000", + "2019-01-03T03:55:26.000000000", + "2019-01-03T03:59:23.000000000", + "2019-01-03T03:59:56.000000000", + "2019-01-03T04:00:00.000000000", + "2019-01-03T04:00:11.000000000", + "2019-01-03T04:00:14.000000000", + "2019-01-03T04:01:54.000000000", + "2019-01-03T04:02:07.000000000", + "2019-01-03T04:03:57.000000000", + "2019-01-03T04:05:32.000000000", + "2019-01-03T04:05:38.000000000", + "2019-01-03T04:07:51.000000000", + "2019-01-03T04:08:10.000000000", + "2019-01-03T04:08:24.000000000", + "2019-01-03T04:09:18.000000000", + "2019-01-03T04:10:26.000000000", + "2019-01-03T04:11:44.000000000", + "2019-01-03T04:13:09.000000000", + "2019-01-03T04:13:39.000000000", + "2019-01-03T04:16:42.000000000", + "2019-01-03T04:17:38.000000000", + "2019-01-03T04:18:02.000000000", + "2019-01-03T04:18:30.000000000", + "2019-01-03T04:18:37.000000000", + "2019-01-03T04:20:08.000000000", + "2019-01-03T04:20:16.000000000", + "2019-01-03T04:20:54.000000000", + "2019-01-03T04:22:08.000000000", + "2019-01-03T04:26:31.000000000", + "2019-01-03T04:28:06.000000000", + "2019-01-03T04:28:54.000000000", + "2019-01-03T04:30:36.000000000", + "2019-01-03T04:33:04.000000000", + "2019-01-03T04:33:08.000000000", + "2019-01-03T04:35:35.000000000", + "2019-01-03T04:35:53.000000000", + "2019-01-03T04:37:47.000000000", + "2019-01-03T04:39:34.000000000", + "2019-01-03T04:40:47.000000000", + "2019-01-03T04:41:31.000000000", + "2019-01-03T04:41:46.000000000", + "2019-01-03T04:42:05.000000000", + "2019-01-03T04:42:33.000000000", + "2019-01-03T04:42:59.000000000", + "2019-01-03T04:43:34.000000000", + "2019-01-03T04:44:13.000000000", + "2019-01-03T04:45:01.000000000", + "2019-01-03T04:45:10.000000000", + "2019-01-03T04:45:25.000000000", + "2019-01-03T04:46:32.000000000", + "2019-01-03T04:46:33.000000000", + "2019-01-03T04:46:46.000000000", + "2019-01-03T04:46:58.000000000", + "2019-01-03T04:47:00.000000000", + "2019-01-03T04:49:45.000000000", + "2019-01-03T04:50:11.000000000", + "2019-01-03T04:50:51.000000000", + "2019-01-03T04:51:05.000000000", + "2019-01-03T04:51:27.000000000", + "2019-01-03T04:51:39.000000000", + "2019-01-03T04:52:23.000000000", + "2019-01-03T04:52:34.000000000", + "2019-01-03T04:53:30.000000000", + "2019-01-03T04:55:38.000000000", + "2019-01-03T04:56:08.000000000", + "2019-01-03T04:56:33.000000000", + "2019-01-03T04:56:42.000000000", + "2019-01-03T05:00:21.000000000", + "2019-01-03T05:01:18.000000000", + "2019-01-03T05:02:18.000000000", + "2019-01-03T05:02:40.000000000", + "2019-01-03T05:03:06.000000000", + "2019-01-03T05:03:55.000000000", + "2019-01-03T05:06:02.000000000", + "2019-01-03T05:06:48.000000000", + "2019-01-03T05:08:45.000000000", + "2019-01-03T05:08:54.000000000", + "2019-01-03T05:09:04.000000000", + "2019-01-03T05:10:45.000000000", + "2019-01-03T05:12:41.000000000", + "2019-01-03T05:12:58.000000000", + "2019-01-03T05:13:30.000000000", + "2019-01-03T05:14:31.000000000", + "2019-01-03T05:16:24.000000000", + "2019-01-03T05:17:01.000000000", + "2019-01-03T05:17:29.000000000", + "2019-01-03T05:17:38.000000000", + "2019-01-03T05:18:23.000000000", + "2019-01-03T05:20:00.000000000", + "2019-01-03T05:22:32.000000000", + "2019-01-03T05:22:38.000000000", + "2019-01-03T05:23:05.000000000", + "2019-01-03T05:23:16.000000000", + "2019-01-03T05:23:42.000000000", + "2019-01-03T05:25:04.000000000", + "2019-01-03T05:25:15.000000000", + "2019-01-03T05:26:31.000000000", + "2019-01-03T05:33:27.000000000", + "2019-01-03T05:35:03.000000000", + "2019-01-03T05:35:15.000000000", + "2019-01-03T05:36:38.000000000", + "2019-01-03T05:36:45.000000000", + "2019-01-03T05:38:27.000000000", + "2019-01-03T05:38:43.000000000", + "2019-01-03T05:38:49.000000000", + "2019-01-03T05:38:52.000000000", + "2019-01-03T05:39:04.000000000", + "2019-01-03T05:41:56.000000000", + "2019-01-03T05:44:42.000000000", + "2019-01-03T05:46:41.000000000", + "2019-01-03T05:46:56.000000000", + "2019-01-03T05:47:03.000000000", + "2019-01-03T05:47:09.000000000", + "2019-01-03T05:47:34.000000000", + "2019-01-03T05:48:04.000000000", + "2019-01-03T05:48:13.000000000", + "2019-01-03T05:49:11.000000000", + "2019-01-03T05:51:27.000000000", + "2019-01-03T05:51:42.000000000", + "2019-01-03T05:51:52.000000000", + "2019-01-03T05:52:52.000000000", + "2019-01-03T05:54:29.000000000", + "2019-01-03T05:54:37.000000000", + "2019-01-03T05:55:12.000000000", + "2019-01-03T05:55:38.000000000", + "2019-01-03T05:56:47.000000000", + "2019-01-03T05:57:22.000000000", + "2019-01-03T05:59:30.000000000", + "2019-01-03T06:01:44.000000000", + "2019-01-03T06:01:47.000000000", + "2019-01-03T06:02:32.000000000", + "2019-01-03T06:05:27.000000000", + "2019-01-03T06:06:09.000000000", + "2019-01-03T06:06:38.000000000", + "2019-01-03T06:07:16.000000000", + "2019-01-03T06:08:57.000000000", + "2019-01-03T06:09:16.000000000", + "2019-01-03T06:10:13.000000000", + "2019-01-03T06:10:31.000000000", + "2019-01-03T06:11:40.000000000", + "2019-01-03T06:12:04.000000000", + "2019-01-03T06:13:19.000000000", + "2019-01-03T06:15:59.000000000", + "2019-01-03T06:17:53.000000000", + "2019-01-03T06:18:10.000000000", + "2019-01-03T06:18:51.000000000", + "2019-01-03T06:18:54.000000000", + "2019-01-03T06:19:44.000000000", + "2019-01-03T06:20:09.000000000", + "2019-01-03T06:20:19.000000000", + "2019-01-03T06:22:28.000000000", + "2019-01-03T06:23:13.000000000", + "2019-01-03T06:23:52.000000000", + "2019-01-03T06:23:57.000000000", + "2019-01-03T06:24:19.000000000", + "2019-01-03T06:24:32.000000000", + "2019-01-03T06:25:14.000000000", + "2019-01-03T06:26:29.000000000", + "2019-01-03T06:26:39.000000000", + "2019-01-03T06:27:25.000000000", + "2019-01-03T06:27:48.000000000", + "2019-01-03T06:27:59.000000000", + "2019-01-03T06:28:53.000000000", + "2019-01-03T06:30:16.000000000", + "2019-01-03T06:30:42.000000000", + "2019-01-03T06:31:06.000000000", + "2019-01-03T06:31:16.000000000", + "2019-01-03T06:31:28.000000000", + "2019-01-03T06:31:58.000000000", + "2019-01-03T06:35:02.000000000", + "2019-01-03T06:35:42.000000000", + "2019-01-03T06:36:00.000000000", + "2019-01-03T06:36:41.000000000", + "2019-01-03T06:37:30.000000000", + "2019-01-03T06:41:32.000000000", + "2019-01-03T06:42:59.000000000", + "2019-01-03T06:44:17.000000000", + "2019-01-03T06:45:08.000000000", + "2019-01-03T06:46:24.000000000", + "2019-01-03T06:46:27.000000000", + "2019-01-03T06:49:50.000000000", + "2019-01-03T06:52:16.000000000", + "2019-01-03T06:53:31.000000000", + "2019-01-03T06:53:50.000000000", + "2019-01-03T06:54:35.000000000", + "2019-01-03T06:55:50.000000000", + "2019-01-03T06:56:33.000000000", + "2019-01-03T06:56:35.000000000", + "2019-01-03T06:56:47.000000000", + "2019-01-03T06:56:48.000000000", + "2019-01-03T06:57:25.000000000", + "2019-01-03T06:58:12.000000000", + "2019-01-03T06:59:57.000000000", + "2019-01-03T07:01:35.000000000", + "2019-01-03T07:03:07.000000000", + "2019-01-03T07:03:19.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:06:23.000000000", + "2019-01-03T07:06:47.000000000", + "2019-01-03T07:08:05.000000000", + "2019-01-03T07:08:15.000000000", + "2019-01-03T07:11:10.000000000", + "2019-01-03T07:14:07.000000000", + "2019-01-03T07:15:32.000000000", + "2019-01-03T07:15:33.000000000", + "2019-01-03T07:15:50.000000000", + "2019-01-03T07:16:22.000000000", + "2019-01-03T07:17:29.000000000", + "2019-01-03T07:17:45.000000000", + "2019-01-03T07:18:21.000000000", + "2019-01-03T07:20:48.000000000", + "2019-01-03T07:21:15.000000000", + "2019-01-03T07:22:46.000000000", + "2019-01-03T07:25:41.000000000", + "2019-01-03T07:27:18.000000000", + "2019-01-03T07:27:21.000000000", + "2019-01-03T07:27:22.000000000", + "2019-01-03T07:28:59.000000000", + "2019-01-03T07:29:07.000000000", + "2019-01-03T07:29:47.000000000", + "2019-01-03T07:31:36.000000000", + "2019-01-03T07:32:04.000000000", + "2019-01-03T07:32:47.000000000", + "2019-01-03T07:33:05.000000000", + "2019-01-03T07:33:44.000000000", + "2019-01-03T07:34:20.000000000", + "2019-01-03T07:35:38.000000000", + "2019-01-03T07:38:58.000000000", + "2019-01-03T07:41:01.000000000", + "2019-01-03T07:42:46.000000000", + "2019-01-03T07:43:20.000000000", + "2019-01-03T07:44:12.000000000", + "2019-01-03T07:44:20.000000000", + "2019-01-03T07:45:46.000000000", + "2019-01-03T07:47:21.000000000", + "2019-01-03T07:48:32.000000000", + "2019-01-03T07:49:34.000000000", + "2019-01-03T07:51:56.000000000", + "2019-01-03T07:53:59.000000000", + "2019-01-03T07:56:15.000000000", + "2019-01-03T07:56:43.000000000", + "2019-01-03T07:58:10.000000000", + "2019-01-03T07:59:46.000000000", + "2019-01-03T08:00:56.000000000", + "2019-01-03T08:01:08.000000000", + "2019-01-03T08:01:56.000000000", + "2019-01-03T08:03:52.000000000", + "2019-01-03T08:05:08.000000000", + "2019-01-03T08:06:22.000000000", + "2019-01-03T08:07:10.000000000", + "2019-01-03T08:07:37.000000000", + "2019-01-03T08:08:33.000000000", + "2019-01-03T08:08:44.000000000", + "2019-01-03T08:11:52.000000000", + "2019-01-03T08:13:45.000000000", + "2019-01-03T08:14:23.000000000", + "2019-01-03T08:15:42.000000000", + "2019-01-03T08:16:16.000000000", + "2019-01-03T08:16:17.000000000", + "2019-01-03T08:16:39.000000000", + "2019-01-03T08:16:43.000000000", + "2019-01-03T08:20:27.000000000", + "2019-01-03T08:21:38.000000000", + "2019-01-03T08:21:47.000000000", + "2019-01-03T08:22:16.000000000", + "2019-01-03T08:22:28.000000000", + "2019-01-03T08:23:15.000000000", + "2019-01-03T08:23:25.000000000", + "2019-01-03T08:24:38.000000000", + "2019-01-03T08:24:40.000000000", + "2019-01-03T08:24:44.000000000", + "2019-01-03T08:25:15.000000000", + "2019-01-03T08:26:17.000000000", + "2019-01-03T08:26:30.000000000", + "2019-01-03T08:26:33.000000000", + "2019-01-03T08:27:10.000000000", + "2019-01-03T08:27:32.000000000", + "2019-01-03T08:28:36.000000000", + "2019-01-03T08:29:20.000000000", + "2019-01-03T08:30:21.000000000", + "2019-01-03T08:31:10.000000000", + "2019-01-03T08:32:51.000000000", + "2019-01-03T08:34:18.000000000", + "2019-01-03T08:35:47.000000000", + "2019-01-03T08:37:17.000000000", + "2019-01-03T08:37:43.000000000", + "2019-01-03T08:39:19.000000000", + "2019-01-03T08:39:22.000000000", + "2019-01-03T08:39:33.000000000", + "2019-01-03T08:39:52.000000000", + "2019-01-03T08:40:14.000000000", + "2019-01-03T08:40:15.000000000", + "2019-01-03T08:40:23.000000000", + "2019-01-03T08:42:06.000000000", + "2019-01-03T08:42:09.000000000", + "2019-01-03T08:43:04.000000000", + "2019-01-03T08:43:38.000000000", + "2019-01-03T08:44:15.000000000", + "2019-01-03T08:44:22.000000000", + "2019-01-03T08:45:09.000000000", + "2019-01-03T08:45:16.000000000", + "2019-01-03T08:48:34.000000000", + "2019-01-03T08:49:48.000000000", + "2019-01-03T08:50:49.000000000", + "2019-01-03T08:50:51.000000000", + "2019-01-03T08:52:21.000000000", + "2019-01-03T08:53:05.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:20.000000000", + "2019-01-03T08:56:02.000000000", + "2019-01-03T08:56:13.000000000", + "2019-01-03T08:57:43.000000000", + "2019-01-03T08:58:53.000000000", + "2019-01-03T08:59:17.000000000", + "2019-01-03T08:59:50.000000000", + "2019-01-03T09:00:11.000000000", + "2019-01-03T09:00:19.000000000", + "2019-01-03T09:01:06.000000000", + "2019-01-03T09:02:22.000000000", + "2019-01-03T09:02:47.000000000", + "2019-01-03T09:03:24.000000000", + "2019-01-03T09:03:30.000000000", + "2019-01-03T09:07:53.000000000", + "2019-01-03T09:08:30.000000000", + "2019-01-03T09:09:07.000000000", + "2019-01-03T09:10:43.000000000", + "2019-01-03T09:11:19.000000000", + "2019-01-03T09:11:35.000000000", + "2019-01-03T09:12:08.000000000", + "2019-01-03T09:14:34.000000000", + "2019-01-03T09:14:38.000000000", + "2019-01-03T09:15:12.000000000", + "2019-01-03T09:18:24.000000000", + "2019-01-03T09:19:49.000000000", + "2019-01-03T09:20:11.000000000", + "2019-01-03T09:20:51.000000000", + "2019-01-03T09:21:11.000000000", + "2019-01-03T09:21:14.000000000", + "2019-01-03T09:21:44.000000000", + "2019-01-03T09:22:16.000000000", + "2019-01-03T09:22:21.000000000", + "2019-01-03T09:23:25.000000000", + "2019-01-03T09:24:34.000000000", + "2019-01-03T09:25:49.000000000", + "2019-01-03T09:25:50.000000000", + "2019-01-03T09:26:02.000000000", + "2019-01-03T09:27:06.000000000", + "2019-01-03T09:28:18.000000000", + "2019-01-03T09:28:29.000000000", + "2019-01-03T09:29:48.000000000", + "2019-01-03T09:29:59.000000000", + "2019-01-03T09:31:21.000000000", + "2019-01-03T09:32:49.000000000", + "2019-01-03T09:34:33.000000000", + "2019-01-03T09:35:15.000000000", + "2019-01-03T09:36:51.000000000", + "2019-01-03T09:37:30.000000000", + "2019-01-03T09:37:52.000000000", + "2019-01-03T09:38:37.000000000", + "2019-01-03T09:41:20.000000000", + "2019-01-03T09:41:30.000000000", + "2019-01-03T09:41:43.000000000", + "2019-01-03T09:43:10.000000000", + "2019-01-03T09:44:15.000000000", + "2019-01-03T09:44:35.000000000", + "2019-01-03T09:46:24.000000000", + "2019-01-03T09:46:28.000000000", + "2019-01-03T09:46:55.000000000", + "2019-01-03T09:47:15.000000000", + "2019-01-03T09:47:54.000000000", + "2019-01-03T09:49:10.000000000", + "2019-01-03T09:50:25.000000000", + "2019-01-03T09:51:02.000000000", + "2019-01-03T09:51:24.000000000", + "2019-01-03T09:51:50.000000000", + "2019-01-03T09:51:58.000000000", + "2019-01-03T09:52:58.000000000", + "2019-01-03T09:54:03.000000000", + "2019-01-03T09:58:05.000000000", + "2019-01-03T09:58:15.000000000", + "2019-01-03T09:58:38.000000000", + "2019-01-03T09:59:42.000000000", + "2019-01-03T10:02:57.000000000", + "2019-01-03T10:04:32.000000000", + "2019-01-03T10:04:35.000000000", + "2019-01-03T10:05:11.000000000", + "2019-01-03T10:06:08.000000000", + "2019-01-03T10:06:20.000000000", + "2019-01-03T10:06:23.000000000", + "2019-01-03T10:08:52.000000000", + "2019-01-03T10:09:06.000000000", + "2019-01-03T10:09:44.000000000", + "2019-01-03T10:10:48.000000000", + "2019-01-03T10:11:29.000000000", + "2019-01-03T10:11:48.000000000", + "2019-01-03T10:13:04.000000000", + "2019-01-03T10:13:32.000000000", + "2019-01-03T10:14:33.000000000", + "2019-01-03T10:14:39.000000000", + "2019-01-03T10:15:11.000000000", + "2019-01-03T10:19:56.000000000", + "2019-01-03T10:21:26.000000000", + "2019-01-03T10:21:45.000000000", + "2019-01-03T10:24:03.000000000", + "2019-01-03T10:24:59.000000000", + "2019-01-03T10:26:51.000000000", + "2019-01-03T10:27:09.000000000", + "2019-01-03T10:27:39.000000000", + "2019-01-03T10:28:24.000000000", + "2019-01-03T10:28:41.000000000", + "2019-01-03T10:28:51.000000000", + "2019-01-03T10:30:09.000000000", + "2019-01-03T10:32:35.000000000", + "2019-01-03T10:32:59.000000000", + "2019-01-03T10:34:15.000000000", + "2019-01-03T10:34:29.000000000", + "2019-01-03T10:34:34.000000000", + "2019-01-03T10:35:47.000000000", + "2019-01-03T10:36:21.000000000", + "2019-01-03T10:36:28.000000000", + "2019-01-03T10:38:32.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:34.000000000", + "2019-01-03T10:40:26.000000000", + "2019-01-03T10:41:42.000000000", + "2019-01-03T10:43:02.000000000", + "2019-01-03T10:45:58.000000000", + "2019-01-03T10:47:55.000000000", + "2019-01-03T10:48:03.000000000", + "2019-01-03T10:48:09.000000000", + "2019-01-03T10:49:47.000000000", + "2019-01-03T10:50:47.000000000", + "2019-01-03T10:51:00.000000000", + "2019-01-03T10:51:15.000000000", + "2019-01-03T10:51:54.000000000", + "2019-01-03T10:51:59.000000000", + "2019-01-03T10:52:15.000000000", + "2019-01-03T10:52:46.000000000", + "2019-01-03T10:53:46.000000000", + "2019-01-03T10:55:24.000000000", + "2019-01-03T10:59:26.000000000", + "2019-01-03T11:00:10.000000000", + "2019-01-03T11:00:43.000000000", + "2019-01-03T11:00:44.000000000", + "2019-01-03T11:02:04.000000000", + "2019-01-03T11:03:36.000000000", + "2019-01-03T11:04:28.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:41.000000000", + "2019-01-03T11:05:55.000000000", + "2019-01-03T11:06:06.000000000", + "2019-01-03T11:06:45.000000000", + "2019-01-03T11:07:23.000000000", + "2019-01-03T11:08:31.000000000", + "2019-01-03T11:09:45.000000000", + "2019-01-03T11:10:01.000000000", + "2019-01-03T11:12:03.000000000", + "2019-01-03T11:12:05.000000000", + "2019-01-03T11:13:00.000000000", + "2019-01-03T11:14:19.000000000", + "2019-01-03T11:16:54.000000000", + "2019-01-03T11:18:16.000000000", + "2019-01-03T11:20:33.000000000", + "2019-01-03T11:22:37.000000000", + "2019-01-03T11:22:42.000000000", + "2019-01-03T11:23:53.000000000", + "2019-01-03T11:25:57.000000000", + "2019-01-03T11:26:17.000000000", + "2019-01-03T11:27:00.000000000", + "2019-01-03T11:27:35.000000000", + "2019-01-03T11:28:18.000000000", + "2019-01-03T11:28:45.000000000", + "2019-01-03T11:29:02.000000000", + "2019-01-03T11:29:22.000000000", + "2019-01-03T11:30:31.000000000", + "2019-01-03T11:32:12.000000000", + "2019-01-03T11:32:25.000000000", + "2019-01-03T11:33:04.000000000", + "2019-01-03T11:33:11.000000000", + "2019-01-03T11:34:35.000000000", + "2019-01-03T11:34:42.000000000", + "2019-01-03T11:36:37.000000000", + "2019-01-03T11:37:40.000000000", + "2019-01-03T11:40:08.000000000", + "2019-01-03T11:40:24.000000000", + "2019-01-03T11:40:42.000000000", + "2019-01-03T11:41:44.000000000", + "2019-01-03T11:42:03.000000000", + "2019-01-03T11:42:04.000000000", + "2019-01-03T11:42:50.000000000", + "2019-01-03T11:45:25.000000000", + "2019-01-03T11:46:02.000000000", + "2019-01-03T11:46:37.000000000", + "2019-01-03T11:48:22.000000000", + "2019-01-03T11:48:26.000000000", + "2019-01-03T11:51:18.000000000", + "2019-01-03T11:51:26.000000000", + "2019-01-03T11:52:02.000000000", + "2019-01-03T11:55:01.000000000", + "2019-01-03T11:55:16.000000000", + "2019-01-03T11:55:50.000000000", + "2019-01-03T11:56:20.000000000", + "2019-01-03T11:56:56.000000000", + "2019-01-03T11:57:13.000000000", + "2019-01-03T11:57:15.000000000", + "2019-01-03T11:57:22.000000000", + "2019-01-03T11:59:20.000000000", + "2019-01-03T11:59:22.000000000", + "2019-01-03T12:00:25.000000000", + "2019-01-03T12:00:44.000000000", + "2019-01-03T12:00:57.000000000", + "2019-01-03T12:02:08.000000000", + "2019-01-03T12:02:09.000000000", + "2019-01-03T12:02:34.000000000", + "2019-01-03T12:04:34.000000000", + "2019-01-03T12:06:47.000000000", + "2019-01-03T12:07:25.000000000", + "2019-01-03T12:07:42.000000000", + "2019-01-03T12:08:07.000000000", + "2019-01-03T12:08:53.000000000", + "2019-01-03T12:09:13.000000000", + "2019-01-03T12:09:23.000000000", + "2019-01-03T12:09:27.000000000", + "2019-01-03T12:09:57.000000000", + "2019-01-03T12:10:14.000000000", + "2019-01-03T12:10:27.000000000", + "2019-01-03T12:10:46.000000000", + "2019-01-03T12:11:16.000000000", + "2019-01-03T12:15:24.000000000", + "2019-01-03T12:15:43.000000000", + "2019-01-03T12:16:34.000000000", + "2019-01-03T12:16:52.000000000", + "2019-01-03T12:17:09.000000000", + "2019-01-03T12:18:43.000000000", + "2019-01-03T12:20:43.000000000", + "2019-01-03T12:20:57.000000000", + "2019-01-03T12:21:28.000000000", + "2019-01-03T12:21:39.000000000", + "2019-01-03T12:23:09.000000000", + "2019-01-03T12:23:56.000000000", + "2019-01-03T12:24:50.000000000", + "2019-01-03T12:25:17.000000000", + "2019-01-03T12:25:19.000000000", + "2019-01-03T12:25:51.000000000", + "2019-01-03T12:26:38.000000000", + "2019-01-03T12:26:44.000000000", + "2019-01-03T12:26:49.000000000", + "2019-01-03T12:26:50.000000000", + "2019-01-03T12:29:28.000000000", + "2019-01-03T12:29:42.000000000", + "2019-01-03T12:30:41.000000000", + "2019-01-03T12:31:22.000000000", + "2019-01-03T12:31:37.000000000", + "2019-01-03T12:32:18.000000000", + "2019-01-03T12:33:35.000000000", + "2019-01-03T12:34:04.000000000", + "2019-01-03T12:35:01.000000000", + "2019-01-03T12:35:45.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:40:35.000000000", + "2019-01-03T12:42:04.000000000", + "2019-01-03T12:42:07.000000000", + "2019-01-03T12:46:06.000000000", + "2019-01-03T12:46:43.000000000", + "2019-01-03T12:46:45.000000000", + "2019-01-03T12:50:17.000000000", + "2019-01-03T12:52:16.000000000", + "2019-01-03T12:52:37.000000000", + "2019-01-03T12:52:38.000000000", + "2019-01-03T12:52:45.000000000", + "2019-01-03T12:54:11.000000000", + "2019-01-03T12:54:41.000000000", + "2019-01-03T12:57:07.000000000", + "2019-01-03T13:00:02.000000000", + "2019-01-03T13:00:10.000000000", + "2019-01-03T13:00:13.000000000", + "2019-01-03T13:00:33.000000000", + "2019-01-03T13:02:02.000000000", + "2019-01-03T13:02:38.000000000", + "2019-01-03T13:02:51.000000000", + "2019-01-03T13:04:35.000000000", + "2019-01-03T13:06:29.000000000", + "2019-01-03T13:07:25.000000000", + "2019-01-03T13:08:55.000000000", + "2019-01-03T13:09:53.000000000", + "2019-01-03T13:11:50.000000000", + "2019-01-03T13:12:18.000000000", + "2019-01-03T13:12:24.000000000", + "2019-01-03T13:13:29.000000000", + "2019-01-03T13:14:08.000000000", + "2019-01-03T13:14:22.000000000", + "2019-01-03T13:15:04.000000000", + "2019-01-03T13:15:47.000000000", + "2019-01-03T13:15:52.000000000", + "2019-01-03T13:16:19.000000000", + "2019-01-03T13:20:10.000000000", + "2019-01-03T13:21:04.000000000", + "2019-01-03T13:21:11.000000000", + "2019-01-03T13:21:36.000000000", + "2019-01-03T13:22:51.000000000", + "2019-01-03T13:23:14.000000000", + "2019-01-03T13:23:35.000000000", + "2019-01-03T13:23:54.000000000", + "2019-01-03T13:24:54.000000000", + "2019-01-03T13:26:59.000000000", + "2019-01-03T13:27:34.000000000", + "2019-01-03T13:31:57.000000000", + "2019-01-03T13:32:03.000000000", + "2019-01-03T13:35:05.000000000", + "2019-01-03T13:36:32.000000000", + "2019-01-03T13:39:38.000000000", + "2019-01-03T13:40:05.000000000", + "2019-01-03T13:40:40.000000000", + "2019-01-03T13:41:47.000000000", + "2019-01-03T13:42:35.000000000", + "2019-01-03T13:42:54.000000000", + "2019-01-03T13:47:05.000000000", + "2019-01-03T13:47:09.000000000", + "2019-01-03T13:50:34.000000000", + "2019-01-03T13:50:36.000000000", + "2019-01-03T13:51:33.000000000", + "2019-01-03T13:52:21.000000000", + "2019-01-03T13:52:39.000000000", + "2019-01-03T13:54:14.000000000", + "2019-01-03T13:56:27.000000000", + "2019-01-03T13:59:46.000000000", + "2019-01-03T13:59:48.000000000", + "2019-01-03T14:04:36.000000000", + "2019-01-03T14:07:34.000000000", + "2019-01-03T14:08:20.000000000", + "2019-01-03T14:08:29.000000000", + "2019-01-03T14:08:45.000000000", + "2019-01-03T14:11:48.000000000", + "2019-01-03T14:11:58.000000000", + "2019-01-03T14:14:21.000000000", + "2019-01-03T14:15:05.000000000", + "2019-01-03T14:16:57.000000000", + "2019-01-03T14:17:27.000000000", + "2019-01-03T14:18:30.000000000", + "2019-01-03T14:19:44.000000000", + "2019-01-03T14:21:06.000000000", + "2019-01-03T14:21:12.000000000", + "2019-01-03T14:23:05.000000000", + "2019-01-03T14:23:40.000000000", + "2019-01-03T14:24:15.000000000", + "2019-01-03T14:26:30.000000000", + "2019-01-03T14:26:37.000000000", + "2019-01-03T14:27:14.000000000", + "2019-01-03T14:27:37.000000000", + "2019-01-03T14:28:03.000000000", + "2019-01-03T14:28:05.000000000", + "2019-01-03T14:28:07.000000000", + "2019-01-03T14:30:35.000000000", + "2019-01-03T14:31:41.000000000", + "2019-01-03T14:33:37.000000000", + "2019-01-03T14:33:38.000000000", + "2019-01-03T14:36:28.000000000", + "2019-01-03T14:36:38.000000000", + "2019-01-03T14:36:58.000000000", + "2019-01-03T14:37:57.000000000", + "2019-01-03T14:38:16.000000000", + "2019-01-03T14:38:38.000000000", + "2019-01-03T14:38:51.000000000", + "2019-01-03T14:39:06.000000000", + "2019-01-03T14:39:44.000000000", + "2019-01-03T14:42:29.000000000", + "2019-01-03T14:42:32.000000000", + "2019-01-03T14:42:59.000000000", + "2019-01-03T14:43:26.000000000", + "2019-01-03T14:43:44.000000000", + "2019-01-03T14:45:39.000000000", + "2019-01-03T14:46:22.000000000", + "2019-01-03T14:48:37.000000000", + "2019-01-03T14:49:55.000000000", + "2019-01-03T14:49:59.000000000", + "2019-01-03T14:51:41.000000000", + "2019-01-03T14:52:09.000000000", + "2019-01-03T14:53:36.000000000", + "2019-01-03T14:53:42.000000000", + "2019-01-03T14:55:28.000000000", + "2019-01-03T14:55:46.000000000", + "2019-01-03T14:55:50.000000000", + "2019-01-03T14:56:04.000000000", + "2019-01-03T14:56:45.000000000", + "2019-01-03T14:59:18.000000000", + "2019-01-03T15:02:51.000000000", + "2019-01-03T15:04:04.000000000", + "2019-01-03T15:05:23.000000000", + "2019-01-03T15:06:33.000000000", + "2019-01-03T15:08:22.000000000", + "2019-01-03T15:08:25.000000000", + "2019-01-03T15:09:06.000000000", + "2019-01-03T15:10:16.000000000", + "2019-01-03T15:11:59.000000000", + "2019-01-03T15:14:15.000000000", + "2019-01-03T15:15:20.000000000", + "2019-01-03T15:15:46.000000000", + "2019-01-03T15:15:50.000000000", + "2019-01-03T15:16:08.000000000", + "2019-01-03T15:16:18.000000000", + "2019-01-03T15:18:36.000000000", + "2019-01-03T15:19:21.000000000", + "2019-01-03T15:20:06.000000000", + "2019-01-03T15:20:16.000000000", + "2019-01-03T15:22:00.000000000", + "2019-01-03T15:22:36.000000000", + "2019-01-03T15:26:35.000000000", + "2019-01-03T15:29:04.000000000", + "2019-01-03T15:30:35.000000000", + "2019-01-03T15:31:54.000000000", + "2019-01-03T15:31:59.000000000", + "2019-01-03T15:36:04.000000000", + "2019-01-03T15:40:34.000000000", + "2019-01-03T15:41:02.000000000", + "2019-01-03T15:41:20.000000000", + "2019-01-03T15:44:19.000000000", + "2019-01-03T15:44:49.000000000", + "2019-01-03T15:45:20.000000000", + "2019-01-03T15:45:40.000000000", + "2019-01-03T15:46:49.000000000", + "2019-01-03T15:46:51.000000000", + "2019-01-03T15:47:13.000000000", + "2019-01-03T15:49:10.000000000", + "2019-01-03T15:50:05.000000000", + "2019-01-03T15:50:27.000000000", + "2019-01-03T15:51:35.000000000", + "2019-01-03T15:52:36.000000000", + "2019-01-03T15:54:57.000000000", + "2019-01-03T15:54:59.000000000", + "2019-01-03T15:56:05.000000000", + "2019-01-03T15:56:18.000000000", + "2019-01-03T15:57:04.000000000", + "2019-01-03T15:57:35.000000000", + "2019-01-03T15:57:58.000000000", + "2019-01-03T15:58:50.000000000", + "2019-01-03T16:01:15.000000000", + "2019-01-03T16:01:28.000000000", + "2019-01-03T16:02:41.000000000", + "2019-01-03T16:04:54.000000000", + "2019-01-03T16:06:28.000000000", + "2019-01-03T16:06:34.000000000", + "2019-01-03T16:07:27.000000000", + "2019-01-03T16:07:39.000000000", + "2019-01-03T16:07:40.000000000", + "2019-01-03T16:09:04.000000000", + "2019-01-03T16:10:10.000000000", + "2019-01-03T16:10:29.000000000", + "2019-01-03T16:10:46.000000000", + "2019-01-03T16:11:12.000000000", + "2019-01-03T16:11:22.000000000", + "2019-01-03T16:11:32.000000000", + "2019-01-03T16:13:09.000000000", + "2019-01-03T16:15:45.000000000", + "2019-01-03T16:16:08.000000000", + "2019-01-03T16:16:20.000000000", + "2019-01-03T16:16:36.000000000", + "2019-01-03T16:16:39.000000000", + "2019-01-03T16:16:56.000000000", + "2019-01-03T16:17:22.000000000", + "2019-01-03T16:18:11.000000000", + "2019-01-03T16:18:45.000000000", + "2019-01-03T16:18:50.000000000", + "2019-01-03T16:18:59.000000000", + "2019-01-03T16:19:05.000000000", + "2019-01-03T16:20:22.000000000", + "2019-01-03T16:20:45.000000000", + "2019-01-03T16:21:38.000000000", + "2019-01-03T16:23:28.000000000", + "2019-01-03T16:24:15.000000000", + "2019-01-03T16:24:49.000000000", + "2019-01-03T16:25:44.000000000", + "2019-01-03T16:25:52.000000000", + "2019-01-03T16:26:49.000000000", + "2019-01-03T16:32:47.000000000", + "2019-01-03T16:33:24.000000000", + "2019-01-03T16:33:57.000000000", + "2019-01-03T16:35:26.000000000", + "2019-01-03T16:38:45.000000000", + "2019-01-03T16:40:04.000000000", + "2019-01-03T16:41:39.000000000", + "2019-01-03T16:43:17.000000000", + "2019-01-03T16:44:29.000000000", + "2019-01-03T16:44:36.000000000", + "2019-01-03T16:44:43.000000000", + "2019-01-03T16:46:39.000000000", + "2019-01-03T16:47:01.000000000", + "2019-01-03T16:47:21.000000000", + "2019-01-03T16:47:39.000000000", + "2019-01-03T16:50:10.000000000", + "2019-01-03T16:50:15.000000000", + "2019-01-03T16:50:40.000000000", + "2019-01-03T16:51:48.000000000", + "2019-01-03T16:52:56.000000000", + "2019-01-03T16:55:12.000000000", + "2019-01-03T16:55:13.000000000", + "2019-01-03T16:55:35.000000000", + "2019-01-03T16:57:08.000000000", + "2019-01-03T17:03:07.000000000", + "2019-01-03T17:03:28.000000000", + "2019-01-03T17:03:38.000000000", + "2019-01-03T17:03:51.000000000", + "2019-01-03T17:05:08.000000000", + "2019-01-03T17:05:34.000000000", + "2019-01-03T17:06:26.000000000", + "2019-01-03T17:06:46.000000000", + "2019-01-03T17:07:15.000000000", + "2019-01-03T17:08:32.000000000", + "2019-01-03T17:09:07.000000000", + "2019-01-03T17:13:16.000000000", + "2019-01-03T17:13:47.000000000", + "2019-01-03T17:16:26.000000000", + "2019-01-03T17:16:37.000000000", + "2019-01-03T17:16:42.000000000", + "2019-01-03T17:17:07.000000000", + "2019-01-03T17:17:28.000000000", + "2019-01-03T17:21:43.000000000", + "2019-01-03T17:22:23.000000000", + "2019-01-03T17:23:27.000000000", + "2019-01-03T17:23:31.000000000", + "2019-01-03T17:24:30.000000000", + "2019-01-03T17:24:55.000000000", + "2019-01-03T17:26:48.000000000", + "2019-01-03T17:27:28.000000000", + "2019-01-03T17:28:14.000000000", + "2019-01-03T17:29:29.000000000", + "2019-01-03T17:29:58.000000000", + "2019-01-03T17:30:05.000000000", + "2019-01-03T17:30:23.000000000", + "2019-01-03T17:31:23.000000000", + "2019-01-03T17:32:17.000000000", + "2019-01-03T17:33:02.000000000", + "2019-01-03T17:33:54.000000000", + "2019-01-03T17:34:00.000000000", + "2019-01-03T17:34:37.000000000", + "2019-01-03T17:39:19.000000000", + "2019-01-03T17:39:25.000000000", + "2019-01-03T17:40:07.000000000", + "2019-01-03T17:40:30.000000000", + "2019-01-03T17:40:48.000000000", + "2019-01-03T17:42:01.000000000", + "2019-01-03T17:42:52.000000000", + "2019-01-03T17:44:19.000000000", + "2019-01-03T17:44:40.000000000", + "2019-01-03T17:47:01.000000000", + "2019-01-03T17:47:08.000000000", + "2019-01-03T17:47:25.000000000", + "2019-01-03T17:48:03.000000000", + "2019-01-03T17:48:18.000000000", + "2019-01-03T17:49:13.000000000", + "2019-01-03T17:50:32.000000000", + "2019-01-03T17:52:36.000000000", + "2019-01-03T17:53:05.000000000", + "2019-01-03T17:53:44.000000000", + "2019-01-03T17:53:48.000000000", + "2019-01-03T17:54:12.000000000", + "2019-01-03T17:54:32.000000000", + "2019-01-03T17:55:35.000000000", + "2019-01-03T17:56:37.000000000", + "2019-01-03T17:58:11.000000000", + "2019-01-03T17:58:35.000000000", + "2019-01-03T17:59:16.000000000", + "2019-01-03T17:59:29.000000000", + "2019-01-03T18:02:39.000000000", + "2019-01-03T18:05:34.000000000", + "2019-01-03T18:06:13.000000000", + "2019-01-03T18:08:09.000000000", + "2019-01-03T18:08:27.000000000", + "2019-01-03T18:09:08.000000000", + "2019-01-03T18:10:45.000000000", + "2019-01-03T18:12:20.000000000", + "2019-01-03T18:12:22.000000000", + "2019-01-03T18:14:40.000000000", + "2019-01-03T18:15:22.000000000", + "2019-01-03T18:15:25.000000000", + "2019-01-03T18:17:29.000000000", + "2019-01-03T18:18:08.000000000", + "2019-01-03T18:19:03.000000000", + "2019-01-03T18:19:21.000000000", + "2019-01-03T18:21:51.000000000", + "2019-01-03T18:21:56.000000000", + "2019-01-03T18:23:16.000000000", + "2019-01-03T18:23:36.000000000", + "2019-01-03T18:23:58.000000000", + "2019-01-03T18:24:08.000000000", + "2019-01-03T18:24:35.000000000", + "2019-01-03T18:24:57.000000000", + "2019-01-03T18:26:14.000000000", + "2019-01-03T18:27:48.000000000", + "2019-01-03T18:28:09.000000000", + "2019-01-03T18:28:13.000000000", + "2019-01-03T18:29:01.000000000", + "2019-01-03T18:29:23.000000000", + "2019-01-03T18:29:45.000000000", + "2019-01-03T18:33:41.000000000", + "2019-01-03T18:35:34.000000000", + "2019-01-03T18:36:59.000000000", + "2019-01-03T18:37:51.000000000", + "2019-01-03T18:38:00.000000000", + "2019-01-03T18:38:36.000000000", + "2019-01-03T18:39:53.000000000", + "2019-01-03T18:40:45.000000000", + "2019-01-03T18:41:08.000000000", + "2019-01-03T18:41:28.000000000", + "2019-01-03T18:45:04.000000000", + "2019-01-03T18:45:17.000000000", + "2019-01-03T18:45:23.000000000", + "2019-01-03T18:46:43.000000000", + "2019-01-03T18:47:03.000000000", + "2019-01-03T18:47:06.000000000", + "2019-01-03T18:49:00.000000000", + "2019-01-03T18:49:30.000000000", + "2019-01-03T18:51:14.000000000", + "2019-01-03T18:51:51.000000000", + "2019-01-03T18:52:19.000000000", + "2019-01-03T18:54:02.000000000", + "2019-01-03T18:54:42.000000000", + "2019-01-03T18:56:26.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:48.000000000", + "2019-01-03T18:56:50.000000000", + "2019-01-03T18:58:05.000000000", + "2019-01-03T18:59:52.000000000", + "2019-01-03T19:03:10.000000000", + "2019-01-03T19:05:42.000000000", + "2019-01-03T19:05:46.000000000", + "2019-01-03T19:06:18.000000000", + "2019-01-03T19:06:56.000000000", + "2019-01-03T19:07:06.000000000", + "2019-01-03T19:08:01.000000000", + "2019-01-03T19:08:09.000000000", + "2019-01-03T19:10:34.000000000", + "2019-01-03T19:11:34.000000000", + "2019-01-03T19:13:52.000000000", + "2019-01-03T19:14:30.000000000", + "2019-01-03T19:15:10.000000000", + "2019-01-03T19:17:19.000000000", + "2019-01-03T19:18:35.000000000", + "2019-01-03T19:18:36.000000000", + "2019-01-03T19:20:15.000000000", + "2019-01-03T19:21:17.000000000", + "2019-01-03T19:22:43.000000000", + "2019-01-03T19:23:05.000000000", + "2019-01-03T19:23:10.000000000", + "2019-01-03T19:27:17.000000000", + "2019-01-03T19:27:27.000000000", + "2019-01-03T19:30:30.000000000", + "2019-01-03T19:30:58.000000000", + "2019-01-03T19:31:22.000000000", + "2019-01-03T19:31:46.000000000", + "2019-01-03T19:32:41.000000000", + "2019-01-03T19:34:06.000000000", + "2019-01-03T19:34:21.000000000", + "2019-01-03T19:36:15.000000000", + "2019-01-03T19:36:33.000000000", + "2019-01-03T19:37:33.000000000", + "2019-01-03T19:38:12.000000000", + "2019-01-03T19:40:09.000000000", + "2019-01-03T19:41:56.000000000", + "2019-01-03T19:45:20.000000000", + "2019-01-03T19:47:31.000000000", + "2019-01-03T19:48:12.000000000", + "2019-01-03T19:49:20.000000000", + "2019-01-03T19:50:30.000000000", + "2019-01-03T19:52:33.000000000", + "2019-01-03T19:52:50.000000000", + "2019-01-03T19:53:36.000000000", + "2019-01-03T19:55:48.000000000", + "2019-01-03T19:55:50.000000000", + "2019-01-03T19:57:13.000000000", + "2019-01-03T19:58:14.000000000", + "2019-01-03T19:59:19.000000000", + "2019-01-03T20:02:04.000000000", + "2019-01-03T20:02:42.000000000", + "2019-01-03T20:03:24.000000000", + "2019-01-03T20:06:45.000000000", + "2019-01-03T20:08:06.000000000", + "2019-01-03T20:08:14.000000000", + "2019-01-03T20:08:29.000000000", + "2019-01-03T20:08:35.000000000", + "2019-01-03T20:09:49.000000000", + "2019-01-03T20:10:07.000000000", + "2019-01-03T20:12:48.000000000", + "2019-01-03T20:16:26.000000000", + "2019-01-03T20:18:11.000000000", + "2019-01-03T20:19:18.000000000", + "2019-01-03T20:19:19.000000000", + "2019-01-03T20:20:01.000000000", + "2019-01-03T20:20:07.000000000", + "2019-01-03T20:20:25.000000000", + "2019-01-03T20:20:58.000000000", + "2019-01-03T20:21:26.000000000", + "2019-01-03T20:22:43.000000000", + "2019-01-03T20:23:21.000000000", + "2019-01-03T20:23:53.000000000", + "2019-01-03T20:24:11.000000000", + "2019-01-03T20:24:48.000000000", + "2019-01-03T20:25:22.000000000", + "2019-01-03T20:25:30.000000000", + "2019-01-03T20:25:58.000000000", + "2019-01-03T20:26:52.000000000", + "2019-01-03T20:26:56.000000000", + "2019-01-03T20:27:35.000000000", + "2019-01-03T20:27:41.000000000", + "2019-01-03T20:30:37.000000000", + "2019-01-03T20:32:08.000000000", + "2019-01-03T20:34:28.000000000", + "2019-01-03T20:34:50.000000000", + "2019-01-03T20:35:41.000000000", + "2019-01-03T20:38:15.000000000", + "2019-01-03T20:40:04.000000000", + "2019-01-03T20:40:55.000000000", + "2019-01-03T20:41:53.000000000", + "2019-01-03T20:42:33.000000000", + "2019-01-03T20:43:47.000000000", + "2019-01-03T20:43:50.000000000", + "2019-01-03T20:43:57.000000000", + "2019-01-03T20:45:56.000000000", + "2019-01-03T20:46:08.000000000", + "2019-01-03T20:48:22.000000000", + "2019-01-03T20:51:04.000000000", + "2019-01-03T20:53:30.000000000", + "2019-01-03T20:53:31.000000000", + "2019-01-03T20:55:25.000000000", + "2019-01-03T20:56:13.000000000", + "2019-01-03T20:57:00.000000000", + "2019-01-03T20:57:31.000000000", + "2019-01-03T20:58:46.000000000", + "2019-01-03T20:59:04.000000000", + "2019-01-03T20:59:30.000000000", + "2019-01-03T20:59:58.000000000", + "2019-01-03T21:00:08.000000000", + "2019-01-03T21:01:14.000000000", + "2019-01-03T21:01:52.000000000", + "2019-01-03T21:01:59.000000000", + "2019-01-03T21:02:22.000000000", + "2019-01-03T21:03:01.000000000", + "2019-01-03T21:03:17.000000000", + "2019-01-03T21:03:35.000000000", + "2019-01-03T21:04:24.000000000", + "2019-01-03T21:05:16.000000000", + "2019-01-03T21:05:20.000000000", + "2019-01-03T21:08:09.000000000", + "2019-01-03T21:08:23.000000000", + "2019-01-03T21:08:51.000000000", + "2019-01-03T21:09:53.000000000", + "2019-01-03T21:10:20.000000000", + "2019-01-03T21:10:39.000000000", + "2019-01-03T21:11:04.000000000", + "2019-01-03T21:12:26.000000000", + "2019-01-03T21:13:33.000000000", + "2019-01-03T21:14:26.000000000", + "2019-01-03T21:16:02.000000000", + "2019-01-03T21:16:35.000000000", + "2019-01-03T21:18:03.000000000", + "2019-01-03T21:20:44.000000000", + "2019-01-03T21:21:40.000000000", + "2019-01-03T21:22:13.000000000", + "2019-01-03T21:22:21.000000000", + "2019-01-03T21:22:47.000000000", + "2019-01-03T21:22:52.000000000", + "2019-01-03T21:23:11.000000000", + "2019-01-03T21:23:31.000000000", + "2019-01-03T21:23:46.000000000", + "2019-01-03T21:23:58.000000000", + "2019-01-03T21:25:09.000000000", + "2019-01-03T21:26:01.000000000", + "2019-01-03T21:26:49.000000000", + "2019-01-03T21:27:13.000000000", + "2019-01-03T21:30:51.000000000", + "2019-01-03T21:31:27.000000000", + "2019-01-03T21:32:08.000000000", + "2019-01-03T21:32:41.000000000", + "2019-01-03T21:32:49.000000000", + "2019-01-03T21:34:30.000000000", + "2019-01-03T21:35:46.000000000", + "2019-01-03T21:36:08.000000000", + "2019-01-03T21:36:20.000000000", + "2019-01-03T21:38:48.000000000", + "2019-01-03T21:39:31.000000000", + "2019-01-03T21:39:44.000000000", + "2019-01-03T21:44:00.000000000", + "2019-01-03T21:44:06.000000000", + "2019-01-03T21:44:34.000000000", + "2019-01-03T21:45:44.000000000", + "2019-01-03T21:45:52.000000000", + "2019-01-03T21:47:06.000000000", + "2019-01-03T21:47:41.000000000", + "2019-01-03T21:48:54.000000000", + "2019-01-03T21:49:48.000000000", + "2019-01-03T21:51:46.000000000", + "2019-01-03T21:51:56.000000000", + "2019-01-03T21:53:20.000000000", + "2019-01-03T21:53:39.000000000", + "2019-01-03T21:55:39.000000000", + "2019-01-03T21:55:52.000000000", + "2019-01-03T21:56:22.000000000", + "2019-01-03T21:56:31.000000000", + "2019-01-03T21:57:43.000000000", + "2019-01-03T21:59:21.000000000", + "2019-01-03T22:00:20.000000000", + "2019-01-03T22:00:29.000000000", + "2019-01-03T22:00:47.000000000", + "2019-01-03T22:01:02.000000000", + "2019-01-03T22:01:05.000000000", + "2019-01-03T22:01:17.000000000", + "2019-01-03T22:02:47.000000000", + "2019-01-03T22:04:58.000000000", + "2019-01-03T22:05:02.000000000", + "2019-01-03T22:07:00.000000000", + "2019-01-03T22:07:07.000000000", + "2019-01-03T22:07:19.000000000", + "2019-01-03T22:08:42.000000000", + "2019-01-03T22:09:17.000000000", + "2019-01-03T22:09:54.000000000", + "2019-01-03T22:10:38.000000000", + "2019-01-03T22:11:39.000000000", + "2019-01-03T22:12:15.000000000", + "2019-01-03T22:12:20.000000000", + "2019-01-03T22:13:07.000000000", + "2019-01-03T22:14:06.000000000", + "2019-01-03T22:15:33.000000000", + "2019-01-03T22:16:25.000000000", + "2019-01-03T22:16:47.000000000", + "2019-01-03T22:17:38.000000000", + "2019-01-03T22:18:10.000000000", + "2019-01-03T22:18:35.000000000", + "2019-01-03T22:20:08.000000000", + "2019-01-03T22:23:05.000000000", + "2019-01-03T22:24:38.000000000", + "2019-01-03T22:25:25.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:28:55.000000000", + "2019-01-03T22:29:08.000000000", + "2019-01-03T22:30:53.000000000", + "2019-01-03T22:31:13.000000000", + "2019-01-03T22:32:33.000000000", + "2019-01-03T22:34:19.000000000", + "2019-01-03T22:37:51.000000000", + "2019-01-03T22:37:59.000000000", + "2019-01-03T22:38:19.000000000", + "2019-01-03T22:39:13.000000000", + "2019-01-03T22:41:38.000000000", + "2019-01-03T22:41:49.000000000", + "2019-01-03T22:41:57.000000000", + "2019-01-03T22:43:52.000000000", + "2019-01-03T22:45:05.000000000", + "2019-01-03T22:45:50.000000000", + "2019-01-03T22:47:44.000000000", + "2019-01-03T22:48:14.000000000", + "2019-01-03T22:51:22.000000000", + "2019-01-03T22:52:20.000000000", + "2019-01-03T22:53:44.000000000", + "2019-01-03T22:55:59.000000000", + "2019-01-03T22:56:00.000000000", + "2019-01-03T22:56:20.000000000", + "2019-01-03T22:59:22.000000000", + "2019-01-03T22:59:47.000000000", + "2019-01-03T22:59:56.000000000", + "2019-01-03T23:01:51.000000000", + "2019-01-03T23:01:53.000000000", + "2019-01-03T23:04:23.000000000", + "2019-01-03T23:04:50.000000000", + "2019-01-03T23:05:49.000000000", + "2019-01-03T23:06:30.000000000", + "2019-01-03T23:07:14.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:46.000000000", + "2019-01-03T23:13:52.000000000", + "2019-01-03T23:13:54.000000000", + "2019-01-03T23:14:27.000000000", + "2019-01-03T23:14:42.000000000", + "2019-01-03T23:16:21.000000000", + "2019-01-03T23:17:32.000000000", + "2019-01-03T23:17:45.000000000", + "2019-01-03T23:18:21.000000000", + "2019-01-03T23:18:39.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:20:20.000000000", + "2019-01-03T23:21:04.000000000", + "2019-01-03T23:21:13.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:27:27.000000000", + "2019-01-03T23:27:34.000000000", + "2019-01-03T23:29:13.000000000", + "2019-01-03T23:31:04.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:34:06.000000000", + "2019-01-03T23:36:51.000000000", + "2019-01-03T23:37:04.000000000", + "2019-01-03T23:38:08.000000000", + "2019-01-03T23:38:30.000000000", + "2019-01-03T23:39:07.000000000", + "2019-01-03T23:39:20.000000000", + "2019-01-03T23:39:52.000000000", + "2019-01-03T23:39:56.000000000", + "2019-01-03T23:40:06.000000000", + "2019-01-03T23:41:21.000000000", + "2019-01-03T23:42:06.000000000", + "2019-01-03T23:42:14.000000000", + "2019-01-03T23:42:50.000000000", + "2019-01-03T23:45:20.000000000", + "2019-01-03T23:47:05.000000000", + "2019-01-03T23:47:25.000000000", + "2019-01-03T23:49:12.000000000", + "2019-01-03T23:49:34.000000000", + "2019-01-03T23:50:36.000000000", + "2019-01-03T23:51:23.000000000", + "2019-01-03T23:51:40.000000000", + "2019-01-03T23:53:04.000000000", + "2019-01-03T23:54:32.000000000", + "2019-01-03T23:55:44.000000000", + "2019-01-03T23:56:54.000000000", + "2019-01-03T23:57:48.000000000", + "2019-01-04T00:01:34.000000000", + "2019-01-04T00:02:19.000000000", + "2019-01-04T00:04:39.000000000", + "2019-01-04T00:05:46.000000000", + "2019-01-04T00:06:39.000000000", + "2019-01-04T00:07:34.000000000", + "2019-01-04T00:08:56.000000000", + "2019-01-04T00:09:47.000000000", + "2019-01-04T00:11:19.000000000", + "2019-01-04T00:11:41.000000000", + "2019-01-04T00:12:07.000000000", + "2019-01-04T00:14:01.000000000", + "2019-01-04T00:14:18.000000000", + "2019-01-04T00:15:31.000000000", + "2019-01-04T00:16:19.000000000", + "2019-01-04T00:16:44.000000000", + "2019-01-04T00:17:21.000000000", + "2019-01-04T00:18:10.000000000", + "2019-01-04T00:18:43.000000000", + "2019-01-04T00:19:00.000000000", + "2019-01-04T00:19:12.000000000", + "2019-01-04T00:19:41.000000000", + "2019-01-04T00:21:32.000000000", + "2019-01-04T00:23:17.000000000", + "2019-01-04T00:31:25.000000000", + "2019-01-04T00:33:20.000000000", + "2019-01-04T00:33:37.000000000", + "2019-01-04T00:35:39.000000000", + "2019-01-04T00:35:45.000000000", + "2019-01-04T00:37:14.000000000", + "2019-01-04T00:39:14.000000000", + "2019-01-04T00:39:29.000000000", + "2019-01-04T00:40:11.000000000", + "2019-01-04T00:40:57.000000000", + "2019-01-04T00:41:04.000000000", + "2019-01-04T00:42:49.000000000", + "2019-01-04T00:43:13.000000000", + "2019-01-04T00:43:37.000000000", + "2019-01-04T00:44:21.000000000", + "2019-01-04T00:44:42.000000000", + "2019-01-04T00:45:25.000000000", + "2019-01-04T00:45:54.000000000", + "2019-01-04T00:46:05.000000000", + "2019-01-04T00:47:01.000000000", + "2019-01-04T00:47:04.000000000", + "2019-01-04T00:47:44.000000000", + "2019-01-04T00:48:32.000000000", + "2019-01-04T00:48:55.000000000", + "2019-01-04T00:49:13.000000000", + "2019-01-04T00:49:56.000000000", + "2019-01-04T00:51:10.000000000", + "2019-01-04T00:51:50.000000000", + "2019-01-04T00:54:59.000000000", + "2019-01-04T00:55:23.000000000", + "2019-01-04T00:56:27.000000000", + "2019-01-04T00:56:42.000000000", + "2019-01-04T00:56:59.000000000", + "2019-01-04T00:57:41.000000000", + "2019-01-04T00:57:53.000000000", + "2019-01-04T00:58:24.000000000", + "2019-01-04T00:58:47.000000000", + "2019-01-04T01:00:23.000000000", + "2019-01-04T01:00:34.000000000", + "2019-01-04T01:03:09.000000000", + "2019-01-04T01:03:28.000000000", + "2019-01-04T01:04:34.000000000", + "2019-01-04T01:04:56.000000000", + "2019-01-04T01:05:15.000000000", + "2019-01-04T01:05:46.000000000", + "2019-01-04T01:05:59.000000000", + "2019-01-04T01:06:02.000000000", + "2019-01-04T01:06:20.000000000", + "2019-01-04T01:07:26.000000000", + "2019-01-04T01:09:04.000000000", + "2019-01-04T01:09:38.000000000", + "2019-01-04T01:11:08.000000000", + "2019-01-04T01:11:54.000000000", + "2019-01-04T01:14:01.000000000", + "2019-01-04T01:15:55.000000000", + "2019-01-04T01:16:51.000000000", + "2019-01-04T01:17:12.000000000", + "2019-01-04T01:17:36.000000000", + "2019-01-04T01:18:06.000000000", + "2019-01-04T01:18:43.000000000", + "2019-01-04T01:21:27.000000000", + "2019-01-04T01:21:35.000000000", + "2019-01-04T01:21:49.000000000", + "2019-01-04T01:24:44.000000000", + "2019-01-04T01:25:22.000000000", + "2019-01-04T01:25:33.000000000", + "2019-01-04T01:26:42.000000000", + "2019-01-04T01:27:42.000000000", + "2019-01-04T01:28:29.000000000", + "2019-01-04T01:28:50.000000000", + "2019-01-04T01:29:58.000000000", + "2019-01-04T01:30:46.000000000", + "2019-01-04T01:30:48.000000000", + "2019-01-04T01:30:57.000000000", + "2019-01-04T01:31:19.000000000", + "2019-01-04T01:31:31.000000000", + "2019-01-04T01:31:56.000000000", + "2019-01-04T01:33:33.000000000", + "2019-01-04T01:33:59.000000000", + "2019-01-04T01:34:32.000000000", + "2019-01-04T01:36:02.000000000", + "2019-01-04T01:36:38.000000000", + "2019-01-04T01:37:47.000000000", + "2019-01-04T01:39:26.000000000", + "2019-01-04T01:40:00.000000000", + "2019-01-04T01:40:57.000000000", + "2019-01-04T01:41:07.000000000", + "2019-01-04T01:42:41.000000000", + "2019-01-04T01:43:29.000000000", + "2019-01-04T01:44:39.000000000", + "2019-01-04T01:46:10.000000000", + "2019-01-04T01:46:42.000000000", + "2019-01-04T01:47:02.000000000", + "2019-01-04T01:47:52.000000000", + "2019-01-04T01:48:12.000000000", + "2019-01-04T01:48:47.000000000", + "2019-01-04T01:49:50.000000000", + "2019-01-04T01:49:55.000000000", + "2019-01-04T01:50:27.000000000", + "2019-01-04T01:52:12.000000000", + "2019-01-04T01:53:34.000000000", + "2019-01-04T01:55:03.000000000", + "2019-01-04T01:55:50.000000000", + "2019-01-04T01:56:37.000000000", + "2019-01-04T01:57:09.000000000", + "2019-01-04T01:57:52.000000000", + "2019-01-04T01:57:56.000000000", + "2019-01-04T01:59:05.000000000", + "2019-01-04T02:00:00.000000000", + "2019-01-04T02:01:05.000000000", + "2019-01-04T02:01:17.000000000", + "2019-01-04T02:03:14.000000000", + "2019-01-04T02:03:20.000000000", + "2019-01-04T02:04:56.000000000", + "2019-01-04T02:05:53.000000000", + "2019-01-04T02:06:45.000000000", + "2019-01-04T02:06:46.000000000", + "2019-01-04T02:08:13.000000000", + "2019-01-04T02:10:11.000000000", + "2019-01-04T02:11:01.000000000", + "2019-01-04T02:12:03.000000000", + "2019-01-04T02:12:10.000000000", + "2019-01-04T02:13:43.000000000", + "2019-01-04T02:16:56.000000000", + "2019-01-04T02:18:34.000000000", + "2019-01-04T02:18:55.000000000", + "2019-01-04T02:19:23.000000000", + "2019-01-04T02:22:02.000000000", + "2019-01-04T02:25:49.000000000", + "2019-01-04T02:27:39.000000000", + "2019-01-04T02:27:56.000000000", + "2019-01-04T02:29:49.000000000", + "2019-01-04T02:30:00.000000000", + "2019-01-04T02:30:46.000000000", + "2019-01-04T02:30:50.000000000", + "2019-01-04T02:32:01.000000000", + "2019-01-04T02:32:22.000000000", + "2019-01-04T02:33:40.000000000", + "2019-01-04T02:34:20.000000000", + "2019-01-04T02:34:38.000000000", + "2019-01-04T02:35:24.000000000", + "2019-01-04T02:36:50.000000000", + "2019-01-04T02:37:12.000000000", + "2019-01-04T02:38:47.000000000", + "2019-01-04T02:41:49.000000000", + "2019-01-04T02:42:44.000000000", + "2019-01-04T02:45:40.000000000", + "2019-01-04T02:46:53.000000000", + "2019-01-04T02:47:19.000000000", + "2019-01-04T02:48:42.000000000", + "2019-01-04T02:48:43.000000000", + "2019-01-04T02:49:24.000000000", + "2019-01-04T02:50:13.000000000", + "2019-01-04T02:51:47.000000000", + "2019-01-04T02:53:08.000000000", + "2019-01-04T02:53:45.000000000", + "2019-01-04T02:54:07.000000000", + "2019-01-04T02:54:10.000000000", + "2019-01-04T02:55:32.000000000", + "2019-01-04T02:55:58.000000000", + "2019-01-04T02:56:20.000000000", + "2019-01-04T02:56:56.000000000", + "2019-01-04T02:58:56.000000000", + "2019-01-04T02:59:52.000000000", + "2019-01-04T03:00:26.000000000", + "2019-01-04T03:00:52.000000000", + "2019-01-04T03:01:30.000000000", + "2019-01-04T03:01:55.000000000", + "2019-01-04T03:02:14.000000000", + "2019-01-04T03:02:45.000000000", + "2019-01-04T03:02:55.000000000", + "2019-01-04T03:04:12.000000000", + "2019-01-04T03:04:51.000000000", + "2019-01-04T03:05:50.000000000", + "2019-01-04T03:06:07.000000000", + "2019-01-04T03:06:36.000000000", + "2019-01-04T03:08:00.000000000", + "2019-01-04T03:08:20.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:10:01.000000000", + "2019-01-04T03:10:10.000000000", + "2019-01-04T03:10:54.000000000", + "2019-01-04T03:11:09.000000000", + "2019-01-04T03:13:06.000000000", + "2019-01-04T03:15:17.000000000", + "2019-01-04T03:15:39.000000000", + "2019-01-04T03:16:31.000000000", + "2019-01-04T03:18:20.000000000", + "2019-01-04T03:18:32.000000000", + "2019-01-04T03:18:42.000000000", + "2019-01-04T03:19:24.000000000", + "2019-01-04T03:19:45.000000000", + "2019-01-04T03:20:39.000000000", + "2019-01-04T03:21:34.000000000", + "2019-01-04T03:22:29.000000000", + "2019-01-04T03:22:45.000000000", + "2019-01-04T03:23:27.000000000", + "2019-01-04T03:24:08.000000000", + "2019-01-04T03:24:44.000000000", + "2019-01-04T03:26:21.000000000", + "2019-01-04T03:26:33.000000000", + "2019-01-04T03:27:47.000000000", + "2019-01-04T03:28:31.000000000", + "2019-01-04T03:29:14.000000000", + "2019-01-04T03:29:27.000000000", + "2019-01-04T03:30:17.000000000", + "2019-01-04T03:31:19.000000000", + "2019-01-04T03:32:27.000000000", + "2019-01-04T03:32:35.000000000", + "2019-01-04T03:34:51.000000000", + "2019-01-04T03:36:42.000000000", + "2019-01-04T03:38:24.000000000", + "2019-01-04T03:40:46.000000000", + "2019-01-04T03:40:58.000000000", + "2019-01-04T03:41:27.000000000", + "2019-01-04T03:43:25.000000000", + "2019-01-04T03:44:04.000000000", + "2019-01-04T03:44:09.000000000", + "2019-01-04T03:44:45.000000000", + "2019-01-04T03:47:26.000000000", + "2019-01-04T03:48:14.000000000", + "2019-01-04T03:48:22.000000000", + "2019-01-04T03:48:27.000000000", + "2019-01-04T03:50:08.000000000", + "2019-01-04T03:53:04.000000000", + "2019-01-04T03:54:16.000000000", + "2019-01-04T03:54:34.000000000", + "2019-01-04T03:55:24.000000000", + "2019-01-04T03:55:30.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:59:50.000000000", + "2019-01-04T04:02:19.000000000", + "2019-01-04T04:05:25.000000000", + "2019-01-04T04:07:29.000000000", + "2019-01-04T04:07:30.000000000", + "2019-01-04T04:08:27.000000000", + "2019-01-04T04:09:44.000000000", + "2019-01-04T04:10:50.000000000", + "2019-01-04T04:11:34.000000000", + "2019-01-04T04:13:56.000000000", + "2019-01-04T04:15:56.000000000", + "2019-01-04T04:16:30.000000000", + "2019-01-04T04:16:35.000000000", + "2019-01-04T04:19:27.000000000", + "2019-01-04T04:19:49.000000000", + "2019-01-04T04:22:56.000000000", + "2019-01-04T04:23:07.000000000", + "2019-01-04T04:23:08.000000000", + "2019-01-04T04:24:10.000000000", + "2019-01-04T04:24:53.000000000", + "2019-01-04T04:25:09.000000000", + "2019-01-04T04:25:53.000000000", + "2019-01-04T04:26:42.000000000", + "2019-01-04T04:26:58.000000000", + "2019-01-04T04:27:28.000000000", + "2019-01-04T04:28:38.000000000", + "2019-01-04T04:29:41.000000000", + "2019-01-04T04:30:22.000000000", + "2019-01-04T04:30:31.000000000", + "2019-01-04T04:32:42.000000000", + "2019-01-04T04:36:55.000000000", + "2019-01-04T04:37:05.000000000", + "2019-01-04T04:38:13.000000000", + "2019-01-04T04:44:41.000000000", + "2019-01-04T04:44:51.000000000", + "2019-01-04T04:45:46.000000000", + "2019-01-04T04:46:03.000000000", + "2019-01-04T04:46:23.000000000", + "2019-01-04T04:47:19.000000000", + "2019-01-04T04:47:54.000000000", + "2019-01-04T04:48:48.000000000", + "2019-01-04T04:48:56.000000000", + "2019-01-04T04:49:24.000000000", + "2019-01-04T04:50:14.000000000", + "2019-01-04T04:50:27.000000000", + "2019-01-04T04:51:09.000000000", + "2019-01-04T04:51:11.000000000", + "2019-01-04T04:51:49.000000000", + "2019-01-04T04:53:45.000000000", + "2019-01-04T04:55:10.000000000", + "2019-01-04T04:55:11.000000000", + "2019-01-04T04:55:12.000000000", + "2019-01-04T04:56:16.000000000", + "2019-01-04T04:58:43.000000000", + "2019-01-04T04:58:54.000000000", + "2019-01-04T05:01:30.000000000", + "2019-01-04T05:03:03.000000000", + "2019-01-04T05:03:11.000000000", + "2019-01-04T05:03:35.000000000", + "2019-01-04T05:05:00.000000000", + "2019-01-04T05:06:28.000000000", + "2019-01-04T05:09:44.000000000", + "2019-01-04T05:09:49.000000000", + "2019-01-04T05:10:04.000000000", + "2019-01-04T05:10:08.000000000", + "2019-01-04T05:12:11.000000000", + "2019-01-04T05:12:57.000000000", + "2019-01-04T05:13:15.000000000", + "2019-01-04T05:13:24.000000000", + "2019-01-04T05:15:56.000000000", + "2019-01-04T05:17:05.000000000", + "2019-01-04T05:17:33.000000000", + "2019-01-04T05:17:42.000000000", + "2019-01-04T05:18:00.000000000", + "2019-01-04T05:18:26.000000000", + "2019-01-04T05:19:06.000000000", + "2019-01-04T05:19:30.000000000", + "2019-01-04T05:21:56.000000000", + "2019-01-04T05:22:31.000000000", + "2019-01-04T05:25:32.000000000", + "2019-01-04T05:25:42.000000000", + "2019-01-04T05:26:26.000000000", + "2019-01-04T05:27:35.000000000", + "2019-01-04T05:27:47.000000000", + "2019-01-04T05:30:22.000000000", + "2019-01-04T05:30:39.000000000", + "2019-01-04T05:32:49.000000000", + "2019-01-04T05:33:38.000000000", + "2019-01-04T05:36:29.000000000", + "2019-01-04T05:39:24.000000000", + "2019-01-04T05:39:47.000000000", + "2019-01-04T05:42:02.000000000", + "2019-01-04T05:43:29.000000000", + "2019-01-04T05:43:46.000000000", + "2019-01-04T05:46:07.000000000", + "2019-01-04T05:47:05.000000000", + "2019-01-04T05:48:07.000000000", + "2019-01-04T05:48:50.000000000", + "2019-01-04T05:49:57.000000000", + "2019-01-04T05:50:28.000000000", + "2019-01-04T05:53:15.000000000", + "2019-01-04T05:56:26.000000000", + "2019-01-04T05:56:53.000000000", + "2019-01-04T05:57:43.000000000", + "2019-01-04T05:59:57.000000000", + "2019-01-04T06:00:57.000000000", + "2019-01-04T06:01:36.000000000", + "2019-01-04T06:02:36.000000000", + "2019-01-04T06:04:14.000000000", + "2019-01-04T06:04:28.000000000", + "2019-01-04T06:05:00.000000000", + "2019-01-04T06:07:45.000000000", + "2019-01-04T06:08:25.000000000", + "2019-01-04T06:08:52.000000000", + "2019-01-04T06:09:05.000000000", + "2019-01-04T06:09:42.000000000", + "2019-01-04T06:12:17.000000000", + "2019-01-04T06:12:53.000000000", + "2019-01-04T06:14:13.000000000", + "2019-01-04T06:17:44.000000000", + "2019-01-04T06:19:50.000000000", + "2019-01-04T06:20:45.000000000", + "2019-01-04T06:21:01.000000000", + "2019-01-04T06:21:30.000000000", + "2019-01-04T06:23:27.000000000", + "2019-01-04T06:25:09.000000000", + "2019-01-04T06:25:39.000000000", + "2019-01-04T06:25:44.000000000", + "2019-01-04T06:26:08.000000000", + "2019-01-04T06:28:07.000000000", + "2019-01-04T06:28:14.000000000", + "2019-01-04T06:29:52.000000000", + "2019-01-04T06:30:51.000000000", + "2019-01-04T06:30:57.000000000", + "2019-01-04T06:33:04.000000000", + "2019-01-04T06:33:07.000000000", + "2019-01-04T06:33:49.000000000", + "2019-01-04T06:34:24.000000000", + "2019-01-04T06:36:54.000000000", + "2019-01-04T06:36:57.000000000", + "2019-01-04T06:37:47.000000000", + "2019-01-04T06:37:55.000000000", + "2019-01-04T06:38:26.000000000", + "2019-01-04T06:39:41.000000000", + "2019-01-04T06:41:41.000000000", + "2019-01-04T06:43:17.000000000", + "2019-01-04T06:43:25.000000000", + "2019-01-04T06:44:20.000000000", + "2019-01-04T06:44:24.000000000", + "2019-01-04T06:44:57.000000000", + "2019-01-04T06:47:05.000000000", + "2019-01-04T06:48:02.000000000", + "2019-01-04T06:48:18.000000000", + "2019-01-04T06:48:47.000000000", + "2019-01-04T06:49:42.000000000", + "2019-01-04T06:52:14.000000000", + "2019-01-04T06:52:18.000000000", + "2019-01-04T06:52:27.000000000", + "2019-01-04T06:53:39.000000000", + "2019-01-04T06:54:10.000000000", + "2019-01-04T06:54:23.000000000", + "2019-01-04T06:55:27.000000000", + "2019-01-04T06:56:45.000000000", + "2019-01-04T07:01:03.000000000", + "2019-01-04T07:02:58.000000000", + "2019-01-04T07:03:21.000000000", + "2019-01-04T07:04:34.000000000", + "2019-01-04T07:05:59.000000000", + "2019-01-04T07:06:44.000000000", + "2019-01-04T07:08:12.000000000", + "2019-01-04T07:10:45.000000000", + "2019-01-04T07:10:57.000000000", + "2019-01-04T07:12:14.000000000", + "2019-01-04T07:15:19.000000000", + "2019-01-04T07:15:53.000000000", + "2019-01-04T07:15:58.000000000", + "2019-01-04T07:16:10.000000000", + "2019-01-04T07:17:02.000000000", + "2019-01-04T07:18:23.000000000", + "2019-01-04T07:20:01.000000000", + "2019-01-04T07:20:19.000000000", + "2019-01-04T07:20:21.000000000", + "2019-01-04T07:21:13.000000000", + "2019-01-04T07:22:02.000000000", + "2019-01-04T07:23:30.000000000", + "2019-01-04T07:25:15.000000000", + "2019-01-04T07:29:37.000000000", + "2019-01-04T07:30:26.000000000", + "2019-01-04T07:30:44.000000000", + "2019-01-04T07:31:13.000000000", + "2019-01-04T07:31:28.000000000", + "2019-01-04T07:33:36.000000000", + "2019-01-04T07:33:55.000000000", + "2019-01-04T07:34:49.000000000", + "2019-01-04T07:38:17.000000000", + "2019-01-04T07:39:46.000000000", + "2019-01-04T07:39:48.000000000", + "2019-01-04T07:41:09.000000000", + "2019-01-04T07:41:48.000000000", + "2019-01-04T07:43:06.000000000", + "2019-01-04T07:43:12.000000000", + "2019-01-04T07:43:42.000000000", + "2019-01-04T07:44:05.000000000", + "2019-01-04T07:44:57.000000000", + "2019-01-04T07:44:58.000000000", + "2019-01-04T07:45:09.000000000", + "2019-01-04T07:45:22.000000000", + "2019-01-04T07:45:28.000000000", + "2019-01-04T07:46:15.000000000", + "2019-01-04T07:47:48.000000000", + "2019-01-04T07:48:09.000000000", + "2019-01-04T07:50:02.000000000", + "2019-01-04T07:51:01.000000000", + "2019-01-04T07:51:59.000000000", + "2019-01-04T07:52:18.000000000", + "2019-01-04T07:53:53.000000000", + "2019-01-04T07:54:33.000000000", + "2019-01-04T07:56:13.000000000", + "2019-01-04T07:56:27.000000000", + "2019-01-04T08:00:44.000000000", + "2019-01-04T08:00:59.000000000", + "2019-01-04T08:01:52.000000000", + "2019-01-04T08:02:40.000000000", + "2019-01-04T08:04:09.000000000", + "2019-01-04T08:04:20.000000000", + "2019-01-04T08:05:37.000000000", + "2019-01-04T08:06:07.000000000", + "2019-01-04T08:06:27.000000000", + "2019-01-04T08:07:01.000000000", + "2019-01-04T08:07:44.000000000", + "2019-01-04T08:08:16.000000000", + "2019-01-04T08:08:44.000000000", + "2019-01-04T08:09:04.000000000", + "2019-01-04T08:09:15.000000000", + "2019-01-04T08:10:02.000000000", + "2019-01-04T08:10:14.000000000", + "2019-01-04T08:12:07.000000000", + "2019-01-04T08:12:55.000000000", + "2019-01-04T08:13:03.000000000", + "2019-01-04T08:13:52.000000000", + "2019-01-04T08:14:48.000000000", + "2019-01-04T08:15:59.000000000", + "2019-01-04T08:16:37.000000000", + "2019-01-04T08:17:32.000000000", + "2019-01-04T08:17:43.000000000", + "2019-01-04T08:17:52.000000000", + "2019-01-04T08:18:35.000000000", + "2019-01-04T08:19:07.000000000", + "2019-01-04T08:21:26.000000000", + "2019-01-04T08:23:00.000000000", + "2019-01-04T08:23:22.000000000", + "2019-01-04T08:23:29.000000000", + "2019-01-04T08:24:47.000000000", + "2019-01-04T08:25:14.000000000", + "2019-01-04T08:25:24.000000000", + "2019-01-04T08:25:35.000000000", + "2019-01-04T08:26:19.000000000", + "2019-01-04T08:26:39.000000000", + "2019-01-04T08:28:43.000000000", + "2019-01-04T08:30:20.000000000", + "2019-01-04T08:30:21.000000000", + "2019-01-04T08:32:30.000000000", + "2019-01-04T08:32:45.000000000", + "2019-01-04T08:36:10.000000000", + "2019-01-04T08:36:13.000000000", + "2019-01-04T08:36:39.000000000", + "2019-01-04T08:36:46.000000000", + "2019-01-04T08:37:27.000000000", + "2019-01-04T08:38:02.000000000", + "2019-01-04T08:38:12.000000000", + "2019-01-04T08:39:54.000000000", + "2019-01-04T08:40:02.000000000", + "2019-01-04T08:41:21.000000000", + "2019-01-04T08:42:26.000000000", + "2019-01-04T08:43:44.000000000", + "2019-01-04T08:45:42.000000000", + "2019-01-04T08:46:03.000000000", + "2019-01-04T08:46:12.000000000", + "2019-01-04T08:47:35.000000000", + "2019-01-04T08:48:14.000000000", + "2019-01-04T08:48:33.000000000", + "2019-01-04T08:48:38.000000000", + "2019-01-04T08:48:58.000000000", + "2019-01-04T08:49:21.000000000", + "2019-01-04T08:49:51.000000000", + "2019-01-04T08:50:16.000000000", + "2019-01-04T08:50:30.000000000", + "2019-01-04T08:50:48.000000000", + "2019-01-04T08:53:47.000000000", + "2019-01-04T08:55:07.000000000", + "2019-01-04T08:57:20.000000000", + "2019-01-04T08:57:39.000000000", + "2019-01-04T08:58:05.000000000", + "2019-01-04T08:58:26.000000000", + "2019-01-04T08:58:49.000000000", + "2019-01-04T09:00:22.000000000", + "2019-01-04T09:01:45.000000000", + "2019-01-04T09:01:50.000000000", + "2019-01-04T09:03:34.000000000", + "2019-01-04T09:04:18.000000000", + "2019-01-04T09:04:23.000000000", + "2019-01-04T09:05:36.000000000", + "2019-01-04T09:07:01.000000000", + "2019-01-04T09:07:04.000000000", + "2019-01-04T09:07:58.000000000", + "2019-01-04T09:08:41.000000000", + "2019-01-04T09:09:15.000000000", + "2019-01-04T09:11:28.000000000", + "2019-01-04T09:12:28.000000000", + "2019-01-04T09:12:47.000000000", + "2019-01-04T09:14:50.000000000", + "2019-01-04T09:17:20.000000000", + "2019-01-04T09:19:38.000000000", + "2019-01-04T09:21:14.000000000", + "2019-01-04T09:23:54.000000000", + "2019-01-04T09:26:08.000000000", + "2019-01-04T09:26:39.000000000", + "2019-01-04T09:27:07.000000000", + "2019-01-04T09:27:33.000000000", + "2019-01-04T09:27:49.000000000", + "2019-01-04T09:29:08.000000000", + "2019-01-04T09:29:32.000000000", + "2019-01-04T09:29:48.000000000", + "2019-01-04T09:30:59.000000000", + "2019-01-04T09:32:14.000000000", + "2019-01-04T09:32:36.000000000", + "2019-01-04T09:33:11.000000000", + "2019-01-04T09:35:05.000000000", + "2019-01-04T09:35:13.000000000", + "2019-01-04T09:35:18.000000000", + "2019-01-04T09:36:04.000000000", + "2019-01-04T09:37:08.000000000", + "2019-01-04T09:37:47.000000000", + "2019-01-04T09:38:37.000000000", + "2019-01-04T09:38:58.000000000", + "2019-01-04T09:40:30.000000000", + "2019-01-04T09:40:41.000000000", + "2019-01-04T09:41:43.000000000", + "2019-01-04T09:42:27.000000000", + "2019-01-04T09:43:35.000000000", + "2019-01-04T09:44:17.000000000", + "2019-01-04T09:44:22.000000000", + "2019-01-04T09:44:47.000000000", + "2019-01-04T09:48:06.000000000", + "2019-01-04T09:48:08.000000000", + "2019-01-04T09:50:15.000000000", + "2019-01-04T09:51:15.000000000", + "2019-01-04T09:52:09.000000000", + "2019-01-04T09:54:16.000000000", + "2019-01-04T09:54:17.000000000", + "2019-01-04T09:55:33.000000000", + "2019-01-04T09:55:42.000000000", + "2019-01-04T09:58:12.000000000", + "2019-01-04T09:58:47.000000000", + "2019-01-04T09:59:37.000000000", + "2019-01-04T10:01:01.000000000", + "2019-01-04T10:02:18.000000000", + "2019-01-04T10:06:51.000000000", + "2019-01-04T10:07:07.000000000", + "2019-01-04T10:13:04.000000000", + "2019-01-04T10:13:17.000000000", + "2019-01-04T10:13:19.000000000", + "2019-01-04T10:13:42.000000000", + "2019-01-04T10:13:59.000000000", + "2019-01-04T10:14:40.000000000", + "2019-01-04T10:15:30.000000000", + "2019-01-04T10:15:56.000000000", + "2019-01-04T10:16:27.000000000", + "2019-01-04T10:18:42.000000000", + "2019-01-04T10:18:47.000000000", + "2019-01-04T10:18:54.000000000", + "2019-01-04T10:19:17.000000000", + "2019-01-04T10:19:57.000000000", + "2019-01-04T10:20:44.000000000", + "2019-01-04T10:21:23.000000000", + "2019-01-04T10:24:05.000000000", + "2019-01-04T10:25:14.000000000", + "2019-01-04T10:25:15.000000000", + "2019-01-04T10:26:26.000000000", + "2019-01-04T10:26:28.000000000", + "2019-01-04T10:26:29.000000000", + "2019-01-04T10:28:12.000000000", + "2019-01-04T10:28:41.000000000", + "2019-01-04T10:29:30.000000000", + "2019-01-04T10:29:34.000000000", + "2019-01-04T10:29:56.000000000", + "2019-01-04T10:30:58.000000000", + "2019-01-04T10:31:00.000000000", + "2019-01-04T10:31:17.000000000", + "2019-01-04T10:31:25.000000000", + "2019-01-04T10:32:16.000000000", + "2019-01-04T10:32:52.000000000", + "2019-01-04T10:34:12.000000000", + "2019-01-04T10:35:25.000000000", + "2019-01-04T10:36:09.000000000", + "2019-01-04T10:36:44.000000000", + "2019-01-04T10:40:03.000000000", + "2019-01-04T10:40:05.000000000", + "2019-01-04T10:40:28.000000000", + "2019-01-04T10:40:32.000000000", + "2019-01-04T10:43:46.000000000", + "2019-01-04T10:43:57.000000000", + "2019-01-04T10:46:06.000000000", + "2019-01-04T10:47:07.000000000", + "2019-01-04T10:48:17.000000000", + "2019-01-04T10:48:51.000000000", + "2019-01-04T10:48:58.000000000", + "2019-01-04T10:50:26.000000000", + "2019-01-04T10:50:46.000000000", + "2019-01-04T10:51:36.000000000", + "2019-01-04T10:52:36.000000000", + "2019-01-04T10:53:25.000000000", + "2019-01-04T10:53:26.000000000", + "2019-01-04T10:54:38.000000000", + "2019-01-04T10:55:50.000000000", + "2019-01-04T10:59:27.000000000", + "2019-01-04T10:59:35.000000000", + "2019-01-04T11:01:17.000000000", + "2019-01-04T11:02:46.000000000", + "2019-01-04T11:03:22.000000000", + "2019-01-04T11:03:37.000000000", + "2019-01-04T11:04:31.000000000", + "2019-01-04T11:06:11.000000000", + "2019-01-04T11:07:32.000000000", + "2019-01-04T11:07:48.000000000", + "2019-01-04T11:08:13.000000000", + "2019-01-04T11:09:38.000000000", + "2019-01-04T11:11:40.000000000", + "2019-01-04T11:13:27.000000000", + "2019-01-04T11:14:25.000000000", + "2019-01-04T11:18:54.000000000", + "2019-01-04T11:19:10.000000000", + "2019-01-04T11:19:18.000000000", + "2019-01-04T11:20:04.000000000", + "2019-01-04T11:20:33.000000000", + "2019-01-04T11:20:52.000000000", + "2019-01-04T11:22:41.000000000", + "2019-01-04T11:23:00.000000000", + "2019-01-04T11:25:49.000000000", + "2019-01-04T11:27:37.000000000", + "2019-01-04T11:28:12.000000000", + "2019-01-04T11:28:32.000000000", + "2019-01-04T11:31:37.000000000", + "2019-01-04T11:33:08.000000000", + "2019-01-04T11:33:12.000000000", + "2019-01-04T11:33:17.000000000", + "2019-01-04T11:33:39.000000000", + "2019-01-04T11:34:08.000000000", + "2019-01-04T11:34:20.000000000", + "2019-01-04T11:36:32.000000000", + "2019-01-04T11:38:07.000000000", + "2019-01-04T11:39:37.000000000", + "2019-01-04T11:40:14.000000000", + "2019-01-04T11:41:20.000000000", + "2019-01-04T11:42:11.000000000", + "2019-01-04T11:42:38.000000000", + "2019-01-04T11:44:04.000000000", + "2019-01-04T11:45:45.000000000", + "2019-01-04T11:46:17.000000000", + "2019-01-04T11:46:23.000000000", + "2019-01-04T11:47:48.000000000", + "2019-01-04T11:53:19.000000000", + "2019-01-04T11:53:40.000000000", + "2019-01-04T11:53:46.000000000", + "2019-01-04T11:54:11.000000000", + "2019-01-04T11:54:14.000000000", + "2019-01-04T11:54:52.000000000", + "2019-01-04T11:56:21.000000000", + "2019-01-04T11:57:06.000000000", + "2019-01-04T11:57:33.000000000", + "2019-01-04T11:57:39.000000000", + "2019-01-04T11:58:30.000000000", + "2019-01-04T11:58:40.000000000", + "2019-01-04T11:58:53.000000000", + "2019-01-04T12:01:03.000000000", + "2019-01-04T12:03:12.000000000", + "2019-01-04T12:03:16.000000000", + "2019-01-04T12:03:21.000000000", + "2019-01-04T12:05:03.000000000", + "2019-01-04T12:05:47.000000000", + "2019-01-04T12:06:56.000000000", + "2019-01-04T12:07:45.000000000", + "2019-01-04T12:08:08.000000000", + "2019-01-04T12:08:32.000000000", + "2019-01-04T12:08:45.000000000", + "2019-01-04T12:08:54.000000000", + "2019-01-04T12:11:37.000000000", + "2019-01-04T12:12:08.000000000", + "2019-01-04T12:13:20.000000000", + "2019-01-04T12:13:21.000000000", + "2019-01-04T12:14:53.000000000", + "2019-01-04T12:15:23.000000000", + "2019-01-04T12:18:06.000000000", + "2019-01-04T12:18:11.000000000", + "2019-01-04T12:18:40.000000000", + "2019-01-04T12:18:41.000000000", + "2019-01-04T12:18:47.000000000", + "2019-01-04T12:19:07.000000000", + "2019-01-04T12:20:51.000000000", + "2019-01-04T12:22:20.000000000", + "2019-01-04T12:23:47.000000000", + "2019-01-04T12:24:08.000000000", + "2019-01-04T12:26:18.000000000", + "2019-01-04T12:27:13.000000000", + "2019-01-04T12:28:54.000000000", + "2019-01-04T12:29:00.000000000", + "2019-01-04T12:30:05.000000000", + "2019-01-04T12:30:18.000000000", + "2019-01-04T12:33:26.000000000", + "2019-01-04T12:34:30.000000000", + "2019-01-04T12:34:42.000000000", + "2019-01-04T12:36:17.000000000", + "2019-01-04T12:39:29.000000000", + "2019-01-04T12:40:04.000000000", + "2019-01-04T12:41:43.000000000", + "2019-01-04T12:44:41.000000000", + "2019-01-04T12:45:50.000000000", + "2019-01-04T12:45:54.000000000", + "2019-01-04T12:46:28.000000000", + "2019-01-04T12:46:40.000000000", + "2019-01-04T12:52:31.000000000", + "2019-01-04T12:55:18.000000000", + "2019-01-04T12:55:22.000000000", + "2019-01-04T12:58:23.000000000", + "2019-01-04T12:58:54.000000000", + "2019-01-04T12:59:03.000000000", + "2019-01-04T12:59:09.000000000", + "2019-01-04T12:59:29.000000000", + "2019-01-04T12:59:33.000000000", + "2019-01-04T12:59:40.000000000", + "2019-01-04T13:02:35.000000000", + "2019-01-04T13:03:05.000000000", + "2019-01-04T13:03:26.000000000", + "2019-01-04T13:03:37.000000000", + "2019-01-04T13:03:52.000000000", + "2019-01-04T13:03:58.000000000", + "2019-01-04T13:04:06.000000000", + "2019-01-04T13:06:19.000000000", + "2019-01-04T13:06:39.000000000", + "2019-01-04T13:09:34.000000000", + "2019-01-04T13:09:54.000000000", + "2019-01-04T13:11:08.000000000", + "2019-01-04T13:11:16.000000000", + "2019-01-04T13:12:40.000000000", + "2019-01-04T13:13:32.000000000", + "2019-01-04T13:14:59.000000000", + "2019-01-04T13:17:40.000000000", + "2019-01-04T13:17:51.000000000", + "2019-01-04T13:17:59.000000000", + "2019-01-04T13:18:24.000000000", + "2019-01-04T13:18:45.000000000", + "2019-01-04T13:20:04.000000000", + "2019-01-04T13:20:38.000000000", + "2019-01-04T13:23:05.000000000", + "2019-01-04T13:23:32.000000000", + "2019-01-04T13:24:39.000000000", + "2019-01-04T13:25:52.000000000", + "2019-01-04T13:26:41.000000000", + "2019-01-04T13:26:46.000000000", + "2019-01-04T13:26:56.000000000", + "2019-01-04T13:29:46.000000000", + "2019-01-04T13:30:03.000000000", + "2019-01-04T13:31:07.000000000", + "2019-01-04T13:31:26.000000000", + "2019-01-04T13:38:50.000000000", + "2019-01-04T13:38:57.000000000", + "2019-01-04T13:39:17.000000000", + "2019-01-04T13:39:50.000000000", + "2019-01-04T13:41:08.000000000", + "2019-01-04T13:42:08.000000000", + "2019-01-04T13:42:23.000000000", + "2019-01-04T13:42:39.000000000", + "2019-01-04T13:42:49.000000000", + "2019-01-04T13:43:29.000000000", + "2019-01-04T13:43:45.000000000", + "2019-01-04T13:44:05.000000000", + "2019-01-04T13:47:42.000000000", + "2019-01-04T13:48:08.000000000", + "2019-01-04T13:49:17.000000000", + "2019-01-04T13:49:57.000000000", + "2019-01-04T13:50:26.000000000", + "2019-01-04T13:50:52.000000000", + "2019-01-04T13:51:00.000000000", + "2019-01-04T13:52:33.000000000", + "2019-01-04T13:53:26.000000000", + "2019-01-04T13:54:44.000000000", + "2019-01-04T13:56:02.000000000", + "2019-01-04T13:56:46.000000000", + "2019-01-04T14:00:07.000000000", + "2019-01-04T14:00:23.000000000", + "2019-01-04T14:00:35.000000000", + "2019-01-04T14:00:57.000000000", + "2019-01-04T14:01:06.000000000", + "2019-01-04T14:02:08.000000000", + "2019-01-04T14:02:52.000000000", + "2019-01-04T14:03:33.000000000", + "2019-01-04T14:05:21.000000000", + "2019-01-04T14:09:19.000000000", + "2019-01-04T14:11:16.000000000", + "2019-01-04T14:11:26.000000000", + "2019-01-04T14:11:42.000000000", + "2019-01-04T14:11:44.000000000", + "2019-01-04T14:11:56.000000000", + "2019-01-04T14:13:02.000000000", + "2019-01-04T14:13:35.000000000", + "2019-01-04T14:14:11.000000000", + "2019-01-04T14:14:57.000000000", + "2019-01-04T14:15:21.000000000", + "2019-01-04T14:15:41.000000000", + "2019-01-04T14:16:51.000000000", + "2019-01-04T14:17:58.000000000", + "2019-01-04T14:22:25.000000000", + "2019-01-04T14:22:26.000000000", + "2019-01-04T14:22:45.000000000", + "2019-01-04T14:24:17.000000000", + "2019-01-04T14:25:46.000000000", + "2019-01-04T14:26:18.000000000", + "2019-01-04T14:26:51.000000000", + "2019-01-04T14:27:09.000000000", + "2019-01-04T14:27:47.000000000", + "2019-01-04T14:28:01.000000000", + "2019-01-04T14:28:18.000000000", + "2019-01-04T14:28:40.000000000", + "2019-01-04T14:29:49.000000000", + "2019-01-04T14:29:51.000000000", + "2019-01-04T14:30:28.000000000", + "2019-01-04T14:31:01.000000000", + "2019-01-04T14:31:24.000000000", + "2019-01-04T14:32:11.000000000", + "2019-01-04T14:32:19.000000000", + "2019-01-04T14:32:57.000000000", + "2019-01-04T14:33:06.000000000", + "2019-01-04T14:33:47.000000000", + "2019-01-04T14:35:56.000000000", + "2019-01-04T14:36:05.000000000", + "2019-01-04T14:37:17.000000000", + "2019-01-04T14:37:19.000000000", + "2019-01-04T14:38:30.000000000", + "2019-01-04T14:38:40.000000000", + "2019-01-04T14:40:29.000000000", + "2019-01-04T14:40:39.000000000", + "2019-01-04T14:41:34.000000000", + "2019-01-04T14:42:04.000000000", + "2019-01-04T14:42:25.000000000", + "2019-01-04T14:44:46.000000000", + "2019-01-04T14:45:23.000000000", + "2019-01-04T14:45:48.000000000", + "2019-01-04T14:48:45.000000000", + "2019-01-04T14:48:56.000000000", + "2019-01-04T14:49:24.000000000", + "2019-01-04T14:52:37.000000000", + "2019-01-04T14:54:15.000000000", + "2019-01-04T14:54:20.000000000", + "2019-01-04T14:54:31.000000000", + "2019-01-04T14:59:06.000000000", + "2019-01-04T14:59:11.000000000", + "2019-01-04T15:00:53.000000000", + "2019-01-04T15:03:34.000000000", + "2019-01-04T15:04:49.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:05:47.000000000", + "2019-01-04T15:05:54.000000000", + "2019-01-04T15:05:57.000000000", + "2019-01-04T15:06:31.000000000", + "2019-01-04T15:06:35.000000000", + "2019-01-04T15:07:04.000000000", + "2019-01-04T15:07:05.000000000", + "2019-01-04T15:07:39.000000000", + "2019-01-04T15:08:00.000000000", + "2019-01-04T15:08:25.000000000", + "2019-01-04T15:09:24.000000000", + "2019-01-04T15:09:31.000000000", + "2019-01-04T15:13:24.000000000", + "2019-01-04T15:13:30.000000000", + "2019-01-04T15:13:42.000000000", + "2019-01-04T15:13:43.000000000", + "2019-01-04T15:17:09.000000000", + "2019-01-04T15:17:20.000000000", + "2019-01-04T15:20:43.000000000", + "2019-01-04T15:22:09.000000000", + "2019-01-04T15:22:14.000000000", + "2019-01-04T15:22:41.000000000", + "2019-01-04T15:23:34.000000000", + "2019-01-04T15:24:54.000000000", + "2019-01-04T15:25:21.000000000", + "2019-01-04T15:26:24.000000000", + "2019-01-04T15:27:49.000000000", + "2019-01-04T15:31:25.000000000", + "2019-01-04T15:31:38.000000000", + "2019-01-04T15:32:40.000000000", + "2019-01-04T15:35:08.000000000", + "2019-01-04T15:36:00.000000000", + "2019-01-04T15:36:34.000000000", + "2019-01-04T15:37:30.000000000", + "2019-01-04T15:40:01.000000000", + "2019-01-04T15:40:05.000000000", + "2019-01-04T15:40:49.000000000", + "2019-01-04T15:42:58.000000000", + "2019-01-04T15:43:21.000000000", + "2019-01-04T15:43:25.000000000", + "2019-01-04T15:44:21.000000000", + "2019-01-04T15:45:01.000000000", + "2019-01-04T15:46:20.000000000", + "2019-01-04T15:46:45.000000000", + "2019-01-04T15:49:06.000000000", + "2019-01-04T15:49:58.000000000", + "2019-01-04T15:49:59.000000000", + "2019-01-04T15:50:22.000000000", + "2019-01-04T15:52:38.000000000", + "2019-01-04T15:56:10.000000000", + "2019-01-04T15:57:12.000000000", + "2019-01-04T15:57:50.000000000", + "2019-01-04T15:58:54.000000000", + "2019-01-04T16:00:37.000000000", + "2019-01-04T16:01:13.000000000", + "2019-01-04T16:01:45.000000000", + "2019-01-04T16:03:11.000000000", + "2019-01-04T16:04:07.000000000", + "2019-01-04T16:05:16.000000000", + "2019-01-04T16:05:50.000000000", + "2019-01-04T16:07:19.000000000", + "2019-01-04T16:09:39.000000000", + "2019-01-04T16:10:10.000000000", + "2019-01-04T16:10:48.000000000", + "2019-01-04T16:11:00.000000000", + "2019-01-04T16:11:20.000000000", + "2019-01-04T16:13:06.000000000", + "2019-01-04T16:13:30.000000000", + "2019-01-04T16:13:44.000000000", + "2019-01-04T16:14:53.000000000", + "2019-01-04T16:15:11.000000000", + "2019-01-04T16:15:55.000000000", + "2019-01-04T16:23:00.000000000", + "2019-01-04T16:23:47.000000000", + "2019-01-04T16:24:32.000000000", + "2019-01-04T16:24:56.000000000", + "2019-01-04T16:25:54.000000000", + "2019-01-04T16:25:58.000000000", + "2019-01-04T16:27:32.000000000", + "2019-01-04T16:27:48.000000000", + "2019-01-04T16:28:54.000000000", + "2019-01-04T16:29:50.000000000", + "2019-01-04T16:30:51.000000000", + "2019-01-04T16:32:01.000000000", + "2019-01-04T16:33:21.000000000", + "2019-01-04T16:34:45.000000000", + "2019-01-04T16:38:39.000000000", + "2019-01-04T16:39:09.000000000", + "2019-01-04T16:39:21.000000000", + "2019-01-04T16:40:15.000000000", + "2019-01-04T16:47:30.000000000", + "2019-01-04T16:48:19.000000000", + "2019-01-04T16:48:38.000000000", + "2019-01-04T16:49:04.000000000", + "2019-01-04T16:49:11.000000000", + "2019-01-04T16:50:06.000000000", + "2019-01-04T16:51:28.000000000", + "2019-01-04T16:51:31.000000000", + "2019-01-04T16:51:55.000000000", + "2019-01-04T16:52:20.000000000", + "2019-01-04T16:53:33.000000000", + "2019-01-04T16:53:54.000000000", + "2019-01-04T16:54:13.000000000", + "2019-01-04T16:54:51.000000000", + "2019-01-04T16:55:46.000000000", + "2019-01-04T16:57:08.000000000", + "2019-01-04T16:57:11.000000000", + "2019-01-04T16:57:17.000000000", + "2019-01-04T16:58:15.000000000", + "2019-01-04T16:58:39.000000000", + "2019-01-04T16:58:47.000000000", + "2019-01-04T17:00:16.000000000", + "2019-01-04T17:00:32.000000000", + "2019-01-04T17:00:36.000000000", + "2019-01-04T17:01:57.000000000", + "2019-01-04T17:03:33.000000000", + "2019-01-04T17:04:16.000000000", + "2019-01-04T17:05:58.000000000", + "2019-01-04T17:10:58.000000000", + "2019-01-04T17:11:25.000000000", + "2019-01-04T17:13:03.000000000", + "2019-01-04T17:13:59.000000000", + "2019-01-04T17:14:43.000000000", + "2019-01-04T17:16:46.000000000", + "2019-01-04T17:17:16.000000000", + "2019-01-04T17:20:50.000000000", + "2019-01-04T17:21:03.000000000", + "2019-01-04T17:21:49.000000000", + "2019-01-04T17:21:58.000000000", + "2019-01-04T17:24:18.000000000", + "2019-01-04T17:24:36.000000000", + "2019-01-04T17:24:37.000000000", + "2019-01-04T17:27:12.000000000", + "2019-01-04T17:27:18.000000000", + "2019-01-04T17:29:03.000000000", + "2019-01-04T17:30:12.000000000", + "2019-01-04T17:30:22.000000000", + "2019-01-04T17:31:18.000000000", + "2019-01-04T17:31:42.000000000", + "2019-01-04T17:31:46.000000000", + "2019-01-04T17:32:47.000000000", + "2019-01-04T17:34:44.000000000", + "2019-01-04T17:34:59.000000000", + "2019-01-04T17:35:17.000000000", + "2019-01-04T17:35:34.000000000", + "2019-01-04T17:36:37.000000000", + "2019-01-04T17:38:17.000000000", + "2019-01-04T17:38:48.000000000", + "2019-01-04T17:39:15.000000000", + "2019-01-04T17:43:11.000000000", + "2019-01-04T17:43:17.000000000", + "2019-01-04T17:44:42.000000000", + "2019-01-04T17:44:57.000000000", + "2019-01-04T17:45:38.000000000", + "2019-01-04T17:47:14.000000000", + "2019-01-04T17:47:40.000000000", + "2019-01-04T17:48:27.000000000", + "2019-01-04T17:49:08.000000000", + "2019-01-04T17:50:40.000000000", + "2019-01-04T17:51:31.000000000", + "2019-01-04T17:52:29.000000000", + "2019-01-04T17:58:07.000000000", + "2019-01-04T17:58:20.000000000", + "2019-01-04T17:58:31.000000000", + "2019-01-04T17:59:36.000000000", + "2019-01-04T18:00:01.000000000", + "2019-01-04T18:00:07.000000000", + "2019-01-04T18:00:55.000000000", + "2019-01-04T18:01:56.000000000", + "2019-01-04T18:04:48.000000000", + "2019-01-04T18:04:59.000000000", + "2019-01-04T18:07:34.000000000", + "2019-01-04T18:08:27.000000000", + "2019-01-04T18:09:34.000000000", + "2019-01-04T18:10:59.000000000", + "2019-01-04T18:11:19.000000000", + "2019-01-04T18:14:42.000000000", + "2019-01-04T18:14:54.000000000", + "2019-01-04T18:15:51.000000000", + "2019-01-04T18:17:24.000000000", + "2019-01-04T18:17:54.000000000", + "2019-01-04T18:18:06.000000000", + "2019-01-04T18:18:34.000000000", + "2019-01-04T18:20:25.000000000", + "2019-01-04T18:21:36.000000000", + "2019-01-04T18:24:51.000000000", + "2019-01-04T18:25:04.000000000", + "2019-01-04T18:27:19.000000000", + "2019-01-04T18:28:36.000000000", + "2019-01-04T18:29:32.000000000", + "2019-01-04T18:29:49.000000000", + "2019-01-04T18:30:01.000000000", + "2019-01-04T18:32:38.000000000", + "2019-01-04T18:32:54.000000000", + "2019-01-04T18:33:37.000000000", + "2019-01-04T18:35:45.000000000", + "2019-01-04T18:37:06.000000000", + "2019-01-04T18:40:39.000000000", + "2019-01-04T18:41:36.000000000", + "2019-01-04T18:41:37.000000000", + "2019-01-04T18:42:15.000000000", + "2019-01-04T18:44:09.000000000", + "2019-01-04T18:44:55.000000000", + "2019-01-04T18:45:50.000000000", + "2019-01-04T18:46:26.000000000", + "2019-01-04T18:46:58.000000000", + "2019-01-04T18:47:09.000000000", + "2019-01-04T18:47:47.000000000", + "2019-01-04T18:48:15.000000000", + "2019-01-04T18:48:30.000000000", + "2019-01-04T18:49:31.000000000", + "2019-01-04T18:52:38.000000000", + "2019-01-04T18:52:41.000000000", + "2019-01-04T18:53:30.000000000", + "2019-01-04T18:55:14.000000000", + "2019-01-04T18:55:43.000000000", + "2019-01-04T18:55:50.000000000", + "2019-01-04T18:56:22.000000000", + "2019-01-04T18:57:03.000000000", + "2019-01-04T18:59:42.000000000", + "2019-01-04T19:03:52.000000000", + "2019-01-04T19:04:54.000000000", + "2019-01-04T19:06:46.000000000", + "2019-01-04T19:07:20.000000000", + "2019-01-04T19:08:16.000000000", + "2019-01-04T19:13:51.000000000", + "2019-01-04T19:14:34.000000000", + "2019-01-04T19:15:41.000000000", + "2019-01-04T19:16:12.000000000", + "2019-01-04T19:17:07.000000000", + "2019-01-04T19:17:41.000000000", + "2019-01-04T19:19:09.000000000", + "2019-01-04T19:19:23.000000000", + "2019-01-04T19:19:41.000000000", + "2019-01-04T19:20:16.000000000", + "2019-01-04T19:21:15.000000000", + "2019-01-04T19:21:30.000000000", + "2019-01-04T19:22:23.000000000", + "2019-01-04T19:24:55.000000000", + "2019-01-04T19:25:06.000000000", + "2019-01-04T19:25:11.000000000", + "2019-01-04T19:32:30.000000000", + "2019-01-04T19:34:43.000000000", + "2019-01-04T19:34:53.000000000", + "2019-01-04T19:35:15.000000000", + "2019-01-04T19:36:14.000000000", + "2019-01-04T19:38:49.000000000", + "2019-01-04T19:39:21.000000000", + "2019-01-04T19:41:29.000000000", + "2019-01-04T19:41:43.000000000", + "2019-01-04T19:41:46.000000000", + "2019-01-04T19:46:15.000000000", + "2019-01-04T19:47:35.000000000", + "2019-01-04T19:48:23.000000000", + "2019-01-04T19:48:41.000000000", + "2019-01-04T19:49:38.000000000", + "2019-01-04T19:49:56.000000000", + "2019-01-04T19:50:06.000000000", + "2019-01-04T19:50:08.000000000", + "2019-01-04T19:51:17.000000000", + "2019-01-04T19:52:23.000000000", + "2019-01-04T19:52:49.000000000", + "2019-01-04T19:53:04.000000000", + "2019-01-04T19:53:14.000000000", + "2019-01-04T19:53:24.000000000", + "2019-01-04T19:53:46.000000000", + "2019-01-04T19:53:51.000000000", + "2019-01-04T19:53:59.000000000", + "2019-01-04T19:55:00.000000000", + "2019-01-04T19:55:05.000000000", + "2019-01-04T19:55:43.000000000", + "2019-01-04T19:56:07.000000000", + "2019-01-04T19:56:34.000000000", + "2019-01-04T19:56:46.000000000", + "2019-01-04T19:57:16.000000000", + "2019-01-04T19:57:22.000000000", + "2019-01-04T19:58:12.000000000", + "2019-01-04T19:58:26.000000000", + "2019-01-04T20:01:10.000000000", + "2019-01-04T20:01:16.000000000", + "2019-01-04T20:02:18.000000000", + "2019-01-04T20:02:45.000000000", + "2019-01-04T20:03:02.000000000", + "2019-01-04T20:03:10.000000000", + "2019-01-04T20:04:09.000000000", + "2019-01-04T20:05:05.000000000", + "2019-01-04T20:05:56.000000000", + "2019-01-04T20:06:32.000000000", + "2019-01-04T20:07:19.000000000", + "2019-01-04T20:07:25.000000000", + "2019-01-04T20:08:25.000000000", + "2019-01-04T20:08:56.000000000", + "2019-01-04T20:09:35.000000000", + "2019-01-04T20:10:13.000000000", + "2019-01-04T20:10:49.000000000", + "2019-01-04T20:11:21.000000000", + "2019-01-04T20:11:45.000000000", + "2019-01-04T20:13:34.000000000", + "2019-01-04T20:14:07.000000000", + "2019-01-04T20:14:12.000000000", + "2019-01-04T20:16:03.000000000", + "2019-01-04T20:18:55.000000000", + "2019-01-04T20:21:07.000000000", + "2019-01-04T20:21:15.000000000", + "2019-01-04T20:21:27.000000000", + "2019-01-04T20:23:27.000000000", + "2019-01-04T20:28:30.000000000", + "2019-01-04T20:30:34.000000000", + "2019-01-04T20:31:22.000000000", + "2019-01-04T20:32:31.000000000", + "2019-01-04T20:33:30.000000000", + "2019-01-04T20:34:04.000000000", + "2019-01-04T20:36:09.000000000", + "2019-01-04T20:36:24.000000000", + "2019-01-04T20:37:45.000000000", + "2019-01-04T20:37:47.000000000", + "2019-01-04T20:38:01.000000000", + "2019-01-04T20:38:33.000000000", + "2019-01-04T20:38:47.000000000", + "2019-01-04T20:40:05.000000000", + "2019-01-04T20:40:12.000000000", + "2019-01-04T20:40:36.000000000", + "2019-01-04T20:42:33.000000000", + "2019-01-04T20:43:59.000000000", + "2019-01-04T20:44:03.000000000", + "2019-01-04T20:44:33.000000000", + "2019-01-04T20:45:58.000000000", + "2019-01-04T20:46:13.000000000", + "2019-01-04T20:46:16.000000000", + "2019-01-04T20:48:18.000000000", + "2019-01-04T20:48:46.000000000", + "2019-01-04T20:49:01.000000000", + "2019-01-04T20:49:11.000000000", + "2019-01-04T20:49:38.000000000", + "2019-01-04T20:49:52.000000000", + "2019-01-04T20:51:41.000000000", + "2019-01-04T20:52:54.000000000", + "2019-01-04T20:53:24.000000000", + "2019-01-04T20:57:31.000000000", + "2019-01-04T20:58:38.000000000", + "2019-01-04T20:59:37.000000000", + "2019-01-04T20:59:44.000000000", + "2019-01-04T20:59:49.000000000", + "2019-01-04T21:00:05.000000000", + "2019-01-04T21:01:23.000000000", + "2019-01-04T21:02:16.000000000", + "2019-01-04T21:06:34.000000000", + "2019-01-04T21:07:04.000000000", + "2019-01-04T21:07:49.000000000", + "2019-01-04T21:09:05.000000000", + "2019-01-04T21:09:29.000000000", + "2019-01-04T21:09:58.000000000", + "2019-01-04T21:10:28.000000000", + "2019-01-04T21:11:09.000000000", + "2019-01-04T21:11:27.000000000", + "2019-01-04T21:11:37.000000000", + "2019-01-04T21:11:40.000000000", + "2019-01-04T21:15:38.000000000", + "2019-01-04T21:18:16.000000000", + "2019-01-04T21:18:17.000000000", + "2019-01-04T21:18:28.000000000", + "2019-01-04T21:20:42.000000000", + "2019-01-04T21:21:03.000000000", + "2019-01-04T21:22:05.000000000", + "2019-01-04T21:22:18.000000000", + "2019-01-04T21:23:06.000000000", + "2019-01-04T21:23:45.000000000", + "2019-01-04T21:27:02.000000000", + "2019-01-04T21:27:19.000000000", + "2019-01-04T21:30:21.000000000", + "2019-01-04T21:30:24.000000000", + "2019-01-04T21:30:45.000000000", + "2019-01-04T21:31:45.000000000", + "2019-01-04T21:31:54.000000000", + "2019-01-04T21:34:02.000000000", + "2019-01-04T21:34:36.000000000", + "2019-01-04T21:35:04.000000000", + "2019-01-04T21:35:58.000000000", + "2019-01-04T21:37:01.000000000", + "2019-01-04T21:37:14.000000000", + "2019-01-04T21:37:16.000000000", + "2019-01-04T21:37:48.000000000", + "2019-01-04T21:39:02.000000000", + "2019-01-04T21:39:45.000000000", + "2019-01-04T21:40:41.000000000", + "2019-01-04T21:43:15.000000000", + "2019-01-04T21:43:20.000000000", + "2019-01-04T21:44:20.000000000", + "2019-01-04T21:45:17.000000000", + "2019-01-04T21:46:01.000000000", + "2019-01-04T21:46:12.000000000", + "2019-01-04T21:46:14.000000000", + "2019-01-04T21:46:48.000000000", + "2019-01-04T21:47:52.000000000", + "2019-01-04T21:48:22.000000000", + "2019-01-04T21:48:38.000000000", + "2019-01-04T21:48:51.000000000", + "2019-01-04T21:48:59.000000000", + "2019-01-04T21:49:26.000000000", + "2019-01-04T21:50:34.000000000", + "2019-01-04T21:51:11.000000000", + "2019-01-04T21:53:57.000000000", + "2019-01-04T21:55:42.000000000", + "2019-01-04T21:55:52.000000000", + "2019-01-04T22:00:36.000000000", + "2019-01-04T22:00:45.000000000", + "2019-01-04T22:02:02.000000000", + "2019-01-04T22:02:04.000000000", + "2019-01-04T22:03:08.000000000", + "2019-01-04T22:03:21.000000000", + "2019-01-04T22:03:53.000000000", + "2019-01-04T22:04:05.000000000", + "2019-01-04T22:05:12.000000000", + "2019-01-04T22:05:54.000000000", + "2019-01-04T22:08:48.000000000", + "2019-01-04T22:10:13.000000000", + "2019-01-04T22:10:37.000000000", + "2019-01-04T22:11:10.000000000", + "2019-01-04T22:11:13.000000000", + "2019-01-04T22:13:43.000000000", + "2019-01-04T22:15:01.000000000", + "2019-01-04T22:15:14.000000000", + "2019-01-04T22:15:53.000000000", + "2019-01-04T22:17:49.000000000", + "2019-01-04T22:18:40.000000000", + "2019-01-04T22:20:02.000000000", + "2019-01-04T22:20:38.000000000", + "2019-01-04T22:22:18.000000000", + "2019-01-04T22:23:17.000000000", + "2019-01-04T22:23:48.000000000", + "2019-01-04T22:24:46.000000000", + "2019-01-04T22:28:22.000000000", + "2019-01-04T22:29:17.000000000", + "2019-01-04T22:29:31.000000000", + "2019-01-04T22:30:00.000000000", + "2019-01-04T22:30:35.000000000", + "2019-01-04T22:31:58.000000000", + "2019-01-04T22:32:08.000000000", + "2019-01-04T22:33:30.000000000", + "2019-01-04T22:33:38.000000000", + "2019-01-04T22:35:49.000000000", + "2019-01-04T22:35:51.000000000", + "2019-01-04T22:36:45.000000000", + "2019-01-04T22:36:47.000000000", + "2019-01-04T22:37:06.000000000", + "2019-01-04T22:38:20.000000000", + "2019-01-04T22:39:45.000000000", + "2019-01-04T22:40:47.000000000", + "2019-01-04T22:41:56.000000000", + "2019-01-04T22:42:00.000000000", + "2019-01-04T22:42:07.000000000", + "2019-01-04T22:43:31.000000000", + "2019-01-04T22:44:16.000000000", + "2019-01-04T22:44:49.000000000", + "2019-01-04T22:45:15.000000000", + "2019-01-04T22:45:29.000000000", + "2019-01-04T22:50:07.000000000", + "2019-01-04T22:50:15.000000000", + "2019-01-04T22:51:52.000000000", + "2019-01-04T22:52:37.000000000", + "2019-01-04T22:54:15.000000000", + "2019-01-04T22:54:54.000000000", + "2019-01-04T22:55:18.000000000", + "2019-01-04T22:55:48.000000000", + "2019-01-04T22:56:47.000000000", + "2019-01-04T22:57:06.000000000", + "2019-01-04T22:57:51.000000000", + "2019-01-04T22:57:57.000000000", + "2019-01-04T22:58:30.000000000", + "2019-01-04T22:59:50.000000000", + "2019-01-04T23:00:15.000000000", + "2019-01-04T23:00:39.000000000", + "2019-01-04T23:01:32.000000000", + "2019-01-04T23:01:40.000000000", + "2019-01-04T23:02:23.000000000", + "2019-01-04T23:02:46.000000000", + "2019-01-04T23:03:46.000000000", + "2019-01-04T23:04:18.000000000", + "2019-01-04T23:07:42.000000000", + "2019-01-04T23:08:41.000000000", + "2019-01-04T23:13:03.000000000", + "2019-01-04T23:15:01.000000000", + "2019-01-04T23:15:18.000000000", + "2019-01-04T23:15:21.000000000", + "2019-01-04T23:15:44.000000000", + "2019-01-04T23:15:49.000000000", + "2019-01-04T23:17:12.000000000", + "2019-01-04T23:17:44.000000000", + "2019-01-04T23:19:08.000000000", + "2019-01-04T23:19:45.000000000", + "2019-01-04T23:20:11.000000000", + "2019-01-04T23:20:18.000000000", + "2019-01-04T23:21:00.000000000", + "2019-01-04T23:22:27.000000000", + "2019-01-04T23:22:47.000000000", + "2019-01-04T23:23:22.000000000", + "2019-01-04T23:24:59.000000000", + "2019-01-04T23:27:07.000000000", + "2019-01-04T23:29:00.000000000", + "2019-01-04T23:31:00.000000000", + "2019-01-04T23:31:10.000000000", + "2019-01-04T23:31:40.000000000", + "2019-01-04T23:38:29.000000000", + "2019-01-04T23:38:47.000000000", + "2019-01-04T23:39:18.000000000", + "2019-01-04T23:40:27.000000000", + "2019-01-04T23:41:08.000000000", + "2019-01-04T23:41:18.000000000", + "2019-01-04T23:42:36.000000000", + "2019-01-04T23:44:33.000000000", + "2019-01-04T23:45:16.000000000", + "2019-01-04T23:46:11.000000000", + "2019-01-04T23:46:54.000000000", + "2019-01-04T23:47:09.000000000", + "2019-01-04T23:48:28.000000000", + "2019-01-04T23:49:09.000000000", + "2019-01-04T23:51:20.000000000", + "2019-01-04T23:51:24.000000000", + "2019-01-04T23:53:41.000000000", + "2019-01-04T23:54:39.000000000", + "2019-01-04T23:54:53.000000000", + "2019-01-04T23:55:44.000000000", + "2019-01-04T23:56:31.000000000", + "2019-01-04T23:56:33.000000000", + "2019-01-04T23:57:00.000000000", + "2019-01-04T23:57:07.000000000", + "2019-01-04T23:58:15.000000000", + "2019-01-04T23:59:00.000000000", + "2019-01-05T00:00:15.000000000", + "2019-01-05T00:01:15.000000000", + "2019-01-05T00:02:10.000000000", + "2019-01-05T00:03:31.000000000", + "2019-01-05T00:03:49.000000000", + "2019-01-05T00:03:52.000000000", + "2019-01-05T00:04:10.000000000", + "2019-01-05T00:05:31.000000000", + "2019-01-05T00:05:36.000000000", + "2019-01-05T00:07:06.000000000", + "2019-01-05T00:07:19.000000000", + "2019-01-05T00:11:15.000000000", + "2019-01-05T00:12:27.000000000", + "2019-01-05T00:13:02.000000000", + "2019-01-05T00:13:55.000000000", + "2019-01-05T00:16:09.000000000", + "2019-01-05T00:16:37.000000000", + "2019-01-05T00:16:46.000000000", + "2019-01-05T00:18:26.000000000", + "2019-01-05T00:19:09.000000000", + "2019-01-05T00:19:31.000000000", + "2019-01-05T00:19:45.000000000", + "2019-01-05T00:20:21.000000000", + "2019-01-05T00:21:42.000000000", + "2019-01-05T00:25:08.000000000", + "2019-01-05T00:25:23.000000000", + "2019-01-05T00:25:40.000000000", + "2019-01-05T00:26:35.000000000", + "2019-01-05T00:26:53.000000000", + "2019-01-05T00:27:58.000000000", + "2019-01-05T00:28:22.000000000", + "2019-01-05T00:28:27.000000000", + "2019-01-05T00:29:20.000000000", + "2019-01-05T00:29:56.000000000", + "2019-01-05T00:31:32.000000000", + "2019-01-05T00:32:03.000000000", + "2019-01-05T00:32:30.000000000", + "2019-01-05T00:33:20.000000000", + "2019-01-05T00:35:36.000000000", + "2019-01-05T00:38:57.000000000", + "2019-01-05T00:39:00.000000000", + "2019-01-05T00:39:45.000000000", + "2019-01-05T00:40:59.000000000", + "2019-01-05T00:41:08.000000000", + "2019-01-05T00:42:45.000000000", + "2019-01-05T00:45:27.000000000", + "2019-01-05T00:48:38.000000000", + "2019-01-05T00:49:55.000000000", + "2019-01-05T00:50:41.000000000", + "2019-01-05T00:50:51.000000000", + "2019-01-05T00:51:05.000000000", + "2019-01-05T00:52:26.000000000", + "2019-01-05T00:52:44.000000000", + "2019-01-05T00:54:06.000000000", + "2019-01-05T00:55:17.000000000", + "2019-01-05T00:56:31.000000000", + "2019-01-05T00:57:32.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:02:30.000000000", + "2019-01-05T01:05:15.000000000", + "2019-01-05T01:07:33.000000000", + "2019-01-05T01:10:52.000000000", + "2019-01-05T01:11:56.000000000", + "2019-01-05T01:12:40.000000000", + "2019-01-05T01:13:44.000000000", + "2019-01-05T01:13:50.000000000", + "2019-01-05T01:14:25.000000000", + "2019-01-05T01:16:03.000000000", + "2019-01-05T01:16:36.000000000", + "2019-01-05T01:17:06.000000000", + "2019-01-05T01:17:50.000000000", + "2019-01-05T01:19:48.000000000", + "2019-01-05T01:19:53.000000000", + "2019-01-05T01:20:21.000000000", + "2019-01-05T01:21:11.000000000", + "2019-01-05T01:23:39.000000000", + "2019-01-05T01:25:33.000000000", + "2019-01-05T01:25:50.000000000", + "2019-01-05T01:26:40.000000000", + "2019-01-05T01:26:53.000000000", + "2019-01-05T01:27:28.000000000", + "2019-01-05T01:27:56.000000000", + "2019-01-05T01:28:02.000000000", + "2019-01-05T01:29:37.000000000", + "2019-01-05T01:29:49.000000000", + "2019-01-05T01:31:31.000000000", + "2019-01-05T01:34:01.000000000", + "2019-01-05T01:34:37.000000000", + "2019-01-05T01:35:11.000000000", + "2019-01-05T01:35:28.000000000", + "2019-01-05T01:38:11.000000000", + "2019-01-05T01:38:18.000000000", + "2019-01-05T01:38:45.000000000", + "2019-01-05T01:40:34.000000000", + "2019-01-05T01:41:05.000000000", + "2019-01-05T01:43:38.000000000", + "2019-01-05T01:45:52.000000000", + "2019-01-05T01:47:11.000000000", + "2019-01-05T01:47:28.000000000", + "2019-01-05T01:48:45.000000000", + "2019-01-05T01:48:50.000000000", + "2019-01-05T01:50:55.000000000", + "2019-01-05T01:51:56.000000000", + "2019-01-05T01:52:02.000000000", + "2019-01-05T01:52:22.000000000", + "2019-01-05T01:52:56.000000000", + "2019-01-05T01:55:13.000000000", + "2019-01-05T01:55:52.000000000", + "2019-01-05T01:56:36.000000000", + "2019-01-05T01:56:51.000000000", + "2019-01-05T01:58:59.000000000", + "2019-01-05T01:59:01.000000000", + "2019-01-05T01:59:51.000000000", + "2019-01-05T02:01:29.000000000", + "2019-01-05T02:02:00.000000000", + "2019-01-05T02:02:09.000000000", + "2019-01-05T02:02:14.000000000", + "2019-01-05T02:03:34.000000000", + "2019-01-05T02:04:27.000000000", + "2019-01-05T02:05:08.000000000", + "2019-01-05T02:06:12.000000000", + "2019-01-05T02:06:34.000000000", + "2019-01-05T02:07:05.000000000", + "2019-01-05T02:07:25.000000000", + "2019-01-05T02:08:21.000000000", + "2019-01-05T02:09:22.000000000", + "2019-01-05T02:11:00.000000000", + "2019-01-05T02:11:14.000000000", + "2019-01-05T02:11:28.000000000", + "2019-01-05T02:12:55.000000000", + "2019-01-05T02:14:08.000000000", + "2019-01-05T02:16:23.000000000", + "2019-01-05T02:17:10.000000000", + "2019-01-05T02:17:15.000000000", + "2019-01-05T02:17:54.000000000", + "2019-01-05T02:18:51.000000000", + "2019-01-05T02:19:10.000000000", + "2019-01-05T02:19:34.000000000", + "2019-01-05T02:22:34.000000000", + "2019-01-05T02:24:11.000000000", + "2019-01-05T02:24:14.000000000", + "2019-01-05T02:25:16.000000000", + "2019-01-05T02:26:13.000000000", + "2019-01-05T02:29:46.000000000", + "2019-01-05T02:31:43.000000000", + "2019-01-05T02:32:26.000000000", + "2019-01-05T02:32:57.000000000", + "2019-01-05T02:33:00.000000000", + "2019-01-05T02:33:22.000000000", + "2019-01-05T02:34:03.000000000", + "2019-01-05T02:34:32.000000000", + "2019-01-05T02:35:09.000000000", + "2019-01-05T02:37:05.000000000", + "2019-01-05T02:37:22.000000000", + "2019-01-05T02:37:24.000000000", + "2019-01-05T02:38:10.000000000", + "2019-01-05T02:38:39.000000000", + "2019-01-05T02:39:22.000000000", + "2019-01-05T02:43:06.000000000", + "2019-01-05T02:43:40.000000000", + "2019-01-05T02:44:28.000000000", + "2019-01-05T02:46:37.000000000", + "2019-01-05T02:49:10.000000000", + "2019-01-05T02:50:02.000000000", + "2019-01-05T02:50:13.000000000", + "2019-01-05T02:50:25.000000000", + "2019-01-05T02:51:12.000000000", + "2019-01-05T02:51:53.000000000", + "2019-01-05T02:52:51.000000000", + "2019-01-05T02:53:44.000000000", + "2019-01-05T02:55:38.000000000", + "2019-01-05T02:57:47.000000000", + "2019-01-05T02:59:21.000000000", + "2019-01-05T03:00:00.000000000", + "2019-01-05T03:00:12.000000000", + "2019-01-05T03:01:43.000000000", + "2019-01-05T03:01:51.000000000", + "2019-01-05T03:02:55.000000000", + "2019-01-05T03:03:59.000000000", + "2019-01-05T03:04:15.000000000", + "2019-01-05T03:05:33.000000000", + "2019-01-05T03:11:54.000000000", + "2019-01-05T03:12:33.000000000", + "2019-01-05T03:13:50.000000000", + "2019-01-05T03:15:30.000000000", + "2019-01-05T03:15:48.000000000", + "2019-01-05T03:16:00.000000000", + "2019-01-05T03:19:01.000000000", + "2019-01-05T03:20:40.000000000", + "2019-01-05T03:21:19.000000000", + "2019-01-05T03:21:31.000000000", + "2019-01-05T03:21:35.000000000", + "2019-01-05T03:22:48.000000000", + "2019-01-05T03:25:14.000000000", + "2019-01-05T03:25:22.000000000", + "2019-01-05T03:25:27.000000000", + "2019-01-05T03:26:09.000000000", + "2019-01-05T03:26:35.000000000", + "2019-01-05T03:28:23.000000000", + "2019-01-05T03:29:45.000000000", + "2019-01-05T03:29:57.000000000", + "2019-01-05T03:30:11.000000000", + "2019-01-05T03:30:21.000000000", + "2019-01-05T03:31:54.000000000", + "2019-01-05T03:32:10.000000000", + "2019-01-05T03:32:44.000000000", + "2019-01-05T03:34:33.000000000", + "2019-01-05T03:35:03.000000000", + "2019-01-05T03:35:19.000000000", + "2019-01-05T03:35:21.000000000", + "2019-01-05T03:35:36.000000000", + "2019-01-05T03:36:29.000000000", + "2019-01-05T03:38:41.000000000", + "2019-01-05T03:40:31.000000000", + "2019-01-05T03:41:28.000000000", + "2019-01-05T03:42:31.000000000", + "2019-01-05T03:44:17.000000000", + "2019-01-05T03:46:10.000000000", + "2019-01-05T03:48:37.000000000", + "2019-01-05T03:51:41.000000000", + "2019-01-05T03:52:32.000000000", + "2019-01-05T03:55:41.000000000", + "2019-01-05T03:55:53.000000000", + "2019-01-05T03:56:17.000000000", + "2019-01-05T03:56:34.000000000", + "2019-01-05T03:58:01.000000000", + "2019-01-05T03:58:10.000000000", + "2019-01-05T03:58:31.000000000", + "2019-01-05T03:59:32.000000000", + "2019-01-05T04:00:30.000000000", + "2019-01-05T04:00:37.000000000", + "2019-01-05T04:00:57.000000000", + "2019-01-05T04:01:03.000000000", + "2019-01-05T04:02:00.000000000", + "2019-01-05T04:04:27.000000000", + "2019-01-05T04:09:51.000000000", + "2019-01-05T04:10:05.000000000", + "2019-01-05T04:10:19.000000000", + "2019-01-05T04:10:20.000000000", + "2019-01-05T04:10:34.000000000", + "2019-01-05T04:10:37.000000000", + "2019-01-05T04:12:33.000000000", + "2019-01-05T04:13:21.000000000", + "2019-01-05T04:15:28.000000000", + "2019-01-05T04:15:48.000000000", + "2019-01-05T04:17:31.000000000", + "2019-01-05T04:17:49.000000000", + "2019-01-05T04:18:49.000000000", + "2019-01-05T04:20:00.000000000", + "2019-01-05T04:20:53.000000000", + "2019-01-05T04:22:16.000000000", + "2019-01-05T04:22:40.000000000", + "2019-01-05T04:22:55.000000000", + "2019-01-05T04:24:00.000000000", + "2019-01-05T04:24:15.000000000", + "2019-01-05T04:25:34.000000000", + "2019-01-05T04:26:31.000000000", + "2019-01-05T04:26:52.000000000", + "2019-01-05T04:27:54.000000000", + "2019-01-05T04:28:58.000000000", + "2019-01-05T04:29:17.000000000", + "2019-01-05T04:31:29.000000000", + "2019-01-05T04:31:57.000000000", + "2019-01-05T04:32:24.000000000", + "2019-01-05T04:34:53.000000000", + "2019-01-05T04:34:54.000000000", + "2019-01-05T04:35:11.000000000", + "2019-01-05T04:36:36.000000000", + "2019-01-05T04:36:50.000000000", + "2019-01-05T04:39:16.000000000", + "2019-01-05T04:39:42.000000000", + "2019-01-05T04:39:51.000000000", + "2019-01-05T04:40:44.000000000", + "2019-01-05T04:40:50.000000000", + "2019-01-05T04:42:09.000000000", + "2019-01-05T04:42:36.000000000", + "2019-01-05T04:42:45.000000000", + "2019-01-05T04:43:34.000000000", + "2019-01-05T04:45:15.000000000", + "2019-01-05T04:46:29.000000000", + "2019-01-05T04:47:12.000000000", + "2019-01-05T04:47:24.000000000", + "2019-01-05T04:48:22.000000000", + "2019-01-05T04:50:14.000000000", + "2019-01-05T04:50:15.000000000", + "2019-01-05T04:51:16.000000000", + "2019-01-05T04:52:16.000000000", + "2019-01-05T04:52:19.000000000", + "2019-01-05T04:54:09.000000000", + "2019-01-05T04:55:15.000000000", + "2019-01-05T04:55:48.000000000", + "2019-01-05T04:56:50.000000000", + "2019-01-05T05:00:02.000000000", + "2019-01-05T05:00:47.000000000", + "2019-01-05T05:01:17.000000000", + "2019-01-05T05:01:24.000000000", + "2019-01-05T05:03:20.000000000", + "2019-01-05T05:04:03.000000000", + "2019-01-05T05:04:53.000000000", + "2019-01-05T05:05:16.000000000", + "2019-01-05T05:05:51.000000000", + "2019-01-05T05:09:11.000000000", + "2019-01-05T05:09:26.000000000", + "2019-01-05T05:10:00.000000000", + "2019-01-05T05:11:40.000000000", + "2019-01-05T05:12:04.000000000", + "2019-01-05T05:13:02.000000000", + "2019-01-05T05:14:08.000000000", + "2019-01-05T05:14:28.000000000", + "2019-01-05T05:14:45.000000000", + "2019-01-05T05:15:40.000000000", + "2019-01-05T05:17:11.000000000", + "2019-01-05T05:20:29.000000000", + "2019-01-05T05:22:57.000000000", + "2019-01-05T05:23:16.000000000", + "2019-01-05T05:24:38.000000000", + "2019-01-05T05:24:42.000000000", + "2019-01-05T05:24:43.000000000", + "2019-01-05T05:26:13.000000000", + "2019-01-05T05:26:16.000000000", + "2019-01-05T05:26:22.000000000", + "2019-01-05T05:26:52.000000000", + "2019-01-05T05:26:57.000000000", + "2019-01-05T05:27:51.000000000", + "2019-01-05T05:28:33.000000000", + "2019-01-05T05:28:46.000000000", + "2019-01-05T05:28:58.000000000", + "2019-01-05T05:29:22.000000000", + "2019-01-05T05:29:32.000000000", + "2019-01-05T05:29:55.000000000", + "2019-01-05T05:30:25.000000000", + "2019-01-05T05:30:38.000000000", + "2019-01-05T05:31:38.000000000", + "2019-01-05T05:32:49.000000000", + "2019-01-05T05:33:35.000000000", + "2019-01-05T05:34:25.000000000", + "2019-01-05T05:35:27.000000000", + "2019-01-05T05:35:40.000000000", + "2019-01-05T05:37:11.000000000", + "2019-01-05T05:37:32.000000000", + "2019-01-05T05:37:51.000000000", + "2019-01-05T05:37:57.000000000", + "2019-01-05T05:41:00.000000000", + "2019-01-05T05:42:17.000000000", + "2019-01-05T05:42:31.000000000", + "2019-01-05T05:44:39.000000000", + "2019-01-05T05:46:52.000000000", + "2019-01-05T05:48:03.000000000", + "2019-01-05T05:48:40.000000000", + "2019-01-05T05:52:28.000000000", + "2019-01-05T05:53:13.000000000", + "2019-01-05T05:56:56.000000000", + "2019-01-05T05:58:57.000000000", + "2019-01-05T05:59:04.000000000", + "2019-01-05T05:59:53.000000000", + "2019-01-05T06:00:17.000000000", + "2019-01-05T06:01:29.000000000", + "2019-01-05T06:01:49.000000000", + "2019-01-05T06:03:12.000000000", + "2019-01-05T06:04:49.000000000", + "2019-01-05T06:04:56.000000000", + "2019-01-05T06:05:27.000000000", + "2019-01-05T06:05:42.000000000", + "2019-01-05T06:06:00.000000000", + "2019-01-05T06:06:02.000000000", + "2019-01-05T06:06:08.000000000", + "2019-01-05T06:07:49.000000000", + "2019-01-05T06:08:03.000000000", + "2019-01-05T06:08:05.000000000", + "2019-01-05T06:08:35.000000000", + "2019-01-05T06:08:39.000000000", + "2019-01-05T06:08:56.000000000", + "2019-01-05T06:09:55.000000000", + "2019-01-05T06:10:24.000000000", + "2019-01-05T06:12:06.000000000", + "2019-01-05T06:12:14.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:27.000000000", + "2019-01-05T06:13:45.000000000", + "2019-01-05T06:13:50.000000000", + "2019-01-05T06:13:53.000000000", + "2019-01-05T06:14:52.000000000", + "2019-01-05T06:15:27.000000000", + "2019-01-05T06:18:29.000000000", + "2019-01-05T06:18:30.000000000", + "2019-01-05T06:18:47.000000000", + "2019-01-05T06:19:20.000000000", + "2019-01-05T06:20:11.000000000", + "2019-01-05T06:22:49.000000000", + "2019-01-05T06:23:19.000000000", + "2019-01-05T06:27:07.000000000", + "2019-01-05T06:31:26.000000000", + "2019-01-05T06:31:49.000000000", + "2019-01-05T06:32:17.000000000", + "2019-01-05T06:34:29.000000000", + "2019-01-05T06:34:31.000000000", + "2019-01-05T06:34:32.000000000", + "2019-01-05T06:36:45.000000000", + "2019-01-05T06:38:06.000000000", + "2019-01-05T06:39:46.000000000", + "2019-01-05T06:40:46.000000000", + "2019-01-05T06:42:00.000000000", + "2019-01-05T06:42:07.000000000", + "2019-01-05T06:42:55.000000000", + "2019-01-05T06:44:59.000000000", + "2019-01-05T06:46:17.000000000", + "2019-01-05T06:46:43.000000000", + "2019-01-05T06:47:01.000000000", + "2019-01-05T06:47:02.000000000", + "2019-01-05T06:48:46.000000000", + "2019-01-05T06:52:19.000000000", + "2019-01-05T06:53:16.000000000", + "2019-01-05T06:54:33.000000000", + "2019-01-05T06:55:37.000000000", + "2019-01-05T06:58:09.000000000", + "2019-01-05T06:58:41.000000000", + "2019-01-05T06:58:56.000000000", + "2019-01-05T06:59:50.000000000", + "2019-01-05T07:00:23.000000000", + "2019-01-05T07:00:41.000000000", + "2019-01-05T07:01:36.000000000", + "2019-01-05T07:02:14.000000000", + "2019-01-05T07:02:47.000000000", + "2019-01-05T07:03:31.000000000", + "2019-01-05T07:05:04.000000000", + "2019-01-05T07:05:23.000000000", + "2019-01-05T07:06:00.000000000", + "2019-01-05T07:06:55.000000000", + "2019-01-05T07:07:05.000000000", + "2019-01-05T07:07:33.000000000", + "2019-01-05T07:09:43.000000000", + "2019-01-05T07:10:03.000000000", + "2019-01-05T07:11:16.000000000", + "2019-01-05T07:12:00.000000000", + "2019-01-05T07:16:06.000000000", + "2019-01-05T07:16:08.000000000", + "2019-01-05T07:16:21.000000000", + "2019-01-05T07:16:33.000000000", + "2019-01-05T07:17:29.000000000", + "2019-01-05T07:18:16.000000000", + "2019-01-05T07:18:46.000000000", + "2019-01-05T07:19:23.000000000", + "2019-01-05T07:19:33.000000000", + "2019-01-05T07:19:38.000000000", + "2019-01-05T07:24:43.000000000", + "2019-01-05T07:26:05.000000000", + "2019-01-05T07:26:44.000000000", + "2019-01-05T07:28:40.000000000", + "2019-01-05T07:30:07.000000000", + "2019-01-05T07:30:52.000000000", + "2019-01-05T07:30:54.000000000", + "2019-01-05T07:31:25.000000000", + "2019-01-05T07:33:24.000000000", + "2019-01-05T07:33:28.000000000", + "2019-01-05T07:35:08.000000000", + "2019-01-05T07:35:11.000000000", + "2019-01-05T07:36:27.000000000", + "2019-01-05T07:40:03.000000000", + "2019-01-05T07:41:28.000000000", + "2019-01-05T07:43:13.000000000", + "2019-01-05T07:43:17.000000000", + "2019-01-05T07:44:12.000000000", + "2019-01-05T07:44:27.000000000", + "2019-01-05T07:44:29.000000000", + "2019-01-05T07:45:27.000000000", + "2019-01-05T07:47:05.000000000", + "2019-01-05T07:48:07.000000000", + "2019-01-05T07:48:38.000000000", + "2019-01-05T07:50:33.000000000", + "2019-01-05T07:50:54.000000000", + "2019-01-05T07:51:23.000000000", + "2019-01-05T07:52:54.000000000", + "2019-01-05T07:54:56.000000000", + "2019-01-05T07:56:05.000000000", + "2019-01-05T07:58:29.000000000", + "2019-01-05T08:02:46.000000000", + "2019-01-05T08:03:24.000000000", + "2019-01-05T08:05:15.000000000", + "2019-01-05T08:05:23.000000000", + "2019-01-05T08:05:40.000000000", + "2019-01-05T08:09:18.000000000", + "2019-01-05T08:09:51.000000000", + "2019-01-05T08:10:01.000000000", + "2019-01-05T08:10:54.000000000", + "2019-01-05T08:11:45.000000000", + "2019-01-05T08:12:13.000000000", + "2019-01-05T08:19:00.000000000", + "2019-01-05T08:20:14.000000000", + "2019-01-05T08:21:28.000000000", + "2019-01-05T08:21:42.000000000", + "2019-01-05T08:23:14.000000000", + "2019-01-05T08:23:18.000000000", + "2019-01-05T08:23:49.000000000", + "2019-01-05T08:23:54.000000000", + "2019-01-05T08:24:43.000000000", + "2019-01-05T08:26:36.000000000", + "2019-01-05T08:26:59.000000000", + "2019-01-05T08:29:43.000000000", + "2019-01-05T08:30:11.000000000", + "2019-01-05T08:30:32.000000000", + "2019-01-05T08:30:59.000000000", + "2019-01-05T08:31:48.000000000", + "2019-01-05T08:32:44.000000000", + "2019-01-05T08:33:29.000000000", + "2019-01-05T08:34:33.000000000", + "2019-01-05T08:39:10.000000000", + "2019-01-05T08:39:12.000000000", + "2019-01-05T08:41:13.000000000", + "2019-01-05T08:42:59.000000000", + "2019-01-05T08:44:04.000000000", + "2019-01-05T08:45:03.000000000", + "2019-01-05T08:45:35.000000000", + "2019-01-05T08:45:50.000000000", + "2019-01-05T08:45:58.000000000", + "2019-01-05T08:46:39.000000000", + "2019-01-05T08:48:02.000000000", + "2019-01-05T08:50:02.000000000", + "2019-01-05T08:50:41.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:32.000000000", + "2019-01-05T08:51:40.000000000", + "2019-01-05T08:51:44.000000000", + "2019-01-05T08:51:48.000000000", + "2019-01-05T08:52:16.000000000", + "2019-01-05T08:54:00.000000000", + "2019-01-05T08:54:01.000000000", + "2019-01-05T08:54:16.000000000", + "2019-01-05T08:55:01.000000000", + "2019-01-05T08:56:43.000000000", + "2019-01-05T08:59:31.000000000", + "2019-01-05T09:00:01.000000000", + "2019-01-05T09:00:14.000000000", + "2019-01-05T09:00:39.000000000", + "2019-01-05T09:00:44.000000000", + "2019-01-05T09:01:34.000000000", + "2019-01-05T09:02:23.000000000", + "2019-01-05T09:02:51.000000000", + "2019-01-05T09:03:01.000000000", + "2019-01-05T09:03:28.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:06:21.000000000", + "2019-01-05T09:07:52.000000000", + "2019-01-05T09:09:37.000000000", + "2019-01-05T09:10:12.000000000", + "2019-01-05T09:10:13.000000000", + "2019-01-05T09:10:48.000000000", + "2019-01-05T09:11:06.000000000", + "2019-01-05T09:11:13.000000000", + "2019-01-05T09:11:44.000000000", + "2019-01-05T09:14:18.000000000", + "2019-01-05T09:14:45.000000000", + "2019-01-05T09:15:15.000000000", + "2019-01-05T09:16:09.000000000", + "2019-01-05T09:16:33.000000000", + "2019-01-05T09:18:54.000000000", + "2019-01-05T09:21:45.000000000", + "2019-01-05T09:21:46.000000000", + "2019-01-05T09:26:32.000000000", + "2019-01-05T09:27:01.000000000", + "2019-01-05T09:27:04.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:54.000000000", + "2019-01-05T09:31:27.000000000", + "2019-01-05T09:31:47.000000000", + "2019-01-05T09:32:29.000000000", + "2019-01-05T09:36:18.000000000", + "2019-01-05T09:38:59.000000000", + "2019-01-05T09:39:59.000000000", + "2019-01-05T09:40:16.000000000", + "2019-01-05T09:41:01.000000000", + "2019-01-05T09:41:12.000000000", + "2019-01-05T09:41:21.000000000", + "2019-01-05T09:43:09.000000000", + "2019-01-05T09:43:11.000000000", + "2019-01-05T09:43:21.000000000", + "2019-01-05T09:45:42.000000000", + "2019-01-05T09:45:44.000000000", + "2019-01-05T09:46:38.000000000", + "2019-01-05T09:47:12.000000000", + "2019-01-05T09:47:49.000000000", + "2019-01-05T09:49:35.000000000", + "2019-01-05T09:51:37.000000000", + "2019-01-05T09:52:25.000000000", + "2019-01-05T09:52:35.000000000", + "2019-01-05T09:52:46.000000000", + "2019-01-05T09:55:58.000000000", + "2019-01-05T09:56:50.000000000", + "2019-01-05T09:57:50.000000000", + "2019-01-05T09:58:32.000000000", + "2019-01-05T10:00:49.000000000", + "2019-01-05T10:01:57.000000000", + "2019-01-05T10:03:00.000000000", + "2019-01-05T10:03:58.000000000", + "2019-01-05T10:04:18.000000000", + "2019-01-05T10:04:20.000000000", + "2019-01-05T10:04:40.000000000", + "2019-01-05T10:04:46.000000000", + "2019-01-05T10:05:09.000000000", + "2019-01-05T10:07:15.000000000", + "2019-01-05T10:08:40.000000000", + "2019-01-05T10:09:25.000000000", + "2019-01-05T10:10:13.000000000", + "2019-01-05T10:10:38.000000000", + "2019-01-05T10:10:47.000000000", + "2019-01-05T10:13:11.000000000", + "2019-01-05T10:14:09.000000000", + "2019-01-05T10:14:55.000000000", + "2019-01-05T10:15:50.000000000", + "2019-01-05T10:15:59.000000000", + "2019-01-05T10:17:41.000000000", + "2019-01-05T10:19:48.000000000", + "2019-01-05T10:20:54.000000000", + "2019-01-05T10:23:50.000000000", + "2019-01-05T10:24:04.000000000", + "2019-01-05T10:24:19.000000000", + "2019-01-05T10:24:55.000000000", + "2019-01-05T10:25:19.000000000", + "2019-01-05T10:25:48.000000000", + "2019-01-05T10:26:03.000000000", + "2019-01-05T10:26:50.000000000", + "2019-01-05T10:27:49.000000000", + "2019-01-05T10:27:50.000000000", + "2019-01-05T10:27:59.000000000", + "2019-01-05T10:29:53.000000000", + "2019-01-05T10:30:33.000000000", + "2019-01-05T10:30:39.000000000", + "2019-01-05T10:31:36.000000000", + "2019-01-05T10:32:28.000000000", + "2019-01-05T10:34:24.000000000", + "2019-01-05T10:36:04.000000000", + "2019-01-05T10:36:19.000000000", + "2019-01-05T10:37:25.000000000", + "2019-01-05T10:42:07.000000000", + "2019-01-05T10:42:41.000000000", + "2019-01-05T10:43:19.000000000", + "2019-01-05T10:46:38.000000000", + "2019-01-05T10:47:14.000000000", + "2019-01-05T10:47:58.000000000", + "2019-01-05T10:48:45.000000000", + "2019-01-05T10:49:17.000000000", + "2019-01-05T10:49:23.000000000", + "2019-01-05T10:49:31.000000000", + "2019-01-05T10:50:36.000000000", + "2019-01-05T10:52:18.000000000", + "2019-01-05T10:52:25.000000000", + "2019-01-05T10:53:13.000000000", + "2019-01-05T10:53:23.000000000", + "2019-01-05T10:55:48.000000000", + "2019-01-05T10:56:07.000000000", + "2019-01-05T10:58:09.000000000", + "2019-01-05T10:59:42.000000000", + "2019-01-05T11:01:20.000000000", + "2019-01-05T11:04:04.000000000", + "2019-01-05T11:04:36.000000000", + "2019-01-05T11:05:42.000000000", + "2019-01-05T11:06:45.000000000", + "2019-01-05T11:08:54.000000000", + "2019-01-05T11:10:42.000000000", + "2019-01-05T11:11:29.000000000", + "2019-01-05T11:11:47.000000000", + "2019-01-05T11:12:32.000000000", + "2019-01-05T11:13:37.000000000", + "2019-01-05T11:13:56.000000000", + "2019-01-05T11:14:17.000000000", + "2019-01-05T11:15:40.000000000", + "2019-01-05T11:16:35.000000000", + "2019-01-05T11:16:58.000000000", + "2019-01-05T11:16:59.000000000", + "2019-01-05T11:18:05.000000000", + "2019-01-05T11:19:34.000000000", + "2019-01-05T11:20:17.000000000", + "2019-01-05T11:21:28.000000000", + "2019-01-05T11:21:45.000000000", + "2019-01-05T11:22:02.000000000", + "2019-01-05T11:23:01.000000000", + "2019-01-05T11:25:51.000000000", + "2019-01-05T11:26:36.000000000", + "2019-01-05T11:27:34.000000000", + "2019-01-05T11:28:52.000000000", + "2019-01-05T11:29:44.000000000", + "2019-01-05T11:31:11.000000000", + "2019-01-05T11:31:23.000000000", + "2019-01-05T11:34:17.000000000", + "2019-01-05T11:37:04.000000000", + "2019-01-05T11:37:41.000000000", + "2019-01-05T11:38:55.000000000", + "2019-01-05T11:40:47.000000000", + "2019-01-05T11:43:38.000000000", + "2019-01-05T11:45:00.000000000", + "2019-01-05T11:45:16.000000000", + "2019-01-05T11:45:39.000000000", + "2019-01-05T11:46:08.000000000", + "2019-01-05T11:50:09.000000000", + "2019-01-05T11:51:21.000000000", + "2019-01-05T11:51:32.000000000", + "2019-01-05T11:52:21.000000000", + "2019-01-05T11:53:21.000000000", + "2019-01-05T11:53:36.000000000", + "2019-01-05T11:54:24.000000000", + "2019-01-05T11:55:37.000000000", + "2019-01-05T11:56:07.000000000", + "2019-01-05T11:56:20.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:30.000000000", + "2019-01-05T11:57:28.000000000", + "2019-01-05T11:57:45.000000000", + "2019-01-05T12:00:06.000000000", + "2019-01-05T12:01:10.000000000", + "2019-01-05T12:01:19.000000000", + "2019-01-05T12:01:30.000000000", + "2019-01-05T12:02:11.000000000", + "2019-01-05T12:02:35.000000000", + "2019-01-05T12:03:42.000000000", + "2019-01-05T12:04:12.000000000", + "2019-01-05T12:05:14.000000000", + "2019-01-05T12:06:52.000000000", + "2019-01-05T12:07:21.000000000", + "2019-01-05T12:07:45.000000000", + "2019-01-05T12:08:20.000000000", + "2019-01-05T12:08:37.000000000", + "2019-01-05T12:11:11.000000000", + "2019-01-05T12:12:31.000000000", + "2019-01-05T12:12:52.000000000", + "2019-01-05T12:12:59.000000000", + "2019-01-05T12:14:52.000000000", + "2019-01-05T12:15:15.000000000", + "2019-01-05T12:16:40.000000000", + "2019-01-05T12:17:14.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:18:22.000000000", + "2019-01-05T12:18:59.000000000", + "2019-01-05T12:19:47.000000000", + "2019-01-05T12:20:16.000000000", + "2019-01-05T12:20:42.000000000", + "2019-01-05T12:22:24.000000000", + "2019-01-05T12:23:31.000000000", + "2019-01-05T12:26:54.000000000", + "2019-01-05T12:27:01.000000000", + "2019-01-05T12:28:06.000000000", + "2019-01-05T12:29:46.000000000", + "2019-01-05T12:30:26.000000000", + "2019-01-05T12:30:50.000000000", + "2019-01-05T12:31:50.000000000", + "2019-01-05T12:32:21.000000000", + "2019-01-05T12:32:44.000000000", + "2019-01-05T12:32:48.000000000", + "2019-01-05T12:34:51.000000000", + "2019-01-05T12:35:28.000000000", + "2019-01-05T12:35:31.000000000", + "2019-01-05T12:38:55.000000000", + "2019-01-05T12:40:00.000000000", + "2019-01-05T12:40:12.000000000", + "2019-01-05T12:40:50.000000000", + "2019-01-05T12:41:47.000000000", + "2019-01-05T12:42:16.000000000", + "2019-01-05T12:43:49.000000000", + "2019-01-05T12:44:11.000000000", + "2019-01-05T12:47:57.000000000", + "2019-01-05T12:48:09.000000000", + "2019-01-05T12:48:17.000000000", + "2019-01-05T12:49:23.000000000", + "2019-01-05T12:49:30.000000000", + "2019-01-05T12:49:43.000000000", + "2019-01-05T12:50:08.000000000", + "2019-01-05T12:54:28.000000000", + "2019-01-05T12:56:26.000000000", + "2019-01-05T12:58:43.000000000", + "2019-01-05T12:58:49.000000000", + "2019-01-05T12:59:48.000000000", + "2019-01-05T13:02:39.000000000", + "2019-01-05T13:02:45.000000000", + "2019-01-05T13:03:29.000000000", + "2019-01-05T13:03:44.000000000", + "2019-01-05T13:03:55.000000000", + "2019-01-05T13:05:06.000000000", + "2019-01-05T13:05:38.000000000", + "2019-01-05T13:06:16.000000000", + "2019-01-05T13:07:54.000000000", + "2019-01-05T13:08:00.000000000", + "2019-01-05T13:08:21.000000000", + "2019-01-05T13:10:46.000000000", + "2019-01-05T13:12:20.000000000", + "2019-01-05T13:13:00.000000000", + "2019-01-05T13:13:51.000000000", + "2019-01-05T13:15:10.000000000", + "2019-01-05T13:15:16.000000000", + "2019-01-05T13:15:30.000000000", + "2019-01-05T13:16:29.000000000", + "2019-01-05T13:16:46.000000000", + "2019-01-05T13:17:04.000000000", + "2019-01-05T13:18:59.000000000", + "2019-01-05T13:19:49.000000000", + "2019-01-05T13:22:00.000000000", + "2019-01-05T13:22:09.000000000", + "2019-01-05T13:23:00.000000000", + "2019-01-05T13:23:57.000000000", + "2019-01-05T13:24:00.000000000", + "2019-01-05T13:24:16.000000000", + "2019-01-05T13:24:33.000000000", + "2019-01-05T13:26:24.000000000", + "2019-01-05T13:26:28.000000000", + "2019-01-05T13:27:27.000000000", + "2019-01-05T13:27:35.000000000", + "2019-01-05T13:29:55.000000000", + "2019-01-05T13:30:34.000000000", + "2019-01-05T13:30:36.000000000", + "2019-01-05T13:32:15.000000000", + "2019-01-05T13:32:47.000000000", + "2019-01-05T13:32:58.000000000", + "2019-01-05T13:33:02.000000000", + "2019-01-05T13:33:28.000000000", + "2019-01-05T13:34:33.000000000", + "2019-01-05T13:35:35.000000000", + "2019-01-05T13:35:38.000000000", + "2019-01-05T13:35:39.000000000", + "2019-01-05T13:35:45.000000000", + "2019-01-05T13:37:07.000000000", + "2019-01-05T13:38:28.000000000", + "2019-01-05T13:39:11.000000000", + "2019-01-05T13:39:57.000000000", + "2019-01-05T13:40:28.000000000", + "2019-01-05T13:40:56.000000000", + "2019-01-05T13:41:23.000000000", + "2019-01-05T13:41:52.000000000", + "2019-01-05T13:42:37.000000000", + "2019-01-05T13:43:23.000000000", + "2019-01-05T13:43:29.000000000", + "2019-01-05T13:46:38.000000000", + "2019-01-05T13:47:29.000000000", + "2019-01-05T13:47:45.000000000", + "2019-01-05T13:48:57.000000000", + "2019-01-05T13:51:05.000000000", + "2019-01-05T13:51:50.000000000", + "2019-01-05T13:51:53.000000000", + "2019-01-05T13:52:09.000000000", + "2019-01-05T13:52:22.000000000", + "2019-01-05T13:52:50.000000000", + "2019-01-05T13:54:07.000000000", + "2019-01-05T13:54:16.000000000", + "2019-01-05T13:54:22.000000000", + "2019-01-05T13:54:37.000000000", + "2019-01-05T13:55:18.000000000", + "2019-01-05T13:55:20.000000000", + "2019-01-05T13:56:15.000000000", + "2019-01-05T13:57:26.000000000", + "2019-01-05T13:57:50.000000000", + "2019-01-05T13:58:19.000000000", + "2019-01-05T13:58:51.000000000", + "2019-01-05T14:03:07.000000000", + "2019-01-05T14:04:36.000000000", + "2019-01-05T14:05:43.000000000", + "2019-01-05T14:06:06.000000000", + "2019-01-05T14:06:35.000000000", + "2019-01-05T14:08:23.000000000", + "2019-01-05T14:10:11.000000000", + "2019-01-05T14:11:16.000000000", + "2019-01-05T14:12:36.000000000", + "2019-01-05T14:15:12.000000000", + "2019-01-05T14:17:14.000000000", + "2019-01-05T14:18:08.000000000", + "2019-01-05T14:19:49.000000000", + "2019-01-05T14:20:48.000000000", + "2019-01-05T14:21:20.000000000", + "2019-01-05T14:21:46.000000000", + "2019-01-05T14:22:46.000000000", + "2019-01-05T14:23:12.000000000", + "2019-01-05T14:24:26.000000000", + "2019-01-05T14:25:24.000000000", + "2019-01-05T14:28:45.000000000", + "2019-01-05T14:30:34.000000000", + "2019-01-05T14:33:48.000000000", + "2019-01-05T14:33:52.000000000", + "2019-01-05T14:34:18.000000000", + "2019-01-05T14:34:34.000000000", + "2019-01-05T14:35:38.000000000", + "2019-01-05T14:37:31.000000000", + "2019-01-05T14:39:14.000000000", + "2019-01-05T14:39:49.000000000", + "2019-01-05T14:42:43.000000000", + "2019-01-05T14:43:16.000000000", + "2019-01-05T14:44:08.000000000", + "2019-01-05T14:44:53.000000000", + "2019-01-05T14:45:32.000000000", + "2019-01-05T14:45:46.000000000", + "2019-01-05T14:45:57.000000000", + "2019-01-05T14:47:23.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:52:38.000000000", + "2019-01-05T14:54:17.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:56:35.000000000", + "2019-01-05T14:57:01.000000000", + "2019-01-05T14:57:15.000000000", + "2019-01-05T14:57:51.000000000", + "2019-01-05T14:58:46.000000000", + "2019-01-05T15:00:29.000000000", + "2019-01-05T15:01:48.000000000", + "2019-01-05T15:06:00.000000000", + "2019-01-05T15:06:24.000000000", + "2019-01-05T15:07:10.000000000", + "2019-01-05T15:08:27.000000000", + "2019-01-05T15:08:30.000000000", + "2019-01-05T15:09:55.000000000", + "2019-01-05T15:11:17.000000000", + "2019-01-05T15:11:22.000000000", + "2019-01-05T15:11:34.000000000", + "2019-01-05T15:12:06.000000000", + "2019-01-05T15:14:40.000000000", + "2019-01-05T15:15:51.000000000", + "2019-01-05T15:18:48.000000000", + "2019-01-05T15:18:57.000000000", + "2019-01-05T15:21:47.000000000", + "2019-01-05T15:22:34.000000000", + "2019-01-05T15:23:18.000000000", + "2019-01-05T15:23:33.000000000", + "2019-01-05T15:24:51.000000000", + "2019-01-05T15:25:11.000000000", + "2019-01-05T15:25:13.000000000", + "2019-01-05T15:26:21.000000000", + "2019-01-05T15:27:38.000000000", + "2019-01-05T15:29:24.000000000", + "2019-01-05T15:30:13.000000000", + "2019-01-05T15:32:27.000000000", + "2019-01-05T15:32:44.000000000", + "2019-01-05T15:33:02.000000000", + "2019-01-05T15:33:04.000000000", + "2019-01-05T15:34:20.000000000", + "2019-01-05T15:36:13.000000000", + "2019-01-05T15:36:35.000000000", + "2019-01-05T15:37:06.000000000", + "2019-01-05T15:39:03.000000000", + "2019-01-05T15:40:03.000000000", + "2019-01-05T15:41:29.000000000", + "2019-01-05T15:41:46.000000000", + "2019-01-05T15:42:17.000000000", + "2019-01-05T15:43:02.000000000", + "2019-01-05T15:43:13.000000000", + "2019-01-05T15:44:14.000000000", + "2019-01-05T15:44:58.000000000", + "2019-01-05T15:46:11.000000000", + "2019-01-05T15:47:11.000000000", + "2019-01-05T15:49:20.000000000", + "2019-01-05T15:50:09.000000000", + "2019-01-05T15:53:01.000000000", + "2019-01-05T15:54:28.000000000", + "2019-01-05T15:54:41.000000000", + "2019-01-05T15:56:30.000000000", + "2019-01-05T15:56:32.000000000", + "2019-01-05T15:58:40.000000000", + "2019-01-05T15:58:41.000000000", + "2019-01-05T15:58:53.000000000", + "2019-01-05T16:01:23.000000000", + "2019-01-05T16:01:54.000000000", + "2019-01-05T16:01:57.000000000", + "2019-01-05T16:03:09.000000000", + "2019-01-05T16:04:24.000000000", + "2019-01-05T16:05:37.000000000", + "2019-01-05T16:05:46.000000000", + "2019-01-05T16:06:14.000000000", + "2019-01-05T16:07:23.000000000", + "2019-01-05T16:09:09.000000000", + "2019-01-05T16:11:02.000000000", + "2019-01-05T16:12:16.000000000", + "2019-01-05T16:12:45.000000000", + "2019-01-05T16:13:04.000000000", + "2019-01-05T16:14:43.000000000", + "2019-01-05T16:15:12.000000000", + "2019-01-05T16:15:22.000000000", + "2019-01-05T16:16:39.000000000", + "2019-01-05T16:16:46.000000000", + "2019-01-05T16:17:36.000000000", + "2019-01-05T16:18:52.000000000", + "2019-01-05T16:19:34.000000000", + "2019-01-05T16:19:37.000000000", + "2019-01-05T16:20:47.000000000", + "2019-01-05T16:21:30.000000000", + "2019-01-05T16:22:05.000000000", + "2019-01-05T16:22:45.000000000", + "2019-01-05T16:22:56.000000000", + "2019-01-05T16:23:10.000000000", + "2019-01-05T16:23:17.000000000", + "2019-01-05T16:25:00.000000000", + "2019-01-05T16:27:05.000000000", + "2019-01-05T16:28:48.000000000", + "2019-01-05T16:29:09.000000000", + "2019-01-05T16:31:14.000000000", + "2019-01-05T16:31:42.000000000", + "2019-01-05T16:32:38.000000000", + "2019-01-05T16:33:22.000000000", + "2019-01-05T16:36:05.000000000", + "2019-01-05T16:36:20.000000000", + "2019-01-05T16:39:53.000000000", + "2019-01-05T16:40:01.000000000", + "2019-01-05T16:40:06.000000000", + "2019-01-05T16:40:57.000000000", + "2019-01-05T16:41:59.000000000", + "2019-01-05T16:44:01.000000000", + "2019-01-05T16:45:06.000000000", + "2019-01-05T16:46:00.000000000", + "2019-01-05T16:46:01.000000000", + "2019-01-05T16:46:09.000000000", + "2019-01-05T16:46:35.000000000", + "2019-01-05T16:47:04.000000000", + "2019-01-05T16:47:22.000000000", + "2019-01-05T16:47:24.000000000", + "2019-01-05T16:48:32.000000000", + "2019-01-05T16:49:31.000000000", + "2019-01-05T16:50:36.000000000", + "2019-01-05T16:51:44.000000000", + "2019-01-05T16:52:17.000000000", + "2019-01-05T16:52:55.000000000", + "2019-01-05T16:53:22.000000000", + "2019-01-05T16:54:32.000000000", + "2019-01-05T16:55:41.000000000", + "2019-01-05T16:56:15.000000000", + "2019-01-05T16:57:32.000000000", + "2019-01-05T16:59:21.000000000", + "2019-01-05T16:59:53.000000000", + "2019-01-05T17:00:55.000000000", + "2019-01-05T17:01:11.000000000", + "2019-01-05T17:03:43.000000000", + "2019-01-05T17:04:31.000000000", + "2019-01-05T17:04:40.000000000", + "2019-01-05T17:05:41.000000000", + "2019-01-05T17:07:05.000000000", + "2019-01-05T17:07:23.000000000", + "2019-01-05T17:08:16.000000000", + "2019-01-05T17:08:59.000000000", + "2019-01-05T17:11:17.000000000", + "2019-01-05T17:12:56.000000000", + "2019-01-05T17:16:29.000000000", + "2019-01-05T17:17:06.000000000", + "2019-01-05T17:17:08.000000000", + "2019-01-05T17:17:26.000000000", + "2019-01-05T17:19:10.000000000", + "2019-01-05T17:19:12.000000000", + "2019-01-05T17:19:26.000000000", + "2019-01-05T17:19:45.000000000", + "2019-01-05T17:21:21.000000000", + "2019-01-05T17:23:08.000000000", + "2019-01-05T17:24:00.000000000", + "2019-01-05T17:24:34.000000000", + "2019-01-05T17:25:01.000000000", + "2019-01-05T17:27:55.000000000", + "2019-01-05T17:28:23.000000000", + "2019-01-05T17:30:30.000000000", + "2019-01-05T17:31:00.000000000", + "2019-01-05T17:32:53.000000000", + "2019-01-05T17:33:05.000000000", + "2019-01-05T17:33:15.000000000", + "2019-01-05T17:33:25.000000000", + "2019-01-05T17:33:27.000000000", + "2019-01-05T17:36:05.000000000", + "2019-01-05T17:36:54.000000000", + "2019-01-05T17:37:39.000000000", + "2019-01-05T17:38:10.000000000", + "2019-01-05T17:38:20.000000000", + "2019-01-05T17:38:50.000000000", + "2019-01-05T17:40:43.000000000", + "2019-01-05T17:40:47.000000000", + "2019-01-05T17:41:25.000000000", + "2019-01-05T17:41:38.000000000", + "2019-01-05T17:41:46.000000000", + "2019-01-05T17:42:08.000000000", + "2019-01-05T17:43:30.000000000", + "2019-01-05T17:44:27.000000000", + "2019-01-05T17:45:29.000000000", + "2019-01-05T17:45:43.000000000", + "2019-01-05T17:46:17.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:49:40.000000000", + "2019-01-05T17:51:06.000000000", + "2019-01-05T17:51:50.000000000", + "2019-01-05T17:52:35.000000000", + "2019-01-05T17:52:53.000000000", + "2019-01-05T17:53:08.000000000", + "2019-01-05T17:53:29.000000000", + "2019-01-05T17:53:37.000000000", + "2019-01-05T17:53:38.000000000", + "2019-01-05T17:54:09.000000000", + "2019-01-05T17:54:32.000000000", + "2019-01-05T17:54:45.000000000", + "2019-01-05T17:55:01.000000000", + "2019-01-05T17:56:32.000000000", + "2019-01-05T17:57:38.000000000", + "2019-01-05T17:58:57.000000000", + "2019-01-05T17:59:19.000000000", + "2019-01-05T18:00:43.000000000", + "2019-01-05T18:01:47.000000000", + "2019-01-05T18:03:03.000000000", + "2019-01-05T18:04:05.000000000", + "2019-01-05T18:05:10.000000000", + "2019-01-05T18:06:06.000000000", + "2019-01-05T18:06:13.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:24.000000000", + "2019-01-05T18:06:48.000000000", + "2019-01-05T18:07:16.000000000", + "2019-01-05T18:10:41.000000000", + "2019-01-05T18:12:52.000000000", + "2019-01-05T18:13:29.000000000", + "2019-01-05T18:13:40.000000000", + "2019-01-05T18:14:58.000000000", + "2019-01-05T18:15:26.000000000", + "2019-01-05T18:16:15.000000000", + "2019-01-05T18:19:02.000000000", + "2019-01-05T18:21:11.000000000", + "2019-01-05T18:25:41.000000000", + "2019-01-05T18:25:43.000000000", + "2019-01-05T18:27:56.000000000", + "2019-01-05T18:28:23.000000000", + "2019-01-05T18:30:09.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:31:26.000000000", + "2019-01-05T18:31:53.000000000", + "2019-01-05T18:32:24.000000000", + "2019-01-05T18:36:09.000000000", + "2019-01-05T18:37:29.000000000", + "2019-01-05T18:37:34.000000000", + "2019-01-05T18:37:59.000000000", + "2019-01-05T18:39:19.000000000", + "2019-01-05T18:41:42.000000000", + "2019-01-05T18:42:17.000000000", + "2019-01-05T18:42:30.000000000", + "2019-01-05T18:43:12.000000000", + "2019-01-05T18:45:40.000000000", + "2019-01-05T18:46:48.000000000", + "2019-01-05T18:47:14.000000000", + "2019-01-05T18:48:27.000000000", + "2019-01-05T18:48:54.000000000", + "2019-01-05T18:50:27.000000000", + "2019-01-05T18:50:50.000000000", + "2019-01-05T18:51:55.000000000", + "2019-01-05T18:52:29.000000000", + "2019-01-05T18:53:24.000000000", + "2019-01-05T18:53:41.000000000", + "2019-01-05T18:54:59.000000000", + "2019-01-05T18:55:47.000000000", + "2019-01-05T18:57:05.000000000", + "2019-01-05T18:57:42.000000000", + "2019-01-05T18:57:54.000000000", + "2019-01-05T18:59:01.000000000", + "2019-01-05T18:59:18.000000000", + "2019-01-05T19:00:48.000000000", + "2019-01-05T19:01:32.000000000", + "2019-01-05T19:01:36.000000000", + "2019-01-05T19:03:43.000000000", + "2019-01-05T19:04:14.000000000", + "2019-01-05T19:04:40.000000000", + "2019-01-05T19:05:13.000000000", + "2019-01-05T19:07:24.000000000", + "2019-01-05T19:08:11.000000000", + "2019-01-05T19:10:10.000000000", + "2019-01-05T19:11:20.000000000", + "2019-01-05T19:11:46.000000000", + "2019-01-05T19:12:15.000000000", + "2019-01-05T19:12:28.000000000", + "2019-01-05T19:13:06.000000000", + "2019-01-05T19:17:13.000000000", + "2019-01-05T19:19:01.000000000", + "2019-01-05T19:19:47.000000000", + "2019-01-05T19:20:43.000000000", + "2019-01-05T19:21:31.000000000", + "2019-01-05T19:21:53.000000000", + "2019-01-05T19:21:59.000000000", + "2019-01-05T19:22:11.000000000", + "2019-01-05T19:22:25.000000000", + "2019-01-05T19:22:30.000000000", + "2019-01-05T19:23:48.000000000", + "2019-01-05T19:25:52.000000000", + "2019-01-05T19:26:13.000000000", + "2019-01-05T19:26:18.000000000", + "2019-01-05T19:26:58.000000000", + "2019-01-05T19:28:20.000000000", + "2019-01-05T19:28:43.000000000", + "2019-01-05T19:29:16.000000000", + "2019-01-05T19:30:16.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:45.000000000", + "2019-01-05T19:30:48.000000000", + "2019-01-05T19:32:05.000000000", + "2019-01-05T19:32:13.000000000", + "2019-01-05T19:32:33.000000000", + "2019-01-05T19:33:00.000000000", + "2019-01-05T19:33:13.000000000", + "2019-01-05T19:34:00.000000000", + "2019-01-05T19:34:38.000000000", + "2019-01-05T19:36:26.000000000", + "2019-01-05T19:39:27.000000000", + "2019-01-05T19:39:43.000000000", + "2019-01-05T19:40:04.000000000", + "2019-01-05T19:40:32.000000000", + "2019-01-05T19:41:15.000000000", + "2019-01-05T19:42:03.000000000", + "2019-01-05T19:46:04.000000000", + "2019-01-05T19:46:32.000000000", + "2019-01-05T19:46:48.000000000", + "2019-01-05T19:47:57.000000000", + "2019-01-05T19:48:20.000000000", + "2019-01-05T19:49:19.000000000", + "2019-01-05T19:49:28.000000000", + "2019-01-05T19:51:03.000000000", + "2019-01-05T19:52:16.000000000", + "2019-01-05T19:52:43.000000000", + "2019-01-05T19:55:23.000000000", + "2019-01-05T19:55:24.000000000", + "2019-01-05T19:55:28.000000000", + "2019-01-05T19:56:55.000000000", + "2019-01-05T19:57:00.000000000", + "2019-01-05T19:58:34.000000000", + "2019-01-05T19:59:58.000000000", + "2019-01-05T20:00:10.000000000", + "2019-01-05T20:01:00.000000000", + "2019-01-05T20:01:08.000000000", + "2019-01-05T20:01:28.000000000", + "2019-01-05T20:05:11.000000000", + "2019-01-05T20:05:37.000000000", + "2019-01-05T20:05:42.000000000", + "2019-01-05T20:08:15.000000000", + "2019-01-05T20:09:50.000000000", + "2019-01-05T20:11:06.000000000", + "2019-01-05T20:13:14.000000000", + "2019-01-05T20:14:24.000000000", + "2019-01-05T20:16:12.000000000", + "2019-01-05T20:16:17.000000000", + "2019-01-05T20:16:29.000000000", + "2019-01-05T20:16:41.000000000", + "2019-01-05T20:17:49.000000000", + "2019-01-05T20:20:04.000000000", + "2019-01-05T20:22:07.000000000", + "2019-01-05T20:22:47.000000000", + "2019-01-05T20:29:17.000000000", + "2019-01-05T20:30:06.000000000", + "2019-01-05T20:30:32.000000000", + "2019-01-05T20:32:58.000000000", + "2019-01-05T20:34:04.000000000", + "2019-01-05T20:34:32.000000000", + "2019-01-05T20:35:13.000000000", + "2019-01-05T20:35:23.000000000", + "2019-01-05T20:36:48.000000000", + "2019-01-05T20:38:42.000000000", + "2019-01-05T20:39:36.000000000", + "2019-01-05T20:40:10.000000000", + "2019-01-05T20:40:25.000000000", + "2019-01-05T20:42:48.000000000", + "2019-01-05T20:43:54.000000000", + "2019-01-05T20:44:07.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:45:45.000000000", + "2019-01-05T20:47:22.000000000", + "2019-01-05T20:50:38.000000000", + "2019-01-05T20:50:43.000000000", + "2019-01-05T20:53:04.000000000", + "2019-01-05T20:53:13.000000000", + "2019-01-05T20:53:52.000000000", + "2019-01-05T20:54:18.000000000", + "2019-01-05T20:55:30.000000000", + "2019-01-05T20:55:41.000000000", + "2019-01-05T20:55:44.000000000", + "2019-01-05T20:56:31.000000000", + "2019-01-05T20:58:14.000000000", + "2019-01-05T20:59:14.000000000", + "2019-01-05T20:59:32.000000000", + "2019-01-05T21:00:27.000000000", + "2019-01-05T21:00:58.000000000", + "2019-01-05T21:02:10.000000000", + "2019-01-05T21:02:54.000000000", + "2019-01-05T21:03:21.000000000", + "2019-01-05T21:03:32.000000000", + "2019-01-05T21:04:40.000000000", + "2019-01-05T21:05:02.000000000", + "2019-01-05T21:05:50.000000000", + "2019-01-05T21:06:37.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:10:43.000000000", + "2019-01-05T21:11:34.000000000", + "2019-01-05T21:11:45.000000000", + "2019-01-05T21:13:02.000000000", + "2019-01-05T21:17:18.000000000", + "2019-01-05T21:18:23.000000000", + "2019-01-05T21:18:41.000000000", + "2019-01-05T21:20:50.000000000", + "2019-01-05T21:21:30.000000000", + "2019-01-05T21:22:38.000000000", + "2019-01-05T21:23:26.000000000", + "2019-01-05T21:24:39.000000000", + "2019-01-05T21:25:11.000000000", + "2019-01-05T21:26:13.000000000", + "2019-01-05T21:26:14.000000000", + "2019-01-05T21:27:12.000000000", + "2019-01-05T21:27:30.000000000", + "2019-01-05T21:27:34.000000000", + "2019-01-05T21:27:39.000000000", + "2019-01-05T21:27:53.000000000", + "2019-01-05T21:32:01.000000000", + "2019-01-05T21:32:19.000000000", + "2019-01-05T21:33:29.000000000", + "2019-01-05T21:34:30.000000000", + "2019-01-05T21:36:00.000000000", + "2019-01-05T21:36:56.000000000", + "2019-01-05T21:40:36.000000000", + "2019-01-05T21:43:36.000000000", + "2019-01-05T21:43:41.000000000", + "2019-01-05T21:45:29.000000000", + "2019-01-05T21:46:40.000000000", + "2019-01-05T21:47:28.000000000", + "2019-01-05T21:48:42.000000000", + "2019-01-05T21:49:24.000000000", + "2019-01-05T21:49:44.000000000", + "2019-01-05T21:51:35.000000000", + "2019-01-05T21:52:47.000000000", + "2019-01-05T21:53:08.000000000", + "2019-01-05T21:53:55.000000000", + "2019-01-05T21:58:22.000000000", + "2019-01-05T22:01:13.000000000", + "2019-01-05T22:01:39.000000000", + "2019-01-05T22:01:44.000000000", + "2019-01-05T22:02:40.000000000", + "2019-01-05T22:03:47.000000000", + "2019-01-05T22:04:06.000000000", + "2019-01-05T22:04:57.000000000", + "2019-01-05T22:06:30.000000000", + "2019-01-05T22:06:42.000000000", + "2019-01-05T22:06:59.000000000", + "2019-01-05T22:07:10.000000000", + "2019-01-05T22:07:35.000000000", + "2019-01-05T22:07:40.000000000", + "2019-01-05T22:08:20.000000000", + "2019-01-05T22:08:58.000000000", + "2019-01-05T22:09:18.000000000", + "2019-01-05T22:12:20.000000000", + "2019-01-05T22:14:19.000000000", + "2019-01-05T22:14:58.000000000", + "2019-01-05T22:16:38.000000000", + "2019-01-05T22:16:45.000000000", + "2019-01-05T22:18:17.000000000", + "2019-01-05T22:18:45.000000000", + "2019-01-05T22:19:30.000000000", + "2019-01-05T22:20:15.000000000", + "2019-01-05T22:20:45.000000000", + "2019-01-05T22:21:56.000000000", + "2019-01-05T22:22:20.000000000", + "2019-01-05T22:23:51.000000000", + "2019-01-05T22:24:13.000000000", + "2019-01-05T22:24:23.000000000", + "2019-01-05T22:24:35.000000000", + "2019-01-05T22:25:22.000000000", + "2019-01-05T22:26:00.000000000", + "2019-01-05T22:28:19.000000000", + "2019-01-05T22:29:12.000000000", + "2019-01-05T22:31:01.000000000", + "2019-01-05T22:33:48.000000000", + "2019-01-05T22:33:59.000000000", + "2019-01-05T22:35:28.000000000", + "2019-01-05T22:36:06.000000000", + "2019-01-05T22:37:19.000000000", + "2019-01-05T22:39:01.000000000", + "2019-01-05T22:39:38.000000000", + "2019-01-05T22:40:51.000000000", + "2019-01-05T22:41:18.000000000", + "2019-01-05T22:44:40.000000000", + "2019-01-05T22:45:43.000000000", + "2019-01-05T22:46:17.000000000", + "2019-01-05T22:47:06.000000000", + "2019-01-05T22:47:20.000000000", + "2019-01-05T22:47:37.000000000", + "2019-01-05T22:48:47.000000000", + "2019-01-05T22:51:38.000000000", + "2019-01-05T22:51:44.000000000", + "2019-01-05T22:51:47.000000000", + "2019-01-05T22:52:12.000000000", + "2019-01-05T22:53:12.000000000", + "2019-01-05T22:54:01.000000000", + "2019-01-05T22:54:38.000000000", + "2019-01-05T22:55:26.000000000", + "2019-01-05T22:56:09.000000000", + "2019-01-05T22:56:58.000000000", + "2019-01-05T23:00:25.000000000", + "2019-01-05T23:00:32.000000000", + "2019-01-05T23:00:45.000000000", + "2019-01-05T23:03:01.000000000", + "2019-01-05T23:04:36.000000000", + "2019-01-05T23:04:43.000000000", + "2019-01-05T23:05:07.000000000", + "2019-01-05T23:05:11.000000000", + "2019-01-05T23:05:50.000000000", + "2019-01-05T23:06:53.000000000", + "2019-01-05T23:12:28.000000000", + "2019-01-05T23:12:32.000000000", + "2019-01-05T23:13:17.000000000", + "2019-01-05T23:13:59.000000000", + "2019-01-05T23:18:13.000000000", + "2019-01-05T23:20:37.000000000", + "2019-01-05T23:20:43.000000000", + "2019-01-05T23:22:35.000000000", + "2019-01-05T23:23:02.000000000", + "2019-01-05T23:25:44.000000000", + "2019-01-05T23:26:21.000000000", + "2019-01-05T23:26:47.000000000", + "2019-01-05T23:28:32.000000000", + "2019-01-05T23:29:31.000000000", + "2019-01-05T23:30:07.000000000", + "2019-01-05T23:30:23.000000000", + "2019-01-05T23:33:50.000000000", + "2019-01-05T23:34:00.000000000", + "2019-01-05T23:34:06.000000000", + "2019-01-05T23:34:16.000000000", + "2019-01-05T23:35:16.000000000", + "2019-01-05T23:35:45.000000000", + "2019-01-05T23:35:58.000000000", + "2019-01-05T23:37:18.000000000", + "2019-01-05T23:37:26.000000000", + "2019-01-05T23:37:51.000000000", + "2019-01-05T23:38:29.000000000", + "2019-01-05T23:38:46.000000000", + "2019-01-05T23:38:54.000000000", + "2019-01-05T23:43:02.000000000", + "2019-01-05T23:44:12.000000000", + "2019-01-05T23:46:08.000000000", + "2019-01-05T23:46:26.000000000", + "2019-01-05T23:47:00.000000000", + "2019-01-05T23:47:30.000000000", + "2019-01-05T23:49:51.000000000", + "2019-01-05T23:50:12.000000000", + "2019-01-05T23:51:36.000000000", + "2019-01-05T23:51:45.000000000", + "2019-01-05T23:52:48.000000000", + "2019-01-05T23:53:02.000000000", + "2019-01-05T23:53:06.000000000", + "2019-01-05T23:53:58.000000000", + "2019-01-05T23:55:21.000000000", + "2019-01-05T23:55:42.000000000", + "2019-01-05T23:56:06.000000000", + "2019-01-05T23:56:31.000000000", + "2019-01-05T23:56:32.000000000", + "2019-01-05T23:57:49.000000000", + "2019-01-05T23:58:27.000000000", + "2019-01-06T00:00:34.000000000", + "2019-01-06T00:01:21.000000000", + "2019-01-06T00:02:09.000000000", + "2019-01-06T00:03:25.000000000", + "2019-01-06T00:03:29.000000000", + "2019-01-06T00:03:40.000000000", + "2019-01-06T00:03:48.000000000", + "2019-01-06T00:04:32.000000000", + "2019-01-06T00:06:14.000000000", + "2019-01-06T00:06:25.000000000", + "2019-01-06T00:06:51.000000000", + "2019-01-06T00:07:13.000000000", + "2019-01-06T00:09:22.000000000", + "2019-01-06T00:09:27.000000000", + "2019-01-06T00:09:50.000000000", + "2019-01-06T00:11:12.000000000", + "2019-01-06T00:12:35.000000000", + "2019-01-06T00:12:47.000000000", + "2019-01-06T00:13:20.000000000", + "2019-01-06T00:13:50.000000000", + "2019-01-06T00:15:37.000000000", + "2019-01-06T00:16:59.000000000", + "2019-01-06T00:17:00.000000000", + "2019-01-06T00:17:53.000000000", + "2019-01-06T00:18:47.000000000", + "2019-01-06T00:19:20.000000000", + "2019-01-06T00:23:06.000000000", + "2019-01-06T00:23:32.000000000", + "2019-01-06T00:23:49.000000000", + "2019-01-06T00:24:26.000000000", + "2019-01-06T00:24:47.000000000", + "2019-01-06T00:25:00.000000000", + "2019-01-06T00:25:32.000000000", + "2019-01-06T00:25:48.000000000", + "2019-01-06T00:26:10.000000000", + "2019-01-06T00:27:22.000000000", + "2019-01-06T00:28:27.000000000", + "2019-01-06T00:28:41.000000000", + "2019-01-06T00:28:45.000000000", + "2019-01-06T00:30:29.000000000", + "2019-01-06T00:30:43.000000000", + "2019-01-06T00:30:55.000000000", + "2019-01-06T00:31:25.000000000", + "2019-01-06T00:31:27.000000000", + "2019-01-06T00:32:39.000000000", + "2019-01-06T00:33:27.000000000", + "2019-01-06T00:35:40.000000000", + "2019-01-06T00:35:44.000000000", + "2019-01-06T00:37:48.000000000", + "2019-01-06T00:38:14.000000000", + "2019-01-06T00:39:23.000000000", + "2019-01-06T00:41:14.000000000", + "2019-01-06T00:42:34.000000000", + "2019-01-06T00:43:23.000000000", + "2019-01-06T00:43:33.000000000", + "2019-01-06T00:43:54.000000000", + "2019-01-06T00:43:55.000000000", + "2019-01-06T00:44:42.000000000", + "2019-01-06T00:46:13.000000000", + "2019-01-06T00:47:54.000000000", + "2019-01-06T00:48:28.000000000", + "2019-01-06T00:49:05.000000000", + "2019-01-06T00:50:08.000000000", + "2019-01-06T00:50:11.000000000", + "2019-01-06T00:50:49.000000000", + "2019-01-06T00:51:55.000000000", + "2019-01-06T00:53:08.000000000", + "2019-01-06T00:56:15.000000000", + "2019-01-06T00:56:26.000000000", + "2019-01-06T00:56:46.000000000", + "2019-01-06T01:01:57.000000000", + "2019-01-06T01:03:17.000000000", + "2019-01-06T01:03:23.000000000", + "2019-01-06T01:04:27.000000000", + "2019-01-06T01:04:36.000000000", + "2019-01-06T01:07:59.000000000", + "2019-01-06T01:08:12.000000000", + "2019-01-06T01:09:21.000000000", + "2019-01-06T01:09:31.000000000", + "2019-01-06T01:10:14.000000000", + "2019-01-06T01:10:17.000000000", + "2019-01-06T01:10:31.000000000", + "2019-01-06T01:11:36.000000000", + "2019-01-06T01:11:46.000000000", + "2019-01-06T01:13:27.000000000", + "2019-01-06T01:13:31.000000000", + "2019-01-06T01:15:01.000000000", + "2019-01-06T01:15:08.000000000", + "2019-01-06T01:15:26.000000000", + "2019-01-06T01:16:00.000000000", + "2019-01-06T01:16:20.000000000", + "2019-01-06T01:17:48.000000000", + "2019-01-06T01:18:03.000000000", + "2019-01-06T01:20:11.000000000", + "2019-01-06T01:21:08.000000000", + "2019-01-06T01:21:32.000000000", + "2019-01-06T01:22:04.000000000", + "2019-01-06T01:22:21.000000000", + "2019-01-06T01:22:53.000000000", + "2019-01-06T01:24:16.000000000", + "2019-01-06T01:25:09.000000000", + "2019-01-06T01:27:47.000000000", + "2019-01-06T01:28:41.000000000", + "2019-01-06T01:29:26.000000000", + "2019-01-06T01:29:45.000000000", + "2019-01-06T01:30:37.000000000", + "2019-01-06T01:33:37.000000000", + "2019-01-06T01:34:43.000000000", + "2019-01-06T01:35:38.000000000", + "2019-01-06T01:37:19.000000000", + "2019-01-06T01:37:55.000000000", + "2019-01-06T01:38:10.000000000", + "2019-01-06T01:39:50.000000000", + "2019-01-06T01:39:58.000000000", + "2019-01-06T01:40:26.000000000", + "2019-01-06T01:40:54.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:44:13.000000000", + "2019-01-06T01:47:30.000000000", + "2019-01-06T01:48:09.000000000", + "2019-01-06T01:48:17.000000000", + "2019-01-06T01:48:57.000000000", + "2019-01-06T01:50:06.000000000", + "2019-01-06T01:50:54.000000000", + "2019-01-06T01:50:56.000000000", + "2019-01-06T01:51:09.000000000", + "2019-01-06T01:52:22.000000000", + "2019-01-06T01:52:33.000000000", + "2019-01-06T01:53:59.000000000", + "2019-01-06T01:55:03.000000000", + "2019-01-06T01:56:15.000000000", + "2019-01-06T01:56:39.000000000", + "2019-01-06T01:59:24.000000000", + "2019-01-06T02:01:57.000000000", + "2019-01-06T02:04:00.000000000", + "2019-01-06T02:04:01.000000000", + "2019-01-06T02:08:57.000000000", + "2019-01-06T02:10:03.000000000", + "2019-01-06T02:11:26.000000000", + "2019-01-06T02:12:35.000000000", + "2019-01-06T02:12:44.000000000", + "2019-01-06T02:13:49.000000000", + "2019-01-06T02:16:02.000000000", + "2019-01-06T02:16:14.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:17:07.000000000", + "2019-01-06T02:17:08.000000000", + "2019-01-06T02:18:47.000000000", + "2019-01-06T02:20:53.000000000", + "2019-01-06T02:23:43.000000000", + "2019-01-06T02:26:07.000000000", + "2019-01-06T02:27:09.000000000", + "2019-01-06T02:28:36.000000000", + "2019-01-06T02:28:55.000000000", + "2019-01-06T02:30:10.000000000", + "2019-01-06T02:31:22.000000000", + "2019-01-06T02:33:14.000000000", + "2019-01-06T02:33:57.000000000", + "2019-01-06T02:35:31.000000000", + "2019-01-06T02:35:37.000000000", + "2019-01-06T02:36:52.000000000", + "2019-01-06T02:36:55.000000000", + "2019-01-06T02:37:09.000000000", + "2019-01-06T02:37:17.000000000", + "2019-01-06T02:38:06.000000000", + "2019-01-06T02:38:57.000000000", + "2019-01-06T02:40:03.000000000", + "2019-01-06T02:41:25.000000000", + "2019-01-06T02:42:02.000000000", + "2019-01-06T02:43:24.000000000", + "2019-01-06T02:43:42.000000000", + "2019-01-06T02:43:43.000000000", + "2019-01-06T02:44:05.000000000", + "2019-01-06T02:49:56.000000000", + "2019-01-06T02:52:20.000000000", + "2019-01-06T02:54:17.000000000", + "2019-01-06T02:56:03.000000000", + "2019-01-06T02:59:45.000000000", + "2019-01-06T03:00:42.000000000", + "2019-01-06T03:01:05.000000000", + "2019-01-06T03:02:26.000000000", + "2019-01-06T03:03:03.000000000", + "2019-01-06T03:05:28.000000000", + "2019-01-06T03:08:35.000000000", + "2019-01-06T03:09:25.000000000", + "2019-01-06T03:10:20.000000000", + "2019-01-06T03:11:00.000000000", + "2019-01-06T03:11:43.000000000", + "2019-01-06T03:13:29.000000000", + "2019-01-06T03:16:48.000000000", + "2019-01-06T03:16:49.000000000", + "2019-01-06T03:17:37.000000000", + "2019-01-06T03:17:39.000000000", + "2019-01-06T03:18:39.000000000", + "2019-01-06T03:18:46.000000000", + "2019-01-06T03:19:52.000000000", + "2019-01-06T03:20:08.000000000", + "2019-01-06T03:20:39.000000000", + "2019-01-06T03:20:56.000000000", + "2019-01-06T03:21:46.000000000", + "2019-01-06T03:22:48.000000000", + "2019-01-06T03:23:03.000000000", + "2019-01-06T03:24:16.000000000", + "2019-01-06T03:32:38.000000000", + "2019-01-06T03:34:06.000000000", + "2019-01-06T03:34:12.000000000", + "2019-01-06T03:34:25.000000000", + "2019-01-06T03:34:57.000000000", + "2019-01-06T03:37:39.000000000", + "2019-01-06T03:38:47.000000000", + "2019-01-06T03:39:10.000000000", + "2019-01-06T03:40:52.000000000", + "2019-01-06T03:43:35.000000000", + "2019-01-06T03:43:36.000000000", + "2019-01-06T03:44:20.000000000", + "2019-01-06T03:45:40.000000000", + "2019-01-06T03:47:29.000000000", + "2019-01-06T03:49:45.000000000", + "2019-01-06T03:50:32.000000000", + "2019-01-06T03:50:35.000000000", + "2019-01-06T03:51:56.000000000", + "2019-01-06T03:52:34.000000000", + "2019-01-06T03:54:05.000000000", + "2019-01-06T03:54:51.000000000", + "2019-01-06T03:55:31.000000000", + "2019-01-06T03:55:36.000000000", + "2019-01-06T03:58:55.000000000", + "2019-01-06T04:00:23.000000000", + "2019-01-06T04:00:33.000000000", + "2019-01-06T04:02:31.000000000", + "2019-01-06T04:02:40.000000000", + "2019-01-06T04:02:46.000000000", + "2019-01-06T04:03:30.000000000", + "2019-01-06T04:04:56.000000000", + "2019-01-06T04:06:19.000000000", + "2019-01-06T04:07:51.000000000", + "2019-01-06T04:08:22.000000000", + "2019-01-06T04:09:23.000000000", + "2019-01-06T04:10:00.000000000", + "2019-01-06T04:10:49.000000000", + "2019-01-06T04:10:57.000000000", + "2019-01-06T04:11:44.000000000", + "2019-01-06T04:11:58.000000000", + "2019-01-06T04:13:30.000000000", + "2019-01-06T04:13:37.000000000", + "2019-01-06T04:15:40.000000000", + "2019-01-06T04:17:24.000000000", + "2019-01-06T04:18:40.000000000", + "2019-01-06T04:19:16.000000000", + "2019-01-06T04:19:24.000000000", + "2019-01-06T04:20:18.000000000", + "2019-01-06T04:21:05.000000000", + "2019-01-06T04:21:06.000000000", + "2019-01-06T04:21:50.000000000", + "2019-01-06T04:22:21.000000000", + "2019-01-06T04:23:48.000000000", + "2019-01-06T04:25:23.000000000", + "2019-01-06T04:26:13.000000000", + "2019-01-06T04:27:00.000000000", + "2019-01-06T04:30:07.000000000", + "2019-01-06T04:30:48.000000000", + "2019-01-06T04:31:13.000000000", + "2019-01-06T04:32:47.000000000", + "2019-01-06T04:34:28.000000000", + "2019-01-06T04:34:29.000000000", + "2019-01-06T04:34:32.000000000", + "2019-01-06T04:35:00.000000000", + "2019-01-06T04:35:11.000000000", + "2019-01-06T04:36:03.000000000", + "2019-01-06T04:39:15.000000000", + "2019-01-06T04:41:29.000000000", + "2019-01-06T04:43:03.000000000", + "2019-01-06T04:43:25.000000000", + "2019-01-06T04:43:29.000000000", + "2019-01-06T04:43:36.000000000", + "2019-01-06T04:44:27.000000000", + "2019-01-06T04:45:27.000000000", + "2019-01-06T04:46:09.000000000", + "2019-01-06T04:49:21.000000000", + "2019-01-06T04:49:25.000000000", + "2019-01-06T04:53:14.000000000", + "2019-01-06T04:54:54.000000000", + "2019-01-06T04:55:02.000000000", + "2019-01-06T04:55:47.000000000", + "2019-01-06T04:55:57.000000000", + "2019-01-06T04:56:32.000000000", + "2019-01-06T04:57:26.000000000", + "2019-01-06T04:57:41.000000000", + "2019-01-06T04:58:06.000000000", + "2019-01-06T04:58:47.000000000", + "2019-01-06T04:59:15.000000000", + "2019-01-06T05:01:51.000000000", + "2019-01-06T05:01:52.000000000", + "2019-01-06T05:01:57.000000000", + "2019-01-06T05:02:36.000000000", + "2019-01-06T05:03:13.000000000", + "2019-01-06T05:05:18.000000000", + "2019-01-06T05:06:03.000000000", + "2019-01-06T05:07:09.000000000", + "2019-01-06T05:07:32.000000000", + "2019-01-06T05:08:38.000000000", + "2019-01-06T05:10:55.000000000", + "2019-01-06T05:11:02.000000000", + "2019-01-06T05:13:18.000000000", + "2019-01-06T05:15:21.000000000", + "2019-01-06T05:16:16.000000000", + "2019-01-06T05:17:42.000000000", + "2019-01-06T05:18:03.000000000", + "2019-01-06T05:18:39.000000000", + "2019-01-06T05:18:47.000000000", + "2019-01-06T05:23:03.000000000", + "2019-01-06T05:23:12.000000000", + "2019-01-06T05:23:29.000000000", + "2019-01-06T05:25:26.000000000", + "2019-01-06T05:25:38.000000000", + "2019-01-06T05:25:40.000000000", + "2019-01-06T05:26:42.000000000", + "2019-01-06T05:27:42.000000000", + "2019-01-06T05:28:12.000000000", + "2019-01-06T05:28:32.000000000", + "2019-01-06T05:28:37.000000000", + "2019-01-06T05:29:29.000000000", + "2019-01-06T05:31:31.000000000", + "2019-01-06T05:32:21.000000000", + "2019-01-06T05:32:33.000000000", + "2019-01-06T05:33:02.000000000", + "2019-01-06T05:33:29.000000000", + "2019-01-06T05:34:44.000000000", + "2019-01-06T05:36:11.000000000", + "2019-01-06T05:36:19.000000000", + "2019-01-06T05:38:07.000000000", + "2019-01-06T05:39:14.000000000", + "2019-01-06T05:40:21.000000000", + "2019-01-06T05:40:43.000000000", + "2019-01-06T05:41:01.000000000", + "2019-01-06T05:41:07.000000000", + "2019-01-06T05:42:16.000000000", + "2019-01-06T05:42:21.000000000", + "2019-01-06T05:42:24.000000000", + "2019-01-06T05:44:07.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:45:51.000000000", + "2019-01-06T05:45:55.000000000", + "2019-01-06T05:46:03.000000000", + "2019-01-06T05:46:34.000000000", + "2019-01-06T05:48:18.000000000", + "2019-01-06T05:51:32.000000000", + "2019-01-06T05:51:38.000000000", + "2019-01-06T05:52:56.000000000", + "2019-01-06T05:52:57.000000000", + "2019-01-06T05:58:10.000000000", + "2019-01-06T06:00:07.000000000", + "2019-01-06T06:00:23.000000000", + "2019-01-06T06:01:43.000000000", + "2019-01-06T06:03:13.000000000", + "2019-01-06T06:04:27.000000000", + "2019-01-06T06:04:48.000000000", + "2019-01-06T06:06:53.000000000", + "2019-01-06T06:06:59.000000000", + "2019-01-06T06:09:01.000000000", + "2019-01-06T06:09:08.000000000", + "2019-01-06T06:09:36.000000000", + "2019-01-06T06:09:57.000000000", + "2019-01-06T06:10:15.000000000", + "2019-01-06T06:10:55.000000000", + "2019-01-06T06:11:50.000000000", + "2019-01-06T06:11:51.000000000", + "2019-01-06T06:13:35.000000000", + "2019-01-06T06:14:18.000000000", + "2019-01-06T06:14:31.000000000", + "2019-01-06T06:15:52.000000000", + "2019-01-06T06:16:01.000000000", + "2019-01-06T06:16:45.000000000", + "2019-01-06T06:16:46.000000000", + "2019-01-06T06:18:12.000000000", + "2019-01-06T06:20:38.000000000", + "2019-01-06T06:20:40.000000000", + "2019-01-06T06:23:10.000000000", + "2019-01-06T06:23:47.000000000", + "2019-01-06T06:26:26.000000000", + "2019-01-06T06:28:01.000000000", + "2019-01-06T06:28:31.000000000", + "2019-01-06T06:28:51.000000000", + "2019-01-06T06:33:35.000000000", + "2019-01-06T06:34:39.000000000", + "2019-01-06T06:36:56.000000000", + "2019-01-06T06:37:47.000000000", + "2019-01-06T06:39:50.000000000", + "2019-01-06T06:40:14.000000000", + "2019-01-06T06:40:42.000000000", + "2019-01-06T06:41:01.000000000", + "2019-01-06T06:41:11.000000000", + "2019-01-06T06:41:20.000000000", + "2019-01-06T06:41:21.000000000", + "2019-01-06T06:41:32.000000000", + "2019-01-06T06:41:47.000000000", + "2019-01-06T06:42:03.000000000", + "2019-01-06T06:42:12.000000000", + "2019-01-06T06:45:14.000000000", + "2019-01-06T06:48:30.000000000", + "2019-01-06T06:49:57.000000000", + "2019-01-06T06:53:02.000000000", + "2019-01-06T06:53:28.000000000", + "2019-01-06T06:54:04.000000000", + "2019-01-06T06:54:16.000000000", + "2019-01-06T06:54:20.000000000", + "2019-01-06T06:57:05.000000000", + "2019-01-06T06:57:27.000000000", + "2019-01-06T06:58:31.000000000", + "2019-01-06T06:59:07.000000000", + "2019-01-06T06:59:41.000000000", + "2019-01-06T06:59:48.000000000", + "2019-01-06T07:01:23.000000000", + "2019-01-06T07:01:40.000000000", + "2019-01-06T07:01:51.000000000", + "2019-01-06T07:04:27.000000000", + "2019-01-06T07:04:57.000000000", + "2019-01-06T07:05:29.000000000", + "2019-01-06T07:05:41.000000000", + "2019-01-06T07:06:51.000000000", + "2019-01-06T07:07:57.000000000", + "2019-01-06T07:10:19.000000000", + "2019-01-06T07:12:05.000000000", + "2019-01-06T07:13:26.000000000", + "2019-01-06T07:14:30.000000000", + "2019-01-06T07:15:16.000000000", + "2019-01-06T07:15:53.000000000", + "2019-01-06T07:21:29.000000000", + "2019-01-06T07:22:36.000000000", + "2019-01-06T07:22:43.000000000", + "2019-01-06T07:23:03.000000000", + "2019-01-06T07:24:49.000000000", + "2019-01-06T07:24:59.000000000", + "2019-01-06T07:25:01.000000000", + "2019-01-06T07:25:23.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:27:30.000000000", + "2019-01-06T07:27:33.000000000", + "2019-01-06T07:27:54.000000000", + "2019-01-06T07:28:11.000000000", + "2019-01-06T07:28:48.000000000", + "2019-01-06T07:29:59.000000000", + "2019-01-06T07:30:10.000000000", + "2019-01-06T07:30:16.000000000", + "2019-01-06T07:30:29.000000000", + "2019-01-06T07:32:12.000000000", + "2019-01-06T07:34:01.000000000", + "2019-01-06T07:37:25.000000000", + "2019-01-06T07:39:11.000000000", + "2019-01-06T07:40:38.000000000", + "2019-01-06T07:40:44.000000000", + "2019-01-06T07:43:16.000000000", + "2019-01-06T07:45:34.000000000", + "2019-01-06T07:46:29.000000000", + "2019-01-06T07:47:04.000000000", + "2019-01-06T07:47:06.000000000", + "2019-01-06T07:48:21.000000000", + "2019-01-06T07:49:06.000000000", + "2019-01-06T07:50:03.000000000", + "2019-01-06T07:51:08.000000000", + "2019-01-06T07:53:50.000000000", + "2019-01-06T07:53:51.000000000", + "2019-01-06T07:54:20.000000000", + "2019-01-06T07:54:23.000000000", + "2019-01-06T07:54:37.000000000", + "2019-01-06T07:56:28.000000000", + "2019-01-06T07:57:27.000000000", + "2019-01-06T07:57:51.000000000", + "2019-01-06T07:59:36.000000000", + "2019-01-06T08:02:08.000000000", + "2019-01-06T08:02:22.000000000", + "2019-01-06T08:02:50.000000000", + "2019-01-06T08:03:16.000000000", + "2019-01-06T08:04:29.000000000", + "2019-01-06T08:05:26.000000000", + "2019-01-06T08:05:27.000000000", + "2019-01-06T08:06:43.000000000", + "2019-01-06T08:08:05.000000000", + "2019-01-06T08:10:14.000000000", + "2019-01-06T08:10:31.000000000", + "2019-01-06T08:11:11.000000000", + "2019-01-06T08:11:17.000000000", + "2019-01-06T08:12:55.000000000", + "2019-01-06T08:12:57.000000000", + "2019-01-06T08:14:17.000000000", + "2019-01-06T08:15:24.000000000", + "2019-01-06T08:16:43.000000000", + "2019-01-06T08:16:45.000000000", + "2019-01-06T08:17:14.000000000", + "2019-01-06T08:18:21.000000000", + "2019-01-06T08:20:02.000000000", + "2019-01-06T08:21:40.000000000", + "2019-01-06T08:22:10.000000000", + "2019-01-06T08:23:24.000000000", + "2019-01-06T08:23:30.000000000", + "2019-01-06T08:26:43.000000000", + "2019-01-06T08:27:56.000000000", + "2019-01-06T08:28:26.000000000", + "2019-01-06T08:28:58.000000000", + "2019-01-06T08:30:57.000000000", + "2019-01-06T08:32:27.000000000", + "2019-01-06T08:33:59.000000000", + "2019-01-06T08:34:03.000000000", + "2019-01-06T08:35:05.000000000", + "2019-01-06T08:35:57.000000000", + "2019-01-06T08:36:06.000000000", + "2019-01-06T08:36:51.000000000", + "2019-01-06T08:36:59.000000000", + "2019-01-06T08:37:16.000000000", + "2019-01-06T08:37:35.000000000", + "2019-01-06T08:37:39.000000000", + "2019-01-06T08:40:10.000000000", + "2019-01-06T08:40:30.000000000", + "2019-01-06T08:40:40.000000000", + "2019-01-06T08:41:25.000000000", + "2019-01-06T08:41:54.000000000", + "2019-01-06T08:42:44.000000000", + "2019-01-06T08:43:44.000000000", + "2019-01-06T08:44:43.000000000", + "2019-01-06T08:45:59.000000000", + "2019-01-06T08:47:29.000000000", + "2019-01-06T08:47:30.000000000", + "2019-01-06T08:48:07.000000000", + "2019-01-06T08:48:41.000000000", + "2019-01-06T08:51:35.000000000", + "2019-01-06T08:52:37.000000000", + "2019-01-06T08:52:49.000000000", + "2019-01-06T08:53:43.000000000", + "2019-01-06T08:55:13.000000000", + "2019-01-06T08:58:04.000000000", + "2019-01-06T08:58:07.000000000", + "2019-01-06T08:58:20.000000000", + "2019-01-06T09:00:14.000000000", + "2019-01-06T09:00:29.000000000", + "2019-01-06T09:03:40.000000000", + "2019-01-06T09:04:17.000000000", + "2019-01-06T09:04:20.000000000", + "2019-01-06T09:05:51.000000000", + "2019-01-06T09:10:38.000000000", + "2019-01-06T09:10:53.000000000", + "2019-01-06T09:13:27.000000000", + "2019-01-06T09:14:55.000000000", + "2019-01-06T09:15:33.000000000", + "2019-01-06T09:15:49.000000000", + "2019-01-06T09:16:05.000000000", + "2019-01-06T09:17:03.000000000", + "2019-01-06T09:17:13.000000000", + "2019-01-06T09:18:30.000000000", + "2019-01-06T09:18:38.000000000", + "2019-01-06T09:19:58.000000000", + "2019-01-06T09:21:05.000000000", + "2019-01-06T09:21:20.000000000", + "2019-01-06T09:22:09.000000000", + "2019-01-06T09:24:15.000000000", + "2019-01-06T09:25:13.000000000", + "2019-01-06T09:25:15.000000000", + "2019-01-06T09:25:42.000000000", + "2019-01-06T09:27:01.000000000", + "2019-01-06T09:28:04.000000000", + "2019-01-06T09:28:47.000000000", + "2019-01-06T09:29:14.000000000", + "2019-01-06T09:31:17.000000000", + "2019-01-06T09:31:49.000000000", + "2019-01-06T09:32:17.000000000", + "2019-01-06T09:32:26.000000000", + "2019-01-06T09:32:51.000000000", + "2019-01-06T09:33:00.000000000", + "2019-01-06T09:34:14.000000000", + "2019-01-06T09:36:00.000000000", + "2019-01-06T09:36:03.000000000", + "2019-01-06T09:36:09.000000000", + "2019-01-06T09:36:58.000000000", + "2019-01-06T09:37:11.000000000", + "2019-01-06T09:39:53.000000000", + "2019-01-06T09:40:16.000000000", + "2019-01-06T09:44:35.000000000", + "2019-01-06T09:46:10.000000000", + "2019-01-06T09:46:57.000000000", + "2019-01-06T09:47:47.000000000", + "2019-01-06T09:48:41.000000000", + "2019-01-06T09:49:27.000000000", + "2019-01-06T09:50:52.000000000", + "2019-01-06T09:51:49.000000000", + "2019-01-06T09:53:50.000000000", + "2019-01-06T09:54:07.000000000", + "2019-01-06T09:55:47.000000000", + "2019-01-06T09:55:55.000000000", + "2019-01-06T09:55:56.000000000", + "2019-01-06T09:57:10.000000000", + "2019-01-06T09:57:34.000000000", + "2019-01-06T09:59:24.000000000", + "2019-01-06T10:01:45.000000000", + "2019-01-06T10:04:47.000000000", + "2019-01-06T10:04:57.000000000", + "2019-01-06T10:05:07.000000000", + "2019-01-06T10:05:49.000000000", + "2019-01-06T10:08:40.000000000", + "2019-01-06T10:10:03.000000000", + "2019-01-06T10:10:56.000000000", + "2019-01-06T10:14:24.000000000", + "2019-01-06T10:14:38.000000000", + "2019-01-06T10:14:58.000000000", + "2019-01-06T10:16:39.000000000", + "2019-01-06T10:16:51.000000000", + "2019-01-06T10:17:36.000000000", + "2019-01-06T10:18:26.000000000", + "2019-01-06T10:19:34.000000000", + "2019-01-06T10:21:41.000000000", + "2019-01-06T10:22:49.000000000", + "2019-01-06T10:23:12.000000000", + "2019-01-06T10:28:55.000000000", + "2019-01-06T10:29:10.000000000", + "2019-01-06T10:29:15.000000000", + "2019-01-06T10:29:36.000000000", + "2019-01-06T10:30:03.000000000", + "2019-01-06T10:31:19.000000000", + "2019-01-06T10:31:20.000000000", + "2019-01-06T10:31:49.000000000", + "2019-01-06T10:32:32.000000000", + "2019-01-06T10:32:42.000000000", + "2019-01-06T10:33:32.000000000", + "2019-01-06T10:34:07.000000000", + "2019-01-06T10:37:25.000000000", + "2019-01-06T10:39:40.000000000", + "2019-01-06T10:41:24.000000000", + "2019-01-06T10:41:31.000000000", + "2019-01-06T10:41:35.000000000", + "2019-01-06T10:42:56.000000000", + "2019-01-06T10:43:06.000000000", + "2019-01-06T10:43:09.000000000", + "2019-01-06T10:43:28.000000000", + "2019-01-06T10:45:19.000000000", + "2019-01-06T10:45:59.000000000", + "2019-01-06T10:46:08.000000000", + "2019-01-06T10:47:43.000000000", + "2019-01-06T10:48:19.000000000", + "2019-01-06T10:48:23.000000000", + "2019-01-06T10:48:25.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:49:31.000000000", + "2019-01-06T10:49:53.000000000", + "2019-01-06T10:50:38.000000000", + "2019-01-06T10:52:14.000000000", + "2019-01-06T10:53:35.000000000", + "2019-01-06T10:54:07.000000000", + "2019-01-06T10:55:18.000000000", + "2019-01-06T10:55:47.000000000", + "2019-01-06T10:57:33.000000000", + "2019-01-06T10:59:23.000000000", + "2019-01-06T11:01:11.000000000", + "2019-01-06T11:01:52.000000000", + "2019-01-06T11:02:00.000000000", + "2019-01-06T11:04:19.000000000", + "2019-01-06T11:04:25.000000000", + "2019-01-06T11:05:40.000000000", + "2019-01-06T11:06:23.000000000", + "2019-01-06T11:06:29.000000000", + "2019-01-06T11:07:45.000000000", + "2019-01-06T11:08:38.000000000", + "2019-01-06T11:08:51.000000000", + "2019-01-06T11:08:57.000000000", + "2019-01-06T11:09:34.000000000", + "2019-01-06T11:09:58.000000000", + "2019-01-06T11:10:29.000000000", + "2019-01-06T11:11:08.000000000", + "2019-01-06T11:11:48.000000000", + "2019-01-06T11:13:56.000000000", + "2019-01-06T11:14:15.000000000", + "2019-01-06T11:15:11.000000000", + "2019-01-06T11:15:35.000000000", + "2019-01-06T11:16:16.000000000", + "2019-01-06T11:16:45.000000000", + "2019-01-06T11:16:57.000000000", + "2019-01-06T11:20:00.000000000", + "2019-01-06T11:22:47.000000000", + "2019-01-06T11:23:37.000000000", + "2019-01-06T11:26:02.000000000", + "2019-01-06T11:27:31.000000000", + "2019-01-06T11:27:40.000000000", + "2019-01-06T11:28:40.000000000", + "2019-01-06T11:29:47.000000000", + "2019-01-06T11:30:38.000000000", + "2019-01-06T11:32:02.000000000", + "2019-01-06T11:32:46.000000000", + "2019-01-06T11:33:28.000000000", + "2019-01-06T11:35:03.000000000", + "2019-01-06T11:35:53.000000000", + "2019-01-06T11:36:38.000000000", + "2019-01-06T11:37:47.000000000", + "2019-01-06T11:37:56.000000000", + "2019-01-06T11:39:06.000000000", + "2019-01-06T11:39:18.000000000", + "2019-01-06T11:39:19.000000000", + "2019-01-06T11:40:56.000000000", + "2019-01-06T11:42:24.000000000", + "2019-01-06T11:42:26.000000000", + "2019-01-06T11:44:20.000000000", + "2019-01-06T11:44:43.000000000", + "2019-01-06T11:45:30.000000000", + "2019-01-06T11:45:39.000000000", + "2019-01-06T11:46:23.000000000", + "2019-01-06T11:49:02.000000000", + "2019-01-06T11:49:24.000000000", + "2019-01-06T11:49:43.000000000", + "2019-01-06T11:50:36.000000000", + "2019-01-06T11:50:46.000000000", + "2019-01-06T11:50:57.000000000", + "2019-01-06T11:52:50.000000000", + "2019-01-06T11:55:45.000000000", + "2019-01-06T11:55:47.000000000", + "2019-01-06T11:56:22.000000000", + "2019-01-06T11:57:22.000000000", + "2019-01-06T11:58:31.000000000", + "2019-01-06T11:59:05.000000000", + "2019-01-06T11:59:07.000000000", + "2019-01-06T12:00:05.000000000", + "2019-01-06T12:04:08.000000000", + "2019-01-06T12:04:16.000000000", + "2019-01-06T12:06:13.000000000", + "2019-01-06T12:06:59.000000000", + "2019-01-06T12:08:28.000000000", + "2019-01-06T12:08:47.000000000", + "2019-01-06T12:09:29.000000000", + "2019-01-06T12:14:58.000000000", + "2019-01-06T12:16:33.000000000", + "2019-01-06T12:16:42.000000000", + "2019-01-06T12:16:43.000000000", + "2019-01-06T12:19:03.000000000", + "2019-01-06T12:21:35.000000000", + "2019-01-06T12:21:58.000000000", + "2019-01-06T12:22:55.000000000", + "2019-01-06T12:24:43.000000000", + "2019-01-06T12:25:39.000000000", + "2019-01-06T12:25:50.000000000", + "2019-01-06T12:26:55.000000000", + "2019-01-06T12:27:15.000000000", + "2019-01-06T12:30:08.000000000", + "2019-01-06T12:30:18.000000000", + "2019-01-06T12:30:45.000000000", + "2019-01-06T12:31:47.000000000", + "2019-01-06T12:32:01.000000000", + "2019-01-06T12:33:11.000000000", + "2019-01-06T12:36:11.000000000", + "2019-01-06T12:38:51.000000000", + "2019-01-06T12:39:45.000000000", + "2019-01-06T12:42:47.000000000", + "2019-01-06T12:43:10.000000000", + "2019-01-06T12:46:58.000000000", + "2019-01-06T12:47:05.000000000", + "2019-01-06T12:48:22.000000000", + "2019-01-06T12:48:24.000000000", + "2019-01-06T12:49:18.000000000", + "2019-01-06T12:49:39.000000000", + "2019-01-06T12:50:34.000000000", + "2019-01-06T12:50:39.000000000", + "2019-01-06T12:50:44.000000000", + "2019-01-06T12:50:52.000000000", + "2019-01-06T12:51:49.000000000", + "2019-01-06T12:55:18.000000000", + "2019-01-06T12:55:46.000000000", + "2019-01-06T12:57:08.000000000", + "2019-01-06T12:57:40.000000000", + "2019-01-06T12:59:34.000000000", + "2019-01-06T13:00:51.000000000", + "2019-01-06T13:01:27.000000000", + "2019-01-06T13:01:29.000000000", + "2019-01-06T13:03:22.000000000", + "2019-01-06T13:04:14.000000000", + "2019-01-06T13:04:36.000000000", + "2019-01-06T13:04:44.000000000", + "2019-01-06T13:04:52.000000000", + "2019-01-06T13:06:42.000000000", + "2019-01-06T13:07:07.000000000", + "2019-01-06T13:07:54.000000000", + "2019-01-06T13:11:23.000000000", + "2019-01-06T13:12:08.000000000", + "2019-01-06T13:12:16.000000000", + "2019-01-06T13:16:26.000000000", + "2019-01-06T13:16:54.000000000", + "2019-01-06T13:19:22.000000000", + "2019-01-06T13:19:56.000000000", + "2019-01-06T13:20:46.000000000", + "2019-01-06T13:21:18.000000000", + "2019-01-06T13:21:43.000000000", + "2019-01-06T13:23:13.000000000", + "2019-01-06T13:24:21.000000000", + "2019-01-06T13:27:12.000000000", + "2019-01-06T13:28:24.000000000", + "2019-01-06T13:29:14.000000000", + "2019-01-06T13:32:22.000000000", + "2019-01-06T13:32:57.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:34:04.000000000", + "2019-01-06T13:34:50.000000000", + "2019-01-06T13:36:48.000000000", + "2019-01-06T13:36:59.000000000", + "2019-01-06T13:39:07.000000000", + "2019-01-06T13:39:15.000000000", + "2019-01-06T13:40:00.000000000", + "2019-01-06T13:40:06.000000000", + "2019-01-06T13:41:45.000000000", + "2019-01-06T13:44:04.000000000", + "2019-01-06T13:44:18.000000000", + "2019-01-06T13:44:32.000000000", + "2019-01-06T13:47:32.000000000", + "2019-01-06T13:48:08.000000000", + "2019-01-06T13:49:21.000000000", + "2019-01-06T13:50:23.000000000", + "2019-01-06T13:53:42.000000000", + "2019-01-06T13:54:29.000000000", + "2019-01-06T13:54:55.000000000", + "2019-01-06T13:55:57.000000000", + "2019-01-06T13:58:20.000000000", + "2019-01-06T13:58:55.000000000", + "2019-01-06T13:58:57.000000000", + "2019-01-06T13:59:54.000000000", + "2019-01-06T13:59:57.000000000", + "2019-01-06T13:59:58.000000000", + "2019-01-06T14:00:22.000000000", + "2019-01-06T14:01:20.000000000", + "2019-01-06T14:02:32.000000000", + "2019-01-06T14:03:52.000000000", + "2019-01-06T14:04:38.000000000", + "2019-01-06T14:05:46.000000000", + "2019-01-06T14:06:29.000000000", + "2019-01-06T14:07:14.000000000", + "2019-01-06T14:08:17.000000000", + "2019-01-06T14:08:25.000000000", + "2019-01-06T14:09:00.000000000", + "2019-01-06T14:11:10.000000000", + "2019-01-06T14:11:30.000000000", + "2019-01-06T14:11:54.000000000", + "2019-01-06T14:13:08.000000000", + "2019-01-06T14:13:11.000000000", + "2019-01-06T14:14:12.000000000", + "2019-01-06T14:14:48.000000000", + "2019-01-06T14:15:30.000000000", + "2019-01-06T14:16:08.000000000", + "2019-01-06T14:16:46.000000000", + "2019-01-06T14:16:49.000000000", + "2019-01-06T14:17:19.000000000", + "2019-01-06T14:17:48.000000000", + "2019-01-06T14:18:44.000000000", + "2019-01-06T14:18:49.000000000", + "2019-01-06T14:21:20.000000000", + "2019-01-06T14:23:29.000000000", + "2019-01-06T14:23:55.000000000", + "2019-01-06T14:24:00.000000000", + "2019-01-06T14:24:12.000000000", + "2019-01-06T14:24:24.000000000", + "2019-01-06T14:25:34.000000000", + "2019-01-06T14:26:51.000000000", + "2019-01-06T14:30:03.000000000", + "2019-01-06T14:30:32.000000000", + "2019-01-06T14:31:10.000000000", + "2019-01-06T14:31:18.000000000", + "2019-01-06T14:32:35.000000000", + "2019-01-06T14:32:46.000000000", + "2019-01-06T14:34:58.000000000", + "2019-01-06T14:36:31.000000000", + "2019-01-06T14:37:32.000000000", + "2019-01-06T14:38:10.000000000", + "2019-01-06T14:39:15.000000000", + "2019-01-06T14:39:57.000000000", + "2019-01-06T14:40:38.000000000", + "2019-01-06T14:41:09.000000000", + "2019-01-06T14:41:16.000000000", + "2019-01-06T14:42:20.000000000", + "2019-01-06T14:42:33.000000000", + "2019-01-06T14:43:02.000000000", + "2019-01-06T14:43:03.000000000", + "2019-01-06T14:43:07.000000000", + "2019-01-06T14:43:15.000000000", + "2019-01-06T14:44:04.000000000", + "2019-01-06T14:44:23.000000000", + "2019-01-06T14:44:42.000000000", + "2019-01-06T14:45:35.000000000", + "2019-01-06T14:45:39.000000000", + "2019-01-06T14:48:22.000000000", + "2019-01-06T14:48:49.000000000", + "2019-01-06T14:49:09.000000000", + "2019-01-06T14:50:16.000000000", + "2019-01-06T14:50:37.000000000", + "2019-01-06T14:52:00.000000000", + "2019-01-06T14:55:19.000000000", + "2019-01-06T14:57:04.000000000", + "2019-01-06T14:57:10.000000000", + "2019-01-06T14:57:18.000000000", + "2019-01-06T14:57:21.000000000", + "2019-01-06T14:57:30.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:16.000000000", + "2019-01-06T14:58:27.000000000", + "2019-01-06T14:59:58.000000000", + "2019-01-06T15:00:04.000000000", + "2019-01-06T15:00:53.000000000", + "2019-01-06T15:01:33.000000000", + "2019-01-06T15:01:48.000000000", + "2019-01-06T15:02:30.000000000", + "2019-01-06T15:04:10.000000000", + "2019-01-06T15:04:36.000000000", + "2019-01-06T15:06:16.000000000", + "2019-01-06T15:07:47.000000000", + "2019-01-06T15:09:11.000000000", + "2019-01-06T15:09:26.000000000", + "2019-01-06T15:10:14.000000000", + "2019-01-06T15:10:38.000000000", + "2019-01-06T15:10:42.000000000", + "2019-01-06T15:12:02.000000000", + "2019-01-06T15:13:23.000000000", + "2019-01-06T15:13:38.000000000", + "2019-01-06T15:13:44.000000000", + "2019-01-06T15:14:43.000000000", + "2019-01-06T15:19:07.000000000", + "2019-01-06T15:19:36.000000000", + "2019-01-06T15:19:52.000000000", + "2019-01-06T15:20:29.000000000", + "2019-01-06T15:20:44.000000000", + "2019-01-06T15:22:27.000000000", + "2019-01-06T15:23:21.000000000", + "2019-01-06T15:23:46.000000000", + "2019-01-06T15:23:50.000000000", + "2019-01-06T15:25:37.000000000", + "2019-01-06T15:27:17.000000000", + "2019-01-06T15:27:33.000000000", + "2019-01-06T15:27:55.000000000", + "2019-01-06T15:29:07.000000000", + "2019-01-06T15:29:37.000000000", + "2019-01-06T15:29:45.000000000", + "2019-01-06T15:31:25.000000000", + "2019-01-06T15:32:07.000000000", + "2019-01-06T15:32:17.000000000", + "2019-01-06T15:33:24.000000000", + "2019-01-06T15:33:55.000000000", + "2019-01-06T15:35:15.000000000", + "2019-01-06T15:36:01.000000000", + "2019-01-06T15:37:20.000000000", + "2019-01-06T15:38:09.000000000", + "2019-01-06T15:40:53.000000000", + "2019-01-06T15:43:12.000000000", + "2019-01-06T15:44:40.000000000", + "2019-01-06T15:45:36.000000000", + "2019-01-06T15:45:57.000000000", + "2019-01-06T15:46:25.000000000", + "2019-01-06T15:46:44.000000000", + "2019-01-06T15:51:41.000000000", + "2019-01-06T15:53:26.000000000", + "2019-01-06T15:54:02.000000000", + "2019-01-06T15:55:59.000000000", + "2019-01-06T15:59:08.000000000", + "2019-01-06T16:01:01.000000000", + "2019-01-06T16:01:25.000000000", + "2019-01-06T16:01:37.000000000", + "2019-01-06T16:01:50.000000000", + "2019-01-06T16:02:36.000000000", + "2019-01-06T16:03:13.000000000", + "2019-01-06T16:03:25.000000000", + "2019-01-06T16:04:05.000000000", + "2019-01-06T16:05:39.000000000", + "2019-01-06T16:05:56.000000000", + "2019-01-06T16:07:49.000000000", + "2019-01-06T16:08:16.000000000", + "2019-01-06T16:09:31.000000000", + "2019-01-06T16:09:36.000000000", + "2019-01-06T16:09:49.000000000", + "2019-01-06T16:12:34.000000000", + "2019-01-06T16:13:38.000000000", + "2019-01-06T16:13:57.000000000", + "2019-01-06T16:17:21.000000000", + "2019-01-06T16:18:07.000000000", + "2019-01-06T16:18:27.000000000", + "2019-01-06T16:21:14.000000000", + "2019-01-06T16:22:43.000000000", + "2019-01-06T16:22:52.000000000", + "2019-01-06T16:23:18.000000000", + "2019-01-06T16:26:36.000000000", + "2019-01-06T16:26:45.000000000", + "2019-01-06T16:27:26.000000000", + "2019-01-06T16:27:34.000000000", + "2019-01-06T16:27:43.000000000", + "2019-01-06T16:29:06.000000000", + "2019-01-06T16:31:33.000000000", + "2019-01-06T16:31:34.000000000", + "2019-01-06T16:32:58.000000000", + "2019-01-06T16:33:43.000000000", + "2019-01-06T16:35:02.000000000", + "2019-01-06T16:35:13.000000000", + "2019-01-06T16:35:55.000000000", + "2019-01-06T16:40:13.000000000", + "2019-01-06T16:40:19.000000000", + "2019-01-06T16:41:38.000000000", + "2019-01-06T16:44:18.000000000", + "2019-01-06T16:44:20.000000000", + "2019-01-06T16:45:49.000000000", + "2019-01-06T16:46:28.000000000", + "2019-01-06T16:46:58.000000000", + "2019-01-06T16:48:43.000000000", + "2019-01-06T16:48:56.000000000", + "2019-01-06T16:49:00.000000000", + "2019-01-06T16:51:03.000000000", + "2019-01-06T16:52:19.000000000", + "2019-01-06T16:53:26.000000000", + "2019-01-06T16:56:38.000000000", + "2019-01-06T16:57:17.000000000", + "2019-01-06T16:58:00.000000000", + "2019-01-06T16:58:54.000000000", + "2019-01-06T16:59:33.000000000", + "2019-01-06T17:00:12.000000000", + "2019-01-06T17:00:46.000000000", + "2019-01-06T17:02:01.000000000", + "2019-01-06T17:04:00.000000000", + "2019-01-06T17:04:02.000000000", + "2019-01-06T17:08:10.000000000", + "2019-01-06T17:08:48.000000000", + "2019-01-06T17:08:56.000000000", + "2019-01-06T17:10:38.000000000", + "2019-01-06T17:10:43.000000000", + "2019-01-06T17:11:52.000000000", + "2019-01-06T17:15:14.000000000", + "2019-01-06T17:15:22.000000000", + "2019-01-06T17:17:34.000000000", + "2019-01-06T17:21:05.000000000", + "2019-01-06T17:21:29.000000000", + "2019-01-06T17:21:38.000000000", + "2019-01-06T17:22:02.000000000", + "2019-01-06T17:26:16.000000000", + "2019-01-06T17:27:19.000000000", + "2019-01-06T17:28:44.000000000", + "2019-01-06T17:29:20.000000000", + "2019-01-06T17:29:34.000000000", + "2019-01-06T17:30:44.000000000", + "2019-01-06T17:32:54.000000000", + "2019-01-06T17:33:03.000000000", + "2019-01-06T17:33:38.000000000", + "2019-01-06T17:34:38.000000000", + "2019-01-06T17:34:57.000000000", + "2019-01-06T17:35:06.000000000", + "2019-01-06T17:35:25.000000000", + "2019-01-06T17:36:19.000000000", + "2019-01-06T17:38:48.000000000", + "2019-01-06T17:40:49.000000000", + "2019-01-06T17:43:31.000000000", + "2019-01-06T17:44:13.000000000", + "2019-01-06T17:45:53.000000000", + "2019-01-06T17:45:55.000000000", + "2019-01-06T17:45:59.000000000", + "2019-01-06T17:46:30.000000000", + "2019-01-06T17:48:13.000000000", + "2019-01-06T17:48:25.000000000", + "2019-01-06T17:48:59.000000000", + "2019-01-06T17:50:38.000000000", + "2019-01-06T17:51:05.000000000", + "2019-01-06T17:52:31.000000000", + "2019-01-06T17:54:52.000000000", + "2019-01-06T17:55:26.000000000", + "2019-01-06T17:55:30.000000000", + "2019-01-06T17:55:36.000000000", + "2019-01-06T17:56:34.000000000", + "2019-01-06T17:57:40.000000000", + "2019-01-06T17:59:30.000000000", + "2019-01-06T18:03:15.000000000", + "2019-01-06T18:03:18.000000000", + "2019-01-06T18:03:57.000000000", + "2019-01-06T18:04:04.000000000", + "2019-01-06T18:04:34.000000000", + "2019-01-06T18:04:45.000000000", + "2019-01-06T18:05:17.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:07:37.000000000", + "2019-01-06T18:08:10.000000000", + "2019-01-06T18:11:09.000000000", + "2019-01-06T18:11:23.000000000", + "2019-01-06T18:11:29.000000000", + "2019-01-06T18:13:50.000000000", + "2019-01-06T18:14:05.000000000", + "2019-01-06T18:14:48.000000000", + "2019-01-06T18:14:58.000000000", + "2019-01-06T18:15:08.000000000", + "2019-01-06T18:15:34.000000000", + "2019-01-06T18:15:38.000000000", + "2019-01-06T18:16:37.000000000", + "2019-01-06T18:17:11.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:19:12.000000000", + "2019-01-06T18:19:50.000000000", + "2019-01-06T18:20:33.000000000", + "2019-01-06T18:21:23.000000000", + "2019-01-06T18:23:26.000000000", + "2019-01-06T18:23:29.000000000", + "2019-01-06T18:23:37.000000000", + "2019-01-06T18:25:51.000000000", + "2019-01-06T18:28:01.000000000", + "2019-01-06T18:29:35.000000000", + "2019-01-06T18:30:06.000000000", + "2019-01-06T18:30:36.000000000", + "2019-01-06T18:31:39.000000000", + "2019-01-06T18:32:48.000000000", + "2019-01-06T18:34:10.000000000", + "2019-01-06T18:35:26.000000000", + "2019-01-06T18:36:59.000000000", + "2019-01-06T18:37:00.000000000", + "2019-01-06T18:39:00.000000000", + "2019-01-06T18:41:01.000000000", + "2019-01-06T18:41:44.000000000", + "2019-01-06T18:42:46.000000000", + "2019-01-06T18:44:52.000000000", + "2019-01-06T18:45:28.000000000", + "2019-01-06T18:46:09.000000000", + "2019-01-06T18:47:11.000000000", + "2019-01-06T18:47:15.000000000", + "2019-01-06T18:48:31.000000000", + "2019-01-06T18:49:22.000000000", + "2019-01-06T18:50:29.000000000", + "2019-01-06T18:50:32.000000000", + "2019-01-06T18:50:33.000000000", + "2019-01-06T18:51:28.000000000", + "2019-01-06T18:51:46.000000000", + "2019-01-06T18:55:10.000000000", + "2019-01-06T18:55:21.000000000", + "2019-01-06T18:56:20.000000000", + "2019-01-06T18:58:42.000000000", + "2019-01-06T19:00:25.000000000", + "2019-01-06T19:00:58.000000000", + "2019-01-06T19:01:05.000000000", + "2019-01-06T19:01:26.000000000", + "2019-01-06T19:03:41.000000000", + "2019-01-06T19:04:36.000000000", + "2019-01-06T19:05:19.000000000", + "2019-01-06T19:05:24.000000000", + "2019-01-06T19:06:36.000000000", + "2019-01-06T19:07:25.000000000", + "2019-01-06T19:07:35.000000000", + "2019-01-06T19:08:23.000000000", + "2019-01-06T19:09:51.000000000", + "2019-01-06T19:11:40.000000000", + "2019-01-06T19:15:59.000000000", + "2019-01-06T19:17:00.000000000", + "2019-01-06T19:17:05.000000000", + "2019-01-06T19:17:19.000000000", + "2019-01-06T19:17:20.000000000", + "2019-01-06T19:17:25.000000000", + "2019-01-06T19:17:34.000000000", + "2019-01-06T19:17:43.000000000", + "2019-01-06T19:18:25.000000000", + "2019-01-06T19:18:27.000000000", + "2019-01-06T19:20:32.000000000", + "2019-01-06T19:21:50.000000000", + "2019-01-06T19:22:09.000000000", + "2019-01-06T19:22:21.000000000", + "2019-01-06T19:24:26.000000000", + "2019-01-06T19:24:48.000000000", + "2019-01-06T19:25:29.000000000", + "2019-01-06T19:26:16.000000000", + "2019-01-06T19:26:29.000000000", + "2019-01-06T19:26:44.000000000", + "2019-01-06T19:30:14.000000000", + "2019-01-06T19:33:15.000000000", + "2019-01-06T19:33:17.000000000", + "2019-01-06T19:33:46.000000000", + "2019-01-06T19:35:12.000000000", + "2019-01-06T19:35:42.000000000", + "2019-01-06T19:36:06.000000000", + "2019-01-06T19:36:55.000000000", + "2019-01-06T19:38:01.000000000", + "2019-01-06T19:39:00.000000000", + "2019-01-06T19:39:12.000000000", + "2019-01-06T19:39:56.000000000", + "2019-01-06T19:41:34.000000000", + "2019-01-06T19:41:51.000000000", + "2019-01-06T19:42:52.000000000", + "2019-01-06T19:43:28.000000000", + "2019-01-06T19:44:02.000000000", + "2019-01-06T19:44:20.000000000", + "2019-01-06T19:47:22.000000000", + "2019-01-06T19:49:10.000000000", + "2019-01-06T19:50:33.000000000", + "2019-01-06T19:51:13.000000000", + "2019-01-06T19:51:23.000000000", + "2019-01-06T19:55:40.000000000", + "2019-01-06T19:56:04.000000000", + "2019-01-06T19:57:47.000000000", + "2019-01-06T19:58:05.000000000", + "2019-01-06T19:59:26.000000000", + "2019-01-06T20:01:38.000000000", + "2019-01-06T20:01:54.000000000", + "2019-01-06T20:02:08.000000000", + "2019-01-06T20:03:34.000000000", + "2019-01-06T20:04:56.000000000", + "2019-01-06T20:11:24.000000000", + "2019-01-06T20:12:20.000000000", + "2019-01-06T20:14:50.000000000", + "2019-01-06T20:15:34.000000000", + "2019-01-06T20:16:06.000000000", + "2019-01-06T20:16:46.000000000", + "2019-01-06T20:17:04.000000000", + "2019-01-06T20:17:30.000000000", + "2019-01-06T20:17:49.000000000", + "2019-01-06T20:18:08.000000000", + "2019-01-06T20:19:06.000000000", + "2019-01-06T20:19:39.000000000", + "2019-01-06T20:19:42.000000000", + "2019-01-06T20:21:27.000000000", + "2019-01-06T20:22:03.000000000", + "2019-01-06T20:22:58.000000000", + "2019-01-06T20:23:03.000000000", + "2019-01-06T20:24:44.000000000", + "2019-01-06T20:25:06.000000000", + "2019-01-06T20:26:33.000000000", + "2019-01-06T20:27:16.000000000", + "2019-01-06T20:27:23.000000000", + "2019-01-06T20:28:19.000000000", + "2019-01-06T20:29:45.000000000", + "2019-01-06T20:29:53.000000000", + "2019-01-06T20:30:05.000000000", + "2019-01-06T20:31:57.000000000", + "2019-01-06T20:32:51.000000000", + "2019-01-06T20:33:50.000000000", + "2019-01-06T20:34:48.000000000", + "2019-01-06T20:35:47.000000000", + "2019-01-06T20:38:32.000000000", + "2019-01-06T20:38:46.000000000", + "2019-01-06T20:40:34.000000000", + "2019-01-06T20:40:59.000000000", + "2019-01-06T20:41:53.000000000", + "2019-01-06T20:43:29.000000000", + "2019-01-06T20:43:45.000000000", + "2019-01-06T20:43:48.000000000", + "2019-01-06T20:44:25.000000000", + "2019-01-06T20:46:54.000000000", + "2019-01-06T20:47:09.000000000", + "2019-01-06T20:48:15.000000000", + "2019-01-06T20:48:45.000000000", + "2019-01-06T20:49:44.000000000", + "2019-01-06T20:51:52.000000000", + "2019-01-06T20:52:39.000000000", + "2019-01-06T20:55:56.000000000", + "2019-01-06T20:56:19.000000000", + "2019-01-06T20:56:51.000000000", + "2019-01-06T20:59:21.000000000", + "2019-01-06T21:01:16.000000000", + "2019-01-06T21:02:45.000000000", + "2019-01-06T21:06:53.000000000", + "2019-01-06T21:11:34.000000000", + "2019-01-06T21:11:54.000000000", + "2019-01-06T21:13:09.000000000", + "2019-01-06T21:13:48.000000000", + "2019-01-06T21:18:29.000000000", + "2019-01-06T21:19:36.000000000", + "2019-01-06T21:19:52.000000000", + "2019-01-06T21:20:07.000000000", + "2019-01-06T21:20:54.000000000", + "2019-01-06T21:22:47.000000000", + "2019-01-06T21:23:35.000000000", + "2019-01-06T21:23:52.000000000", + "2019-01-06T21:25:06.000000000", + "2019-01-06T21:25:58.000000000", + "2019-01-06T21:26:29.000000000", + "2019-01-06T21:27:18.000000000", + "2019-01-06T21:28:23.000000000", + "2019-01-06T21:30:56.000000000", + "2019-01-06T21:32:20.000000000", + "2019-01-06T21:33:03.000000000", + "2019-01-06T21:34:15.000000000", + "2019-01-06T21:34:31.000000000", + "2019-01-06T21:34:44.000000000", + "2019-01-06T21:34:47.000000000", + "2019-01-06T21:35:06.000000000", + "2019-01-06T21:36:08.000000000", + "2019-01-06T21:37:02.000000000", + "2019-01-06T21:38:06.000000000", + "2019-01-06T21:38:09.000000000", + "2019-01-06T21:38:50.000000000", + "2019-01-06T21:39:55.000000000", + "2019-01-06T21:40:41.000000000", + "2019-01-06T21:41:16.000000000", + "2019-01-06T21:42:13.000000000", + "2019-01-06T21:42:28.000000000", + "2019-01-06T21:42:40.000000000", + "2019-01-06T21:42:47.000000000", + "2019-01-06T21:43:03.000000000", + "2019-01-06T21:44:43.000000000", + "2019-01-06T21:45:39.000000000", + "2019-01-06T21:47:32.000000000", + "2019-01-06T21:49:22.000000000", + "2019-01-06T21:50:02.000000000", + "2019-01-06T21:52:14.000000000", + "2019-01-06T21:53:39.000000000", + "2019-01-06T21:55:09.000000000", + "2019-01-06T21:55:37.000000000", + "2019-01-06T21:56:40.000000000", + "2019-01-06T21:57:08.000000000", + "2019-01-06T21:58:17.000000000", + "2019-01-06T21:59:01.000000000", + "2019-01-06T21:59:02.000000000", + "2019-01-06T21:59:46.000000000", + "2019-01-06T22:00:59.000000000", + "2019-01-06T22:01:10.000000000", + "2019-01-06T22:02:38.000000000", + "2019-01-06T22:04:17.000000000", + "2019-01-06T22:05:13.000000000", + "2019-01-06T22:06:24.000000000", + "2019-01-06T22:06:55.000000000", + "2019-01-06T22:08:40.000000000", + "2019-01-06T22:09:17.000000000", + "2019-01-06T22:09:57.000000000", + "2019-01-06T22:12:04.000000000", + "2019-01-06T22:13:45.000000000", + "2019-01-06T22:15:55.000000000", + "2019-01-06T22:16:00.000000000", + "2019-01-06T22:18:42.000000000", + "2019-01-06T22:21:08.000000000", + "2019-01-06T22:21:33.000000000", + "2019-01-06T22:22:15.000000000", + "2019-01-06T22:22:17.000000000", + "2019-01-06T22:22:34.000000000", + "2019-01-06T22:22:50.000000000", + "2019-01-06T22:24:03.000000000", + "2019-01-06T22:24:07.000000000", + "2019-01-06T22:24:20.000000000", + "2019-01-06T22:26:22.000000000", + "2019-01-06T22:27:07.000000000", + "2019-01-06T22:28:08.000000000", + "2019-01-06T22:28:43.000000000", + "2019-01-06T22:29:04.000000000", + "2019-01-06T22:29:34.000000000", + "2019-01-06T22:29:51.000000000", + "2019-01-06T22:30:43.000000000", + "2019-01-06T22:31:07.000000000", + "2019-01-06T22:31:30.000000000", + "2019-01-06T22:32:12.000000000", + "2019-01-06T22:32:27.000000000", + "2019-01-06T22:34:42.000000000", + "2019-01-06T22:35:00.000000000", + "2019-01-06T22:36:09.000000000", + "2019-01-06T22:36:24.000000000", + "2019-01-06T22:37:22.000000000", + "2019-01-06T22:37:57.000000000", + "2019-01-06T22:38:56.000000000", + "2019-01-06T22:39:37.000000000", + "2019-01-06T22:41:57.000000000", + "2019-01-06T22:44:31.000000000", + "2019-01-06T22:44:42.000000000", + "2019-01-06T22:48:29.000000000", + "2019-01-06T22:50:27.000000000", + "2019-01-06T22:51:09.000000000", + "2019-01-06T22:52:57.000000000", + "2019-01-06T22:54:45.000000000", + "2019-01-06T22:54:54.000000000", + "2019-01-06T22:55:28.000000000", + "2019-01-06T22:55:56.000000000", + "2019-01-06T22:56:32.000000000", + "2019-01-06T22:56:56.000000000", + "2019-01-06T22:57:34.000000000", + "2019-01-06T22:59:55.000000000", + "2019-01-06T23:01:11.000000000", + "2019-01-06T23:01:23.000000000", + "2019-01-06T23:02:02.000000000", + "2019-01-06T23:02:17.000000000", + "2019-01-06T23:04:11.000000000", + "2019-01-06T23:04:28.000000000", + "2019-01-06T23:04:57.000000000", + "2019-01-06T23:05:23.000000000", + "2019-01-06T23:06:34.000000000", + "2019-01-06T23:07:04.000000000", + "2019-01-06T23:08:23.000000000", + "2019-01-06T23:08:27.000000000", + "2019-01-06T23:09:16.000000000", + "2019-01-06T23:09:32.000000000", + "2019-01-06T23:11:09.000000000", + "2019-01-06T23:12:58.000000000", + "2019-01-06T23:12:59.000000000", + "2019-01-06T23:13:05.000000000", + "2019-01-06T23:13:53.000000000", + "2019-01-06T23:15:54.000000000", + "2019-01-06T23:17:45.000000000", + "2019-01-06T23:18:55.000000000", + "2019-01-06T23:20:29.000000000", + "2019-01-06T23:23:01.000000000", + "2019-01-06T23:25:19.000000000", + "2019-01-06T23:26:28.000000000", + "2019-01-06T23:28:20.000000000", + "2019-01-06T23:28:27.000000000", + "2019-01-06T23:28:38.000000000", + "2019-01-06T23:28:50.000000000", + "2019-01-06T23:30:11.000000000", + "2019-01-06T23:31:06.000000000", + "2019-01-06T23:31:25.000000000", + "2019-01-06T23:32:31.000000000", + "2019-01-06T23:32:58.000000000", + "2019-01-06T23:33:56.000000000", + "2019-01-06T23:35:13.000000000", + "2019-01-06T23:35:31.000000000", + "2019-01-06T23:35:49.000000000", + "2019-01-06T23:36:59.000000000", + "2019-01-06T23:38:05.000000000", + "2019-01-06T23:39:43.000000000", + "2019-01-06T23:41:28.000000000", + "2019-01-06T23:43:06.000000000", + "2019-01-06T23:43:20.000000000", + "2019-01-06T23:43:50.000000000", + "2019-01-06T23:46:45.000000000", + "2019-01-06T23:46:47.000000000", + "2019-01-06T23:48:15.000000000", + "2019-01-06T23:49:03.000000000", + "2019-01-06T23:50:08.000000000", + "2019-01-06T23:50:26.000000000", + "2019-01-06T23:50:53.000000000", + "2019-01-06T23:51:33.000000000", + "2019-01-06T23:53:35.000000000", + "2019-01-06T23:54:51.000000000", + "2019-01-06T23:55:28.000000000", + "2019-01-06T23:55:42.000000000", + "2019-01-06T23:58:24.000000000", + "2019-01-06T23:58:46.000000000", + "2019-01-06T23:59:45.000000000", + "2019-01-07T00:01:51.000000000", + "2019-01-07T00:01:54.000000000", + "2019-01-07T00:03:49.000000000", + "2019-01-07T00:04:12.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:43.000000000", + "2019-01-07T00:07:29.000000000", + "2019-01-07T00:08:58.000000000", + "2019-01-07T00:12:21.000000000", + "2019-01-07T00:13:34.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:14:20.000000000", + "2019-01-07T00:14:37.000000000", + "2019-01-07T00:18:44.000000000", + "2019-01-07T00:20:52.000000000", + "2019-01-07T00:21:09.000000000", + "2019-01-07T00:21:30.000000000", + "2019-01-07T00:22:11.000000000", + "2019-01-07T00:22:13.000000000", + "2019-01-07T00:24:17.000000000", + "2019-01-07T00:25:17.000000000", + "2019-01-07T00:25:39.000000000", + "2019-01-07T00:25:53.000000000", + "2019-01-07T00:26:28.000000000", + "2019-01-07T00:27:50.000000000", + "2019-01-07T00:28:13.000000000", + "2019-01-07T00:28:51.000000000", + "2019-01-07T00:29:13.000000000", + "2019-01-07T00:29:21.000000000", + "2019-01-07T00:29:29.000000000", + "2019-01-07T00:29:55.000000000", + "2019-01-07T00:29:56.000000000", + "2019-01-07T00:30:23.000000000", + "2019-01-07T00:31:03.000000000", + "2019-01-07T00:32:14.000000000", + "2019-01-07T00:33:49.000000000", + "2019-01-07T00:34:07.000000000", + "2019-01-07T00:34:32.000000000", + "2019-01-07T00:34:59.000000000", + "2019-01-07T00:38:57.000000000", + "2019-01-07T00:40:52.000000000", + "2019-01-07T00:42:08.000000000", + "2019-01-07T00:42:20.000000000", + "2019-01-07T00:42:25.000000000", + "2019-01-07T00:43:03.000000000", + "2019-01-07T00:44:29.000000000", + "2019-01-07T00:45:00.000000000", + "2019-01-07T00:45:52.000000000", + "2019-01-07T00:46:49.000000000", + "2019-01-07T00:48:31.000000000", + "2019-01-07T00:48:53.000000000", + "2019-01-07T00:52:13.000000000", + "2019-01-07T00:52:29.000000000", + "2019-01-07T00:54:10.000000000", + "2019-01-07T00:54:39.000000000", + "2019-01-07T00:54:53.000000000", + "2019-01-07T00:56:29.000000000", + "2019-01-07T00:56:55.000000000", + "2019-01-07T00:57:56.000000000", + "2019-01-07T00:58:21.000000000", + "2019-01-07T00:58:31.000000000", + "2019-01-07T00:58:56.000000000", + "2019-01-07T00:59:39.000000000", + "2019-01-07T01:00:32.000000000", + "2019-01-07T01:03:03.000000000", + "2019-01-07T01:03:40.000000000", + "2019-01-07T01:03:45.000000000", + "2019-01-07T01:04:14.000000000", + "2019-01-07T01:07:12.000000000", + "2019-01-07T01:08:31.000000000", + "2019-01-07T01:10:11.000000000", + "2019-01-07T01:10:14.000000000", + "2019-01-07T01:10:33.000000000", + "2019-01-07T01:11:06.000000000", + "2019-01-07T01:12:25.000000000", + "2019-01-07T01:12:42.000000000", + "2019-01-07T01:16:41.000000000", + "2019-01-07T01:18:09.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:20:24.000000000", + "2019-01-07T01:24:39.000000000", + "2019-01-07T01:24:43.000000000", + "2019-01-07T01:28:14.000000000", + "2019-01-07T01:28:40.000000000", + "2019-01-07T01:30:20.000000000", + "2019-01-07T01:30:39.000000000", + "2019-01-07T01:30:40.000000000", + "2019-01-07T01:31:12.000000000", + "2019-01-07T01:32:06.000000000", + "2019-01-07T01:32:09.000000000", + "2019-01-07T01:32:39.000000000", + "2019-01-07T01:33:45.000000000", + "2019-01-07T01:35:11.000000000", + "2019-01-07T01:35:54.000000000", + "2019-01-07T01:37:33.000000000", + "2019-01-07T01:38:35.000000000", + "2019-01-07T01:38:56.000000000", + "2019-01-07T01:43:49.000000000", + "2019-01-07T01:44:27.000000000", + "2019-01-07T01:46:50.000000000", + "2019-01-07T01:47:17.000000000", + "2019-01-07T01:48:42.000000000", + "2019-01-07T01:48:53.000000000", + "2019-01-07T01:51:40.000000000", + "2019-01-07T01:51:49.000000000", + "2019-01-07T01:52:58.000000000", + "2019-01-07T01:53:33.000000000", + "2019-01-07T01:54:08.000000000", + "2019-01-07T01:54:39.000000000", + "2019-01-07T01:54:43.000000000", + "2019-01-07T01:54:55.000000000", + "2019-01-07T01:57:39.000000000", + "2019-01-07T01:58:15.000000000", + "2019-01-07T02:00:42.000000000", + "2019-01-07T02:00:49.000000000", + "2019-01-07T02:01:51.000000000", + "2019-01-07T02:04:04.000000000", + "2019-01-07T02:05:19.000000000", + "2019-01-07T02:06:34.000000000", + "2019-01-07T02:07:12.000000000", + "2019-01-07T02:07:37.000000000", + "2019-01-07T02:08:53.000000000", + "2019-01-07T02:11:13.000000000", + "2019-01-07T02:11:41.000000000", + "2019-01-07T02:11:53.000000000", + "2019-01-07T02:12:03.000000000", + "2019-01-07T02:12:16.000000000", + "2019-01-07T02:12:27.000000000", + "2019-01-07T02:13:23.000000000", + "2019-01-07T02:13:33.000000000", + "2019-01-07T02:13:55.000000000", + "2019-01-07T02:15:28.000000000", + "2019-01-07T02:16:19.000000000", + "2019-01-07T02:16:24.000000000", + "2019-01-07T02:17:03.000000000", + "2019-01-07T02:21:42.000000000", + "2019-01-07T02:21:54.000000000", + "2019-01-07T02:23:06.000000000", + "2019-01-07T02:23:18.000000000", + "2019-01-07T02:24:02.000000000", + "2019-01-07T02:24:39.000000000", + "2019-01-07T02:25:12.000000000", + "2019-01-07T02:25:28.000000000", + "2019-01-07T02:25:36.000000000", + "2019-01-07T02:26:34.000000000", + "2019-01-07T02:27:29.000000000", + "2019-01-07T02:27:30.000000000", + "2019-01-07T02:28:02.000000000", + "2019-01-07T02:28:32.000000000", + "2019-01-07T02:28:55.000000000", + "2019-01-07T02:29:00.000000000", + "2019-01-07T02:29:10.000000000", + "2019-01-07T02:30:18.000000000", + "2019-01-07T02:31:06.000000000", + "2019-01-07T02:34:29.000000000", + "2019-01-07T02:35:01.000000000", + "2019-01-07T02:35:51.000000000", + "2019-01-07T02:36:10.000000000", + "2019-01-07T02:36:55.000000000", + "2019-01-07T02:37:48.000000000", + "2019-01-07T02:38:13.000000000", + "2019-01-07T02:38:50.000000000", + "2019-01-07T02:39:21.000000000", + "2019-01-07T02:40:55.000000000", + "2019-01-07T02:41:09.000000000", + "2019-01-07T02:41:45.000000000", + "2019-01-07T02:42:06.000000000", + "2019-01-07T02:42:34.000000000", + "2019-01-07T02:43:03.000000000", + "2019-01-07T02:44:15.000000000", + "2019-01-07T02:45:15.000000000", + "2019-01-07T02:45:35.000000000", + "2019-01-07T02:45:37.000000000", + "2019-01-07T02:47:10.000000000", + "2019-01-07T02:52:09.000000000", + "2019-01-07T02:52:49.000000000", + "2019-01-07T02:55:14.000000000", + "2019-01-07T02:57:10.000000000", + "2019-01-07T02:58:26.000000000", + "2019-01-07T02:58:40.000000000", + "2019-01-07T03:00:43.000000000", + "2019-01-07T03:02:44.000000000", + "2019-01-07T03:02:57.000000000", + "2019-01-07T03:03:03.000000000", + "2019-01-07T03:03:41.000000000", + "2019-01-07T03:05:27.000000000", + "2019-01-07T03:05:51.000000000", + "2019-01-07T03:06:00.000000000", + "2019-01-07T03:06:51.000000000", + "2019-01-07T03:08:20.000000000", + "2019-01-07T03:08:55.000000000", + "2019-01-07T03:09:32.000000000", + "2019-01-07T03:11:33.000000000", + "2019-01-07T03:12:35.000000000", + "2019-01-07T03:13:24.000000000", + "2019-01-07T03:13:43.000000000", + "2019-01-07T03:16:48.000000000", + "2019-01-07T03:18:41.000000000", + "2019-01-07T03:18:43.000000000", + "2019-01-07T03:22:31.000000000", + "2019-01-07T03:23:53.000000000", + "2019-01-07T03:26:29.000000000", + "2019-01-07T03:26:34.000000000", + "2019-01-07T03:26:50.000000000", + "2019-01-07T03:27:20.000000000", + "2019-01-07T03:28:53.000000000", + "2019-01-07T03:30:12.000000000", + "2019-01-07T03:33:26.000000000", + "2019-01-07T03:33:51.000000000", + "2019-01-07T03:34:17.000000000", + "2019-01-07T03:34:32.000000000", + "2019-01-07T03:34:46.000000000", + "2019-01-07T03:35:10.000000000", + "2019-01-07T03:35:15.000000000", + "2019-01-07T03:36:25.000000000", + "2019-01-07T03:38:12.000000000", + "2019-01-07T03:42:38.000000000", + "2019-01-07T03:44:11.000000000", + "2019-01-07T03:45:09.000000000", + "2019-01-07T03:46:10.000000000", + "2019-01-07T03:46:38.000000000", + "2019-01-07T03:47:32.000000000", + "2019-01-07T03:48:02.000000000", + "2019-01-07T03:50:59.000000000", + "2019-01-07T03:51:10.000000000", + "2019-01-07T03:51:35.000000000", + "2019-01-07T03:52:27.000000000", + "2019-01-07T03:52:50.000000000", + "2019-01-07T03:54:07.000000000", + "2019-01-07T03:55:07.000000000", + "2019-01-07T03:55:44.000000000", + "2019-01-07T03:56:06.000000000", + "2019-01-07T03:56:07.000000000", + "2019-01-07T03:56:52.000000000", + "2019-01-07T03:57:45.000000000", + "2019-01-07T03:59:56.000000000", + "2019-01-07T04:00:21.000000000", + "2019-01-07T04:03:49.000000000", + "2019-01-07T04:04:05.000000000", + "2019-01-07T04:05:57.000000000", + "2019-01-07T04:07:17.000000000", + "2019-01-07T04:08:30.000000000", + "2019-01-07T04:10:43.000000000", + "2019-01-07T04:11:28.000000000", + "2019-01-07T04:12:12.000000000", + "2019-01-07T04:12:18.000000000", + "2019-01-07T04:12:37.000000000", + "2019-01-07T04:13:57.000000000", + "2019-01-07T04:16:21.000000000", + "2019-01-07T04:18:14.000000000", + "2019-01-07T04:19:00.000000000", + "2019-01-07T04:19:12.000000000", + "2019-01-07T04:24:10.000000000", + "2019-01-07T04:25:04.000000000", + "2019-01-07T04:26:42.000000000", + "2019-01-07T04:28:03.000000000", + "2019-01-07T04:31:09.000000000", + "2019-01-07T04:34:55.000000000", + "2019-01-07T04:35:19.000000000", + "2019-01-07T04:36:03.000000000", + "2019-01-07T04:36:48.000000000", + "2019-01-07T04:38:43.000000000", + "2019-01-07T04:41:25.000000000", + "2019-01-07T04:41:47.000000000", + "2019-01-07T04:41:55.000000000", + "2019-01-07T04:42:22.000000000", + "2019-01-07T04:42:24.000000000", + "2019-01-07T04:42:41.000000000", + "2019-01-07T04:44:16.000000000", + "2019-01-07T04:44:29.000000000", + "2019-01-07T04:45:01.000000000", + "2019-01-07T04:45:43.000000000", + "2019-01-07T04:46:07.000000000", + "2019-01-07T04:46:27.000000000", + "2019-01-07T04:46:36.000000000", + "2019-01-07T04:50:55.000000000", + "2019-01-07T04:52:06.000000000", + "2019-01-07T04:53:14.000000000", + "2019-01-07T04:53:23.000000000", + "2019-01-07T04:53:40.000000000", + "2019-01-07T04:54:49.000000000", + "2019-01-07T04:56:04.000000000", + "2019-01-07T04:56:59.000000000", + "2019-01-07T05:01:21.000000000", + "2019-01-07T05:01:22.000000000", + "2019-01-07T05:03:16.000000000", + "2019-01-07T05:03:17.000000000", + "2019-01-07T05:04:23.000000000", + "2019-01-07T05:06:16.000000000", + "2019-01-07T05:07:51.000000000", + "2019-01-07T05:08:32.000000000", + "2019-01-07T05:10:21.000000000", + "2019-01-07T05:11:07.000000000", + "2019-01-07T05:11:22.000000000", + "2019-01-07T05:17:10.000000000", + "2019-01-07T05:18:20.000000000", + "2019-01-07T05:20:47.000000000", + "2019-01-07T05:20:51.000000000", + "2019-01-07T05:20:57.000000000", + "2019-01-07T05:20:58.000000000", + "2019-01-07T05:22:02.000000000", + "2019-01-07T05:22:04.000000000", + "2019-01-07T05:23:33.000000000", + "2019-01-07T05:24:31.000000000", + "2019-01-07T05:25:16.000000000", + "2019-01-07T05:25:53.000000000", + "2019-01-07T05:26:47.000000000", + "2019-01-07T05:27:11.000000000", + "2019-01-07T05:28:05.000000000", + "2019-01-07T05:28:18.000000000", + "2019-01-07T05:29:11.000000000", + "2019-01-07T05:29:30.000000000", + "2019-01-07T05:30:08.000000000", + "2019-01-07T05:31:20.000000000", + "2019-01-07T05:33:44.000000000", + "2019-01-07T05:34:00.000000000", + "2019-01-07T05:34:01.000000000", + "2019-01-07T05:35:17.000000000", + "2019-01-07T05:35:19.000000000", + "2019-01-07T05:35:48.000000000", + "2019-01-07T05:36:34.000000000", + "2019-01-07T05:39:22.000000000", + "2019-01-07T05:39:50.000000000", + "2019-01-07T05:40:26.000000000", + "2019-01-07T05:41:40.000000000", + "2019-01-07T05:42:43.000000000", + "2019-01-07T05:42:49.000000000", + "2019-01-07T05:42:54.000000000", + "2019-01-07T05:43:23.000000000", + "2019-01-07T05:48:37.000000000", + "2019-01-07T05:49:06.000000000", + "2019-01-07T05:56:56.000000000", + "2019-01-07T05:56:57.000000000", + "2019-01-07T05:57:24.000000000", + "2019-01-07T05:58:15.000000000", + "2019-01-07T05:58:50.000000000", + "2019-01-07T05:59:24.000000000", + "2019-01-07T06:00:29.000000000", + "2019-01-07T06:01:26.000000000", + "2019-01-07T06:01:45.000000000", + "2019-01-07T06:02:11.000000000", + "2019-01-07T06:02:16.000000000", + "2019-01-07T06:07:32.000000000", + "2019-01-07T06:08:18.000000000", + "2019-01-07T06:09:25.000000000", + "2019-01-07T06:10:05.000000000", + "2019-01-07T06:10:51.000000000", + "2019-01-07T06:11:02.000000000", + "2019-01-07T06:11:55.000000000", + "2019-01-07T06:13:52.000000000", + "2019-01-07T06:16:34.000000000", + "2019-01-07T06:16:41.000000000", + "2019-01-07T06:17:23.000000000", + "2019-01-07T06:18:17.000000000", + "2019-01-07T06:19:03.000000000", + "2019-01-07T06:22:08.000000000", + "2019-01-07T06:23:14.000000000", + "2019-01-07T06:23:29.000000000", + "2019-01-07T06:24:47.000000000", + "2019-01-07T06:27:30.000000000", + "2019-01-07T06:27:43.000000000", + "2019-01-07T06:28:29.000000000", + "2019-01-07T06:29:41.000000000", + "2019-01-07T06:30:46.000000000", + "2019-01-07T06:31:24.000000000", + "2019-01-07T06:33:41.000000000", + "2019-01-07T06:35:58.000000000", + "2019-01-07T06:37:37.000000000", + "2019-01-07T06:37:42.000000000", + "2019-01-07T06:38:24.000000000", + "2019-01-07T06:39:12.000000000", + "2019-01-07T06:42:17.000000000", + "2019-01-07T06:42:24.000000000", + "2019-01-07T06:44:52.000000000", + "2019-01-07T06:45:17.000000000", + "2019-01-07T06:46:21.000000000", + "2019-01-07T06:48:06.000000000", + "2019-01-07T06:48:10.000000000", + "2019-01-07T06:48:11.000000000", + "2019-01-07T06:48:36.000000000", + "2019-01-07T06:50:04.000000000", + "2019-01-07T06:50:48.000000000", + "2019-01-07T06:52:46.000000000", + "2019-01-07T06:52:51.000000000", + "2019-01-07T06:52:59.000000000", + "2019-01-07T06:54:19.000000000", + "2019-01-07T06:55:09.000000000", + "2019-01-07T06:56:21.000000000", + "2019-01-07T06:57:13.000000000", + "2019-01-07T06:59:08.000000000", + "2019-01-07T06:59:34.000000000", + "2019-01-07T07:00:16.000000000", + "2019-01-07T07:00:39.000000000", + "2019-01-07T07:01:19.000000000", + "2019-01-07T07:01:57.000000000", + "2019-01-07T07:02:31.000000000", + "2019-01-07T07:02:34.000000000", + "2019-01-07T07:02:46.000000000", + "2019-01-07T07:02:53.000000000", + "2019-01-07T07:03:22.000000000", + "2019-01-07T07:04:06.000000000", + "2019-01-07T07:04:32.000000000", + "2019-01-07T07:05:15.000000000", + "2019-01-07T07:05:45.000000000", + "2019-01-07T07:06:36.000000000", + "2019-01-07T07:07:33.000000000", + "2019-01-07T07:07:55.000000000", + "2019-01-07T07:08:28.000000000", + "2019-01-07T07:08:56.000000000", + "2019-01-07T07:09:12.000000000", + "2019-01-07T07:10:29.000000000", + "2019-01-07T07:13:26.000000000", + "2019-01-07T07:13:40.000000000", + "2019-01-07T07:15:15.000000000", + "2019-01-07T07:15:42.000000000", + "2019-01-07T07:17:27.000000000", + "2019-01-07T07:17:42.000000000", + "2019-01-07T07:17:52.000000000", + "2019-01-07T07:17:57.000000000", + "2019-01-07T07:18:46.000000000", + "2019-01-07T07:19:00.000000000", + "2019-01-07T07:19:18.000000000", + "2019-01-07T07:19:50.000000000", + "2019-01-07T07:19:54.000000000", + "2019-01-07T07:19:59.000000000", + "2019-01-07T07:21:27.000000000", + "2019-01-07T07:22:13.000000000", + "2019-01-07T07:23:19.000000000", + "2019-01-07T07:23:45.000000000", + "2019-01-07T07:24:41.000000000", + "2019-01-07T07:25:00.000000000", + "2019-01-07T07:25:29.000000000", + "2019-01-07T07:28:08.000000000", + "2019-01-07T07:29:08.000000000", + "2019-01-07T07:29:18.000000000", + "2019-01-07T07:30:06.000000000", + "2019-01-07T07:30:28.000000000", + "2019-01-07T07:32:45.000000000", + "2019-01-07T07:33:21.000000000", + "2019-01-07T07:33:56.000000000", + "2019-01-07T07:34:20.000000000", + "2019-01-07T07:34:22.000000000", + "2019-01-07T07:34:43.000000000", + "2019-01-07T07:35:34.000000000", + "2019-01-07T07:39:25.000000000", + "2019-01-07T07:39:32.000000000", + "2019-01-07T07:40:17.000000000", + "2019-01-07T07:42:39.000000000", + "2019-01-07T07:44:54.000000000", + "2019-01-07T07:45:03.000000000", + "2019-01-07T07:49:30.000000000", + "2019-01-07T07:50:23.000000000", + "2019-01-07T07:51:10.000000000", + "2019-01-07T07:53:41.000000000", + "2019-01-07T07:54:52.000000000", + "2019-01-07T07:54:57.000000000", + "2019-01-07T07:57:42.000000000", + "2019-01-07T07:58:18.000000000", + "2019-01-07T07:58:31.000000000", + "2019-01-07T07:58:59.000000000", + "2019-01-07T08:01:03.000000000", + "2019-01-07T08:03:52.000000000", + "2019-01-07T08:04:40.000000000", + "2019-01-07T08:05:01.000000000", + "2019-01-07T08:05:51.000000000", + "2019-01-07T08:06:44.000000000", + "2019-01-07T08:07:09.000000000", + "2019-01-07T08:09:43.000000000", + "2019-01-07T08:09:58.000000000", + "2019-01-07T08:11:19.000000000", + "2019-01-07T08:11:48.000000000", + "2019-01-07T08:13:02.000000000", + "2019-01-07T08:15:25.000000000", + "2019-01-07T08:15:27.000000000", + "2019-01-07T08:15:33.000000000", + "2019-01-07T08:16:56.000000000", + "2019-01-07T08:17:29.000000000", + "2019-01-07T08:17:59.000000000", + "2019-01-07T08:19:06.000000000", + "2019-01-07T08:20:05.000000000", + "2019-01-07T08:21:58.000000000", + "2019-01-07T08:22:41.000000000", + "2019-01-07T08:26:02.000000000", + "2019-01-07T08:28:37.000000000", + "2019-01-07T08:29:42.000000000", + "2019-01-07T08:30:15.000000000", + "2019-01-07T08:31:13.000000000", + "2019-01-07T08:31:30.000000000", + "2019-01-07T08:31:45.000000000", + "2019-01-07T08:34:08.000000000", + "2019-01-07T08:34:49.000000000", + "2019-01-07T08:34:58.000000000", + "2019-01-07T08:35:29.000000000", + "2019-01-07T08:36:29.000000000", + "2019-01-07T08:37:00.000000000", + "2019-01-07T08:39:30.000000000", + "2019-01-07T08:41:16.000000000", + "2019-01-07T08:41:23.000000000", + "2019-01-07T08:42:37.000000000", + "2019-01-07T08:43:20.000000000", + "2019-01-07T08:43:26.000000000", + "2019-01-07T08:43:50.000000000", + "2019-01-07T08:45:21.000000000", + "2019-01-07T08:46:58.000000000", + "2019-01-07T08:47:59.000000000", + "2019-01-07T08:48:33.000000000", + "2019-01-07T08:49:40.000000000", + "2019-01-07T08:54:16.000000000", + "2019-01-07T08:54:37.000000000", + "2019-01-07T08:56:09.000000000", + "2019-01-07T08:56:12.000000000", + "2019-01-07T09:00:08.000000000", + "2019-01-07T09:00:34.000000000", + "2019-01-07T09:00:48.000000000", + "2019-01-07T09:00:57.000000000", + "2019-01-07T09:01:08.000000000", + "2019-01-07T09:01:30.000000000", + "2019-01-07T09:01:46.000000000", + "2019-01-07T09:01:59.000000000", + "2019-01-07T09:02:06.000000000", + "2019-01-07T09:02:46.000000000", + "2019-01-07T09:02:52.000000000", + "2019-01-07T09:03:11.000000000", + "2019-01-07T09:04:24.000000000", + "2019-01-07T09:04:44.000000000", + "2019-01-07T09:06:08.000000000", + "2019-01-07T09:06:16.000000000", + "2019-01-07T09:06:54.000000000", + "2019-01-07T09:09:28.000000000", + "2019-01-07T09:09:58.000000000", + "2019-01-07T09:10:21.000000000", + "2019-01-07T09:10:59.000000000", + "2019-01-07T09:12:27.000000000", + "2019-01-07T09:12:50.000000000", + "2019-01-07T09:13:04.000000000", + "2019-01-07T09:14:27.000000000", + "2019-01-07T09:14:34.000000000", + "2019-01-07T09:17:02.000000000", + "2019-01-07T09:17:30.000000000", + "2019-01-07T09:18:30.000000000", + "2019-01-07T09:18:37.000000000", + "2019-01-07T09:20:12.000000000", + "2019-01-07T09:20:25.000000000", + "2019-01-07T09:20:46.000000000", + "2019-01-07T09:22:10.000000000", + "2019-01-07T09:22:22.000000000", + "2019-01-07T09:23:10.000000000", + "2019-01-07T09:25:17.000000000", + "2019-01-07T09:25:29.000000000", + "2019-01-07T09:25:34.000000000", + "2019-01-07T09:26:24.000000000", + "2019-01-07T09:27:29.000000000", + "2019-01-07T09:28:32.000000000", + "2019-01-07T09:29:52.000000000", + "2019-01-07T09:30:51.000000000", + "2019-01-07T09:32:08.000000000", + "2019-01-07T09:33:07.000000000", + "2019-01-07T09:33:49.000000000", + "2019-01-07T09:33:55.000000000", + "2019-01-07T09:34:31.000000000", + "2019-01-07T09:36:46.000000000", + "2019-01-07T09:37:08.000000000", + "2019-01-07T09:37:18.000000000", + "2019-01-07T09:41:47.000000000", + "2019-01-07T09:44:14.000000000", + "2019-01-07T09:44:35.000000000", + "2019-01-07T09:45:29.000000000", + "2019-01-07T09:46:47.000000000", + "2019-01-07T09:47:55.000000000", + "2019-01-07T09:48:36.000000000", + "2019-01-07T09:49:57.000000000", + "2019-01-07T09:50:43.000000000", + "2019-01-07T09:55:13.000000000", + "2019-01-07T09:55:41.000000000", + "2019-01-07T09:56:33.000000000", + "2019-01-07T09:56:39.000000000", + "2019-01-07T09:56:48.000000000", + "2019-01-07T09:58:14.000000000", + "2019-01-07T09:58:28.000000000", + "2019-01-07T09:59:38.000000000", + "2019-01-07T10:01:23.000000000", + "2019-01-07T10:01:38.000000000", + "2019-01-07T10:01:48.000000000", + "2019-01-07T10:05:22.000000000", + "2019-01-07T10:07:15.000000000", + "2019-01-07T10:07:21.000000000", + "2019-01-07T10:12:37.000000000", + "2019-01-07T10:15:16.000000000", + "2019-01-07T10:15:50.000000000", + "2019-01-07T10:15:52.000000000", + "2019-01-07T10:16:52.000000000", + "2019-01-07T10:18:25.000000000", + "2019-01-07T10:19:32.000000000", + "2019-01-07T10:20:13.000000000", + "2019-01-07T10:23:19.000000000", + "2019-01-07T10:23:38.000000000", + "2019-01-07T10:24:50.000000000", + "2019-01-07T10:25:41.000000000", + "2019-01-07T10:26:32.000000000", + "2019-01-07T10:28:06.000000000", + "2019-01-07T10:28:11.000000000", + "2019-01-07T10:29:17.000000000", + "2019-01-07T10:30:03.000000000", + "2019-01-07T10:30:26.000000000", + "2019-01-07T10:30:36.000000000", + "2019-01-07T10:31:30.000000000", + "2019-01-07T10:31:52.000000000", + "2019-01-07T10:31:53.000000000", + "2019-01-07T10:32:08.000000000", + "2019-01-07T10:33:34.000000000", + "2019-01-07T10:35:15.000000000", + "2019-01-07T10:35:53.000000000", + "2019-01-07T10:36:00.000000000", + "2019-01-07T10:36:46.000000000", + "2019-01-07T10:36:58.000000000", + "2019-01-07T10:38:52.000000000", + "2019-01-07T10:40:07.000000000", + "2019-01-07T10:43:12.000000000", + "2019-01-07T10:43:13.000000000", + "2019-01-07T10:45:07.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:46:47.000000000", + "2019-01-07T10:47:43.000000000", + "2019-01-07T10:47:46.000000000", + "2019-01-07T10:49:28.000000000", + "2019-01-07T10:49:39.000000000", + "2019-01-07T10:50:58.000000000", + "2019-01-07T10:52:57.000000000", + "2019-01-07T10:53:15.000000000", + "2019-01-07T10:54:23.000000000", + "2019-01-07T10:54:30.000000000", + "2019-01-07T10:54:56.000000000", + "2019-01-07T10:54:59.000000000", + "2019-01-07T10:56:17.000000000", + "2019-01-07T10:56:40.000000000", + "2019-01-07T10:57:41.000000000", + "2019-01-07T10:58:07.000000000", + "2019-01-07T10:58:09.000000000", + "2019-01-07T10:58:17.000000000", + "2019-01-07T10:58:29.000000000", + "2019-01-07T11:00:31.000000000", + "2019-01-07T11:02:52.000000000", + "2019-01-07T11:03:56.000000000", + "2019-01-07T11:04:09.000000000", + "2019-01-07T11:04:15.000000000", + "2019-01-07T11:04:28.000000000", + "2019-01-07T11:06:37.000000000", + "2019-01-07T11:07:31.000000000", + "2019-01-07T11:11:05.000000000", + "2019-01-07T11:11:37.000000000", + "2019-01-07T11:13:27.000000000", + "2019-01-07T11:13:40.000000000", + "2019-01-07T11:13:54.000000000", + "2019-01-07T11:14:59.000000000", + "2019-01-07T11:16:48.000000000", + "2019-01-07T11:18:00.000000000", + "2019-01-07T11:18:20.000000000", + "2019-01-07T11:19:27.000000000", + "2019-01-07T11:20:11.000000000", + "2019-01-07T11:20:18.000000000", + "2019-01-07T11:22:19.000000000", + "2019-01-07T11:22:24.000000000", + "2019-01-07T11:22:46.000000000", + "2019-01-07T11:23:28.000000000", + "2019-01-07T11:23:30.000000000", + "2019-01-07T11:25:02.000000000", + "2019-01-07T11:25:36.000000000", + "2019-01-07T11:26:23.000000000", + "2019-01-07T11:27:52.000000000", + "2019-01-07T11:28:15.000000000", + "2019-01-07T11:30:02.000000000", + "2019-01-07T11:30:06.000000000", + "2019-01-07T11:30:28.000000000", + "2019-01-07T11:30:45.000000000", + "2019-01-07T11:30:55.000000000", + "2019-01-07T11:32:28.000000000", + "2019-01-07T11:32:45.000000000", + "2019-01-07T11:33:31.000000000", + "2019-01-07T11:36:10.000000000", + "2019-01-07T11:36:16.000000000", + "2019-01-07T11:37:20.000000000", + "2019-01-07T11:38:17.000000000", + "2019-01-07T11:40:25.000000000", + "2019-01-07T11:40:42.000000000", + "2019-01-07T11:43:30.000000000", + "2019-01-07T11:43:51.000000000", + "2019-01-07T11:45:09.000000000", + "2019-01-07T11:45:58.000000000", + "2019-01-07T11:46:13.000000000", + "2019-01-07T11:46:58.000000000", + "2019-01-07T11:47:05.000000000", + "2019-01-07T11:47:59.000000000", + "2019-01-07T11:48:13.000000000", + "2019-01-07T11:48:19.000000000", + "2019-01-07T11:49:55.000000000", + "2019-01-07T11:51:45.000000000", + "2019-01-07T11:52:39.000000000", + "2019-01-07T11:53:10.000000000", + "2019-01-07T11:53:20.000000000", + "2019-01-07T11:54:12.000000000", + "2019-01-07T11:55:35.000000000", + "2019-01-07T11:56:47.000000000", + "2019-01-07T11:57:09.000000000", + "2019-01-07T11:57:44.000000000", + "2019-01-07T11:58:36.000000000", + "2019-01-07T11:59:21.000000000", + "2019-01-07T12:02:52.000000000", + "2019-01-07T12:03:19.000000000", + "2019-01-07T12:04:02.000000000", + "2019-01-07T12:04:20.000000000", + "2019-01-07T12:04:34.000000000", + "2019-01-07T12:06:42.000000000", + "2019-01-07T12:07:19.000000000", + "2019-01-07T12:08:44.000000000", + "2019-01-07T12:09:18.000000000", + "2019-01-07T12:09:21.000000000", + "2019-01-07T12:09:39.000000000", + "2019-01-07T12:11:29.000000000", + "2019-01-07T12:12:21.000000000", + "2019-01-07T12:13:07.000000000", + "2019-01-07T12:13:30.000000000", + "2019-01-07T12:13:33.000000000", + "2019-01-07T12:14:13.000000000", + "2019-01-07T12:15:12.000000000", + "2019-01-07T12:16:37.000000000", + "2019-01-07T12:16:49.000000000", + "2019-01-07T12:18:00.000000000", + "2019-01-07T12:19:40.000000000", + "2019-01-07T12:20:23.000000000", + "2019-01-07T12:21:48.000000000", + "2019-01-07T12:22:11.000000000", + "2019-01-07T12:24:40.000000000", + "2019-01-07T12:25:00.000000000", + "2019-01-07T12:26:26.000000000", + "2019-01-07T12:26:59.000000000", + "2019-01-07T12:28:26.000000000", + "2019-01-07T12:28:50.000000000", + "2019-01-07T12:28:52.000000000", + "2019-01-07T12:29:23.000000000", + "2019-01-07T12:29:33.000000000", + "2019-01-07T12:30:17.000000000", + "2019-01-07T12:31:21.000000000", + "2019-01-07T12:32:40.000000000", + "2019-01-07T12:34:21.000000000", + "2019-01-07T12:34:38.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:37:16.000000000", + "2019-01-07T12:37:20.000000000", + "2019-01-07T12:37:23.000000000", + "2019-01-07T12:38:07.000000000", + "2019-01-07T12:39:48.000000000", + "2019-01-07T12:40:26.000000000", + "2019-01-07T12:41:30.000000000", + "2019-01-07T12:41:39.000000000", + "2019-01-07T12:41:43.000000000", + "2019-01-07T12:41:53.000000000", + "2019-01-07T12:43:40.000000000", + "2019-01-07T12:46:37.000000000", + "2019-01-07T12:48:30.000000000", + "2019-01-07T12:49:43.000000000", + "2019-01-07T12:51:14.000000000", + "2019-01-07T12:53:05.000000000", + "2019-01-07T12:53:14.000000000", + "2019-01-07T12:53:21.000000000", + "2019-01-07T12:53:37.000000000", + "2019-01-07T12:54:18.000000000", + "2019-01-07T12:54:56.000000000", + "2019-01-07T12:55:43.000000000", + "2019-01-07T12:56:47.000000000", + "2019-01-07T12:57:02.000000000", + "2019-01-07T12:57:17.000000000", + "2019-01-07T12:57:29.000000000", + "2019-01-07T12:57:36.000000000", + "2019-01-07T12:57:49.000000000", + "2019-01-07T12:58:38.000000000", + "2019-01-07T12:58:54.000000000", + "2019-01-07T13:00:51.000000000", + "2019-01-07T13:04:20.000000000", + "2019-01-07T13:05:15.000000000", + "2019-01-07T13:05:17.000000000", + "2019-01-07T13:05:41.000000000", + "2019-01-07T13:07:49.000000000", + "2019-01-07T13:08:20.000000000", + "2019-01-07T13:10:13.000000000", + "2019-01-07T13:11:02.000000000", + "2019-01-07T13:11:53.000000000", + "2019-01-07T13:14:17.000000000", + "2019-01-07T13:15:10.000000000", + "2019-01-07T13:15:17.000000000", + "2019-01-07T13:17:04.000000000", + "2019-01-07T13:18:12.000000000", + "2019-01-07T13:19:34.000000000", + "2019-01-07T13:20:59.000000000", + "2019-01-07T13:22:38.000000000", + "2019-01-07T13:23:31.000000000", + "2019-01-07T13:25:14.000000000", + "2019-01-07T13:25:58.000000000", + "2019-01-07T13:26:10.000000000", + "2019-01-07T13:26:49.000000000", + "2019-01-07T13:28:35.000000000", + "2019-01-07T13:28:46.000000000", + "2019-01-07T13:28:48.000000000", + "2019-01-07T13:30:18.000000000", + "2019-01-07T13:31:46.000000000", + "2019-01-07T13:32:06.000000000", + "2019-01-07T13:32:10.000000000", + "2019-01-07T13:32:12.000000000", + "2019-01-07T13:32:17.000000000", + "2019-01-07T13:34:46.000000000", + "2019-01-07T13:36:02.000000000", + "2019-01-07T13:36:48.000000000", + "2019-01-07T13:37:05.000000000", + "2019-01-07T13:38:07.000000000", + "2019-01-07T13:38:38.000000000", + "2019-01-07T13:40:21.000000000", + "2019-01-07T13:40:28.000000000", + "2019-01-07T13:42:11.000000000", + "2019-01-07T13:42:59.000000000", + "2019-01-07T13:46:11.000000000", + "2019-01-07T13:47:46.000000000", + "2019-01-07T13:47:49.000000000", + "2019-01-07T13:48:38.000000000", + "2019-01-07T13:49:23.000000000", + "2019-01-07T13:50:32.000000000", + "2019-01-07T13:50:36.000000000", + "2019-01-07T13:53:32.000000000", + "2019-01-07T13:55:19.000000000", + "2019-01-07T13:58:09.000000000", + "2019-01-07T14:03:02.000000000", + "2019-01-07T14:04:28.000000000", + "2019-01-07T14:05:13.000000000", + "2019-01-07T14:07:51.000000000", + "2019-01-07T14:10:12.000000000", + "2019-01-07T14:14:28.000000000", + "2019-01-07T14:16:06.000000000", + "2019-01-07T14:17:54.000000000", + "2019-01-07T14:18:35.000000000", + "2019-01-07T14:19:19.000000000", + "2019-01-07T14:20:22.000000000", + "2019-01-07T14:20:31.000000000", + "2019-01-07T14:21:09.000000000", + "2019-01-07T14:21:41.000000000", + "2019-01-07T14:22:49.000000000", + "2019-01-07T14:22:55.000000000", + "2019-01-07T14:23:06.000000000", + "2019-01-07T14:23:50.000000000", + "2019-01-07T14:25:47.000000000", + "2019-01-07T14:26:25.000000000", + "2019-01-07T14:26:31.000000000", + "2019-01-07T14:28:13.000000000", + "2019-01-07T14:29:32.000000000", + "2019-01-07T14:29:59.000000000", + "2019-01-07T14:30:03.000000000", + "2019-01-07T14:30:52.000000000", + "2019-01-07T14:31:01.000000000", + "2019-01-07T14:31:52.000000000", + "2019-01-07T14:32:53.000000000", + "2019-01-07T14:35:39.000000000", + "2019-01-07T14:36:39.000000000", + "2019-01-07T14:37:06.000000000", + "2019-01-07T14:38:05.000000000", + "2019-01-07T14:39:51.000000000", + "2019-01-07T14:40:37.000000000", + "2019-01-07T14:41:41.000000000", + "2019-01-07T14:43:55.000000000", + "2019-01-07T14:45:19.000000000", + "2019-01-07T14:45:42.000000000", + "2019-01-07T14:46:40.000000000", + "2019-01-07T14:51:08.000000000", + "2019-01-07T14:52:27.000000000", + "2019-01-07T14:52:46.000000000", + "2019-01-07T14:54:51.000000000", + "2019-01-07T14:56:59.000000000", + "2019-01-07T14:57:06.000000000", + "2019-01-07T14:59:46.000000000", + "2019-01-07T15:02:39.000000000", + "2019-01-07T15:02:40.000000000", + "2019-01-07T15:03:24.000000000", + "2019-01-07T15:06:10.000000000", + "2019-01-07T15:07:31.000000000", + "2019-01-07T15:07:47.000000000", + "2019-01-07T15:08:46.000000000", + "2019-01-07T15:08:51.000000000", + "2019-01-07T15:09:09.000000000", + "2019-01-07T15:10:13.000000000", + "2019-01-07T15:10:20.000000000", + "2019-01-07T15:10:47.000000000", + "2019-01-07T15:12:36.000000000", + "2019-01-07T15:12:54.000000000", + "2019-01-07T15:13:44.000000000", + "2019-01-07T15:13:50.000000000", + "2019-01-07T15:16:59.000000000", + "2019-01-07T15:17:20.000000000", + "2019-01-07T15:17:33.000000000", + "2019-01-07T15:17:53.000000000", + "2019-01-07T15:18:33.000000000", + "2019-01-07T15:18:47.000000000", + "2019-01-07T15:19:37.000000000", + "2019-01-07T15:19:56.000000000", + "2019-01-07T15:20:14.000000000", + "2019-01-07T15:20:47.000000000", + "2019-01-07T15:21:32.000000000", + "2019-01-07T15:22:29.000000000", + "2019-01-07T15:22:31.000000000", + "2019-01-07T15:23:04.000000000", + "2019-01-07T15:23:06.000000000", + "2019-01-07T15:23:10.000000000", + "2019-01-07T15:23:38.000000000", + "2019-01-07T15:24:16.000000000", + "2019-01-07T15:25:52.000000000", + "2019-01-07T15:26:26.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:18.000000000", + "2019-01-07T15:27:29.000000000", + "2019-01-07T15:28:42.000000000", + "2019-01-07T15:28:52.000000000", + "2019-01-07T15:29:37.000000000", + "2019-01-07T15:29:42.000000000", + "2019-01-07T15:30:09.000000000", + "2019-01-07T15:30:54.000000000", + "2019-01-07T15:32:15.000000000", + "2019-01-07T15:32:21.000000000", + "2019-01-07T15:32:24.000000000", + "2019-01-07T15:32:48.000000000", + "2019-01-07T15:33:31.000000000", + "2019-01-07T15:34:32.000000000", + "2019-01-07T15:34:36.000000000", + "2019-01-07T15:34:50.000000000", + "2019-01-07T15:35:15.000000000", + "2019-01-07T15:35:46.000000000", + "2019-01-07T15:36:18.000000000", + "2019-01-07T15:38:40.000000000", + "2019-01-07T15:39:20.000000000", + "2019-01-07T15:40:42.000000000", + "2019-01-07T15:42:50.000000000", + "2019-01-07T15:43:02.000000000", + "2019-01-07T15:43:58.000000000", + "2019-01-07T15:45:34.000000000", + "2019-01-07T15:48:03.000000000", + "2019-01-07T15:49:01.000000000", + "2019-01-07T15:50:21.000000000", + "2019-01-07T15:51:06.000000000", + "2019-01-07T15:52:46.000000000", + "2019-01-07T15:52:56.000000000", + "2019-01-07T15:54:29.000000000", + "2019-01-07T15:54:44.000000000", + "2019-01-07T15:56:34.000000000", + "2019-01-07T15:56:40.000000000", + "2019-01-07T15:59:16.000000000", + "2019-01-07T15:59:59.000000000", + "2019-01-07T16:01:15.000000000", + "2019-01-07T16:02:34.000000000", + "2019-01-07T16:03:19.000000000", + "2019-01-07T16:03:56.000000000", + "2019-01-07T16:04:48.000000000", + "2019-01-07T16:06:47.000000000", + "2019-01-07T16:07:23.000000000", + "2019-01-07T16:09:10.000000000", + "2019-01-07T16:10:30.000000000", + "2019-01-07T16:10:45.000000000", + "2019-01-07T16:10:52.000000000", + "2019-01-07T16:10:58.000000000", + "2019-01-07T16:11:16.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:58.000000000", + "2019-01-07T16:12:14.000000000", + "2019-01-07T16:13:08.000000000", + "2019-01-07T16:14:47.000000000", + "2019-01-07T16:15:50.000000000", + "2019-01-07T16:15:55.000000000", + "2019-01-07T16:17:00.000000000", + "2019-01-07T16:17:27.000000000", + "2019-01-07T16:17:41.000000000", + "2019-01-07T16:17:46.000000000", + "2019-01-07T16:18:09.000000000", + "2019-01-07T16:18:42.000000000", + "2019-01-07T16:19:22.000000000", + "2019-01-07T16:20:53.000000000", + "2019-01-07T16:21:32.000000000", + "2019-01-07T16:26:22.000000000", + "2019-01-07T16:26:40.000000000", + "2019-01-07T16:27:28.000000000", + "2019-01-07T16:27:32.000000000", + "2019-01-07T16:29:07.000000000", + "2019-01-07T16:29:40.000000000", + "2019-01-07T16:29:56.000000000", + "2019-01-07T16:31:08.000000000", + "2019-01-07T16:31:10.000000000", + "2019-01-07T16:31:24.000000000", + "2019-01-07T16:31:55.000000000", + "2019-01-07T16:32:27.000000000", + "2019-01-07T16:33:15.000000000", + "2019-01-07T16:34:54.000000000", + "2019-01-07T16:35:06.000000000", + "2019-01-07T16:35:13.000000000", + "2019-01-07T16:36:21.000000000", + "2019-01-07T16:40:15.000000000", + "2019-01-07T16:40:27.000000000", + "2019-01-07T16:40:50.000000000", + "2019-01-07T16:42:41.000000000", + "2019-01-07T16:43:06.000000000", + "2019-01-07T16:44:00.000000000", + "2019-01-07T16:44:05.000000000", + "2019-01-07T16:44:17.000000000", + "2019-01-07T16:45:43.000000000", + "2019-01-07T16:47:00.000000000", + "2019-01-07T16:47:48.000000000", + "2019-01-07T16:47:54.000000000", + "2019-01-07T16:48:14.000000000", + "2019-01-07T16:48:28.000000000", + "2019-01-07T16:48:39.000000000", + "2019-01-07T16:51:00.000000000", + "2019-01-07T16:53:11.000000000", + "2019-01-07T16:53:36.000000000", + "2019-01-07T16:58:40.000000000", + "2019-01-07T16:59:33.000000000", + "2019-01-07T17:00:56.000000000", + "2019-01-07T17:01:11.000000000", + "2019-01-07T17:02:04.000000000", + "2019-01-07T17:02:06.000000000", + "2019-01-07T17:02:12.000000000", + "2019-01-07T17:03:04.000000000", + "2019-01-07T17:03:36.000000000", + "2019-01-07T17:03:40.000000000", + "2019-01-07T17:04:04.000000000", + "2019-01-07T17:05:10.000000000", + "2019-01-07T17:06:20.000000000", + "2019-01-07T17:08:10.000000000", + "2019-01-07T17:10:31.000000000", + "2019-01-07T17:11:38.000000000", + "2019-01-07T17:12:00.000000000", + "2019-01-07T17:12:08.000000000", + "2019-01-07T17:13:10.000000000", + "2019-01-07T17:13:53.000000000", + "2019-01-07T17:14:00.000000000", + "2019-01-07T17:14:19.000000000", + "2019-01-07T17:14:37.000000000", + "2019-01-07T17:15:38.000000000", + "2019-01-07T17:18:17.000000000", + "2019-01-07T17:18:55.000000000", + "2019-01-07T17:19:01.000000000", + "2019-01-07T17:19:48.000000000", + "2019-01-07T17:21:56.000000000", + "2019-01-07T17:22:58.000000000", + "2019-01-07T17:24:43.000000000", + "2019-01-07T17:24:44.000000000", + "2019-01-07T17:26:03.000000000", + "2019-01-07T17:26:33.000000000", + "2019-01-07T17:27:46.000000000", + "2019-01-07T17:28:15.000000000", + "2019-01-07T17:29:33.000000000", + "2019-01-07T17:29:57.000000000", + "2019-01-07T17:30:37.000000000", + "2019-01-07T17:30:58.000000000", + "2019-01-07T17:33:50.000000000", + "2019-01-07T17:36:31.000000000", + "2019-01-07T17:40:25.000000000", + "2019-01-07T17:40:56.000000000", + "2019-01-07T17:40:57.000000000", + "2019-01-07T17:41:05.000000000", + "2019-01-07T17:41:40.000000000", + "2019-01-07T17:41:49.000000000", + "2019-01-07T17:42:45.000000000", + "2019-01-07T17:44:43.000000000", + "2019-01-07T17:44:48.000000000", + "2019-01-07T17:45:13.000000000", + "2019-01-07T17:46:37.000000000", + "2019-01-07T17:47:49.000000000", + "2019-01-07T17:47:56.000000000", + "2019-01-07T17:48:21.000000000", + "2019-01-07T17:48:56.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:55:15.000000000", + "2019-01-07T17:58:33.000000000", + "2019-01-07T18:00:20.000000000", + "2019-01-07T18:01:10.000000000", + "2019-01-07T18:01:29.000000000", + "2019-01-07T18:01:43.000000000", + "2019-01-07T18:02:13.000000000", + "2019-01-07T18:03:47.000000000", + "2019-01-07T18:07:28.000000000", + "2019-01-07T18:09:09.000000000", + "2019-01-07T18:10:29.000000000", + "2019-01-07T18:11:04.000000000", + "2019-01-07T18:13:44.000000000", + "2019-01-07T18:14:41.000000000", + "2019-01-07T18:14:59.000000000", + "2019-01-07T18:15:36.000000000", + "2019-01-07T18:16:30.000000000", + "2019-01-07T18:16:44.000000000", + "2019-01-07T18:16:46.000000000", + "2019-01-07T18:18:01.000000000", + "2019-01-07T18:19:02.000000000", + "2019-01-07T18:19:05.000000000", + "2019-01-07T18:20:15.000000000", + "2019-01-07T18:20:24.000000000", + "2019-01-07T18:21:23.000000000", + "2019-01-07T18:21:48.000000000", + "2019-01-07T18:22:13.000000000", + "2019-01-07T18:22:19.000000000", + "2019-01-07T18:22:38.000000000", + "2019-01-07T18:23:29.000000000", + "2019-01-07T18:25:47.000000000", + "2019-01-07T18:26:12.000000000", + "2019-01-07T18:26:52.000000000", + "2019-01-07T18:27:09.000000000", + "2019-01-07T18:27:25.000000000", + "2019-01-07T18:28:31.000000000", + "2019-01-07T18:29:57.000000000", + "2019-01-07T18:30:04.000000000", + "2019-01-07T18:32:16.000000000", + "2019-01-07T18:32:53.000000000", + "2019-01-07T18:33:48.000000000", + "2019-01-07T18:33:58.000000000", + "2019-01-07T18:35:25.000000000", + "2019-01-07T18:36:00.000000000", + "2019-01-07T18:36:08.000000000", + "2019-01-07T18:37:32.000000000", + "2019-01-07T18:38:49.000000000", + "2019-01-07T18:42:37.000000000", + "2019-01-07T18:44:55.000000000", + "2019-01-07T18:44:56.000000000", + "2019-01-07T18:45:08.000000000", + "2019-01-07T18:46:10.000000000", + "2019-01-07T18:49:40.000000000", + "2019-01-07T18:51:24.000000000", + "2019-01-07T18:51:53.000000000", + "2019-01-07T18:52:01.000000000", + "2019-01-07T18:52:35.000000000", + "2019-01-07T18:53:48.000000000", + "2019-01-07T18:54:13.000000000", + "2019-01-07T18:56:21.000000000", + "2019-01-07T18:56:58.000000000", + "2019-01-07T18:57:42.000000000", + "2019-01-07T18:58:49.000000000", + "2019-01-07T19:00:22.000000000", + "2019-01-07T19:02:06.000000000", + "2019-01-07T19:02:13.000000000", + "2019-01-07T19:02:15.000000000", + "2019-01-07T19:03:39.000000000", + "2019-01-07T19:03:44.000000000", + "2019-01-07T19:06:11.000000000", + "2019-01-07T19:06:22.000000000", + "2019-01-07T19:08:05.000000000", + "2019-01-07T19:08:45.000000000", + "2019-01-07T19:11:28.000000000", + "2019-01-07T19:12:51.000000000", + "2019-01-07T19:13:41.000000000", + "2019-01-07T19:13:44.000000000", + "2019-01-07T19:14:56.000000000", + "2019-01-07T19:15:14.000000000", + "2019-01-07T19:16:24.000000000", + "2019-01-07T19:16:34.000000000", + "2019-01-07T19:17:20.000000000", + "2019-01-07T19:18:21.000000000", + "2019-01-07T19:19:07.000000000", + "2019-01-07T19:19:33.000000000", + "2019-01-07T19:20:53.000000000", + "2019-01-07T19:21:16.000000000", + "2019-01-07T19:22:43.000000000", + "2019-01-07T19:22:58.000000000", + "2019-01-07T19:26:05.000000000", + "2019-01-07T19:26:07.000000000", + "2019-01-07T19:26:13.000000000", + "2019-01-07T19:27:23.000000000", + "2019-01-07T19:28:01.000000000", + "2019-01-07T19:29:41.000000000", + "2019-01-07T19:30:16.000000000", + "2019-01-07T19:30:22.000000000", + "2019-01-07T19:30:25.000000000", + "2019-01-07T19:30:47.000000000", + "2019-01-07T19:32:59.000000000", + "2019-01-07T19:33:36.000000000", + "2019-01-07T19:34:10.000000000", + "2019-01-07T19:34:52.000000000", + "2019-01-07T19:35:23.000000000", + "2019-01-07T19:38:16.000000000", + "2019-01-07T19:38:18.000000000", + "2019-01-07T19:38:47.000000000", + "2019-01-07T19:39:45.000000000", + "2019-01-07T19:39:50.000000000", + "2019-01-07T19:40:48.000000000", + "2019-01-07T19:41:16.000000000", + "2019-01-07T19:42:24.000000000", + "2019-01-07T19:43:09.000000000", + "2019-01-07T19:44:07.000000000", + "2019-01-07T19:44:22.000000000", + "2019-01-07T19:44:42.000000000", + "2019-01-07T19:47:22.000000000", + "2019-01-07T19:48:07.000000000", + "2019-01-07T19:48:23.000000000", + "2019-01-07T19:49:53.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:52:28.000000000", + "2019-01-07T19:52:45.000000000", + "2019-01-07T19:52:52.000000000", + "2019-01-07T19:56:35.000000000", + "2019-01-07T19:59:05.000000000", + "2019-01-07T20:00:25.000000000", + "2019-01-07T20:01:14.000000000", + "2019-01-07T20:01:20.000000000", + "2019-01-07T20:01:46.000000000", + "2019-01-07T20:01:47.000000000", + "2019-01-07T20:04:02.000000000", + "2019-01-07T20:04:14.000000000", + "2019-01-07T20:07:00.000000000", + "2019-01-07T20:08:32.000000000", + "2019-01-07T20:11:29.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:13:41.000000000", + "2019-01-07T20:16:22.000000000", + "2019-01-07T20:18:24.000000000", + "2019-01-07T20:18:39.000000000", + "2019-01-07T20:19:22.000000000", + "2019-01-07T20:20:35.000000000", + "2019-01-07T20:21:25.000000000", + "2019-01-07T20:22:52.000000000", + "2019-01-07T20:23:41.000000000", + "2019-01-07T20:32:51.000000000", + "2019-01-07T20:33:56.000000000", + "2019-01-07T20:34:52.000000000", + "2019-01-07T20:35:25.000000000", + "2019-01-07T20:36:27.000000000", + "2019-01-07T20:39:11.000000000", + "2019-01-07T20:42:25.000000000", + "2019-01-07T20:43:18.000000000", + "2019-01-07T20:43:28.000000000", + "2019-01-07T20:45:30.000000000", + "2019-01-07T20:45:45.000000000", + "2019-01-07T20:46:10.000000000", + "2019-01-07T20:47:16.000000000", + "2019-01-07T20:47:20.000000000", + "2019-01-07T20:47:26.000000000", + "2019-01-07T20:48:38.000000000", + "2019-01-07T20:49:33.000000000", + "2019-01-07T20:49:43.000000000", + "2019-01-07T20:51:31.000000000", + "2019-01-07T20:52:22.000000000", + "2019-01-07T20:53:33.000000000", + "2019-01-07T20:54:04.000000000", + "2019-01-07T20:55:24.000000000", + "2019-01-07T20:56:08.000000000", + "2019-01-07T20:57:22.000000000", + "2019-01-07T20:57:30.000000000", + "2019-01-07T20:58:00.000000000", + "2019-01-07T20:59:33.000000000", + "2019-01-07T21:01:06.000000000", + "2019-01-07T21:01:19.000000000", + "2019-01-07T21:01:43.000000000", + "2019-01-07T21:03:37.000000000", + "2019-01-07T21:03:45.000000000", + "2019-01-07T21:04:37.000000000", + "2019-01-07T21:06:54.000000000", + "2019-01-07T21:07:33.000000000", + "2019-01-07T21:07:41.000000000", + "2019-01-07T21:09:00.000000000", + "2019-01-07T21:11:30.000000000", + "2019-01-07T21:12:41.000000000", + "2019-01-07T21:14:34.000000000", + "2019-01-07T21:14:42.000000000", + "2019-01-07T21:15:47.000000000", + "2019-01-07T21:15:49.000000000", + "2019-01-07T21:16:53.000000000", + "2019-01-07T21:18:39.000000000", + "2019-01-07T21:19:04.000000000", + "2019-01-07T21:20:05.000000000", + "2019-01-07T21:20:29.000000000", + "2019-01-07T21:20:50.000000000", + "2019-01-07T21:21:28.000000000", + "2019-01-07T21:23:26.000000000", + "2019-01-07T21:23:31.000000000", + "2019-01-07T21:24:18.000000000", + "2019-01-07T21:25:49.000000000", + "2019-01-07T21:26:42.000000000", + "2019-01-07T21:27:30.000000000", + "2019-01-07T21:27:42.000000000", + "2019-01-07T21:28:10.000000000", + "2019-01-07T21:30:39.000000000", + "2019-01-07T21:32:14.000000000", + "2019-01-07T21:32:27.000000000", + "2019-01-07T21:35:11.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:30.000000000", + "2019-01-07T21:37:19.000000000", + "2019-01-07T21:38:08.000000000", + "2019-01-07T21:38:11.000000000", + "2019-01-07T21:38:33.000000000", + "2019-01-07T21:39:03.000000000", + "2019-01-07T21:40:51.000000000", + "2019-01-07T21:41:21.000000000", + "2019-01-07T21:42:55.000000000", + "2019-01-07T21:43:30.000000000", + "2019-01-07T21:43:59.000000000", + "2019-01-07T21:44:51.000000000", + "2019-01-07T21:45:42.000000000", + "2019-01-07T21:48:22.000000000", + "2019-01-07T21:48:57.000000000", + "2019-01-07T21:49:42.000000000", + "2019-01-07T21:50:48.000000000", + "2019-01-07T21:51:14.000000000", + "2019-01-07T21:51:41.000000000", + "2019-01-07T21:51:46.000000000", + "2019-01-07T21:52:38.000000000", + "2019-01-07T21:53:55.000000000", + "2019-01-07T21:53:57.000000000", + "2019-01-07T21:54:15.000000000", + "2019-01-07T21:56:30.000000000", + "2019-01-07T21:57:11.000000000", + "2019-01-07T21:57:15.000000000", + "2019-01-07T21:57:41.000000000", + "2019-01-07T21:59:05.000000000", + "2019-01-07T21:59:13.000000000", + "2019-01-07T22:01:26.000000000", + "2019-01-07T22:05:14.000000000", + "2019-01-07T22:05:55.000000000", + "2019-01-07T22:06:48.000000000", + "2019-01-07T22:07:49.000000000", + "2019-01-07T22:08:37.000000000", + "2019-01-07T22:12:30.000000000", + "2019-01-07T22:12:58.000000000", + "2019-01-07T22:13:10.000000000", + "2019-01-07T22:14:17.000000000", + "2019-01-07T22:14:32.000000000", + "2019-01-07T22:14:58.000000000", + "2019-01-07T22:15:10.000000000", + "2019-01-07T22:15:30.000000000", + "2019-01-07T22:16:40.000000000", + "2019-01-07T22:17:11.000000000", + "2019-01-07T22:18:02.000000000", + "2019-01-07T22:20:17.000000000", + "2019-01-07T22:20:40.000000000", + "2019-01-07T22:21:51.000000000", + "2019-01-07T22:22:10.000000000", + "2019-01-07T22:22:26.000000000", + "2019-01-07T22:24:52.000000000", + "2019-01-07T22:24:59.000000000", + "2019-01-07T22:25:26.000000000", + "2019-01-07T22:26:45.000000000", + "2019-01-07T22:26:58.000000000", + "2019-01-07T22:28:48.000000000", + "2019-01-07T22:30:42.000000000", + "2019-01-07T22:31:17.000000000", + "2019-01-07T22:31:20.000000000", + "2019-01-07T22:31:38.000000000", + "2019-01-07T22:31:46.000000000", + "2019-01-07T22:32:47.000000000", + "2019-01-07T22:33:28.000000000", + "2019-01-07T22:34:16.000000000", + "2019-01-07T22:34:20.000000000", + "2019-01-07T22:34:36.000000000", + "2019-01-07T22:35:41.000000000", + "2019-01-07T22:37:25.000000000", + "2019-01-07T22:37:27.000000000", + "2019-01-07T22:38:05.000000000", + "2019-01-07T22:39:10.000000000", + "2019-01-07T22:39:21.000000000", + "2019-01-07T22:40:05.000000000", + "2019-01-07T22:40:25.000000000", + "2019-01-07T22:40:49.000000000", + "2019-01-07T22:41:31.000000000", + "2019-01-07T22:42:13.000000000", + "2019-01-07T22:42:27.000000000", + "2019-01-07T22:42:40.000000000", + "2019-01-07T22:43:33.000000000", + "2019-01-07T22:44:48.000000000", + "2019-01-07T22:45:51.000000000", + "2019-01-07T22:47:41.000000000", + "2019-01-07T22:47:55.000000000", + "2019-01-07T22:48:03.000000000", + "2019-01-07T22:49:30.000000000", + "2019-01-07T22:51:00.000000000", + "2019-01-07T22:52:44.000000000", + "2019-01-07T22:53:35.000000000", + "2019-01-07T22:53:53.000000000", + "2019-01-07T22:56:35.000000000", + "2019-01-07T22:58:50.000000000", + "2019-01-07T22:59:07.000000000", + "2019-01-07T23:00:06.000000000", + "2019-01-07T23:08:30.000000000", + "2019-01-07T23:09:38.000000000", + "2019-01-07T23:10:21.000000000", + "2019-01-07T23:10:40.000000000", + "2019-01-07T23:11:05.000000000", + "2019-01-07T23:14:01.000000000", + "2019-01-07T23:14:39.000000000", + "2019-01-07T23:14:44.000000000", + "2019-01-07T23:16:26.000000000", + "2019-01-07T23:19:06.000000000", + "2019-01-07T23:19:58.000000000", + "2019-01-07T23:20:46.000000000", + "2019-01-07T23:20:49.000000000", + "2019-01-07T23:21:58.000000000", + "2019-01-07T23:23:04.000000000", + "2019-01-07T23:25:11.000000000", + "2019-01-07T23:26:26.000000000", + "2019-01-07T23:27:14.000000000", + "2019-01-07T23:27:21.000000000", + "2019-01-07T23:28:16.000000000", + "2019-01-07T23:29:24.000000000", + "2019-01-07T23:30:44.000000000", + "2019-01-07T23:32:09.000000000", + "2019-01-07T23:33:08.000000000", + "2019-01-07T23:33:20.000000000", + "2019-01-07T23:34:52.000000000", + "2019-01-07T23:34:56.000000000", + "2019-01-07T23:35:31.000000000", + "2019-01-07T23:35:59.000000000", + "2019-01-07T23:38:21.000000000", + "2019-01-07T23:38:55.000000000", + "2019-01-07T23:42:27.000000000", + "2019-01-07T23:43:23.000000000", + "2019-01-07T23:43:40.000000000", + "2019-01-07T23:45:29.000000000", + "2019-01-07T23:47:01.000000000", + "2019-01-07T23:47:15.000000000", + "2019-01-07T23:47:55.000000000", + "2019-01-07T23:48:12.000000000", + "2019-01-07T23:49:23.000000000", + "2019-01-07T23:49:45.000000000", + "2019-01-07T23:50:07.000000000", + "2019-01-07T23:51:07.000000000", + "2019-01-07T23:51:52.000000000", + "2019-01-07T23:53:18.000000000", + "2019-01-07T23:53:19.000000000", + "2019-01-07T23:53:56.000000000", + "2019-01-07T23:55:56.000000000" + ], + "y": [ + 0.7990210440758806, + 0.8569980264137558, + 0.6399945034429042, + 0.7702939057485441, + 0.5562424122823041, + 0.26514657686152293, + 0.46516574298407487, + 0.6554788886403287, + 0.5566413827604403, + 0.40191813488604616, + 0.9961172380636072, + 0.8285892197260406, + 0.9496703071752914, + 0.6062138512192291, + 0.7233383253433033, + 0.5030030932469644, + 0.5740595352300562, + 0.5580016413824008, + 0.321038454323782, + 0.4916213618752182, + 1.010821025181833, + 0.24769570092661275, + 0.5679226348080344, + 0.6757417787932938, + 0.2917659697942281, + 0.488961490076704, + 0.8184834390176186, + 0.5935759195355749, + 0.7204448847694248, + 0.7751321532757705, + 0.6344328920004575, + 0.5225148400223965, + 0.3576302576219962, + 0.539011104560076, + 0.22311935184977144, + 1.011853652955156, + 0.6537620261761466, + 0.1878916945625314, + 0.515647278847012, + 0.2803313806348108, + 0.2276885308129073, + 0.4376181303366722, + 0.5155253172816578, + 0.7935972824771336, + 0.7979464986527358, + 0.17457546828615378, + 0.6243200913640498, + 0.5494960616096969, + 0.5642769564977074, + 0.13278483992130963, + 0.2681989738476802, + 0.7305804007163162, + 0.5391831576251637, + 0.45657441365575824, + 0.26419534252604704, + 0.5925038122180732, + 1.2117988064170926, + 0.4572472944785199, + 0.7822184819454507, + 0.7378734994696686, + 0.6080466438673784, + 0.6814393393577782, + 0.7002057162867095, + 0.5852172086008316, + 0.257989251489687, + 0.39812240718472136, + 0.6215137143044718, + 0.6168653520290024, + 0.4921664901860096, + 0.5719910020747501, + 0.22380387720137207, + 0.39644430748811305, + 0.671554421160629, + 0.37682207898734404, + 0.5349409298263408, + 0.2369269453186363, + 0.4656392095839881, + 0.6740722184541807, + -0.029099428936122163, + 0.19507532163321195, + 0.3067932444737682, + 0.2906923390859897, + 0.25588904892269027, + 0.16944221187278663, + 0.7146997488029975, + 0.4436485672880528, + 0.7450220835862287, + 0.0773304150064158, + 0.3865032737753753, + 0.24634017284392162, + 0.46642631237231513, + 0.16745450590241978, + 0.20512864764476063, + 0.561410131489533, + 0.541315091074583, + 0.5880682750750745, + 0.22401674384930484, + 0.2553664850087811, + 0.2930254056437732, + 0.6037875495608362, + 0.3519605038630558, + 0.4341958388055146, + 0.5892621790022378, + 0.2722619094735046, + 0.06482681445402683, + 0.42295247194477964, + 0.362214174291404, + 0.12127237858397472, + 0.4095980049142942, + 0.30371435200768615, + 0.11695271775132837, + 0.47677497454096374, + 0.4478304314747319, + 0.6030643445922982, + 0.5090961372140603, + 0.7216126114425754, + 0.3873769711277647, + 0.3741309534083466, + 1.0233571392668377, + 0.38475807664568973, + 0.22569859146219373, + -0.012323861552183457, + 0.36712037558827404, + 0.16799302742441904, + 0.1991961950658945, + 0.16006088149542425, + 0.25149631679619844, + 0.33417988404724575, + 0.3663537101977761, + 0.30295744605820724, + 0.06637858456051982, + 0.25445487010119594, + 0.4606962736888393, + 0.5104170436690677, + 0.4905172073146384, + 0.3136085069663698, + 0.13522521784762948, + 0.13258537007470983, + 0.403755857247498, + 0.5210037870222902, + 0.4057336360886085, + 0.5280699377290519, + 0.7552305986254695, + 0.2637035088822584, + 0.4678933573548648, + 0.36591920899448144, + 0.439664151132994, + 0.49926493572500985, + 0.44333643569134923, + 0.3955047437652718, + 0.47508781930573013, + 0.5316733389490781, + 0.2259121206849169, + 0.7272928302174035, + 0.5322709331289892, + 0.24200418187787348, + 0.3344315128959984, + 0.7593723830936793, + 0.4606960950725565, + 0.5198659777134036, + 0.5112807744044932, + 0.34555035897295927, + 0.594881338024444, + 0.2807779422249309, + 0.6380890466173258, + 1.045234205338935, + 0.5345781226543989, + 0.37728626253609854, + 0.3460326759849712, + 0.6078313002412913, + 0.42901711773363094, + 0.630132622404666, + 0.5025279817432144, + 0.4245827408406864, + 0.05533219222008845, + 0.35914396846728247, + 0.658391215270487, + 0.6455656955992511, + 0.6610184500962708, + 0.22852063851487142, + 0.27660713154916616, + 0.1846463090213986, + 0.4406083655302512, + 0.8512539672820012, + 0.1696627492747929, + 0.6679548335042153, + 0.47668768585761295, + 0.5964953606357075, + 0.3847830837638244, + 0.14600283529327807, + 0.33923621865553544, + 0.6862629779238245, + 0.7803828723162289, + 0.5852731788638745, + 0.5109945260398673, + 0.6696273236055177, + 0.39780452717792664, + 0.47137906409244545, + 0.20457879601261858, + 0.4735594525945849, + 0.5549556167653176, + 0.7476143459337603, + 0.7412905859744875, + 0.38960534590230333, + 0.345250356601177, + 0.2993841152335427, + 0.6642040171750845, + 0.7701274872963599, + 0.3764111851302322, + 0.2992852550072618, + 0.5535651952243934, + 0.45008823968097583, + 0.5095125889118904, + 0.43743449970092474, + 0.3547048024665546, + 0.6913175785519583, + 0.6307860545170932, + 0.20549710223350548, + 0.18123855114186216, + 0.8107030503936419, + 0.6015767928348413, + 0.6166426576781374, + 0.2433692923952444, + 0.7773158103777426, + 0.9944923638759671, + 0.7256390438691417, + 0.860612366042063, + 0.5935197631062274, + 0.6593269854073703, + 0.16306495263801835, + 0.6626189079755175, + 0.7325971816323325, + 0.8456133126649172, + 0.39234719846332167, + 0.5735102655537164, + 0.6675550222349407, + 0.6717211425559448, + 0.42593117349607346, + 0.5953437261732942, + 0.43801703599617575, + 0.9434294966690544, + 0.7732784847295653, + 0.668922646746646, + 0.7823550413053908, + 0.4177310822229666, + 0.757191626600682, + 0.648569155724384, + 0.702994541959098, + 0.3084345915127573, + 0.7398936811492874, + 0.6327199326918429, + 0.5659129994552963, + 0.7140983631149685, + 0.7040197917539082, + 0.6296369810959221, + 0.7227964966908185, + 0.6172675094904272, + 0.7931910425932872, + 0.8695526556127302, + 0.71431800727313, + 0.668609650538851, + 0.7516671165549494, + 0.4866538801161766, + 0.502904233236925, + 0.6652199749059369, + 0.48712291419435366, + 0.844645006986571, + 0.8215542918487541, + 0.5976393938703012, + 0.5092224092405397, + 0.7363991975732649, + 0.8851265942360238, + 0.7341684002959812, + 0.6989841287033205, + 1.1998529010212475, + 0.5767796236718868, + 0.9666444053174709, + 0.45331749080375494, + 0.9170278994758551, + 0.6716380873550605, + 0.5096250467815735, + 0.8711963766216099, + 0.6758063850252941, + 0.5194251207431084, + 0.8034622856483495, + 0.8080287072595341, + 0.7816929340813445, + 0.9860613456003723, + 1.0234611328953978, + 1.0856917371925459, + 0.6702136241519797, + 0.6267523814568106, + 0.6944359448581153, + 0.4773966771228291, + 1.0317988998242833, + 0.5558310107337698, + 1.0834508654643489, + 0.5991591720531548, + 0.9451917586878856, + 0.9734407734629197, + 1.1286925086917894, + 0.8945718952057015, + 1.1273738583425357, + 1.0199834889653236, + 1.1572971157908736, + 1.030720964216858, + 0.971645248082485, + 0.6567753153017131, + 0.8978801799792604, + 0.8616186638591012, + 0.8210756407224304, + 0.8708405287570373, + 1.017697886220619, + 0.9135536065217176, + 0.9749534011957591, + 1.0269089373889861, + 0.8124808389620701, + 1.1848729881726152, + 1.3082624329244377, + 1.1610179769225906, + 0.9630618003124916, + 0.9587582595791326, + 1.1201090274096943, + 1.294759331138105, + 1.0765170894635554, + 1.1752040159127946, + 1.3391485304767017, + 1.1700146227656405, + 0.9963993916339839, + 1.0189850024124085, + 1.0784442902703657, + 0.9260489422743585, + 0.9465565801725768, + 1.0812613751203166, + 0.7733339403306263, + 1.2815638126335043, + 1.1794604491151564, + 1.006453588231569, + 0.9264566050259997, + 1.211920822598131, + 1.459802785287197, + 1.424817573724425, + 1.2701823557237817, + 0.959174305885593, + 1.1962127017141364, + 1.296746502703353, + 1.5021324898910438, + 0.8477668550087725, + 1.0164639105254882, + 1.3812033853531276, + 1.316177962649739, + 1.423295328171963, + 1.4842080104323627, + 1.2379659396299867, + 1.3905190878423497, + 1.3496236418881813, + 1.1825536632827556, + 1.3494438771414685, + 1.180976162581911, + 1.2148038367837453, + 1.4727281910771128, + 1.595573351059482, + 1.6049891815607578, + 1.08831030478933, + 1.0921078761096, + 1.4207746460699089, + 1.519173929854514, + 1.3237376845044164, + 1.738294115966093, + 1.581538334273638, + 0.9555043007488482, + 1.8549197220890226, + 1.7947444557490573, + 1.5326356324141797, + 1.353452224850991, + 1.6217015615396595, + 1.3363798219272578, + 1.7092252291472125, + 1.2965845917860748, + 1.408571380658793, + 1.6692515633016158, + 1.2734994554544588, + 1.250977823224635, + 1.3631706041716294, + 1.410992042894201, + 1.2305702829657619, + 1.6326071468725318, + 1.637523244376913, + 1.4187172370703973, + 1.4068355348043875, + 1.710490357623784, + 1.8045018926614884, + 2.0975609525027954, + 1.415951680585698, + 1.1335870715138017, + 1.3840470347755982, + 1.6438760205267855, + 1.3647636124717295, + 1.4468485337536843, + 1.6520308479146535, + 1.3537869699990306, + 1.7182295108698822, + 1.4666290458783706, + 1.1547030079370109, + 1.952004275772163, + 1.7572898703600814, + 1.6295036692537734, + 1.8185212507616477, + 1.5779299203645145, + 2.419173834570142, + 1.6352196243574644, + 1.6352647640672748, + 1.9334019662501696, + 1.5878548481268226, + 1.7633367883588447, + 1.752475322668987, + 2.2649080006852755, + 1.3974555199291376, + 2.0819727066542013, + 2.2486171446113765, + 1.7691464140136424, + 1.9468214475508892, + 1.755753270227392, + 2.025855295722498, + 2.3339230365604045, + 1.9377602700763004, + 1.9249298555764136, + 1.6936506378950202, + 1.6352319255885372, + 1.78338611599832, + 2.0412120847366064, + 1.870036911950258, + 1.96794661205645, + 2.08970980629103, + 1.8833475063334217, + 1.575290931030875, + 2.1242903416395915, + 1.7758309836177, + 1.9107975593073687, + 2.2332320836030335, + 2.109550200772148, + 2.3224783432956744, + 2.127385695388605, + 1.9501868939881908, + 1.8956184199893469, + 1.859604774316559, + 2.045771978951862, + 2.078561152502613, + 2.0700498034333714, + 1.9787672953990574, + 2.155375438490941, + 2.027722822858551, + 1.9971053591601955, + 2.0693060303539523, + 2.0352068861100894, + 2.171332455081275, + 2.092169991483788, + 2.4033105178167053, + 2.2362158583063074, + 2.17150022181613, + 2.365928104536892, + 2.4315720298446846, + 2.120850186748068, + 2.476190929638366, + 2.2283484255808794, + 2.2047644847392522, + 1.9564670171842902, + 2.1480186790295885, + 2.1034039055647806, + 2.1761214131319657, + 2.0880537868959244, + 2.6387367898461216, + 2.3884814405016193, + 2.4352270985729008, + 2.5564567634434585, + 2.0943336476399432, + 2.14788962388898, + 2.292847177843701, + 2.633673570672091, + 2.274670531719096, + 2.4877517920342465, + 2.4184498386789626, + 2.3467579074207947, + 2.413454255683733, + 2.5406616985848993, + 2.1008647995671175, + 2.194868619987646, + 2.0011668254466297, + 2.216109151365937, + 2.599931088812193, + 2.298803244445945, + 2.3636490557063747, + 2.58676266193464, + 2.159074009943628, + 2.5847985878386823, + 2.656464857358795, + 2.4210313504916408, + 2.4436026314027, + 2.7261781837418457, + 2.5554615213947955, + 2.4338683391470273, + 2.5362851272924107, + 2.799473162804442, + 2.842411621461889, + 2.497691111444924, + 2.6906462576130767, + 2.5037518530439327, + 2.3956538468171917, + 2.508876759765435, + 2.363340440465415, + 2.494164343268657, + 3.1217692091089435, + 3.103618106951573, + 2.8088771643769723, + 2.391955100404732, + 2.2917366082752277, + 2.6521381780751967, + 2.27710036575489, + 2.8003001708548023, + 2.6430552909268754, + 2.543831541701294, + 2.611976812880025, + 2.6653226308433635, + 2.8623938572990433, + 2.76802242094468, + 2.7235754970526043, + 2.780058637140204, + 2.53852365569146, + 2.953530731962516, + 2.5485142358114428, + 3.0543873995973487, + 2.4139279593546306, + 2.754717536458081, + 2.9462673500838727, + 2.8534418610592587, + 2.6366679165008318, + 2.75690583941843, + 2.8963061667568124, + 2.7682879064833004, + 2.715156036889442, + 2.7500533018625966, + 2.464254831169235, + 2.6696521648887863, + 2.882833284417435, + 2.9504906555599444, + 3.173932411973661, + 2.7210640613370565, + 2.9471470728761213, + 3.0679488748175996, + 3.116231256429375, + 2.695527036917764, + 2.7804171734801653, + 2.8951591257043403, + 3.071182066133164, + 3.0144936368053052, + 3.0396686050354838, + 3.137038564890602, + 3.216180873106764, + 3.2019351293849194, + 2.6714099073827153, + 3.044556896039876, + 3.273182063140927, + 2.4564259737221334, + 2.975552568047056, + 3.418016778749618, + 2.9306318399800393, + 3.3075037627433916, + 3.110938125226886, + 2.944125111744397, + 3.2581163129915107, + 2.9734253524410623, + 3.103286381445967, + 3.157298460386774, + 3.421990503383886, + 3.0690472048072857, + 2.890356910023, + 3.252124781597266, + 2.810886054591195, + 3.224417776993359, + 2.9188033839085312, + 3.030868152065079, + 2.986478605946721, + 3.022355623746289, + 3.5409881384795288, + 3.4886104695483517, + 3.3302319514420353, + 3.27610471457425, + 3.2896880445740413, + 2.8668175779054876, + 3.3760100042175525, + 3.4410892520005154, + 3.4916594430170917, + 3.0059206985136893, + 2.910034148957034, + 3.3083432257678913, + 3.4922736653336943, + 3.747639205899384, + 3.481842905798133, + 3.393492688242309, + 3.515773077815661, + 3.4106082486036913, + 3.135305543104185, + 3.362123742865279, + 3.3240316349724415, + 2.9663307347225967, + 3.3119981803196645, + 3.458242725908916, + 3.392149103637325, + 3.611454563495009, + 3.4425382957566515, + 3.4613596866434944, + 3.472576781365894, + 3.5654070340478192, + 3.4837398976353544, + 3.41195864837159, + 3.3816586171737857, + 3.6927405685356662, + 3.2522060071573495, + 3.2947271866919547, + 3.802831548244457, + 3.6521051152851745, + 3.510831692625129, + 3.405935972278012, + 3.458001705373045, + 3.5958295926844084, + 3.5996028915089373, + 3.3094799412638753, + 3.2490916144777393, + 3.309284140876015, + 3.671966135644793, + 3.5959134898304814, + 3.596213448911716, + 3.5782446667781604, + 3.519024649752191, + 3.6312571053949805, + 3.6679966172150973, + 3.35721685186388, + 3.5827235537330844, + 3.393344398634749, + 3.5470577642049683, + 3.6913078798312235, + 3.6981776294582267, + 3.855043847614318, + 3.6644364032423242, + 3.4157072671984374, + 3.7410131186375333, + 3.718705226319403, + 3.7553411298583503, + 3.8449861542212633, + 3.806036237623339, + 3.5337102971958347, + 3.766727177559453, + 3.711002697537508, + 3.6172104619391523, + 3.622539009509346, + 3.567884703063841, + 3.8042307901149477, + 3.8263388440709845, + 3.7378053805975626, + 3.4904815893627545, + 3.811835459114209, + 3.5604428860643793, + 3.800898139284611, + 3.527608009284466, + 3.623381172413497, + 3.9299474647077064, + 3.8958965850559784, + 3.9867511696202977, + 3.714412408422712, + 3.793792459757947, + 3.963208155878902, + 3.836203277577842, + 3.6129226374276873, + 3.8367669961529747, + 3.876543466575649, + 3.4233842534610472, + 3.828709077605194, + 3.639569294699701, + 4.2084821919903375, + 3.4691846724040034, + 4.268248914058551, + 3.8884281122210775, + 3.9622669896119804, + 3.9604328714862276, + 3.921550979544929, + 3.884631631626226, + 3.5464728267166516, + 4.064782625288812, + 3.771429921366393, + 3.9254893389655927, + 4.259201539781581, + 4.1235099143850995, + 3.901092211968333, + 3.8904071740691384, + 4.169404172048845, + 4.204100862650916, + 4.000539985804583, + 4.125062671568163, + 3.9996402238709385, + 3.9209924039269155, + 4.27260549474643, + 4.25785384053444, + 3.9706055024120186, + 4.179539908219051, + 3.9905462539072616, + 3.9310924808723957, + 3.6677477271598384, + 3.643481583028241, + 4.068309143165285, + 4.0340647040011355, + 3.846873663801568, + 4.037335612341605, + 3.856886121385515, + 3.7460118588652604, + 4.069526008930295, + 4.2926303918812225, + 3.9983705924105877, + 4.056426710858601, + 4.276913643485407, + 3.87422902224097, + 4.292396521827927, + 4.012952624309798, + 4.3093611481524485, + 3.9311349454438202, + 3.7750037154401777, + 4.331934853466733, + 4.0088327443186085, + 4.05977070333273, + 4.238349793890035, + 4.107622844190258, + 4.2682379597997, + 4.097450400989371, + 4.290885035177607, + 3.9863852998365825, + 4.179634669088897, + 4.259784794832271, + 4.009615801179929, + 4.504986614645175, + 4.414807834210697, + 4.193873665468308, + 4.302455910949985, + 4.417592152287618, + 4.21452324735519, + 4.294470107678222, + 4.070876635969847, + 4.130499479986511, + 4.013006821640317, + 4.353873442350194, + 4.18770776275063, + 4.602499680187956, + 4.1449996746672255, + 4.294906897988577, + 4.315162842684989, + 4.143489782492832, + 4.198273377197803, + 4.157339668054306, + 3.9303110853307093, + 4.0979933383352405, + 4.0856862681945865, + 4.5096364134076135, + 4.344242644315538, + 4.289618574120865, + 4.38645986924267, + 4.351284596351633, + 4.119205660914651, + 4.284490083711841, + 4.032043986369004, + 3.9278083817842693, + 4.032317330261148, + 4.500609517452953, + 4.360944036153904, + 4.348166036111666, + 4.175888054515522, + 4.326525263571069, + 4.166587544612558, + 4.3996027233358515, + 4.458010896117604, + 4.404154522811441, + 4.485350511254568, + 4.288724085976177, + 4.0411021534911375, + 4.257448868050379, + 4.131479195648755, + 4.322785931790025, + 4.533215780236003, + 4.24811263230452, + 4.226598653983074, + 4.038497900696204, + 4.637162016653785, + 4.043874864961151, + 4.322199246763898, + 4.317768284967375, + 4.460130960141286, + 4.198580724586948, + 4.4088510017576334, + 4.427756691672579, + 4.426474408174189, + 4.42057733276536, + 4.45707995841218, + 4.473235495444536, + 4.461475328519434, + 4.3017269098555255, + 4.476050899021446, + 4.69924050080709, + 4.392552275991712, + 4.022303169839262, + 4.272752662493714, + 4.485459112189527, + 4.1367394837350115, + 4.725028505799746, + 4.617508296203333, + 4.683864147244849, + 4.664423127713061, + 4.490288648295478, + 4.285961318849257, + 4.622805380071341, + 4.5618820185326125, + 4.217394641631438, + 4.402507150719087, + 4.740810452593494, + 4.078010211452861, + 4.413051917330198, + 4.77431455500711, + 4.425441678398198, + 4.396128646122207, + 4.38551791529915, + 4.511187470895048, + 4.25013840914804, + 4.121894858830259, + 4.454850590581983, + 4.455268902691282, + 4.32553627292041, + 4.654557448249244, + 4.253559857787057, + 4.426278792381894, + 4.568260788485629, + 4.387333933570066, + 4.330933362032691, + 4.131742556260299, + 4.210757886932391, + 4.526700270176512, + 4.2849807210546285, + 4.676146652417551, + 4.432427470713082, + 4.670778008781102, + 4.242945689497047, + 4.413821528330518, + 4.349609453534503, + 4.326261684590204, + 4.254678403649724, + 4.56049397535425, + 4.304330616639518, + 4.134558721563865, + 3.9289571286643006, + 4.562431577310913, + 4.475381585465624, + 4.059649044341312, + 4.217645599753677, + 4.726143013682518, + 4.14648133739518, + 4.248308960207408, + 4.278304945377009, + 3.9634733386760588, + 4.762877542482812, + 4.353798752652395, + 4.039190765111837, + 4.434959531417735, + 4.557538086853723, + 4.572569403347903, + 4.307271354158615, + 4.512013939375438, + 4.45791420079012, + 4.632153571981243, + 4.419363913576713, + 4.292777357668679, + 4.471609946532871, + 4.451712869676104, + 4.552167882158552, + 4.389220405868293, + 4.2547124313516225, + 4.404820673063551, + 4.54979541878548, + 4.190661175094273, + 4.340325733398692, + 4.459011536830529, + 4.168385879643147, + 4.160763133760468, + 4.183701694938644, + 4.5132913521810805, + 4.302913105275298, + 4.594913315873855, + 4.0661818784650565, + 4.22104868065589, + 4.321567075704581, + 4.157292032044237, + 4.060099119882388, + 4.424720391307248, + 4.305444925791051, + 4.086478568142708, + 4.459226058177905, + 4.459197905491543, + 4.227044056995602, + 4.171944651566181, + 4.640430596185176, + 4.3360681165158494, + 4.332273931884062, + 4.66263885365822, + 4.20852263785084, + 4.361203759573282, + 4.30896425584242, + 4.111095782093869, + 4.387374929878679, + 4.432812295158499, + 4.399416674745785, + 4.242984364795312, + 4.630921392499505, + 4.79127053696061, + 4.202561236129675, + 4.564273601181499, + 4.07682772894486, + 4.055122095077097, + 4.154089898950905, + 4.6793279318233365, + 4.22914869283372, + 4.561783643400263, + 4.214150781087964, + 4.373268181134219, + 3.8196916544448927, + 4.35557658609405, + 4.3050164795932595, + 4.193169464191903, + 4.137663217562891, + 4.323115426414945, + 4.573177067507618, + 4.1085093002596595, + 4.434326410011807, + 4.187051073809662, + 4.257698366395885, + 4.397738028107018, + 4.231969045056659, + 4.051275533307451, + 4.355807552246132, + 4.327157095044414, + 4.07134088539702, + 4.0595322375189085, + 4.129735169863279, + 4.049699953320412, + 4.160360832366513, + 4.408115315480485, + 4.430049952276292, + 4.146656395392587, + 4.24798234635139, + 4.541845147245346, + 4.425992238132554, + 4.161042680691985, + 3.8086180660063795, + 4.22844765673532, + 4.3152867912164306, + 4.465892517157241, + 4.222359700608037, + 4.2867536705229305, + 3.9412183975983845, + 3.6794404442181374, + 3.7544278395712136, + 4.025478200499127, + 4.020555644106297, + 4.213670831612215, + 4.153742868280612, + 3.9232753839048042, + 4.151422635520328, + 4.049324725307613, + 4.156212310428292, + 4.103063330528053, + 4.319718936366142, + 4.3604075122481865, + 4.237396089708894, + 4.028624872963796, + 3.583891354876435, + 3.8621837311161773, + 4.134162767328307, + 4.253584676801121, + 3.8898279459183933, + 4.128391831824894, + 4.184245481735483, + 4.01699656468766, + 4.350766286093842, + 4.039547225886441, + 3.6890418131447613, + 4.055906236162845, + 3.828377555588698, + 4.392090243348553, + 3.85502534711104, + 4.269496320013841, + 4.092582202597816, + 3.8932215368640524, + 3.9839583328351136, + 3.979620859397752, + 4.149924620492124, + 4.120244033431816, + 3.67668889975872, + 3.843261738687003, + 4.051672600460711, + 3.900396323788175, + 3.588309165989423, + 3.99668670176903, + 3.543598908492281, + 3.8716702809030896, + 4.011795802587924, + 4.085626441466799, + 4.030307060951943, + 4.090360086518794, + 3.870483485613708, + 4.029039962079665, + 3.912208616157409, + 4.03572766919319, + 3.949616812217581, + 3.79176527546727, + 3.649394692427907, + 3.7720938382746914, + 3.867866178464206, + 3.968744335015639, + 4.05492273755415, + 4.16867953620805, + 3.968085265322284, + 4.049701377033091, + 3.59683857223094, + 3.951737144718884, + 4.423980203708775, + 3.612517039842527, + 3.96761062271473, + 4.274569234680812, + 3.6665010804442146, + 3.8234666116622726, + 3.3434981828565946, + 3.892826487736902, + 3.614073022944713, + 3.6542937293640976, + 3.808396269567783, + 3.890648495638973, + 3.908356114411899, + 4.363960967719388, + 3.797432714208371, + 3.6864114559423258, + 3.9195971261982727, + 4.02965263487047, + 3.4255792222484107, + 3.6116883429082116, + 3.4775055085517033, + 3.94955063277203, + 3.658457296475199, + 3.7804418600218397, + 3.928567709003371, + 3.724328308085404, + 3.4471146182058945, + 3.7219784130809184, + 3.344474948478343, + 3.977679515626718, + 3.554155301512258, + 3.5833335097251293, + 3.152980026938228, + 3.545613605151231, + 3.485955978938133, + 3.596907323137771, + 3.685561473660431, + 3.712944657898169, + 3.82883619369376, + 3.464715072633119, + 3.5140460704110184, + 3.7568861694660374, + 3.5678087875125515, + 3.3256416495694707, + 3.4909721439101657, + 3.7860767759425342, + 3.8858115996274654, + 3.325526452301583, + 3.747127040698296, + 3.2957736014708376, + 3.77285293058595, + 3.560754593682959, + 3.417946547560488, + 3.4649250663023556, + 3.1254849830941245, + 3.4864750850699378, + 3.4758187331901462, + 3.3093428561656055, + 3.5766723889148673, + 3.4348868391448955, + 3.629177787102969, + 3.278077431512546, + 3.273624076291165, + 3.1905776841169176, + 3.216782743296767, + 3.123676811489725, + 3.4422129187980692, + 3.193218696481335, + 3.2213724380292894, + 3.501223959178086, + 3.2018715209923743, + 2.986805750605266, + 3.108372782098147, + 3.443297851936653, + 3.2411121492549237, + 3.4011904890255775, + 3.6353823687681963, + 3.3829883167421118, + 3.092452661640731, + 3.3713291760319275, + 2.8391863092259935, + 3.0445101885180557, + 3.0762900915671185, + 3.2552874873237623, + 3.0392128894642876, + 2.7813438011135565, + 2.887359906594508, + 3.4891908238136193, + 3.0868011724511004, + 2.9572634856964006, + 3.065041302156948, + 3.267606360946009, + 3.104021393024056, + 3.2473431537038233, + 3.499943141016547, + 2.818591146429437, + 2.6892576966127355, + 3.536996349971668, + 2.97788056816001, + 3.1891797956651007, + 3.2049908885962344, + 3.0617006656987575, + 3.0808201084167446, + 3.1339004597875766, + 3.096189480822349, + 3.0163569986298087, + 2.9283251235491643, + 3.141094730994828, + 3.012208935923128, + 3.352827822468007, + 2.8822216527532447, + 3.2500338703486054, + 3.0022145413409507, + 2.8088080843553596, + 3.4972906750123247, + 3.101422689739405, + 2.7806337309500395, + 3.4832031011922044, + 3.156611543347367, + 2.934356982979022, + 2.7486604413760136, + 3.007637486489809, + 2.7460710106279214, + 3.0681032284955996, + 2.683157473245478, + 2.8792553832533287, + 2.6857735367970563, + 2.581665913955047, + 3.0447204044647385, + 2.7233902136170722, + 2.5915660702375964, + 2.7445069356628777, + 2.998187475936398, + 2.9029915275382705, + 2.890467588374439, + 2.3406680316593365, + 2.831636386834455, + 2.825786165698726, + 2.9983159262906103, + 2.3208827652974335, + 2.3399264508223734, + 2.5498488261092933, + 2.8000031332731936, + 3.0963349756509624, + 2.7660407361206096, + 2.844078918699562, + 2.779633795953427, + 2.3520181355779224, + 2.6260089819903283, + 2.588414323041429, + 2.449330241050539, + 2.355614006913819, + 2.7156741352306937, + 2.8137536315214255, + 2.7062953030418373, + 3.0371188223717267, + 2.7771663928830974, + 2.646125393581808, + 2.5942476239654755, + 2.432496378291104, + 2.6290965219747693, + 2.384920445574272, + 2.539736055700454, + 2.3593837577527217, + 2.8757492380676317, + 2.239781164559078, + 2.6928749459801344, + 2.416802884268639, + 2.494502207598287, + 2.665497932780479, + 2.6824431736094696, + 2.271019039191534, + 2.2811809861850385, + 2.620327360729416, + 2.548094385625501, + 2.755842994723322, + 2.185995963760143, + 2.0526648972943233, + 2.006612968870736, + 2.41322335939262, + 2.8443902184568635, + 1.8259005572357832, + 2.4587810371497323, + 2.195153526818179, + 2.0698424267310207, + 2.3767427394988423, + 2.0582954484244627, + 2.1789171146573403, + 2.6835153468714483, + 1.9785383861114834, + 2.4323646402316337, + 2.3903758344635984, + 2.074648835501926, + 2.285959433685554, + 2.2464130748589843, + 2.179998237391809, + 2.3696683450681735, + 2.3931787943247778, + 2.232979291448489, + 2.1194746615210525, + 2.3663167886909244, + 2.1412494914231783, + 2.192361105640171, + 2.197954681445982, + 2.3994019406963316, + 2.1492715799079916, + 2.1512302140729966, + 1.8242085880864627, + 2.1854894311093362, + 2.113023741171761, + 2.3755096604460353, + 2.3714982769267943, + 1.8759950103966336, + 2.3506037081731677, + 1.8537354506315198, + 2.0016435384537035, + 1.793001476765708, + 2.223958834591767, + 2.2258493812463733, + 1.9278056113401338, + 1.6309439511587294, + 2.2385738910615394, + 2.044672701841421, + 2.0293730025380743, + 2.1898287446317486, + 1.755418999025192, + 1.8128568312641133, + 1.8248079928757908, + 2.3961130036487246, + 1.7902406524958274, + 1.9323476320256046, + 2.4312055190161663, + 2.28617138900931, + 1.8452129716267809, + 2.1276387599195052, + 1.9488267984240206, + 1.9999293259008195, + 2.1185267147493705, + 1.6683871418081124, + 1.7738226902635446, + 1.9599961466218352, + 1.961927608671158, + 1.561882763328768, + 1.7027107879885737, + 2.25549392581134, + 1.9362449590292583, + 1.7862246692155594, + 1.9329032702398057, + 1.7293207275128462, + 1.614957273602994, + 2.0529141937671924, + 1.6264467860294003, + 1.5050062602664611, + 1.8476633483127942, + 1.9488165601598624, + 1.626380939690587, + 1.5938457304361848, + 1.9457825860406075, + 1.5954222970369216, + 1.5432638897100224, + 1.798757729872221, + 1.9279860450433604, + 1.4917845764743003, + 1.75212139115078, + 1.4644680529285459, + 1.765363995405995, + 1.6175602898509347, + 1.7929579444122201, + 1.4545094663105984, + 1.4897877166696156, + 1.3101591850159253, + 1.8137630939841582, + 1.924521421245336, + 1.5206268734414052, + 1.6188795652845887, + 1.488432366210631, + 1.9026445718632017, + 1.4762596585687362, + 1.4485195228176493, + 1.7329896549561596, + 1.618222049621579, + 1.6124131081781774, + 1.3696164863485656, + 1.511182416877569, + 1.521646523699863, + 1.4715440604497019, + 1.2467479172689973, + 1.8953504815837119, + 1.6996173968038446, + 1.3175837089989848, + 1.1775886912894142, + 1.4135012672243528, + 1.6193353769599952, + 1.588308915434052, + 1.2437847042431702, + 1.663713412778137, + 1.292981516102343, + 1.4273252967892125, + 1.4603747925700925, + 1.4362264598965675, + 1.3637349227332405, + 1.4267447278924135, + 1.2247557300314953, + 1.3799016828438646, + 1.2911211174726154, + 1.2397009573322553, + 1.288543101068231, + 1.2960198631486615, + 1.2532856702786006, + 1.2146665037154614, + 1.2469673184084722, + 1.3289603457227956, + 1.1532594844470188, + 1.4314001968123529, + 1.666074012454331, + 1.3467855632046437, + 1.3184896466900713, + 1.164493311699223, + 1.33501546041616, + 1.1443904389611657, + 1.0989913448465076, + 1.2308409617214702, + 1.1787730809994073, + 1.372093699732575, + 1.2417414537700815, + 1.2023130389678023, + 1.3034353753177328, + 1.4089067785610374, + 1.4254690736793358, + 1.3255593742183025, + 1.275329533297616, + 1.4114068735024337, + 1.2292683966564983, + 1.2768056262361596, + 0.9159583027085072, + 1.2663194958242365, + 1.2027579538033737, + 1.0679802292646678, + 1.4577816853629497, + 1.1259822217853006, + 1.1329641031853805, + 0.7053964041961415, + 1.004383756752589, + 1.1339147322259362, + 1.0693830990665127, + 1.1565637981218702, + 1.1181411693664027, + 1.198255702896357, + 1.1346903842440315, + 1.2353863008209942, + 1.3327357518686547, + 0.9810131426160329, + 1.1279228362217668, + 1.018508186237687, + 0.7307450546703066, + 1.3665093839573716, + 0.7296082797851461, + 1.2394092029470443, + 0.9424428285058132, + 0.9294244430297577, + 1.1460277146591145, + 0.8620443967702903, + 0.7958295757907848, + 1.0310602619232772, + 0.6847809150407018, + 1.0955656544583172, + 1.0650581405646051, + 1.2214049475513906, + 1.0657627942612675, + 0.7040282379000244, + 0.7750239881133802, + 1.120667835604669, + 0.3109529287947924, + 0.6950763284380035, + 0.9839760307024377, + 1.0394672460351229, + 0.8406810634161433, + 0.8719780896297366, + 1.1115911050934375, + 1.0012776501076384, + 0.9987561290229794, + 0.748931761379135, + 0.8496624146690971, + 0.892103190135205, + 0.6517953392520162, + 0.7305992418757938, + 0.974704623142821, + 1.1266821857298601, + 0.8378513363497203, + 0.9905231444781791, + 0.863543545567892, + 0.6458024974519055, + 1.059796401994223, + 0.9441955165602504, + 0.9951800912182881, + 0.9463520757810588, + 0.7765661198131529, + 0.6409949896317625, + 1.0126816564275285, + 0.9001808608895233, + 0.9709562942824341, + 1.0557706309234762, + 0.4414534611614922, + 0.7318963439115224, + 0.7780210122583835, + 0.6655925951766275, + 0.6055207685403196, + 0.45833768090873267, + 1.1696382033512878, + 0.809344898209383, + 0.5905341334598568, + 0.9070385557349172, + 0.3753157817688648, + 0.7659975974562598, + 0.6636952915820424, + 0.5954711676081488, + 0.7068768596834435, + 0.6785351752186713, + 0.7714942388632096, + 0.4239491030224479, + 0.31101781429218506, + 0.4797674183039681, + 0.889562224420062, + 0.8761749323108947, + 0.31691109406413376, + 0.820294760937937, + 0.5745399789617248, + 0.6083122429207135, + 0.6705238478066067, + 0.8898713531924899, + 0.8783634257064159, + 0.3799024044604075, + 0.8658777985529694, + 1.0097355629373324, + 0.5565076803728346, + 0.6985546512048502, + 0.7533947739899711, + 0.4183538755065669, + 0.3103908021121742, + 0.5909244862397817, + 0.3844585379675072, + 0.7261401517880122, + 0.5532681322858595, + 0.38026034683291776, + 0.8202147647568799, + 0.36770382217503805, + 0.7327599749570114, + 0.5356261517637637, + 0.04215838527809734, + 0.2784989522881545, + 0.7303657438576547, + 0.4481655664122057, + 0.4624325558008199, + 0.21102085351550454, + 0.630976565320112, + 0.7526677450185199, + 0.5270734891331327, + 0.5573712287501333, + 0.6713562983630039, + 0.4447443764141437, + 0.9311323649142331, + 0.77579997296442, + 0.4207241093922882, + 0.6096496457492324, + 0.6368991768039619, + 0.28369980961832464, + 0.3154161033107151, + 0.3211766611731304, + 0.5866674682039689, + 0.5790545425340419, + 0.2639778656838918, + 0.5225353602134124, + 0.8354020086620103, + 0.5312067943655713, + 0.64884336784022, + 0.5976907583711459, + 0.5211619442117842, + 0.7289925340407051, + 0.45117885771735405, + 0.43813278358775, + 0.5164659874152283, + 0.5216273103344493, + 0.6637218100701481, + 0.39378853838994676, + 0.4061874689961713, + 0.3024183022432546, + 0.3761854598457447, + 0.7222360984304261, + -0.05659999512997205, + 0.5635066593091326, + 0.6585557267059369, + 0.30815451436964664, + 0.45911745265162435, + 0.41674764777310297, + 0.2553838556935848, + 0.612752416120665, + 0.34372833802427183, + 0.4932932324339383, + 0.48340869912172124, + -0.16299120953512036, + 0.48532088722904393, + 0.3283468119360203, + 0.20603907220879164, + 0.4236972487345679, + 0.415310165861948, + 0.6167247970164286, + 0.7944905483703277, + 0.7134983465370293, + 0.2404406060723996, + 0.4426804124147739, + 0.28021887660860734, + 0.006293597239055593, + 0.6888448117672321, + 0.21129373253196837, + 0.43771635546879345, + 0.022525844390675953, + 0.4075763974106418, + 0.25540424313865706, + 0.3083285280923247, + 0.2862791452466235, + 0.5610687605607596, + 0.1687111888436471, + 0.502529157536163, + 0.5876739769511697, + 0.8697582073230153, + 0.4099254754648624, + 0.3212007396432919, + 0.36430713224435085, + 0.6821363832202264, + 0.15138428017909195, + 0.5483687344104762, + 0.6460297624447746, + 0.27394161423741936, + 0.7143133835526203, + -0.006536963244184402, + 0.520730819845217, + 0.2960792781887912, + 0.4858867283523009, + 0.38675494349998496, + 0.6834039991104861, + 0.45820556097427434, + 0.3110928284996459, + 0.40098948888108593, + 0.42769388733219466, + 0.2568620141449445, + 0.8084815998367221, + 0.5138975945530789, + 0.7837749674845675, + 0.4857018705325983, + 0.29010975754324875, + 0.01979801802744996, + 0.33064759242282155, + 0.1873923507717256, + 0.2721107126724617, + 0.739578850476347, + 0.8448801304631577, + 0.19789673052737256, + 0.4992160854238813, + 0.33600819825190265, + 0.6660245969808228, + 0.6131254076486908, + 0.7531848433737127, + 0.32255833602139505, + 0.6461935098306677, + 0.3352824786163255, + 0.4584808611307697, + 0.33865396757666855, + 0.517293155229988, + 0.3709792773279143, + 0.5425738335020601, + 0.6857979632729753, + 0.42158094705479954, + 0.2543828756878801, + 0.5216929548532786, + 0.7014621474250062, + 0.07164793916016621, + 0.57834522904431, + 0.23404362742231585, + 0.33268290733665273, + 0.4790257429465967, + 0.8774628954476097, + 0.6217305353740774, + 0.5741006747293371, + 0.4917596129449738, + 0.025039598179420364, + 0.3422245341058265, + -0.022535022111514924, + 0.3274740216181867, + 0.8198704134832029, + 0.567561783176041, + 0.4033407722680976, + 0.5332155256533766, + 0.7001680452259462, + 0.5941159562241068, + 0.6770580348091868, + 0.5403753317948788, + 0.3911199296875157, + 0.19681231233772128, + 0.40510032727742024, + 0.44418297488840985, + 0.699319549038122, + 0.18462120334281396, + 0.5318995583930384, + 0.41641448092408473, + 0.5547988442878133, + 0.35070562197218, + 0.3454520721061176, + 0.4975765989739118, + 0.567099841103141, + 0.5354564957426138, + 0.039060630226959825, + 0.25421904705779735, + 1.0149412319184683, + 0.5962620099448344, + 0.4767029133126513, + 0.5377120571926546, + 0.5091114060271448, + 0.8007847970880052, + 0.35171236856213317, + 0.5127004640235762, + 0.5927437293630474, + 0.24473282612808245, + 0.5683861085126809, + 0.3880951777411925, + 0.03930094586173699, + 0.6180019458499031, + 0.7077983456400772, + 0.6933880591091993, + 0.42165254872514096, + 0.16163939900386226, + 0.4414713595213489, + 0.5916178103086552, + 0.9321484906256079, + 0.7459099637673079, + 0.45871371341537154, + 0.4899694196634622, + 0.8592240740473789, + 0.8061289286134958, + 0.5438309491936454, + 0.32433507096668746, + 1.0370660284171627, + 0.9039751626966477, + 0.4857117171171299, + 0.5112567773784571, + 0.32890202832004556, + 0.5862926856947559, + 0.6189982859211326, + 0.7072295978268206, + 0.8542356640301912, + 0.7895561894891401, + 0.4673338798402828, + 0.5265629385579439, + 0.4509375645018535, + 0.5890967183793576, + 0.8271898012131815, + 0.43323015557653094, + 0.8273979129859258, + 0.7626687928771247, + 0.7419071032014042, + 0.7181662500541952, + 0.7345033949630131, + 0.5621859889515839, + 0.759822212217654, + 0.4708086516946878, + 0.8065084479595294, + 0.5901454842021941, + 0.4804727481590298, + 1.0188768347607635, + 0.6833183035709545, + 0.6146230363063735, + 1.030049062605511, + 0.5146862477739212, + 0.7788152112948018, + 0.43456310005900106, + 0.379490705190646, + 0.9633159272972822, + 0.7128081652318398, + 0.6083254996809125, + 0.6253761303791202, + 0.835046464440036, + 0.5938107426440188, + 0.6404808385190505, + 0.3183300422927018, + 0.7083688450199332, + 0.41990007020273223, + 0.8863728936225914, + 0.6121049783428455, + 1.351166938795759, + 0.9972995813292925, + 0.789431222192639, + 1.1633584831988308, + 1.154530631180453, + 0.6644686934285036, + 0.955245817390011, + 0.7141425907520147, + 0.9805828538473331, + 0.9021625013632287, + 0.7111131264678394, + 0.4582380341379327, + 0.9616667711417799, + 0.5514671773956092, + 0.8175738892193624, + 0.9553176241707694, + 1.0702094092955017, + 1.060434912848954, + 0.9253569993317433, + 0.8401499213254348, + 0.5501005759483448, + 0.8169394929245433, + 0.9833994245635315, + 0.9078711429927738, + 1.2359148299008245, + 0.7629270399184573, + 1.3084946010082366, + 0.8888203660293285, + 0.9181097523465422, + 1.1320507962176904, + 1.0055508250002088, + 0.8702590196724643, + 1.070177626936015, + 0.7780017053621613, + 0.5929053122692765, + 1.0475941856553421, + 1.0992671256543007, + 0.9684634965214398, + 0.8609476900907285, + 1.2249277863712464, + 0.9887694470820709, + 1.1473359352471468, + 1.104270494516914, + 1.367850515606965, + 0.7904801199860516, + 1.2352355400004718, + 1.26971483677424, + 1.032146667992077, + 1.017937434305522, + 0.9361012305589766, + 1.278429457946206, + 1.1421373807729918, + 1.1295824533323786, + 0.9657610498795539, + 1.2237772377935863, + 1.226363147421686, + 1.364258561133946, + 1.1593989493405612, + 0.7040384053610489, + 1.509590287468396, + 1.1361535141887806, + 1.234337076446495, + 0.8146595298739965, + 1.0770694779154144, + 0.9855216662245789, + 1.5686823843310622, + 1.208201121482351, + 1.2520119785206774, + 0.9783725182493751, + 1.4703804145728658, + 1.4095727364891193, + 1.2781223963977315, + 1.264083815161799, + 1.1633687923420748, + 1.4597117616215025, + 1.073668616240944, + 1.4556894515407417, + 1.0991199444443893, + 1.1280954376955978, + 1.2199384195886263, + 2.0271103743968197, + 1.0153929161043698, + 1.533476647842519, + 1.1717936037312375, + 1.4074693400631164, + 0.9830686901348866, + 1.442749907680129, + 1.6608690356018858, + 1.3027102914711746, + 1.4594311076397308, + 1.3301729679945768, + 1.3933502492634477, + 1.4784347326616791, + 1.7674036219784812, + 1.5288350910108979, + 1.3861246308930024, + 1.5297937430603046, + 1.6491949759686935, + 1.2062964066090354, + 1.9194693051072838, + 1.5307668475627791, + 1.1611274933688738, + 1.4896641977043767, + 1.3763295451533735, + 1.6246796462612445, + 1.5784385139481047, + 1.4044140833220045, + 1.261832206244938, + 1.4744941314565694, + 1.281135336342726, + 1.5665281702278784, + 1.708658540486607, + 1.5648274014360206, + 1.6167832311363215, + 1.7538828361563832, + 1.2514133766117124, + 1.2666537886482732, + 1.5331008811836473, + 1.3031313900393038, + 1.8228521978631762, + 1.6417110792114131, + 1.6265995472254102, + 1.6281583474038375, + 1.4630524695745484, + 1.6323026014138753, + 1.7014907559760506, + 1.5517196299141807, + 1.0993939273880498, + 1.4085247610000025, + 1.7074311388225325, + 1.7676510364771816, + 1.7589818337519387, + 1.7976337997991685, + 1.6640820702334926, + 1.762671856624805, + 1.4513221207170446, + 1.9503731022671584, + 1.81570901363186, + 1.7483660396487284, + 1.9650166564264204, + 1.425862971326358, + 2.2702285704578813, + 1.8664494007082566, + 1.6217668304024642, + 1.8218949052261508, + 1.9663967451295454, + 2.1352045911896758, + 1.6519164145196812, + 1.7264809591698245, + 1.9276034741398347, + 1.8921511620198177, + 1.6483220064856319, + 2.3728650426668807, + 1.8086035578363258, + 2.434889262538949, + 2.250737564454894, + 1.9542057361957332, + 1.7991237711690768, + 2.115866289610681, + 2.2874787377474397, + 1.839834541184772, + 1.7304691916063049, + 2.0494928840193207, + 2.111507200216519, + 1.9110905634198743, + 2.268229262692042, + 1.772467884876547, + 2.1210546210227195, + 1.9857730210489333, + 2.219431412734722, + 2.063213038545613, + 2.046363195920642, + 2.3253922127547186, + 2.0592459092449666, + 2.0362475444378867, + 2.047842747964172, + 2.2259692620743574, + 2.035839084512384, + 2.0032163765515363, + 2.2105214722613753, + 1.8171717797959315, + 2.0144983549455646, + 1.926147320763829, + 1.9715132373340156, + 1.6910356365719714, + 1.8304775154457225, + 2.174161677533666, + 2.090076278939448, + 2.0845645199751974, + 2.084653920647767, + 1.8189527929421598, + 2.14782737399554, + 2.5932420342558498, + 2.3212242892035073, + 2.263556178039185, + 2.3197460845419666, + 1.8943084352297315, + 2.153233597993027, + 2.3940760689968132, + 2.3101773070467715, + 2.47215729300724, + 2.232129983366311, + 2.1587000265255476, + 2.6322285945710964, + 2.3833682810677854, + 2.296318709571658, + 2.5119691704010263, + 2.8839112543920753, + 2.3181189877139587, + 2.3479299249014693, + 2.3815202940667657, + 2.3169287742983533, + 2.43277862200721, + 2.347674217698557, + 2.7103872540886806, + 2.366861433677754, + 2.3236241837072114, + 2.936750045260684, + 2.8017966714739213, + 2.2524158805040657, + 2.361137006837456, + 2.5601418812482253, + 2.115100465672751, + 2.31606258247138, + 2.52920115925187, + 2.4738544246438923, + 2.2343665403877657, + 2.4754394637672, + 2.173724695091221, + 2.441060110107577, + 2.4909679703974548, + 2.652414803301902, + 2.4955149005461053, + 2.6165195697946597, + 2.8531930693670717, + 2.722450399773808, + 2.72206268516811, + 2.5286486915663398, + 2.466620039247158, + 2.4366992975052644, + 2.2074731510469383, + 2.520867106373818, + 2.7273700352156047, + 2.61829728638974, + 3.0340973249258507, + 2.970475060041145, + 2.546550245309105, + 2.7333651468618396, + 3.095599458920633, + 3.0005171389746743, + 2.685921033767248, + 2.7453585722506326, + 2.83652207908961, + 2.974330067578484, + 2.91983725930218, + 2.7783021239021357, + 2.8744561951067507, + 2.9461561077220133, + 2.8969319002446836, + 2.853705398522452, + 2.9533270891314083, + 2.541629969551946, + 2.8196868531500767, + 2.981755672155746, + 2.7940593978649817, + 2.2974353895585766, + 3.014063620894409, + 2.8004938147071585, + 2.587821116886052, + 2.631593749696017, + 2.6324276739288743, + 2.991012911591147, + 2.9490585203727515, + 3.0285098851000187, + 2.864981385977936, + 3.2942805710633567, + 2.9839193647548714, + 2.619932752443629, + 3.192293333500455, + 3.322755425860472, + 3.0781080679961996, + 3.1867015840544086, + 2.7479292247426486, + 3.3210002860947863, + 2.861331769221284, + 3.247424755879615, + 2.9523360779590195, + 2.814216445613913, + 3.1398717662901134, + 3.0508661210428016, + 2.9554546461317757, + 3.2061522384584666, + 3.058730552986326, + 2.802442590694729, + 2.9487588376614533, + 2.9258991183279774, + 3.392335269995194, + 3.232897423685081, + 3.3142259504323044, + 3.0591159935729686, + 2.79697942601543, + 2.88296720152802, + 2.7023710243886865, + 3.219004682300195, + 2.948157782538402, + 3.2491064710170003, + 2.749098280245642, + 3.2822999208812482, + 3.18155486058139, + 3.0673940715396215, + 3.1511776986200344, + 3.3885415409693556, + 3.429176644198204, + 3.3212396881968225, + 3.553982076120316, + 2.968219315778267, + 3.4602854061543478, + 3.26135317184038, + 3.3735380797870618, + 3.2090256932344285, + 3.7005279865195684, + 3.3555859087227806, + 2.9272318525516816, + 3.2406207888294576, + 3.372228263104272, + 3.186390394348185, + 3.2533275140430997, + 3.0223788924886192, + 3.4935449719642238, + 3.2854087093307873, + 3.652304406084445, + 3.52408104047235, + 3.3284717738760823, + 3.70674761123563, + 3.735182900979994, + 3.290883803721749, + 3.623163913261365, + 3.194327851366443, + 3.2646903919198427, + 3.2308375290564633, + 3.658683490011019, + 3.313169186710261, + 3.684090063203669, + 3.4445284170817763, + 3.4953161315885994, + 2.978749085339022, + 3.6405678158063886, + 3.2671174917114834, + 3.486325933722049, + 3.6809044431942763, + 4.059083203596773, + 3.881300889555793, + 3.5070064520454682, + 3.7665840170875113, + 3.7300496549820354, + 3.4343092661707315, + 3.5016529904605966, + 3.4513836531307187, + 3.09796700600149, + 3.918714279005605, + 3.5706679486437456, + 3.621882323769895, + 3.6161605172387903, + 3.8016217615776275, + 3.914055335371913, + 3.6285688482260565, + 3.7894985568096966, + 3.7255313201672027, + 3.5328052514985133, + 3.588657524355836, + 3.7133507002633475, + 3.369893273386176, + 3.662374383926667, + 3.556911144374043, + 3.527055202500318, + 4.2146061564644395, + 3.4184336453981867, + 4.404771378948041, + 3.9451303756612504, + 3.838811649251053, + 3.584213218384889, + 3.7963780803264413, + 3.676433528672788, + 4.07792354658649, + 3.479585287463657, + 3.67833174353475, + 4.135915763213966, + 3.5582783187931994, + 3.8471492823494002, + 3.736676495542709, + 3.783786857785848, + 3.714664829883346, + 3.6980817822525287, + 3.927492482838416, + 3.396016442075929, + 4.141534346579041, + 3.6486558026645524, + 3.767713350581728, + 3.8818977449438754, + 3.8028598962126776, + 3.5857837476773162, + 3.8749407867418526, + 4.135020827568768, + 3.7457792528471607, + 3.80315302472165, + 3.7794905039107514, + 3.520095237696607, + 3.555326467121584, + 4.109936936068617, + 4.024754007081664, + 3.7321587101808538, + 3.85721427934086, + 3.8707646208704, + 3.749333729049349, + 3.990862012344913, + 3.7384095686562406, + 3.288521058989682, + 3.667970984742391, + 4.142642534370985, + 4.090284842470327, + 3.7975890623219186, + 4.14713828965027, + 4.089026508013012, + 4.060430889860333, + 3.9011839195502684, + 3.863593228949842, + 4.188563896457566, + 4.153559207672515, + 4.176344272028871, + 4.080847958051387, + 4.007756007096625, + 3.8803657035396557, + 3.823784424207987, + 3.919825033825405, + 4.144085989031776, + 3.9123386772984503, + 4.32455576864302, + 3.945658076583107, + 4.209102791698756, + 3.858133643461519, + 3.9982867296856783, + 4.254405342820688, + 3.876946051268645, + 3.849627193794499, + 3.805597966886944, + 4.172151524535919, + 3.7062755093326434, + 3.7847020312197, + 4.289081683012043, + 3.837953087151326, + 4.498195495333819, + 3.428648717024422, + 4.431051568107281, + 4.089903692098931, + 4.225004897035161, + 4.202136279303181, + 4.199789904852262, + 4.103805514300873, + 4.341920880666401, + 4.089905228505782, + 4.163457600846219, + 4.361273571349225, + 4.455648652190118, + 4.003249523680223, + 4.173360061214982, + 4.208834228772372, + 4.251486984159769, + 3.9549796545378153, + 4.2905264688432485, + 4.130515631844373, + 4.416244834559529, + 3.480644997935986, + 4.109495862935517, + 4.23613842703089, + 3.769952665627326, + 4.078683701451839, + 4.448658483965573, + 4.055307621342147, + 4.22682033307343, + 4.0849930044306095, + 4.131008714178373, + 4.2565884815370225, + 4.427109199143148, + 4.405691318967149, + 4.31427565426275, + 4.07022070718635, + 4.108976315709998, + 4.334964423995315, + 4.787179782652436, + 4.054696428878152, + 4.562110640110939, + 4.145340590999551, + 3.9864779555604235, + 4.034934335851342, + 4.106744525148805, + 4.3617533743617365, + 4.6292955116786105, + 4.695303634086757, + 4.614357072839443, + 4.391873263977107, + 4.129927191024187, + 4.402436805526785, + 4.198026300635568, + 4.308885233870182, + 4.190026068318202, + 4.417667560855881, + 4.339602113925282, + 4.144254644690916, + 4.588024581594654, + 4.2090629235339225, + 4.198499218917929, + 4.480658966580511, + 4.539214763415856, + 4.077390599387733, + 4.369977893284584, + 3.9485393911264683, + 4.2014716343357374, + 4.585426972088366, + 4.284054236943614, + 4.221176840899769, + 4.434584647859359, + 4.452599695786802, + 4.552463332072339, + 4.616523626175847, + 4.379963079389242, + 3.993853718742088, + 4.713077800432534, + 4.483052423106872, + 4.428608048586329, + 4.062128371273588, + 4.275860022989125, + 4.834410643285821, + 4.079721251634936, + 4.503869458274149, + 4.061931195960783, + 4.23795632052197, + 4.382137548397928, + 4.245403796426045, + 4.369754026149493, + 4.246438417231953, + 4.338384925237075, + 4.250977805218091, + 4.376393328596237, + 4.559707588689528, + 4.31497546250338, + 4.4287345537385905, + 4.097730442814589, + 4.491404573841559, + 4.309631656159628, + 4.5624785518349835, + 4.2192841967174415, + 4.260295209012814, + 3.8262151908486963, + 4.530519410412046, + 4.17352375392256, + 4.378357837031944, + 4.471835499477625, + 4.467416123600151, + 4.205590149460233, + 4.405079007845734, + 4.452291248600779, + 4.520113619684719, + 4.03996580258991, + 4.488851640558901, + 4.51195661822533, + 4.699776897447442, + 4.229800769431552, + 4.358401781202415, + 4.511996714087522, + 4.463916365096548, + 4.229293432940929, + 4.484248211432841, + 4.512306425208983, + 4.019072750263376, + 4.316897828302573, + 4.371217422661685, + 4.294455625483046, + 4.604572544978881, + 4.389992048847863, + 4.07016915111982, + 4.617515306761825, + 4.330512123199479, + 4.429896195261795, + 4.207610530088482, + 4.387554000656419, + 4.591168673293154, + 4.692987871791851, + 4.486086984564415, + 4.204813292517606, + 4.393761475804, + 4.594413098263301, + 4.547830343921523, + 4.278811406457456, + 4.326546402580306, + 4.372557027953484, + 4.167770268850822, + 4.42121447023633, + 4.476582505562711, + 4.250876377881636, + 4.203962579393389, + 4.2352317876376135, + 4.55351784091885, + 4.269175308369347, + 4.507921790115208, + 4.50914421885002, + 4.323278515452473, + 4.684393860661586, + 4.53757638417573, + 3.9375438064170485, + 4.551699308446185, + 4.461824813171761, + 4.519464603640056, + 4.6886670473277166, + 4.373236491993559, + 4.240499428182821, + 4.326662367354647, + 4.241422816845527, + 4.597535377684955, + 4.205856754120892, + 4.663784561822832, + 4.225093067537054, + 3.9426319953543882, + 4.2042199545898775, + 4.2886009829607845, + 4.200855792018446, + 4.19873327271619, + 4.557464073545358, + 4.481270517138658, + 4.11373305381865, + 4.368670637698525, + 4.339934943128009, + 4.493884337572602, + 4.250582353649256, + 4.173408010137597, + 4.465183240893777, + 4.365967076466183, + 4.098386177092805, + 4.242838570234458, + 4.19306980784314, + 4.284409184159594, + 4.553739826419934, + 4.371359686435209, + 4.004695880822026, + 4.728081306813211, + 4.272126829081448, + 4.3266827144729705, + 4.409030373670492, + 3.9881772516736897, + 4.335712788016533, + 4.550573762159754, + 4.352795388001505, + 4.223124493459251, + 3.8385369573663457, + 4.402796101651661, + 4.316467871132612, + 4.304980408863064, + 4.471816808474715, + 3.9642278937134927, + 4.550145857793455, + 4.309561250823519, + 4.259628231532896, + 3.78286661180477, + 4.535796551485912, + 3.925034273268942, + 4.198923241381345, + 4.1790372820271395, + 3.9682388933400277, + 4.384112396578703, + 4.115077338819988, + 4.40644275418818, + 4.117694021440329, + 4.409210792244923, + 4.182070495821707, + 3.9959489750252977, + 4.170998167666608, + 4.254582927211096, + 4.428791156419549, + 4.024612264742002, + 4.226938908310723, + 4.115121615919635, + 4.02620410295197, + 4.216729093917289, + 3.991479545668175, + 4.379385904821181, + 3.7558999442682253, + 4.24086613546799, + 3.9289690479038493, + 4.286031579001107, + 4.427888387760235, + 3.9855898265856897, + 4.110120726787288, + 4.191375887045429, + 4.231055348029834, + 3.968208239142202, + 4.090994510374162, + 4.238887870124744, + 4.118060692726894, + 4.088372905610166, + 4.3884493695427595, + 3.922552128020122, + 4.223646982637248, + 4.252933624501485, + 4.339795156371376, + 4.248047432969168, + 3.6356438155700928, + 4.124877634785233, + 4.244646887172942, + 4.148192058727587, + 3.9595625557609684, + 3.9118944778979317, + 3.809264801074446, + 4.057228099532064, + 4.051219966212963, + 4.144905466540837, + 3.7264562474874428, + 4.029222349314908, + 3.7350190421206344, + 4.272641722663348, + 3.8799363106342133, + 3.7154258008143755, + 3.6202937904618846, + 4.151116939734607, + 3.8289362122941415, + 3.8851632625288235, + 3.970094992392983, + 4.013153847094429, + 3.8436266704375472, + 3.654802970897619, + 3.6984841783931546, + 4.097626726528192, + 3.974517683607541, + 3.6633805570842646, + 3.7999855091185832, + 4.173522707922307, + 3.8891116563950217, + 3.9685294355624743, + 3.584782258715584, + 3.784369217903022, + 3.7514929783537423, + 4.082929587942172, + 3.7289113380623284, + 4.151678688129931, + 3.869591005337392, + 3.7470911965110267, + 3.93441588667493, + 3.964953607069546, + 3.7581675005844533, + 3.8115797623326246, + 3.836897776767087, + 4.0958285366134355, + 4.018952359152602, + 3.5741504119423912, + 4.035318796736177, + 3.998135997036546, + 3.8161907210207207, + 3.61755230176754, + 3.6882234074229494, + 3.734714258702448, + 3.566144726910934, + 3.7951014474547904, + 3.9837014154852612, + 3.749892188468676, + 3.6539935531847316, + 3.828056821663133, + 3.8883959667340204, + 3.552346339443573, + 3.65129193402159, + 3.702615638460507, + 3.744241825284307, + 3.6184235211777946, + 3.4371183897066695, + 3.6621872477828363, + 3.742668571461204, + 3.986521535358162, + 3.564580907522709, + 3.08215392775991, + 3.3740284195202923, + 3.5905722882934046, + 3.3440420165521183, + 3.88538284446589, + 3.5783645543212144, + 3.4483144123281875, + 3.9293312151691797, + 3.63744741605834, + 3.626886000062845, + 3.3809203622269424, + 3.383951528389414, + 3.7950489239000054, + 3.612653049406168, + 3.4262629700507086, + 3.300465766501917, + 3.5295622922032543, + 3.7296183246428036, + 3.470588151625612, + 3.3330102103133687, + 3.385590511935819, + 3.3039297508537326, + 3.372233566512554, + 3.408501685464221, + 3.4279592313695573, + 3.6034778536575933, + 3.346474577474273, + 3.669930330034992, + 3.6440399083343715, + 3.392565035192531, + 3.5746195066448365, + 3.256004587843179, + 3.3626442695201484, + 3.342558069219044, + 3.4632392702815253, + 3.4645009477419846, + 3.49803668442513, + 3.5130050920491325, + 3.04614113425134, + 3.3253395039705165, + 3.4530725258761454, + 3.2384175523004997, + 3.2863248424194653, + 3.564077256387331, + 3.2610082580029878, + 3.4152650582634783, + 3.1697483438393554, + 3.9054268856529157, + 3.351941215156093, + 3.305273097604713, + 3.8500295505440714, + 3.653624859093344, + 3.0721496543890634, + 3.6411535686800502, + 3.3270855067609664, + 3.280272017120483, + 3.236279503399712, + 3.4671082077299147, + 3.2130369866752586, + 3.293549351002251, + 3.2796481458919446, + 3.2105351536422426, + 3.009840109931226, + 3.209440558512395, + 3.2581431637838367, + 2.771636072631295, + 3.31247424532841, + 3.220429978782878, + 3.2685013325998935, + 3.3089291620615784, + 3.088137458247413, + 3.05497656967618, + 2.97964445027995, + 3.198224318407066, + 3.057911331831343, + 2.9130690967005384, + 3.137414327351295, + 3.3491832368333916, + 2.8720654664507395, + 3.1040739354020803, + 3.107997822146325, + 3.1811517215176717, + 3.367608589086016, + 3.070186256621761, + 2.9258454814961947, + 2.6140594404360993, + 3.2207844886272032, + 2.8711461345784186, + 3.294294731768396, + 3.1287059866326623, + 2.8883446899809577, + 3.11694179594579, + 2.9222075886337104, + 3.1786388247377073, + 2.879737962058608, + 3.094550514435738, + 2.96804076187024, + 3.0646988769855072, + 2.9343509366453, + 2.7138550492647493, + 2.877673535827116, + 3.0001299816523908, + 3.1605531885675067, + 3.0672852710039193, + 3.058740657642558, + 3.0707126320550966, + 2.8575063161233674, + 2.8176381368724326, + 2.82346663852558, + 2.7589576774656437, + 3.011334154392027, + 2.8404999932544563, + 2.810917270156597, + 2.7192624993094197, + 2.888265901207403, + 2.825059179629175, + 2.630457459887393, + 2.8154776672472344, + 2.4341464382056364, + 2.821819640330084, + 2.3446656777154673, + 2.693735112164728, + 2.851520645808109, + 3.1455893053768578, + 2.6093430273625913, + 2.8017222124870105, + 2.7511089502638613, + 2.513354865598962, + 2.799258102450796, + 2.139412609670068, + 2.5766852021221394, + 2.783586365108663, + 2.548041705473745, + 2.4949306319390185, + 2.516504960432515, + 2.8528629835179538, + 2.6049821739041503, + 2.6106735512890182, + 2.252433653733798, + 2.2489123667680753, + 2.4680901555031682, + 2.7124413430522236, + 2.6950406282547905, + 2.8077877191536276, + 2.7753784094457576, + 2.4428749733114983, + 2.8216225504227435, + 3.1115176668882136, + 2.5837472382445803, + 2.974852359662533, + 2.3857547795454113, + 2.9173346667232316, + 2.7288621732279355, + 2.5866804157617604, + 2.0349697014853034, + 2.1852310345553256, + 2.42376057102957, + 2.05943522983866, + 1.9508245833417794, + 2.431469947228794, + 2.267743787639171, + 2.0238342249766643, + 2.344760589991296, + 2.424849654313861, + 2.712160746589576, + 2.2654989406395822, + 2.7766190506515023, + 2.175098507418707, + 2.466156556956976, + 2.340920795444797, + 2.3607840864614156, + 2.290975789112691, + 2.1882899546469585, + 2.163307957328028, + 2.2158355554798326, + 2.085722186419691, + 2.047317514978199, + 2.1527441661994633, + 2.139747760570794, + 2.4771512936731725, + 1.871830686853675, + 1.8550215800166245, + 2.1502726411907305, + 2.183380075216788, + 2.317655298527827, + 2.167381200727737, + 1.8066917418381998, + 2.002779608887867, + 2.03301642547952, + 2.2908231431553747, + 2.292984395069116, + 2.3623350097929343, + 1.9534538758683189, + 1.952441292887484, + 2.352417393995547, + 2.03550870944909, + 2.2531830163997735, + 1.9603326354128068, + 1.6806661746364882, + 2.176579196188292, + 2.2630624542042437, + 2.0334652004721523, + 2.0419345014267525, + 2.2698106204956896, + 2.0865491217796004, + 1.5530391841854825, + 1.985605962652772, + 2.1076456538879302, + 1.8126989942958232, + 1.8441405976184004, + 2.0220105895952805, + 2.0426871259820816, + 2.1352644620774646, + 1.7812142137657248, + 1.8452017761497508, + 2.101360257001643, + 1.749912841961729, + 1.512142259923631, + 2.095502530087324, + 1.5840227759850747, + 1.8286185355229057, + 1.9133086883563941, + 1.9301973034060933, + 1.5413508217968137, + 1.8496901200023197, + 1.8294174178828293, + 1.6443078562408513, + 1.5793730289077383, + 1.456513798193447, + 1.956607850483748, + 1.915707344160115, + 1.8879237141654406, + 1.66491207224407, + 1.5843141755251484, + 1.827718127673641, + 1.7793661297112262, + 1.4055005364671793, + 1.8621962308319588, + 1.7291526335621132, + 1.698035901684023, + 1.733993808035485, + 1.5581787218408256, + 1.8254155658285076, + 1.690063863837051, + 1.5995888253717043, + 1.7550762862839921, + 1.4560750499099266, + 1.7348804613010438, + 1.5518257389685566, + 1.567396091710027, + 1.8594364169889805, + 1.637149962708537, + 1.4778582677417775, + 1.8281041082910012, + 1.6814929388978257, + 1.3009910886078768, + 1.9106718112644212, + 1.2841471250636314, + 1.9538738827581639, + 1.4171375983356251, + 1.4950791429543007, + 1.2840538183933763, + 1.8400815588921489, + 1.6094843953382851, + 1.3112306376413743, + 1.5282137390872326, + 1.6694023824417814, + 1.6497851295201071, + 1.8035342318311944, + 1.4146325282766907, + 1.5409856531601238, + 1.4641380671132083, + 1.374527670065159, + 1.251770442750831, + 1.910521483266738, + 1.3101259301828252, + 1.4092502377274985, + 1.5529607709464346, + 1.6564190154415075, + 1.2798656655830631, + 1.3491621984293236, + 1.2837748485576703, + 1.1054260603357111, + 1.0233693424284678, + 1.3741640641504187, + 1.4857037390848964, + 1.6652702791560945, + 1.4522907078694833, + 1.4599403676099962, + 1.4456330801758355, + 1.0943195622961033, + 1.3571096400414628, + 1.409645561175596, + 1.7879595835542896, + 1.0662230287447332, + 1.4260721782379588, + 1.223393598305439, + 1.3047388815709793, + 1.1811294758219133, + 1.3859366015482797, + 1.3456255865067102, + 1.0588883153270108, + 1.3283226923470575, + 1.2643740310465967, + 1.030192142657178, + 0.9727967017655267, + 1.579944576173346, + 1.2699880171280622, + 0.9655486065300931, + 1.6286936600536883, + 1.0681530584094137, + 1.064145173020879, + 1.0901531073501496, + 0.5971657232917069, + 1.106414795986062, + 1.3141363825799706, + 1.5886985070706154, + 1.0663415577794093, + 1.0612113797888987, + 1.3235878911356886, + 1.500791103797025, + 1.2185242141790833, + 0.9653247722055653, + 1.0199530591624544, + 1.152812808264184, + 1.1418353785434714, + 1.0809093114711616, + 1.4059445534488382, + 1.5044894776702589, + 1.4039943074134333, + 0.8728820400525273, + 1.283100610406842, + 0.8302722209655318, + 1.3001193836477647, + 1.3619596287791649, + 0.8495823157929984, + 0.9412822021702109, + 1.1515623397208474, + 0.5968290294896879, + 0.9616205975126543, + 1.0581851048601802, + 1.0314698033880771, + 1.0130405627996095, + 1.2424331137381832, + 1.1368411341999776, + 0.804968618885084, + 0.8929038181697935, + 1.1300660407986012, + 0.6041121862324441, + 0.9022320281606709, + 0.9762473765933906, + 1.0299598555106502, + 0.7776369429756929, + 0.6299890126589709, + 0.9277824808444589, + 0.9510978173778463, + 0.9544680383010969, + 0.9204341717000801, + 1.038979662717722, + 0.6774810189130099, + 1.1881230114797094, + 1.001874840054239, + 0.5903141987944516, + 0.693801278480723, + 0.6423773308385279, + 0.6715573553163758, + 1.036623090727524, + 0.3030095004632677, + 0.8151931201766197, + 0.6731109283430581, + 0.8256627888013364, + 0.9734349495816539, + 1.0651197943558326, + 0.5110309509252464, + 0.9842653353927339, + 0.9092125650354694, + 0.6909547733682124, + 0.9508557693449275, + 0.9429263670648718, + 1.1655841612613416, + 0.37669040219994554, + 0.4492416733038875, + 1.095274393526529, + 0.5631511104018949, + 0.4278494472514825, + 0.9169267334656239, + 0.962109596616547, + 1.2884657232917474, + 0.5817165238782716, + 0.8022750392011941, + 0.6031267355786314, + 0.6946631629012043, + 0.5877167995896693, + 0.6434210218665131, + 0.960630565945365, + 0.34737687900423375, + 1.0361277950272632, + 0.4955463516747711, + 0.6917093095298373, + 0.6298393284871742, + 0.5819354983153338, + 0.12341468278010981, + 0.8619969035100128, + 0.6755866150281649, + 0.7289734945976705, + 0.5823612705689782, + 0.6176748434587428, + 0.5878490008754202, + 0.2876681633090385, + 0.6389514199633968, + 0.48594850962656466, + 0.414277479109256, + 0.6513097712280891, + 0.4914024177917059, + 0.6570545275307136, + 0.20228349462138673, + 1.048233201426152, + 0.493110593288934, + 0.6053491662345816, + 0.626767090180989, + 0.7723526275032707, + 0.657934443203699, + 0.9023274214267718, + 0.752535084761505, + 0.5337684700648168, + 0.5692454935532808, + 0.26504730412692395, + 0.4256966778513165, + 0.5542863181410225, + 0.46414263064818756, + 0.5432395272821202, + 0.5003828479955817, + 0.7283336719754684, + 0.8154240638084482, + 0.25771851449557565, + 0.7013891251782658, + 0.3860318226365585, + 0.38435463600208786, + 0.6045671668777787, + 0.5843030949765049, + 0.4704400812915694, + 0.46983790152923766, + 0.3179022252937657, + 0.6730688443515243, + 0.21732325727428475, + 0.5925432507074619, + 0.5379059543696249, + 0.4384375498743993, + 0.6486825887121208, + 0.780359258472136, + 0.6251374621371866, + 0.2814849087616268, + 0.5363322807020715, + 0.2987534421310104, + 0.3024358110218206, + 0.3228799161841217, + 0.25029206915231983, + 0.8155572724406991, + 0.5765612148519623, + 0.32588410801624745, + 0.3386932449417701, + 0.6980718280653482, + 0.5565447688442334, + 0.747963000580776, + 0.7381757379900767, + 0.43969479862133193, + 0.4622758146189002, + 0.42172215148961856, + 0.3993323763656693, + 0.98144705971049, + 0.5577133689203478, + 0.5395668153139598, + 0.11975857997852518, + 0.4145450369592801, + 0.21652360604408763, + 0.6942204214750314, + 0.600366083008947, + 0.39384419649442076, + 0.5138848947439143, + 0.42959986131848343, + 0.30451269459483205, + 0.68793811478298, + 0.5034528901383348, + 0.7289129086748514, + 0.4082212963629588, + 0.23088221582166668, + 0.9992266919915763, + 0.26063627000369594, + 0.5151048544717343, + 0.7747641637352078, + 0.011842246247567356, + 0.3364088861259723, + 0.6606335706198725, + 0.5264076167397915, + 0.3564778833554837, + 0.585004694522296, + 0.660693697128933, + 0.6121302730820506, + 0.6144273209025596, + 0.47837614136175555, + 0.4351685915144302, + 0.16822836977302702, + 0.6537420893896858, + 0.4685959175910718, + 0.20251186894143858, + 0.12167614061823623, + 0.43801935131776026, + 0.2728261319458896, + 0.5829430594563544, + 0.5880237823429322, + 0.524926616930345, + 0.3375984530755711, + 0.4249174363402239, + 0.12642950635598654, + 0.5741939894881547, + 0.593727430488513, + 0.21999076152797445, + 0.23858677574824214, + 0.7402049487485125, + 0.047498048980212815, + 0.5059394505645738, + 0.5640979996565924, + 0.45746560668984865, + 0.226184071965232, + 0.34664754210327625, + 0.29110325041405394, + 0.5662868470453718, + 0.47661704932622917, + 0.24174763749592262, + 0.3802049133654361, + 0.3345752811310755, + 0.3065884081051741, + 0.7777797450498898, + 0.35117774337883745, + 0.26147775358666314, + 0.5051461250969292, + 0.27966241659694846, + 0.7707076532748982, + 0.6138668175740316, + 0.24344881399597662, + 0.35964024225526536, + 0.6654320413736717, + 0.23432514413420577, + 0.845182240451384, + 0.05124169035601783, + 0.1214509339623352, + 0.3609508434902938, + 0.3245334204019692, + 0.49948338158678574, + 0.6270677527484189, + 0.2609249617663546, + 0.2802588906333411, + 0.2723869631627235, + 0.3891131553181209, + 0.3053286581460319, + 0.362579238127944, + 0.8892267134245246, + 0.057506850862146075, + 0.3012545487454724, + 0.1327057764231187, + 0.20171352853651311, + 0.5435655643086976, + 0.43676166841095804, + 0.07486676617393628, + 0.270717039588219, + 0.6374335512239264, + 0.16842701656705922, + 0.40566070372488455, + 0.8452727021042463, + 0.4517029926331356, + 0.2816575116956128, + 0.8577592534838463, + 0.42114329379615256, + 0.36726023283520653, + 0.49753048624794066, + 0.5643698545557931, + 0.3541808281918124, + 0.7092533677654757, + 0.5850730115562541, + 0.36927353593556, + 0.3918396007731893, + 0.3881337408297723, + 0.6377804725586881, + 0.4724231912992343, + 0.6455661795858979, + 0.24188124451296747, + 0.4438188271968237, + 0.7099805416176063, + 0.4804354845256103, + 0.4947818810275328, + 0.390571517822251, + 0.3946421017865144, + 0.7438619237466556, + 0.7717224275301123, + 0.47282488439651105, + 0.7111605498417384, + 0.710070553417307, + 0.35289131689980124, + 0.7885560536550331, + 0.2708715744290585, + 0.6345024861526404, + 0.6684861964087676, + 0.7312349316813368, + 0.5767293746792564, + 0.2616622031766345, + 0.2270327590879278, + 0.8395348058035429, + 0.6286093152901299, + 0.4032670662335493, + 0.5819375871996322, + 0.7503157073455433, + 0.7812435686963556, + 0.6023845008716695, + 0.2093554089041469, + 0.5070211439752822, + 0.6281501547084285, + 0.89823488911312, + 0.37251488095573826, + 0.4538487470735616, + 0.5431697337000747, + 0.22534358867695953, + 0.28269860183960543, + 0.467487169191674, + 0.46556057937003537, + 0.5181369241681089, + 0.29361676725580765, + 0.3125986901960079, + 0.7327306493514749, + 0.9070814203185209, + 0.7162288941815158, + 0.6998456522991056, + 0.5450073684968759, + 0.7675538420444125, + 0.796303432578602, + 0.5853455761773312, + 0.6462475486023829, + 0.4794402951851422, + 0.7619050134004035, + 0.5445022876084189, + 0.38485076702984533, + 0.6427617546219756, + 0.870859896944668, + 0.5936121241356558, + 0.6306490370934951, + 0.8429470026986866, + 0.6944562526547885, + 0.7937803171449124, + 1.003466804251305, + 0.5595153087764578, + 0.650102684991064, + 0.9068098089602037, + 0.8434268511685498, + 0.9515011797849393, + 1.050629291326376, + 0.9010659720682005, + 0.7392591587137104, + 0.7853863714093087, + 1.1226567685562783, + 0.6705772304918185, + 0.7110119757538671, + 0.47458222775608366, + 0.7492175709932797, + 0.9503461911875676, + 0.8217958763102772, + 0.8950989187901567, + 0.9896791792549098, + 0.4908527809412039, + 1.2730448923073279, + 0.9683150029947621, + 0.8232959928182602, + 1.1057917989350683, + 0.5357310231704788, + 0.8554732329780448, + 0.8712915318014889, + 0.899779444926953, + 1.023223195013735, + 0.77689533718739, + 1.1460928965194839, + 0.9390148869364839, + 0.5737341960413571, + 0.6637386667681779, + 1.0701293214426923, + 0.9512720914686416, + 0.950442401336792, + 1.0284389795676774, + 0.7464789102576171, + 0.6302833262060923, + 0.8375130063530304, + 0.9323644602741337, + 0.8223136744113352, + 0.8165806136830361, + 0.7805633488227707, + 1.0834837188666633, + 1.018648486376017, + 1.0681525746131928, + 1.0968869151690155, + 0.9479517842970069, + 1.2867622506194625, + 0.49076315005699533, + 0.7505978014508701, + 0.654745462716855, + 1.0646388482952194, + 1.006194102225604, + 1.0680462945577784, + 0.7605330437779332, + 0.9034632600450908, + 1.2499931256308139, + 0.8718864882450222, + 1.2029370046902457, + 0.9592943929496813, + 0.7950534584071292, + 0.9968713601506541, + 1.3228170969554869, + 0.9340623121593926, + 1.052693571934374, + 0.9392945393445019, + 1.251927435340257, + 0.8307463761732924, + 1.3612794862919406, + 1.3638927690998472, + 1.3809604867548837, + 1.0193684519250956, + 1.2955645807847562, + 1.2397933502136995, + 0.6333397831649278, + 1.1622387573472084, + 1.3057046189644481, + 1.08431051157514, + 1.3651727059951748, + 1.4290404630863105, + 1.383564552120756, + 1.4632999368239128, + 1.4352882462694474, + 0.9068000734570925, + 1.12218619601799, + 1.14167107348027, + 1.1649693169175093, + 1.5941653465432057, + 1.2181501317523298, + 1.2439001950891582, + 1.0357987844858707, + 1.56868677297644, + 1.3642783881892775, + 1.1695713630574898, + 1.3293605861043385, + 1.3638433900761853, + 1.3526399753685925, + 0.9603234653642934, + 1.672427436341736, + 1.3633593316119168, + 1.50402618023363, + 1.4888497073065208, + 1.3189079065224154, + 1.1874214720355956, + 1.3782918292036042, + 1.337622200570063, + 1.0456264909887036, + 1.4529493138849652, + 1.905147961385198, + 1.482523009631582, + 1.220432875318853, + 1.4950495087377604, + 1.5021112142315658, + 1.1165866979258845, + 1.457524463687881, + 1.536762142417448, + 1.5197067450280723, + 1.483953963173727, + 1.6272918712357103, + 1.6419078283253117, + 1.154517683505576, + 1.3815627329384215, + 1.9892944694682513, + 1.391867022657246, + 1.4532286327906712, + 1.6895440575294995, + 1.6572728165024622, + 1.6621352553209185, + 1.6550745579361827, + 1.2723750276544665, + 1.3704835827470243, + 2.0815576249133185, + 1.5869127533599832, + 1.5685341146156937, + 1.5714263808929745, + 1.4835355559567702, + 1.607257522623019, + 1.594048274208782, + 1.840921427975492, + 1.6377576735748347, + 1.6381511199850625, + 1.6817884077362568, + 1.80653487328098, + 1.6030419130652882, + 1.5957510443029372, + 1.6951454389415554, + 1.7808485988190499, + 1.8589173060353248, + 1.8670149532330662, + 1.6192397488729924, + 2.116793844627078, + 1.6661292580396803, + 1.8105790513498008, + 1.5298025553063779, + 1.882726673575351, + 1.8546527331214302, + 1.7652103098691025, + 2.0975075273125787, + 1.6367219439040184, + 1.9281423220435467, + 1.5772834627212386, + 1.7721035370085385, + 2.115444538671828, + 1.8574099546216958, + 1.7489658997793986, + 1.688960982068759, + 1.667661257765398, + 2.3395229613520554, + 1.6145508674393312, + 1.9517313040280717, + 2.0808395013444287, + 2.2659979842799776, + 2.281708681319541, + 1.742270329025308, + 1.8869136712215044, + 2.0192752453532385, + 1.5790900110887172, + 2.1701968926239377, + 1.8082182212744813, + 1.8056727988133667, + 1.9615001684835962, + 2.160107375977372, + 1.985176468606807, + 1.822754826150334, + 2.3355051261514825, + 1.743674448867983, + 2.250507629567795, + 2.1611752166253915, + 2.102111945277383, + 2.2793532105201524, + 2.0058220303455387, + 2.307371991335878, + 2.0909377579899506, + 1.93109883483361, + 2.3188922900119615, + 2.0400279233402654, + 2.033688235972678, + 2.263437044681054, + 2.304107852172233, + 2.159230607829977, + 2.5162176439011565, + 1.8455831108660279, + 1.9146760330562076, + 1.7838516047233297, + 1.8362668709794665, + 1.9564656816084185, + 2.352207662401305, + 1.8101645742322852, + 2.0062673866840934, + 2.2742953547293348, + 2.4068012962871803, + 2.114675090378348, + 2.0334904339706936, + 2.368017764099637, + 2.241862301102824, + 2.494359466770408, + 2.414211397317191, + 2.023543918167019, + 2.3049713601562654, + 2.420456234222384, + 2.0448423799282915, + 2.1374371959387135, + 2.4121213936211285, + 2.1749307685259294, + 2.6286422657503836, + 2.4723637247846417, + 2.2067680580556543, + 2.2441645749954717, + 2.2205370954473436, + 2.4825009937220304, + 2.6805589395036535, + 2.5425961037520235, + 2.3456848525418557, + 2.143582438044637, + 2.2817020166671904, + 2.479343034702741, + 2.3220611352265905, + 2.31080360213296, + 2.515466710641557, + 2.5330239491871622, + 2.5717619540036316, + 2.7018749118379595, + 2.2931918962068694, + 2.44384593793432, + 2.7493743843199567, + 2.44764311717632, + 2.4880846477671152, + 2.5446024811208834, + 2.4486100125820176, + 2.378706076370397, + 2.2815571970298523, + 2.6961895395803603, + 2.4787028079810254, + 2.4829653851028253, + 2.468717571982326, + 2.421569599661717, + 2.5167587853655964, + 2.4904688764303367, + 2.1808368275406522, + 2.7152380085797128, + 2.377770498615398, + 2.558514200835405, + 2.855076371970635, + 2.375943937236121, + 2.910217444829234, + 2.6359320530283017, + 3.101377261144111, + 2.606166965214687, + 2.4824257917715604, + 2.650682333532342, + 2.648722819530385, + 2.819798500875885, + 2.5455916316677887, + 2.921860828750657, + 2.8854402887166497, + 3.0151527317900944, + 2.4626896907936393, + 3.02891891404607, + 2.8066850528449367, + 3.1786050317479555, + 2.6041910422940275, + 2.6017594619312012, + 3.173631539699266, + 2.908720782090179, + 2.8624828425816022, + 3.065489561077052, + 2.762207375082059, + 3.0492353939542522, + 2.7199310383549777, + 3.2666118462331077, + 2.957904182062286, + 2.93790055578624, + 3.0614925498220753, + 2.568323285057955, + 3.293787171555481, + 3.23225925711912, + 2.9194754217493704, + 2.6672018284058776, + 2.9598365355821534, + 2.841267337096001, + 3.189946066889873, + 2.6810030835734557, + 2.7931998301284895, + 3.29591783243092, + 3.2403936596368053, + 3.035854848687947, + 3.2049534247405083, + 3.0603373598850685, + 2.859472590674476, + 3.7467542176040505, + 3.0324072262144677, + 3.2601417655267184, + 2.800220658004012, + 2.9681752959600556, + 3.0791356664894307, + 3.4597389335035316, + 3.476149768457979, + 2.759450882499375, + 2.994874114819665, + 2.947394926112038, + 3.273010961514957, + 3.1146277679068626, + 3.384243499377529, + 3.323988089098696, + 3.2425320347253135, + 3.327848854137218, + 3.0386010857582635, + 2.943239826129824, + 3.0196496648893816, + 3.2366676207244676, + 3.320594098758234, + 3.3194074885733174, + 3.4160036788530745, + 3.2117371661082235, + 3.1992471892827643, + 3.3698501508244725, + 3.2646810329511813, + 3.1156051379264253, + 3.245933310692165, + 2.956750346025178, + 3.4968023065501774, + 3.341789672628355, + 3.410979982737936, + 3.5317912517602323, + 3.241106444215449, + 3.3847644759753437, + 3.053916229742803, + 3.6614052524402974, + 3.502144284787771, + 3.1620789987830893, + 3.5210881420343525, + 3.546913591909999, + 3.785402429237729, + 3.6217811309436945, + 3.371340483595805, + 3.3732369020632578, + 3.516796767458727, + 3.5236927389949875, + 3.450473066365516, + 3.7025747613021927, + 3.6381410978170474, + 3.348287594324302, + 3.540239897419477, + 3.6195671211794394, + 3.7179780936544917, + 3.479995196340219, + 3.865570385924608, + 3.6569269784794267, + 3.52227336021499, + 3.5351967216102977, + 3.439603370939933, + 3.8455402867415804, + 3.7976761978262847, + 3.603129356546599, + 3.7616112605784178, + 3.3616360731237878, + 3.3321645765805017, + 3.689650685311695, + 3.534234054897767, + 3.840761232396697, + 3.406412884554914, + 3.7160326477458283, + 3.8728034194058183, + 3.5512718746118783, + 3.8174474864075822, + 3.6601800517301326, + 3.5111257914329306, + 3.6725613995316158, + 3.7991568566197906, + 3.439372415816007, + 4.109812653352523, + 3.3118226299818367, + 4.353885015391125, + 3.6860159818678597, + 3.6706603235791526, + 3.504562074433253, + 3.6830318675519482, + 3.6005386881902286, + 3.474697962816411, + 3.8020446102277003, + 3.5928626056040653, + 3.731535455513531, + 4.158146563155296, + 3.714419962091733, + 3.74108562867042, + 3.661586766092807, + 3.7113371372297683, + 3.860849578260497, + 3.802978143113834, + 3.8934088678797245, + 3.977932836817662, + 3.7882000062796384, + 3.942927252894373, + 3.857475000213604, + 4.038952464628039, + 3.932375267764204, + 4.026959932427213, + 4.256738888703641, + 4.05900597856815, + 3.8278784108400723, + 4.091318506724335, + 3.9604458763857124, + 4.214261167373462, + 4.074915487085469, + 3.763916031592037, + 4.006128736499213, + 3.8403781677827546, + 3.804178527299135, + 4.07152098315556, + 3.735412363753697, + 3.7277187985670848, + 3.7922644860261534, + 4.0268512309284406, + 4.09578348808862, + 3.8184823838334614, + 4.016156333694463, + 4.029117538870886, + 3.8611277442527037, + 3.833550648017269, + 3.973830734328729, + 3.733932851692215, + 4.216625002746457, + 4.1720678745532815, + 4.328263541331054, + 4.15297473709416, + 3.8667967626145554, + 4.057621043657538, + 4.3409152756408105, + 4.0839492940416235, + 4.276255859805223, + 4.2493370024761195, + 4.244923003317422, + 4.146974710139217, + 4.09743612340009, + 4.2548451662335935, + 4.042091030640681, + 4.033280707971495, + 3.852462329378977, + 3.7772333605234554, + 4.335825073704328, + 3.967369675042192, + 3.9124828897082997, + 4.230461223248807, + 4.152568500683832, + 4.105182037460311, + 4.5455552445594325, + 4.1161302371049695, + 4.091155023796406, + 4.235396637972735, + 4.174924371669597, + 4.216697623911669, + 4.464567276234084, + 3.795849467615091, + 4.040962637122323, + 4.060111070003906, + 4.275532782866958, + 3.933402520627967, + 3.9830926764019274, + 3.8497528653772264, + 3.9509930074868604, + 4.318444199468987, + 4.471960237096977, + 4.044247164530945, + 4.0165045443969465, + 3.843928757870101, + 3.9080292288149674, + 4.143310056402286, + 4.226652475577101, + 4.079138411241854, + 4.394325091104854, + 3.9256372755146236, + 4.123041043527717, + 4.141385558497567, + 4.34224141200683, + 4.258854509176252, + 4.032855610544629, + 4.137247430181878, + 4.529594107370042, + 4.38350797023017, + 4.443771324902004, + 4.180123630760599, + 3.9309058759086497, + 4.408664814508239, + 4.2854034828614305, + 4.589714420507945, + 4.535378382755083, + 4.247747743217095, + 4.549185715521803, + 4.1658339395336945, + 4.233833406188923, + 4.090382032800577, + 4.38511246695395, + 4.066154763349484, + 4.237740536248552, + 4.042727057989018, + 4.042890618143218, + 4.701963189030295, + 4.007667478419853, + 4.785651500282001, + 4.104378946671596, + 4.660714389506416, + 4.188361715163483, + 4.338825101990477, + 4.360440860732839, + 4.271342427143842, + 4.2569682934638795, + 4.193503883146162, + 3.9763681079014304, + 4.132362775802982, + 4.173462010180884, + 4.323303778356974, + 4.454937911449532, + 4.074216696151207, + 4.139213875391713, + 4.835620554577052, + 4.206958450738758, + 4.7797093406225635, + 4.715075762590549, + 4.385853163118329, + 3.935437001333584, + 4.187521245588915, + 4.063356454926889, + 4.340219609659219, + 4.1045162745561585, + 4.416245608325086, + 4.654237801783886, + 4.612914106937219, + 4.456717292422436, + 4.345093249568006, + 4.208136817296211, + 4.365031390785037, + 4.418988241346833, + 4.285062343310162, + 4.503696556836717, + 4.855102749703787, + 4.6718801108355565, + 4.574821400496177, + 4.573281620148819, + 4.263103731362437, + 4.362600650345103, + 4.427901280116137, + 4.274623066487963, + 4.618692166204812, + 4.297599933528111, + 4.0193174252156165, + 4.073060974057607, + 4.418606807831318, + 4.172231231567546, + 4.19651481665576, + 4.363283207009228, + 4.3578623644635615, + 4.377467188784987, + 4.496033535151309, + 4.61548292049722, + 3.973069966313636, + 4.528342844334731, + 4.493158322281859, + 4.571014278091045, + 4.334509441648941, + 4.208131063650519, + 4.536297520710717, + 4.19360443512153, + 4.271212645239342, + 4.177650666448086, + 4.07695114365104, + 4.467360829516949, + 4.321282324108792, + 4.236327235225074, + 4.34760661788703, + 3.934370198584625, + 4.319086683288533, + 4.438766558818015, + 4.073436827357251, + 4.226583554883202, + 4.585169911602955, + 4.3429732196837065, + 4.0749717782579395, + 4.417910707178254, + 4.56984237137874, + 4.424712688695666, + 4.343000322513578, + 4.036006549837057, + 4.67474052034387, + 4.453234229230086, + 3.979823829973284, + 4.070542682000176, + 4.282329010959711, + 4.519594632656158, + 4.35673352300322, + 4.221713123535367, + 4.750733901927473, + 4.376164114295223, + 4.4435085406787795, + 4.804612811200304, + 4.446397883359447, + 4.894425873575323, + 3.9997684888523946, + 4.439034798362683, + 4.4915010745491655, + 4.691590449739006, + 4.0487238277634745, + 4.231185479855184, + 4.338463057769022, + 4.647446683948848, + 4.3849202150501405, + 4.30783453558096, + 4.324309379563623, + 4.273551607838653, + 4.244618632662755, + 4.445669515468513, + 4.049992460836739, + 4.254658798363598, + 3.8872528084319895, + 4.976271083301444, + 4.27546858478396, + 4.242190264878241, + 3.8747675472469654, + 4.514802002309801, + 3.681482057075538, + 4.266103575717419, + 3.989798017013333, + 4.235292954038768, + 4.493335973803923, + 4.614246842737179, + 3.985250782004986, + 3.655502207272955, + 4.270180595167441, + 4.177268885728106, + 4.458039675272654, + 4.319149956915775, + 4.171813412398667, + 4.449379397818989, + 4.523979875734303, + 4.569322914687089, + 4.473056324321832, + 4.082396363448282, + 4.144088385441409, + 4.391245942670998, + 4.460046085229843, + 4.641607939409703, + 3.990472421313808, + 4.5353386222961545, + 4.242774187841887, + 4.3478784850338625, + 4.265741422204689, + 4.274058280133445, + 4.673891195890048, + 4.48425125780445, + 4.3497992223787305, + 4.393621808889084, + 4.052008621533495, + 4.419992554316012, + 4.436062970009558, + 4.496720108328222, + 4.111502493112483, + 4.2705808912942445, + 4.172674859441183, + 4.187218328421434, + 4.045703311103954, + 4.367656561889967, + 3.972081613155233, + 4.314982382581759, + 4.281747659400023, + 4.542552107897901, + 4.1821489770062295, + 4.493147481234958, + 4.217455321127314, + 3.690462590456556, + 4.35753511855501, + 4.332265583146679, + 4.208694494826129, + 4.117823938386871, + 4.118522871034809, + 3.6053335496790027, + 4.361616955016145, + 4.013245265029831, + 4.083880763078084, + 4.276423870342837, + 4.077271125698499, + 4.209685730067365, + 3.87776884858157, + 4.144628526583437, + 4.322161922665736, + 4.055476247589757, + 4.135412228960231, + 3.8513584057156263, + 3.9868568652492957, + 4.268315018751654, + 4.25842370218401, + 4.305077929830156, + 4.252943393136153, + 4.1465427458496205, + 4.13589751308991, + 3.9696485852713477, + 4.157426853422711, + 4.055623484769744, + 4.289868866875166, + 4.5336638692523366, + 4.326123453224381, + 3.939953270550904, + 4.248195207088848, + 4.0650068916612945, + 3.9574786644496243, + 3.4105689246211566, + 3.876130222983587, + 4.378009494141435, + 3.6924198539086373, + 3.5788302128782563, + 3.841362493985405, + 4.161567907128164, + 3.8375637586404947, + 4.054217615262273, + 3.7502336206765294, + 3.919400586956962, + 3.8898436696207943, + 4.24049221687188, + 4.317416531017869, + 3.891115258000172, + 4.257120257273248, + 4.079423842265487, + 3.715161569845212, + 4.117222341815203, + 3.7652935640798404, + 3.8229418001773454, + 3.9556187289058498, + 4.005421375796999, + 3.993257130633157, + 3.8205607881994283, + 3.640029689044023, + 3.975099882399831, + 4.122377766091151, + 4.163317110878808, + 3.4871648553089765, + 3.9377100407093013, + 3.9765352489757415, + 3.5474871943611386, + 4.0494998076059385, + 3.890118720170611, + 3.6620180432724454, + 3.8429604495762315, + 4.009647667330466, + 3.703284017134568, + 3.842787157765974, + 3.91976108501081, + 4.109097946346336, + 3.770237073915474, + 3.793301662253904, + 3.9165741499688953, + 3.9255752486395683, + 3.7927559581101704, + 3.9651810991570327, + 3.5685712488338934, + 3.9455950265214756, + 3.4452901411614976, + 3.747521219214378, + 3.6809480535100603, + 3.9014819563232055, + 3.9821751350368, + 3.7941897045834856, + 3.638399894825897, + 4.062412439980992, + 3.8806672067092314, + 3.7052919759400256, + 3.625078842224334, + 3.7892179400832835, + 3.671490492423453, + 3.996945860814974, + 3.9424281095241276, + 3.762164562496315, + 3.531350155464401, + 3.5460079509204094, + 3.6058041435438515, + 3.754706225262452, + 4.090614103523078, + 3.7898367657846705, + 3.448109622586949, + 3.618922838280612, + 3.5731804478889893, + 3.609791623167964, + 3.242860029811384, + 3.549109416099651, + 3.6592110263669992, + 3.6178530589424773, + 3.5507442407369596, + 3.594781229323151, + 3.442623774087556, + 3.693635293946963, + 3.391498156575858, + 3.448817290645908, + 3.7891830443751124, + 3.2927904858086765, + 3.405522728673544, + 3.535978175002407, + 3.671437758128892, + 3.17156796179339, + 3.5078424006244426, + 3.8783347916012594, + 3.3517666655631273, + 3.3268276087494684, + 3.281533813917478, + 3.4779802412960152, + 3.6427908960095343, + 3.645580005554573, + 3.350608334759819, + 3.4358396211919215, + 3.374118510185632, + 3.6537794338452505, + 3.5229929524629395, + 3.206232111242084, + 3.2157020032231864, + 3.461880702101383, + 3.623503130097693, + 3.163631976195765, + 3.3757340219962773, + 3.3970530107987114, + 3.6428054157240366, + 3.5203703114536893, + 3.169038482311417, + 3.377967025760756, + 3.197804543475528, + 2.9576881793163006, + 3.4428497297258898, + 3.181857571311573, + 3.3529919991416124, + 3.0080844140095544, + 3.2527914078706455, + 3.4364545779569315, + 3.1735073699218854, + 3.467565514742006, + 2.9591744495698076, + 3.55247087740983, + 3.1181912650138672, + 3.226436395142011, + 3.044946474610641, + 3.049836769414596, + 3.28141752477502, + 3.0517509204757594, + 3.2807554745154954, + 3.1060320017474314, + 3.039909157846733, + 2.8866195449528984, + 3.169798164170988, + 3.064300848261795, + 3.3556914273321414, + 3.3609152123689006, + 2.82532317327183, + 3.3912314220565083, + 3.139046681582481, + 3.0065469245431906, + 3.256106138809542, + 3.6105020019936314, + 3.3057863415603013, + 3.141202463266039, + 3.2276056895832586, + 2.914312318159413, + 3.330065795229022, + 2.640672898955867, + 3.128526293288492, + 3.2916909496857856, + 3.1461252091284218, + 3.1500169902969666, + 3.0170400976658738, + 2.9621438451350577, + 2.681984128450936, + 3.0295976622029284, + 3.026972252272176, + 3.3508422092149606, + 2.9046681321942263, + 3.0808074359404025, + 2.381275352689634, + 3.041490998870541, + 2.9878213328557406, + 3.129189417671099, + 3.322268599480914, + 2.849924309555355, + 3.004836539598818, + 2.839603272835055, + 3.0426641956124167, + 2.9523457285665002, + 2.9153543779879287, + 2.85023745438653, + 2.913126329313984, + 2.5742672128651884, + 2.841591426625857, + 3.1113102352012323, + 2.8663800041301317, + 2.5110834898556047, + 2.7931492610194137, + 2.9075268451265828, + 2.7997811252499494, + 2.905791089353086, + 2.9409564755407667, + 2.6711900330512215, + 2.538573568652297, + 2.838195327256667, + 2.862312383639384, + 2.850935313870847, + 2.621796408672511, + 2.8226879705809154, + 3.044214231531951, + 2.1142614467978365, + 2.72613475328615, + 2.6782901572069306, + 2.6429539284831303, + 2.3530560419425885, + 2.6312552874530954, + 2.701545618606511, + 2.441392252990686, + 2.6894794278077803, + 2.224575898167128, + 2.525999542924367, + 2.569168466082021, + 2.4730505059102263, + 2.5990757430258205, + 2.2093317861548893, + 2.468325012423079, + 2.2835409635663106, + 2.6906536784660204, + 2.536124478085522, + 2.3742986681687284, + 2.062417550660263, + 2.5489008175708374, + 2.5632914120818038, + 2.5623600571528575, + 2.4778277004379605, + 2.3141278443333775, + 2.4225899070468055, + 2.3211748475147944, + 2.810083562940393, + 2.36143196357467, + 2.4812847378642235, + 2.271977289250388, + 2.5195630245000955, + 2.484747754148418, + 2.454209319097396, + 1.9047584901762393, + 2.2178775535969435, + 2.316063504589554, + 2.4262456765390192, + 2.5739129054621697, + 2.356687692213217, + 2.3274033588399963, + 1.9472541326330797, + 2.318480339688163, + 2.4142916836105006, + 2.210270442378175, + 1.8747116832896369, + 2.220964268268083, + 2.0699214381029485, + 2.1045074070116403, + 1.8443417687275079, + 2.2244232193412303, + 2.585706861208632, + 2.332035134683964, + 1.884568838977449, + 2.482512794662346, + 2.213568039793068, + 2.4953435765224454, + 2.185029506153418, + 2.1933880575938107, + 2.046139663053225, + 2.154066328801, + 2.2852588736852133, + 2.2443698451488436, + 2.154119829668255, + 2.0823471470362684, + 2.2547905496719656, + 2.12969585723691, + 1.9291071030522107, + 1.7144686724615996, + 1.9562524821895797, + 1.6799334825788872, + 2.2729436702995027, + 1.9042041836978525, + 1.8867874369902624, + 1.7841835047208652, + 2.116909630019781, + 1.7073462530850152, + 1.9483815325170597, + 2.212595132852182, + 1.8677389611415405, + 2.2791699678708777, + 1.6948781381992208, + 1.6988915838195227, + 1.9811492364298535, + 1.630195930328569, + 1.797326167950997, + 1.8521055304618352, + 2.367952850304758, + 1.8213235495358697, + 2.0300041902782118, + 1.7669414793409832, + 1.8413930048466256, + 1.6617563185349131, + 1.6698231628978184, + 1.7720395506216433, + 2.10909412823702, + 1.8145585167111395, + 1.4806406154979057, + 1.6097077749659139, + 1.378790987633311, + 1.709251527324132, + 1.6964356233904974, + 2.007590387592761, + 1.8595227739176248, + 1.3098765948556148, + 1.904175203169682, + 1.5660721568848932, + 1.6830984480516995, + 1.8239557694051207, + 1.845305487203204, + 1.5901703842541839, + 2.043729394973968, + 1.6808224743019644, + 1.6111570048896608, + 2.0112353666331035, + 1.6042048214681826, + 1.6121387721437255, + 1.7563863243175315, + 1.5065689690153643, + 1.2987831400915144, + 1.5546003947083444, + 1.375588494639778, + 1.424169345843569, + 1.7510603828542421, + 1.7086074865220608, + 1.1685449858435168, + 1.552589011127652, + 1.4931826822659355, + 1.5028630310269087, + 1.401412540392379, + 1.8142997940343086, + 1.7221930780394943, + 1.6088667029477286, + 1.5359400575512314, + 0.9520644804634223, + 1.5119779236620443, + 1.642441286437207, + 1.6678095898244085, + 1.1378747252917014, + 1.518952954292693, + 1.7530460337257519, + 1.5480503122542786, + 1.4943584636708558, + 1.543452880146739, + 1.7049067940385685, + 1.4002416702450164, + 1.4773397774264827, + 1.201938324908305, + 1.5305229961667348, + 1.1656465670159228, + 1.495772290949956, + 1.5698695264738018, + 0.8447041752824644, + 1.5281100101196414, + 1.377562837831391, + 1.3854618241655645, + 1.1016732314985371, + 1.1553463113908036, + 1.223729385367966, + 1.5282132370034889, + 1.4285922387245922, + 1.366750649018855, + 1.2771660086375705, + 0.9606434183534449, + 1.3269160103510913, + 1.319547220392096, + 1.080429379489578, + 1.1966419683424743, + 1.4556037371094876, + 1.2493740419529564, + 1.2451275547359024, + 1.298724127967462, + 1.237616651369233, + 1.1621649105325416, + 1.3272410173650588, + 1.0459745464639973, + 1.1016600819678706, + 1.2921476773997986, + 1.0872040513601167, + 1.1129236840048056, + 1.1860882395246113, + 1.1081998493290546, + 1.0231135615765767, + 1.3443307869018897, + 1.2412673932128226, + 1.2282691912380963, + 1.0593148002613382, + 1.1914348606463872, + 0.8868864101115508, + 1.0156270828292233, + 1.2707943030732514, + 1.116597350098549, + 1.3362595843747058, + 1.0446708304692942, + 1.291564220855058, + 0.9115939492543191, + 1.2158398724287693, + 1.0399368601551222, + 0.8174545186401422, + 1.1550763347224529, + 0.823085924640063, + 0.6778674462230204, + 0.4697174498552017, + 0.9755721601847044, + 1.130352988900086, + 1.2684170829925239, + 1.0866767378437165, + 0.9270926285429658, + 0.6089683257096521, + 0.751006197680202, + 0.9867691922124259, + 1.2648148719462482, + 0.9179838023852321, + 0.8533129152029174, + 0.9464641302869242, + 0.9509965443227855, + 0.7645181764891779, + 1.0532497345702547, + 0.6241232120735336, + 0.970378365698628, + 1.1017990042941421, + 0.8593064137938226, + 0.8897446508752185, + 1.4283324696852584, + 0.36341736760616494, + 0.9935538024728469, + 0.9216186818850539, + 0.647644950991777, + 0.8569130802055062, + 0.5619226591186032, + 0.9974310492801033, + 1.0826833571248808, + 1.003766895970005, + 0.4351954015608917, + 0.9090550468484718, + 0.5125939179309877, + 1.0230299064464188, + 0.7396039356461561, + 0.835074331276403, + 0.5960187293368236, + 0.712730910580182, + 0.4796231188548385, + 0.4261712634649558, + 1.0890910492404924, + 0.6833035532520462, + 0.7196553084333451, + 0.6272976697310646, + 0.4739521312084602, + 0.6711421970777502, + 0.7312005791886608, + 0.7010288570713317, + 0.3912560203592601, + 0.4584407355487614, + 0.5295254358776083, + 0.43039746742389, + 0.6774233392696603, + 0.6494061136455285, + 0.4766558646861487, + 0.661338104225005, + 0.543119086117339, + 0.7220263802641125, + 0.8993175709882126, + 0.6705522240872869, + 0.4945002617809846, + 0.9056213227798797, + 0.8912200802831769, + 0.2543131481914132, + 0.7950835283614668, + 0.974993481408627, + 0.7056522279857594, + 0.46733613258409, + 0.8603570612626487, + 0.6335629219147879, + 0.37076825174704675, + 0.5110401507704625, + 0.6907458910472138, + 1.0187776209714126, + 0.3632100728240529, + 0.45783490591616194, + 0.9620489816167299, + 0.3105881912168185, + 0.9441455127094727, + 0.34498529169319464, + 0.6722032969956482, + 0.5819527339580103, + 0.5512588873628377, + 0.36992459263087274, + 0.46411688152112396, + 0.38837933733227503, + 0.9575922094266395, + 0.4145164734198622, + 0.11400548235354602, + 0.6902976440804686, + 0.5064231486691942, + 0.8163266221544891, + 0.8265936239880929, + 0.5163834344387686, + 0.8503225004436199, + 0.6326994785209515, + 0.4583429500938821, + 0.6386667542680367, + 0.8553924680105567, + 0.6068894413773763, + 0.4586002402001142, + 0.3778497504450917, + 0.3362636879757382, + 0.7025606516050776, + 0.6157990913384825, + 0.4887484070470702, + 0.11006513893986902, + 0.6207637846440963, + 0.21099981354444886, + 0.4383661250653194, + 0.5777476111161606, + 0.5641859721665192, + 0.25997618199434835, + 0.38488583153217926, + 0.7940552812153132, + 1.152978226667062, + 0.535486863381992, + 0.3640344051441899, + 0.46905744703118174, + 0.1993409555141501, + 0.6671628502555357, + 0.4433231309142478, + 0.4033346312490489, + 0.22168607993590672, + 0.7304844423274148, + 0.42628402988288205, + 0.6756038006523367, + 0.5546134055315907, + 0.5076917146463888, + 0.5012854179033881, + 0.6732644987431846, + 0.3900597392931826, + 0.5795131418798094, + 0.3403695839856456, + 0.4563117201419551, + 0.6024032914856443, + 0.5104265108871285, + 0.5669845736027014, + 0.3057220044488612, + 0.5653176797013832, + 0.5018979951125312, + 0.4904217171149184, + 0.41963038137207637, + 0.4020113610025051, + 0.6328866599775023, + -0.01839037104153507, + 0.4888786395746027, + 0.26293609979230487, + 0.038854673312188226, + 0.8103128263434329, + 0.8835113517112321, + 0.5666110391873803, + 0.1821266529668335, + 0.39924275941662857, + 0.20466359306374426, + 0.2609326224876498, + 0.6500660554534975, + 0.4587962781641909, + 0.1749530591572882, + 0.2888673429736455, + 0.18475745556871725, + 0.2535940706755381, + 0.575039171851792, + 0.4011822963335583, + 0.17700283737112618, + 0.5480392155789222, + 0.3483789535730471, + 0.41999631501344953, + 0.5225204953397876, + 0.3623487241214693, + 0.4478533465068518, + 0.3005320203380819, + 0.1472676982618673, + 0.33412598762953327, + 0.13195417876707255, + 0.399446841462349, + 0.3092607312496915, + 0.2577210444217639, + 0.570183724213894, + 0.5462831280343645, + 0.4835411400254056, + 0.35000551430373694, + 0.03281866099985509, + 0.4546343465860892, + 0.3688203644729194, + 0.2882706663817929, + 0.6493725373406952, + 0.4206031375821295, + 0.7095207716470692, + -0.053881105132101925, + 0.27344371971145776, + 0.7510240297798081, + 0.5599974136861792, + 0.5218099897717736, + 0.27407531323110346, + 0.3513403358096209, + 0.5508304204010879, + 0.30172673679716167, + 0.5386964712897543, + 0.3621736310149043, + 0.6906640865765026, + 0.11542044000023705, + 0.3746549049574153, + 0.27791230727384875, + 0.4420028395448849, + 0.17243335917404518, + 0.4912590508179433, + -0.0873242438943862, + 0.12754510608562514, + -0.19889848539396127, + 0.1735880977658275, + 0.6709832266041416, + 0.6196467895007176, + 0.7923165399743733, + 0.5781299728293733, + 0.12943135805381267, + 0.5372745715873931, + 0.5850714507781423, + 0.6984243381371175, + 0.37275675307702566, + 0.7965417187570549, + 0.688086306616128, + 0.6053277240796064, + 0.3256782636308497, + 0.3103766105759942, + 0.21194670192371423, + 0.4503305294983228, + 0.2213997495687746, + 0.5958649896577538, + 0.9055943782345215, + 0.5249232229703419, + 0.27902644411167077, + 0.5027865756061027, + 0.6325350819289511, + 0.19242459102067838, + 0.44962086227102466, + 0.32796209168502977, + 0.3932407435684986, + 0.5551699607034042, + 0.6427199746241296, + 0.5699241239610731, + 0.456087926190401, + 0.25048175393767336, + 0.5696139683860995, + 0.17197162570442903, + 0.4790432362579177, + 0.5447539747000489, + 0.19104143675285845, + 0.5455594144541451, + 0.388564197934387, + 0.35615708680583186, + 0.3654246746071077, + 0.6117765670331735, + 0.5421014969257679, + 0.18308970212997683, + 0.5531762882025403, + 0.8128586056221888, + 0.7480943670007286, + 0.810863850305791, + 0.7387318609108587, + 0.7093647364831506, + 0.4308380581651404, + 0.6292764178645367, + 0.5088435486952329, + 0.39100965858529024, + 0.6639745782456126, + 0.9123418563371812, + 0.5490404585452967, + 0.27355871053295117, + 0.7170601941344013, + 0.32915467622431316, + 0.5079839993053372, + 0.8254042080794057, + 0.4848423842310777, + 0.433243005058989, + 0.6140138276743592, + 0.44988398385236295, + 0.8622220873780428, + 0.35438789707654783, + 0.5990945106210375, + 0.4845387285342292, + 0.6679335310146692, + 0.5150409802712823, + 0.2958897524381375, + 0.8001273069859232, + 0.7002412502930015, + 0.35124025314631446, + 0.6004640738071496, + 0.412275177040651, + 0.629343265802988, + 0.7624399373014903, + 0.5775589028047524, + 0.7709336189768418, + 0.802319190707191, + 0.7432500173741463, + 0.3586473643893872, + 0.6300575188596057, + 0.6400117213883162, + 0.7843130800350409, + 0.8430245863143147, + 0.9348386094859373, + 0.7671551266520518, + 0.9923659120007817, + 0.23712939709753056, + 0.6486293898079343, + 0.2507338833692973, + 0.8729075468528451, + 0.798937581801797, + 0.6150177540761836, + 0.6787421107919673, + 0.7078516987076423, + 0.9404066590805764, + 0.7226608694403672, + 0.7445926456730602, + 0.6389031842467439, + 0.7218606500027951, + 0.3883960822094462, + 0.36323119294946565, + 0.8585225064058086, + 1.0568150669226948, + 0.5968210967111338, + 0.632785587828803, + 0.8348866404253328, + 0.779230207200816, + 0.8075689965729504, + 1.0905074079527295, + 0.8796392946699715, + 0.7648401076315811, + 0.6453811654712927, + 0.8251389316906215, + 0.6946845074536575, + 0.694471314543655, + 0.7514186125701441, + 1.1040762578976722, + 0.5705001054449579, + 1.102745798300913, + 1.1504057899257225, + 0.9709034820102391, + 0.5417872443193876, + 1.1432577656107792, + 1.0750537608010462, + 0.7143015496367646, + 0.8002043858442306, + 0.7827931405858266, + 1.0379601444740882, + 0.9391762377226526, + 1.0400091590931202, + 0.6056878540273507, + 0.7340887848842927, + 0.913341293969957, + 1.1750634646047133, + 0.5331454489543327, + 0.6813244051538022, + 1.1618027646007818, + 0.7655549919238743, + 1.0465056135167994, + 0.8043382430203048, + 0.9217271941826377, + 1.1562300350560515, + 0.9519786210157617, + 0.849553682975012, + 1.1831481404414146, + 0.8605017577432307, + 0.978335069670985, + 1.1499319544178794, + 1.080741833205494, + 0.879151412780381, + 1.1943405653573316, + 1.038030280232605, + 0.9600564773553042, + 1.1204224586533202, + 1.2989736550207935, + 1.0922896924711032, + 0.8266307602838987, + 1.183618964744357, + 1.1653611384941902, + 0.8831881057798292, + 1.2550559900971836, + 1.5588921336785015, + 1.1191189069190903, + 1.0528765842582628, + 0.9604035946106306, + 0.8964608574416204, + 1.1094062111794205, + 1.2343332383516106, + 0.8117689492425388, + 0.8885327174099636, + 1.2298464573097756, + 0.8346926338116691, + 1.072534138564147, + 1.0253309674684445, + 0.9496951687519408, + 0.9344929653765726, + 0.910844097243911, + 1.0417397967404942, + 1.2324383352057386, + 1.3967941222573286, + 1.210661918512133, + 1.1560291810868963, + 1.3310852768957995, + 1.0988360576271716, + 1.026159934783918, + 1.5028614599653813, + 1.5535692160436614, + 0.8251345402696734, + 1.2402086709317437, + 1.0710709386643293, + 1.198212310329821, + 1.120868995094228, + 1.3673944498757062, + 1.2936060013433301, + 1.3248608009444858, + 1.434994792197036, + 0.9918378343028859, + 1.6275880902771727, + 1.1791910841775768, + 1.1390011534621212, + 1.4535776319237748, + 1.6292562675027809, + 1.5944472917681811, + 1.1554200841780107, + 1.4120469638842603, + 0.9190323065131891, + 1.318499582229967, + 1.3049997003444371, + 0.9952581182434577, + 1.8706530300549102, + 1.1112550548237476, + 1.5942207513698696, + 1.519116858709078, + 1.5170157134569195, + 1.7563161927567235, + 1.5941344344718145, + 1.193465605854488, + 1.6441582881716559, + 1.3138961121418806, + 1.1952940214660104, + 1.583886063346167, + 1.479913010986324, + 1.431989682906317, + 1.7670163597722952, + 1.4524074738769928, + 1.2111142290427381, + 1.3774452249038756, + 1.5040698084986235, + 1.995967652704301, + 1.7336636661703304, + 1.6465215456050952, + 1.5683584464119886, + 1.5811036743660494, + 1.464616040656092, + 1.3037698421803654, + 1.7717131820882006, + 1.6417314662540219, + 1.7561095244665772, + 1.7475617829387413, + 1.39503911882433, + 1.5913520777445476, + 1.6791126648112549, + 1.4699765203592554, + 1.6834219554684462, + 1.1945452600284823, + 2.0716731647004, + 1.9002772540786161, + 1.8978881827837601, + 1.7102291842049153, + 1.60295949577118, + 1.761550670325965, + 1.8050467874517635, + 1.3671190360829348, + 1.8025068292192639, + 1.5346844712658696, + 1.7828507792973018, + 1.8321928170973012, + 1.6456199250577304, + 1.5393978014264065, + 1.6555534414679498, + 2.153776464444714, + 1.929380634083775, + 1.9207429393482591, + 1.3401133474951532, + 1.6009509429667246, + 2.2435270931157425, + 1.840629719953173, + 1.78243767811985, + 1.8716909992789987, + 1.703301150898063, + 1.927211041279273, + 2.070895241465257, + 1.6391045312171495, + 1.8756178648052246, + 1.6155971512009513, + 2.0243932294640685, + 2.21666452531604, + 1.7677307934254067, + 1.7563826446139312, + 1.711035781892395, + 1.931360694944711, + 2.3583534561513733, + 1.9884266107985886, + 2.3710857008148802, + 2.0627990724891756, + 1.7856029239398405, + 2.0133986388372227, + 1.8597405176126456, + 1.8726596898138936, + 2.3284623269681015, + 2.2493985937788885, + 1.745037841421561, + 2.393037672458996, + 2.4102081655029908, + 1.9475523691346517, + 1.6901966356946054, + 2.203456702396136, + 1.8569143397434718, + 2.377665067562595, + 2.0069632985102888, + 2.376130107181796, + 2.173752004058829, + 1.7825271988987346, + 2.3071982457127054, + 2.228226241566004, + 2.219296759038157, + 2.259997261011568, + 2.141343844230064, + 2.1218194865789486, + 2.315818495841543, + 2.420106014567537, + 2.263399343718171, + 2.2779383477109847, + 2.486060325544038, + 2.2406490650041797, + 2.4298322878416982, + 2.4357860365259723, + 2.2962400085119814, + 2.4895126800707086, + 2.5680352667940083, + 2.0214071823292645, + 2.5121140044192196, + 2.3565558475183064, + 2.445375726811701, + 2.1536062124566677, + 2.1798631395097217, + 2.3706279249175397, + 2.594793867310466, + 2.534350739959921, + 2.191150897046363, + 2.639816644694055, + 2.576943877120684, + 2.49166414586844, + 2.469541337494195, + 2.597263035538454, + 2.540178019836893, + 2.3594418530887427, + 2.736822166148661, + 2.19106507055446, + 2.460216804313716, + 2.455731186535663, + 2.718380983200751, + 2.5741904188368703, + 2.51863197255075, + 2.530850357127208, + 2.5644265618966373, + 2.5539257520779244, + 2.665969741563967, + 2.6324027419700236, + 2.8263197852968918, + 2.6229860667906157, + 2.40703538256794, + 2.5542980685647074, + 2.452165608004765, + 2.7953944633709478, + 2.9008547760087975, + 2.4834234594945204, + 2.6720776913766295, + 2.875336506673864, + 2.4718045499861203, + 2.3812027534458786, + 2.7276471394700605, + 2.6871197147386097, + 2.667839127496139, + 2.695395021700359, + 2.7893717937262608, + 2.5273942417812436, + 2.470887691720586, + 2.6183181969785987, + 2.458806721728997, + 2.7396326664538364, + 2.607780512570685, + 2.391504924523212, + 2.643029933689863, + 2.718274013228924, + 2.9618723217415313, + 2.649682412861892, + 2.5559721772993083, + 2.6064453686743376, + 3.151263617014078, + 2.991058628489603, + 3.196677478616086, + 2.8236387071417908, + 2.776962730972754, + 2.780559496324605, + 2.7559043467514046, + 2.835183137315594, + 3.113961351187949, + 2.8159451884733713, + 2.952091786595319, + 2.7509452400846546, + 2.8764998592094035, + 3.3959023482326414, + 3.213305621268478, + 2.876342397840582, + 3.5039724293500822, + 2.8537797124187065, + 3.070329720822525, + 3.012686603292235, + 2.832320607300312, + 2.8225126521766994, + 3.1902161662001616, + 2.8827685561740752, + 3.117320418484889, + 2.957395101524728, + 3.109993832872892, + 2.9957300520694967, + 3.225829298728704, + 2.8621806341948126, + 2.905457460646204, + 2.9003033845233968, + 3.172718149017326, + 2.9797255179592246, + 3.214631406245, + 3.1611183170904393, + 3.313773273394383, + 3.110890871929491, + 3.2010558259370776, + 3.2238407430249563, + 3.0378186776166336, + 3.2246398615874003, + 3.2362920718876502, + 3.2935202475065637, + 3.1660652253060158, + 2.9226627721985357, + 3.4160645049750085, + 3.4511640090403843, + 3.006881406799234, + 3.2139002978931797, + 2.957941951777789, + 3.094970045294186, + 3.2831138560939723, + 3.367929074772486, + 3.321700682045877, + 3.1568881524131935, + 3.4835401859497406, + 3.406804959494939, + 3.6556034414949954, + 3.358545181487114, + 3.163873809941201, + 3.101119109679663, + 3.3247481619797856, + 3.465485548576269, + 3.3158205462512154, + 3.5376464040787665, + 3.4805974976719156, + 2.936509395356436, + 3.7647342465529032, + 3.4641550042257214, + 3.4288134802870425, + 3.41509555312506, + 3.370581469122964, + 3.8369900648961845, + 3.3468137341436193, + 3.5534641774971445, + 3.3754967630173724, + 3.22609142481648, + 3.669386975012998, + 3.773747771071918, + 3.538713758492093, + 3.240780874413308, + 3.4308994846402543, + 3.3208043487499572, + 3.139148751981446, + 3.906516886173936, + 3.6856777884981935, + 3.6008532609368022, + 3.6392124788172153, + 3.3604310918427647, + 3.350997475845777, + 3.2811424966910807, + 3.967201057937023, + 3.5180195065058943, + 3.496719399584171, + 3.8880922556883526, + 3.6108483225879353, + 3.4727120653911108, + 3.466018462221758, + 3.492263463824846, + 3.3973845298915237, + 3.3942927296836656, + 3.3224958363912744, + 3.655064628810418, + 3.282622513051607, + 3.7362403587717425, + 3.8661316577629234, + 3.9466424945299177, + 3.7435494492843775, + 3.6803958433173105, + 3.711820801487586, + 3.914861187056362, + 3.840786075162012, + 3.861877090862385, + 3.3006191661938113, + 3.7374133208505427, + 3.9724690404334533, + 3.452178389228382, + 3.6308720571003588, + 3.66147893341056, + 3.6077698141883117, + 3.876769357665597, + 3.8148286324086498, + 3.4343070235716344, + 3.785701033549592, + 3.8693635373607944, + 4.009643671251615, + 4.0821560652357665, + 4.042795406907946, + 3.7095542869712053, + 4.049146246342484, + 3.7753840849301317, + 4.06128760023729, + 3.9279266388936125, + 3.8538394672659146, + 3.739650924534469, + 3.7915311004146943, + 3.9972531173967214, + 3.4264778237177778, + 4.071053004593557, + 4.275299144620842, + 3.789757548130953, + 3.7950800005531025, + 3.821019436099258, + 3.8364335476219313, + 4.003145791341211, + 3.7734044315749316, + 4.028924161362462, + 3.973744358030796, + 4.011537863565968, + 4.104761257272351, + 4.079870393447211, + 3.688736596516222, + 3.538048739180279, + 3.6872183718702436, + 4.289282613172457, + 3.967435609197686, + 4.208113840635488, + 3.664857428160653, + 3.9121349206262783, + 3.9392304936112077, + 4.108088977440436, + 4.0620632204792475, + 4.321378766045335, + 4.026561843537656, + 3.9402862158374248, + 4.312427813175665, + 3.850420661861141, + 4.019221169348731, + 3.7339922829203975, + 4.152408355664794, + 4.034158494467485, + 4.092390822807201, + 3.982519323380698, + 4.053021680842151, + 3.8004327510913973, + 4.169017075823017, + 3.881844492988439, + 4.136587774954083, + 4.307096132992548, + 4.009427931198913, + 3.9392143416219416, + 4.624276341830815, + 4.418192655682832, + 4.294120538028158, + 4.642040156188303, + 3.984882042093483, + 3.9346987856268973, + 4.393690356570517, + 4.288846745450521, + 4.219089779930472, + 4.50253813137004, + 4.1627274104337895, + 4.251360951516668, + 4.387348104426929, + 4.237845372611353, + 4.197502377702621, + 4.147255564872017, + 4.119117067656981, + 3.939053315175836, + 4.185434061582112, + 3.8325391850161936, + 4.237829662210662, + 4.331551673679368, + 4.130541028859028, + 4.060816481383582, + 4.394575189456972, + 4.239753450295579, + 4.380723652295384, + 4.1758767900099985, + 3.990069286257748, + 4.36824432948279, + 4.080933265886523, + 4.831951194514385, + 3.98690262700233, + 3.8292957989324607, + 4.325926059469746, + 3.85044732288841, + 4.127104964474754, + 4.288255665273569, + 4.295969310232414, + 3.9780626111055177, + 4.429316716117711, + 4.195014685044261, + 4.517939267014358, + 4.296442891277354, + 4.131838412383054, + 4.29324107367334, + 4.416905293290016, + 4.381924424068136, + 4.241319416675017, + 4.191477377851227, + 4.31143627490721, + 4.205483318574653, + 4.3563101461396, + 4.286875988264573, + 4.08397969016744, + 4.564922584140009, + 4.135549844229668, + 3.948171374722349, + 4.125060115215138, + 4.344938606454702, + 3.939750270695661, + 4.250791742788896, + 4.302523776759334, + 4.093750229759394, + 4.532007805500403, + 4.240191932377774, + 4.492039138648323, + 4.388829303562137, + 4.513332256206492, + 3.9955009866426083, + 4.4175152718407675, + 4.502283558316875, + 3.9232725286968586, + 4.353948893664376, + 4.2371133521987066, + 4.280774761800759, + 4.352914865949031, + 4.069775675124118, + 4.459667027081987, + 4.391120092561393, + 4.24823946512393, + 4.245070392668372, + 4.596399071562152, + 4.73651733190995, + 4.571578454798003, + 4.311193240554308, + 4.356394593740145, + 4.592864321166372, + 4.178544384420501, + 4.14067828863626, + 4.323215201570812, + 4.580079456495521, + 4.182727435865067, + 4.235029799793234, + 4.535976375761371, + 4.364208935207977, + 4.403928130914594, + 4.421049796068295, + 4.2280250506249075, + 4.489223949707661, + 3.8012290925503023, + 4.19719460013379, + 4.602937626984772, + 4.307611347975583, + 4.287855242509316, + 4.037536466096828, + 4.470030026354556, + 4.520031825388673, + 4.196732073492662, + 4.2813942478441, + 4.2323115491291485, + 4.1832923975659355, + 3.948602600955632, + 4.611684048019343, + 4.380225505330117, + 4.526393901541845, + 4.24709768157038, + 4.406588627713798, + 4.251851098142228, + 4.288449921803774, + 4.458999270330189, + 4.313304640856126, + 4.606273415596675, + 4.60136760186102, + 4.4575619888057725, + 4.556143780006487, + 4.249783751483732, + 4.231032096323014, + 4.701819550918076, + 4.369112547167243, + 4.4235152821214, + 4.390614752157239, + 4.306021448459738, + 4.294487932767517, + 4.298636046525192, + 4.512868380305312, + 4.179206613276356, + 4.228210494866704, + 4.275112975526091, + 4.795300527992137, + 4.674465930102156, + 4.357201972709482, + 4.618611012549677, + 4.2655341430825375, + 4.45474049001212, + 4.176850624183978, + 4.191878586579088, + 4.2837218853087995, + 4.281066334833325, + 4.414085194896694, + 4.110283162925757, + 4.598287655283397, + 4.421978805878836, + 4.702782696966423, + 4.888076832219309, + 4.496684029526213, + 4.154029038172616, + 4.448158223075302, + 4.448323792474315, + 4.53992294756269, + 4.108799150736543, + 4.258200203979834, + 4.426140241048414, + 4.519517615126049, + 4.35636484026803, + 4.293979558583362, + 4.1769850803551964, + 4.538323256919126, + 4.116772318239901, + 4.260668134916942, + 4.315197759850391, + 4.200972002883532, + 4.487327646669563, + 4.502122802094845, + 4.678653199191928, + 4.448875964272092, + 4.100419206917661, + 4.585191196537745, + 4.272898658823672, + 4.66414657626035, + 4.08460708828042, + 4.226131142513596, + 4.571210871107864, + 4.278878726625066, + 4.233595219384974, + 4.4109237581850955, + 4.334173739398866, + 4.196120444873086, + 4.544842103265862, + 4.257540854787246, + 4.3400575553721605, + 4.168196230048968, + 4.545574648740153, + 4.656629801940527, + 4.292650851922579, + 4.129062337887523, + 4.16800243160665, + 4.350504973009199, + 4.592584096746479, + 4.562880645025395, + 4.365406363956923, + 3.7961907244963005, + 4.2161773785679015, + 4.350917463053875, + 4.277941442663525, + 4.424442692672485, + 4.281852754535681, + 4.009922508696382, + 4.492895031469576, + 4.413090575420883, + 3.9118053512822093, + 4.097607504635967, + 4.189168695597983, + 4.172656487381006, + 4.088015538923818, + 4.225893660959874, + 4.24688271341835, + 4.350411214887273, + 4.142446097578242, + 4.296013221618256, + 3.8648744123580547, + 4.063748410419736, + 3.941377352176811, + 4.222816206014635, + 3.901632799539422, + 4.050372656489783, + 4.4283201741783245, + 4.437133222556282, + 4.049834961113074, + 4.2026474993420315, + 4.420642979371811, + 4.148000747270061, + 4.245025899393046, + 4.106786317320155, + 3.875795217588036, + 4.109785964213479, + 4.1527607806087, + 4.296542596705438, + 4.164520758968587, + 3.9113940073117357, + 4.088475084357103, + 4.30421207437562, + 4.4214978164232415, + 4.5764327088922245, + 4.14554369529729, + 3.9717448916856037, + 4.128696733875024, + 4.322729637077917, + 4.151169185635504, + 4.191103117339718, + 4.01884677403869, + 4.026746435663736, + 4.27100217590355, + 3.7738819695717734, + 4.116955912519983, + 4.027916019680269, + 4.016426591904685, + 4.3409346890047695, + 4.0507677492222145, + 3.962597145164863, + 4.240717700993477, + 4.5753787550604725, + 4.053688625006331, + 4.097570361591303, + 4.250101856403587, + 4.2068097624662215, + 3.82681754463233, + 3.976934812197965, + 4.015962792928776, + 4.27662700556849, + 4.085311920233243, + 3.9939873822323495, + 3.8658499326544375, + 4.369197410209, + 3.873088280487834, + 3.9183567061679416, + 3.8798036938278306, + 3.7671773924052805, + 3.752339555348032, + 4.014096571116023, + 4.00326486732686, + 4.119181383079873, + 4.158273923023961, + 3.6963877846298567, + 3.5454447967062603, + 3.9987161604380383, + 4.051314188378753, + 4.017672728379234, + 4.085472976655819, + 4.118568807054255, + 3.631037666056994, + 3.564706353129747, + 4.076264268103681, + 3.774931712941616, + 3.6866096026957904, + 3.939286076861907, + 3.6410417031031668, + 3.5956542650167878, + 4.017844803495425, + 3.63396646173553, + 3.698854840208776, + 4.026580376185503, + 3.5966434959502407, + 3.863740481066402, + 3.868476591844319, + 3.8023528794622283, + 3.6645258921234, + 3.971224543190457, + 3.6743815054343734, + 3.8921510805837, + 3.9420998800328797, + 3.8388251188295044, + 3.8345978769356215, + 3.654163713137581, + 3.617211424148551, + 3.6723114308485005, + 3.5304367104646346, + 3.574082812291394, + 3.723362011974468, + 3.79959632362351, + 4.260266643052857, + 3.8021510914211474, + 3.579520597465403, + 3.609732605291044, + 3.670642762082601, + 4.054815964334478, + 3.5850722370979704, + 3.858330249124853, + 3.60985427572538, + 3.5763826348724996, + 3.7794314029132003, + 3.6122053194592887, + 3.9820928418737527, + 3.7686192746695943, + 3.645623293266469, + 3.296217564230715, + 3.6106731601829947, + 3.566173224079178, + 3.493070048590828, + 3.738609559345931, + 3.8804958010165276, + 3.6550348221711073, + 3.5575012140516633, + 3.4494900837738913, + 3.391550257483641, + 3.2413256453024615, + 3.6218729618530543, + 3.720241797978511, + 3.4499936939707574, + 3.785769560615615, + 3.2729714402996453, + 3.3544551604972135, + 3.6385270814948685, + 3.5840605826284393, + 3.475317266279904, + 3.193311971447016, + 3.4217925051267444, + 3.7975533519291966, + 3.4660415348260747, + 3.730090331832273, + 3.741206663842171, + 3.6045681927961257, + 3.3280854413370506, + 3.500201080406207, + 3.1556105591585797, + 3.720090770948697, + 3.518463724963393, + 3.1048065576859734, + 3.724324526343284, + 3.2481040215812667, + 3.3994385765513453, + 3.507785262400508, + 3.4057162705016286, + 3.372696899180661, + 3.4041165682132686, + 3.179524719202431, + 3.1757432111660457, + 3.256935333395507, + 3.576308367987499, + 3.2718457366191904, + 3.3189985219280222, + 3.1903810898893394, + 2.9145929292426955, + 2.7214885167388623, + 3.2105234430162763, + 3.2261831607364697, + 3.092972790640673, + 3.2886984884434685, + 3.348928852617496, + 3.3927915849645025, + 3.3615970847501195, + 3.3460990541618587, + 2.9812798531704927, + 3.071806930730838, + 3.387486506648499, + 3.548676623688916, + 3.4135675603204096, + 3.4491347652171207, + 3.205981949527977, + 3.0892230511128114, + 3.149267864325703, + 3.2047415437445963, + 3.494724356179619, + 2.8734952620760748, + 2.8658865658729833, + 3.27691470678307, + 2.874449495969585, + 3.2409169159202817, + 2.877226520716801, + 3.0407843580435827, + 3.5075862013457066, + 3.027533114121502, + 3.0923341926071792, + 3.1374049362278145, + 3.161551756316478, + 3.086721746836979, + 2.4582473687492605, + 3.453486542368994, + 3.102269827349078, + 3.0720362180461236, + 2.503934740661848, + 2.632384139954268, + 2.9376141869715213, + 3.0757460320950467, + 2.6924127442703356, + 3.0074833521111235, + 2.6854520006230826, + 3.152172068593906, + 2.8508608059029257, + 3.0461095526703, + 3.0692809833137407, + 2.993320214081403, + 2.9309218576345315, + 2.6876959118144503, + 2.7746766171115107, + 2.601552626709014, + 2.8677465849249253, + 2.9180576342417552, + 2.810023497167246, + 2.944059331522332, + 2.6589631344916764, + 2.985642549284909, + 2.7545372060394464, + 2.6006025277600893, + 2.642017063590491, + 2.9927580312771496, + 2.7902131336543126, + 2.7396633989430534, + 2.5804216299864318, + 2.5711643046627795, + 2.6641734268747967, + 2.8986959924108633, + 3.008615131681313, + 2.6712164607351547, + 2.7426897586608563, + 2.705411276924061, + 2.352767939935991, + 2.6942717839024066, + 2.787895776227607, + 2.6530058609783254, + 2.642064950391806, + 2.416440195925086, + 2.6360148384878057, + 2.6852351558622902, + 2.7094157934160186, + 2.0911945550221778, + 2.5156063248336356, + 2.492236578934839, + 2.499418378778355, + 2.4181011505820487, + 2.797397307697356, + 2.4786130182863366, + 2.464883357629945, + 2.38103085925137, + 2.1664456136681327, + 2.577878910889165, + 2.549183371163699, + 2.6731106957205175, + 2.3169570852221946, + 2.4955083958994226, + 2.3517961755653123, + 2.464692808072944, + 2.543636505808333, + 2.409584352219145, + 2.0595557128224855, + 2.3016262002202805, + 2.461672498115003, + 2.7732280348792466, + 2.2145237970480545, + 2.2006166033656793, + 2.315383066119157, + 1.9884005754123533, + 2.3426120626624667, + 2.452080589675272, + 2.531148923256468, + 2.5357709799777868, + 2.4198806905951247, + 2.4916706698778746, + 2.250981593930527, + 2.3912601732089027, + 2.0812859787842197, + 2.5046918044293527, + 2.213538345636687, + 2.267181808275188, + 2.348964213771953, + 2.3080284925338894, + 2.151791357136791, + 1.9865081672212117, + 2.2864263568108067, + 2.6734438260820976, + 2.2733996571437736, + 2.3781833160094457, + 2.4396058768725775, + 2.248509856138138, + 2.025322436587551, + 1.8900490737320708, + 2.144322333286052, + 2.245645834151254, + 1.825550861844753, + 2.3055700395756933, + 1.7322000420785288, + 2.034914210191242, + 2.213805508913815, + 1.780171889944127, + 2.1898896687104212, + 1.8216766311429076, + 1.6609457958776754, + 1.9853284453386932, + 1.8224794642822024, + 2.159273128668603, + 2.252142154793525, + 2.3177464831209034, + 2.3034396069091945, + 1.7112262300143022, + 1.5896767615222134, + 2.1282467083771057, + 1.9393206370057094, + 2.0951704183762407, + 2.3063325470870826, + 1.9064015672210985, + 1.5008282396645942, + 1.7622918977881226, + 2.118174688096258, + 1.854184514606986, + 1.954792707821851, + 1.8424234676654454, + 1.9645304431113921, + 1.6335405803890382, + 1.8664984890652772, + 1.9742057112242972, + 1.603931538550719, + 2.1721161775191256, + 1.9604849408786598, + 1.9779672856477886, + 1.6868741555583513, + 1.7359134888196752, + 1.851894344006093, + 1.7282111780606397, + 1.8127053410478915, + 1.902148535964667, + 1.9436434410867185, + 1.6269025120182072, + 1.8802208340578748, + 1.5087899303933892, + 1.3074284073247102, + 1.827801589788871, + 1.6601749930667375, + 1.8715437249244429, + 1.8821257813094183, + 1.5036177714058387, + 1.8256446965353144, + 1.7883692599460332, + 1.6780016005396061, + 1.7910176176214034, + 2.0126004255645644, + 2.016718959302695, + 1.694506190157873, + 1.3176832774990288, + 1.5071641150926136, + 1.7795001590875978, + 1.586752114260643, + 1.557907198947206, + 1.8305099432168745, + 1.6854786056395943, + 1.464261382160454, + 1.3876885864395894, + 1.4817189692082018, + 1.34384215955617, + 1.4166209624961439, + 1.4147655493088753, + 1.1705114883160435, + 1.5864691743705026, + 1.50587089893438, + 1.4741601189303035, + 1.2663825050568285, + 1.383609461201045, + 1.4304965990566176, + 1.4171859059203418, + 1.7376396511466052, + 1.7052214243323272, + 1.5330537792534569, + 1.084962828056009, + 1.6594848240266813, + 1.3986347244238813, + 1.187730565297974, + 1.3247058904925, + 1.4748478488926016, + 1.2363839893763025, + 1.1871873009803935, + 1.597800275127542, + 0.9821902521077425, + 1.257373813619671, + 1.4177701756383685, + 1.2314235269648475, + 1.6035773529053414, + 1.3319429886900294, + 1.189296483288484, + 1.3122080705143153, + 1.2079638894043336, + 1.656218965689263, + 0.938246873313086, + 1.3210219773306664, + 1.1921960562251053, + 1.0295054383219733, + 1.494794549844967, + 1.3331803122427324, + 1.1698830388618164, + 1.304571414430324, + 1.324770126627002, + 1.2063682755799217, + 0.8135122549262154, + 1.328679274965948, + 1.1262511848299779, + 1.2854207610645276, + 1.1895849247831227, + 1.2233247286688207, + 1.122254309025275, + 0.9475328457181131, + 1.1019451887447382, + 1.2483235418318919, + 1.0753618496298762, + 1.493799072525881, + 1.0807892661688319, + 0.9799428999582894, + 1.194582707146812, + 1.1292006057537778, + 0.7305005949898089, + 0.8147337878148859, + 0.664466553483424, + 0.7551661077293568, + 1.1274959964922424, + 1.0221354884117935, + 1.113914087093409, + 1.1331241615038945, + 0.9966314354519351, + 0.9939325958606045, + 0.9860847550712374, + 1.1439849206530621, + 1.3199353142445804, + 0.8011378942204257, + 1.0020090048532047, + 1.0219732664599308, + 1.2232272504884374, + 1.023990904644305, + 0.9982508911954584, + 1.4413900231390957, + 1.313217281979851, + 1.0745154171205433, + 0.989449092408672, + 0.7825780099165895, + 1.0393039834074291, + 1.0453615451247176, + 1.2271415496693099, + 1.162817808103483, + 0.8541992927869989, + 0.8994366949354218, + 0.6607746304275603, + 0.9389791347819693, + 0.9218165503801182, + 0.5409853695062616, + 1.0701427784445778, + 0.7667046760309236, + 0.9139504428702402, + 0.9242205305507644, + 0.7994805647109143, + 0.9611874644909393, + 0.6671139708917115, + 0.7170976989817124, + 0.7306773870337071, + 0.4831832919024872, + 0.8709635434712524, + 1.1214658553880872, + 0.8225696769570829, + 0.9205157471522225, + 1.080694075403725, + 0.6910416002576646, + 0.721072140929399, + 0.6938725820372648, + 0.7495613659052117, + 0.998644507762344, + 0.7149415736306723, + 0.8214456565114348, + 1.0531787840610507, + 0.8771719563910951, + 0.5436936502454353, + 1.1925290784988416, + 0.873556160617637, + 1.045050999955804, + 0.7691364994949801, + 0.7840375010420457, + 0.5371894704758334, + 0.9832254481094929, + 0.6660988056873252, + 0.9533162415661645, + 0.530149466178874, + 0.631042892675785, + 0.7852634122592601, + 0.7885354488890213, + 0.5314137886668728, + 0.7657041171782202, + 0.7202223686112468, + 0.548499316854188, + 0.5061615635599102, + 0.4540838612926109, + 0.5622165170103299, + 0.5970168813159309, + 0.45145791481682895, + 0.36969673970332073, + 1.1074427105020601, + 0.6740605627108942, + 0.7708282473296342, + 0.2906781603047301, + 0.821031551218793, + 0.7040066033381814, + 0.5075245190836584, + 0.4674290091229246, + 0.6179268133198721, + 0.914996541873563, + 0.3760128893289775, + 0.785781250997707, + 0.7096543689226804, + 0.9435753597993954, + 0.5640440601974287, + 0.6342407525691399, + 0.6593838084641093, + 0.8219361240071255, + 1.0519018673950993, + 0.3944134810920793, + 0.4912164469686582, + 0.8030288261535922, + 0.4780814112777981, + 0.44636807785262356, + 0.3709373567566612, + 0.4153458348185748, + 0.469375500054547, + 0.3660659839921774, + 0.4242250231983903, + 0.570253713638818, + 0.38074037329862975, + 0.5855826369157331, + 0.3703797245628466, + 0.6490777570746452, + 0.3788143092940073, + 0.4385240776001581, + 0.5665389362107001, + 0.9106451624291747, + 0.6143763966170297, + 0.334458786071433, + 0.4856396229324241, + 0.44996634944528036, + 0.23494072108034808, + 0.6071728234288662, + 0.463376476031627, + 0.6368895522373756, + 0.8382230481941302, + 0.4784071748809802, + 0.9610378420006291, + 0.5360883833342978, + 0.40079272628012996, + 0.8945120837442062, + 0.6722911684863667, + 0.8136742159000994, + 0.6137847202652956, + 0.30699836467744757, + 0.452425455997622, + 0.5606122372376882, + 0.6530498258770666, + 0.733574740609571, + 0.18458690347196716, + 0.672151891467881, + 0.3824411319951413, + 0.4684469788810904, + 0.4038313244775751, + 0.7021861192835256, + 0.5817508252596816, + 0.7213673281256023, + 0.4760752740834638, + 0.41657092109072125, + -0.0018918978883666338, + 0.47460083270150866, + 0.3159052719349963, + 0.3231492549805919, + 0.4406257840613347, + 0.3975558227080229, + 0.6661627327720527, + 0.49022471674202317, + 0.39665701506819256, + 0.3741250181603961, + 0.2680107765430769, + 0.8110361653723669, + 0.747255806766967, + 0.21747643799622315, + 0.2611200876425033, + 0.4667657508939028, + 0.3915320144769652, + 0.6850201613065037, + 0.2487184136352102, + 0.31369357060880537, + 0.4319502905943486, + 0.08145868972884945, + 0.5196123632149249, + 0.4999394756109238, + -0.04336507878661533, + 0.5147152590867033, + 0.4510847230928998, + 0.3024928894700733, + 0.20638252592131193, + 0.4014574518321125, + 0.5533873956778596, + 0.45883589598102414, + 0.08899550545270873, + 0.5008868854988264, + 0.3445244017214608, + 0.3695354912608016, + 0.5795486400370964, + 0.5949497733077485, + -0.06035309883927914, + 0.15710929852297972, + 0.5105084540878799, + 0.6296646513164121, + 0.25750064146941165, + 0.4809397549949198, + 0.29091023974071645, + 0.1976212660701198, + 0.207846921528126, + 0.48861858343035564, + 0.3187303916028358, + 0.23999687429724756, + 0.549788609659603, + 0.4783344465226343, + 0.5626700971654353, + 0.3614250340019154, + 0.31619614020184306, + 0.2831272509879922, + 0.5684599840280969, + 0.2039011102265177, + 0.2921182678565539, + 0.0977934290770685, + 0.37019059476709915, + 0.38024603580367183, + 0.5426808574162791, + 0.23668613398012447, + 0.5883575855913953, + 0.29981373783890947, + 0.683020408612788, + 0.5142711835836117, + 0.45033566972954675, + 0.2750572761224308, + 0.40688682289518674, + 0.464974927392575, + 0.41288098197218936, + 0.21433593010513002, + 0.19945526168019023, + 0.6129827880330787, + 0.2526191044590782, + 0.45815218298773924, + 0.04570356039144868, + 0.17439342018995346, + 0.6548394533711765, + 0.47635762980507995, + 0.7311091036271145, + 0.2635833588922485, + 0.7881995645861751, + 0.398631187326415, + 0.2600645454911384, + 0.3557921488899486, + 0.3434383081067828, + 0.5329492026306583, + 0.3603428067916212, + 0.6332821283190566, + 0.6334550873918219, + 0.5897199302462972, + 0.6992828414718328, + 0.3025916102516438, + 0.2901494926243149, + 0.47582163612551553, + 0.3378391160781044, + 0.19446136592887592, + 0.8015676502814115, + 0.1550882610385496, + 0.5070019492911235, + 0.5918077929051183, + 0.47017682580371134, + 0.37298183320069056, + 0.5176963579176717, + 0.43722949242808096, + 0.19692613680381682, + 0.7705024017541141, + 0.7322898749782722, + 0.5607803214221687, + 0.5988584344437267, + 0.47030040256897276, + 0.36792141838396997, + 0.843294081727423, + 0.623489071478486, + 0.6991012715031748, + 0.40152143217459413, + 0.7906257470960982, + 0.6282663969120568, + 0.23269368641868288, + 0.26753251612109397, + 0.8965666604108892, + 0.7827136063977123, + 0.6866467314870285, + 0.4630734280398391, + 0.4253565084839164, + 0.46498727450834276, + 0.4298751199540052, + 0.3700372827652416, + 0.5615061776194665, + 0.8825444923026213, + 0.805212619412822, + 0.9774104236483754, + 0.06294137565656183, + 0.4010673352385925, + 1.1409541616851206, + 0.6949321420903971, + 0.6361193588485518, + 0.5714201680791883, + 0.8398693069970959, + 0.773148985936458, + 0.19283706633974124, + 0.6605255365945659, + 0.365834545177289, + 0.6644966972616371, + 0.6235954727442993, + 0.559818332355057, + 0.6712454618102007, + 0.7342899370720164, + 0.36269316514605987, + 0.45480753241243216, + 0.7091555459387948, + 0.633807268748168, + 0.6095559363716706, + 0.5950574631331448, + 0.7325947026311211, + 0.5391414714362865, + 0.3925311732557125, + 0.5917863528883546, + 0.7384807872762162, + 0.5110017077818708, + 0.6877446699432828, + 1.011283713036676, + 0.7632329360665797, + 0.36908125915001244, + 0.4167870479489909, + 0.6862112789589423, + 0.9218179411833032, + 0.4487201112837216, + 0.7503876566147257, + 0.5680730573186868, + 0.4337615977769724, + 0.4901114323681115, + 0.8982155572273938, + 1.220525766023444, + 0.7467908428127267, + 0.5325999356588323, + 0.7278653213764641, + 0.7848260538830859, + 0.8060839546991234, + 0.5857411253785145, + 0.39226152135524944, + 0.8368765848008739, + 0.5981950556799228, + 0.4007160762920563, + 0.7291635598806596, + 0.7754528068566849, + 0.9075592596135628, + 0.7809092935746379, + 0.6457156007346772, + 0.8653979768104939, + 0.4719540920776557, + 0.39750177272618686, + 0.8752551958967335, + 0.9569047817620047, + 1.1101969734576653, + 0.4276186036772087, + 0.6987136091158463, + 0.6754815359909587, + 0.611305606570329, + 0.738711831113735, + 0.8234842393349635, + 0.5760541326610624, + 0.9262757676398714, + 0.7939940535050976, + 0.9116852635174448, + 1.2968818149531112, + 0.4932587595300149, + 0.8622399934602515, + 0.8879702748780239, + 0.6411954285828898, + 0.6325000817040274, + 0.8336443711620223, + 1.1469277189588365, + 0.8701965310694055, + 0.8701877059658474, + 0.9609511773741738, + 0.8925788461212744, + 1.0972678884561586, + 0.7010668060845417, + 1.2629237874700063, + 0.7682530525541406, + 1.1123606195680442, + 1.0739258827495117, + 1.0615791965603207, + 0.8343669218989642, + 0.9638021980436017, + 1.330461471910622, + 1.4554570139965173, + 0.9765922503469873, + 0.82105503662946, + 0.9100114718749353, + 0.8240270446809894, + 0.7799251365117118, + 0.8670149739421129, + 1.0493016446668535, + 0.6535430165854064, + 0.6990909014576714, + 1.122625262227933, + 1.256193673500253, + 0.964964454966132, + 0.7584451674714822, + 0.8405344733278846, + 1.214489126376674, + 1.1560792307191505, + 1.3665815578267408, + 1.0547230657485538, + 1.3919240087778406, + 1.6174097438642905, + 1.1728206632706224, + 1.2778949886050843, + 1.457205158570707, + 1.2244752041666458, + 1.0050588124740774, + 1.173312343283246, + 1.1561786416194564, + 1.035674324647762, + 1.0037712082143742, + 1.0349100746186553, + 0.7833982284662462, + 1.2320173455644752, + 0.8192906734894876, + 1.504973250255167, + 1.453673881909673, + 1.0538605061201822, + 1.401219009340122, + 1.5430439868386765, + 0.986485806924626, + 1.3171350459719453, + 1.255633109641489, + 1.5410442513437153, + 1.5521571601103348, + 1.074441663082282, + 1.4551572656337832, + 1.4224030609183744, + 0.9894027005490545, + 1.579552754784781, + 1.219181373793215, + 1.52281950057433, + 1.2271093496279928, + 1.4138669696944346, + 1.0338840391077762, + 1.31156737645138, + 1.500441255452457, + 1.4269142732766966, + 1.5360658418161675, + 1.3237923185509843, + 1.4963314926166957, + 1.4136522087103502, + 1.304527657170552, + 1.5990506781036724, + 1.7270608779089767, + 1.4603051420358113, + 1.6595081853245706, + 1.4175535986965029, + 1.420726602221412, + 1.2240583520053028, + 1.1261790063842119, + 1.5077061138270218, + 1.5268693053229636, + 1.7464017648756953, + 1.359100677900857, + 1.1645490907878828, + 1.5439219887091684, + 1.7769645537152523, + 1.747406376062599, + 1.7740970999238022, + 1.730510757782271, + 1.6615135611681642, + 1.3777280547487474, + 1.695778142721722, + 1.3584457433166248, + 1.6516055153071838, + 1.5895026757766684, + 1.7020281960509873, + 1.6017705496514878, + 1.7580066872952618, + 1.5730339859645401, + 1.423247545625818, + 1.5059132834493414, + 1.5362658901779278, + 1.8950191300834711, + 1.5758432963064684, + 1.5832695107105244, + 1.8025108700999597, + 1.4970981333156486, + 1.2225034828868615, + 1.6741543763492146, + 1.8691826922038706, + 1.6545865992584372, + 1.844776616717721, + 1.8468685641050056, + 2.298725910068826, + 1.8372318645886359, + 1.771903589835952, + 1.878857064555186, + 1.7746666085021607, + 1.4929208827483371, + 1.6954323340321993, + 2.1018438533816215, + 1.687107024937434, + 1.7040752729765074, + 1.9835447612734258, + 1.9391467884106535, + 1.9442568165075502, + 1.5639526064257012, + 1.6559177866233177, + 2.070081706240278, + 2.113578868205058, + 1.8237598780429733, + 2.205346013000053, + 1.908302161464951, + 1.8018119764655498, + 1.7894918570594343, + 1.7531982325620388, + 2.0130171961706482, + 1.8083935968676528, + 2.22940369967768, + 1.7690522927821883, + 2.30331932745004, + 2.121205367932527, + 1.7739026209509494, + 2.26573138942864, + 2.472291678004259, + 2.115955760561198, + 2.427180313884024, + 2.025390208864925, + 2.476647650125475, + 2.0442657550175602, + 2.130906706668155, + 2.170581470092793, + 2.0581380124447253, + 2.011832797735716, + 2.031472174122394, + 1.7762547376983355, + 2.098911489925148, + 2.3964399051691854, + 2.289761659290609, + 2.089389152950472, + 2.2082154534377323, + 2.3210344621324417, + 2.3132124007470196, + 1.7952428610948492, + 2.077426876770051, + 2.1880005062717975, + 1.9836595704342646, + 2.226647746602554, + 2.273438835139665, + 1.9563849415220544, + 2.115304957349543, + 1.9411404240314196, + 2.3356234177132125, + 1.9957104910372667, + 2.218759422648509, + 2.059492531809556, + 2.3246095797960615, + 2.410063425653941, + 2.4103669428660925, + 2.200366187246374, + 2.5961924745896687, + 2.240066304124018, + 1.9150195212403018, + 2.161589446391753, + 2.4280391126337095, + 2.6377767121979856, + 2.5579207445947203, + 2.6738034048732016, + 2.269132026066616, + 2.3486621178931597, + 2.364848806335073, + 2.3990754616728642, + 2.490319760504334, + 2.520859243091855, + 2.6069110325437275, + 2.336852295636546, + 2.3949182970495317, + 2.1990210803192065, + 2.069613521165595, + 2.24295458548375, + 2.7088655904619845, + 2.739581595446419, + 2.7347813253147404, + 2.5466323868505336, + 1.8913662583850819, + 2.2866644922590402, + 2.297344342391893, + 2.4550466218490343, + 2.4463550917825465, + 2.3286592491347706, + 2.527619962621854, + 2.3194036787272543, + 2.767836940007477, + 2.660330601227902, + 2.5409402029340713, + 2.6873049279903487, + 2.81282643340569, + 2.590548184487381, + 2.6504767533097695, + 2.542818150730703, + 2.9801794770649885, + 2.860677275193742, + 2.802091592895579, + 2.9424794573627877, + 3.194275608912521, + 2.544538860244618, + 2.880424438183337, + 2.850435695710508, + 2.4527032039543784, + 2.611800577489244, + 2.57891895190387, + 2.829582113407607, + 2.822371453680613, + 2.563114223165228, + 2.833704058569627, + 2.8300109030179263, + 2.8199557480075015, + 3.0059833543741727, + 3.120057928316848, + 3.2811067802325162, + 3.1726498628518294, + 2.344731281537457, + 2.663915829909883, + 3.0450355041714587, + 2.9346769453317987, + 2.914437495043525, + 3.09702927047565, + 3.001244721770255, + 2.902933579517752, + 3.1633388346420697, + 2.804679470709595, + 2.694826557597687, + 2.856126089354898, + 3.1936950194033447, + 2.6040647779279698, + 2.684167469724751, + 2.9807150296503453, + 2.8091858544588515, + 2.919843313561524, + 3.2254590971368198, + 2.696218810998471, + 2.7729584726181513, + 3.0302323313862867, + 3.042163349905814, + 3.102931369759413, + 3.028056229552394, + 3.090157400387877, + 3.061591561991337, + 2.9578984256581298, + 3.0658720894062963, + 2.919617707259269, + 3.2301186343636683, + 3.043822311767749, + 3.317493110739906, + 3.559238736862964, + 2.949096211049192, + 3.474496598602177, + 3.293519162827916, + 3.1198831411904395, + 2.6008458795022307, + 3.2983353762245224, + 2.942003832066409, + 3.384515371450891, + 3.155092218302906, + 3.461402000773058, + 3.453280523788953, + 3.3360070241501067, + 3.2031053774021907, + 3.254618733150969, + 3.4685395469814373, + 3.1692284298071622, + 2.891647161749308, + 4.02314145862103, + 3.1408145748586973, + 3.0317794036881445, + 3.3613204209752277, + 3.3305892707433618, + 3.091027316053127, + 3.2646591346370872, + 3.5061801222586904, + 3.505136662919742, + 3.1540491596751945, + 3.3958819284864368, + 3.765283575213543, + 3.3625938643263833, + 3.2932770495050954, + 3.5163702960593617, + 3.3062885797847263, + 3.20968781510042, + 3.6081828947351964, + 3.4761745125394743, + 3.791295547966219, + 3.7234155198406316, + 3.4959136109126088, + 2.927317820766908, + 3.1371245192949715, + 3.2068190868732476, + 3.5761038279975867, + 3.5321338082610647, + 3.7781815571333044, + 3.469082041883581, + 3.448722294921939, + 3.5611655465439735, + 3.5916713603495665, + 3.3833685222951897, + 3.958733038307859, + 3.7015419736347246, + 3.3418403552750457, + 3.8293123990426414, + 3.534625354952813, + 3.91181901586309, + 3.585307414459865, + 3.263935572279381, + 3.4764065989129507, + 3.551050912731299, + 3.777219133503113, + 3.495606513850178, + 3.6172688516774705, + 3.5369034740351295, + 3.4245487949884814, + 3.4672144102083395, + 3.6510952536770307, + 3.566605337535038, + 3.500901188518378, + 3.5708443011885658, + 3.297015467539143, + 3.3124348575173856, + 3.5786450189323933, + 3.658122656361819, + 3.6558873785800667, + 3.794703211951322, + 3.797712154992194, + 3.8194194843579963, + 3.890211527961854, + 3.7857845713843217, + 3.371356312113976, + 3.5334245965699607, + 3.486903570181509, + 3.8731116928911815, + 3.334838946597471, + 3.749245011730604, + 3.7284737481253725, + 3.934688542268481, + 3.7440131262048153, + 3.895853103435279, + 3.4550186850510602, + 3.8197082423353366, + 3.7294643238150202, + 3.756363176208607, + 3.3521664123201056, + 3.7199733566420004, + 3.9730783576591566, + 3.8917424226222983, + 3.911968939043457, + 3.8437244345594213, + 3.8656992644119654, + 3.855171672756804, + 3.705324092429452, + 3.7188450194514204, + 3.803321912350319, + 4.176113576610439, + 3.9436510799530526, + 3.927525399842129, + 3.8068566700850877, + 3.586668434675537, + 3.943958534399684, + 4.101989334247362, + 3.7894080160250976, + 3.784987747613842, + 4.05592581992356, + 4.224749972394123, + 3.8863959937587382, + 3.835451934526559, + 4.024556269386359, + 3.8177676444576787, + 3.7331494489085033, + 4.009908855297881, + 3.6195850943082117, + 4.0675017816250305, + 3.9272330990250923, + 3.8469632113061683, + 4.198551512355385, + 4.024184238752405, + 4.084446212219273, + 3.9872794669098686, + 4.487857263863364, + 4.15577548298591, + 4.24717630733856, + 3.809406603919179, + 4.506819874490428, + 4.095550112222745, + 4.2161607855516054, + 3.9350899360010665, + 4.084951823429715, + 4.1049917744709, + 3.9995444870863106, + 4.038090109964209, + 4.131493208507342, + 4.099298765431718, + 4.12801944131687, + 4.2236854718613035, + 4.281466179222412, + 4.338463348769678, + 4.2401626702166135, + 4.111769667285711, + 4.2026526355196445, + 4.175755123815609, + 4.21619894773896, + 4.047301545322531, + 4.1077683835607495, + 3.8144247479319624, + 3.9895298399124126, + 4.291913902041775, + 4.092378977349702, + 4.137957853181717, + 4.399651787086213, + 4.2994848134507295, + 3.8794820582458045, + 3.975537683459991, + 3.8922396173428853, + 4.153550681458292, + 4.21762786114052, + 4.065869958698963, + 4.143347334831996, + 4.035307368812728, + 4.246898417730865, + 3.8419412558927317, + 4.148420983491894, + 4.354335603551203, + 4.108566077944932, + 3.9894800439512004, + 4.106567808610482, + 4.241517863947952, + 4.1503081848335865, + 4.16823654734035, + 4.1137065591472, + 4.025429996324843, + 4.122091320855318, + 4.201044719407362, + 4.238040126620477, + 4.449734455610545, + 4.132705316779852, + 3.8947358670237358, + 4.221919024294951, + 4.488044468280263, + 4.391962200288062, + 4.181324620144427, + 3.994433895669979, + 4.046034584982009, + 4.064549730121277, + 4.464443211589565, + 4.507173369324208, + 4.490456315256528, + 4.187831317226229, + 4.368900034442304, + 4.293010062839446, + 4.319311812625804, + 4.4101791773089305, + 4.498907113282539, + 4.645615499785106, + 4.1815518825747455, + 4.543937937201844, + 4.208882559018376, + 4.571604177920005, + 4.644828383755981, + 4.403758565747354, + 4.267337525343812, + 4.28043818466185, + 4.521152464118308, + 4.747428540653717, + 4.2800356865941485, + 4.177702426745319, + 4.530348349336858, + 3.8824703152854427, + 4.177188396068213, + 4.439626814390877, + 4.635580406041182, + 4.5727817805485556, + 4.361898610123947, + 4.256265774021661, + 4.542421349357086, + 4.450071860663401, + 4.497746493984302, + 4.460911096613141, + 4.434573958810135, + 4.399770573756413, + 4.262922239493554, + 4.72250677108756, + 4.555143139718122, + 4.065433019831611, + 4.749527746297868, + 4.724202552351769, + 4.825929118037712, + 4.503515555928615, + 4.204429458269521, + 4.299075260529905, + 4.598651274231087, + 4.52072932206104, + 4.409035409542555, + 4.636029292686585, + 4.355314807539243, + 4.248715634205796, + 4.294125050018478, + 4.510835295543214, + 4.443168139626888, + 4.544264004054865, + 4.378618836911546, + 4.681179570696875, + 4.628157583655036, + 4.427465431270178, + 4.768432973182066, + 4.5695914278035605, + 4.170998457874931, + 4.297862151391185, + 4.399477053284797, + 3.9048035765304165, + 4.4867430488581475, + 4.557836239922837, + 4.417610507524394, + 4.562481627324699, + 4.701848958493231, + 4.748553420570096, + 4.501589555340253, + 4.149517432889253, + 4.413063580411794, + 4.343320528047337, + 4.589178134039646, + 4.270898533714561, + 4.358317386309824, + 4.57413143653989, + 4.520980163301926, + 4.045377338808549, + 4.479764176607309, + 4.005913914168487, + 4.539792629607482, + 4.591468772577398, + 4.550068388039713, + 4.178926959360225, + 4.385695122411407, + 4.251407903219761, + 4.708652534226177, + 4.586233736463339, + 4.533090130135336, + 4.611627860390812, + 4.169313626411239, + 4.314905085230185, + 4.209548442782755, + 4.3468728408611375, + 4.3556461529798325, + 4.573029197456679, + 4.064690567798139, + 4.713503770558368, + 4.250952581292522, + 4.365962037284107, + 4.462666841278523, + 4.329622499074748, + 4.223434531775606, + 4.207224926748895, + 4.415079969930282, + 4.205193006030991, + 4.4339357443087435, + 4.348635138453432, + 4.337651164716533, + 4.5335862248703975, + 4.386407744296591, + 4.385260595706773, + 4.514108337051812, + 4.172372857410585, + 4.439068199386656, + 4.33190380095137, + 4.470678616480622, + 4.429356441356872, + 4.260767275033248, + 4.324595972014834, + 4.513075392047248, + 4.27500562572307, + 4.279871949428025, + 4.295223607499985, + 4.51808822622188, + 4.764196462025576, + 4.277295564343628, + 4.400878216622099, + 4.639525893180803, + 4.217642468248806, + 4.669660226831002, + 4.311419550948469, + 4.268507432635654, + 4.57905548092441, + 4.16119888583116, + 4.405078806507711, + 4.372371772666845, + 4.217481229399893, + 3.995408784082382, + 4.119887874984223, + 4.324613134648525, + 3.853815311780437, + 4.31283936042881, + 4.15459519882748, + 4.303212202331872, + 4.166420873766285, + 4.219065795627709, + 4.150168089085183, + 4.197479755269749, + 4.062500417500954, + 4.470975756269061, + 4.313464808058421, + 4.165148401735306, + 4.353878815512864, + 4.535542579056774, + 4.28543567595997, + 4.171878152480452, + 4.640777388619284, + 4.351547757173334, + 4.665019476243127, + 4.12386878193897, + 4.367603462149215, + 4.302325532083859, + 3.8411729817365954, + 4.300605358440824, + 4.546767391155274, + 4.089854686478449, + 4.240444900350138, + 4.364915455071743, + 4.301017063599254, + 4.083203257578036, + 4.058832227267547, + 4.5187366226823285, + 3.7760707583081694, + 4.406689918246705, + 4.467647028168967, + 4.405817253128591, + 4.2553816501388635, + 4.913782318275668, + 4.286038830025685, + 4.263155583519207, + 4.4546461652292715, + 4.264347122699542, + 4.305120097126745, + 3.9959021872533516, + 4.531707412978686, + 4.189298957329672, + 4.253715160383766, + 3.959860503511051, + 4.014066696643028, + 4.1973975085498285, + 4.188426785400105, + 4.003960594475701, + 4.099059899059448, + 4.281463276709472, + 4.302921077636932, + 4.2086158843862185, + 3.9328744483268916, + 4.196452653049109, + 3.8474261585873686, + 3.969365377450683, + 3.7905783374680015, + 3.89377130518949, + 4.130508077117794, + 4.033137196624239, + 3.8574178059749955, + 4.231451381230779, + 4.041317424203539, + 4.0865372221199445, + 3.9580439726828502, + 4.093809086417647, + 3.9303928876819096, + 4.0854234796306415, + 4.202097902033045, + 4.206677991686341, + 4.177555897623786, + 4.168209953977476, + 3.9237677787911003, + 3.8851378380973376, + 3.9363126017416765, + 4.2447390094240225, + 4.261622011860153, + 4.047896717828697, + 3.6960907024619094, + 4.5065089115650725, + 4.02416277362645, + 4.3308582486094656, + 3.6629082059969065, + 3.9644765972840212, + 4.064771793619083, + 4.252167613024048, + 3.8221220054523624, + 4.086039730430237, + 3.814056432730548, + 3.897527330978865, + 3.6850472162831647, + 3.915660150432948, + 3.8406663184784473, + 3.8473009492723893, + 3.792230737082064, + 3.841090668160872, + 3.7831491861351974, + 4.092911747157033, + 3.814734147355954, + 3.946128686547422, + 3.923865584979597, + 3.769084347174273, + 4.180206791675137, + 3.992437036627985, + 3.511297882252386, + 3.9051782327524833, + 3.684176251695019, + 3.931297865011409, + 3.9638610007160713, + 3.447118507820287, + 3.60181512001565, + 4.158315522693321, + 3.8599692969462125, + 3.7885926586208454, + 4.068459499851191, + 3.5815664053556473, + 3.650781010922151, + 3.7088674852141046, + 3.696344920292381, + 3.799898866513015, + 3.6755003538954463, + 4.0265396673626235, + 3.8031443894752313, + 3.7790447327687318, + 3.5225085333389012, + 3.826767892295806, + 4.083819652005755, + 3.5654781444229884, + 3.316198597704304, + 3.6685591503029658, + 3.6905185608752094, + 3.7012947063229524, + 3.614594499370894, + 3.6101690479377697, + 3.8130654966527464, + 3.6332273348782813, + 3.3459887231886936, + 3.3698584603331336, + 3.831340256349988, + 3.7632201243110743, + 3.4496399565631872, + 3.541971402164984, + 3.6478420997565726, + 3.9278862475481757, + 3.6797545101729665, + 3.4663060668079613, + 4.011542169761876, + 3.833690546330416, + 3.7369714279949755, + 3.616161369764248, + 3.4674142300976087, + 3.5657290418044942, + 3.2906520228218428, + 3.3907029891194833, + 3.8293594776029174, + 3.5625417731242974, + 3.8376799246164617, + 3.481188185318724, + 3.1593393039312865, + 3.607033538372057, + 3.378736780142928, + 3.476150998851106, + 3.4932447754598663, + 3.339359545271493, + 3.5564598914460155, + 3.555346527865028, + 3.3228488033036583, + 3.397479240645735, + 3.456140136648481, + 3.6219253206873363, + 3.0717159297066177, + 3.51781715142584, + 3.549870235658815, + 3.6306187923861013, + 3.3316661777176186, + 3.3566998846162392, + 3.1152152001098754, + 3.43142708014664, + 3.2651111947519547, + 3.0923376647199583, + 3.852001717628407, + 3.1928143931666413, + 3.5491517367114356, + 3.1250736839117517, + 3.2948228101481325, + 3.5124986178540145, + 3.1978467786499847, + 2.918190770399264, + 2.97481733698916, + 3.1609241831102874, + 2.750409463018293, + 3.393446767060449, + 3.3148710822054874, + 3.465851828298845, + 3.3824800801826966, + 3.1288946967918565, + 2.9821072543423712, + 3.2224164841214975, + 3.3470089005223183, + 3.1652123186301764, + 3.3583960023957746, + 3.015397787377231, + 3.0480881486967792, + 2.784997661003006, + 3.504922193522851, + 3.074780802928056, + 3.017801270251194, + 3.1959245430386596, + 3.0474172677631537, + 3.14310534144951, + 3.0535583584606303, + 2.87044623893439, + 2.9690657561653886, + 3.062132229690875, + 2.7065457781295006, + 2.8988030626835477, + 2.94395457837337, + 2.952223504095328, + 2.94674837375071, + 2.8907870866931806, + 3.1721248226636374, + 2.874857653362193, + 2.9809663576431227, + 2.8246837076842812, + 3.282162069769512, + 3.515473429088548, + 2.7930140745901957, + 2.993249805899505, + 3.3632161051923326, + 2.851858926359786, + 2.940353979911025, + 2.954041951067226, + 2.990931069243282, + 2.9078122616600894, + 3.1006437354925476, + 3.0763708579204203, + 2.945012690152408, + 2.61855092678158, + 3.03469914773437, + 2.6708194823973335, + 2.786935652314349, + 2.8709212873521266, + 2.9666803064234926, + 2.6734229437058703, + 2.7484689526039814, + 2.7652943115500497, + 2.5172023216448345, + 2.6639732363051425, + 2.440225757594065, + 2.928978153183852, + 2.6151084373894773, + 2.416709450047855, + 2.671143809127314, + 2.4592625114418447, + 2.8555666333091394, + 3.0394113071109032, + 2.845372479165035, + 2.8139747621318145, + 2.9341624223577, + 2.806046534956525, + 2.4557959058220433, + 2.2566941939109197, + 2.8593019368106782, + 2.5989758962319094, + 3.053201161327002, + 2.521033212505375, + 2.7960818380393593, + 2.9034783785896554, + 2.373141442450609, + 2.7981576510465307, + 2.7256786481264603, + 2.676011469363369, + 2.2850713325395122, + 2.721965836834576, + 2.5607036108348025, + 2.617102175053378, + 2.410121587056374, + 2.4806498130144097, + 2.1747252624924123, + 2.2453997523212665, + 2.7000867021540462, + 2.1108871500076187, + 2.5308598020161184, + 2.492429861137766, + 2.5050535868741206, + 2.303436369652713, + 2.072717023633679, + 2.6550244398348672, + 3.020210747915553, + 2.1093730507696753, + 2.2402969030306594, + 2.2694070257541, + 2.3130737830532655, + 2.474349246649262, + 2.425966712267397, + 2.343711766168841, + 2.3775076052935815, + 2.172124731025794, + 2.8118319068722495, + 2.3742834391906773, + 2.747569420425231, + 2.556620393516015, + 2.3851099293237707, + 2.261011622516959, + 2.5932707648069586, + 2.1134200871134388, + 2.387862137404986, + 1.983590955070007, + 2.302192435120458, + 2.3478780115002835, + 1.84125536221587, + 2.036832591990636, + 2.445172993064143, + 1.804428935931348, + 2.592231326861911, + 2.257920446753634, + 2.187562278568331, + 1.9073388184456785, + 1.8472387592774733, + 1.8518373228348837, + 2.2878351437868782, + 2.0230982808396503, + 2.4503471254151203, + 2.2964351189109653, + 2.029143050793524, + 2.240312924814161, + 2.258386042902778, + 2.0305721659009097, + 2.058877057977098, + 2.1643796357390874, + 2.0766572275028534, + 1.9668226650101284, + 2.0995709179495767, + 2.3774607373693675, + 1.9349968648193896, + 1.9007446782098447, + 1.8556301696950788, + 2.0209482747738483, + 2.39285766007392, + 1.6710173168775833, + 2.1331945878293332, + 2.3928920519604016, + 2.0223075595559594, + 1.6718178246411408, + 2.1552339427854723, + 1.6705112728426472, + 2.255377921534022, + 1.6858635354327842, + 2.0884599710748524, + 1.4946103973070395, + 1.9148650631812405, + 1.8826284485319533, + 1.7107949009961438, + 1.6978357576778733, + 2.3215342131223093, + 1.6043260768911525, + 1.9083677130093692, + 1.2906598286136348, + 1.7288367780297336, + 1.7371079057785108, + 1.9393452336991848, + 1.842580097260431, + 1.5726641189732868, + 2.0337594342558987, + 1.7056025051176276, + 1.7564024860540564, + 1.6873363131709849, + 1.5634853666481794, + 1.652768873546896, + 1.768468060771402, + 1.6697434123562114, + 1.8160650224581651, + 1.6499122917911466, + 1.888140756963061, + 1.5207823673557652, + 2.052265687289523, + 1.3046057643788278, + 1.779420014318834, + 1.200199773069332, + 1.2963502347161047, + 1.9430564664383287, + 1.8179875431390466, + 1.878961403394254, + 1.6972342599006989, + 1.4559989899484873, + 1.5608036122390878, + 1.8380748530480597, + 1.3852576355744417, + 2.1115780946961618, + 1.3055920550763698, + 1.374360256127804, + 1.802737742138244, + 1.0561459666410835, + 1.4754208328347926, + 1.5409831821597693, + 1.6149912644259965, + 1.4159612716495542, + 1.5492825659803515, + 1.4594962549481445, + 1.5350696404853528, + 1.4844843365014995, + 1.655589199551252, + 1.295943019307425, + 1.456553680373472, + 1.5670894909580753, + 1.3896455097858345, + 1.278719572053726, + 1.9330212035920644, + 1.4350573608142754, + 1.7799624453872318, + 1.5022352724452284, + 1.3771099091702181, + 1.3346400662821942, + 1.206681289598475, + 1.2745670660418775, + 1.14191376693472, + 1.2859790936645603, + 0.7938313510337295, + 0.9456672514698012, + 1.4780968868204205, + 1.2475802584230875, + 1.3968273067711359, + 1.3827225573049875, + 1.3292849516417222, + 1.4520766644549217, + 1.2032308201532371, + 1.507892995528306, + 1.0597188637675958, + 1.448294343972685, + 1.3239871651210628, + 1.5011103358721518, + 1.3997264004925294, + 1.3715088647316394, + 1.222822158583395, + 1.1516448756303186, + 0.7809883331041265, + 1.3828084628845498, + 1.0856932044805458, + 1.3794234539825372, + 1.2742475836843885, + 1.2900174688285497, + 1.346139095951531, + 1.4147559003240506, + 0.7549390980076576, + 1.1734631118754753, + 1.3021563036418233, + 1.1858562026290205, + 1.175397844942779, + 1.0116770107211164, + 1.0115000355350814, + 0.7094601578325199, + 1.1253075915526942, + 1.326622918001621, + 1.2856400523299745, + 1.0884299263805735, + 0.9548427750482767, + 1.1855393588171097, + 1.070917352651685, + 0.8751774478628943, + 0.9660136653457477, + 1.006189293748202, + 0.7762151502423282, + 0.9461751716066678, + 1.230416281034414, + 1.3540685562347965, + 1.0391233032933949, + 1.1133820699984183, + 1.1421913122012217, + 0.7849023496460709, + 0.854666519920773, + 0.8771633533896228, + 0.9996803728040007, + 0.8988159626111176, + 1.0015435099125194, + 0.8946945997554061, + 0.7930645983780189, + 1.0303883124397846, + 0.5780377476743486, + 1.0258132717021047, + 1.1239667010992485, + 0.8047299120526397, + 1.131479586377756, + 1.0747212952879623, + 0.7281517165817858, + 0.9638055866228536, + 0.8603601397854914, + 0.3883747123435599, + 0.696516188443368, + 0.6311198566673112, + 1.067999616632569, + 0.8503743009099014, + 1.0358113619838012, + 1.0401439926807488, + 0.7030262840723324, + 0.7574730781235223, + 0.8535169512631228, + 0.6574513345301397, + 0.6917399902785895, + 0.8547408667268432, + 0.8804403001280615, + 0.8610764690047835, + 1.0427883273774272, + 0.9021301025948, + 0.43109615059771333, + 0.8513796243713215, + 0.7545866007633933, + 0.6195030970435339, + 0.43635161632106695, + 0.914411065232367, + 0.6350495540564944, + 0.7094027330464403, + 0.7190288193929978, + 0.7904301275662884, + 0.5447900142039305, + 0.7756704589159608, + 0.5036803841169207, + 0.409094951292019, + 1.1591599890892113, + 0.615193362557973, + 0.8911284955470375, + 0.7098907211696581, + 0.8499037167899165, + 0.4527782746761694, + 0.4115743892931922, + 0.6931103245597133, + 0.8217627420602673, + 0.9819319722177287, + 0.5262091549515151, + 0.3505737918082448, + 1.001620220735052, + 0.5531913881471604, + 0.5354705885904338, + 0.6631672106386377, + 0.4818190863089147, + 0.5697654539336189, + 0.3904089882069039, + 0.4955825369412449, + 0.564638518544334, + 0.28478508183687856, + 0.6437369766511838, + 0.325519485690669, + 0.4233828953451454, + 0.823173549418786, + 0.7264988035537183, + 0.5820714187685991, + 0.7977004277486488, + 0.7967779560396934, + 0.46595048877243006, + 0.4357823078138257, + 0.7512654383312566, + 0.6380561188372049, + 0.21425922556689497, + 0.4889319432062085, + 0.46133169942078717, + 0.5482792170809574, + 0.8135256845807397, + 0.3684036769878989, + 0.5959486616959541, + 0.4259453949093841, + 0.727314827629612, + 0.6005203352699204, + 0.5360047122836578, + 0.39001343972152847, + 0.38425595799639467, + 0.1577327252588222, + 0.9157130843361527, + 0.32740300052862137, + 0.32774763034487375, + 0.4765191933384275, + 0.7627731841366301, + 0.434748971058285, + 0.29920485366881633, + 0.4967462947316833, + 0.7452428315162205, + 0.7564245056128553, + 0.5787670188011955, + 0.40944466886213937, + 0.7586994467709869, + 0.5407708123043367, + 0.47341906759436314, + 0.6360933893599234, + 0.3391918500357225, + 0.6867337509303786, + 0.42985257863372744, + 0.6120411802289394, + 0.6687639667810177, + 0.571992331906221, + 0.5858700551884498, + 0.6780747247270551, + 0.6710417342878711, + 0.6798818481165805, + 0.4356541428308999, + 0.04528263249849074, + 0.5541364767023882, + 0.4895239125557922, + 0.4503805642327225, + 0.24615938529035003, + 0.38514918800488385, + 0.6125698540451006, + 0.40533875065520386, + 0.0616993281427729, + 0.2550168705343806, + 0.4924185467416157, + 0.3121776087113204, + 0.28479203611816106, + 0.3541059599996299, + 0.45451253238097833, + 0.2877671118431969, + 0.6563095789112261, + 0.683184683801657, + 0.18011721922562984, + 0.7659066211397588, + 0.23486752850336715, + 0.2514196833716666, + 0.44314608322880195, + 0.23975116706548227, + 0.48757230166310556, + 0.2696128196693881, + 0.32501022057908674, + 0.5038131083245327, + 0.37338304295099345, + 0.6602323237325971, + 0.28570620083024234, + 0.7823655883979443, + 0.642945026662664, + 0.2325608002636199, + 0.5331929857232957, + 0.18241960803301924, + 0.49746411330622514, + 0.5662011965921901, + 0.6460751626348182, + 0.44794905362267656, + 0.2095472750014917, + 0.52966775049806, + 0.42378327682377637, + 0.336213014440684, + 0.25851644957371944, + 0.7623275398840743, + 0.4676657818054155, + 0.28025698232952, + 0.327560552224989, + 0.1473523162879256, + 0.5540822254284798, + 0.7320171667109767, + 0.712307607959721, + 0.660909861591346, + 0.7032186719749235, + 0.13317407102683104, + 0.2551416339118451, + 0.18784926548098826, + 0.18161760593753318, + 0.3820993485654269, + 0.42592100008254313, + 0.14055032060340594, + 0.46198412362535757, + 0.3758885217682443, + 0.22936150349561968, + 0.9627006723178676, + 0.4999876294128205, + -0.02079103214897432, + 0.3141360280754689, + 0.4619832536477233, + 0.4567372218857248, + 0.3661910714982979, + 0.3636431904781806, + 0.47562391267165416, + 0.3214467370825138, + 0.3194407647505566, + 0.6171313590470999, + 0.3767971302125972, + 0.5355825450158181, + 0.15459168185170735, + 0.02125698729418679, + 0.5667937672539776, + 0.26623952658831257, + 0.23029307738570293, + 0.4616201846922411, + 0.4361806418890471, + 0.7726597194779461, + 0.21219572724272426, + 0.44468763948208, + 0.428314871857687, + 0.27916354919753356, + 0.6438897261500551, + 0.44633303793305323, + 0.4119211578809962, + 0.20775069547536446, + 0.32529767980746793, + 0.44414200600264747, + 0.45471835155822, + 0.6980924144930527, + 0.6599414003910826, + 0.1492436560132362, + 0.2760801922148186, + 0.3175792451919376, + 0.4019371613327485, + 0.46827022776682686, + 0.36924619829424477, + 0.3351380134542371, + 0.45007096309950995, + 0.41862665137300836, + 0.6709438788042703, + 0.4052101040991471, + 0.4550158740022633, + 0.16068589077243967, + 0.4481428321080241, + 0.487430863591778, + 0.3976138258408219, + 0.6638067494528498, + 0.3441611920346829, + 0.4729700856712848, + 0.11945767607106023, + 0.3923853754666499, + 0.5333801740159991, + 0.4997409486446386, + 0.04465219413318905, + 0.08728472842526869, + 0.5847847960700205, + 0.7389331577735718, + 0.9474143831939027, + 0.23185243395403737, + 0.6677980794768932, + 0.46989706200399073, + 0.6845400051309786, + 0.7579598278649511, + 0.3918348752689357, + 0.7674029930203412, + 0.5279102470494708, + 0.5257673277027642, + 0.2135492536649959, + 0.5008261727397605, + 0.4866121214267207, + 0.8662354126084004, + 0.45730513608372414, + 0.3023789977449247, + 0.642139223327201, + 0.20981411796054733, + 0.4937283160853112, + 0.5465102171785986, + 0.5756037143396726, + 0.7552574230803077, + 0.6275750268436223, + 0.3876565819825796, + 0.5042780712673507, + 0.845088231883381, + 0.7881640396255015, + 0.833888375070813, + 1.045476899025304, + 0.6231802776887977, + 0.6368396976096504, + 0.414687532317191, + 0.5869107621026586, + 0.9620334844997556, + 0.7796950499664089, + 0.43953994205333646, + 0.31067980975719356, + 0.7942980667185014, + 0.5233017755395445, + 0.5070571444325866, + 0.5729193079322844, + 0.8667086027094373, + 0.9856541887079708, + 0.9466848971404801, + 0.8402062688857426, + 0.688829523289533, + 1.0157787620001133, + 0.8608054202724917, + 0.5745366827391675, + 0.8190570835290174, + 0.8251192746940744, + 0.8097001587898811, + 0.9583048630375324, + 0.6448817390290377, + 0.4955046811998898, + 0.6429165879229723, + 0.6444382747906642, + 0.564005606750114, + 0.7694185622758085, + 0.7291270182248141, + 0.6060784850942051, + 0.4090336562376305, + 0.9433039021900989, + 0.7165100201898392, + 0.4830178192238512, + 0.6284450735282574, + 0.29322790997399195, + 0.953417438328737, + 0.6482400909600059, + 0.8738329030647279, + 0.39439289657703913, + 0.629622541307147, + 0.7583129522814358, + 0.7932246057823951, + 1.1294612430210602, + 0.7734943063591264, + 0.7579282903081015, + 0.8526577158608009, + 1.1193431953515083, + 0.7954222018244592, + 0.7670722567684841, + 0.6824815204275511, + 0.9731546743334679, + 0.7445580973951934, + 0.8432461584295942, + 1.0968392810554977, + 1.2998176787956737, + 0.8661809944642804, + 1.101302854375779, + 0.5887052079408797, + 0.9833846003880927, + 0.8051899294016687, + 0.8243172341155822, + 0.8907152473992072, + 1.2142688538500344, + 0.8242920716738288, + 1.2477894989705896, + 0.8945878267310428, + 1.0665782262052326, + 0.9305400691590795, + 0.861056020411416, + 1.0499199187682497, + 1.098923820616366, + 0.6823727092388969, + 0.8143743761258505, + 1.1706867469347424, + 0.9903204912664888, + 1.0987406422913493, + 1.0481075035918648, + 1.0671117579543286, + 0.868402162657647, + 0.9996395803033615, + 0.9438359043329904, + 0.6191801238888344, + 0.6330912145167769, + 1.0804963454804222, + 1.0192420145125582, + 1.1734643892451244, + 1.016130901559411, + 0.7534295710903489, + 1.3064959104532217, + 1.0098017081656807, + 1.0298060955411106, + 1.0973908424529393, + 0.8129260564248919, + 0.9763899666436038, + 0.8462452073123197, + 1.2952167164082073, + 0.9901380524476033, + 1.1084589149474655, + 1.1221400445087057, + 1.2120421076481338, + 1.323014287345303, + 1.2544694222411912, + 0.47701966995693657, + 1.3353044900799893, + 1.0388556986956656, + 1.008730119341383, + 1.0996851615258734, + 1.0699726179725586, + 1.2592139291680897, + 1.5489343336726513, + 1.2347853131398323, + 1.3310415292545874, + 1.4094382691735305, + 1.007913993447991, + 1.271901812840981, + 1.0170228038146445, + 1.293629102157712, + 1.2589551360105216, + 1.2483274916761777, + 1.3750054390055486, + 1.0760636930476317, + 1.2829461742145978, + 1.4580441666762598, + 1.0857461828120645, + 1.2563505013936578, + 1.3500806785405746, + 1.558788592533527, + 1.3079568896103426, + 1.096626734693299, + 1.732250316037369, + 1.736216488075807, + 1.4627719434189017, + 1.1666200712083081, + 1.0255248247313542, + 1.2472824603999284, + 1.3587849245398265, + 1.3266416231415386, + 1.026488852013988, + 1.126153073292585, + 1.3013236405067878, + 1.5442465530632035, + 1.4287814268212566, + 1.3675076537435078, + 1.084165678921631, + 1.5828483754518403, + 1.58800778639847, + 1.260384711402779, + 1.6243017405542974, + 1.428684021061305, + 1.7021268444629123, + 1.4643746640137734, + 1.23631364863651, + 1.74167422008763, + 1.6502356058492504, + 1.6838415067522443, + 2.038266215677669, + 1.7478417131977304, + 1.472885977863206, + 1.3604029751907698, + 1.4924100394408961, + 1.7951598615841915, + 1.5053870051083398, + 1.6085189285327783, + 1.5518032943361844, + 1.6830469816560767, + 1.6326987660693046, + 1.5403213746810676, + 1.4115963842769603, + 1.7517486961703788, + 1.534826249136569, + 1.318589991915288, + 2.148220851449512, + 1.2812575100725678, + 1.3330874577342702, + 1.5401673056201717, + 1.488481548310657, + 1.5783172434345207, + 1.7463296621294473, + 1.5022190431643656, + 1.9679268291983254, + 1.5539596880281072, + 1.8868676099486743, + 1.680402273061462, + 1.7042976082103822, + 1.368971801838231, + 1.8962281147373878, + 1.8798266528386562, + 1.7351888163258955, + 1.9150198992073444, + 1.830244384628641, + 1.6794660993091848, + 1.8097974495205793, + 1.6585111063699653, + 1.7533385437053024, + 2.112320545095616, + 1.8114422894038396, + 1.8664649100398627, + 1.8981061391736573, + 1.698081101978849, + 1.9046331831009078, + 1.9125982941474975, + 2.0348853079420044, + 1.680316162634445, + 1.995099197472292, + 1.8306298690376857, + 2.2723977529923314, + 1.934766021376911, + 2.2815721040346455, + 2.023498164691633, + 2.236778583313871, + 1.8935444840758329, + 2.038783645578142, + 2.13094010759429, + 1.8102118700116905, + 1.7438761168423245, + 2.017930017990025, + 1.9522231079105588, + 1.8394423025136761, + 1.7278034685027, + 2.3084596714116214, + 2.345062469720465, + 2.151848189821456, + 2.2814578223513253, + 2.1466282306608195, + 1.750316090358173, + 2.2313438064802082, + 2.3258248722607746, + 2.213595723078977, + 2.124929931787105, + 2.0180977683130488, + 2.434792379564064, + 2.1560944800158923, + 2.210042898013012, + 2.624997074640665, + 2.3211328879550153, + 2.281658736940404, + 2.4110317021917322, + 2.5015863336385595, + 2.4089053263567752, + 2.1313788886681566, + 1.985883198207394, + 2.377862746631504, + 2.398879427697801, + 2.4676126054855256, + 2.5824473305361115, + 2.537787890576112, + 2.90513552685419, + 2.220546598546482, + 2.2821997804298464, + 2.1254605787319116, + 2.385968772921182, + 2.678514672624474, + 2.0359885726112372, + 2.2308080910134813, + 2.5876474317509017, + 2.43958855010886, + 2.3697770772142626, + 2.355389901501849, + 2.3898142400145197, + 2.4291610260520278, + 2.6635827578206297, + 2.572878525830491, + 2.380032112834457, + 2.3025232430577867, + 2.1022053105715353, + 2.487867480142939, + 2.554145283493876, + 2.3920988301726474, + 2.6604713980847405, + 2.370173067807293, + 2.4184772799054937, + 2.649193290438617, + 2.317376669319313, + 2.792845323483259, + 2.2363497499898237, + 2.866831254054513, + 2.4460768321739454, + 2.5250813755863084, + 2.4893489479035122, + 2.3870813458652616, + 2.58602057826243, + 3.1525106297190737, + 2.595979387916981, + 2.4219077193842713, + 2.6436994737211696, + 2.6010889397339936, + 2.611876068908051, + 2.5707904135301085, + 2.8925551119429924, + 2.4780095088452843, + 2.860816392062231, + 2.3518450142745078, + 2.8608940734541046, + 2.810061656970962, + 3.184956663791115, + 2.6535659592165604, + 2.9789399843678717, + 2.953856278601206, + 2.646130393019539, + 2.6747836251731316, + 2.4843777578569957, + 3.166039820767694, + 2.5325726059154556, + 2.3765729530397186, + 2.4141982438807377, + 2.933161969544962, + 2.858279806817359, + 3.0116072213820813, + 2.7560041395862496, + 2.7489185887181944, + 2.922136117773281, + 2.9284017938663225, + 2.7347668414938546, + 2.7478000081152714, + 3.0602904935227317, + 2.91109376183147, + 2.5207414404911423, + 2.9023571854713768, + 2.543741835042462, + 3.013925373654388, + 2.913034763760194, + 2.9854804072751615, + 2.772964106429976, + 3.088127957970621, + 3.0291060104214944, + 3.0149729574067266, + 3.190084166944012, + 2.871248337707456, + 3.36085817876699, + 2.850275821107128, + 2.7240319723262787, + 3.250456612885544, + 3.252027220889648, + 3.147832282253507, + 3.053035388540325, + 3.056623486538242, + 3.0707038802938666, + 2.9200273576475784, + 3.181806282111929, + 2.914880168997278, + 3.2087539356560337, + 3.071590449741416, + 3.177864961667845, + 3.5792512220910857, + 3.128642306956082, + 3.537057823377606, + 3.411249847781517, + 3.0910357082122633, + 3.150516794950316, + 3.112852689357142, + 3.091473900580181, + 3.285158712594085, + 3.2299852522708803, + 3.0781581435035963, + 2.842320516535291, + 3.5931701124145605, + 3.228181951548973, + 3.345912029980819, + 2.9111922037933553, + 3.284723833003842, + 3.313837016807299, + 3.3129512813789344, + 3.522462465785613, + 3.716069840934361, + 3.328426459203901, + 3.332722204716526, + 3.7150931825856404, + 3.436001968640797, + 3.06773130508068, + 3.3394563653109937, + 3.2044337387497133, + 3.1627434541531407, + 3.4202539328654575, + 3.167829458436911, + 3.3322056241005793, + 3.178873076826687, + 3.369106148228684, + 3.5455386261261994, + 3.3668501653986334, + 3.5783241324014985, + 3.4496991400971075, + 3.33942079111791, + 3.4253654965961156, + 3.2429591454147193, + 3.4526913615030397, + 3.5736510240482238, + 3.3151772646917106, + 3.504669188469812, + 3.7756749259167948, + 3.339179198428448, + 3.5418539011121073, + 3.6970737219092995, + 3.6475500667307994, + 3.180481443298859, + 3.423107576991913, + 3.19913135621022, + 3.573275366833956, + 3.6154739802570734, + 3.280031983505821, + 3.6551807172057766, + 3.544936036242644, + 3.3830972200303715, + 3.541159930104653, + 3.7732268653928633, + 3.781183697695802, + 3.784493026805388, + 3.7554118941343844, + 3.7052814239889633, + 3.556691309455359, + 3.1777299506981778, + 3.4021884453030844, + 3.4662687650286537, + 3.7786287384614625, + 3.3717606125217894, + 3.769840442216948, + 3.63473847497114, + 3.494306400274599, + 3.478463936583486, + 3.7552813861390892, + 3.7606313449162387, + 3.482579354295703, + 3.710545407411128, + 3.691300360836102, + 3.724511520646127, + 3.6934639206799997, + 3.8173612822723895, + 3.8982610943674154, + 4.00774142399943, + 3.3120613766532916, + 3.8963664962493936, + 3.8447064890859854, + 3.6341271904839476, + 3.7050129454795195, + 3.76495544738733, + 3.848104084437317, + 3.65828040370758, + 3.94705699286013, + 3.8177673242275794, + 3.79404238849278, + 4.013724641998902, + 3.298223711224086, + 4.017899077522495, + 4.08340472818594, + 4.020085137816473, + 3.627241493520539, + 3.863093688694424, + 4.2067406191948375, + 4.015060070162333, + 3.9264922067605457, + 3.9433887660410227, + 3.7443111903655413, + 4.135357505104698, + 4.139331703184319, + 3.807827714582157, + 3.626970419306095, + 3.9340121357667104, + 4.084744792043186, + 4.0598410970488725, + 4.043550726175043, + 3.7064691074676333, + 3.740588472437368, + 4.428303741895016, + 4.140916063432329, + 3.819063146272898, + 3.867700553686919, + 4.11218362883503, + 3.92433310372211, + 4.097327061786893, + 3.8847081316935315, + 4.104107476352928, + 4.10885067041772, + 3.6980862366940626, + 3.9654169075238768, + 3.761679917679155, + 4.118289653421106, + 4.380679187544073, + 3.9685232669820953, + 3.9961198191149294, + 4.250890934956978, + 3.7127804955847017, + 3.846525362152448, + 3.8505159759310796, + 3.8660209605660305, + 4.2022826487418525, + 3.868922479276721, + 4.496294641238105, + 4.112015270942363, + 3.916099374919441, + 4.303900860577135, + 3.851553844645776, + 3.9011581250209617, + 4.146045087763661, + 4.198175435325588, + 4.187151470187017, + 4.260157793588699, + 4.091355709109235, + 4.2316976054547775, + 4.464667258236732, + 3.913911234457427, + 4.061521711224699, + 4.212646889304257, + 4.2232424410536185, + 4.268138423453908, + 4.392139538969672, + 4.08841471814537, + 4.048414764399421, + 3.9515544096680184, + 4.008278668424034, + 4.066581594171913, + 4.055036015166111, + 4.280256969443449, + 4.258739594347315, + 4.063466668096982, + 4.116994274090144, + 4.270175665443942, + 4.303528112413786, + 4.352481928906145, + 4.363556409590703, + 4.431215012219441, + 4.006264172607031, + 4.246358223344515, + 4.221803627732636, + 4.219477605697999, + 4.010512681164902, + 4.409920149634374, + 4.476474439220735, + 4.122898690258103, + 4.5361571136720995, + 4.316724483347488, + 4.380351807973544, + 4.332149547809056, + 4.1990842402232245, + 4.294146100495128, + 4.372928946517514, + 4.072850047492434, + 4.683703638564155, + 4.296170153717079, + 4.269425858176154, + 4.214992419173392, + 4.505980691712859, + 4.62210662793749, + 4.448875508258712, + 4.545939434563857, + 4.203876167712458, + 4.364987210003401, + 4.309270620367551, + 4.3166960328484905, + 4.224724138915598, + 4.302442439090622, + 4.20191851014249, + 4.169610586252381, + 4.265469547415295, + 4.518654393516459, + 4.450095544022231, + 4.094996691256733, + 4.377943003292623, + 4.192724575678701, + 4.033075816598165, + 4.638051372384433, + 4.580532511633515, + 4.027188966046935, + 4.752842610592171, + 4.418972966336131, + 4.4740597273400295, + 4.668905203917734, + 4.23862812126096, + 4.394905146423523, + 4.346489897597564, + 4.034747806157585, + 4.531252600604161, + 4.2602169392939055, + 4.6588478211453355, + 4.395858858447845, + 4.341037631453676, + 4.504669935587085, + 4.19857783849392, + 4.317884315231944, + 4.455020576807211, + 4.877699823026551, + 4.2867371334346, + 4.1689555716193, + 3.9291927581686177, + 4.221046381630282, + 4.149765981191392, + 4.493020146262451, + 3.850266338693575, + 4.215425531143657, + 4.377882920057912, + 4.336833193506908, + 4.164467195144169, + 4.144834333884121, + 4.465775884305112, + 4.602548298556607, + 4.029472008846234, + 4.336857360643892, + 4.378104665056481, + 4.552817376728693, + 4.156586576028575, + 4.502101340205104, + 4.171347433644455, + 4.042003310995577, + 4.462708132980074, + 4.561063614947734, + 4.0087096621236595, + 4.0390833798300605, + 4.178959306739229, + 4.175256509635108, + 4.450191814020942, + 4.496266057704114, + 4.36000499238783, + 4.369188555526746, + 4.79547402961205, + 4.506280446700525, + 4.5148694711052615, + 4.002669045973633, + 4.474581414229539, + 4.218062921667892, + 4.516611189750485, + 4.730621206639468, + 4.355865108714715, + 4.181669451913385, + 4.767533022509198, + 4.310923326875974, + 4.634409290406444, + 4.46355245977813, + 4.315209042153652, + 4.125468669405898, + 4.3050876805390805, + 4.435086701091819, + 4.5454504026326825, + 4.524893979741021, + 3.812564685757852, + 4.561054696416009, + 4.537288446014748, + 4.622390984852698, + 4.293667808411203, + 4.437514735139779, + 4.272443045263707, + 4.365861557618684, + 4.271286187012386, + 4.6683124224882215, + 4.4660928605630055, + 4.342809882262703, + 4.39534476101182, + 4.6965111280976, + 4.159140684738511, + 4.522583595183403, + 4.546389093016566, + 4.485387350463922, + 4.473786018371063, + 4.304460531323651, + 4.565084591575621, + 4.33291906813554, + 4.431639726626448, + 4.01585501781199, + 4.112956182515799, + 4.255820286777125, + 4.550007040506113, + 4.571803816218466, + 4.4142117411402095, + 4.247275884322337, + 4.462894754088402, + 4.322100115817003, + 4.313824567711472, + 4.034214065373938, + 4.3656695211607355, + 4.343016891022031, + 4.148805737942933, + 4.494380835242145, + 4.310819899058305, + 4.4092844717683, + 4.4767225650287825, + 4.356260959044852, + 4.221703895565301, + 4.031689526768963, + 3.944992831822399, + 4.282400190447115, + 4.426163810094632, + 4.121969625108003, + 4.059786298351334, + 4.15859777004979, + 4.310453570677109, + 4.4453830792187565, + 4.683452581656042, + 4.430044765876042, + 4.499135991524679, + 4.3626247737362736, + 4.099374612845626, + 4.34298339857292, + 4.788757196719399, + 4.365993170341375, + 4.545854306393236, + 4.423159517696967, + 4.443297503959214, + 4.000657303622251, + 4.100151594580134, + 3.9290191410041064, + 4.412762850302195, + 4.505150253324553, + 4.360545718213655, + 4.376910488316376, + 4.632314560940443, + 4.283985778764535, + 4.068677833165341, + 4.182741239831798, + 4.243331487611857, + 4.094466273074557, + 4.1051231567357895, + 4.400023053140466, + 4.052101477848688, + 4.1230056753530455, + 4.190867411847741, + 4.193318095389389, + 4.405268201140654, + 3.842537839381644, + 4.233729439876967, + 4.211672541657768, + 4.074636748864241, + 4.245099838544564, + 3.8374919963154874, + 4.300077945952447, + 4.050635280992805, + 4.519525905784452, + 4.283032974498715, + 3.9944708053761837, + 4.343088786421356, + 4.232809536760162, + 4.207019258419933, + 4.1287259082027585, + 4.079240545289777, + 3.8603313715270278, + 4.219612333760615, + 3.987881891817019, + 3.890054535770392, + 4.510400669091355, + 3.8282478979273926, + 4.04100179118853, + 4.547121365361601, + 4.04373451057421, + 4.169391494923055, + 3.8072746989560864, + 4.166225162271525, + 4.29452881886564, + 3.991816147207134, + 3.947305375321674, + 3.9326989723088364, + 4.122456667629276, + 3.8876798810799102, + 4.236376509776474, + 4.1046931386322605, + 4.088331728962189, + 4.336277745018448, + 3.636548438478699, + 3.924038270739377, + 3.9766356874090465, + 3.871674673359372, + 4.0201670702728025, + 4.0052286310055925, + 3.8205134222978807, + 4.2087219597339836, + 4.266476062216585, + 3.8511397580043774, + 4.510686272209566, + 4.037512423669318, + 3.906987761664061, + 4.1460442081290365, + 3.8087517130347686, + 4.434062493475172, + 3.8919786001014267, + 3.958321826513335, + 3.874091787931725, + 3.8798775798459975, + 4.118484354461428, + 3.8872908962560437, + 3.756348465798068, + 3.930178348728831, + 3.510352890117327, + 4.04881970991705, + 4.107974131905521, + 3.481497179617475, + 4.080186907272686, + 4.040627690933118, + 3.709627029965785, + 3.930189393127188, + 3.676154362569042, + 3.760623372471318, + 3.5453049903892606, + 3.7736989174188973, + 4.0663827956966445, + 4.382682748540031, + 3.882067468097007, + 3.7546314780423256, + 4.12077956153782, + 3.528427210730495, + 4.01428834695998, + 3.6148942771240207, + 3.82088104863568, + 3.550401962586001, + 3.870160112475355, + 3.5442235928561696, + 3.6685847422389517, + 3.7031614324443782, + 3.7578619237959052, + 3.7929090354360926, + 3.6717861047288474, + 3.6017405597582464, + 3.6233648397901845, + 3.824668667816281, + 3.555496635887827, + 3.8202928646621213, + 3.7909797806490677, + 3.723942440064227, + 4.1366377716606575, + 3.849863647270506, + 3.830082909599373, + 4.07985336528511, + 3.6828331702930153, + 3.9908694943055645, + 3.349239806076882, + 3.630897043425475, + 3.568773011889339, + 3.3325962284897623, + 4.004747244881462, + 3.625208813483663, + 3.8786959574846964, + 3.779264650387227, + 3.4247892860715043, + 3.413468074160737, + 3.6812171139865573, + 3.653412369992982, + 3.8957584193453916, + 3.501929184150233, + 3.5855227903732927, + 3.4763850757737713, + 3.6166197648893785, + 3.8538046866154327, + 3.4368741357322583, + 3.8875711485985036, + 3.8916491484340003, + 3.7730516917591848, + 3.472970495506184, + 3.5683125330718846, + 3.3343175657734982, + 3.4491243191327223, + 3.7713655634586427, + 3.418782827832127, + 3.746318451734461, + 3.6994115997360337, + 3.702980314991448, + 3.2431181790758106, + 3.2122040963317477, + 3.4559384265954343, + 3.6838401455094045, + 3.554009342093117, + 3.3342254500154054, + 3.232105085907458, + 3.369539034406077, + 3.6463580133413713, + 3.4894993727539467, + 3.5494950374877168, + 3.4202987533471156, + 3.1321705047156976, + 3.529647416505271, + 3.363931643463771, + 3.5366538248985853, + 3.473615674994204, + 3.433343507788431, + 3.33301715583843, + 3.236443325667616, + 3.1057559462662234, + 3.205178560248716, + 3.314099047431271, + 3.4234361343922846, + 3.281027852642469, + 3.3821286596713387, + 3.385737936197081, + 3.136065201693264, + 3.432395283431127, + 2.9112585245841798, + 3.3927180813478452, + 3.548166789863904, + 2.9569615257958173, + 3.372210762863643, + 3.1780402673060717, + 3.231323019253226, + 3.150798837266517, + 3.092779594284139, + 3.0402607956739436, + 3.4571414989357088, + 2.99706491496168, + 3.2014484167958344, + 3.0367678960760314, + 3.170513794207291, + 3.0196955478111285, + 3.511916945742128, + 3.336593020034772, + 3.2728566912640664, + 2.934273983667763, + 3.13239099401593, + 3.0554614152011537, + 3.2210435642090633, + 3.068774947706261, + 3.134695293064042, + 2.922856115103903, + 3.129111668281963, + 3.1306998394118994, + 2.9951064113405903, + 2.8407522020158735, + 3.2561939020860686, + 2.6533470846172804, + 3.2361398732623354, + 3.003501627789161, + 3.0471069999791194, + 3.0783945662125896, + 3.049233514197783, + 2.892147246840607, + 2.8202785082407273, + 2.7890411004402234, + 2.9455202850621736, + 3.388076593285608, + 3.2839433365050463, + 3.0150596100602134, + 3.16952209981129, + 2.9312374655542195, + 2.860836430350191, + 2.5900690043632935, + 3.258303046773574, + 2.8787835850420658, + 2.760410234631499, + 3.390190015511343, + 2.736966618102387, + 2.604114610261991, + 2.525494198711006, + 2.7724841299179164, + 2.8128856033981218, + 2.9608675628502654, + 2.9365462959556994, + 3.0065533835405915, + 2.6776954316803017, + 2.8473171539537145, + 2.578570602804673, + 2.8413156444836507, + 2.670730784053326, + 2.6980625662851065, + 2.870683485167172, + 2.795759026344197, + 2.9868702948720722, + 2.354811919306667, + 2.5858822236002563, + 2.5540099893213615, + 2.6480678816128536, + 2.779376520927994, + 2.426192688046497, + 2.680905769946439, + 2.3596257271673156, + 2.7008813593123833, + 2.7817025780071414, + 2.5014071021938356, + 2.5533640057583002, + 2.7117042993356097, + 2.599422548694659, + 2.758417498881508, + 2.607198874563884, + 2.619259591388124, + 2.5198217921473067, + 2.459575945961453, + 2.5248978208858905, + 2.346354893759442, + 2.2628801288506706, + 2.4432497966445985, + 2.3686289982808866, + 2.6860944566688945, + 2.5397552376850707, + 2.071114710455368, + 2.495066163386774, + 2.6172839997616166, + 2.156608125228723, + 2.385641144230209, + 2.1868343135344372, + 2.5504856523853636, + 2.330599237427875, + 2.9634146009628135, + 2.3194037363858246, + 2.5536606896514957, + 2.7371658928470914, + 2.180399341228842, + 2.0774752225127697, + 2.605409351138806, + 2.4272778635434795, + 2.3105027959672104, + 2.7690895727102425, + 1.975733296556363, + 2.065519601761627, + 2.082185549473676, + 2.2641240982312856, + 2.3210984962956056, + 2.2029387200909625, + 2.214084099458342, + 2.1208978598740464, + 2.402065818632934, + 2.2704028573968524, + 2.2297916986592545, + 2.214404907291717, + 2.6197357805536168, + 2.151190459347253, + 2.2047648543212084, + 2.104929743296625, + 2.2096091464614918, + 2.045223802991851, + 2.3621996289452483, + 2.1047245017350367, + 2.045058037333774, + 1.9785649390446862, + 2.14258597664798, + 2.048489049463473, + 1.7838676724038875, + 1.5742260379983457, + 1.9201323259883551, + 2.287792518081651, + 2.2105712765333685, + 2.0500774446347734, + 1.9998220618290972, + 2.1898821169617992, + 2.3477979931578274, + 2.0682876538317525, + 1.8714618930858715, + 2.1197792099753356, + 1.792975317050969, + 2.137405691980026, + 1.9918359373712076, + 2.0262210260901354, + 2.062686327916386, + 2.200591830047591, + 1.9776746994362366, + 2.1209605339438165, + 2.1665085374374895, + 1.7121835569808317, + 2.123073561118426, + 1.92334807784399, + 1.7967098419158052, + 2.183763567576092, + 1.7529395837139672, + 1.9272620399475466, + 1.5158810201933692, + 1.6157027505265307, + 1.9005635050875125, + 1.9259661899213403, + 1.7720921163045695, + 1.9014546633937666, + 1.6615348841674327, + 1.8185152832552631, + 1.9364952432362188, + 1.719416124492803, + 1.3327131668015748, + 1.8527885471231011, + 2.0813715879536376, + 1.8012325677614542, + 1.5589970094379582, + 1.959614332810211, + 1.9301012722115374, + 1.5236127136762587, + 2.042034260801649, + 1.6028085683673625, + 1.238438509866548, + 1.499588225990074, + 1.6363546375549842, + 1.8239322948050032, + 1.8588885223827383, + 1.9196892490331818, + 1.8354088118114027, + 1.9572281355565373, + 1.6540461474972818, + 1.7748872800759217, + 1.335664574357284, + 1.4594296477942237, + 1.4467566714536848, + 1.6819216211104289, + 1.3695675302752308, + 1.6509949162651862, + 1.7550547650800534, + 1.6690630796288228, + 1.552665060919764, + 1.5208671608168687, + 1.682027068509768, + 1.2462001221527281, + 1.335688225353219, + 1.8777613192775768, + 1.473772239112859, + 1.5497702449542696, + 1.5666050303225605, + 1.0416010749182751, + 1.7517987042986154, + 1.3193924772765513, + 1.0812966919345206, + 1.6344305614379122, + 1.2762810364474388, + 1.3256954096797955, + 1.6493350166111447, + 1.292468593119818, + 1.2289383195214154, + 1.5102816990385428, + 1.5317949517043044, + 1.403579048514638, + 1.1939336423483258, + 1.196448115310876, + 1.2966891775185967, + 1.2605674816050252, + 1.885187788879374, + 1.108279788325103, + 1.034196148857429, + 1.1045957603866277, + 1.2104300322373718, + 1.1326522961831151, + 1.5688565639022185, + 1.0209855871440277, + 1.2684706039413736, + 1.2039857141429007, + 1.4569274224724016, + 1.3199724292203052, + 1.3249295035859339, + 1.2474064408899017, + 1.361980404490522, + 1.1425430117580597, + 1.2245984490651702, + 1.349020752172575, + 1.1194180163118457, + 1.026983150002757, + 1.0820560194014586, + 0.9509610848358033, + 0.9073719726842878, + 1.0753445482152262, + 1.4249598279570639, + 0.7930237006403695, + 1.4686111189254993, + 0.7375679923994483, + 1.3584793492100264, + 0.9023490676630846, + 1.1781940676612428, + 1.2864119573459134, + 0.8872265233114496, + 1.097827639524621, + 0.9852525926278716, + 0.9527124946086221, + 0.8766998928738081, + 0.9835900089410939, + 1.1456172361064447, + 0.8516604271267363, + 1.0556080714436156, + 0.952425168702428, + 1.2161103395941586, + 1.0631321902991913, + 0.9713226990835754, + 0.7342398604974707, + 0.8498232563291517, + 1.4554248482400318, + 0.5971111167378804, + 0.861228732926038, + 1.1298616997502418, + 0.7319611986842636, + 0.9544522297192669, + 0.9715922605602278, + 1.069565989973025, + 0.9269822264278328, + 0.6385618499197803, + 1.0185731711441726, + 0.9587099550449877, + 0.8194519696267746, + 0.9879394255828615, + 1.1396883784839784, + 0.6971632542943341, + 0.7905571828156411, + 1.306676377340006, + 1.0792355495734447, + 0.9286225982506849, + 0.7826066281350761, + 1.03907037177613, + 0.7054696568423937, + 1.0942429388045696, + 0.7271431499508652, + 0.7095171570084466, + 0.5658343052188046, + 0.8929805765917485, + 1.3324421832925764, + 0.7871963882194107, + 0.6821442038376899, + 0.411782454418949, + 0.8189002083945647, + 0.91032526673936, + 0.7515440219880961, + 1.172699848914431, + 0.7987896943369384, + 1.0321753199534676, + 0.6644159071237474, + 0.8368770515872953, + 0.6540225010053214, + 0.9192239304208505, + 0.6440985473296716, + 0.8049332004324539, + 0.7125452836463853, + 0.6034091539436873, + 0.4838335967577258, + 0.812973266525506, + 0.7865844009020376, + 0.5718050493871256, + 0.5585597291851446, + 1.0800199807156998, + 0.583077583552689, + 1.1251552189172458, + 0.9197622646924709, + 0.5959646369765901, + 0.39945857600707074, + 0.705269056965004, + 0.5523755946278487, + 0.5983333232945149, + 0.6216818758549676, + 0.37869783103797566, + 0.7784513065547253, + 0.9895729137753961, + 0.5724363259311717, + 0.5843576722587616, + 0.5867760157847896, + 0.6844913384672587, + 0.23987703513948727, + 0.6495727824637334, + 0.6941352605334122, + 0.7677730588420867, + 0.025346207673815124, + 0.27956394552954283, + 0.8387359241807851, + 0.5304509692515839, + 0.6487283394016736, + 0.8401105057486449, + 0.5146369634823036, + 0.4222267309364509, + 0.8979929862347629, + 0.8040123707294836, + 0.8581761679875171, + 0.8262571180213965, + 0.6792788846884321, + 0.32751920241452215, + 0.6727442558734201, + 0.6915190166307397, + 0.5089379909270273, + 0.7354972549137796, + 0.31021208555247265, + 0.6151713702564003, + 0.5150575337079495, + 0.30054801694099803, + 0.395001163264483, + 0.5364160969385161, + 0.4368032568375099, + 0.5029555579642664, + 0.36546931684150935, + 0.5005989294812927, + 0.8328420798409725, + 0.5617969590667408, + 0.2894250750894397, + 0.6128953308441165, + 0.33977742148500917, + 0.39553178110014564, + 0.6476805063192115, + 0.7151957904779915, + 0.7481487911362864, + 0.4388585068955023, + 0.7301855055309968, + 0.6982084563160869, + 0.5220986297990808, + -0.027864980897089997, + 0.4846235886507898, + 0.26238552846581487, + 0.4766319888762581, + 0.6175861843914108, + 0.3111497814780198, + 0.481598798566484, + 0.4319428389624135, + 0.5958813404983593, + 0.35669041945080127, + 0.17547915163530858, + 0.876815911342631, + 0.7525927773298204, + 0.3248454476788244, + 0.7029499338775395, + 0.31477352514240453, + 0.17864189239443423, + 0.5889610846157658, + 0.34828963830928505, + 0.275289926155804, + 0.4997447015562962, + 0.308989563499496, + 0.3285302427762107, + 0.4999823919107321, + 0.11831033092280574, + 0.5423117270528606, + 0.5938631394805791, + 0.6087370261996513, + 0.08112692740198169, + 0.16842897238163573, + 0.1629096065091309, + 0.29539362530184465, + 0.49592063487684457, + 0.5383161397424707, + 0.4901206640756899, + 0.7132308111848851, + 0.3963098787803473, + 0.25341244003261304, + 0.7263406959462113, + 0.2750653061708802, + 0.061783990419194634, + 0.07122504680425862, + 0.7390277105871718, + 0.33860612444315086, + 0.37163068995945514, + 0.28940600208512945, + 0.30362381222614676, + 0.5550834241421596, + 0.6181708703900843, + 0.20798223129494198, + 0.24766887612081842, + 0.2215226234774297, + 0.5183399824388701, + 0.263905374243678, + 0.294242629562104, + 0.6957611700997968, + 0.33489385366863633, + 0.4384929907712971, + -0.14005880003965887, + 0.23839996111621573, + 0.4727413926029571, + -0.01733149717270749, + 0.4423306751381327, + 0.23655410321972828, + 0.581493960656182, + 0.4413742458287271, + 0.5702238228783421, + 0.4019847401548172, + 0.5718613051256806, + 0.3324047450041997, + 0.39957687725768587, + 0.6125201871702873, + 0.5389732492414983, + 0.5503293372626441, + 0.7162437506538599, + 0.5024157372288904, + 0.29389895705601726, + 0.34617429616760215, + 0.45356701258711524, + 0.33845047897149894, + 0.2963543784509356, + 0.2644483012418273, + 0.8605783815378303, + 0.32212266837397835, + 0.3953780766202329, + 0.2994690305560345, + 0.5590340770706527, + 0.3429849741373436, + 0.14252483172243663, + 0.37326598172349534, + 0.21932470972725407, + 0.6138167986372098, + 0.9039659476192314, + 0.4141488190352092, + 0.49405343126632373, + 0.2774670083184474, + 0.4207627809280046, + 0.08961345224457107, + 0.4777213757438997, + 0.7169162301378217, + 0.5200237631240301, + 0.11269524302723077, + 0.37603328152347937, + 0.4158650872843174, + 0.2832135669815091, + 0.4654068866399117, + 0.2995736221200083, + 0.38490695756000026, + 0.7385575105755513, + 0.4272067485398305, + 0.7363795519024698, + 0.3911769042189607, + 0.5146952884278009, + 0.49787347788676933, + 0.3877380656924613, + 0.24736549406800928, + 0.525922481568226, + 0.20044830126644778, + 0.5999326051791465, + 0.4376649702679549, + 0.3464291066979074, + 0.4988245037165506, + 0.4037336657387711, + 0.3185122238344582, + 0.445158151478038, + 0.326501602169355, + 0.39315185986187196, + 0.29840378404082724, + 0.8304827063008401, + 0.5983124527868972, + 0.4045861687949184, + 0.5033740207419074, + 0.4049584511422486, + 0.4950352948096922, + 0.2669610823039228, + 0.7759554023359427, + 0.38150257070088167, + 0.7344146820722166, + 0.37846971625127657, + 0.6288409525953776, + 0.4079510661767262, + 0.6010112611202181, + 0.4572157648863905, + 0.515369385774211, + 0.3644392231880228, + 0.4177436733791586, + 0.8521915420104289, + 0.4510627621854606, + 0.1479238089324068, + 0.7357944445288254, + 0.28880822011097274, + 0.5035183445933183, + 0.6380433905953138, + 0.5776613036329158, + 0.2626014161391053, + 0.4466765597697051, + 0.08393979879154234, + 0.4686563862218143, + 0.463616888649375, + 0.6496722977135794, + 0.12411260807446894, + 0.7843679670140306, + 0.7402461095562296, + 0.4879505072307653, + 0.271262454563694, + 0.9333099352004317, + 0.6892252636941617, + 0.4330158405783565, + 0.5483169473783843, + 0.4346767595352111, + 0.8577057591406589, + 0.8697555496511423, + 0.31151818489780203, + 0.2182990415692207, + 0.7267776964304624, + 0.4880217991624316, + 0.19784840502221124, + 0.9243411542915458, + 0.4773952399425488, + 0.5946352252014274, + 0.3191380092845785, + 0.6964036245124878, + 0.42844996326679463, + 0.5803954556786605, + 0.6890658501376201, + 0.6166662289446692, + 0.8063864048333853, + 0.7048267789522499, + 0.8047942258324927, + 0.6382858419059652, + 0.8367580730295336, + 0.42341467885479295, + 0.6726519091382145, + 0.9468737830050528, + 0.8715550294650523, + 0.7513877003757011, + 1.1127902879128273, + 0.8231124989436622, + 0.700753424992188, + 0.5671941711432957, + 0.9785136409599908, + 0.6736203838853461, + 0.7427151129718731, + 0.1010727813770449, + 0.8935355663862613, + 0.4948554407496623, + 0.4591586950288008, + 0.6993655088545762, + 0.7508036412045062, + 0.766376573321852, + 0.8470051203848918, + 0.6750360099855381, + 0.5323281890096921, + 0.7590568191774131, + 1.0641212070944042, + 0.6250084582828938, + 0.6166899242100308, + 0.9514943951052927, + 0.628912599953922, + 0.966759174209465, + 0.5239851697837857, + 0.8201105871874911, + 1.1049886934605988, + 0.4065054635948222, + 0.6592969493464818, + 0.9450025703297191, + 0.7516012495558835, + 0.5659829650006483, + 1.1204127958475383, + 0.7773226568837671, + 0.5091738903330298, + 0.9888855872584107, + 0.7537495916376489, + 1.1884272947767482, + 0.70177532298543, + 1.0690421386431674, + 0.8018296262254898, + 1.070424235215936, + 0.9872107709026736, + 1.3072894895885905, + 1.137794595237441, + 0.816200922781606, + 1.2399163735720626, + 0.7926433392189706, + 0.6089074619934958, + 0.7983636515956273, + 1.1385211589893778, + 1.0886318414478313, + 1.1886399423457044, + 1.038270180893229, + 1.0212755014656318, + 0.8300969735565386, + 0.7533121808109613, + 1.1378266092263725, + 0.9602191736416839, + 0.9358339558336967, + 0.9783104100351984, + 1.1942055020999331, + 0.9388991131282277, + 1.1805273759983916, + 1.0145477652418335, + 0.9447408214814883, + 1.057122420204797, + 1.257534856198483, + 0.6562136994518335, + 1.511930287533911, + 0.9460440067373346, + 1.236424366897035, + 1.4875051089044293, + 0.9431397741894246, + 1.3166667018631337, + 1.203453320207849, + 1.58367960545111, + 1.1571531110767233, + 1.213443748695143, + 1.1433897643315616, + 1.3373934768137923, + 1.3852870943498217, + 1.2053441908525695, + 1.1579229410713974, + 1.0244458038422226, + 1.0214324464978768, + 1.253923638783235, + 1.3241730150053121, + 1.6205076519368051, + 1.2875456299076125, + 1.074471484545842, + 1.5267766520008332, + 1.2590213175769134, + 1.2255809579643147, + 1.388379529104051, + 1.3959595205372108, + 1.3498007120958848, + 1.2535575170865485, + 1.1598075386705897, + 1.4758918861647674, + 1.2113850654367935, + 1.4453945808722461, + 1.107976663936505, + 1.2410534197804808, + 1.5116982655673254, + 1.4032117735817788, + 1.4076632562350813, + 1.3028017184544167, + 1.3126209820797405, + 1.492891569628468, + 1.0843275904390455, + 1.578730536256523, + 1.4865527198623942, + 1.7463347519784262, + 1.5677575361839897, + 1.41773463615631, + 1.4556748133169455, + 1.2988377411285348, + 1.522741246392975, + 1.470398478220048, + 1.653905747759033, + 1.1032542809548187, + 1.3295023653449671, + 1.8425994758300575, + 1.298228429699724, + 1.4194422894613261, + 1.1946533671161021, + 1.3908161454490187, + 1.9275268122332565, + 1.7176561472626506, + 1.6785872479769, + 2.003015316952005, + 1.1903293228902343, + 1.9336384537910825, + 1.383756655326761, + 1.2466917974572553, + 1.2543805139001492, + 1.6500380378747495, + 1.9211906576202906, + 1.6748550014030674, + 1.4021410228191233, + 1.3407408682520163, + 1.6808084821829226, + 1.766338995772887, + 1.5772177944148438, + 1.6209635824012998, + 1.6027585972390486, + 2.006556228772169, + 1.8739739514310336, + 1.5719974435770392, + 1.945594198433971, + 1.7770277713660656, + 1.9776145364148117, + 1.514292983997031, + 1.807675276955165, + 1.563556502180478, + 1.4951114974595427, + 1.7664846174794342, + 1.848536207192298, + 1.5993394736776625, + 1.7345805116294368, + 2.14433164231304, + 1.6400090932991507, + 2.102883649098459, + 1.7869221642670052, + 1.9138714143015778, + 1.9372798833482543, + 1.480982218273561, + 1.4810085636660695, + 1.85330053751894, + 1.858595660171645, + 2.0217493271355744, + 1.684146455023616, + 1.3721322227718518, + 1.5615843756802588, + 1.9675420390575926, + 1.7611997448080494, + 2.1158290925739163, + 1.7058267685386443, + 1.8102215802435861, + 1.9129848991877973, + 1.8039403235421678, + 2.029232558314231, + 2.1367816756826534, + 1.6452862382868503, + 2.072668048380335, + 2.1038297807475526, + 2.1764636547826637, + 2.2069126229559513, + 2.2202161879463618, + 2.0437226641136648, + 2.288183787933844, + 1.7957496383882583, + 1.8609348473579388, + 1.977907560401051, + 1.8800334887345134, + 2.382566786533282, + 1.7771410295608563, + 2.1482589059622637, + 2.090787142365565, + 2.3136825461648725, + 2.156126483129214, + 2.1717906019079622, + 2.3344564027228984, + 2.218487110709304, + 2.4663620504907344, + 1.7751572159438767, + 1.8442077611903023, + 2.266231069114692, + 2.2464612185002357, + 2.1868536953415556, + 2.1889985295313643, + 2.469654911112431, + 2.1727390357663157, + 1.925560510376248, + 2.12597913019884, + 2.52102267070131, + 2.204405549137951, + 2.3034463937694483, + 2.25619317937894, + 2.178937484582423, + 2.3547543653922065, + 2.174911354954499, + 2.0818367319152515, + 2.157853467309777, + 2.200121127816018, + 2.140728220355972, + 2.7678078184512818, + 2.153974861360442, + 2.357487583722676, + 2.2842477264526457, + 2.448765896315309, + 2.7505617823811166, + 2.2100709366232603, + 2.539959050951914, + 2.3031047973646537, + 2.462387785082255, + 2.785605560094996, + 2.7480101702847515, + 2.2732500677656375, + 2.4178569752259933, + 2.3379000752687076, + 2.5787438830762133, + 2.554940222311195, + 2.7183843846974978, + 2.2972504963958658, + 2.1920014162084485, + 2.5522096617986363, + 2.5502637953935134, + 2.80010672321741, + 2.4293636534626595, + 2.2295021953194363, + 2.390235713037464, + 2.2283755654056896, + 2.446360542353731, + 2.3249354091559606, + 2.837590897566564, + 2.5109174316979668, + 2.7430098584577136, + 2.658915439961644, + 2.936473370968046, + 2.7486167071220904, + 2.3386232218909484, + 2.2356175747398814, + 2.7799886030598744, + 2.7296057552734423, + 2.4888237622421117, + 2.739708036022023, + 2.605919500319361, + 2.674244026842413, + 2.813349084483526, + 2.695125412619419, + 2.61612722724016, + 2.6887819288127703, + 2.3992551478035042, + 2.5646801036936235, + 2.815316605288019, + 2.875909651959795, + 2.7573510488518633, + 2.9982957774721344, + 3.0311155367137625, + 2.732553644932243, + 2.894930676377276, + 2.8585624045658644, + 2.7192875162536287, + 3.0727112555065172, + 2.786819047002633, + 3.102113905373224, + 3.068696070669155, + 2.8383823682502283, + 2.8826381472701987, + 2.9019149895489034, + 3.377876706229915, + 3.0073317961024237, + 3.001958769417665, + 2.7841383377202122, + 3.226020729438935, + 3.025374646239218, + 2.782632153738041, + 2.904372072075036, + 2.96682913223296, + 2.730171497790455, + 3.0771055079928122, + 2.9457092710246564, + 2.7596340116263125, + 2.8136541938696267, + 3.084466913531452, + 3.04335276197293, + 2.8924465952021996, + 2.9786809993381222, + 3.272141963040118, + 3.179231493251369, + 2.608509983907155, + 3.194241857407019, + 2.9962239379229008, + 2.88764692501699, + 3.2195225081185477, + 3.1119734669205155, + 2.997108455965881, + 3.2479028405245653, + 2.9645460660298197, + 2.9648071531132274, + 3.12883432776209, + 3.3224667260648637, + 3.305160550682228, + 2.817840106208712, + 3.6535923139727644, + 3.2704485488049917, + 3.0945838471902043, + 3.0586130244472622, + 3.180861595576929, + 3.58957239729166, + 2.987702709619152, + 3.26541211870585, + 3.150403770460775, + 3.155821278105297, + 3.1691438580639684, + 3.1974273863967784, + 3.3991505182847948, + 3.55525856512669, + 3.094488632180179, + 3.0875511210471815, + 2.8968772239838247, + 3.54524099770582, + 3.1797549146034494, + 3.2303357472713965, + 3.678434544120101, + 3.3738805901301148, + 2.967898697538324, + 3.1064572460100415, + 3.4901092802592575, + 3.1863846374688727, + 3.3882513806015884, + 3.284124969279534, + 3.1458359649075107, + 3.3203036194317126, + 3.3599507782648512, + 3.7031385785654565, + 3.834835074957183, + 3.314689155558326, + 3.3324757409748114, + 3.605735708558468, + 3.409167269596037, + 3.4515749361894397, + 3.112051673813, + 3.241611867919935, + 3.3885829523717366, + 3.505015185274293, + 3.169521190571426, + 3.5673146680731387, + 3.712623308652039, + 3.487299192985901, + 3.2570742458771567, + 3.73752587211742, + 3.3710445480376934, + 3.521784090337024, + 3.2804024331514565, + 3.6750840465817123, + 3.5714904007395742, + 3.539222256034127, + 3.845884812725359, + 3.889550162215485, + 3.7628544632100054, + 3.8272382471631463, + 3.575416604780009, + 3.876667538079386, + 3.8569721277389073, + 3.7561305586761824, + 3.9093712857926692, + 3.367389343637722, + 3.1417228850201764, + 3.41014233574629, + 3.2781807313941784, + 3.653789319001297, + 3.7229354561855783, + 3.813636041078724, + 3.6039348621987535, + 3.3461654301256782, + 3.6638275973998407, + 4.0330600898981395, + 3.7637101554291768, + 3.6945672524140387, + 3.6077298486729075, + 3.5355545058120548, + 4.064047026602309, + 4.064458475830157, + 3.8093288386594506, + 4.037844411669618, + 3.9195009981885436, + 3.9889323165970874, + 3.4486286059912743, + 4.110364805726309, + 3.746874074356661, + 3.841937151115241, + 4.094136364853925, + 3.610507620530393, + 3.7750073309325347, + 3.6082414307645063, + 4.126220388781114, + 3.492453112769842, + 4.027650328525318, + 3.7301137839712615, + 3.56207650531902, + 3.707214435319363, + 4.071313077344122, + 3.9434183351944108, + 4.237591677424645, + 4.041283635703639, + 3.7614777242210087, + 3.7184252913070224, + 3.7357898507433003, + 3.8794966348626003, + 3.9341944815404775, + 4.1433888768563545, + 3.861262565926067, + 3.9996508103104818, + 3.6804832929269606, + 3.7684070656169593, + 4.135936798762202, + 4.150806919405528, + 3.814088249817199, + 4.080066511509869, + 4.247636692801665, + 4.099639182441591, + 4.246552688948252, + 4.0957604465648085, + 3.771849933457671, + 3.7470696929886813, + 4.343416983445067, + 3.705736325806038, + 4.210726933710352, + 4.023449512090415, + 3.964636639486079, + 3.826308651052071, + 4.324803061619991, + 3.776546480757852, + 4.1113159414166605, + 3.9946646036112514, + 3.9957166290598227, + 4.033861820538321, + 3.8653770337072366, + 4.0279086984859065, + 3.9852129639081593, + 4.129066493535664, + 4.140635360033089, + 3.969630382567452, + 4.116082127225397, + 4.626047849613498, + 4.04902508606725, + 3.9702164952241255, + 4.186353816399175, + 4.047866762290322, + 4.3119717571934455, + 4.195201776750276, + 4.369390120717771, + 4.306285258803637, + 4.2289870942229255, + 3.990972704895795, + 4.365775260332804, + 3.9212868219688706, + 4.212098288298382, + 4.111730215349647, + 4.053266310696976, + 4.084801928483671, + 3.8748227490939433, + 4.152696926388556, + 4.253815260798977, + 4.31870953582667, + 3.867109041543635, + 4.107594010165968, + 3.7686088933978916, + 4.352762727633188, + 4.092146387595461, + 3.933106397700017, + 4.22426500246479, + 4.1415345154916325, + 4.203110211197957, + 4.162359263522678, + 4.43331298014508, + 4.223241185689913, + 4.3297780338822225, + 3.924841690547602, + 4.173974743350788, + 4.093843070157583, + 4.422608616207793, + 4.5163186926352115, + 4.195380476762318, + 4.1335266785430305, + 4.241691164491356, + 4.311009756066922, + 4.541179889287648, + 4.254704322853931, + 4.212978648031997, + 4.334145793626992, + 4.109811198308601, + 4.314257436628383, + 4.092596127841254, + 4.670851366427246, + 4.511800267137386, + 4.383138070904456, + 4.390811487970718, + 4.33163486603473, + 4.143569771943555, + 4.054901493741076, + 4.393765999471746, + 4.1148603785363775, + 4.241109279722363, + 4.1181606109482525, + 4.340464817107332, + 4.408028413930973, + 4.498566357699281, + 4.250893829475314, + 4.073587308839532, + 4.315560187179258, + 4.852770100138714, + 4.675900691512811, + 4.7744181860218555, + 4.389181436265525, + 4.530834506724813, + 4.340312780390431, + 4.222456432941221, + 3.930622821228101, + 4.388319498774699, + 4.161178512210705, + 4.118236008283706, + 4.055192820304235, + 4.187693738986333, + 4.192722767957514, + 4.383708829439911, + 4.458658816365604, + 4.144943186310349, + 4.286945088884591, + 4.445220418362329, + 4.145743809427379, + 4.431882784686027, + 4.317905160050608, + 4.326744737292552, + 4.193346487013803, + 4.184264313525537, + 4.19011650108581, + 4.05414297913313, + 4.487662600786217, + 4.472380838276517, + 4.29111492507086, + 4.656115740538851, + 4.356937283662066, + 4.467703391724207, + 4.5003584264204415, + 4.382183955380674, + 4.817765129695249, + 4.604855131514713, + 4.513641874382331, + 4.487155974764869, + 4.4176678129703975, + 4.567857687635764, + 4.184249856006328, + 4.299948086415732, + 4.545843098232269, + 4.1814979406085895, + 4.688442649504883, + 4.3773728187463785, + 4.7588654384635465, + 4.216298399640561, + 4.283464389789427, + 4.446690864711322, + 4.596439054675003, + 4.454649385460609, + 4.51845149595637, + 4.327597910414258, + 4.590401976060501, + 4.368558055473644, + 4.3833426391119685, + 4.294617958321198, + 4.388210533449132, + 4.57838817716788, + 4.508985737539368, + 4.5627855785344, + 4.2114242628767, + 4.739380703380917, + 4.07288157564761, + 4.420528103486265, + 4.511165539833264, + 4.592280353868992, + 4.4633317266809165, + 4.531568521805437, + 4.405017597363802, + 4.769581384718985, + 4.417886662211263, + 4.509831149128184, + 4.56744482670366, + 4.425771433016043, + 4.201658576636342, + 4.523765845803705, + 4.2806206868212255, + 4.48742555996138, + 4.216519809340276, + 4.282823438250683, + 4.440711650195948, + 4.633371646213807, + 4.475684859582207, + 4.491922939161447, + 4.5531283535781455, + 4.440455285307569, + 4.309520142706468, + 4.432870934297003, + 4.299109232956482, + 4.666283089247039, + 4.5726206452492395, + 4.578817079217124, + 4.595782179336091, + 4.465649056567, + 4.578626330802004, + 4.468306096428618, + 4.113574442300454, + 4.3289991700230885, + 4.8076070247732385, + 4.211504004941817, + 4.237006336558271, + 4.432447616542076, + 4.270683036575625, + 4.449555929079356, + 4.226224368015722, + 4.510081512000504, + 4.725780663517368, + 4.2398596933222725, + 4.432642354398276, + 4.531547720822932, + 4.682036857176481, + 4.227917919662686, + 4.695126081418802, + 4.427536443587254, + 4.040251469876974, + 4.227566250600517, + 4.382905838138332, + 4.686732184138618, + 4.074497245816661, + 4.49950742111594, + 4.385424198777496, + 4.067348391534743, + 4.308504700032646, + 4.1470002868749845, + 4.121531252536116, + 4.089162449961604, + 4.109220139923813, + 4.1726924643428625, + 4.1732238621204445, + 4.491825128027241, + 4.213564098944207, + 4.639878948088571, + 4.306609698417231, + 4.338724399261426, + 4.501049206713142, + 4.22992417827627, + 3.9674855280348136, + 4.180226761507634, + 4.031778671000882, + 4.149868737668059, + 4.875152265731347, + 3.962323196024559, + 4.191993633157581, + 4.606286424938077, + 4.250762321130673, + 4.1132417753768244, + 3.9633604546336976, + 4.226324120360623, + 4.164326362480223, + 4.132294344404731, + 4.267224740759843, + 4.393507441006969, + 4.2195254624658824, + 4.259902382183761, + 3.9089299857805573, + 4.2836611048984725, + 4.199330760658048, + 4.110669840604087, + 4.1403896029723875, + 4.258500812998343, + 4.252420931914523, + 3.986968909022178, + 4.090975569864756, + 3.9619923528888386, + 4.195507010037312, + 4.217892990582724, + 4.083256267783669, + 4.199652459091711, + 4.122461083446505, + 4.302137073290779, + 4.0445585851628465, + 4.033546504709497, + 4.4827023013454035, + 4.219452566991479, + 4.390185503828867, + 4.309721898093706, + 4.174985425533932, + 4.079273383820099, + 4.229572110655036, + 4.364643973048875, + 3.909086560264826, + 4.228709924232104, + 4.279516337161454, + 4.004526824061981, + 4.104033026786504, + 4.209283978853737, + 3.8163574508515397, + 3.6682790861222125, + 4.226974459128162, + 4.200680222145665, + 3.522193429686613, + 3.727586539203514, + 4.141048032091434, + 3.9606424132124007, + 3.955307128399638, + 3.9773820454399393, + 4.001840567376327, + 4.221929687278825, + 3.7696994410896827, + 4.164051831951468, + 4.304360246611084, + 3.6068732786874693, + 3.8284432969479107, + 3.833308153099895, + 3.81883731137963, + 4.013360731768672, + 3.733085769851681, + 3.627189016696181, + 3.8412059662404223, + 4.205053667079307, + 3.7389945173880954, + 3.849620768141297, + 4.099653948709764, + 3.6688668319318594, + 4.2567910211339015, + 3.9418323404391535, + 4.170463048119738, + 3.7008978917059965, + 3.8920284046898597, + 3.975444104078641, + 3.703871558683145, + 3.7790025538914125, + 4.179926227875044, + 4.129812048966168, + 3.939907145193944, + 4.351819790349735, + 4.041644947606106, + 4.025837558562284, + 3.8525782394403354, + 4.267091222995255, + 3.4441769803635487, + 3.8977355537748197, + 3.8369279879469462, + 3.963206932506484, + 3.9346165248622573, + 4.130231974579468, + 4.067999754481028, + 4.023012398691729, + 3.96223762283507, + 3.785675264881034, + 3.551888611311324, + 3.750180611479419, + 3.8281615405594547, + 3.603961615624354, + 3.910242336245541, + 3.7812561916782235, + 4.135718600463341, + 3.771121077723151, + 3.6729977677433876, + 3.856283048523427, + 3.481935469115681, + 4.3109972862838095, + 3.9622039798411843, + 3.507319008731167, + 3.7952328694275894, + 3.9545524796627967, + 3.8544116186007753, + 3.7826569687932783, + 3.5845639585268474, + 3.5269546147723165, + 3.6929318748101383, + 3.9551015526180677, + 3.6932128935196262, + 3.827196452448207, + 3.8802215340227932, + 3.6640820792020334, + 3.722035427877611, + 3.5341024026743306, + 3.7587497888381995, + 3.4906851786848168, + 3.603145456322039, + 3.663739486858853, + 3.490597303689275, + 3.4576417556385146, + 3.5563917924463007, + 3.306860111276704, + 3.7667687006696227, + 3.759508485910403, + 3.9596506555536797, + 3.187414761049477, + 3.8059845339227203, + 3.7598401086838353, + 3.4883448717902774, + 3.733765576379907, + 3.478256526982486, + 3.415383307740064, + 3.307023579091405, + 3.3220271927298217, + 3.488816107291776, + 3.5861931758243513, + 3.619896471368271, + 3.411363109371831, + 3.50940810852587, + 3.443761127787328, + 3.2923240583976954, + 3.430755973580465, + 3.5769552461603373, + 3.7749010812357664, + 3.660107268969278, + 3.500225832159285, + 3.526480695065726, + 3.3453587777675198, + 3.1047604304208027, + 3.3476963534841824, + 3.478196765339715, + 3.3305414457231572, + 3.5126532635195042, + 3.33605541921892, + 3.2163693599547436, + 3.7806026557432477, + 3.3401169865029825, + 3.1518009951454893, + 3.2371807009506073, + 2.9512147995805798, + 3.0927735666771694, + 3.213060679569311, + 3.5001364738514202, + 3.49922950918624, + 2.932653658634374, + 3.3065469080487375, + 3.140541361650076, + 3.2847457151884845, + 3.2096546330379403, + 3.55068231910637, + 3.2711455573473707, + 3.213229946429165, + 2.9215808110426353, + 3.3687408951644255, + 3.4244227325281513, + 3.3959627373598065, + 3.0141630485499453, + 3.1383418555249265, + 3.6497219750153165, + 3.057008346288621, + 3.0677126047601377, + 2.986411113592927, + 3.3305968593545683, + 3.2478795321363796, + 3.0460439617801196, + 3.2351302436224296, + 3.121009796205439, + 3.2037525202706596, + 3.023587437171658, + 2.994355793579587, + 2.7239984945219944, + 2.670574192851447, + 3.1503561452593463, + 2.9580247209432704, + 3.0564361302319565, + 2.820036761412143, + 2.8510604169368174, + 3.1931262706663643, + 3.0758831947730747, + 3.0726240623303913, + 2.960708733865515, + 3.2394786393549526, + 3.1766112690073527, + 3.0257638541807332, + 2.8850743863787773, + 2.7371651803545847, + 2.5527316297114355, + 2.8847298275979103, + 2.862320124920188, + 2.8740760381865793, + 2.957650252154531, + 2.8219741196784716, + 2.971976001672758, + 2.9963922436602157, + 3.0016313795699143, + 2.8536448204939737, + 2.9194481425937067, + 2.759428407991431, + 2.847722465161573, + 2.8942666123343153, + 3.160171054562253, + 2.675894535529135, + 2.668545074968101, + 2.6025606203121407, + 2.6403190693037826, + 2.8605441753734375, + 2.719704703954444, + 2.5186890910989956, + 2.680002151353494, + 2.9173932107519462, + 2.87843375101788, + 3.083251851485052, + 2.8682637579877706, + 2.1357069160554083, + 2.9044377856216244, + 2.64141061103105, + 2.6466171378484753, + 2.4557492796490314, + 2.4784978812321103, + 2.4529532896986086, + 2.796503480790999, + 2.343158675401178, + 2.5462670552433337, + 2.3692687336418645, + 2.7170979479440267, + 2.462296544128665, + 2.4900937961701506, + 2.9026947396941, + 2.7206481059532295, + 2.757073311402533, + 2.566326854712945, + 2.5630171608664165, + 2.5290814190927233, + 2.4284582488241027, + 2.471757777787096, + 2.286792448721011, + 2.662863674032561, + 2.680038541514773, + 2.380940854637058, + 2.4146703311840847, + 2.499173733290518, + 2.193490255073301, + 2.603468717991845, + 2.558951332373751, + 2.218594385028364, + 2.3447399759788463, + 2.248298697364122, + 2.2080582449808883, + 2.6007882420472948, + 2.7607744812258246, + 2.2653400850272694, + 2.3746399621281506, + 2.422738076109985, + 2.1670204446833283, + 2.370615103633382, + 2.339932195149825, + 2.5040360591176, + 2.2144234124443005, + 2.2655226856202693, + 2.1611480548277733, + 2.039596965352297, + 2.25266652271436, + 2.3777753674012034, + 2.1042734517064057, + 2.279315579070228, + 2.288095074681208, + 2.0192509249188655, + 2.4403462551003194, + 2.0791203361191046, + 1.993933858531308, + 2.2226148170063578, + 2.1333830438242343, + 1.9917132000538866, + 2.174435779179552, + 2.317767880613726, + 1.9371193077488438, + 2.2613223682814856, + 2.2230007884900305, + 2.2402135439755253, + 2.250160747952063, + 2.220223735715496, + 2.308365718972679, + 2.092567010593948, + 1.916376087873604, + 2.0658992742604854, + 1.9941768550719983, + 2.260337209624545, + 2.2577432442742453, + 1.9087748576516028, + 2.070403351742061, + 1.9802442145468158, + 1.7838089261950603, + 2.1058294078320055, + 2.1838244699208507, + 1.9559819458079786, + 2.2253535798736053, + 2.0690368273138673, + 2.0899717945608605, + 2.057042129982463, + 2.0067407762499547, + 2.23494326558414, + 1.8223123165155792, + 1.923645760775099, + 2.033655169370822, + 1.8486850785751037, + 2.0996415942455995, + 2.001735007943943, + 1.7676349325639165, + 1.6911601821595004, + 2.5185754503774818, + 1.8675475695828434, + 1.7474634872877541, + 1.6639024318022815, + 1.4906919479967877, + 1.6339503040650443, + 1.7871294928881103, + 1.5827382330732935, + 1.7298554012348222, + 1.6977597756004847, + 2.101338488226891, + 1.6948863745112328, + 1.552266032265678, + 1.7184021040417081, + 1.525475942585698, + 1.997832030620481, + 1.7776780675817254, + 1.768625767298711, + 1.916492771506258, + 1.6432739295253618, + 1.7923823135373136, + 1.6533155500042427, + 1.5537423321681443, + 1.6908552382664876, + 1.4260725322650434, + 1.6006463238148096, + 1.6071617211429647, + 1.6596122624209895, + 1.747365303976137, + 1.596759935730097, + 1.6583660251304901, + 1.7263921959188735, + 1.4991037255507302, + 1.2308827272132938, + 1.6778301269388318, + 1.6857709648954657, + 1.5285590718301136, + 1.6191713634104032, + 1.0571680219364596, + 1.323561327141237, + 1.4820551795447914, + 1.2582421715033996, + 1.8528368782756743, + 1.4345295464231467, + 1.6172512669096215, + 1.190323970382452, + 1.7237415805280418, + 1.3770166329625217, + 1.4733672972311498, + 1.5571641476202918, + 1.3885056795949835, + 1.360073931813559, + 1.6565592081152274, + 1.4021710081913226, + 1.261631062961906, + 1.7535774631873338, + 1.2378961337145225, + 0.9693961115764717, + 1.4850241571992389, + 1.3214066534882485, + 1.263838993950585, + 1.464494306476996, + 1.289334452361241, + 1.4414823167080315, + 1.1350109918136628, + 1.3038058514466138, + 1.2235304593940683, + 1.369863392558615, + 1.0466826626651413, + 1.3405971899521576, + 1.4814524751695888, + 1.2935613090884872, + 1.293761641995569, + 1.516076151673318, + 1.1840359564883411, + 1.506338768491188, + 0.8319449820519838, + 1.0340485814413976, + 1.1997105026476047, + 0.830398800146948, + 1.0380069317414005, + 1.5002844764486087, + 1.274159731937728, + 0.9078416374224527, + 1.0925688655932189, + 1.064733116194158, + 1.0287324470908077, + 1.0785616951622756, + 0.9155139425966381, + 1.0842216167766126, + 1.0876090817466018, + 1.5151076800704295, + 1.1735728350936012, + 1.2519657149164312, + 0.6440018522831752, + 1.0488179160845197, + 1.0559971063644342, + 1.0354420907515145, + 1.2410759118872832, + 1.3030418020091727, + 1.3235510038750862, + 1.1336635354423616, + 1.2030929443011387, + 1.0054792667028674, + 1.0557578991437992, + 0.7828161261179325, + 0.9060545062168106, + 1.0974870041459983, + 0.9783927502774027, + 1.1029519594228525, + 0.9745401894172256, + 0.8882321994754085, + 1.2340180877138751, + 0.9944870805025049, + 0.7192077572875148, + 0.724805996011854, + 0.8034352239274687, + 0.9956697232247087, + 0.6066402095125725, + 0.728068908807273, + 0.9302160927447782, + 0.6576261610787133, + 0.7816720671252245, + 1.0250802409689537, + 0.9893162559014125, + 1.1361213994944646, + 0.9360552872408848, + 0.799783983525806, + 0.832225149525768, + 0.9020613554867262, + 0.9230280831211176, + 0.6688944031141203, + 0.7607440067947444, + 0.7889995156746044, + 1.0052138351995437, + 0.6915968404637921, + 0.6654653862876752, + 0.7580341734491157, + 1.05536192096199, + 0.7682187914604292, + 0.9642832373636919, + 0.6624633088588144, + 0.7553303331077317, + 0.8845911902913952, + 0.8023728276083238, + 0.516180141914723, + 0.5913111496976304, + 0.9265181079094232, + 0.743769405973981, + 1.0817597684849685, + 1.0966767107121067, + 0.3582781422458793, + 1.0304342819556895, + 0.5656889476502867, + 0.5892733636641434, + 0.47002464859119986, + 0.5005130771156385, + 0.7428624910913764, + 0.9395014437038942, + 0.6816076248948857, + 0.6151929209520703, + 0.7578359482412357, + 0.6032764338841781, + 0.45479894054059566, + 0.6759188821978603, + 1.0725295204740752, + 0.7689523088175163 + ] + }, + { + "mode": "lines", + "name": "var3", + "type": "scatter", + "x": [ + "2019-01-01T00:02:42.000000000", + "2019-01-01T00:02:59.000000000", + "2019-01-01T00:04:03.000000000", + "2019-01-01T00:04:24.000000000", + "2019-01-01T00:05:47.000000000", + "2019-01-01T00:06:20.000000000", + "2019-01-01T00:06:54.000000000", + "2019-01-01T00:07:44.000000000", + "2019-01-01T00:07:47.000000000", + "2019-01-01T00:07:55.000000000", + "2019-01-01T00:11:11.000000000", + "2019-01-01T00:12:34.000000000", + "2019-01-01T00:14:15.000000000", + "2019-01-01T00:15:26.000000000", + "2019-01-01T00:15:55.000000000", + "2019-01-01T00:16:54.000000000", + "2019-01-01T00:17:26.000000000", + "2019-01-01T00:18:13.000000000", + "2019-01-01T00:18:32.000000000", + "2019-01-01T00:20:11.000000000", + "2019-01-01T00:20:40.000000000", + "2019-01-01T00:24:09.000000000", + "2019-01-01T00:24:38.000000000", + "2019-01-01T00:25:34.000000000", + "2019-01-01T00:26:16.000000000", + "2019-01-01T00:28:27.000000000", + "2019-01-01T00:28:42.000000000", + "2019-01-01T00:29:14.000000000", + "2019-01-01T00:32:11.000000000", + "2019-01-01T00:32:18.000000000", + "2019-01-01T00:32:45.000000000", + "2019-01-01T00:34:28.000000000", + "2019-01-01T00:34:36.000000000", + "2019-01-01T00:35:03.000000000", + "2019-01-01T00:35:18.000000000", + "2019-01-01T00:36:00.000000000", + "2019-01-01T00:36:17.000000000", + "2019-01-01T00:36:24.000000000", + "2019-01-01T00:38:59.000000000", + "2019-01-01T00:41:06.000000000", + "2019-01-01T00:41:33.000000000", + "2019-01-01T00:41:48.000000000", + "2019-01-01T00:44:17.000000000", + "2019-01-01T00:44:51.000000000", + "2019-01-01T00:44:56.000000000", + "2019-01-01T00:47:19.000000000", + "2019-01-01T00:47:28.000000000", + "2019-01-01T00:47:29.000000000", + "2019-01-01T00:47:47.000000000", + "2019-01-01T00:48:43.000000000", + "2019-01-01T00:49:34.000000000", + "2019-01-01T00:51:50.000000000", + "2019-01-01T00:52:27.000000000", + "2019-01-01T00:53:52.000000000", + "2019-01-01T00:54:55.000000000", + "2019-01-01T00:57:00.000000000", + "2019-01-01T00:57:40.000000000", + "2019-01-01T00:58:07.000000000", + "2019-01-01T01:00:33.000000000", + "2019-01-01T01:00:36.000000000", + "2019-01-01T01:00:59.000000000", + "2019-01-01T01:03:43.000000000", + "2019-01-01T01:04:12.000000000", + "2019-01-01T01:04:52.000000000", + "2019-01-01T01:05:42.000000000", + "2019-01-01T01:05:45.000000000", + "2019-01-01T01:07:39.000000000", + "2019-01-01T01:07:43.000000000", + "2019-01-01T01:10:13.000000000", + "2019-01-01T01:10:43.000000000", + "2019-01-01T01:11:03.000000000", + "2019-01-01T01:11:25.000000000", + "2019-01-01T01:12:01.000000000", + "2019-01-01T01:12:30.000000000", + "2019-01-01T01:15:29.000000000", + "2019-01-01T01:15:42.000000000", + "2019-01-01T01:16:23.000000000", + "2019-01-01T01:16:36.000000000", + "2019-01-01T01:18:40.000000000", + "2019-01-01T01:18:44.000000000", + "2019-01-01T01:21:30.000000000", + "2019-01-01T01:22:31.000000000", + "2019-01-01T01:23:29.000000000", + "2019-01-01T01:23:41.000000000", + "2019-01-01T01:27:51.000000000", + "2019-01-01T01:27:54.000000000", + "2019-01-01T01:27:58.000000000", + "2019-01-01T01:28:34.000000000", + "2019-01-01T01:29:07.000000000", + "2019-01-01T01:31:55.000000000", + "2019-01-01T01:32:20.000000000", + "2019-01-01T01:33:18.000000000", + "2019-01-01T01:34:22.000000000", + "2019-01-01T01:34:33.000000000", + "2019-01-01T01:35:06.000000000", + "2019-01-01T01:35:12.000000000", + "2019-01-01T01:36:18.000000000", + "2019-01-01T01:36:26.000000000", + "2019-01-01T01:38:28.000000000", + "2019-01-01T01:39:00.000000000", + "2019-01-01T01:39:53.000000000", + "2019-01-01T01:40:42.000000000", + "2019-01-01T01:42:50.000000000", + "2019-01-01T01:42:52.000000000", + "2019-01-01T01:43:40.000000000", + "2019-01-01T01:46:57.000000000", + "2019-01-01T01:47:56.000000000", + "2019-01-01T01:49:05.000000000", + "2019-01-01T01:49:08.000000000", + "2019-01-01T01:50:34.000000000", + "2019-01-01T01:51:35.000000000", + "2019-01-01T01:52:38.000000000", + "2019-01-01T01:52:48.000000000", + "2019-01-01T01:53:36.000000000", + "2019-01-01T01:55:22.000000000", + "2019-01-01T01:57:54.000000000", + "2019-01-01T01:58:37.000000000", + "2019-01-01T02:00:16.000000000", + "2019-01-01T02:00:30.000000000", + "2019-01-01T02:00:32.000000000", + "2019-01-01T02:01:51.000000000", + "2019-01-01T02:02:14.000000000", + "2019-01-01T02:02:49.000000000", + "2019-01-01T02:04:11.000000000", + "2019-01-01T02:06:21.000000000", + "2019-01-01T02:08:03.000000000", + "2019-01-01T02:08:26.000000000", + "2019-01-01T02:08:35.000000000", + "2019-01-01T02:09:18.000000000", + "2019-01-01T02:09:45.000000000", + "2019-01-01T02:10:01.000000000", + "2019-01-01T02:10:28.000000000", + "2019-01-01T02:10:50.000000000", + "2019-01-01T02:11:23.000000000", + "2019-01-01T02:12:37.000000000", + "2019-01-01T02:12:51.000000000", + "2019-01-01T02:13:07.000000000", + "2019-01-01T02:13:42.000000000", + "2019-01-01T02:18:18.000000000", + "2019-01-01T02:20:15.000000000", + "2019-01-01T02:20:58.000000000", + "2019-01-01T02:23:27.000000000", + "2019-01-01T02:24:09.000000000", + "2019-01-01T02:25:07.000000000", + "2019-01-01T02:25:45.000000000", + "2019-01-01T02:27:48.000000000", + "2019-01-01T02:30:26.000000000", + "2019-01-01T02:31:48.000000000", + "2019-01-01T02:32:34.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:33:18.000000000", + "2019-01-01T02:33:49.000000000", + "2019-01-01T02:36:02.000000000", + "2019-01-01T02:37:39.000000000", + "2019-01-01T02:38:55.000000000", + "2019-01-01T02:39:30.000000000", + "2019-01-01T02:39:33.000000000", + "2019-01-01T02:40:05.000000000", + "2019-01-01T02:40:54.000000000", + "2019-01-01T02:41:40.000000000", + "2019-01-01T02:41:49.000000000", + "2019-01-01T02:43:24.000000000", + "2019-01-01T02:44:04.000000000", + "2019-01-01T02:44:45.000000000", + "2019-01-01T02:44:48.000000000", + "2019-01-01T02:45:01.000000000", + "2019-01-01T02:48:17.000000000", + "2019-01-01T02:49:20.000000000", + "2019-01-01T02:49:50.000000000", + "2019-01-01T02:50:18.000000000", + "2019-01-01T02:50:31.000000000", + "2019-01-01T02:51:59.000000000", + "2019-01-01T02:52:13.000000000", + "2019-01-01T02:52:16.000000000", + "2019-01-01T02:53:10.000000000", + "2019-01-01T02:57:45.000000000", + "2019-01-01T02:57:47.000000000", + "2019-01-01T02:58:12.000000000", + "2019-01-01T02:59:06.000000000", + "2019-01-01T02:59:08.000000000", + "2019-01-01T03:00:16.000000000", + "2019-01-01T03:01:18.000000000", + "2019-01-01T03:02:31.000000000", + "2019-01-01T03:02:50.000000000", + "2019-01-01T03:05:15.000000000", + "2019-01-01T03:06:30.000000000", + "2019-01-01T03:06:57.000000000", + "2019-01-01T03:07:04.000000000", + "2019-01-01T03:07:17.000000000", + "2019-01-01T03:07:30.000000000", + "2019-01-01T03:08:42.000000000", + "2019-01-01T03:09:36.000000000", + "2019-01-01T03:11:54.000000000", + "2019-01-01T03:12:40.000000000", + "2019-01-01T03:14:09.000000000", + "2019-01-01T03:16:10.000000000", + "2019-01-01T03:18:31.000000000", + "2019-01-01T03:19:42.000000000", + "2019-01-01T03:24:27.000000000", + "2019-01-01T03:27:10.000000000", + "2019-01-01T03:27:13.000000000", + "2019-01-01T03:31:09.000000000", + "2019-01-01T03:31:33.000000000", + "2019-01-01T03:32:06.000000000", + "2019-01-01T03:36:55.000000000", + "2019-01-01T03:37:00.000000000", + "2019-01-01T03:38:47.000000000", + "2019-01-01T03:38:57.000000000", + "2019-01-01T03:39:12.000000000", + "2019-01-01T03:49:46.000000000", + "2019-01-01T03:50:20.000000000", + "2019-01-01T03:50:31.000000000", + "2019-01-01T03:50:39.000000000", + "2019-01-01T03:50:45.000000000", + "2019-01-01T03:52:18.000000000", + "2019-01-01T03:52:40.000000000", + "2019-01-01T03:54:13.000000000", + "2019-01-01T03:54:49.000000000", + "2019-01-01T03:55:12.000000000", + "2019-01-01T03:55:41.000000000", + "2019-01-01T03:57:07.000000000", + "2019-01-01T03:57:15.000000000", + "2019-01-01T03:57:18.000000000", + "2019-01-01T03:58:25.000000000", + "2019-01-01T04:01:58.000000000", + "2019-01-01T04:02:15.000000000", + "2019-01-01T04:03:13.000000000", + "2019-01-01T04:04:04.000000000", + "2019-01-01T04:08:12.000000000", + "2019-01-01T04:08:27.000000000", + "2019-01-01T04:09:00.000000000", + "2019-01-01T04:09:33.000000000", + "2019-01-01T04:10:57.000000000", + "2019-01-01T04:13:39.000000000", + "2019-01-01T04:14:50.000000000", + "2019-01-01T04:15:23.000000000", + "2019-01-01T04:17:45.000000000", + "2019-01-01T04:19:42.000000000", + "2019-01-01T04:20:28.000000000", + "2019-01-01T04:21:00.000000000", + "2019-01-01T04:21:26.000000000", + "2019-01-01T04:22:36.000000000", + "2019-01-01T04:24:07.000000000", + "2019-01-01T04:24:29.000000000", + "2019-01-01T04:25:17.000000000", + "2019-01-01T04:26:29.000000000", + "2019-01-01T04:27:18.000000000", + "2019-01-01T04:27:19.000000000", + "2019-01-01T04:28:14.000000000", + "2019-01-01T04:28:40.000000000", + "2019-01-01T04:30:07.000000000", + "2019-01-01T04:30:17.000000000", + "2019-01-01T04:30:41.000000000", + "2019-01-01T04:33:18.000000000", + "2019-01-01T04:34:49.000000000", + "2019-01-01T04:35:36.000000000", + "2019-01-01T04:35:47.000000000", + "2019-01-01T04:35:57.000000000", + "2019-01-01T04:36:05.000000000", + "2019-01-01T04:36:10.000000000", + "2019-01-01T04:36:22.000000000", + "2019-01-01T04:36:37.000000000", + "2019-01-01T04:38:44.000000000", + "2019-01-01T04:39:22.000000000", + "2019-01-01T04:39:34.000000000", + "2019-01-01T04:40:33.000000000", + "2019-01-01T04:40:38.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:42:22.000000000", + "2019-01-01T04:43:26.000000000", + "2019-01-01T04:44:02.000000000", + "2019-01-01T04:44:24.000000000", + "2019-01-01T04:44:52.000000000", + "2019-01-01T04:44:59.000000000", + "2019-01-01T04:46:34.000000000", + "2019-01-01T04:48:35.000000000", + "2019-01-01T04:49:28.000000000", + "2019-01-01T04:49:44.000000000", + "2019-01-01T04:49:58.000000000", + "2019-01-01T04:50:34.000000000", + "2019-01-01T04:53:00.000000000", + "2019-01-01T04:53:34.000000000", + "2019-01-01T04:55:24.000000000", + "2019-01-01T04:55:28.000000000", + "2019-01-01T04:55:29.000000000", + "2019-01-01T04:56:18.000000000", + "2019-01-01T04:57:06.000000000", + "2019-01-01T04:57:11.000000000", + "2019-01-01T05:00:55.000000000", + "2019-01-01T05:01:46.000000000", + "2019-01-01T05:02:42.000000000", + "2019-01-01T05:03:21.000000000", + "2019-01-01T05:04:16.000000000", + "2019-01-01T05:04:24.000000000", + "2019-01-01T05:10:08.000000000", + "2019-01-01T05:11:57.000000000", + "2019-01-01T05:14:53.000000000", + "2019-01-01T05:14:58.000000000", + "2019-01-01T05:19:08.000000000", + "2019-01-01T05:20:27.000000000", + "2019-01-01T05:21:05.000000000", + "2019-01-01T05:21:15.000000000", + "2019-01-01T05:21:33.000000000", + "2019-01-01T05:25:05.000000000", + "2019-01-01T05:25:10.000000000", + "2019-01-01T05:25:39.000000000", + "2019-01-01T05:25:45.000000000", + "2019-01-01T05:26:35.000000000", + "2019-01-01T05:27:41.000000000", + "2019-01-01T05:30:44.000000000", + "2019-01-01T05:35:30.000000000", + "2019-01-01T05:35:32.000000000", + "2019-01-01T05:36:03.000000000", + "2019-01-01T05:36:07.000000000", + "2019-01-01T05:37:12.000000000", + "2019-01-01T05:39:00.000000000", + "2019-01-01T05:39:04.000000000", + "2019-01-01T05:39:37.000000000", + "2019-01-01T05:40:39.000000000", + "2019-01-01T05:41:45.000000000", + "2019-01-01T05:43:52.000000000", + "2019-01-01T05:45:07.000000000", + "2019-01-01T05:46:13.000000000", + "2019-01-01T05:48:40.000000000", + "2019-01-01T05:48:44.000000000", + "2019-01-01T05:49:17.000000000", + "2019-01-01T05:50:05.000000000", + "2019-01-01T05:50:11.000000000", + "2019-01-01T05:50:16.000000000", + "2019-01-01T05:50:31.000000000", + "2019-01-01T05:51:45.000000000", + "2019-01-01T05:52:21.000000000", + "2019-01-01T05:53:11.000000000", + "2019-01-01T05:55:59.000000000", + "2019-01-01T05:56:12.000000000", + "2019-01-01T05:56:35.000000000", + "2019-01-01T05:57:20.000000000", + "2019-01-01T05:57:49.000000000", + "2019-01-01T05:58:57.000000000", + "2019-01-01T05:59:12.000000000", + "2019-01-01T06:00:20.000000000", + "2019-01-01T06:00:21.000000000", + "2019-01-01T06:01:00.000000000", + "2019-01-01T06:02:23.000000000", + "2019-01-01T06:02:34.000000000", + "2019-01-01T06:02:38.000000000", + "2019-01-01T06:03:49.000000000", + "2019-01-01T06:05:10.000000000", + "2019-01-01T06:05:30.000000000", + "2019-01-01T06:07:32.000000000", + "2019-01-01T06:08:10.000000000", + "2019-01-01T06:09:35.000000000", + "2019-01-01T06:12:25.000000000", + "2019-01-01T06:12:26.000000000", + "2019-01-01T06:12:56.000000000", + "2019-01-01T06:13:03.000000000", + "2019-01-01T06:15:09.000000000", + "2019-01-01T06:15:28.000000000", + "2019-01-01T06:15:53.000000000", + "2019-01-01T06:16:56.000000000", + "2019-01-01T06:17:39.000000000", + "2019-01-01T06:18:20.000000000", + "2019-01-01T06:18:27.000000000", + "2019-01-01T06:18:56.000000000", + "2019-01-01T06:19:23.000000000", + "2019-01-01T06:19:35.000000000", + "2019-01-01T06:19:56.000000000", + "2019-01-01T06:20:07.000000000", + "2019-01-01T06:21:21.000000000", + "2019-01-01T06:21:26.000000000", + "2019-01-01T06:22:09.000000000", + "2019-01-01T06:23:56.000000000", + "2019-01-01T06:24:36.000000000", + "2019-01-01T06:25:11.000000000", + "2019-01-01T06:26:24.000000000", + "2019-01-01T06:27:47.000000000", + "2019-01-01T06:28:18.000000000", + "2019-01-01T06:29:14.000000000", + "2019-01-01T06:29:22.000000000", + "2019-01-01T06:30:42.000000000", + "2019-01-01T06:31:47.000000000", + "2019-01-01T06:31:51.000000000", + "2019-01-01T06:31:54.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:35:17.000000000", + "2019-01-01T06:35:30.000000000", + "2019-01-01T06:38:02.000000000", + "2019-01-01T06:39:21.000000000", + "2019-01-01T06:39:39.000000000", + "2019-01-01T06:40:15.000000000", + "2019-01-01T06:40:29.000000000", + "2019-01-01T06:41:55.000000000", + "2019-01-01T06:43:05.000000000", + "2019-01-01T06:43:25.000000000", + "2019-01-01T06:43:28.000000000", + "2019-01-01T06:45:16.000000000", + "2019-01-01T06:46:34.000000000", + "2019-01-01T06:47:08.000000000", + "2019-01-01T06:50:42.000000000", + "2019-01-01T06:51:23.000000000", + "2019-01-01T06:52:20.000000000", + "2019-01-01T06:52:24.000000000", + "2019-01-01T06:52:44.000000000", + "2019-01-01T06:52:47.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:55:08.000000000", + "2019-01-01T06:55:49.000000000", + "2019-01-01T06:56:28.000000000", + "2019-01-01T06:56:33.000000000", + "2019-01-01T06:57:51.000000000", + "2019-01-01T07:00:11.000000000", + "2019-01-01T07:01:31.000000000", + "2019-01-01T07:02:30.000000000", + "2019-01-01T07:04:06.000000000", + "2019-01-01T07:04:31.000000000", + "2019-01-01T07:05:15.000000000", + "2019-01-01T07:05:27.000000000", + "2019-01-01T07:05:49.000000000", + "2019-01-01T07:06:17.000000000", + "2019-01-01T07:06:26.000000000", + "2019-01-01T07:07:31.000000000", + "2019-01-01T07:09:21.000000000", + "2019-01-01T07:12:19.000000000", + "2019-01-01T07:12:26.000000000", + "2019-01-01T07:13:56.000000000", + "2019-01-01T07:15:03.000000000", + "2019-01-01T07:17:28.000000000", + "2019-01-01T07:18:04.000000000", + "2019-01-01T07:18:56.000000000", + "2019-01-01T07:19:21.000000000", + "2019-01-01T07:19:46.000000000", + "2019-01-01T07:20:31.000000000", + "2019-01-01T07:21:47.000000000", + "2019-01-01T07:24:25.000000000", + "2019-01-01T07:25:25.000000000", + "2019-01-01T07:25:42.000000000", + "2019-01-01T07:27:45.000000000", + "2019-01-01T07:30:45.000000000", + "2019-01-01T07:31:25.000000000", + "2019-01-01T07:31:33.000000000", + "2019-01-01T07:33:28.000000000", + "2019-01-01T07:35:13.000000000", + "2019-01-01T07:37:16.000000000", + "2019-01-01T07:40:34.000000000", + "2019-01-01T07:40:45.000000000", + "2019-01-01T07:40:56.000000000", + "2019-01-01T07:40:59.000000000", + "2019-01-01T07:41:00.000000000", + "2019-01-01T07:41:59.000000000", + "2019-01-01T07:42:38.000000000", + "2019-01-01T07:42:48.000000000", + "2019-01-01T07:42:52.000000000", + "2019-01-01T07:43:41.000000000", + "2019-01-01T07:44:49.000000000", + "2019-01-01T07:46:28.000000000", + "2019-01-01T07:48:34.000000000", + "2019-01-01T07:52:21.000000000", + "2019-01-01T07:52:59.000000000", + "2019-01-01T07:54:07.000000000", + "2019-01-01T07:55:16.000000000", + "2019-01-01T07:57:04.000000000", + "2019-01-01T07:58:08.000000000", + "2019-01-01T07:58:18.000000000", + "2019-01-01T07:58:55.000000000", + "2019-01-01T08:00:30.000000000", + "2019-01-01T08:04:08.000000000", + "2019-01-01T08:04:46.000000000", + "2019-01-01T08:05:49.000000000", + "2019-01-01T08:06:01.000000000", + "2019-01-01T08:06:54.000000000", + "2019-01-01T08:08:15.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:11:33.000000000", + "2019-01-01T08:11:47.000000000", + "2019-01-01T08:12:03.000000000", + "2019-01-01T08:12:53.000000000", + "2019-01-01T08:13:17.000000000", + "2019-01-01T08:13:31.000000000", + "2019-01-01T08:14:10.000000000", + "2019-01-01T08:15:24.000000000", + "2019-01-01T08:16:02.000000000", + "2019-01-01T08:16:30.000000000", + "2019-01-01T08:18:19.000000000", + "2019-01-01T08:18:51.000000000", + "2019-01-01T08:19:43.000000000", + "2019-01-01T08:20:02.000000000", + "2019-01-01T08:23:31.000000000", + "2019-01-01T08:24:37.000000000", + "2019-01-01T08:25:06.000000000", + "2019-01-01T08:25:19.000000000", + "2019-01-01T08:26:39.000000000", + "2019-01-01T08:27:52.000000000", + "2019-01-01T08:28:57.000000000", + "2019-01-01T08:29:44.000000000", + "2019-01-01T08:31:48.000000000", + "2019-01-01T08:32:26.000000000", + "2019-01-01T08:33:39.000000000", + "2019-01-01T08:34:11.000000000", + "2019-01-01T08:34:22.000000000", + "2019-01-01T08:35:40.000000000", + "2019-01-01T08:36:29.000000000", + "2019-01-01T08:37:39.000000000", + "2019-01-01T08:38:36.000000000", + "2019-01-01T08:40:08.000000000", + "2019-01-01T08:42:51.000000000", + "2019-01-01T08:43:20.000000000", + "2019-01-01T08:44:20.000000000", + "2019-01-01T08:44:52.000000000", + "2019-01-01T08:45:35.000000000", + "2019-01-01T08:49:10.000000000", + "2019-01-01T08:49:34.000000000", + "2019-01-01T08:49:36.000000000", + "2019-01-01T08:49:56.000000000", + "2019-01-01T08:50:29.000000000", + "2019-01-01T08:51:09.000000000", + "2019-01-01T08:51:37.000000000", + "2019-01-01T08:52:25.000000000", + "2019-01-01T08:52:39.000000000", + "2019-01-01T08:53:09.000000000", + "2019-01-01T08:55:15.000000000", + "2019-01-01T08:57:16.000000000", + "2019-01-01T08:57:29.000000000", + "2019-01-01T08:57:56.000000000", + "2019-01-01T08:59:55.000000000", + "2019-01-01T09:00:54.000000000", + "2019-01-01T09:01:24.000000000", + "2019-01-01T09:01:29.000000000", + "2019-01-01T09:02:12.000000000", + "2019-01-01T09:03:24.000000000", + "2019-01-01T09:04:03.000000000", + "2019-01-01T09:04:55.000000000", + "2019-01-01T09:05:05.000000000", + "2019-01-01T09:05:18.000000000", + "2019-01-01T09:06:33.000000000", + "2019-01-01T09:10:15.000000000", + "2019-01-01T09:13:49.000000000", + "2019-01-01T09:14:59.000000000", + "2019-01-01T09:16:48.000000000", + "2019-01-01T09:17:01.000000000", + "2019-01-01T09:17:06.000000000", + "2019-01-01T09:18:34.000000000", + "2019-01-01T09:19:35.000000000", + "2019-01-01T09:20:33.000000000", + "2019-01-01T09:20:53.000000000", + "2019-01-01T09:21:43.000000000", + "2019-01-01T09:24:16.000000000", + "2019-01-01T09:25:05.000000000", + "2019-01-01T09:25:44.000000000", + "2019-01-01T09:26:30.000000000", + "2019-01-01T09:27:13.000000000", + "2019-01-01T09:30:16.000000000", + "2019-01-01T09:30:19.000000000", + "2019-01-01T09:31:42.000000000", + "2019-01-01T09:32:19.000000000", + "2019-01-01T09:33:27.000000000", + "2019-01-01T09:33:44.000000000", + "2019-01-01T09:36:24.000000000", + "2019-01-01T09:37:53.000000000", + "2019-01-01T09:42:07.000000000", + "2019-01-01T09:43:32.000000000", + "2019-01-01T09:43:38.000000000", + "2019-01-01T09:44:02.000000000", + "2019-01-01T09:44:10.000000000", + "2019-01-01T09:44:55.000000000", + "2019-01-01T09:45:05.000000000", + "2019-01-01T09:45:12.000000000", + "2019-01-01T09:45:26.000000000", + "2019-01-01T09:45:47.000000000", + "2019-01-01T09:45:55.000000000", + "2019-01-01T09:49:15.000000000", + "2019-01-01T09:49:27.000000000", + "2019-01-01T09:50:02.000000000", + "2019-01-01T09:53:04.000000000", + "2019-01-01T09:53:19.000000000", + "2019-01-01T09:55:17.000000000", + "2019-01-01T09:56:17.000000000", + "2019-01-01T09:57:18.000000000", + "2019-01-01T09:59:07.000000000", + "2019-01-01T09:59:32.000000000", + "2019-01-01T10:00:22.000000000", + "2019-01-01T10:00:43.000000000", + "2019-01-01T10:01:05.000000000", + "2019-01-01T10:01:11.000000000", + "2019-01-01T10:02:19.000000000", + "2019-01-01T10:02:34.000000000", + "2019-01-01T10:03:22.000000000", + "2019-01-01T10:05:03.000000000", + "2019-01-01T10:05:16.000000000", + "2019-01-01T10:06:34.000000000", + "2019-01-01T10:07:02.000000000", + "2019-01-01T10:07:34.000000000", + "2019-01-01T10:07:48.000000000", + "2019-01-01T10:09:55.000000000", + "2019-01-01T10:11:45.000000000", + "2019-01-01T10:11:55.000000000", + "2019-01-01T10:13:39.000000000", + "2019-01-01T10:14:02.000000000", + "2019-01-01T10:14:28.000000000", + "2019-01-01T10:14:42.000000000", + "2019-01-01T10:15:32.000000000", + "2019-01-01T10:16:13.000000000", + "2019-01-01T10:16:48.000000000", + "2019-01-01T10:19:00.000000000", + "2019-01-01T10:20:20.000000000", + "2019-01-01T10:20:21.000000000", + "2019-01-01T10:23:57.000000000", + "2019-01-01T10:24:28.000000000", + "2019-01-01T10:24:37.000000000", + "2019-01-01T10:24:44.000000000", + "2019-01-01T10:25:54.000000000", + "2019-01-01T10:26:21.000000000", + "2019-01-01T10:27:11.000000000", + "2019-01-01T10:28:30.000000000", + "2019-01-01T10:28:45.000000000", + "2019-01-01T10:30:43.000000000", + "2019-01-01T10:30:49.000000000", + "2019-01-01T10:31:03.000000000", + "2019-01-01T10:31:15.000000000", + "2019-01-01T10:31:36.000000000", + "2019-01-01T10:33:12.000000000", + "2019-01-01T10:33:57.000000000", + "2019-01-01T10:34:00.000000000", + "2019-01-01T10:35:14.000000000", + "2019-01-01T10:36:35.000000000", + "2019-01-01T10:39:36.000000000", + "2019-01-01T10:40:55.000000000", + "2019-01-01T10:41:41.000000000", + "2019-01-01T10:43:05.000000000", + "2019-01-01T10:44:02.000000000", + "2019-01-01T10:44:08.000000000", + "2019-01-01T10:44:54.000000000", + "2019-01-01T10:45:19.000000000", + "2019-01-01T10:46:03.000000000", + "2019-01-01T10:48:55.000000000", + "2019-01-01T10:50:58.000000000", + "2019-01-01T10:52:13.000000000", + "2019-01-01T10:52:16.000000000", + "2019-01-01T10:53:07.000000000", + "2019-01-01T10:53:48.000000000", + "2019-01-01T10:56:09.000000000", + "2019-01-01T10:58:49.000000000", + "2019-01-01T11:00:22.000000000", + "2019-01-01T11:01:43.000000000", + "2019-01-01T11:02:27.000000000", + "2019-01-01T11:03:03.000000000", + "2019-01-01T11:07:06.000000000", + "2019-01-01T11:07:10.000000000", + "2019-01-01T11:07:25.000000000", + "2019-01-01T11:08:05.000000000", + "2019-01-01T11:09:36.000000000", + "2019-01-01T11:09:49.000000000", + "2019-01-01T11:10:16.000000000", + "2019-01-01T11:10:40.000000000", + "2019-01-01T11:12:01.000000000", + "2019-01-01T11:12:32.000000000", + "2019-01-01T11:15:09.000000000", + "2019-01-01T11:15:12.000000000", + "2019-01-01T11:15:25.000000000", + "2019-01-01T11:17:29.000000000", + "2019-01-01T11:17:36.000000000", + "2019-01-01T11:19:01.000000000", + "2019-01-01T11:19:02.000000000", + "2019-01-01T11:19:14.000000000", + "2019-01-01T11:21:30.000000000", + "2019-01-01T11:24:46.000000000", + "2019-01-01T11:27:17.000000000", + "2019-01-01T11:28:21.000000000", + "2019-01-01T11:29:12.000000000", + "2019-01-01T11:34:18.000000000", + "2019-01-01T11:34:31.000000000", + "2019-01-01T11:34:40.000000000", + "2019-01-01T11:35:04.000000000", + "2019-01-01T11:35:38.000000000", + "2019-01-01T11:36:31.000000000", + "2019-01-01T11:37:43.000000000", + "2019-01-01T11:38:29.000000000", + "2019-01-01T11:38:36.000000000", + "2019-01-01T11:39:09.000000000", + "2019-01-01T11:39:12.000000000", + "2019-01-01T11:40:07.000000000", + "2019-01-01T11:41:16.000000000", + "2019-01-01T11:42:45.000000000", + "2019-01-01T11:46:21.000000000", + "2019-01-01T11:47:04.000000000", + "2019-01-01T11:47:36.000000000", + "2019-01-01T11:48:19.000000000", + "2019-01-01T11:49:17.000000000", + "2019-01-01T11:49:18.000000000", + "2019-01-01T11:50:06.000000000", + "2019-01-01T11:53:01.000000000", + "2019-01-01T11:55:32.000000000", + "2019-01-01T11:56:24.000000000", + "2019-01-01T11:57:09.000000000", + "2019-01-01T11:58:11.000000000", + "2019-01-01T11:59:07.000000000", + "2019-01-01T12:00:23.000000000", + "2019-01-01T12:00:57.000000000", + "2019-01-01T12:01:02.000000000", + "2019-01-01T12:02:26.000000000", + "2019-01-01T12:03:34.000000000", + "2019-01-01T12:03:57.000000000", + "2019-01-01T12:04:16.000000000", + "2019-01-01T12:05:13.000000000", + "2019-01-01T12:05:14.000000000", + "2019-01-01T12:05:31.000000000", + "2019-01-01T12:06:43.000000000", + "2019-01-01T12:07:00.000000000", + "2019-01-01T12:07:30.000000000", + "2019-01-01T12:08:54.000000000", + "2019-01-01T12:10:19.000000000", + "2019-01-01T12:10:38.000000000", + "2019-01-01T12:13:42.000000000", + "2019-01-01T12:16:07.000000000", + "2019-01-01T12:16:40.000000000", + "2019-01-01T12:17:41.000000000", + "2019-01-01T12:19:36.000000000", + "2019-01-01T12:20:09.000000000", + "2019-01-01T12:21:43.000000000", + "2019-01-01T12:23:44.000000000", + "2019-01-01T12:24:01.000000000", + "2019-01-01T12:24:54.000000000", + "2019-01-01T12:25:03.000000000", + "2019-01-01T12:25:14.000000000", + "2019-01-01T12:27:02.000000000", + "2019-01-01T12:27:04.000000000", + "2019-01-01T12:27:05.000000000", + "2019-01-01T12:28:35.000000000", + "2019-01-01T12:30:16.000000000", + "2019-01-01T12:30:28.000000000", + "2019-01-01T12:31:24.000000000", + "2019-01-01T12:31:56.000000000", + "2019-01-01T12:32:56.000000000", + "2019-01-01T12:33:10.000000000", + "2019-01-01T12:33:13.000000000", + "2019-01-01T12:33:50.000000000", + "2019-01-01T12:33:52.000000000", + "2019-01-01T12:34:42.000000000", + "2019-01-01T12:34:53.000000000", + "2019-01-01T12:34:55.000000000", + "2019-01-01T12:37:05.000000000", + "2019-01-01T12:37:09.000000000", + "2019-01-01T12:37:18.000000000", + "2019-01-01T12:37:20.000000000", + "2019-01-01T12:38:21.000000000", + "2019-01-01T12:39:44.000000000", + "2019-01-01T12:41:04.000000000", + "2019-01-01T12:41:10.000000000", + "2019-01-01T12:42:13.000000000", + "2019-01-01T12:44:45.000000000", + "2019-01-01T12:45:49.000000000", + "2019-01-01T12:46:05.000000000", + "2019-01-01T12:47:29.000000000", + "2019-01-01T12:49:37.000000000", + "2019-01-01T12:49:46.000000000", + "2019-01-01T12:54:47.000000000", + "2019-01-01T12:55:29.000000000", + "2019-01-01T12:55:33.000000000", + "2019-01-01T12:56:29.000000000", + "2019-01-01T12:57:37.000000000", + "2019-01-01T12:58:24.000000000", + "2019-01-01T12:58:40.000000000", + "2019-01-01T12:59:24.000000000", + "2019-01-01T12:59:40.000000000", + "2019-01-01T13:03:16.000000000", + "2019-01-01T13:03:44.000000000", + "2019-01-01T13:03:48.000000000", + "2019-01-01T13:05:09.000000000", + "2019-01-01T13:07:52.000000000", + "2019-01-01T13:07:57.000000000", + "2019-01-01T13:09:20.000000000", + "2019-01-01T13:10:52.000000000", + "2019-01-01T13:11:08.000000000", + "2019-01-01T13:11:47.000000000", + "2019-01-01T13:12:00.000000000", + "2019-01-01T13:13:27.000000000", + "2019-01-01T13:14:00.000000000", + "2019-01-01T13:14:59.000000000", + "2019-01-01T13:15:00.000000000", + "2019-01-01T13:15:35.000000000", + "2019-01-01T13:16:56.000000000", + "2019-01-01T13:17:37.000000000", + "2019-01-01T13:19:10.000000000", + "2019-01-01T13:21:30.000000000", + "2019-01-01T13:25:09.000000000", + "2019-01-01T13:28:55.000000000", + "2019-01-01T13:30:52.000000000", + "2019-01-01T13:34:22.000000000", + "2019-01-01T13:34:53.000000000", + "2019-01-01T13:35:13.000000000", + "2019-01-01T13:35:42.000000000", + "2019-01-01T13:40:21.000000000", + "2019-01-01T13:40:27.000000000", + "2019-01-01T13:42:03.000000000", + "2019-01-01T13:43:09.000000000", + "2019-01-01T13:46:19.000000000", + "2019-01-01T13:47:09.000000000", + "2019-01-01T13:48:53.000000000", + "2019-01-01T13:48:57.000000000", + "2019-01-01T13:49:14.000000000", + "2019-01-01T13:50:03.000000000", + "2019-01-01T13:50:09.000000000", + "2019-01-01T13:50:51.000000000", + "2019-01-01T13:53:15.000000000", + "2019-01-01T13:54:31.000000000", + "2019-01-01T13:56:40.000000000", + "2019-01-01T13:56:51.000000000", + "2019-01-01T13:57:32.000000000", + "2019-01-01T13:59:12.000000000", + "2019-01-01T13:59:16.000000000", + "2019-01-01T13:59:27.000000000", + "2019-01-01T13:59:34.000000000", + "2019-01-01T14:00:18.000000000", + "2019-01-01T14:01:14.000000000", + "2019-01-01T14:02:10.000000000", + "2019-01-01T14:03:06.000000000", + "2019-01-01T14:03:53.000000000", + "2019-01-01T14:04:35.000000000", + "2019-01-01T14:04:51.000000000", + "2019-01-01T14:05:58.000000000", + "2019-01-01T14:08:36.000000000", + "2019-01-01T14:09:56.000000000", + "2019-01-01T14:10:53.000000000", + "2019-01-01T14:15:32.000000000", + "2019-01-01T14:16:13.000000000", + "2019-01-01T14:17:12.000000000", + "2019-01-01T14:18:24.000000000", + "2019-01-01T14:19:59.000000000", + "2019-01-01T14:22:21.000000000", + "2019-01-01T14:24:27.000000000", + "2019-01-01T14:25:43.000000000", + "2019-01-01T14:26:23.000000000", + "2019-01-01T14:26:24.000000000", + "2019-01-01T14:28:27.000000000", + "2019-01-01T14:28:55.000000000", + "2019-01-01T14:30:54.000000000", + "2019-01-01T14:32:53.000000000", + "2019-01-01T14:34:57.000000000", + "2019-01-01T14:35:39.000000000", + "2019-01-01T14:36:17.000000000", + "2019-01-01T14:36:44.000000000", + "2019-01-01T14:38:18.000000000", + "2019-01-01T14:38:32.000000000", + "2019-01-01T14:38:56.000000000", + "2019-01-01T14:38:58.000000000", + "2019-01-01T14:39:00.000000000", + "2019-01-01T14:40:20.000000000", + "2019-01-01T14:40:29.000000000", + "2019-01-01T14:40:51.000000000", + "2019-01-01T14:41:42.000000000", + "2019-01-01T14:42:58.000000000", + "2019-01-01T14:44:22.000000000", + "2019-01-01T14:44:30.000000000", + "2019-01-01T14:46:14.000000000", + "2019-01-01T14:47:00.000000000", + "2019-01-01T14:47:13.000000000", + "2019-01-01T14:47:25.000000000", + "2019-01-01T14:47:57.000000000", + "2019-01-01T14:48:48.000000000", + "2019-01-01T14:49:06.000000000", + "2019-01-01T14:49:08.000000000", + "2019-01-01T14:50:36.000000000", + "2019-01-01T14:52:05.000000000", + "2019-01-01T14:53:49.000000000", + "2019-01-01T14:54:06.000000000", + "2019-01-01T14:56:23.000000000", + "2019-01-01T14:56:42.000000000", + "2019-01-01T14:57:36.000000000", + "2019-01-01T14:57:43.000000000", + "2019-01-01T14:57:57.000000000", + "2019-01-01T14:58:03.000000000", + "2019-01-01T14:59:25.000000000", + "2019-01-01T15:00:00.000000000", + "2019-01-01T15:00:24.000000000", + "2019-01-01T15:01:28.000000000", + "2019-01-01T15:02:12.000000000", + "2019-01-01T15:04:11.000000000", + "2019-01-01T15:05:10.000000000", + "2019-01-01T15:07:47.000000000", + "2019-01-01T15:08:54.000000000", + "2019-01-01T15:09:08.000000000", + "2019-01-01T15:09:09.000000000", + "2019-01-01T15:09:35.000000000", + "2019-01-01T15:13:11.000000000", + "2019-01-01T15:13:13.000000000", + "2019-01-01T15:14:57.000000000", + "2019-01-01T15:16:27.000000000", + "2019-01-01T15:16:41.000000000", + "2019-01-01T15:18:36.000000000", + "2019-01-01T15:19:31.000000000", + "2019-01-01T15:20:11.000000000", + "2019-01-01T15:20:17.000000000", + "2019-01-01T15:20:44.000000000", + "2019-01-01T15:20:58.000000000", + "2019-01-01T15:21:58.000000000", + "2019-01-01T15:23:26.000000000", + "2019-01-01T15:24:24.000000000", + "2019-01-01T15:25:49.000000000", + "2019-01-01T15:29:16.000000000", + "2019-01-01T15:29:40.000000000", + "2019-01-01T15:30:14.000000000", + "2019-01-01T15:30:31.000000000", + "2019-01-01T15:30:39.000000000", + "2019-01-01T15:31:13.000000000", + "2019-01-01T15:31:30.000000000", + "2019-01-01T15:33:14.000000000", + "2019-01-01T15:33:17.000000000", + "2019-01-01T15:33:36.000000000", + "2019-01-01T15:36:46.000000000", + "2019-01-01T15:39:05.000000000", + "2019-01-01T15:39:07.000000000", + "2019-01-01T15:40:16.000000000", + "2019-01-01T15:40:52.000000000", + "2019-01-01T15:41:25.000000000", + "2019-01-01T15:41:44.000000000", + "2019-01-01T15:42:03.000000000", + "2019-01-01T15:44:27.000000000", + "2019-01-01T15:45:23.000000000", + "2019-01-01T15:45:33.000000000", + "2019-01-01T15:45:59.000000000", + "2019-01-01T15:47:36.000000000", + "2019-01-01T15:49:06.000000000", + "2019-01-01T15:49:37.000000000", + "2019-01-01T15:49:48.000000000", + "2019-01-01T15:50:04.000000000", + "2019-01-01T15:50:57.000000000", + "2019-01-01T15:51:18.000000000", + "2019-01-01T15:53:14.000000000", + "2019-01-01T15:53:45.000000000", + "2019-01-01T15:54:16.000000000", + "2019-01-01T15:55:00.000000000", + "2019-01-01T15:56:21.000000000", + "2019-01-01T15:56:46.000000000", + "2019-01-01T15:59:39.000000000", + "2019-01-01T15:59:56.000000000", + "2019-01-01T16:00:29.000000000", + "2019-01-01T16:02:27.000000000", + "2019-01-01T16:05:10.000000000", + "2019-01-01T16:07:52.000000000", + "2019-01-01T16:09:14.000000000", + "2019-01-01T16:11:39.000000000", + "2019-01-01T16:11:45.000000000", + "2019-01-01T16:12:55.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:15:44.000000000", + "2019-01-01T16:16:14.000000000", + "2019-01-01T16:17:53.000000000", + "2019-01-01T16:19:16.000000000", + "2019-01-01T16:19:27.000000000", + "2019-01-01T16:20:09.000000000", + "2019-01-01T16:20:35.000000000", + "2019-01-01T16:21:53.000000000", + "2019-01-01T16:22:55.000000000", + "2019-01-01T16:22:56.000000000", + "2019-01-01T16:23:03.000000000", + "2019-01-01T16:23:59.000000000", + "2019-01-01T16:24:08.000000000", + "2019-01-01T16:27:49.000000000", + "2019-01-01T16:30:02.000000000", + "2019-01-01T16:30:05.000000000", + "2019-01-01T16:30:21.000000000", + "2019-01-01T16:31:28.000000000", + "2019-01-01T16:31:32.000000000", + "2019-01-01T16:31:35.000000000", + "2019-01-01T16:33:36.000000000", + "2019-01-01T16:34:17.000000000", + "2019-01-01T16:35:13.000000000", + "2019-01-01T16:35:37.000000000", + "2019-01-01T16:37:25.000000000", + "2019-01-01T16:38:49.000000000", + "2019-01-01T16:40:37.000000000", + "2019-01-01T16:41:02.000000000", + "2019-01-01T16:42:07.000000000", + "2019-01-01T16:42:23.000000000", + "2019-01-01T16:42:34.000000000", + "2019-01-01T16:44:40.000000000", + "2019-01-01T16:49:09.000000000", + "2019-01-01T16:49:51.000000000", + "2019-01-01T16:50:15.000000000", + "2019-01-01T16:50:57.000000000", + "2019-01-01T16:52:39.000000000", + "2019-01-01T16:55:17.000000000", + "2019-01-01T16:55:32.000000000", + "2019-01-01T16:56:48.000000000", + "2019-01-01T16:58:06.000000000", + "2019-01-01T16:58:32.000000000", + "2019-01-01T16:59:18.000000000", + "2019-01-01T17:02:04.000000000", + "2019-01-01T17:02:39.000000000", + "2019-01-01T17:02:51.000000000", + "2019-01-01T17:03:15.000000000", + "2019-01-01T17:03:18.000000000", + "2019-01-01T17:04:25.000000000", + "2019-01-01T17:05:41.000000000", + "2019-01-01T17:06:44.000000000", + "2019-01-01T17:07:03.000000000", + "2019-01-01T17:07:08.000000000", + "2019-01-01T17:07:36.000000000", + "2019-01-01T17:09:05.000000000", + "2019-01-01T17:09:26.000000000", + "2019-01-01T17:09:43.000000000", + "2019-01-01T17:10:19.000000000", + "2019-01-01T17:10:36.000000000", + "2019-01-01T17:11:15.000000000", + "2019-01-01T17:11:23.000000000", + "2019-01-01T17:13:22.000000000", + "2019-01-01T17:13:47.000000000", + "2019-01-01T17:16:35.000000000", + "2019-01-01T17:17:39.000000000", + "2019-01-01T17:17:49.000000000", + "2019-01-01T17:20:36.000000000", + "2019-01-01T17:20:47.000000000", + "2019-01-01T17:21:11.000000000", + "2019-01-01T17:21:13.000000000", + "2019-01-01T17:22:58.000000000", + "2019-01-01T17:23:16.000000000", + "2019-01-01T17:25:10.000000000", + "2019-01-01T17:26:20.000000000", + "2019-01-01T17:26:47.000000000", + "2019-01-01T17:27:04.000000000", + "2019-01-01T17:27:33.000000000", + "2019-01-01T17:30:22.000000000", + "2019-01-01T17:30:46.000000000", + "2019-01-01T17:30:47.000000000", + "2019-01-01T17:30:52.000000000", + "2019-01-01T17:31:26.000000000", + "2019-01-01T17:34:21.000000000", + "2019-01-01T17:35:56.000000000", + "2019-01-01T17:37:02.000000000", + "2019-01-01T17:37:03.000000000", + "2019-01-01T17:39:10.000000000", + "2019-01-01T17:39:32.000000000", + "2019-01-01T17:39:34.000000000", + "2019-01-01T17:40:20.000000000", + "2019-01-01T17:40:49.000000000", + "2019-01-01T17:40:59.000000000", + "2019-01-01T17:41:25.000000000", + "2019-01-01T17:42:05.000000000", + "2019-01-01T17:45:43.000000000", + "2019-01-01T17:46:31.000000000", + "2019-01-01T17:46:37.000000000", + "2019-01-01T17:47:33.000000000", + "2019-01-01T17:48:28.000000000", + "2019-01-01T17:49:41.000000000", + "2019-01-01T17:52:15.000000000", + "2019-01-01T17:56:05.000000000", + "2019-01-01T17:56:17.000000000", + "2019-01-01T17:56:31.000000000", + "2019-01-01T17:58:54.000000000", + "2019-01-01T18:00:19.000000000", + "2019-01-01T18:02:10.000000000", + "2019-01-01T18:03:20.000000000", + "2019-01-01T18:03:49.000000000", + "2019-01-01T18:05:11.000000000", + "2019-01-01T18:05:46.000000000", + "2019-01-01T18:06:17.000000000", + "2019-01-01T18:06:51.000000000", + "2019-01-01T18:07:38.000000000", + "2019-01-01T18:08:10.000000000", + "2019-01-01T18:09:03.000000000", + "2019-01-01T18:09:24.000000000", + "2019-01-01T18:09:37.000000000", + "2019-01-01T18:10:36.000000000", + "2019-01-01T18:12:07.000000000", + "2019-01-01T18:12:55.000000000", + "2019-01-01T18:15:10.000000000", + "2019-01-01T18:15:42.000000000", + "2019-01-01T18:15:46.000000000", + "2019-01-01T18:17:20.000000000", + "2019-01-01T18:17:57.000000000", + "2019-01-01T18:19:35.000000000", + "2019-01-01T18:20:10.000000000", + "2019-01-01T18:21:48.000000000", + "2019-01-01T18:21:54.000000000", + "2019-01-01T18:22:14.000000000", + "2019-01-01T18:24:03.000000000", + "2019-01-01T18:25:15.000000000", + "2019-01-01T18:27:25.000000000", + "2019-01-01T18:28:59.000000000", + "2019-01-01T18:30:11.000000000", + "2019-01-01T18:32:19.000000000", + "2019-01-01T18:33:30.000000000", + "2019-01-01T18:33:35.000000000", + "2019-01-01T18:35:05.000000000", + "2019-01-01T18:35:23.000000000", + "2019-01-01T18:36:10.000000000", + "2019-01-01T18:36:40.000000000", + "2019-01-01T18:36:54.000000000", + "2019-01-01T18:37:16.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:49.000000000", + "2019-01-01T18:42:03.000000000", + "2019-01-01T18:43:20.000000000", + "2019-01-01T18:43:26.000000000", + "2019-01-01T18:43:51.000000000", + "2019-01-01T18:45:00.000000000", + "2019-01-01T18:48:05.000000000", + "2019-01-01T18:48:53.000000000", + "2019-01-01T18:49:27.000000000", + "2019-01-01T18:50:05.000000000", + "2019-01-01T18:51:02.000000000", + "2019-01-01T18:52:00.000000000", + "2019-01-01T18:52:21.000000000", + "2019-01-01T18:52:30.000000000", + "2019-01-01T18:52:43.000000000", + "2019-01-01T18:55:08.000000000", + "2019-01-01T18:55:28.000000000", + "2019-01-01T18:55:50.000000000", + "2019-01-01T19:02:53.000000000", + "2019-01-01T19:03:57.000000000", + "2019-01-01T19:04:34.000000000", + "2019-01-01T19:05:03.000000000", + "2019-01-01T19:05:11.000000000", + "2019-01-01T19:06:50.000000000", + "2019-01-01T19:07:27.000000000", + "2019-01-01T19:08:35.000000000", + "2019-01-01T19:09:09.000000000", + "2019-01-01T19:10:12.000000000", + "2019-01-01T19:10:13.000000000", + "2019-01-01T19:10:21.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:13:39.000000000", + "2019-01-01T19:14:17.000000000", + "2019-01-01T19:14:23.000000000", + "2019-01-01T19:14:39.000000000", + "2019-01-01T19:15:11.000000000", + "2019-01-01T19:18:11.000000000", + "2019-01-01T19:19:55.000000000", + "2019-01-01T19:20:14.000000000", + "2019-01-01T19:22:26.000000000", + "2019-01-01T19:22:33.000000000", + "2019-01-01T19:25:28.000000000", + "2019-01-01T19:26:24.000000000", + "2019-01-01T19:26:58.000000000", + "2019-01-01T19:28:47.000000000", + "2019-01-01T19:29:49.000000000", + "2019-01-01T19:30:26.000000000", + "2019-01-01T19:30:36.000000000", + "2019-01-01T19:31:56.000000000", + "2019-01-01T19:32:06.000000000", + "2019-01-01T19:33:09.000000000", + "2019-01-01T19:33:10.000000000", + "2019-01-01T19:34:25.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:41.000000000", + "2019-01-01T19:35:05.000000000", + "2019-01-01T19:37:26.000000000", + "2019-01-01T19:37:39.000000000", + "2019-01-01T19:38:24.000000000", + "2019-01-01T19:38:30.000000000", + "2019-01-01T19:39:07.000000000", + "2019-01-01T19:39:10.000000000", + "2019-01-01T19:41:03.000000000", + "2019-01-01T19:42:23.000000000", + "2019-01-01T19:43:06.000000000", + "2019-01-01T19:43:35.000000000", + "2019-01-01T19:44:34.000000000", + "2019-01-01T19:45:23.000000000", + "2019-01-01T19:46:20.000000000", + "2019-01-01T19:46:26.000000000", + "2019-01-01T19:47:31.000000000", + "2019-01-01T19:48:39.000000000", + "2019-01-01T19:49:10.000000000", + "2019-01-01T19:49:38.000000000", + "2019-01-01T19:51:27.000000000", + "2019-01-01T19:51:39.000000000", + "2019-01-01T19:51:46.000000000", + "2019-01-01T19:53:35.000000000", + "2019-01-01T19:53:36.000000000", + "2019-01-01T19:54:06.000000000", + "2019-01-01T19:55:49.000000000", + "2019-01-01T19:55:57.000000000", + "2019-01-01T19:58:03.000000000", + "2019-01-01T19:58:23.000000000", + "2019-01-01T20:00:47.000000000", + "2019-01-01T20:01:26.000000000", + "2019-01-01T20:03:55.000000000", + "2019-01-01T20:05:35.000000000", + "2019-01-01T20:07:00.000000000", + "2019-01-01T20:07:22.000000000", + "2019-01-01T20:09:50.000000000", + "2019-01-01T20:12:15.000000000", + "2019-01-01T20:12:44.000000000", + "2019-01-01T20:13:50.000000000", + "2019-01-01T20:14:48.000000000", + "2019-01-01T20:14:56.000000000", + "2019-01-01T20:15:35.000000000", + "2019-01-01T20:16:20.000000000", + "2019-01-01T20:16:50.000000000", + "2019-01-01T20:17:32.000000000", + "2019-01-01T20:19:27.000000000", + "2019-01-01T20:22:29.000000000", + "2019-01-01T20:23:01.000000000", + "2019-01-01T20:23:07.000000000", + "2019-01-01T20:25:23.000000000", + "2019-01-01T20:25:49.000000000", + "2019-01-01T20:25:56.000000000", + "2019-01-01T20:28:49.000000000", + "2019-01-01T20:30:53.000000000", + "2019-01-01T20:31:22.000000000", + "2019-01-01T20:31:44.000000000", + "2019-01-01T20:34:27.000000000", + "2019-01-01T20:37:16.000000000", + "2019-01-01T20:37:23.000000000", + "2019-01-01T20:37:58.000000000", + "2019-01-01T20:38:12.000000000", + "2019-01-01T20:38:59.000000000", + "2019-01-01T20:39:43.000000000", + "2019-01-01T20:40:01.000000000", + "2019-01-01T20:40:21.000000000", + "2019-01-01T20:42:02.000000000", + "2019-01-01T20:42:14.000000000", + "2019-01-01T20:42:46.000000000", + "2019-01-01T20:43:00.000000000", + "2019-01-01T20:46:23.000000000", + "2019-01-01T20:47:50.000000000", + "2019-01-01T20:49:07.000000000", + "2019-01-01T20:49:09.000000000", + "2019-01-01T20:49:34.000000000", + "2019-01-01T20:49:38.000000000", + "2019-01-01T20:49:52.000000000", + "2019-01-01T20:52:16.000000000", + "2019-01-01T20:52:26.000000000", + "2019-01-01T20:53:15.000000000", + "2019-01-01T20:55:37.000000000", + "2019-01-01T20:58:09.000000000", + "2019-01-01T20:58:19.000000000", + "2019-01-01T20:58:22.000000000", + "2019-01-01T20:59:14.000000000", + "2019-01-01T20:59:48.000000000", + "2019-01-01T21:01:40.000000000", + "2019-01-01T21:01:42.000000000", + "2019-01-01T21:01:50.000000000", + "2019-01-01T21:03:35.000000000", + "2019-01-01T21:04:30.000000000", + "2019-01-01T21:04:59.000000000", + "2019-01-01T21:05:03.000000000", + "2019-01-01T21:05:28.000000000", + "2019-01-01T21:05:36.000000000", + "2019-01-01T21:06:02.000000000", + "2019-01-01T21:08:15.000000000", + "2019-01-01T21:10:51.000000000", + "2019-01-01T21:11:16.000000000", + "2019-01-01T21:12:01.000000000", + "2019-01-01T21:12:55.000000000", + "2019-01-01T21:14:01.000000000", + "2019-01-01T21:15:11.000000000", + "2019-01-01T21:15:36.000000000", + "2019-01-01T21:16:12.000000000", + "2019-01-01T21:17:30.000000000", + "2019-01-01T21:17:43.000000000", + "2019-01-01T21:18:55.000000000", + "2019-01-01T21:19:35.000000000", + "2019-01-01T21:19:48.000000000", + "2019-01-01T21:22:04.000000000", + "2019-01-01T21:24:01.000000000", + "2019-01-01T21:24:39.000000000", + "2019-01-01T21:26:27.000000000", + "2019-01-01T21:27:08.000000000", + "2019-01-01T21:30:42.000000000", + "2019-01-01T21:31:09.000000000", + "2019-01-01T21:31:40.000000000", + "2019-01-01T21:31:48.000000000", + "2019-01-01T21:31:56.000000000", + "2019-01-01T21:32:00.000000000", + "2019-01-01T21:35:24.000000000", + "2019-01-01T21:37:22.000000000", + "2019-01-01T21:38:22.000000000", + "2019-01-01T21:40:46.000000000", + "2019-01-01T21:41:57.000000000", + "2019-01-01T21:43:10.000000000", + "2019-01-01T21:44:50.000000000", + "2019-01-01T21:45:56.000000000", + "2019-01-01T21:52:10.000000000", + "2019-01-01T21:53:08.000000000", + "2019-01-01T21:54:20.000000000", + "2019-01-01T21:54:56.000000000", + "2019-01-01T21:55:00.000000000", + "2019-01-01T21:55:35.000000000", + "2019-01-01T21:55:41.000000000", + "2019-01-01T21:56:56.000000000", + "2019-01-01T21:58:09.000000000", + "2019-01-01T22:01:13.000000000", + "2019-01-01T22:04:18.000000000", + "2019-01-01T22:04:30.000000000", + "2019-01-01T22:05:11.000000000", + "2019-01-01T22:08:01.000000000", + "2019-01-01T22:09:16.000000000", + "2019-01-01T22:09:36.000000000", + "2019-01-01T22:12:02.000000000", + "2019-01-01T22:12:24.000000000", + "2019-01-01T22:12:31.000000000", + "2019-01-01T22:13:38.000000000", + "2019-01-01T22:16:21.000000000", + "2019-01-01T22:17:15.000000000", + "2019-01-01T22:18:08.000000000", + "2019-01-01T22:18:37.000000000", + "2019-01-01T22:21:49.000000000", + "2019-01-01T22:22:11.000000000", + "2019-01-01T22:22:17.000000000", + "2019-01-01T22:22:24.000000000", + "2019-01-01T22:23:49.000000000", + "2019-01-01T22:24:05.000000000", + "2019-01-01T22:28:43.000000000", + "2019-01-01T22:29:41.000000000", + "2019-01-01T22:30:05.000000000", + "2019-01-01T22:32:29.000000000", + "2019-01-01T22:35:02.000000000", + "2019-01-01T22:35:47.000000000", + "2019-01-01T22:36:21.000000000", + "2019-01-01T22:36:38.000000000", + "2019-01-01T22:36:47.000000000", + "2019-01-01T22:37:56.000000000", + "2019-01-01T22:38:08.000000000", + "2019-01-01T22:38:28.000000000", + "2019-01-01T22:38:56.000000000", + "2019-01-01T22:39:31.000000000", + "2019-01-01T22:41:39.000000000", + "2019-01-01T22:41:48.000000000", + "2019-01-01T22:41:59.000000000", + "2019-01-01T22:42:16.000000000", + "2019-01-01T22:43:08.000000000", + "2019-01-01T22:43:12.000000000", + "2019-01-01T22:43:24.000000000", + "2019-01-01T22:45:57.000000000", + "2019-01-01T22:46:22.000000000", + "2019-01-01T22:46:37.000000000", + "2019-01-01T22:47:50.000000000", + "2019-01-01T22:48:18.000000000", + "2019-01-01T22:48:29.000000000", + "2019-01-01T22:49:04.000000000", + "2019-01-01T22:50:37.000000000", + "2019-01-01T22:51:13.000000000", + "2019-01-01T22:56:46.000000000", + "2019-01-01T22:57:31.000000000", + "2019-01-01T22:57:37.000000000", + "2019-01-01T22:59:29.000000000", + "2019-01-01T23:03:23.000000000", + "2019-01-01T23:03:37.000000000", + "2019-01-01T23:04:37.000000000", + "2019-01-01T23:06:04.000000000", + "2019-01-01T23:07:20.000000000", + "2019-01-01T23:07:40.000000000", + "2019-01-01T23:08:42.000000000", + "2019-01-01T23:08:48.000000000", + "2019-01-01T23:09:29.000000000", + "2019-01-01T23:10:34.000000000", + "2019-01-01T23:12:16.000000000", + "2019-01-01T23:12:25.000000000", + "2019-01-01T23:12:27.000000000", + "2019-01-01T23:12:30.000000000", + "2019-01-01T23:12:36.000000000", + "2019-01-01T23:14:03.000000000", + "2019-01-01T23:15:00.000000000", + "2019-01-01T23:15:08.000000000", + "2019-01-01T23:17:29.000000000", + "2019-01-01T23:20:27.000000000", + "2019-01-01T23:20:28.000000000", + "2019-01-01T23:21:35.000000000", + "2019-01-01T23:23:18.000000000", + "2019-01-01T23:23:21.000000000", + "2019-01-01T23:24:31.000000000", + "2019-01-01T23:25:08.000000000", + "2019-01-01T23:27:04.000000000", + "2019-01-01T23:28:56.000000000", + "2019-01-01T23:29:12.000000000", + "2019-01-01T23:29:29.000000000", + "2019-01-01T23:30:03.000000000", + "2019-01-01T23:30:16.000000000", + "2019-01-01T23:31:04.000000000", + "2019-01-01T23:32:44.000000000", + "2019-01-01T23:34:02.000000000", + "2019-01-01T23:34:10.000000000", + "2019-01-01T23:35:46.000000000", + "2019-01-01T23:35:55.000000000", + "2019-01-01T23:36:14.000000000", + "2019-01-01T23:36:27.000000000", + "2019-01-01T23:37:57.000000000", + "2019-01-01T23:40:17.000000000", + "2019-01-01T23:40:48.000000000", + "2019-01-01T23:41:12.000000000", + "2019-01-01T23:42:29.000000000", + "2019-01-01T23:43:07.000000000", + "2019-01-01T23:43:17.000000000", + "2019-01-01T23:43:57.000000000", + "2019-01-01T23:44:09.000000000", + "2019-01-01T23:45:39.000000000", + "2019-01-01T23:46:58.000000000", + "2019-01-01T23:47:13.000000000", + "2019-01-01T23:47:56.000000000", + "2019-01-01T23:48:12.000000000", + "2019-01-01T23:48:41.000000000", + "2019-01-01T23:49:23.000000000", + "2019-01-01T23:52:06.000000000", + "2019-01-01T23:52:43.000000000", + "2019-01-01T23:53:10.000000000", + "2019-01-01T23:53:38.000000000", + "2019-01-01T23:54:11.000000000", + "2019-01-01T23:55:05.000000000", + "2019-01-01T23:55:06.000000000", + "2019-01-01T23:55:33.000000000", + "2019-01-01T23:59:30.000000000", + "2019-01-02T00:00:46.000000000", + "2019-01-02T00:01:11.000000000", + "2019-01-02T00:01:18.000000000", + "2019-01-02T00:02:02.000000000", + "2019-01-02T00:06:14.000000000", + "2019-01-02T00:06:34.000000000", + "2019-01-02T00:06:46.000000000", + "2019-01-02T00:07:44.000000000", + "2019-01-02T00:07:57.000000000", + "2019-01-02T00:10:14.000000000", + "2019-01-02T00:11:28.000000000", + "2019-01-02T00:11:32.000000000", + "2019-01-02T00:12:17.000000000", + "2019-01-02T00:15:53.000000000", + "2019-01-02T00:16:23.000000000", + "2019-01-02T00:18:19.000000000", + "2019-01-02T00:19:08.000000000", + "2019-01-02T00:19:18.000000000", + "2019-01-02T00:19:36.000000000", + "2019-01-02T00:21:57.000000000", + "2019-01-02T00:22:05.000000000", + "2019-01-02T00:23:03.000000000", + "2019-01-02T00:25:04.000000000", + "2019-01-02T00:25:32.000000000", + "2019-01-02T00:28:40.000000000", + "2019-01-02T00:30:56.000000000", + "2019-01-02T00:32:03.000000000", + "2019-01-02T00:32:22.000000000", + "2019-01-02T00:34:54.000000000", + "2019-01-02T00:35:14.000000000", + "2019-01-02T00:36:49.000000000", + "2019-01-02T00:38:14.000000000", + "2019-01-02T00:38:35.000000000", + "2019-01-02T00:38:52.000000000", + "2019-01-02T00:39:17.000000000", + "2019-01-02T00:39:38.000000000", + "2019-01-02T00:41:21.000000000", + "2019-01-02T00:43:59.000000000", + "2019-01-02T00:44:11.000000000", + "2019-01-02T00:45:35.000000000", + "2019-01-02T00:45:38.000000000", + "2019-01-02T00:48:12.000000000", + "2019-01-02T00:48:16.000000000", + "2019-01-02T00:48:29.000000000", + "2019-01-02T00:49:28.000000000", + "2019-01-02T00:51:06.000000000", + "2019-01-02T00:52:15.000000000", + "2019-01-02T00:54:21.000000000", + "2019-01-02T00:54:24.000000000", + "2019-01-02T00:54:42.000000000", + "2019-01-02T00:55:32.000000000", + "2019-01-02T00:55:44.000000000", + "2019-01-02T00:55:54.000000000", + "2019-01-02T00:56:11.000000000", + "2019-01-02T00:57:00.000000000", + "2019-01-02T00:57:41.000000000", + "2019-01-02T00:58:44.000000000", + "2019-01-02T00:58:52.000000000", + "2019-01-02T00:59:23.000000000", + "2019-01-02T01:02:02.000000000", + "2019-01-02T01:02:12.000000000", + "2019-01-02T01:02:47.000000000", + "2019-01-02T01:04:51.000000000", + "2019-01-02T01:06:37.000000000", + "2019-01-02T01:06:54.000000000", + "2019-01-02T01:08:20.000000000", + "2019-01-02T01:08:44.000000000", + "2019-01-02T01:10:27.000000000", + "2019-01-02T01:11:39.000000000", + "2019-01-02T01:11:46.000000000", + "2019-01-02T01:12:04.000000000", + "2019-01-02T01:13:20.000000000", + "2019-01-02T01:13:55.000000000", + "2019-01-02T01:14:45.000000000", + "2019-01-02T01:15:49.000000000", + "2019-01-02T01:18:12.000000000", + "2019-01-02T01:18:38.000000000", + "2019-01-02T01:19:07.000000000", + "2019-01-02T01:20:04.000000000", + "2019-01-02T01:23:00.000000000", + "2019-01-02T01:23:06.000000000", + "2019-01-02T01:24:43.000000000", + "2019-01-02T01:24:55.000000000", + "2019-01-02T01:26:12.000000000", + "2019-01-02T01:27:03.000000000", + "2019-01-02T01:28:39.000000000", + "2019-01-02T01:28:54.000000000", + "2019-01-02T01:28:56.000000000", + "2019-01-02T01:29:23.000000000", + "2019-01-02T01:29:49.000000000", + "2019-01-02T01:30:00.000000000", + "2019-01-02T01:30:50.000000000", + "2019-01-02T01:32:50.000000000", + "2019-01-02T01:33:52.000000000", + "2019-01-02T01:34:58.000000000", + "2019-01-02T01:36:01.000000000", + "2019-01-02T01:37:45.000000000", + "2019-01-02T01:38:10.000000000", + "2019-01-02T01:39:49.000000000", + "2019-01-02T01:39:55.000000000", + "2019-01-02T01:40:20.000000000", + "2019-01-02T01:42:07.000000000", + "2019-01-02T01:42:17.000000000", + "2019-01-02T01:46:26.000000000", + "2019-01-02T01:46:37.000000000", + "2019-01-02T01:46:47.000000000", + "2019-01-02T01:50:27.000000000", + "2019-01-02T01:50:48.000000000", + "2019-01-02T01:50:58.000000000", + "2019-01-02T01:51:40.000000000", + "2019-01-02T01:52:30.000000000", + "2019-01-02T01:52:43.000000000", + "2019-01-02T01:53:01.000000000", + "2019-01-02T01:54:43.000000000", + "2019-01-02T01:55:49.000000000", + "2019-01-02T01:57:17.000000000", + "2019-01-02T01:57:56.000000000", + "2019-01-02T01:58:20.000000000", + "2019-01-02T01:58:40.000000000", + "2019-01-02T01:59:54.000000000", + "2019-01-02T02:00:30.000000000", + "2019-01-02T02:01:56.000000000", + "2019-01-02T02:02:30.000000000", + "2019-01-02T02:02:57.000000000", + "2019-01-02T02:03:54.000000000", + "2019-01-02T02:07:24.000000000", + "2019-01-02T02:08:13.000000000", + "2019-01-02T02:08:21.000000000", + "2019-01-02T02:08:36.000000000", + "2019-01-02T02:09:45.000000000", + "2019-01-02T02:10:10.000000000", + "2019-01-02T02:11:22.000000000", + "2019-01-02T02:13:49.000000000", + "2019-01-02T02:14:29.000000000", + "2019-01-02T02:14:46.000000000", + "2019-01-02T02:17:50.000000000", + "2019-01-02T02:19:02.000000000", + "2019-01-02T02:19:28.000000000", + "2019-01-02T02:20:54.000000000", + "2019-01-02T02:21:24.000000000", + "2019-01-02T02:22:09.000000000", + "2019-01-02T02:24:57.000000000", + "2019-01-02T02:25:33.000000000", + "2019-01-02T02:25:48.000000000", + "2019-01-02T02:26:05.000000000", + "2019-01-02T02:26:12.000000000", + "2019-01-02T02:27:41.000000000", + "2019-01-02T02:30:07.000000000", + "2019-01-02T02:34:28.000000000", + "2019-01-02T02:38:08.000000000", + "2019-01-02T02:39:41.000000000", + "2019-01-02T02:40:17.000000000", + "2019-01-02T02:41:31.000000000", + "2019-01-02T02:41:47.000000000", + "2019-01-02T02:41:49.000000000", + "2019-01-02T02:45:49.000000000", + "2019-01-02T02:46:50.000000000", + "2019-01-02T02:47:35.000000000", + "2019-01-02T02:48:47.000000000", + "2019-01-02T02:51:39.000000000", + "2019-01-02T02:51:40.000000000", + "2019-01-02T02:53:10.000000000", + "2019-01-02T02:53:23.000000000", + "2019-01-02T02:53:30.000000000", + "2019-01-02T02:53:48.000000000", + "2019-01-02T02:54:01.000000000", + "2019-01-02T02:55:01.000000000", + "2019-01-02T02:56:10.000000000", + "2019-01-02T02:56:12.000000000", + "2019-01-02T02:57:03.000000000", + "2019-01-02T02:57:04.000000000", + "2019-01-02T02:57:14.000000000", + "2019-01-02T02:57:15.000000000", + "2019-01-02T02:57:49.000000000", + "2019-01-02T02:58:41.000000000", + "2019-01-02T03:00:10.000000000", + "2019-01-02T03:00:43.000000000", + "2019-01-02T03:00:54.000000000", + "2019-01-02T03:01:40.000000000", + "2019-01-02T03:02:17.000000000", + "2019-01-02T03:02:58.000000000", + "2019-01-02T03:04:32.000000000", + "2019-01-02T03:06:17.000000000", + "2019-01-02T03:08:03.000000000", + "2019-01-02T03:08:31.000000000", + "2019-01-02T03:12:12.000000000", + "2019-01-02T03:13:28.000000000", + "2019-01-02T03:15:46.000000000", + "2019-01-02T03:17:12.000000000", + "2019-01-02T03:17:25.000000000", + "2019-01-02T03:18:22.000000000", + "2019-01-02T03:18:55.000000000", + "2019-01-02T03:23:00.000000000", + "2019-01-02T03:23:52.000000000", + "2019-01-02T03:25:18.000000000", + "2019-01-02T03:27:24.000000000", + "2019-01-02T03:29:21.000000000", + "2019-01-02T03:30:33.000000000", + "2019-01-02T03:31:35.000000000", + "2019-01-02T03:32:45.000000000", + "2019-01-02T03:33:14.000000000", + "2019-01-02T03:33:34.000000000", + "2019-01-02T03:34:38.000000000", + "2019-01-02T03:35:18.000000000", + "2019-01-02T03:35:35.000000000", + "2019-01-02T03:35:52.000000000", + "2019-01-02T03:36:51.000000000", + "2019-01-02T03:36:59.000000000", + "2019-01-02T03:37:17.000000000", + "2019-01-02T03:40:28.000000000", + "2019-01-02T03:41:19.000000000", + "2019-01-02T03:43:02.000000000", + "2019-01-02T03:43:33.000000000", + "2019-01-02T03:43:55.000000000", + "2019-01-02T03:45:10.000000000", + "2019-01-02T03:46:16.000000000", + "2019-01-02T03:46:50.000000000", + "2019-01-02T03:46:53.000000000", + "2019-01-02T03:48:58.000000000", + "2019-01-02T03:49:26.000000000", + "2019-01-02T03:49:40.000000000", + "2019-01-02T03:51:59.000000000", + "2019-01-02T03:52:15.000000000", + "2019-01-02T03:52:18.000000000", + "2019-01-02T03:52:50.000000000", + "2019-01-02T03:53:25.000000000", + "2019-01-02T03:54:39.000000000", + "2019-01-02T03:54:55.000000000", + "2019-01-02T03:55:28.000000000", + "2019-01-02T03:55:57.000000000", + "2019-01-02T03:55:58.000000000", + "2019-01-02T03:56:03.000000000", + "2019-01-02T03:57:42.000000000", + "2019-01-02T03:58:04.000000000", + "2019-01-02T03:58:13.000000000", + "2019-01-02T03:59:17.000000000", + "2019-01-02T03:59:41.000000000", + "2019-01-02T04:01:05.000000000", + "2019-01-02T04:01:48.000000000", + "2019-01-02T04:01:59.000000000", + "2019-01-02T04:02:52.000000000", + "2019-01-02T04:04:24.000000000", + "2019-01-02T04:05:27.000000000", + "2019-01-02T04:05:50.000000000", + "2019-01-02T04:06:28.000000000", + "2019-01-02T04:08:17.000000000", + "2019-01-02T04:09:27.000000000", + "2019-01-02T04:10:19.000000000", + "2019-01-02T04:11:03.000000000", + "2019-01-02T04:14:49.000000000", + "2019-01-02T04:16:10.000000000", + "2019-01-02T04:18:25.000000000", + "2019-01-02T04:20:00.000000000", + "2019-01-02T04:20:21.000000000", + "2019-01-02T04:21:14.000000000", + "2019-01-02T04:22:52.000000000", + "2019-01-02T04:23:36.000000000", + "2019-01-02T04:24:32.000000000", + "2019-01-02T04:26:00.000000000", + "2019-01-02T04:28:26.000000000", + "2019-01-02T04:29:06.000000000", + "2019-01-02T04:30:07.000000000", + "2019-01-02T04:32:36.000000000", + "2019-01-02T04:33:19.000000000", + "2019-01-02T04:33:37.000000000", + "2019-01-02T04:35:32.000000000", + "2019-01-02T04:35:58.000000000", + "2019-01-02T04:36:36.000000000", + "2019-01-02T04:37:52.000000000", + "2019-01-02T04:38:24.000000000", + "2019-01-02T04:39:07.000000000", + "2019-01-02T04:39:18.000000000", + "2019-01-02T04:39:34.000000000", + "2019-01-02T04:40:47.000000000", + "2019-01-02T04:41:11.000000000", + "2019-01-02T04:41:33.000000000", + "2019-01-02T04:41:59.000000000", + "2019-01-02T04:44:01.000000000", + "2019-01-02T04:44:22.000000000", + "2019-01-02T04:47:45.000000000", + "2019-01-02T04:48:38.000000000", + "2019-01-02T04:50:20.000000000", + "2019-01-02T04:51:18.000000000", + "2019-01-02T04:51:27.000000000", + "2019-01-02T04:54:40.000000000", + "2019-01-02T04:54:44.000000000", + "2019-01-02T04:54:52.000000000", + "2019-01-02T04:55:03.000000000", + "2019-01-02T04:56:51.000000000", + "2019-01-02T04:57:13.000000000", + "2019-01-02T04:57:47.000000000", + "2019-01-02T04:58:03.000000000", + "2019-01-02T04:59:10.000000000", + "2019-01-02T05:00:32.000000000", + "2019-01-02T05:02:25.000000000", + "2019-01-02T05:03:10.000000000", + "2019-01-02T05:03:50.000000000", + "2019-01-02T05:04:03.000000000", + "2019-01-02T05:04:22.000000000", + "2019-01-02T05:06:03.000000000", + "2019-01-02T05:07:17.000000000", + "2019-01-02T05:08:47.000000000", + "2019-01-02T05:09:21.000000000", + "2019-01-02T05:09:30.000000000", + "2019-01-02T05:10:07.000000000", + "2019-01-02T05:10:10.000000000", + "2019-01-02T05:10:35.000000000", + "2019-01-02T05:10:37.000000000", + "2019-01-02T05:10:56.000000000", + "2019-01-02T05:12:33.000000000", + "2019-01-02T05:13:37.000000000", + "2019-01-02T05:14:23.000000000", + "2019-01-02T05:15:33.000000000", + "2019-01-02T05:17:00.000000000", + "2019-01-02T05:17:12.000000000", + "2019-01-02T05:18:37.000000000", + "2019-01-02T05:19:17.000000000", + "2019-01-02T05:19:28.000000000", + "2019-01-02T05:19:37.000000000", + "2019-01-02T05:21:02.000000000", + "2019-01-02T05:22:40.000000000", + "2019-01-02T05:23:20.000000000", + "2019-01-02T05:23:23.000000000", + "2019-01-02T05:23:38.000000000", + "2019-01-02T05:23:51.000000000", + "2019-01-02T05:23:52.000000000", + "2019-01-02T05:24:21.000000000", + "2019-01-02T05:24:22.000000000", + "2019-01-02T05:25:18.000000000", + "2019-01-02T05:26:23.000000000", + "2019-01-02T05:27:32.000000000", + "2019-01-02T05:28:19.000000000", + "2019-01-02T05:30:11.000000000", + "2019-01-02T05:31:58.000000000", + "2019-01-02T05:32:06.000000000", + "2019-01-02T05:33:28.000000000", + "2019-01-02T05:34:23.000000000", + "2019-01-02T05:34:30.000000000", + "2019-01-02T05:34:43.000000000", + "2019-01-02T05:35:41.000000000", + "2019-01-02T05:36:20.000000000", + "2019-01-02T05:36:47.000000000", + "2019-01-02T05:37:32.000000000", + "2019-01-02T05:37:36.000000000", + "2019-01-02T05:40:35.000000000", + "2019-01-02T05:41:37.000000000", + "2019-01-02T05:41:48.000000000", + "2019-01-02T05:42:55.000000000", + "2019-01-02T05:44:16.000000000", + "2019-01-02T05:44:32.000000000", + "2019-01-02T05:45:36.000000000", + "2019-01-02T05:46:03.000000000", + "2019-01-02T05:47:33.000000000", + "2019-01-02T05:47:38.000000000", + "2019-01-02T05:47:51.000000000", + "2019-01-02T05:50:32.000000000", + "2019-01-02T05:51:02.000000000", + "2019-01-02T05:51:23.000000000", + "2019-01-02T05:53:25.000000000", + "2019-01-02T05:53:26.000000000", + "2019-01-02T05:53:39.000000000", + "2019-01-02T05:55:24.000000000", + "2019-01-02T05:56:03.000000000", + "2019-01-02T05:57:00.000000000", + "2019-01-02T05:57:13.000000000", + "2019-01-02T05:57:42.000000000", + "2019-01-02T05:57:50.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:59:05.000000000", + "2019-01-02T05:59:13.000000000", + "2019-01-02T06:00:06.000000000", + "2019-01-02T06:00:26.000000000", + "2019-01-02T06:00:34.000000000", + "2019-01-02T06:00:48.000000000", + "2019-01-02T06:02:13.000000000", + "2019-01-02T06:02:15.000000000", + "2019-01-02T06:02:43.000000000", + "2019-01-02T06:04:27.000000000", + "2019-01-02T06:04:57.000000000", + "2019-01-02T06:06:26.000000000", + "2019-01-02T06:06:38.000000000", + "2019-01-02T06:08:38.000000000", + "2019-01-02T06:11:48.000000000", + "2019-01-02T06:13:33.000000000", + "2019-01-02T06:14:22.000000000", + "2019-01-02T06:14:31.000000000", + "2019-01-02T06:14:36.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:16:02.000000000", + "2019-01-02T06:16:58.000000000", + "2019-01-02T06:17:28.000000000", + "2019-01-02T06:18:06.000000000", + "2019-01-02T06:20:58.000000000", + "2019-01-02T06:21:33.000000000", + "2019-01-02T06:22:21.000000000", + "2019-01-02T06:22:35.000000000", + "2019-01-02T06:24:22.000000000", + "2019-01-02T06:24:56.000000000", + "2019-01-02T06:26:33.000000000", + "2019-01-02T06:26:59.000000000", + "2019-01-02T06:27:07.000000000", + "2019-01-02T06:27:11.000000000", + "2019-01-02T06:28:04.000000000", + "2019-01-02T06:28:33.000000000", + "2019-01-02T06:28:46.000000000", + "2019-01-02T06:28:50.000000000", + "2019-01-02T06:30:21.000000000", + "2019-01-02T06:30:50.000000000", + "2019-01-02T06:33:56.000000000", + "2019-01-02T06:35:05.000000000", + "2019-01-02T06:35:25.000000000", + "2019-01-02T06:36:49.000000000", + "2019-01-02T06:39:32.000000000", + "2019-01-02T06:40:28.000000000", + "2019-01-02T06:41:14.000000000", + "2019-01-02T06:41:23.000000000", + "2019-01-02T06:42:16.000000000", + "2019-01-02T06:43:01.000000000", + "2019-01-02T06:43:36.000000000", + "2019-01-02T06:44:07.000000000", + "2019-01-02T06:46:57.000000000", + "2019-01-02T06:47:44.000000000", + "2019-01-02T06:48:14.000000000", + "2019-01-02T06:48:26.000000000", + "2019-01-02T06:48:35.000000000", + "2019-01-02T06:51:25.000000000", + "2019-01-02T06:52:33.000000000", + "2019-01-02T06:54:11.000000000", + "2019-01-02T06:54:55.000000000", + "2019-01-02T06:55:23.000000000", + "2019-01-02T06:55:25.000000000", + "2019-01-02T06:55:44.000000000", + "2019-01-02T07:03:53.000000000", + "2019-01-02T07:04:21.000000000", + "2019-01-02T07:04:38.000000000", + "2019-01-02T07:05:28.000000000", + "2019-01-02T07:05:49.000000000", + "2019-01-02T07:08:58.000000000", + "2019-01-02T07:09:08.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:11:25.000000000", + "2019-01-02T07:13:31.000000000", + "2019-01-02T07:13:41.000000000", + "2019-01-02T07:15:55.000000000", + "2019-01-02T07:16:00.000000000", + "2019-01-02T07:17:22.000000000", + "2019-01-02T07:18:01.000000000", + "2019-01-02T07:18:24.000000000", + "2019-01-02T07:21:16.000000000", + "2019-01-02T07:22:38.000000000", + "2019-01-02T07:23:37.000000000", + "2019-01-02T07:25:02.000000000", + "2019-01-02T07:25:22.000000000", + "2019-01-02T07:26:20.000000000", + "2019-01-02T07:26:47.000000000", + "2019-01-02T07:27:35.000000000", + "2019-01-02T07:27:46.000000000", + "2019-01-02T07:27:51.000000000", + "2019-01-02T07:28:11.000000000", + "2019-01-02T07:29:32.000000000", + "2019-01-02T07:30:07.000000000", + "2019-01-02T07:31:17.000000000", + "2019-01-02T07:31:27.000000000", + "2019-01-02T07:31:52.000000000", + "2019-01-02T07:32:08.000000000", + "2019-01-02T07:32:24.000000000", + "2019-01-02T07:33:40.000000000", + "2019-01-02T07:35:24.000000000", + "2019-01-02T07:36:19.000000000", + "2019-01-02T07:37:02.000000000", + "2019-01-02T07:37:25.000000000", + "2019-01-02T07:37:57.000000000", + "2019-01-02T07:38:54.000000000", + "2019-01-02T07:39:19.000000000", + "2019-01-02T07:39:29.000000000", + "2019-01-02T07:43:10.000000000", + "2019-01-02T07:44:41.000000000", + "2019-01-02T07:45:28.000000000", + "2019-01-02T07:46:08.000000000", + "2019-01-02T07:46:37.000000000", + "2019-01-02T07:46:43.000000000", + "2019-01-02T07:48:24.000000000", + "2019-01-02T07:49:48.000000000", + "2019-01-02T07:50:19.000000000", + "2019-01-02T07:50:35.000000000", + "2019-01-02T07:51:36.000000000", + "2019-01-02T07:52:08.000000000", + "2019-01-02T07:52:56.000000000", + "2019-01-02T07:53:29.000000000", + "2019-01-02T07:54:02.000000000", + "2019-01-02T07:54:37.000000000", + "2019-01-02T07:57:24.000000000", + "2019-01-02T07:58:40.000000000", + "2019-01-02T07:59:04.000000000", + "2019-01-02T08:00:16.000000000", + "2019-01-02T08:02:25.000000000", + "2019-01-02T08:03:21.000000000", + "2019-01-02T08:05:02.000000000", + "2019-01-02T08:05:20.000000000", + "2019-01-02T08:06:12.000000000", + "2019-01-02T08:07:45.000000000", + "2019-01-02T08:08:09.000000000", + "2019-01-02T08:08:54.000000000", + "2019-01-02T08:09:48.000000000", + "2019-01-02T08:10:23.000000000", + "2019-01-02T08:10:34.000000000", + "2019-01-02T08:11:19.000000000", + "2019-01-02T08:12:26.000000000", + "2019-01-02T08:12:58.000000000", + "2019-01-02T08:14:39.000000000", + "2019-01-02T08:14:45.000000000", + "2019-01-02T08:14:53.000000000", + "2019-01-02T08:15:23.000000000", + "2019-01-02T08:16:06.000000000", + "2019-01-02T08:16:25.000000000", + "2019-01-02T08:16:53.000000000", + "2019-01-02T08:17:38.000000000", + "2019-01-02T08:18:47.000000000", + "2019-01-02T08:18:51.000000000", + "2019-01-02T08:21:10.000000000", + "2019-01-02T08:21:20.000000000", + "2019-01-02T08:22:10.000000000", + "2019-01-02T08:23:25.000000000", + "2019-01-02T08:24:50.000000000", + "2019-01-02T08:25:35.000000000", + "2019-01-02T08:25:38.000000000", + "2019-01-02T08:27:20.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:56.000000000", + "2019-01-02T08:27:59.000000000", + "2019-01-02T08:29:27.000000000", + "2019-01-02T08:31:53.000000000", + "2019-01-02T08:33:09.000000000", + "2019-01-02T08:34:17.000000000", + "2019-01-02T08:34:50.000000000", + "2019-01-02T08:34:55.000000000", + "2019-01-02T08:36:07.000000000", + "2019-01-02T08:37:25.000000000", + "2019-01-02T08:38:57.000000000", + "2019-01-02T08:39:25.000000000", + "2019-01-02T08:39:43.000000000", + "2019-01-02T08:39:46.000000000", + "2019-01-02T08:40:11.000000000", + "2019-01-02T08:40:17.000000000", + "2019-01-02T08:42:05.000000000", + "2019-01-02T08:42:29.000000000", + "2019-01-02T08:43:10.000000000", + "2019-01-02T08:43:17.000000000", + "2019-01-02T08:44:03.000000000", + "2019-01-02T08:44:42.000000000", + "2019-01-02T08:44:44.000000000", + "2019-01-02T08:44:50.000000000", + "2019-01-02T08:46:45.000000000", + "2019-01-02T08:46:55.000000000", + "2019-01-02T08:48:19.000000000", + "2019-01-02T08:48:20.000000000", + "2019-01-02T08:48:39.000000000", + "2019-01-02T08:52:12.000000000", + "2019-01-02T08:52:30.000000000", + "2019-01-02T08:53:25.000000000", + "2019-01-02T08:53:34.000000000", + "2019-01-02T08:54:27.000000000", + "2019-01-02T08:54:56.000000000", + "2019-01-02T08:55:15.000000000", + "2019-01-02T08:55:27.000000000", + "2019-01-02T08:55:51.000000000", + "2019-01-02T08:55:58.000000000", + "2019-01-02T08:56:07.000000000", + "2019-01-02T08:56:47.000000000", + "2019-01-02T08:56:58.000000000", + "2019-01-02T08:57:36.000000000", + "2019-01-02T08:58:53.000000000", + "2019-01-02T09:00:03.000000000", + "2019-01-02T09:00:06.000000000", + "2019-01-02T09:00:20.000000000", + "2019-01-02T09:02:25.000000000", + "2019-01-02T09:06:28.000000000", + "2019-01-02T09:06:29.000000000", + "2019-01-02T09:08:35.000000000", + "2019-01-02T09:10:11.000000000", + "2019-01-02T09:11:04.000000000", + "2019-01-02T09:13:51.000000000", + "2019-01-02T09:14:15.000000000", + "2019-01-02T09:15:57.000000000", + "2019-01-02T09:16:16.000000000", + "2019-01-02T09:16:26.000000000", + "2019-01-02T09:17:27.000000000", + "2019-01-02T09:20:36.000000000", + "2019-01-02T09:24:35.000000000", + "2019-01-02T09:26:47.000000000", + "2019-01-02T09:28:27.000000000", + "2019-01-02T09:30:43.000000000", + "2019-01-02T09:30:55.000000000", + "2019-01-02T09:32:17.000000000", + "2019-01-02T09:34:34.000000000", + "2019-01-02T09:34:36.000000000", + "2019-01-02T09:34:52.000000000", + "2019-01-02T09:34:59.000000000", + "2019-01-02T09:35:54.000000000", + "2019-01-02T09:36:57.000000000", + "2019-01-02T09:37:50.000000000", + "2019-01-02T09:42:01.000000000", + "2019-01-02T09:42:25.000000000", + "2019-01-02T09:43:41.000000000", + "2019-01-02T09:45:20.000000000", + "2019-01-02T09:48:14.000000000", + "2019-01-02T09:48:46.000000000", + "2019-01-02T09:49:16.000000000", + "2019-01-02T09:49:47.000000000", + "2019-01-02T09:52:12.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:37.000000000", + "2019-01-02T09:53:51.000000000", + "2019-01-02T09:55:00.000000000", + "2019-01-02T09:56:21.000000000", + "2019-01-02T09:57:34.000000000", + "2019-01-02T09:59:25.000000000", + "2019-01-02T09:59:51.000000000", + "2019-01-02T10:01:02.000000000", + "2019-01-02T10:01:42.000000000", + "2019-01-02T10:02:00.000000000", + "2019-01-02T10:02:33.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:58.000000000", + "2019-01-02T10:05:00.000000000", + "2019-01-02T10:05:04.000000000", + "2019-01-02T10:05:58.000000000", + "2019-01-02T10:06:41.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:49.000000000", + "2019-01-02T10:09:57.000000000", + "2019-01-02T10:10:38.000000000", + "2019-01-02T10:10:50.000000000", + "2019-01-02T10:13:04.000000000", + "2019-01-02T10:13:12.000000000", + "2019-01-02T10:14:13.000000000", + "2019-01-02T10:16:13.000000000", + "2019-01-02T10:16:28.000000000", + "2019-01-02T10:17:53.000000000", + "2019-01-02T10:17:54.000000000", + "2019-01-02T10:19:34.000000000", + "2019-01-02T10:20:21.000000000", + "2019-01-02T10:20:31.000000000", + "2019-01-02T10:21:47.000000000", + "2019-01-02T10:22:25.000000000", + "2019-01-02T10:24:03.000000000", + "2019-01-02T10:24:49.000000000", + "2019-01-02T10:29:00.000000000", + "2019-01-02T10:30:50.000000000", + "2019-01-02T10:30:52.000000000", + "2019-01-02T10:30:58.000000000", + "2019-01-02T10:32:07.000000000", + "2019-01-02T10:32:27.000000000", + "2019-01-02T10:32:33.000000000", + "2019-01-02T10:32:44.000000000", + "2019-01-02T10:32:45.000000000", + "2019-01-02T10:35:10.000000000", + "2019-01-02T10:38:19.000000000", + "2019-01-02T10:38:57.000000000", + "2019-01-02T10:40:40.000000000", + "2019-01-02T10:42:29.000000000", + "2019-01-02T10:42:51.000000000", + "2019-01-02T10:42:54.000000000", + "2019-01-02T10:45:20.000000000", + "2019-01-02T10:46:22.000000000", + "2019-01-02T10:47:30.000000000", + "2019-01-02T10:47:55.000000000", + "2019-01-02T10:50:42.000000000", + "2019-01-02T10:51:00.000000000", + "2019-01-02T10:51:56.000000000", + "2019-01-02T10:52:37.000000000", + "2019-01-02T10:55:44.000000000", + "2019-01-02T10:56:24.000000000", + "2019-01-02T10:56:38.000000000", + "2019-01-02T10:56:47.000000000", + "2019-01-02T10:57:59.000000000", + "2019-01-02T10:58:17.000000000", + "2019-01-02T10:59:25.000000000", + "2019-01-02T11:00:29.000000000", + "2019-01-02T11:01:33.000000000", + "2019-01-02T11:02:40.000000000", + "2019-01-02T11:03:10.000000000", + "2019-01-02T11:04:35.000000000", + "2019-01-02T11:05:19.000000000", + "2019-01-02T11:06:17.000000000", + "2019-01-02T11:06:27.000000000", + "2019-01-02T11:06:42.000000000", + "2019-01-02T11:08:54.000000000", + "2019-01-02T11:09:40.000000000", + "2019-01-02T11:09:54.000000000", + "2019-01-02T11:11:59.000000000", + "2019-01-02T11:12:17.000000000", + "2019-01-02T11:13:22.000000000", + "2019-01-02T11:14:06.000000000", + "2019-01-02T11:15:33.000000000", + "2019-01-02T11:16:10.000000000", + "2019-01-02T11:17:48.000000000", + "2019-01-02T11:19:15.000000000", + "2019-01-02T11:19:28.000000000", + "2019-01-02T11:19:43.000000000", + "2019-01-02T11:20:59.000000000", + "2019-01-02T11:25:35.000000000", + "2019-01-02T11:27:50.000000000", + "2019-01-02T11:30:05.000000000", + "2019-01-02T11:30:14.000000000", + "2019-01-02T11:30:42.000000000", + "2019-01-02T11:31:23.000000000", + "2019-01-02T11:33:04.000000000", + "2019-01-02T11:33:57.000000000", + "2019-01-02T11:34:10.000000000", + "2019-01-02T11:40:13.000000000", + "2019-01-02T11:41:32.000000000", + "2019-01-02T11:42:48.000000000", + "2019-01-02T11:43:17.000000000", + "2019-01-02T11:45:19.000000000", + "2019-01-02T11:46:09.000000000", + "2019-01-02T11:48:16.000000000", + "2019-01-02T11:49:37.000000000", + "2019-01-02T11:53:24.000000000", + "2019-01-02T11:54:27.000000000", + "2019-01-02T11:55:14.000000000", + "2019-01-02T11:56:50.000000000", + "2019-01-02T11:56:58.000000000", + "2019-01-02T11:57:04.000000000", + "2019-01-02T11:57:08.000000000", + "2019-01-02T11:57:14.000000000", + "2019-01-02T11:57:47.000000000", + "2019-01-02T11:59:25.000000000", + "2019-01-02T11:59:58.000000000", + "2019-01-02T12:00:35.000000000", + "2019-01-02T12:02:01.000000000", + "2019-01-02T12:02:06.000000000", + "2019-01-02T12:02:43.000000000", + "2019-01-02T12:03:14.000000000", + "2019-01-02T12:04:33.000000000", + "2019-01-02T12:04:35.000000000", + "2019-01-02T12:05:31.000000000", + "2019-01-02T12:06:08.000000000", + "2019-01-02T12:08:11.000000000", + "2019-01-02T12:08:20.000000000", + "2019-01-02T12:11:30.000000000", + "2019-01-02T12:11:34.000000000", + "2019-01-02T12:12:18.000000000", + "2019-01-02T12:15:30.000000000", + "2019-01-02T12:20:07.000000000", + "2019-01-02T12:20:59.000000000", + "2019-01-02T12:24:06.000000000", + "2019-01-02T12:26:09.000000000", + "2019-01-02T12:26:32.000000000", + "2019-01-02T12:26:48.000000000", + "2019-01-02T12:27:26.000000000", + "2019-01-02T12:30:19.000000000", + "2019-01-02T12:32:32.000000000", + "2019-01-02T12:36:19.000000000", + "2019-01-02T12:39:40.000000000", + "2019-01-02T12:39:44.000000000", + "2019-01-02T12:41:33.000000000", + "2019-01-02T12:42:00.000000000", + "2019-01-02T12:42:08.000000000", + "2019-01-02T12:42:14.000000000", + "2019-01-02T12:44:45.000000000", + "2019-01-02T12:45:58.000000000", + "2019-01-02T12:48:04.000000000", + "2019-01-02T12:49:22.000000000", + "2019-01-02T12:49:49.000000000", + "2019-01-02T12:50:10.000000000", + "2019-01-02T12:51:06.000000000", + "2019-01-02T12:52:47.000000000", + "2019-01-02T12:53:42.000000000", + "2019-01-02T12:54:31.000000000", + "2019-01-02T12:56:26.000000000", + "2019-01-02T12:59:31.000000000", + "2019-01-02T13:01:03.000000000", + "2019-01-02T13:02:20.000000000", + "2019-01-02T13:02:35.000000000", + "2019-01-02T13:03:37.000000000", + "2019-01-02T13:04:15.000000000", + "2019-01-02T13:05:05.000000000", + "2019-01-02T13:05:29.000000000", + "2019-01-02T13:07:17.000000000", + "2019-01-02T13:08:44.000000000", + "2019-01-02T13:09:35.000000000", + "2019-01-02T13:10:25.000000000", + "2019-01-02T13:11:04.000000000", + "2019-01-02T13:11:58.000000000", + "2019-01-02T13:12:25.000000000", + "2019-01-02T13:13:54.000000000", + "2019-01-02T13:17:07.000000000", + "2019-01-02T13:17:18.000000000", + "2019-01-02T13:17:22.000000000", + "2019-01-02T13:17:52.000000000", + "2019-01-02T13:18:26.000000000", + "2019-01-02T13:18:34.000000000", + "2019-01-02T13:18:44.000000000", + "2019-01-02T13:21:37.000000000", + "2019-01-02T13:21:58.000000000", + "2019-01-02T13:22:03.000000000", + "2019-01-02T13:22:30.000000000", + "2019-01-02T13:22:39.000000000", + "2019-01-02T13:24:37.000000000", + "2019-01-02T13:24:52.000000000", + "2019-01-02T13:26:00.000000000", + "2019-01-02T13:26:38.000000000", + "2019-01-02T13:30:08.000000000", + "2019-01-02T13:31:04.000000000", + "2019-01-02T13:31:22.000000000", + "2019-01-02T13:32:37.000000000", + "2019-01-02T13:33:42.000000000", + "2019-01-02T13:36:50.000000000", + "2019-01-02T13:37:30.000000000", + "2019-01-02T13:38:11.000000000", + "2019-01-02T13:38:12.000000000", + "2019-01-02T13:38:38.000000000", + "2019-01-02T13:41:04.000000000", + "2019-01-02T13:41:43.000000000", + "2019-01-02T13:41:56.000000000", + "2019-01-02T13:42:45.000000000", + "2019-01-02T13:42:49.000000000", + "2019-01-02T13:44:53.000000000", + "2019-01-02T13:45:02.000000000", + "2019-01-02T13:45:35.000000000", + "2019-01-02T13:48:19.000000000", + "2019-01-02T13:48:40.000000000", + "2019-01-02T13:49:01.000000000", + "2019-01-02T13:49:25.000000000", + "2019-01-02T13:50:31.000000000", + "2019-01-02T13:52:27.000000000", + "2019-01-02T13:52:38.000000000", + "2019-01-02T13:53:08.000000000", + "2019-01-02T13:53:10.000000000", + "2019-01-02T13:53:15.000000000", + "2019-01-02T13:53:24.000000000", + "2019-01-02T13:53:46.000000000", + "2019-01-02T13:53:57.000000000", + "2019-01-02T13:55:17.000000000", + "2019-01-02T13:56:29.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:57:12.000000000", + "2019-01-02T13:57:33.000000000", + "2019-01-02T14:00:56.000000000", + "2019-01-02T14:01:13.000000000", + "2019-01-02T14:03:14.000000000", + "2019-01-02T14:04:51.000000000", + "2019-01-02T14:05:18.000000000", + "2019-01-02T14:05:48.000000000", + "2019-01-02T14:05:51.000000000", + "2019-01-02T14:07:19.000000000", + "2019-01-02T14:08:04.000000000", + "2019-01-02T14:08:42.000000000", + "2019-01-02T14:09:33.000000000", + "2019-01-02T14:09:43.000000000", + "2019-01-02T14:10:58.000000000", + "2019-01-02T14:13:01.000000000", + "2019-01-02T14:13:31.000000000", + "2019-01-02T14:14:03.000000000", + "2019-01-02T14:16:38.000000000", + "2019-01-02T14:17:03.000000000", + "2019-01-02T14:18:53.000000000", + "2019-01-02T14:19:02.000000000", + "2019-01-02T14:19:56.000000000", + "2019-01-02T14:22:11.000000000", + "2019-01-02T14:22:18.000000000", + "2019-01-02T14:25:02.000000000", + "2019-01-02T14:25:35.000000000", + "2019-01-02T14:25:48.000000000", + "2019-01-02T14:26:09.000000000", + "2019-01-02T14:27:43.000000000", + "2019-01-02T14:27:46.000000000", + "2019-01-02T14:29:00.000000000", + "2019-01-02T14:29:32.000000000", + "2019-01-02T14:29:42.000000000", + "2019-01-02T14:29:44.000000000", + "2019-01-02T14:29:45.000000000", + "2019-01-02T14:29:51.000000000", + "2019-01-02T14:31:42.000000000", + "2019-01-02T14:33:25.000000000", + "2019-01-02T14:33:45.000000000", + "2019-01-02T14:34:36.000000000", + "2019-01-02T14:35:22.000000000", + "2019-01-02T14:35:52.000000000", + "2019-01-02T14:36:24.000000000", + "2019-01-02T14:37:05.000000000", + "2019-01-02T14:37:13.000000000", + "2019-01-02T14:38:31.000000000", + "2019-01-02T14:38:51.000000000", + "2019-01-02T14:39:24.000000000", + "2019-01-02T14:40:00.000000000", + "2019-01-02T14:41:30.000000000", + "2019-01-02T14:41:35.000000000", + "2019-01-02T14:42:00.000000000", + "2019-01-02T14:42:31.000000000", + "2019-01-02T14:44:18.000000000", + "2019-01-02T14:46:23.000000000", + "2019-01-02T14:47:00.000000000", + "2019-01-02T14:49:54.000000000", + "2019-01-02T14:50:09.000000000", + "2019-01-02T14:51:34.000000000", + "2019-01-02T14:52:05.000000000", + "2019-01-02T14:52:12.000000000", + "2019-01-02T14:53:17.000000000", + "2019-01-02T14:54:12.000000000", + "2019-01-02T14:55:05.000000000", + "2019-01-02T14:57:04.000000000", + "2019-01-02T14:57:18.000000000", + "2019-01-02T15:01:44.000000000", + "2019-01-02T15:01:50.000000000", + "2019-01-02T15:03:01.000000000", + "2019-01-02T15:03:04.000000000", + "2019-01-02T15:03:55.000000000", + "2019-01-02T15:03:58.000000000", + "2019-01-02T15:04:25.000000000", + "2019-01-02T15:04:32.000000000", + "2019-01-02T15:05:19.000000000", + "2019-01-02T15:08:49.000000000", + "2019-01-02T15:08:51.000000000", + "2019-01-02T15:10:57.000000000", + "2019-01-02T15:11:12.000000000", + "2019-01-02T15:11:22.000000000", + "2019-01-02T15:13:12.000000000", + "2019-01-02T15:16:25.000000000", + "2019-01-02T15:16:28.000000000", + "2019-01-02T15:16:59.000000000", + "2019-01-02T15:17:51.000000000", + "2019-01-02T15:18:25.000000000", + "2019-01-02T15:21:36.000000000", + "2019-01-02T15:21:55.000000000", + "2019-01-02T15:25:44.000000000", + "2019-01-02T15:26:11.000000000", + "2019-01-02T15:27:02.000000000", + "2019-01-02T15:31:04.000000000", + "2019-01-02T15:33:38.000000000", + "2019-01-02T15:34:04.000000000", + "2019-01-02T15:36:22.000000000", + "2019-01-02T15:37:15.000000000", + "2019-01-02T15:37:39.000000000", + "2019-01-02T15:39:06.000000000", + "2019-01-02T15:41:19.000000000", + "2019-01-02T15:41:27.000000000", + "2019-01-02T15:42:43.000000000", + "2019-01-02T15:43:31.000000000", + "2019-01-02T15:44:06.000000000", + "2019-01-02T15:45:36.000000000", + "2019-01-02T15:47:47.000000000", + "2019-01-02T15:48:37.000000000", + "2019-01-02T15:49:08.000000000", + "2019-01-02T15:49:10.000000000", + "2019-01-02T15:50:00.000000000", + "2019-01-02T15:50:22.000000000", + "2019-01-02T15:50:58.000000000", + "2019-01-02T15:51:26.000000000", + "2019-01-02T15:53:52.000000000", + "2019-01-02T15:54:09.000000000", + "2019-01-02T15:55:00.000000000", + "2019-01-02T15:55:57.000000000", + "2019-01-02T15:56:11.000000000", + "2019-01-02T15:56:44.000000000", + "2019-01-02T15:57:04.000000000", + "2019-01-02T16:00:26.000000000", + "2019-01-02T16:01:52.000000000", + "2019-01-02T16:03:24.000000000", + "2019-01-02T16:03:28.000000000", + "2019-01-02T16:04:32.000000000", + "2019-01-02T16:06:01.000000000", + "2019-01-02T16:06:43.000000000", + "2019-01-02T16:06:48.000000000", + "2019-01-02T16:07:51.000000000", + "2019-01-02T16:08:06.000000000", + "2019-01-02T16:08:19.000000000", + "2019-01-02T16:08:24.000000000", + "2019-01-02T16:08:26.000000000", + "2019-01-02T16:08:48.000000000", + "2019-01-02T16:09:01.000000000", + "2019-01-02T16:09:43.000000000", + "2019-01-02T16:12:38.000000000", + "2019-01-02T16:13:11.000000000", + "2019-01-02T16:13:18.000000000", + "2019-01-02T16:13:51.000000000", + "2019-01-02T16:14:31.000000000", + "2019-01-02T16:15:03.000000000", + "2019-01-02T16:15:27.000000000", + "2019-01-02T16:16:02.000000000", + "2019-01-02T16:16:45.000000000", + "2019-01-02T16:17:06.000000000", + "2019-01-02T16:17:13.000000000", + "2019-01-02T16:18:13.000000000", + "2019-01-02T16:19:17.000000000", + "2019-01-02T16:19:31.000000000", + "2019-01-02T16:22:27.000000000", + "2019-01-02T16:23:43.000000000", + "2019-01-02T16:24:15.000000000", + "2019-01-02T16:26:51.000000000", + "2019-01-02T16:26:55.000000000", + "2019-01-02T16:27:21.000000000", + "2019-01-02T16:28:09.000000000", + "2019-01-02T16:29:29.000000000", + "2019-01-02T16:31:59.000000000", + "2019-01-02T16:32:15.000000000", + "2019-01-02T16:33:55.000000000", + "2019-01-02T16:37:59.000000000", + "2019-01-02T16:38:29.000000000", + "2019-01-02T16:39:14.000000000", + "2019-01-02T16:40:59.000000000", + "2019-01-02T16:41:43.000000000", + "2019-01-02T16:42:07.000000000", + "2019-01-02T16:43:53.000000000", + "2019-01-02T16:44:01.000000000", + "2019-01-02T16:44:47.000000000", + "2019-01-02T16:45:22.000000000", + "2019-01-02T16:46:49.000000000", + "2019-01-02T16:46:56.000000000", + "2019-01-02T16:48:18.000000000", + "2019-01-02T16:49:53.000000000", + "2019-01-02T16:55:59.000000000", + "2019-01-02T16:57:05.000000000", + "2019-01-02T16:58:29.000000000", + "2019-01-02T16:58:31.000000000", + "2019-01-02T16:58:56.000000000", + "2019-01-02T17:00:16.000000000", + "2019-01-02T17:01:22.000000000", + "2019-01-02T17:03:54.000000000", + "2019-01-02T17:04:02.000000000", + "2019-01-02T17:04:11.000000000", + "2019-01-02T17:04:27.000000000", + "2019-01-02T17:05:23.000000000", + "2019-01-02T17:05:42.000000000", + "2019-01-02T17:07:12.000000000", + "2019-01-02T17:08:04.000000000", + "2019-01-02T17:08:41.000000000", + "2019-01-02T17:09:24.000000000", + "2019-01-02T17:10:09.000000000", + "2019-01-02T17:10:26.000000000", + "2019-01-02T17:12:32.000000000", + "2019-01-02T17:12:50.000000000", + "2019-01-02T17:12:55.000000000", + "2019-01-02T17:13:10.000000000", + "2019-01-02T17:14:49.000000000", + "2019-01-02T17:15:09.000000000", + "2019-01-02T17:16:11.000000000", + "2019-01-02T17:17:52.000000000", + "2019-01-02T17:19:33.000000000", + "2019-01-02T17:20:11.000000000", + "2019-01-02T17:20:24.000000000", + "2019-01-02T17:21:14.000000000", + "2019-01-02T17:21:15.000000000", + "2019-01-02T17:21:56.000000000", + "2019-01-02T17:22:07.000000000", + "2019-01-02T17:22:21.000000000", + "2019-01-02T17:22:22.000000000", + "2019-01-02T17:23:39.000000000", + "2019-01-02T17:25:15.000000000", + "2019-01-02T17:25:19.000000000", + "2019-01-02T17:25:51.000000000", + "2019-01-02T17:26:33.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:28:09.000000000", + "2019-01-02T17:28:38.000000000", + "2019-01-02T17:28:54.000000000", + "2019-01-02T17:30:41.000000000", + "2019-01-02T17:31:38.000000000", + "2019-01-02T17:31:51.000000000", + "2019-01-02T17:33:33.000000000", + "2019-01-02T17:35:48.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:38:48.000000000", + "2019-01-02T17:39:59.000000000", + "2019-01-02T17:40:43.000000000", + "2019-01-02T17:40:55.000000000", + "2019-01-02T17:41:05.000000000", + "2019-01-02T17:43:22.000000000", + "2019-01-02T17:48:16.000000000", + "2019-01-02T17:48:56.000000000", + "2019-01-02T17:50:29.000000000", + "2019-01-02T17:50:56.000000000", + "2019-01-02T17:51:04.000000000", + "2019-01-02T17:53:22.000000000", + "2019-01-02T17:53:41.000000000", + "2019-01-02T17:53:43.000000000", + "2019-01-02T17:54:37.000000000", + "2019-01-02T17:55:06.000000000", + "2019-01-02T17:57:05.000000000", + "2019-01-02T18:00:53.000000000", + "2019-01-02T18:02:19.000000000", + "2019-01-02T18:02:32.000000000", + "2019-01-02T18:03:44.000000000", + "2019-01-02T18:05:34.000000000", + "2019-01-02T18:06:06.000000000", + "2019-01-02T18:06:19.000000000", + "2019-01-02T18:07:27.000000000", + "2019-01-02T18:07:44.000000000", + "2019-01-02T18:11:12.000000000", + "2019-01-02T18:12:11.000000000", + "2019-01-02T18:12:28.000000000", + "2019-01-02T18:12:43.000000000", + "2019-01-02T18:13:26.000000000", + "2019-01-02T18:14:48.000000000", + "2019-01-02T18:16:04.000000000", + "2019-01-02T18:20:13.000000000", + "2019-01-02T18:21:16.000000000", + "2019-01-02T18:21:22.000000000", + "2019-01-02T18:21:26.000000000", + "2019-01-02T18:21:34.000000000", + "2019-01-02T18:22:12.000000000", + "2019-01-02T18:23:17.000000000", + "2019-01-02T18:24:25.000000000", + "2019-01-02T18:25:07.000000000", + "2019-01-02T18:26:06.000000000", + "2019-01-02T18:26:11.000000000", + "2019-01-02T18:27:02.000000000", + "2019-01-02T18:27:57.000000000", + "2019-01-02T18:27:59.000000000", + "2019-01-02T18:30:05.000000000", + "2019-01-02T18:33:09.000000000", + "2019-01-02T18:33:26.000000000", + "2019-01-02T18:36:34.000000000", + "2019-01-02T18:37:08.000000000", + "2019-01-02T18:39:04.000000000", + "2019-01-02T18:40:19.000000000", + "2019-01-02T18:40:38.000000000", + "2019-01-02T18:40:54.000000000", + "2019-01-02T18:41:38.000000000", + "2019-01-02T18:41:55.000000000", + "2019-01-02T18:42:07.000000000", + "2019-01-02T18:42:33.000000000", + "2019-01-02T18:46:52.000000000", + "2019-01-02T18:50:41.000000000", + "2019-01-02T18:51:45.000000000", + "2019-01-02T18:51:51.000000000", + "2019-01-02T18:53:52.000000000", + "2019-01-02T18:54:09.000000000", + "2019-01-02T18:56:21.000000000", + "2019-01-02T18:56:33.000000000", + "2019-01-02T18:58:12.000000000", + "2019-01-02T18:59:24.000000000", + "2019-01-02T19:01:16.000000000", + "2019-01-02T19:01:17.000000000", + "2019-01-02T19:01:50.000000000", + "2019-01-02T19:02:17.000000000", + "2019-01-02T19:02:55.000000000", + "2019-01-02T19:03:34.000000000", + "2019-01-02T19:05:34.000000000", + "2019-01-02T19:07:31.000000000", + "2019-01-02T19:09:07.000000000", + "2019-01-02T19:09:53.000000000", + "2019-01-02T19:11:03.000000000", + "2019-01-02T19:11:42.000000000", + "2019-01-02T19:12:04.000000000", + "2019-01-02T19:12:21.000000000", + "2019-01-02T19:12:54.000000000", + "2019-01-02T19:13:15.000000000", + "2019-01-02T19:14:03.000000000", + "2019-01-02T19:15:18.000000000", + "2019-01-02T19:16:11.000000000", + "2019-01-02T19:17:02.000000000", + "2019-01-02T19:17:12.000000000", + "2019-01-02T19:17:58.000000000", + "2019-01-02T19:18:02.000000000", + "2019-01-02T19:18:06.000000000", + "2019-01-02T19:19:12.000000000", + "2019-01-02T19:20:23.000000000", + "2019-01-02T19:21:02.000000000", + "2019-01-02T19:21:04.000000000", + "2019-01-02T19:21:09.000000000", + "2019-01-02T19:22:05.000000000", + "2019-01-02T19:24:09.000000000", + "2019-01-02T19:25:19.000000000", + "2019-01-02T19:25:58.000000000", + "2019-01-02T19:26:35.000000000", + "2019-01-02T19:28:12.000000000", + "2019-01-02T19:29:22.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:30:17.000000000", + "2019-01-02T19:31:04.000000000", + "2019-01-02T19:31:30.000000000", + "2019-01-02T19:32:42.000000000", + "2019-01-02T19:35:31.000000000", + "2019-01-02T19:35:34.000000000", + "2019-01-02T19:35:51.000000000", + "2019-01-02T19:36:37.000000000", + "2019-01-02T19:40:50.000000000", + "2019-01-02T19:41:24.000000000", + "2019-01-02T19:41:25.000000000", + "2019-01-02T19:41:54.000000000", + "2019-01-02T19:43:30.000000000", + "2019-01-02T19:44:21.000000000", + "2019-01-02T19:44:43.000000000", + "2019-01-02T19:44:58.000000000", + "2019-01-02T19:46:38.000000000", + "2019-01-02T19:48:20.000000000", + "2019-01-02T19:50:10.000000000", + "2019-01-02T19:52:16.000000000", + "2019-01-02T19:53:56.000000000", + "2019-01-02T19:54:02.000000000", + "2019-01-02T19:55:32.000000000", + "2019-01-02T19:55:34.000000000", + "2019-01-02T19:57:06.000000000", + "2019-01-02T19:57:33.000000000", + "2019-01-02T19:58:16.000000000", + "2019-01-02T19:59:16.000000000", + "2019-01-02T20:00:41.000000000", + "2019-01-02T20:01:58.000000000", + "2019-01-02T20:02:03.000000000", + "2019-01-02T20:02:18.000000000", + "2019-01-02T20:04:01.000000000", + "2019-01-02T20:04:06.000000000", + "2019-01-02T20:04:13.000000000", + "2019-01-02T20:04:26.000000000", + "2019-01-02T20:04:45.000000000", + "2019-01-02T20:05:57.000000000", + "2019-01-02T20:07:12.000000000", + "2019-01-02T20:07:36.000000000", + "2019-01-02T20:08:50.000000000", + "2019-01-02T20:10:46.000000000", + "2019-01-02T20:10:49.000000000", + "2019-01-02T20:11:41.000000000", + "2019-01-02T20:13:26.000000000", + "2019-01-02T20:15:15.000000000", + "2019-01-02T20:17:15.000000000", + "2019-01-02T20:18:32.000000000", + "2019-01-02T20:19:58.000000000", + "2019-01-02T20:24:07.000000000", + "2019-01-02T20:25:39.000000000", + "2019-01-02T20:26:34.000000000", + "2019-01-02T20:27:38.000000000", + "2019-01-02T20:30:33.000000000", + "2019-01-02T20:31:32.000000000", + "2019-01-02T20:32:58.000000000", + "2019-01-02T20:33:01.000000000", + "2019-01-02T20:33:27.000000000", + "2019-01-02T20:33:33.000000000", + "2019-01-02T20:34:40.000000000", + "2019-01-02T20:36:38.000000000", + "2019-01-02T20:38:11.000000000", + "2019-01-02T20:38:36.000000000", + "2019-01-02T20:38:43.000000000", + "2019-01-02T20:39:19.000000000", + "2019-01-02T20:45:46.000000000", + "2019-01-02T20:47:07.000000000", + "2019-01-02T20:47:47.000000000", + "2019-01-02T20:48:51.000000000", + "2019-01-02T20:49:03.000000000", + "2019-01-02T20:50:46.000000000", + "2019-01-02T20:52:00.000000000", + "2019-01-02T20:52:35.000000000", + "2019-01-02T20:53:07.000000000", + "2019-01-02T20:53:39.000000000", + "2019-01-02T20:54:07.000000000", + "2019-01-02T20:54:10.000000000", + "2019-01-02T20:56:40.000000000", + "2019-01-02T21:00:04.000000000", + "2019-01-02T21:00:28.000000000", + "2019-01-02T21:00:42.000000000", + "2019-01-02T21:02:37.000000000", + "2019-01-02T21:03:27.000000000", + "2019-01-02T21:04:43.000000000", + "2019-01-02T21:04:45.000000000", + "2019-01-02T21:05:13.000000000", + "2019-01-02T21:06:07.000000000", + "2019-01-02T21:06:17.000000000", + "2019-01-02T21:06:22.000000000", + "2019-01-02T21:09:07.000000000", + "2019-01-02T21:10:55.000000000", + "2019-01-02T21:11:46.000000000", + "2019-01-02T21:12:12.000000000", + "2019-01-02T21:12:21.000000000", + "2019-01-02T21:12:42.000000000", + "2019-01-02T21:12:57.000000000", + "2019-01-02T21:14:13.000000000", + "2019-01-02T21:15:03.000000000", + "2019-01-02T21:17:34.000000000", + "2019-01-02T21:19:13.000000000", + "2019-01-02T21:22:06.000000000", + "2019-01-02T21:22:43.000000000", + "2019-01-02T21:22:45.000000000", + "2019-01-02T21:24:19.000000000", + "2019-01-02T21:24:29.000000000", + "2019-01-02T21:24:52.000000000", + "2019-01-02T21:27:03.000000000", + "2019-01-02T21:27:13.000000000", + "2019-01-02T21:27:51.000000000", + "2019-01-02T21:28:09.000000000", + "2019-01-02T21:30:28.000000000", + "2019-01-02T21:30:41.000000000", + "2019-01-02T21:31:48.000000000", + "2019-01-02T21:31:56.000000000", + "2019-01-02T21:33:09.000000000", + "2019-01-02T21:34:41.000000000", + "2019-01-02T21:35:21.000000000", + "2019-01-02T21:35:52.000000000", + "2019-01-02T21:36:07.000000000", + "2019-01-02T21:36:40.000000000", + "2019-01-02T21:37:00.000000000", + "2019-01-02T21:37:54.000000000", + "2019-01-02T21:38:01.000000000", + "2019-01-02T21:38:57.000000000", + "2019-01-02T21:40:04.000000000", + "2019-01-02T21:40:30.000000000", + "2019-01-02T21:41:59.000000000", + "2019-01-02T21:42:36.000000000", + "2019-01-02T21:43:33.000000000", + "2019-01-02T21:43:35.000000000", + "2019-01-02T21:45:43.000000000", + "2019-01-02T21:45:47.000000000", + "2019-01-02T21:46:43.000000000", + "2019-01-02T21:46:52.000000000", + "2019-01-02T21:47:23.000000000", + "2019-01-02T21:48:21.000000000", + "2019-01-02T21:48:39.000000000", + "2019-01-02T21:50:12.000000000", + "2019-01-02T21:50:28.000000000", + "2019-01-02T21:50:47.000000000", + "2019-01-02T21:50:55.000000000", + "2019-01-02T21:52:31.000000000", + "2019-01-02T21:53:03.000000000", + "2019-01-02T21:53:44.000000000", + "2019-01-02T21:54:17.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:59:37.000000000", + "2019-01-02T22:00:05.000000000", + "2019-01-02T22:00:39.000000000", + "2019-01-02T22:01:23.000000000", + "2019-01-02T22:02:15.000000000", + "2019-01-02T22:03:03.000000000", + "2019-01-02T22:03:39.000000000", + "2019-01-02T22:05:47.000000000", + "2019-01-02T22:07:38.000000000", + "2019-01-02T22:08:02.000000000", + "2019-01-02T22:09:57.000000000", + "2019-01-02T22:10:22.000000000", + "2019-01-02T22:10:57.000000000", + "2019-01-02T22:12:26.000000000", + "2019-01-02T22:12:29.000000000", + "2019-01-02T22:12:40.000000000", + "2019-01-02T22:12:55.000000000", + "2019-01-02T22:14:12.000000000", + "2019-01-02T22:14:48.000000000", + "2019-01-02T22:21:23.000000000", + "2019-01-02T22:22:10.000000000", + "2019-01-02T22:22:13.000000000", + "2019-01-02T22:23:14.000000000", + "2019-01-02T22:25:37.000000000", + "2019-01-02T22:26:00.000000000", + "2019-01-02T22:26:06.000000000", + "2019-01-02T22:27:07.000000000", + "2019-01-02T22:27:30.000000000", + "2019-01-02T22:27:50.000000000", + "2019-01-02T22:28:22.000000000", + "2019-01-02T22:31:01.000000000", + "2019-01-02T22:31:07.000000000", + "2019-01-02T22:31:33.000000000", + "2019-01-02T22:32:59.000000000", + "2019-01-02T22:33:54.000000000", + "2019-01-02T22:33:59.000000000", + "2019-01-02T22:34:00.000000000", + "2019-01-02T22:34:29.000000000", + "2019-01-02T22:34:38.000000000", + "2019-01-02T22:35:18.000000000", + "2019-01-02T22:35:30.000000000", + "2019-01-02T22:37:57.000000000", + "2019-01-02T22:42:13.000000000", + "2019-01-02T22:43:35.000000000", + "2019-01-02T22:44:28.000000000", + "2019-01-02T22:44:40.000000000", + "2019-01-02T22:44:58.000000000", + "2019-01-02T22:46:00.000000000", + "2019-01-02T22:46:09.000000000", + "2019-01-02T22:51:22.000000000", + "2019-01-02T22:54:31.000000000", + "2019-01-02T22:55:37.000000000", + "2019-01-02T22:56:08.000000000", + "2019-01-02T22:56:28.000000000", + "2019-01-02T22:56:38.000000000", + "2019-01-02T22:56:51.000000000", + "2019-01-02T22:58:01.000000000", + "2019-01-02T23:00:20.000000000", + "2019-01-02T23:04:36.000000000", + "2019-01-02T23:05:21.000000000", + "2019-01-02T23:07:55.000000000", + "2019-01-02T23:08:08.000000000", + "2019-01-02T23:09:35.000000000", + "2019-01-02T23:10:24.000000000", + "2019-01-02T23:10:59.000000000", + "2019-01-02T23:12:45.000000000", + "2019-01-02T23:12:54.000000000", + "2019-01-02T23:13:29.000000000", + "2019-01-02T23:13:48.000000000", + "2019-01-02T23:15:37.000000000", + "2019-01-02T23:15:40.000000000", + "2019-01-02T23:15:48.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:47.000000000", + "2019-01-02T23:16:59.000000000", + "2019-01-02T23:19:21.000000000", + "2019-01-02T23:19:23.000000000", + "2019-01-02T23:19:33.000000000", + "2019-01-02T23:20:01.000000000", + "2019-01-02T23:20:30.000000000", + "2019-01-02T23:20:42.000000000", + "2019-01-02T23:23:03.000000000", + "2019-01-02T23:24:53.000000000", + "2019-01-02T23:25:19.000000000", + "2019-01-02T23:25:43.000000000", + "2019-01-02T23:27:29.000000000", + "2019-01-02T23:28:31.000000000", + "2019-01-02T23:29:12.000000000", + "2019-01-02T23:29:41.000000000", + "2019-01-02T23:29:48.000000000", + "2019-01-02T23:30:09.000000000", + "2019-01-02T23:30:28.000000000", + "2019-01-02T23:32:14.000000000", + "2019-01-02T23:32:41.000000000", + "2019-01-02T23:33:00.000000000", + "2019-01-02T23:33:17.000000000", + "2019-01-02T23:33:42.000000000", + "2019-01-02T23:36:23.000000000", + "2019-01-02T23:36:58.000000000", + "2019-01-02T23:37:06.000000000", + "2019-01-02T23:37:10.000000000", + "2019-01-02T23:39:12.000000000", + "2019-01-02T23:40:01.000000000", + "2019-01-02T23:40:22.000000000", + "2019-01-02T23:40:30.000000000", + "2019-01-02T23:40:38.000000000", + "2019-01-02T23:42:11.000000000", + "2019-01-02T23:44:07.000000000", + "2019-01-02T23:44:20.000000000", + "2019-01-02T23:44:36.000000000", + "2019-01-02T23:44:56.000000000", + "2019-01-02T23:47:43.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:34.000000000", + "2019-01-02T23:51:10.000000000", + "2019-01-02T23:52:45.000000000", + "2019-01-02T23:53:39.000000000", + "2019-01-02T23:53:43.000000000", + "2019-01-02T23:53:56.000000000", + "2019-01-02T23:54:13.000000000", + "2019-01-02T23:54:19.000000000", + "2019-01-02T23:55:46.000000000", + "2019-01-02T23:57:47.000000000", + "2019-01-02T23:58:58.000000000", + "2019-01-02T23:59:34.000000000", + "2019-01-03T00:00:42.000000000", + "2019-01-03T00:01:36.000000000", + "2019-01-03T00:04:57.000000000", + "2019-01-03T00:05:13.000000000", + "2019-01-03T00:07:23.000000000", + "2019-01-03T00:08:21.000000000", + "2019-01-03T00:08:44.000000000", + "2019-01-03T00:09:44.000000000", + "2019-01-03T00:09:49.000000000", + "2019-01-03T00:10:22.000000000", + "2019-01-03T00:10:36.000000000", + "2019-01-03T00:11:36.000000000", + "2019-01-03T00:13:12.000000000", + "2019-01-03T00:14:12.000000000", + "2019-01-03T00:14:19.000000000", + "2019-01-03T00:15:38.000000000", + "2019-01-03T00:17:00.000000000", + "2019-01-03T00:17:01.000000000", + "2019-01-03T00:18:56.000000000", + "2019-01-03T00:19:04.000000000", + "2019-01-03T00:21:05.000000000", + "2019-01-03T00:25:46.000000000", + "2019-01-03T00:26:38.000000000", + "2019-01-03T00:27:26.000000000", + "2019-01-03T00:27:33.000000000", + "2019-01-03T00:28:26.000000000", + "2019-01-03T00:28:53.000000000", + "2019-01-03T00:29:32.000000000", + "2019-01-03T00:31:22.000000000", + "2019-01-03T00:31:55.000000000", + "2019-01-03T00:32:56.000000000", + "2019-01-03T00:33:35.000000000", + "2019-01-03T00:35:46.000000000", + "2019-01-03T00:35:47.000000000", + "2019-01-03T00:38:43.000000000", + "2019-01-03T00:38:52.000000000", + "2019-01-03T00:38:55.000000000", + "2019-01-03T00:39:18.000000000", + "2019-01-03T00:40:17.000000000", + "2019-01-03T00:40:25.000000000", + "2019-01-03T00:41:56.000000000", + "2019-01-03T00:42:04.000000000", + "2019-01-03T00:43:05.000000000", + "2019-01-03T00:43:20.000000000", + "2019-01-03T00:44:38.000000000", + "2019-01-03T00:45:57.000000000", + "2019-01-03T00:47:08.000000000", + "2019-01-03T00:47:34.000000000", + "2019-01-03T00:48:25.000000000", + "2019-01-03T00:49:05.000000000", + "2019-01-03T00:49:54.000000000", + "2019-01-03T00:50:56.000000000", + "2019-01-03T00:51:40.000000000", + "2019-01-03T00:51:59.000000000", + "2019-01-03T00:54:50.000000000", + "2019-01-03T00:55:50.000000000", + "2019-01-03T01:00:18.000000000", + "2019-01-03T01:00:41.000000000", + "2019-01-03T01:00:48.000000000", + "2019-01-03T01:01:25.000000000", + "2019-01-03T01:01:30.000000000", + "2019-01-03T01:01:38.000000000", + "2019-01-03T01:02:00.000000000", + "2019-01-03T01:02:07.000000000", + "2019-01-03T01:02:50.000000000", + "2019-01-03T01:04:03.000000000", + "2019-01-03T01:04:58.000000000", + "2019-01-03T01:05:09.000000000", + "2019-01-03T01:05:49.000000000", + "2019-01-03T01:06:00.000000000", + "2019-01-03T01:06:39.000000000", + "2019-01-03T01:08:38.000000000", + "2019-01-03T01:09:24.000000000", + "2019-01-03T01:09:39.000000000", + "2019-01-03T01:09:55.000000000", + "2019-01-03T01:10:15.000000000", + "2019-01-03T01:10:20.000000000", + "2019-01-03T01:10:59.000000000", + "2019-01-03T01:11:27.000000000", + "2019-01-03T01:12:27.000000000", + "2019-01-03T01:12:48.000000000", + "2019-01-03T01:15:11.000000000", + "2019-01-03T01:15:35.000000000", + "2019-01-03T01:18:59.000000000", + "2019-01-03T01:19:22.000000000", + "2019-01-03T01:19:47.000000000", + "2019-01-03T01:19:48.000000000", + "2019-01-03T01:22:00.000000000", + "2019-01-03T01:23:27.000000000", + "2019-01-03T01:24:52.000000000", + "2019-01-03T01:25:32.000000000", + "2019-01-03T01:27:00.000000000", + "2019-01-03T01:27:18.000000000", + "2019-01-03T01:28:38.000000000", + "2019-01-03T01:30:13.000000000", + "2019-01-03T01:31:43.000000000", + "2019-01-03T01:32:02.000000000", + "2019-01-03T01:32:16.000000000", + "2019-01-03T01:32:57.000000000", + "2019-01-03T01:33:45.000000000", + "2019-01-03T01:34:17.000000000", + "2019-01-03T01:34:35.000000000", + "2019-01-03T01:35:22.000000000", + "2019-01-03T01:35:25.000000000", + "2019-01-03T01:35:52.000000000", + "2019-01-03T01:35:54.000000000", + "2019-01-03T01:36:03.000000000", + "2019-01-03T01:36:20.000000000", + "2019-01-03T01:36:53.000000000", + "2019-01-03T01:39:59.000000000", + "2019-01-03T01:40:02.000000000", + "2019-01-03T01:40:20.000000000", + "2019-01-03T01:42:06.000000000", + "2019-01-03T01:42:39.000000000", + "2019-01-03T01:43:18.000000000", + "2019-01-03T01:43:24.000000000", + "2019-01-03T01:43:37.000000000", + "2019-01-03T01:43:51.000000000", + "2019-01-03T01:45:51.000000000", + "2019-01-03T01:46:07.000000000", + "2019-01-03T01:46:17.000000000", + "2019-01-03T01:46:23.000000000", + "2019-01-03T01:46:24.000000000", + "2019-01-03T01:46:28.000000000", + "2019-01-03T01:47:38.000000000", + "2019-01-03T01:48:01.000000000", + "2019-01-03T01:48:06.000000000", + "2019-01-03T01:49:13.000000000", + "2019-01-03T01:49:20.000000000", + "2019-01-03T01:50:08.000000000", + "2019-01-03T01:51:14.000000000", + "2019-01-03T01:51:24.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:54:02.000000000", + "2019-01-03T01:55:05.000000000", + "2019-01-03T01:55:43.000000000", + "2019-01-03T01:55:51.000000000", + "2019-01-03T01:56:34.000000000", + "2019-01-03T01:57:05.000000000", + "2019-01-03T01:57:54.000000000", + "2019-01-03T01:58:21.000000000", + "2019-01-03T01:58:38.000000000", + "2019-01-03T01:59:53.000000000", + "2019-01-03T02:00:41.000000000", + "2019-01-03T02:00:45.000000000", + "2019-01-03T02:02:29.000000000", + "2019-01-03T02:02:34.000000000", + "2019-01-03T02:02:48.000000000", + "2019-01-03T02:05:57.000000000", + "2019-01-03T02:08:02.000000000", + "2019-01-03T02:08:06.000000000", + "2019-01-03T02:08:46.000000000", + "2019-01-03T02:11:15.000000000", + "2019-01-03T02:11:25.000000000", + "2019-01-03T02:11:58.000000000", + "2019-01-03T02:12:51.000000000", + "2019-01-03T02:13:07.000000000", + "2019-01-03T02:14:54.000000000", + "2019-01-03T02:17:59.000000000", + "2019-01-03T02:18:33.000000000", + "2019-01-03T02:19:24.000000000", + "2019-01-03T02:21:32.000000000", + "2019-01-03T02:22:38.000000000", + "2019-01-03T02:24:28.000000000", + "2019-01-03T02:24:52.000000000", + "2019-01-03T02:25:02.000000000", + "2019-01-03T02:26:14.000000000", + "2019-01-03T02:26:40.000000000", + "2019-01-03T02:26:50.000000000", + "2019-01-03T02:28:05.000000000", + "2019-01-03T02:28:12.000000000", + "2019-01-03T02:29:51.000000000", + "2019-01-03T02:30:16.000000000", + "2019-01-03T02:31:31.000000000", + "2019-01-03T02:31:47.000000000", + "2019-01-03T02:33:24.000000000", + "2019-01-03T02:33:46.000000000", + "2019-01-03T02:35:04.000000000", + "2019-01-03T02:35:12.000000000", + "2019-01-03T02:37:10.000000000", + "2019-01-03T02:37:33.000000000", + "2019-01-03T02:37:57.000000000", + "2019-01-03T02:38:19.000000000", + "2019-01-03T02:38:21.000000000", + "2019-01-03T02:38:44.000000000", + "2019-01-03T02:38:53.000000000", + "2019-01-03T02:40:37.000000000", + "2019-01-03T02:43:50.000000000", + "2019-01-03T02:45:00.000000000", + "2019-01-03T02:45:19.000000000", + "2019-01-03T02:45:21.000000000", + "2019-01-03T02:50:58.000000000", + "2019-01-03T02:53:06.000000000", + "2019-01-03T02:55:14.000000000", + "2019-01-03T02:57:39.000000000", + "2019-01-03T02:58:13.000000000", + "2019-01-03T02:59:27.000000000", + "2019-01-03T02:59:49.000000000", + "2019-01-03T03:00:34.000000000", + "2019-01-03T03:03:31.000000000", + "2019-01-03T03:06:59.000000000", + "2019-01-03T03:08:30.000000000", + "2019-01-03T03:08:37.000000000", + "2019-01-03T03:11:37.000000000", + "2019-01-03T03:11:59.000000000", + "2019-01-03T03:14:43.000000000", + "2019-01-03T03:18:33.000000000", + "2019-01-03T03:20:40.000000000", + "2019-01-03T03:21:03.000000000", + "2019-01-03T03:21:28.000000000", + "2019-01-03T03:22:04.000000000", + "2019-01-03T03:26:39.000000000", + "2019-01-03T03:27:38.000000000", + "2019-01-03T03:28:01.000000000", + "2019-01-03T03:28:39.000000000", + "2019-01-03T03:29:01.000000000", + "2019-01-03T03:30:07.000000000", + "2019-01-03T03:33:58.000000000", + "2019-01-03T03:34:30.000000000", + "2019-01-03T03:34:40.000000000", + "2019-01-03T03:35:44.000000000", + "2019-01-03T03:37:22.000000000", + "2019-01-03T03:37:52.000000000", + "2019-01-03T03:38:19.000000000", + "2019-01-03T03:42:20.000000000", + "2019-01-03T03:42:28.000000000", + "2019-01-03T03:43:18.000000000", + "2019-01-03T03:46:41.000000000", + "2019-01-03T03:47:17.000000000", + "2019-01-03T03:47:36.000000000", + "2019-01-03T03:49:34.000000000", + "2019-01-03T03:52:18.000000000", + "2019-01-03T03:55:26.000000000", + "2019-01-03T03:59:23.000000000", + "2019-01-03T03:59:56.000000000", + "2019-01-03T04:00:00.000000000", + "2019-01-03T04:00:11.000000000", + "2019-01-03T04:00:14.000000000", + "2019-01-03T04:01:54.000000000", + "2019-01-03T04:02:07.000000000", + "2019-01-03T04:03:57.000000000", + "2019-01-03T04:05:32.000000000", + "2019-01-03T04:05:38.000000000", + "2019-01-03T04:07:51.000000000", + "2019-01-03T04:08:10.000000000", + "2019-01-03T04:08:24.000000000", + "2019-01-03T04:09:18.000000000", + "2019-01-03T04:10:26.000000000", + "2019-01-03T04:11:44.000000000", + "2019-01-03T04:13:09.000000000", + "2019-01-03T04:13:39.000000000", + "2019-01-03T04:16:42.000000000", + "2019-01-03T04:17:38.000000000", + "2019-01-03T04:18:02.000000000", + "2019-01-03T04:18:30.000000000", + "2019-01-03T04:18:37.000000000", + "2019-01-03T04:20:08.000000000", + "2019-01-03T04:20:16.000000000", + "2019-01-03T04:20:54.000000000", + "2019-01-03T04:22:08.000000000", + "2019-01-03T04:26:31.000000000", + "2019-01-03T04:28:06.000000000", + "2019-01-03T04:28:54.000000000", + "2019-01-03T04:30:36.000000000", + "2019-01-03T04:33:04.000000000", + "2019-01-03T04:33:08.000000000", + "2019-01-03T04:35:35.000000000", + "2019-01-03T04:35:53.000000000", + "2019-01-03T04:37:47.000000000", + "2019-01-03T04:39:34.000000000", + "2019-01-03T04:40:47.000000000", + "2019-01-03T04:41:31.000000000", + "2019-01-03T04:41:46.000000000", + "2019-01-03T04:42:05.000000000", + "2019-01-03T04:42:33.000000000", + "2019-01-03T04:42:59.000000000", + "2019-01-03T04:43:34.000000000", + "2019-01-03T04:44:13.000000000", + "2019-01-03T04:45:01.000000000", + "2019-01-03T04:45:10.000000000", + "2019-01-03T04:45:25.000000000", + "2019-01-03T04:46:32.000000000", + "2019-01-03T04:46:33.000000000", + "2019-01-03T04:46:46.000000000", + "2019-01-03T04:46:58.000000000", + "2019-01-03T04:47:00.000000000", + "2019-01-03T04:49:45.000000000", + "2019-01-03T04:50:11.000000000", + "2019-01-03T04:50:51.000000000", + "2019-01-03T04:51:05.000000000", + "2019-01-03T04:51:27.000000000", + "2019-01-03T04:51:39.000000000", + "2019-01-03T04:52:23.000000000", + "2019-01-03T04:52:34.000000000", + "2019-01-03T04:53:30.000000000", + "2019-01-03T04:55:38.000000000", + "2019-01-03T04:56:08.000000000", + "2019-01-03T04:56:33.000000000", + "2019-01-03T04:56:42.000000000", + "2019-01-03T05:00:21.000000000", + "2019-01-03T05:01:18.000000000", + "2019-01-03T05:02:18.000000000", + "2019-01-03T05:02:40.000000000", + "2019-01-03T05:03:06.000000000", + "2019-01-03T05:03:55.000000000", + "2019-01-03T05:06:02.000000000", + "2019-01-03T05:06:48.000000000", + "2019-01-03T05:08:45.000000000", + "2019-01-03T05:08:54.000000000", + "2019-01-03T05:09:04.000000000", + "2019-01-03T05:10:45.000000000", + "2019-01-03T05:12:41.000000000", + "2019-01-03T05:12:58.000000000", + "2019-01-03T05:13:30.000000000", + "2019-01-03T05:14:31.000000000", + "2019-01-03T05:16:24.000000000", + "2019-01-03T05:17:01.000000000", + "2019-01-03T05:17:29.000000000", + "2019-01-03T05:17:38.000000000", + "2019-01-03T05:18:23.000000000", + "2019-01-03T05:20:00.000000000", + "2019-01-03T05:22:32.000000000", + "2019-01-03T05:22:38.000000000", + "2019-01-03T05:23:05.000000000", + "2019-01-03T05:23:16.000000000", + "2019-01-03T05:23:42.000000000", + "2019-01-03T05:25:04.000000000", + "2019-01-03T05:25:15.000000000", + "2019-01-03T05:26:31.000000000", + "2019-01-03T05:33:27.000000000", + "2019-01-03T05:35:03.000000000", + "2019-01-03T05:35:15.000000000", + "2019-01-03T05:36:38.000000000", + "2019-01-03T05:36:45.000000000", + "2019-01-03T05:38:27.000000000", + "2019-01-03T05:38:43.000000000", + "2019-01-03T05:38:49.000000000", + "2019-01-03T05:38:52.000000000", + "2019-01-03T05:39:04.000000000", + "2019-01-03T05:41:56.000000000", + "2019-01-03T05:44:42.000000000", + "2019-01-03T05:46:41.000000000", + "2019-01-03T05:46:56.000000000", + "2019-01-03T05:47:03.000000000", + "2019-01-03T05:47:09.000000000", + "2019-01-03T05:47:34.000000000", + "2019-01-03T05:48:04.000000000", + "2019-01-03T05:48:13.000000000", + "2019-01-03T05:49:11.000000000", + "2019-01-03T05:51:27.000000000", + "2019-01-03T05:51:42.000000000", + "2019-01-03T05:51:52.000000000", + "2019-01-03T05:52:52.000000000", + "2019-01-03T05:54:29.000000000", + "2019-01-03T05:54:37.000000000", + "2019-01-03T05:55:12.000000000", + "2019-01-03T05:55:38.000000000", + "2019-01-03T05:56:47.000000000", + "2019-01-03T05:57:22.000000000", + "2019-01-03T05:59:30.000000000", + "2019-01-03T06:01:44.000000000", + "2019-01-03T06:01:47.000000000", + "2019-01-03T06:02:32.000000000", + "2019-01-03T06:05:27.000000000", + "2019-01-03T06:06:09.000000000", + "2019-01-03T06:06:38.000000000", + "2019-01-03T06:07:16.000000000", + "2019-01-03T06:08:57.000000000", + "2019-01-03T06:09:16.000000000", + "2019-01-03T06:10:13.000000000", + "2019-01-03T06:10:31.000000000", + "2019-01-03T06:11:40.000000000", + "2019-01-03T06:12:04.000000000", + "2019-01-03T06:13:19.000000000", + "2019-01-03T06:15:59.000000000", + "2019-01-03T06:17:53.000000000", + "2019-01-03T06:18:10.000000000", + "2019-01-03T06:18:51.000000000", + "2019-01-03T06:18:54.000000000", + "2019-01-03T06:19:44.000000000", + "2019-01-03T06:20:09.000000000", + "2019-01-03T06:20:19.000000000", + "2019-01-03T06:22:28.000000000", + "2019-01-03T06:23:13.000000000", + "2019-01-03T06:23:52.000000000", + "2019-01-03T06:23:57.000000000", + "2019-01-03T06:24:19.000000000", + "2019-01-03T06:24:32.000000000", + "2019-01-03T06:25:14.000000000", + "2019-01-03T06:26:29.000000000", + "2019-01-03T06:26:39.000000000", + "2019-01-03T06:27:25.000000000", + "2019-01-03T06:27:48.000000000", + "2019-01-03T06:27:59.000000000", + "2019-01-03T06:28:53.000000000", + "2019-01-03T06:30:16.000000000", + "2019-01-03T06:30:42.000000000", + "2019-01-03T06:31:06.000000000", + "2019-01-03T06:31:16.000000000", + "2019-01-03T06:31:28.000000000", + "2019-01-03T06:31:58.000000000", + "2019-01-03T06:35:02.000000000", + "2019-01-03T06:35:42.000000000", + "2019-01-03T06:36:00.000000000", + "2019-01-03T06:36:41.000000000", + "2019-01-03T06:37:30.000000000", + "2019-01-03T06:41:32.000000000", + "2019-01-03T06:42:59.000000000", + "2019-01-03T06:44:17.000000000", + "2019-01-03T06:45:08.000000000", + "2019-01-03T06:46:24.000000000", + "2019-01-03T06:46:27.000000000", + "2019-01-03T06:49:50.000000000", + "2019-01-03T06:52:16.000000000", + "2019-01-03T06:53:31.000000000", + "2019-01-03T06:53:50.000000000", + "2019-01-03T06:54:35.000000000", + "2019-01-03T06:55:50.000000000", + "2019-01-03T06:56:33.000000000", + "2019-01-03T06:56:35.000000000", + "2019-01-03T06:56:47.000000000", + "2019-01-03T06:56:48.000000000", + "2019-01-03T06:57:25.000000000", + "2019-01-03T06:58:12.000000000", + "2019-01-03T06:59:57.000000000", + "2019-01-03T07:01:35.000000000", + "2019-01-03T07:03:07.000000000", + "2019-01-03T07:03:19.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:06:23.000000000", + "2019-01-03T07:06:47.000000000", + "2019-01-03T07:08:05.000000000", + "2019-01-03T07:08:15.000000000", + "2019-01-03T07:11:10.000000000", + "2019-01-03T07:14:07.000000000", + "2019-01-03T07:15:32.000000000", + "2019-01-03T07:15:33.000000000", + "2019-01-03T07:15:50.000000000", + "2019-01-03T07:16:22.000000000", + "2019-01-03T07:17:29.000000000", + "2019-01-03T07:17:45.000000000", + "2019-01-03T07:18:21.000000000", + "2019-01-03T07:20:48.000000000", + "2019-01-03T07:21:15.000000000", + "2019-01-03T07:22:46.000000000", + "2019-01-03T07:25:41.000000000", + "2019-01-03T07:27:18.000000000", + "2019-01-03T07:27:21.000000000", + "2019-01-03T07:27:22.000000000", + "2019-01-03T07:28:59.000000000", + "2019-01-03T07:29:07.000000000", + "2019-01-03T07:29:47.000000000", + "2019-01-03T07:31:36.000000000", + "2019-01-03T07:32:04.000000000", + "2019-01-03T07:32:47.000000000", + "2019-01-03T07:33:05.000000000", + "2019-01-03T07:33:44.000000000", + "2019-01-03T07:34:20.000000000", + "2019-01-03T07:35:38.000000000", + "2019-01-03T07:38:58.000000000", + "2019-01-03T07:41:01.000000000", + "2019-01-03T07:42:46.000000000", + "2019-01-03T07:43:20.000000000", + "2019-01-03T07:44:12.000000000", + "2019-01-03T07:44:20.000000000", + "2019-01-03T07:45:46.000000000", + "2019-01-03T07:47:21.000000000", + "2019-01-03T07:48:32.000000000", + "2019-01-03T07:49:34.000000000", + "2019-01-03T07:51:56.000000000", + "2019-01-03T07:53:59.000000000", + "2019-01-03T07:56:15.000000000", + "2019-01-03T07:56:43.000000000", + "2019-01-03T07:58:10.000000000", + "2019-01-03T07:59:46.000000000", + "2019-01-03T08:00:56.000000000", + "2019-01-03T08:01:08.000000000", + "2019-01-03T08:01:56.000000000", + "2019-01-03T08:03:52.000000000", + "2019-01-03T08:05:08.000000000", + "2019-01-03T08:06:22.000000000", + "2019-01-03T08:07:10.000000000", + "2019-01-03T08:07:37.000000000", + "2019-01-03T08:08:33.000000000", + "2019-01-03T08:08:44.000000000", + "2019-01-03T08:11:52.000000000", + "2019-01-03T08:13:45.000000000", + "2019-01-03T08:14:23.000000000", + "2019-01-03T08:15:42.000000000", + "2019-01-03T08:16:16.000000000", + "2019-01-03T08:16:17.000000000", + "2019-01-03T08:16:39.000000000", + "2019-01-03T08:16:43.000000000", + "2019-01-03T08:20:27.000000000", + "2019-01-03T08:21:38.000000000", + "2019-01-03T08:21:47.000000000", + "2019-01-03T08:22:16.000000000", + "2019-01-03T08:22:28.000000000", + "2019-01-03T08:23:15.000000000", + "2019-01-03T08:23:25.000000000", + "2019-01-03T08:24:38.000000000", + "2019-01-03T08:24:40.000000000", + "2019-01-03T08:24:44.000000000", + "2019-01-03T08:25:15.000000000", + "2019-01-03T08:26:17.000000000", + "2019-01-03T08:26:30.000000000", + "2019-01-03T08:26:33.000000000", + "2019-01-03T08:27:10.000000000", + "2019-01-03T08:27:32.000000000", + "2019-01-03T08:28:36.000000000", + "2019-01-03T08:29:20.000000000", + "2019-01-03T08:30:21.000000000", + "2019-01-03T08:31:10.000000000", + "2019-01-03T08:32:51.000000000", + "2019-01-03T08:34:18.000000000", + "2019-01-03T08:35:47.000000000", + "2019-01-03T08:37:17.000000000", + "2019-01-03T08:37:43.000000000", + "2019-01-03T08:39:19.000000000", + "2019-01-03T08:39:22.000000000", + "2019-01-03T08:39:33.000000000", + "2019-01-03T08:39:52.000000000", + "2019-01-03T08:40:14.000000000", + "2019-01-03T08:40:15.000000000", + "2019-01-03T08:40:23.000000000", + "2019-01-03T08:42:06.000000000", + "2019-01-03T08:42:09.000000000", + "2019-01-03T08:43:04.000000000", + "2019-01-03T08:43:38.000000000", + "2019-01-03T08:44:15.000000000", + "2019-01-03T08:44:22.000000000", + "2019-01-03T08:45:09.000000000", + "2019-01-03T08:45:16.000000000", + "2019-01-03T08:48:34.000000000", + "2019-01-03T08:49:48.000000000", + "2019-01-03T08:50:49.000000000", + "2019-01-03T08:50:51.000000000", + "2019-01-03T08:52:21.000000000", + "2019-01-03T08:53:05.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:20.000000000", + "2019-01-03T08:56:02.000000000", + "2019-01-03T08:56:13.000000000", + "2019-01-03T08:57:43.000000000", + "2019-01-03T08:58:53.000000000", + "2019-01-03T08:59:17.000000000", + "2019-01-03T08:59:50.000000000", + "2019-01-03T09:00:11.000000000", + "2019-01-03T09:00:19.000000000", + "2019-01-03T09:01:06.000000000", + "2019-01-03T09:02:22.000000000", + "2019-01-03T09:02:47.000000000", + "2019-01-03T09:03:24.000000000", + "2019-01-03T09:03:30.000000000", + "2019-01-03T09:07:53.000000000", + "2019-01-03T09:08:30.000000000", + "2019-01-03T09:09:07.000000000", + "2019-01-03T09:10:43.000000000", + "2019-01-03T09:11:19.000000000", + "2019-01-03T09:11:35.000000000", + "2019-01-03T09:12:08.000000000", + "2019-01-03T09:14:34.000000000", + "2019-01-03T09:14:38.000000000", + "2019-01-03T09:15:12.000000000", + "2019-01-03T09:18:24.000000000", + "2019-01-03T09:19:49.000000000", + "2019-01-03T09:20:11.000000000", + "2019-01-03T09:20:51.000000000", + "2019-01-03T09:21:11.000000000", + "2019-01-03T09:21:14.000000000", + "2019-01-03T09:21:44.000000000", + "2019-01-03T09:22:16.000000000", + "2019-01-03T09:22:21.000000000", + "2019-01-03T09:23:25.000000000", + "2019-01-03T09:24:34.000000000", + "2019-01-03T09:25:49.000000000", + "2019-01-03T09:25:50.000000000", + "2019-01-03T09:26:02.000000000", + "2019-01-03T09:27:06.000000000", + "2019-01-03T09:28:18.000000000", + "2019-01-03T09:28:29.000000000", + "2019-01-03T09:29:48.000000000", + "2019-01-03T09:29:59.000000000", + "2019-01-03T09:31:21.000000000", + "2019-01-03T09:32:49.000000000", + "2019-01-03T09:34:33.000000000", + "2019-01-03T09:35:15.000000000", + "2019-01-03T09:36:51.000000000", + "2019-01-03T09:37:30.000000000", + "2019-01-03T09:37:52.000000000", + "2019-01-03T09:38:37.000000000", + "2019-01-03T09:41:20.000000000", + "2019-01-03T09:41:30.000000000", + "2019-01-03T09:41:43.000000000", + "2019-01-03T09:43:10.000000000", + "2019-01-03T09:44:15.000000000", + "2019-01-03T09:44:35.000000000", + "2019-01-03T09:46:24.000000000", + "2019-01-03T09:46:28.000000000", + "2019-01-03T09:46:55.000000000", + "2019-01-03T09:47:15.000000000", + "2019-01-03T09:47:54.000000000", + "2019-01-03T09:49:10.000000000", + "2019-01-03T09:50:25.000000000", + "2019-01-03T09:51:02.000000000", + "2019-01-03T09:51:24.000000000", + "2019-01-03T09:51:50.000000000", + "2019-01-03T09:51:58.000000000", + "2019-01-03T09:52:58.000000000", + "2019-01-03T09:54:03.000000000", + "2019-01-03T09:58:05.000000000", + "2019-01-03T09:58:15.000000000", + "2019-01-03T09:58:38.000000000", + "2019-01-03T09:59:42.000000000", + "2019-01-03T10:02:57.000000000", + "2019-01-03T10:04:32.000000000", + "2019-01-03T10:04:35.000000000", + "2019-01-03T10:05:11.000000000", + "2019-01-03T10:06:08.000000000", + "2019-01-03T10:06:20.000000000", + "2019-01-03T10:06:23.000000000", + "2019-01-03T10:08:52.000000000", + "2019-01-03T10:09:06.000000000", + "2019-01-03T10:09:44.000000000", + "2019-01-03T10:10:48.000000000", + "2019-01-03T10:11:29.000000000", + "2019-01-03T10:11:48.000000000", + "2019-01-03T10:13:04.000000000", + "2019-01-03T10:13:32.000000000", + "2019-01-03T10:14:33.000000000", + "2019-01-03T10:14:39.000000000", + "2019-01-03T10:15:11.000000000", + "2019-01-03T10:19:56.000000000", + "2019-01-03T10:21:26.000000000", + "2019-01-03T10:21:45.000000000", + "2019-01-03T10:24:03.000000000", + "2019-01-03T10:24:59.000000000", + "2019-01-03T10:26:51.000000000", + "2019-01-03T10:27:09.000000000", + "2019-01-03T10:27:39.000000000", + "2019-01-03T10:28:24.000000000", + "2019-01-03T10:28:41.000000000", + "2019-01-03T10:28:51.000000000", + "2019-01-03T10:30:09.000000000", + "2019-01-03T10:32:35.000000000", + "2019-01-03T10:32:59.000000000", + "2019-01-03T10:34:15.000000000", + "2019-01-03T10:34:29.000000000", + "2019-01-03T10:34:34.000000000", + "2019-01-03T10:35:47.000000000", + "2019-01-03T10:36:21.000000000", + "2019-01-03T10:36:28.000000000", + "2019-01-03T10:38:32.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:34.000000000", + "2019-01-03T10:40:26.000000000", + "2019-01-03T10:41:42.000000000", + "2019-01-03T10:43:02.000000000", + "2019-01-03T10:45:58.000000000", + "2019-01-03T10:47:55.000000000", + "2019-01-03T10:48:03.000000000", + "2019-01-03T10:48:09.000000000", + "2019-01-03T10:49:47.000000000", + "2019-01-03T10:50:47.000000000", + "2019-01-03T10:51:00.000000000", + "2019-01-03T10:51:15.000000000", + "2019-01-03T10:51:54.000000000", + "2019-01-03T10:51:59.000000000", + "2019-01-03T10:52:15.000000000", + "2019-01-03T10:52:46.000000000", + "2019-01-03T10:53:46.000000000", + "2019-01-03T10:55:24.000000000", + "2019-01-03T10:59:26.000000000", + "2019-01-03T11:00:10.000000000", + "2019-01-03T11:00:43.000000000", + "2019-01-03T11:00:44.000000000", + "2019-01-03T11:02:04.000000000", + "2019-01-03T11:03:36.000000000", + "2019-01-03T11:04:28.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:41.000000000", + "2019-01-03T11:05:55.000000000", + "2019-01-03T11:06:06.000000000", + "2019-01-03T11:06:45.000000000", + "2019-01-03T11:07:23.000000000", + "2019-01-03T11:08:31.000000000", + "2019-01-03T11:09:45.000000000", + "2019-01-03T11:10:01.000000000", + "2019-01-03T11:12:03.000000000", + "2019-01-03T11:12:05.000000000", + "2019-01-03T11:13:00.000000000", + "2019-01-03T11:14:19.000000000", + "2019-01-03T11:16:54.000000000", + "2019-01-03T11:18:16.000000000", + "2019-01-03T11:20:33.000000000", + "2019-01-03T11:22:37.000000000", + "2019-01-03T11:22:42.000000000", + "2019-01-03T11:23:53.000000000", + "2019-01-03T11:25:57.000000000", + "2019-01-03T11:26:17.000000000", + "2019-01-03T11:27:00.000000000", + "2019-01-03T11:27:35.000000000", + "2019-01-03T11:28:18.000000000", + "2019-01-03T11:28:45.000000000", + "2019-01-03T11:29:02.000000000", + "2019-01-03T11:29:22.000000000", + "2019-01-03T11:30:31.000000000", + "2019-01-03T11:32:12.000000000", + "2019-01-03T11:32:25.000000000", + "2019-01-03T11:33:04.000000000", + "2019-01-03T11:33:11.000000000", + "2019-01-03T11:34:35.000000000", + "2019-01-03T11:34:42.000000000", + "2019-01-03T11:36:37.000000000", + "2019-01-03T11:37:40.000000000", + "2019-01-03T11:40:08.000000000", + "2019-01-03T11:40:24.000000000", + "2019-01-03T11:40:42.000000000", + "2019-01-03T11:41:44.000000000", + "2019-01-03T11:42:03.000000000", + "2019-01-03T11:42:04.000000000", + "2019-01-03T11:42:50.000000000", + "2019-01-03T11:45:25.000000000", + "2019-01-03T11:46:02.000000000", + "2019-01-03T11:46:37.000000000", + "2019-01-03T11:48:22.000000000", + "2019-01-03T11:48:26.000000000", + "2019-01-03T11:51:18.000000000", + "2019-01-03T11:51:26.000000000", + "2019-01-03T11:52:02.000000000", + "2019-01-03T11:55:01.000000000", + "2019-01-03T11:55:16.000000000", + "2019-01-03T11:55:50.000000000", + "2019-01-03T11:56:20.000000000", + "2019-01-03T11:56:56.000000000", + "2019-01-03T11:57:13.000000000", + "2019-01-03T11:57:15.000000000", + "2019-01-03T11:57:22.000000000", + "2019-01-03T11:59:20.000000000", + "2019-01-03T11:59:22.000000000", + "2019-01-03T12:00:25.000000000", + "2019-01-03T12:00:44.000000000", + "2019-01-03T12:00:57.000000000", + "2019-01-03T12:02:08.000000000", + "2019-01-03T12:02:09.000000000", + "2019-01-03T12:02:34.000000000", + "2019-01-03T12:04:34.000000000", + "2019-01-03T12:06:47.000000000", + "2019-01-03T12:07:25.000000000", + "2019-01-03T12:07:42.000000000", + "2019-01-03T12:08:07.000000000", + "2019-01-03T12:08:53.000000000", + "2019-01-03T12:09:13.000000000", + "2019-01-03T12:09:23.000000000", + "2019-01-03T12:09:27.000000000", + "2019-01-03T12:09:57.000000000", + "2019-01-03T12:10:14.000000000", + "2019-01-03T12:10:27.000000000", + "2019-01-03T12:10:46.000000000", + "2019-01-03T12:11:16.000000000", + "2019-01-03T12:15:24.000000000", + "2019-01-03T12:15:43.000000000", + "2019-01-03T12:16:34.000000000", + "2019-01-03T12:16:52.000000000", + "2019-01-03T12:17:09.000000000", + "2019-01-03T12:18:43.000000000", + "2019-01-03T12:20:43.000000000", + "2019-01-03T12:20:57.000000000", + "2019-01-03T12:21:28.000000000", + "2019-01-03T12:21:39.000000000", + "2019-01-03T12:23:09.000000000", + "2019-01-03T12:23:56.000000000", + "2019-01-03T12:24:50.000000000", + "2019-01-03T12:25:17.000000000", + "2019-01-03T12:25:19.000000000", + "2019-01-03T12:25:51.000000000", + "2019-01-03T12:26:38.000000000", + "2019-01-03T12:26:44.000000000", + "2019-01-03T12:26:49.000000000", + "2019-01-03T12:26:50.000000000", + "2019-01-03T12:29:28.000000000", + "2019-01-03T12:29:42.000000000", + "2019-01-03T12:30:41.000000000", + "2019-01-03T12:31:22.000000000", + "2019-01-03T12:31:37.000000000", + "2019-01-03T12:32:18.000000000", + "2019-01-03T12:33:35.000000000", + "2019-01-03T12:34:04.000000000", + "2019-01-03T12:35:01.000000000", + "2019-01-03T12:35:45.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:40:35.000000000", + "2019-01-03T12:42:04.000000000", + "2019-01-03T12:42:07.000000000", + "2019-01-03T12:46:06.000000000", + "2019-01-03T12:46:43.000000000", + "2019-01-03T12:46:45.000000000", + "2019-01-03T12:50:17.000000000", + "2019-01-03T12:52:16.000000000", + "2019-01-03T12:52:37.000000000", + "2019-01-03T12:52:38.000000000", + "2019-01-03T12:52:45.000000000", + "2019-01-03T12:54:11.000000000", + "2019-01-03T12:54:41.000000000", + "2019-01-03T12:57:07.000000000", + "2019-01-03T13:00:02.000000000", + "2019-01-03T13:00:10.000000000", + "2019-01-03T13:00:13.000000000", + "2019-01-03T13:00:33.000000000", + "2019-01-03T13:02:02.000000000", + "2019-01-03T13:02:38.000000000", + "2019-01-03T13:02:51.000000000", + "2019-01-03T13:04:35.000000000", + "2019-01-03T13:06:29.000000000", + "2019-01-03T13:07:25.000000000", + "2019-01-03T13:08:55.000000000", + "2019-01-03T13:09:53.000000000", + "2019-01-03T13:11:50.000000000", + "2019-01-03T13:12:18.000000000", + "2019-01-03T13:12:24.000000000", + "2019-01-03T13:13:29.000000000", + "2019-01-03T13:14:08.000000000", + "2019-01-03T13:14:22.000000000", + "2019-01-03T13:15:04.000000000", + "2019-01-03T13:15:47.000000000", + "2019-01-03T13:15:52.000000000", + "2019-01-03T13:16:19.000000000", + "2019-01-03T13:20:10.000000000", + "2019-01-03T13:21:04.000000000", + "2019-01-03T13:21:11.000000000", + "2019-01-03T13:21:36.000000000", + "2019-01-03T13:22:51.000000000", + "2019-01-03T13:23:14.000000000", + "2019-01-03T13:23:35.000000000", + "2019-01-03T13:23:54.000000000", + "2019-01-03T13:24:54.000000000", + "2019-01-03T13:26:59.000000000", + "2019-01-03T13:27:34.000000000", + "2019-01-03T13:31:57.000000000", + "2019-01-03T13:32:03.000000000", + "2019-01-03T13:35:05.000000000", + "2019-01-03T13:36:32.000000000", + "2019-01-03T13:39:38.000000000", + "2019-01-03T13:40:05.000000000", + "2019-01-03T13:40:40.000000000", + "2019-01-03T13:41:47.000000000", + "2019-01-03T13:42:35.000000000", + "2019-01-03T13:42:54.000000000", + "2019-01-03T13:47:05.000000000", + "2019-01-03T13:47:09.000000000", + "2019-01-03T13:50:34.000000000", + "2019-01-03T13:50:36.000000000", + "2019-01-03T13:51:33.000000000", + "2019-01-03T13:52:21.000000000", + "2019-01-03T13:52:39.000000000", + "2019-01-03T13:54:14.000000000", + "2019-01-03T13:56:27.000000000", + "2019-01-03T13:59:46.000000000", + "2019-01-03T13:59:48.000000000", + "2019-01-03T14:04:36.000000000", + "2019-01-03T14:07:34.000000000", + "2019-01-03T14:08:20.000000000", + "2019-01-03T14:08:29.000000000", + "2019-01-03T14:08:45.000000000", + "2019-01-03T14:11:48.000000000", + "2019-01-03T14:11:58.000000000", + "2019-01-03T14:14:21.000000000", + "2019-01-03T14:15:05.000000000", + "2019-01-03T14:16:57.000000000", + "2019-01-03T14:17:27.000000000", + "2019-01-03T14:18:30.000000000", + "2019-01-03T14:19:44.000000000", + "2019-01-03T14:21:06.000000000", + "2019-01-03T14:21:12.000000000", + "2019-01-03T14:23:05.000000000", + "2019-01-03T14:23:40.000000000", + "2019-01-03T14:24:15.000000000", + "2019-01-03T14:26:30.000000000", + "2019-01-03T14:26:37.000000000", + "2019-01-03T14:27:14.000000000", + "2019-01-03T14:27:37.000000000", + "2019-01-03T14:28:03.000000000", + "2019-01-03T14:28:05.000000000", + "2019-01-03T14:28:07.000000000", + "2019-01-03T14:30:35.000000000", + "2019-01-03T14:31:41.000000000", + "2019-01-03T14:33:37.000000000", + "2019-01-03T14:33:38.000000000", + "2019-01-03T14:36:28.000000000", + "2019-01-03T14:36:38.000000000", + "2019-01-03T14:36:58.000000000", + "2019-01-03T14:37:57.000000000", + "2019-01-03T14:38:16.000000000", + "2019-01-03T14:38:38.000000000", + "2019-01-03T14:38:51.000000000", + "2019-01-03T14:39:06.000000000", + "2019-01-03T14:39:44.000000000", + "2019-01-03T14:42:29.000000000", + "2019-01-03T14:42:32.000000000", + "2019-01-03T14:42:59.000000000", + "2019-01-03T14:43:26.000000000", + "2019-01-03T14:43:44.000000000", + "2019-01-03T14:45:39.000000000", + "2019-01-03T14:46:22.000000000", + "2019-01-03T14:48:37.000000000", + "2019-01-03T14:49:55.000000000", + "2019-01-03T14:49:59.000000000", + "2019-01-03T14:51:41.000000000", + "2019-01-03T14:52:09.000000000", + "2019-01-03T14:53:36.000000000", + "2019-01-03T14:53:42.000000000", + "2019-01-03T14:55:28.000000000", + "2019-01-03T14:55:46.000000000", + "2019-01-03T14:55:50.000000000", + "2019-01-03T14:56:04.000000000", + "2019-01-03T14:56:45.000000000", + "2019-01-03T14:59:18.000000000", + "2019-01-03T15:02:51.000000000", + "2019-01-03T15:04:04.000000000", + "2019-01-03T15:05:23.000000000", + "2019-01-03T15:06:33.000000000", + "2019-01-03T15:08:22.000000000", + "2019-01-03T15:08:25.000000000", + "2019-01-03T15:09:06.000000000", + "2019-01-03T15:10:16.000000000", + "2019-01-03T15:11:59.000000000", + "2019-01-03T15:14:15.000000000", + "2019-01-03T15:15:20.000000000", + "2019-01-03T15:15:46.000000000", + "2019-01-03T15:15:50.000000000", + "2019-01-03T15:16:08.000000000", + "2019-01-03T15:16:18.000000000", + "2019-01-03T15:18:36.000000000", + "2019-01-03T15:19:21.000000000", + "2019-01-03T15:20:06.000000000", + "2019-01-03T15:20:16.000000000", + "2019-01-03T15:22:00.000000000", + "2019-01-03T15:22:36.000000000", + "2019-01-03T15:26:35.000000000", + "2019-01-03T15:29:04.000000000", + "2019-01-03T15:30:35.000000000", + "2019-01-03T15:31:54.000000000", + "2019-01-03T15:31:59.000000000", + "2019-01-03T15:36:04.000000000", + "2019-01-03T15:40:34.000000000", + "2019-01-03T15:41:02.000000000", + "2019-01-03T15:41:20.000000000", + "2019-01-03T15:44:19.000000000", + "2019-01-03T15:44:49.000000000", + "2019-01-03T15:45:20.000000000", + "2019-01-03T15:45:40.000000000", + "2019-01-03T15:46:49.000000000", + "2019-01-03T15:46:51.000000000", + "2019-01-03T15:47:13.000000000", + "2019-01-03T15:49:10.000000000", + "2019-01-03T15:50:05.000000000", + "2019-01-03T15:50:27.000000000", + "2019-01-03T15:51:35.000000000", + "2019-01-03T15:52:36.000000000", + "2019-01-03T15:54:57.000000000", + "2019-01-03T15:54:59.000000000", + "2019-01-03T15:56:05.000000000", + "2019-01-03T15:56:18.000000000", + "2019-01-03T15:57:04.000000000", + "2019-01-03T15:57:35.000000000", + "2019-01-03T15:57:58.000000000", + "2019-01-03T15:58:50.000000000", + "2019-01-03T16:01:15.000000000", + "2019-01-03T16:01:28.000000000", + "2019-01-03T16:02:41.000000000", + "2019-01-03T16:04:54.000000000", + "2019-01-03T16:06:28.000000000", + "2019-01-03T16:06:34.000000000", + "2019-01-03T16:07:27.000000000", + "2019-01-03T16:07:39.000000000", + "2019-01-03T16:07:40.000000000", + "2019-01-03T16:09:04.000000000", + "2019-01-03T16:10:10.000000000", + "2019-01-03T16:10:29.000000000", + "2019-01-03T16:10:46.000000000", + "2019-01-03T16:11:12.000000000", + "2019-01-03T16:11:22.000000000", + "2019-01-03T16:11:32.000000000", + "2019-01-03T16:13:09.000000000", + "2019-01-03T16:15:45.000000000", + "2019-01-03T16:16:08.000000000", + "2019-01-03T16:16:20.000000000", + "2019-01-03T16:16:36.000000000", + "2019-01-03T16:16:39.000000000", + "2019-01-03T16:16:56.000000000", + "2019-01-03T16:17:22.000000000", + "2019-01-03T16:18:11.000000000", + "2019-01-03T16:18:45.000000000", + "2019-01-03T16:18:50.000000000", + "2019-01-03T16:18:59.000000000", + "2019-01-03T16:19:05.000000000", + "2019-01-03T16:20:22.000000000", + "2019-01-03T16:20:45.000000000", + "2019-01-03T16:21:38.000000000", + "2019-01-03T16:23:28.000000000", + "2019-01-03T16:24:15.000000000", + "2019-01-03T16:24:49.000000000", + "2019-01-03T16:25:44.000000000", + "2019-01-03T16:25:52.000000000", + "2019-01-03T16:26:49.000000000", + "2019-01-03T16:32:47.000000000", + "2019-01-03T16:33:24.000000000", + "2019-01-03T16:33:57.000000000", + "2019-01-03T16:35:26.000000000", + "2019-01-03T16:38:45.000000000", + "2019-01-03T16:40:04.000000000", + "2019-01-03T16:41:39.000000000", + "2019-01-03T16:43:17.000000000", + "2019-01-03T16:44:29.000000000", + "2019-01-03T16:44:36.000000000", + "2019-01-03T16:44:43.000000000", + "2019-01-03T16:46:39.000000000", + "2019-01-03T16:47:01.000000000", + "2019-01-03T16:47:21.000000000", + "2019-01-03T16:47:39.000000000", + "2019-01-03T16:50:10.000000000", + "2019-01-03T16:50:15.000000000", + "2019-01-03T16:50:40.000000000", + "2019-01-03T16:51:48.000000000", + "2019-01-03T16:52:56.000000000", + "2019-01-03T16:55:12.000000000", + "2019-01-03T16:55:13.000000000", + "2019-01-03T16:55:35.000000000", + "2019-01-03T16:57:08.000000000", + "2019-01-03T17:03:07.000000000", + "2019-01-03T17:03:28.000000000", + "2019-01-03T17:03:38.000000000", + "2019-01-03T17:03:51.000000000", + "2019-01-03T17:05:08.000000000", + "2019-01-03T17:05:34.000000000", + "2019-01-03T17:06:26.000000000", + "2019-01-03T17:06:46.000000000", + "2019-01-03T17:07:15.000000000", + "2019-01-03T17:08:32.000000000", + "2019-01-03T17:09:07.000000000", + "2019-01-03T17:13:16.000000000", + "2019-01-03T17:13:47.000000000", + "2019-01-03T17:16:26.000000000", + "2019-01-03T17:16:37.000000000", + "2019-01-03T17:16:42.000000000", + "2019-01-03T17:17:07.000000000", + "2019-01-03T17:17:28.000000000", + "2019-01-03T17:21:43.000000000", + "2019-01-03T17:22:23.000000000", + "2019-01-03T17:23:27.000000000", + "2019-01-03T17:23:31.000000000", + "2019-01-03T17:24:30.000000000", + "2019-01-03T17:24:55.000000000", + "2019-01-03T17:26:48.000000000", + "2019-01-03T17:27:28.000000000", + "2019-01-03T17:28:14.000000000", + "2019-01-03T17:29:29.000000000", + "2019-01-03T17:29:58.000000000", + "2019-01-03T17:30:05.000000000", + "2019-01-03T17:30:23.000000000", + "2019-01-03T17:31:23.000000000", + "2019-01-03T17:32:17.000000000", + "2019-01-03T17:33:02.000000000", + "2019-01-03T17:33:54.000000000", + "2019-01-03T17:34:00.000000000", + "2019-01-03T17:34:37.000000000", + "2019-01-03T17:39:19.000000000", + "2019-01-03T17:39:25.000000000", + "2019-01-03T17:40:07.000000000", + "2019-01-03T17:40:30.000000000", + "2019-01-03T17:40:48.000000000", + "2019-01-03T17:42:01.000000000", + "2019-01-03T17:42:52.000000000", + "2019-01-03T17:44:19.000000000", + "2019-01-03T17:44:40.000000000", + "2019-01-03T17:47:01.000000000", + "2019-01-03T17:47:08.000000000", + "2019-01-03T17:47:25.000000000", + "2019-01-03T17:48:03.000000000", + "2019-01-03T17:48:18.000000000", + "2019-01-03T17:49:13.000000000", + "2019-01-03T17:50:32.000000000", + "2019-01-03T17:52:36.000000000", + "2019-01-03T17:53:05.000000000", + "2019-01-03T17:53:44.000000000", + "2019-01-03T17:53:48.000000000", + "2019-01-03T17:54:12.000000000", + "2019-01-03T17:54:32.000000000", + "2019-01-03T17:55:35.000000000", + "2019-01-03T17:56:37.000000000", + "2019-01-03T17:58:11.000000000", + "2019-01-03T17:58:35.000000000", + "2019-01-03T17:59:16.000000000", + "2019-01-03T17:59:29.000000000", + "2019-01-03T18:02:39.000000000", + "2019-01-03T18:05:34.000000000", + "2019-01-03T18:06:13.000000000", + "2019-01-03T18:08:09.000000000", + "2019-01-03T18:08:27.000000000", + "2019-01-03T18:09:08.000000000", + "2019-01-03T18:10:45.000000000", + "2019-01-03T18:12:20.000000000", + "2019-01-03T18:12:22.000000000", + "2019-01-03T18:14:40.000000000", + "2019-01-03T18:15:22.000000000", + "2019-01-03T18:15:25.000000000", + "2019-01-03T18:17:29.000000000", + "2019-01-03T18:18:08.000000000", + "2019-01-03T18:19:03.000000000", + "2019-01-03T18:19:21.000000000", + "2019-01-03T18:21:51.000000000", + "2019-01-03T18:21:56.000000000", + "2019-01-03T18:23:16.000000000", + "2019-01-03T18:23:36.000000000", + "2019-01-03T18:23:58.000000000", + "2019-01-03T18:24:08.000000000", + "2019-01-03T18:24:35.000000000", + "2019-01-03T18:24:57.000000000", + "2019-01-03T18:26:14.000000000", + "2019-01-03T18:27:48.000000000", + "2019-01-03T18:28:09.000000000", + "2019-01-03T18:28:13.000000000", + "2019-01-03T18:29:01.000000000", + "2019-01-03T18:29:23.000000000", + "2019-01-03T18:29:45.000000000", + "2019-01-03T18:33:41.000000000", + "2019-01-03T18:35:34.000000000", + "2019-01-03T18:36:59.000000000", + "2019-01-03T18:37:51.000000000", + "2019-01-03T18:38:00.000000000", + "2019-01-03T18:38:36.000000000", + "2019-01-03T18:39:53.000000000", + "2019-01-03T18:40:45.000000000", + "2019-01-03T18:41:08.000000000", + "2019-01-03T18:41:28.000000000", + "2019-01-03T18:45:04.000000000", + "2019-01-03T18:45:17.000000000", + "2019-01-03T18:45:23.000000000", + "2019-01-03T18:46:43.000000000", + "2019-01-03T18:47:03.000000000", + "2019-01-03T18:47:06.000000000", + "2019-01-03T18:49:00.000000000", + "2019-01-03T18:49:30.000000000", + "2019-01-03T18:51:14.000000000", + "2019-01-03T18:51:51.000000000", + "2019-01-03T18:52:19.000000000", + "2019-01-03T18:54:02.000000000", + "2019-01-03T18:54:42.000000000", + "2019-01-03T18:56:26.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:48.000000000", + "2019-01-03T18:56:50.000000000", + "2019-01-03T18:58:05.000000000", + "2019-01-03T18:59:52.000000000", + "2019-01-03T19:03:10.000000000", + "2019-01-03T19:05:42.000000000", + "2019-01-03T19:05:46.000000000", + "2019-01-03T19:06:18.000000000", + "2019-01-03T19:06:56.000000000", + "2019-01-03T19:07:06.000000000", + "2019-01-03T19:08:01.000000000", + "2019-01-03T19:08:09.000000000", + "2019-01-03T19:10:34.000000000", + "2019-01-03T19:11:34.000000000", + "2019-01-03T19:13:52.000000000", + "2019-01-03T19:14:30.000000000", + "2019-01-03T19:15:10.000000000", + "2019-01-03T19:17:19.000000000", + "2019-01-03T19:18:35.000000000", + "2019-01-03T19:18:36.000000000", + "2019-01-03T19:20:15.000000000", + "2019-01-03T19:21:17.000000000", + "2019-01-03T19:22:43.000000000", + "2019-01-03T19:23:05.000000000", + "2019-01-03T19:23:10.000000000", + "2019-01-03T19:27:17.000000000", + "2019-01-03T19:27:27.000000000", + "2019-01-03T19:30:30.000000000", + "2019-01-03T19:30:58.000000000", + "2019-01-03T19:31:22.000000000", + "2019-01-03T19:31:46.000000000", + "2019-01-03T19:32:41.000000000", + "2019-01-03T19:34:06.000000000", + "2019-01-03T19:34:21.000000000", + "2019-01-03T19:36:15.000000000", + "2019-01-03T19:36:33.000000000", + "2019-01-03T19:37:33.000000000", + "2019-01-03T19:38:12.000000000", + "2019-01-03T19:40:09.000000000", + "2019-01-03T19:41:56.000000000", + "2019-01-03T19:45:20.000000000", + "2019-01-03T19:47:31.000000000", + "2019-01-03T19:48:12.000000000", + "2019-01-03T19:49:20.000000000", + "2019-01-03T19:50:30.000000000", + "2019-01-03T19:52:33.000000000", + "2019-01-03T19:52:50.000000000", + "2019-01-03T19:53:36.000000000", + "2019-01-03T19:55:48.000000000", + "2019-01-03T19:55:50.000000000", + "2019-01-03T19:57:13.000000000", + "2019-01-03T19:58:14.000000000", + "2019-01-03T19:59:19.000000000", + "2019-01-03T20:02:04.000000000", + "2019-01-03T20:02:42.000000000", + "2019-01-03T20:03:24.000000000", + "2019-01-03T20:06:45.000000000", + "2019-01-03T20:08:06.000000000", + "2019-01-03T20:08:14.000000000", + "2019-01-03T20:08:29.000000000", + "2019-01-03T20:08:35.000000000", + "2019-01-03T20:09:49.000000000", + "2019-01-03T20:10:07.000000000", + "2019-01-03T20:12:48.000000000", + "2019-01-03T20:16:26.000000000", + "2019-01-03T20:18:11.000000000", + "2019-01-03T20:19:18.000000000", + "2019-01-03T20:19:19.000000000", + "2019-01-03T20:20:01.000000000", + "2019-01-03T20:20:07.000000000", + "2019-01-03T20:20:25.000000000", + "2019-01-03T20:20:58.000000000", + "2019-01-03T20:21:26.000000000", + "2019-01-03T20:22:43.000000000", + "2019-01-03T20:23:21.000000000", + "2019-01-03T20:23:53.000000000", + "2019-01-03T20:24:11.000000000", + "2019-01-03T20:24:48.000000000", + "2019-01-03T20:25:22.000000000", + "2019-01-03T20:25:30.000000000", + "2019-01-03T20:25:58.000000000", + "2019-01-03T20:26:52.000000000", + "2019-01-03T20:26:56.000000000", + "2019-01-03T20:27:35.000000000", + "2019-01-03T20:27:41.000000000", + "2019-01-03T20:30:37.000000000", + "2019-01-03T20:32:08.000000000", + "2019-01-03T20:34:28.000000000", + "2019-01-03T20:34:50.000000000", + "2019-01-03T20:35:41.000000000", + "2019-01-03T20:38:15.000000000", + "2019-01-03T20:40:04.000000000", + "2019-01-03T20:40:55.000000000", + "2019-01-03T20:41:53.000000000", + "2019-01-03T20:42:33.000000000", + "2019-01-03T20:43:47.000000000", + "2019-01-03T20:43:50.000000000", + "2019-01-03T20:43:57.000000000", + "2019-01-03T20:45:56.000000000", + "2019-01-03T20:46:08.000000000", + "2019-01-03T20:48:22.000000000", + "2019-01-03T20:51:04.000000000", + "2019-01-03T20:53:30.000000000", + "2019-01-03T20:53:31.000000000", + "2019-01-03T20:55:25.000000000", + "2019-01-03T20:56:13.000000000", + "2019-01-03T20:57:00.000000000", + "2019-01-03T20:57:31.000000000", + "2019-01-03T20:58:46.000000000", + "2019-01-03T20:59:04.000000000", + "2019-01-03T20:59:30.000000000", + "2019-01-03T20:59:58.000000000", + "2019-01-03T21:00:08.000000000", + "2019-01-03T21:01:14.000000000", + "2019-01-03T21:01:52.000000000", + "2019-01-03T21:01:59.000000000", + "2019-01-03T21:02:22.000000000", + "2019-01-03T21:03:01.000000000", + "2019-01-03T21:03:17.000000000", + "2019-01-03T21:03:35.000000000", + "2019-01-03T21:04:24.000000000", + "2019-01-03T21:05:16.000000000", + "2019-01-03T21:05:20.000000000", + "2019-01-03T21:08:09.000000000", + "2019-01-03T21:08:23.000000000", + "2019-01-03T21:08:51.000000000", + "2019-01-03T21:09:53.000000000", + "2019-01-03T21:10:20.000000000", + "2019-01-03T21:10:39.000000000", + "2019-01-03T21:11:04.000000000", + "2019-01-03T21:12:26.000000000", + "2019-01-03T21:13:33.000000000", + "2019-01-03T21:14:26.000000000", + "2019-01-03T21:16:02.000000000", + "2019-01-03T21:16:35.000000000", + "2019-01-03T21:18:03.000000000", + "2019-01-03T21:20:44.000000000", + "2019-01-03T21:21:40.000000000", + "2019-01-03T21:22:13.000000000", + "2019-01-03T21:22:21.000000000", + "2019-01-03T21:22:47.000000000", + "2019-01-03T21:22:52.000000000", + "2019-01-03T21:23:11.000000000", + "2019-01-03T21:23:31.000000000", + "2019-01-03T21:23:46.000000000", + "2019-01-03T21:23:58.000000000", + "2019-01-03T21:25:09.000000000", + "2019-01-03T21:26:01.000000000", + "2019-01-03T21:26:49.000000000", + "2019-01-03T21:27:13.000000000", + "2019-01-03T21:30:51.000000000", + "2019-01-03T21:31:27.000000000", + "2019-01-03T21:32:08.000000000", + "2019-01-03T21:32:41.000000000", + "2019-01-03T21:32:49.000000000", + "2019-01-03T21:34:30.000000000", + "2019-01-03T21:35:46.000000000", + "2019-01-03T21:36:08.000000000", + "2019-01-03T21:36:20.000000000", + "2019-01-03T21:38:48.000000000", + "2019-01-03T21:39:31.000000000", + "2019-01-03T21:39:44.000000000", + "2019-01-03T21:44:00.000000000", + "2019-01-03T21:44:06.000000000", + "2019-01-03T21:44:34.000000000", + "2019-01-03T21:45:44.000000000", + "2019-01-03T21:45:52.000000000", + "2019-01-03T21:47:06.000000000", + "2019-01-03T21:47:41.000000000", + "2019-01-03T21:48:54.000000000", + "2019-01-03T21:49:48.000000000", + "2019-01-03T21:51:46.000000000", + "2019-01-03T21:51:56.000000000", + "2019-01-03T21:53:20.000000000", + "2019-01-03T21:53:39.000000000", + "2019-01-03T21:55:39.000000000", + "2019-01-03T21:55:52.000000000", + "2019-01-03T21:56:22.000000000", + "2019-01-03T21:56:31.000000000", + "2019-01-03T21:57:43.000000000", + "2019-01-03T21:59:21.000000000", + "2019-01-03T22:00:20.000000000", + "2019-01-03T22:00:29.000000000", + "2019-01-03T22:00:47.000000000", + "2019-01-03T22:01:02.000000000", + "2019-01-03T22:01:05.000000000", + "2019-01-03T22:01:17.000000000", + "2019-01-03T22:02:47.000000000", + "2019-01-03T22:04:58.000000000", + "2019-01-03T22:05:02.000000000", + "2019-01-03T22:07:00.000000000", + "2019-01-03T22:07:07.000000000", + "2019-01-03T22:07:19.000000000", + "2019-01-03T22:08:42.000000000", + "2019-01-03T22:09:17.000000000", + "2019-01-03T22:09:54.000000000", + "2019-01-03T22:10:38.000000000", + "2019-01-03T22:11:39.000000000", + "2019-01-03T22:12:15.000000000", + "2019-01-03T22:12:20.000000000", + "2019-01-03T22:13:07.000000000", + "2019-01-03T22:14:06.000000000", + "2019-01-03T22:15:33.000000000", + "2019-01-03T22:16:25.000000000", + "2019-01-03T22:16:47.000000000", + "2019-01-03T22:17:38.000000000", + "2019-01-03T22:18:10.000000000", + "2019-01-03T22:18:35.000000000", + "2019-01-03T22:20:08.000000000", + "2019-01-03T22:23:05.000000000", + "2019-01-03T22:24:38.000000000", + "2019-01-03T22:25:25.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:28:55.000000000", + "2019-01-03T22:29:08.000000000", + "2019-01-03T22:30:53.000000000", + "2019-01-03T22:31:13.000000000", + "2019-01-03T22:32:33.000000000", + "2019-01-03T22:34:19.000000000", + "2019-01-03T22:37:51.000000000", + "2019-01-03T22:37:59.000000000", + "2019-01-03T22:38:19.000000000", + "2019-01-03T22:39:13.000000000", + "2019-01-03T22:41:38.000000000", + "2019-01-03T22:41:49.000000000", + "2019-01-03T22:41:57.000000000", + "2019-01-03T22:43:52.000000000", + "2019-01-03T22:45:05.000000000", + "2019-01-03T22:45:50.000000000", + "2019-01-03T22:47:44.000000000", + "2019-01-03T22:48:14.000000000", + "2019-01-03T22:51:22.000000000", + "2019-01-03T22:52:20.000000000", + "2019-01-03T22:53:44.000000000", + "2019-01-03T22:55:59.000000000", + "2019-01-03T22:56:00.000000000", + "2019-01-03T22:56:20.000000000", + "2019-01-03T22:59:22.000000000", + "2019-01-03T22:59:47.000000000", + "2019-01-03T22:59:56.000000000", + "2019-01-03T23:01:51.000000000", + "2019-01-03T23:01:53.000000000", + "2019-01-03T23:04:23.000000000", + "2019-01-03T23:04:50.000000000", + "2019-01-03T23:05:49.000000000", + "2019-01-03T23:06:30.000000000", + "2019-01-03T23:07:14.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:46.000000000", + "2019-01-03T23:13:52.000000000", + "2019-01-03T23:13:54.000000000", + "2019-01-03T23:14:27.000000000", + "2019-01-03T23:14:42.000000000", + "2019-01-03T23:16:21.000000000", + "2019-01-03T23:17:32.000000000", + "2019-01-03T23:17:45.000000000", + "2019-01-03T23:18:21.000000000", + "2019-01-03T23:18:39.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:20:20.000000000", + "2019-01-03T23:21:04.000000000", + "2019-01-03T23:21:13.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:27:27.000000000", + "2019-01-03T23:27:34.000000000", + "2019-01-03T23:29:13.000000000", + "2019-01-03T23:31:04.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:34:06.000000000", + "2019-01-03T23:36:51.000000000", + "2019-01-03T23:37:04.000000000", + "2019-01-03T23:38:08.000000000", + "2019-01-03T23:38:30.000000000", + "2019-01-03T23:39:07.000000000", + "2019-01-03T23:39:20.000000000", + "2019-01-03T23:39:52.000000000", + "2019-01-03T23:39:56.000000000", + "2019-01-03T23:40:06.000000000", + "2019-01-03T23:41:21.000000000", + "2019-01-03T23:42:06.000000000", + "2019-01-03T23:42:14.000000000", + "2019-01-03T23:42:50.000000000", + "2019-01-03T23:45:20.000000000", + "2019-01-03T23:47:05.000000000", + "2019-01-03T23:47:25.000000000", + "2019-01-03T23:49:12.000000000", + "2019-01-03T23:49:34.000000000", + "2019-01-03T23:50:36.000000000", + "2019-01-03T23:51:23.000000000", + "2019-01-03T23:51:40.000000000", + "2019-01-03T23:53:04.000000000", + "2019-01-03T23:54:32.000000000", + "2019-01-03T23:55:44.000000000", + "2019-01-03T23:56:54.000000000", + "2019-01-03T23:57:48.000000000", + "2019-01-04T00:01:34.000000000", + "2019-01-04T00:02:19.000000000", + "2019-01-04T00:04:39.000000000", + "2019-01-04T00:05:46.000000000", + "2019-01-04T00:06:39.000000000", + "2019-01-04T00:07:34.000000000", + "2019-01-04T00:08:56.000000000", + "2019-01-04T00:09:47.000000000", + "2019-01-04T00:11:19.000000000", + "2019-01-04T00:11:41.000000000", + "2019-01-04T00:12:07.000000000", + "2019-01-04T00:14:01.000000000", + "2019-01-04T00:14:18.000000000", + "2019-01-04T00:15:31.000000000", + "2019-01-04T00:16:19.000000000", + "2019-01-04T00:16:44.000000000", + "2019-01-04T00:17:21.000000000", + "2019-01-04T00:18:10.000000000", + "2019-01-04T00:18:43.000000000", + "2019-01-04T00:19:00.000000000", + "2019-01-04T00:19:12.000000000", + "2019-01-04T00:19:41.000000000", + "2019-01-04T00:21:32.000000000", + "2019-01-04T00:23:17.000000000", + "2019-01-04T00:31:25.000000000", + "2019-01-04T00:33:20.000000000", + "2019-01-04T00:33:37.000000000", + "2019-01-04T00:35:39.000000000", + "2019-01-04T00:35:45.000000000", + "2019-01-04T00:37:14.000000000", + "2019-01-04T00:39:14.000000000", + "2019-01-04T00:39:29.000000000", + "2019-01-04T00:40:11.000000000", + "2019-01-04T00:40:57.000000000", + "2019-01-04T00:41:04.000000000", + "2019-01-04T00:42:49.000000000", + "2019-01-04T00:43:13.000000000", + "2019-01-04T00:43:37.000000000", + "2019-01-04T00:44:21.000000000", + "2019-01-04T00:44:42.000000000", + "2019-01-04T00:45:25.000000000", + "2019-01-04T00:45:54.000000000", + "2019-01-04T00:46:05.000000000", + "2019-01-04T00:47:01.000000000", + "2019-01-04T00:47:04.000000000", + "2019-01-04T00:47:44.000000000", + "2019-01-04T00:48:32.000000000", + "2019-01-04T00:48:55.000000000", + "2019-01-04T00:49:13.000000000", + "2019-01-04T00:49:56.000000000", + "2019-01-04T00:51:10.000000000", + "2019-01-04T00:51:50.000000000", + "2019-01-04T00:54:59.000000000", + "2019-01-04T00:55:23.000000000", + "2019-01-04T00:56:27.000000000", + "2019-01-04T00:56:42.000000000", + "2019-01-04T00:56:59.000000000", + "2019-01-04T00:57:41.000000000", + "2019-01-04T00:57:53.000000000", + "2019-01-04T00:58:24.000000000", + "2019-01-04T00:58:47.000000000", + "2019-01-04T01:00:23.000000000", + "2019-01-04T01:00:34.000000000", + "2019-01-04T01:03:09.000000000", + "2019-01-04T01:03:28.000000000", + "2019-01-04T01:04:34.000000000", + "2019-01-04T01:04:56.000000000", + "2019-01-04T01:05:15.000000000", + "2019-01-04T01:05:46.000000000", + "2019-01-04T01:05:59.000000000", + "2019-01-04T01:06:02.000000000", + "2019-01-04T01:06:20.000000000", + "2019-01-04T01:07:26.000000000", + "2019-01-04T01:09:04.000000000", + "2019-01-04T01:09:38.000000000", + "2019-01-04T01:11:08.000000000", + "2019-01-04T01:11:54.000000000", + "2019-01-04T01:14:01.000000000", + "2019-01-04T01:15:55.000000000", + "2019-01-04T01:16:51.000000000", + "2019-01-04T01:17:12.000000000", + "2019-01-04T01:17:36.000000000", + "2019-01-04T01:18:06.000000000", + "2019-01-04T01:18:43.000000000", + "2019-01-04T01:21:27.000000000", + "2019-01-04T01:21:35.000000000", + "2019-01-04T01:21:49.000000000", + "2019-01-04T01:24:44.000000000", + "2019-01-04T01:25:22.000000000", + "2019-01-04T01:25:33.000000000", + "2019-01-04T01:26:42.000000000", + "2019-01-04T01:27:42.000000000", + "2019-01-04T01:28:29.000000000", + "2019-01-04T01:28:50.000000000", + "2019-01-04T01:29:58.000000000", + "2019-01-04T01:30:46.000000000", + "2019-01-04T01:30:48.000000000", + "2019-01-04T01:30:57.000000000", + "2019-01-04T01:31:19.000000000", + "2019-01-04T01:31:31.000000000", + "2019-01-04T01:31:56.000000000", + "2019-01-04T01:33:33.000000000", + "2019-01-04T01:33:59.000000000", + "2019-01-04T01:34:32.000000000", + "2019-01-04T01:36:02.000000000", + "2019-01-04T01:36:38.000000000", + "2019-01-04T01:37:47.000000000", + "2019-01-04T01:39:26.000000000", + "2019-01-04T01:40:00.000000000", + "2019-01-04T01:40:57.000000000", + "2019-01-04T01:41:07.000000000", + "2019-01-04T01:42:41.000000000", + "2019-01-04T01:43:29.000000000", + "2019-01-04T01:44:39.000000000", + "2019-01-04T01:46:10.000000000", + "2019-01-04T01:46:42.000000000", + "2019-01-04T01:47:02.000000000", + "2019-01-04T01:47:52.000000000", + "2019-01-04T01:48:12.000000000", + "2019-01-04T01:48:47.000000000", + "2019-01-04T01:49:50.000000000", + "2019-01-04T01:49:55.000000000", + "2019-01-04T01:50:27.000000000", + "2019-01-04T01:52:12.000000000", + "2019-01-04T01:53:34.000000000", + "2019-01-04T01:55:03.000000000", + "2019-01-04T01:55:50.000000000", + "2019-01-04T01:56:37.000000000", + "2019-01-04T01:57:09.000000000", + "2019-01-04T01:57:52.000000000", + "2019-01-04T01:57:56.000000000", + "2019-01-04T01:59:05.000000000", + "2019-01-04T02:00:00.000000000", + "2019-01-04T02:01:05.000000000", + "2019-01-04T02:01:17.000000000", + "2019-01-04T02:03:14.000000000", + "2019-01-04T02:03:20.000000000", + "2019-01-04T02:04:56.000000000", + "2019-01-04T02:05:53.000000000", + "2019-01-04T02:06:45.000000000", + "2019-01-04T02:06:46.000000000", + "2019-01-04T02:08:13.000000000", + "2019-01-04T02:10:11.000000000", + "2019-01-04T02:11:01.000000000", + "2019-01-04T02:12:03.000000000", + "2019-01-04T02:12:10.000000000", + "2019-01-04T02:13:43.000000000", + "2019-01-04T02:16:56.000000000", + "2019-01-04T02:18:34.000000000", + "2019-01-04T02:18:55.000000000", + "2019-01-04T02:19:23.000000000", + "2019-01-04T02:22:02.000000000", + "2019-01-04T02:25:49.000000000", + "2019-01-04T02:27:39.000000000", + "2019-01-04T02:27:56.000000000", + "2019-01-04T02:29:49.000000000", + "2019-01-04T02:30:00.000000000", + "2019-01-04T02:30:46.000000000", + "2019-01-04T02:30:50.000000000", + "2019-01-04T02:32:01.000000000", + "2019-01-04T02:32:22.000000000", + "2019-01-04T02:33:40.000000000", + "2019-01-04T02:34:20.000000000", + "2019-01-04T02:34:38.000000000", + "2019-01-04T02:35:24.000000000", + "2019-01-04T02:36:50.000000000", + "2019-01-04T02:37:12.000000000", + "2019-01-04T02:38:47.000000000", + "2019-01-04T02:41:49.000000000", + "2019-01-04T02:42:44.000000000", + "2019-01-04T02:45:40.000000000", + "2019-01-04T02:46:53.000000000", + "2019-01-04T02:47:19.000000000", + "2019-01-04T02:48:42.000000000", + "2019-01-04T02:48:43.000000000", + "2019-01-04T02:49:24.000000000", + "2019-01-04T02:50:13.000000000", + "2019-01-04T02:51:47.000000000", + "2019-01-04T02:53:08.000000000", + "2019-01-04T02:53:45.000000000", + "2019-01-04T02:54:07.000000000", + "2019-01-04T02:54:10.000000000", + "2019-01-04T02:55:32.000000000", + "2019-01-04T02:55:58.000000000", + "2019-01-04T02:56:20.000000000", + "2019-01-04T02:56:56.000000000", + "2019-01-04T02:58:56.000000000", + "2019-01-04T02:59:52.000000000", + "2019-01-04T03:00:26.000000000", + "2019-01-04T03:00:52.000000000", + "2019-01-04T03:01:30.000000000", + "2019-01-04T03:01:55.000000000", + "2019-01-04T03:02:14.000000000", + "2019-01-04T03:02:45.000000000", + "2019-01-04T03:02:55.000000000", + "2019-01-04T03:04:12.000000000", + "2019-01-04T03:04:51.000000000", + "2019-01-04T03:05:50.000000000", + "2019-01-04T03:06:07.000000000", + "2019-01-04T03:06:36.000000000", + "2019-01-04T03:08:00.000000000", + "2019-01-04T03:08:20.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:10:01.000000000", + "2019-01-04T03:10:10.000000000", + "2019-01-04T03:10:54.000000000", + "2019-01-04T03:11:09.000000000", + "2019-01-04T03:13:06.000000000", + "2019-01-04T03:15:17.000000000", + "2019-01-04T03:15:39.000000000", + "2019-01-04T03:16:31.000000000", + "2019-01-04T03:18:20.000000000", + "2019-01-04T03:18:32.000000000", + "2019-01-04T03:18:42.000000000", + "2019-01-04T03:19:24.000000000", + "2019-01-04T03:19:45.000000000", + "2019-01-04T03:20:39.000000000", + "2019-01-04T03:21:34.000000000", + "2019-01-04T03:22:29.000000000", + "2019-01-04T03:22:45.000000000", + "2019-01-04T03:23:27.000000000", + "2019-01-04T03:24:08.000000000", + "2019-01-04T03:24:44.000000000", + "2019-01-04T03:26:21.000000000", + "2019-01-04T03:26:33.000000000", + "2019-01-04T03:27:47.000000000", + "2019-01-04T03:28:31.000000000", + "2019-01-04T03:29:14.000000000", + "2019-01-04T03:29:27.000000000", + "2019-01-04T03:30:17.000000000", + "2019-01-04T03:31:19.000000000", + "2019-01-04T03:32:27.000000000", + "2019-01-04T03:32:35.000000000", + "2019-01-04T03:34:51.000000000", + "2019-01-04T03:36:42.000000000", + "2019-01-04T03:38:24.000000000", + "2019-01-04T03:40:46.000000000", + "2019-01-04T03:40:58.000000000", + "2019-01-04T03:41:27.000000000", + "2019-01-04T03:43:25.000000000", + "2019-01-04T03:44:04.000000000", + "2019-01-04T03:44:09.000000000", + "2019-01-04T03:44:45.000000000", + "2019-01-04T03:47:26.000000000", + "2019-01-04T03:48:14.000000000", + "2019-01-04T03:48:22.000000000", + "2019-01-04T03:48:27.000000000", + "2019-01-04T03:50:08.000000000", + "2019-01-04T03:53:04.000000000", + "2019-01-04T03:54:16.000000000", + "2019-01-04T03:54:34.000000000", + "2019-01-04T03:55:24.000000000", + "2019-01-04T03:55:30.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:59:50.000000000", + "2019-01-04T04:02:19.000000000", + "2019-01-04T04:05:25.000000000", + "2019-01-04T04:07:29.000000000", + "2019-01-04T04:07:30.000000000", + "2019-01-04T04:08:27.000000000", + "2019-01-04T04:09:44.000000000", + "2019-01-04T04:10:50.000000000", + "2019-01-04T04:11:34.000000000", + "2019-01-04T04:13:56.000000000", + "2019-01-04T04:15:56.000000000", + "2019-01-04T04:16:30.000000000", + "2019-01-04T04:16:35.000000000", + "2019-01-04T04:19:27.000000000", + "2019-01-04T04:19:49.000000000", + "2019-01-04T04:22:56.000000000", + "2019-01-04T04:23:07.000000000", + "2019-01-04T04:23:08.000000000", + "2019-01-04T04:24:10.000000000", + "2019-01-04T04:24:53.000000000", + "2019-01-04T04:25:09.000000000", + "2019-01-04T04:25:53.000000000", + "2019-01-04T04:26:42.000000000", + "2019-01-04T04:26:58.000000000", + "2019-01-04T04:27:28.000000000", + "2019-01-04T04:28:38.000000000", + "2019-01-04T04:29:41.000000000", + "2019-01-04T04:30:22.000000000", + "2019-01-04T04:30:31.000000000", + "2019-01-04T04:32:42.000000000", + "2019-01-04T04:36:55.000000000", + "2019-01-04T04:37:05.000000000", + "2019-01-04T04:38:13.000000000", + "2019-01-04T04:44:41.000000000", + "2019-01-04T04:44:51.000000000", + "2019-01-04T04:45:46.000000000", + "2019-01-04T04:46:03.000000000", + "2019-01-04T04:46:23.000000000", + "2019-01-04T04:47:19.000000000", + "2019-01-04T04:47:54.000000000", + "2019-01-04T04:48:48.000000000", + "2019-01-04T04:48:56.000000000", + "2019-01-04T04:49:24.000000000", + "2019-01-04T04:50:14.000000000", + "2019-01-04T04:50:27.000000000", + "2019-01-04T04:51:09.000000000", + "2019-01-04T04:51:11.000000000", + "2019-01-04T04:51:49.000000000", + "2019-01-04T04:53:45.000000000", + "2019-01-04T04:55:10.000000000", + "2019-01-04T04:55:11.000000000", + "2019-01-04T04:55:12.000000000", + "2019-01-04T04:56:16.000000000", + "2019-01-04T04:58:43.000000000", + "2019-01-04T04:58:54.000000000", + "2019-01-04T05:01:30.000000000", + "2019-01-04T05:03:03.000000000", + "2019-01-04T05:03:11.000000000", + "2019-01-04T05:03:35.000000000", + "2019-01-04T05:05:00.000000000", + "2019-01-04T05:06:28.000000000", + "2019-01-04T05:09:44.000000000", + "2019-01-04T05:09:49.000000000", + "2019-01-04T05:10:04.000000000", + "2019-01-04T05:10:08.000000000", + "2019-01-04T05:12:11.000000000", + "2019-01-04T05:12:57.000000000", + "2019-01-04T05:13:15.000000000", + "2019-01-04T05:13:24.000000000", + "2019-01-04T05:15:56.000000000", + "2019-01-04T05:17:05.000000000", + "2019-01-04T05:17:33.000000000", + "2019-01-04T05:17:42.000000000", + "2019-01-04T05:18:00.000000000", + "2019-01-04T05:18:26.000000000", + "2019-01-04T05:19:06.000000000", + "2019-01-04T05:19:30.000000000", + "2019-01-04T05:21:56.000000000", + "2019-01-04T05:22:31.000000000", + "2019-01-04T05:25:32.000000000", + "2019-01-04T05:25:42.000000000", + "2019-01-04T05:26:26.000000000", + "2019-01-04T05:27:35.000000000", + "2019-01-04T05:27:47.000000000", + "2019-01-04T05:30:22.000000000", + "2019-01-04T05:30:39.000000000", + "2019-01-04T05:32:49.000000000", + "2019-01-04T05:33:38.000000000", + "2019-01-04T05:36:29.000000000", + "2019-01-04T05:39:24.000000000", + "2019-01-04T05:39:47.000000000", + "2019-01-04T05:42:02.000000000", + "2019-01-04T05:43:29.000000000", + "2019-01-04T05:43:46.000000000", + "2019-01-04T05:46:07.000000000", + "2019-01-04T05:47:05.000000000", + "2019-01-04T05:48:07.000000000", + "2019-01-04T05:48:50.000000000", + "2019-01-04T05:49:57.000000000", + "2019-01-04T05:50:28.000000000", + "2019-01-04T05:53:15.000000000", + "2019-01-04T05:56:26.000000000", + "2019-01-04T05:56:53.000000000", + "2019-01-04T05:57:43.000000000", + "2019-01-04T05:59:57.000000000", + "2019-01-04T06:00:57.000000000", + "2019-01-04T06:01:36.000000000", + "2019-01-04T06:02:36.000000000", + "2019-01-04T06:04:14.000000000", + "2019-01-04T06:04:28.000000000", + "2019-01-04T06:05:00.000000000", + "2019-01-04T06:07:45.000000000", + "2019-01-04T06:08:25.000000000", + "2019-01-04T06:08:52.000000000", + "2019-01-04T06:09:05.000000000", + "2019-01-04T06:09:42.000000000", + "2019-01-04T06:12:17.000000000", + "2019-01-04T06:12:53.000000000", + "2019-01-04T06:14:13.000000000", + "2019-01-04T06:17:44.000000000", + "2019-01-04T06:19:50.000000000", + "2019-01-04T06:20:45.000000000", + "2019-01-04T06:21:01.000000000", + "2019-01-04T06:21:30.000000000", + "2019-01-04T06:23:27.000000000", + "2019-01-04T06:25:09.000000000", + "2019-01-04T06:25:39.000000000", + "2019-01-04T06:25:44.000000000", + "2019-01-04T06:26:08.000000000", + "2019-01-04T06:28:07.000000000", + "2019-01-04T06:28:14.000000000", + "2019-01-04T06:29:52.000000000", + "2019-01-04T06:30:51.000000000", + "2019-01-04T06:30:57.000000000", + "2019-01-04T06:33:04.000000000", + "2019-01-04T06:33:07.000000000", + "2019-01-04T06:33:49.000000000", + "2019-01-04T06:34:24.000000000", + "2019-01-04T06:36:54.000000000", + "2019-01-04T06:36:57.000000000", + "2019-01-04T06:37:47.000000000", + "2019-01-04T06:37:55.000000000", + "2019-01-04T06:38:26.000000000", + "2019-01-04T06:39:41.000000000", + "2019-01-04T06:41:41.000000000", + "2019-01-04T06:43:17.000000000", + "2019-01-04T06:43:25.000000000", + "2019-01-04T06:44:20.000000000", + "2019-01-04T06:44:24.000000000", + "2019-01-04T06:44:57.000000000", + "2019-01-04T06:47:05.000000000", + "2019-01-04T06:48:02.000000000", + "2019-01-04T06:48:18.000000000", + "2019-01-04T06:48:47.000000000", + "2019-01-04T06:49:42.000000000", + "2019-01-04T06:52:14.000000000", + "2019-01-04T06:52:18.000000000", + "2019-01-04T06:52:27.000000000", + "2019-01-04T06:53:39.000000000", + "2019-01-04T06:54:10.000000000", + "2019-01-04T06:54:23.000000000", + "2019-01-04T06:55:27.000000000", + "2019-01-04T06:56:45.000000000", + "2019-01-04T07:01:03.000000000", + "2019-01-04T07:02:58.000000000", + "2019-01-04T07:03:21.000000000", + "2019-01-04T07:04:34.000000000", + "2019-01-04T07:05:59.000000000", + "2019-01-04T07:06:44.000000000", + "2019-01-04T07:08:12.000000000", + "2019-01-04T07:10:45.000000000", + "2019-01-04T07:10:57.000000000", + "2019-01-04T07:12:14.000000000", + "2019-01-04T07:15:19.000000000", + "2019-01-04T07:15:53.000000000", + "2019-01-04T07:15:58.000000000", + "2019-01-04T07:16:10.000000000", + "2019-01-04T07:17:02.000000000", + "2019-01-04T07:18:23.000000000", + "2019-01-04T07:20:01.000000000", + "2019-01-04T07:20:19.000000000", + "2019-01-04T07:20:21.000000000", + "2019-01-04T07:21:13.000000000", + "2019-01-04T07:22:02.000000000", + "2019-01-04T07:23:30.000000000", + "2019-01-04T07:25:15.000000000", + "2019-01-04T07:29:37.000000000", + "2019-01-04T07:30:26.000000000", + "2019-01-04T07:30:44.000000000", + "2019-01-04T07:31:13.000000000", + "2019-01-04T07:31:28.000000000", + "2019-01-04T07:33:36.000000000", + "2019-01-04T07:33:55.000000000", + "2019-01-04T07:34:49.000000000", + "2019-01-04T07:38:17.000000000", + "2019-01-04T07:39:46.000000000", + "2019-01-04T07:39:48.000000000", + "2019-01-04T07:41:09.000000000", + "2019-01-04T07:41:48.000000000", + "2019-01-04T07:43:06.000000000", + "2019-01-04T07:43:12.000000000", + "2019-01-04T07:43:42.000000000", + "2019-01-04T07:44:05.000000000", + "2019-01-04T07:44:57.000000000", + "2019-01-04T07:44:58.000000000", + "2019-01-04T07:45:09.000000000", + "2019-01-04T07:45:22.000000000", + "2019-01-04T07:45:28.000000000", + "2019-01-04T07:46:15.000000000", + "2019-01-04T07:47:48.000000000", + "2019-01-04T07:48:09.000000000", + "2019-01-04T07:50:02.000000000", + "2019-01-04T07:51:01.000000000", + "2019-01-04T07:51:59.000000000", + "2019-01-04T07:52:18.000000000", + "2019-01-04T07:53:53.000000000", + "2019-01-04T07:54:33.000000000", + "2019-01-04T07:56:13.000000000", + "2019-01-04T07:56:27.000000000", + "2019-01-04T08:00:44.000000000", + "2019-01-04T08:00:59.000000000", + "2019-01-04T08:01:52.000000000", + "2019-01-04T08:02:40.000000000", + "2019-01-04T08:04:09.000000000", + "2019-01-04T08:04:20.000000000", + "2019-01-04T08:05:37.000000000", + "2019-01-04T08:06:07.000000000", + "2019-01-04T08:06:27.000000000", + "2019-01-04T08:07:01.000000000", + "2019-01-04T08:07:44.000000000", + "2019-01-04T08:08:16.000000000", + "2019-01-04T08:08:44.000000000", + "2019-01-04T08:09:04.000000000", + "2019-01-04T08:09:15.000000000", + "2019-01-04T08:10:02.000000000", + "2019-01-04T08:10:14.000000000", + "2019-01-04T08:12:07.000000000", + "2019-01-04T08:12:55.000000000", + "2019-01-04T08:13:03.000000000", + "2019-01-04T08:13:52.000000000", + "2019-01-04T08:14:48.000000000", + "2019-01-04T08:15:59.000000000", + "2019-01-04T08:16:37.000000000", + "2019-01-04T08:17:32.000000000", + "2019-01-04T08:17:43.000000000", + "2019-01-04T08:17:52.000000000", + "2019-01-04T08:18:35.000000000", + "2019-01-04T08:19:07.000000000", + "2019-01-04T08:21:26.000000000", + "2019-01-04T08:23:00.000000000", + "2019-01-04T08:23:22.000000000", + "2019-01-04T08:23:29.000000000", + "2019-01-04T08:24:47.000000000", + "2019-01-04T08:25:14.000000000", + "2019-01-04T08:25:24.000000000", + "2019-01-04T08:25:35.000000000", + "2019-01-04T08:26:19.000000000", + "2019-01-04T08:26:39.000000000", + "2019-01-04T08:28:43.000000000", + "2019-01-04T08:30:20.000000000", + "2019-01-04T08:30:21.000000000", + "2019-01-04T08:32:30.000000000", + "2019-01-04T08:32:45.000000000", + "2019-01-04T08:36:10.000000000", + "2019-01-04T08:36:13.000000000", + "2019-01-04T08:36:39.000000000", + "2019-01-04T08:36:46.000000000", + "2019-01-04T08:37:27.000000000", + "2019-01-04T08:38:02.000000000", + "2019-01-04T08:38:12.000000000", + "2019-01-04T08:39:54.000000000", + "2019-01-04T08:40:02.000000000", + "2019-01-04T08:41:21.000000000", + "2019-01-04T08:42:26.000000000", + "2019-01-04T08:43:44.000000000", + "2019-01-04T08:45:42.000000000", + "2019-01-04T08:46:03.000000000", + "2019-01-04T08:46:12.000000000", + "2019-01-04T08:47:35.000000000", + "2019-01-04T08:48:14.000000000", + "2019-01-04T08:48:33.000000000", + "2019-01-04T08:48:38.000000000", + "2019-01-04T08:48:58.000000000", + "2019-01-04T08:49:21.000000000", + "2019-01-04T08:49:51.000000000", + "2019-01-04T08:50:16.000000000", + "2019-01-04T08:50:30.000000000", + "2019-01-04T08:50:48.000000000", + "2019-01-04T08:53:47.000000000", + "2019-01-04T08:55:07.000000000", + "2019-01-04T08:57:20.000000000", + "2019-01-04T08:57:39.000000000", + "2019-01-04T08:58:05.000000000", + "2019-01-04T08:58:26.000000000", + "2019-01-04T08:58:49.000000000", + "2019-01-04T09:00:22.000000000", + "2019-01-04T09:01:45.000000000", + "2019-01-04T09:01:50.000000000", + "2019-01-04T09:03:34.000000000", + "2019-01-04T09:04:18.000000000", + "2019-01-04T09:04:23.000000000", + "2019-01-04T09:05:36.000000000", + "2019-01-04T09:07:01.000000000", + "2019-01-04T09:07:04.000000000", + "2019-01-04T09:07:58.000000000", + "2019-01-04T09:08:41.000000000", + "2019-01-04T09:09:15.000000000", + "2019-01-04T09:11:28.000000000", + "2019-01-04T09:12:28.000000000", + "2019-01-04T09:12:47.000000000", + "2019-01-04T09:14:50.000000000", + "2019-01-04T09:17:20.000000000", + "2019-01-04T09:19:38.000000000", + "2019-01-04T09:21:14.000000000", + "2019-01-04T09:23:54.000000000", + "2019-01-04T09:26:08.000000000", + "2019-01-04T09:26:39.000000000", + "2019-01-04T09:27:07.000000000", + "2019-01-04T09:27:33.000000000", + "2019-01-04T09:27:49.000000000", + "2019-01-04T09:29:08.000000000", + "2019-01-04T09:29:32.000000000", + "2019-01-04T09:29:48.000000000", + "2019-01-04T09:30:59.000000000", + "2019-01-04T09:32:14.000000000", + "2019-01-04T09:32:36.000000000", + "2019-01-04T09:33:11.000000000", + "2019-01-04T09:35:05.000000000", + "2019-01-04T09:35:13.000000000", + "2019-01-04T09:35:18.000000000", + "2019-01-04T09:36:04.000000000", + "2019-01-04T09:37:08.000000000", + "2019-01-04T09:37:47.000000000", + "2019-01-04T09:38:37.000000000", + "2019-01-04T09:38:58.000000000", + "2019-01-04T09:40:30.000000000", + "2019-01-04T09:40:41.000000000", + "2019-01-04T09:41:43.000000000", + "2019-01-04T09:42:27.000000000", + "2019-01-04T09:43:35.000000000", + "2019-01-04T09:44:17.000000000", + "2019-01-04T09:44:22.000000000", + "2019-01-04T09:44:47.000000000", + "2019-01-04T09:48:06.000000000", + "2019-01-04T09:48:08.000000000", + "2019-01-04T09:50:15.000000000", + "2019-01-04T09:51:15.000000000", + "2019-01-04T09:52:09.000000000", + "2019-01-04T09:54:16.000000000", + "2019-01-04T09:54:17.000000000", + "2019-01-04T09:55:33.000000000", + "2019-01-04T09:55:42.000000000", + "2019-01-04T09:58:12.000000000", + "2019-01-04T09:58:47.000000000", + "2019-01-04T09:59:37.000000000", + "2019-01-04T10:01:01.000000000", + "2019-01-04T10:02:18.000000000", + "2019-01-04T10:06:51.000000000", + "2019-01-04T10:07:07.000000000", + "2019-01-04T10:13:04.000000000", + "2019-01-04T10:13:17.000000000", + "2019-01-04T10:13:19.000000000", + "2019-01-04T10:13:42.000000000", + "2019-01-04T10:13:59.000000000", + "2019-01-04T10:14:40.000000000", + "2019-01-04T10:15:30.000000000", + "2019-01-04T10:15:56.000000000", + "2019-01-04T10:16:27.000000000", + "2019-01-04T10:18:42.000000000", + "2019-01-04T10:18:47.000000000", + "2019-01-04T10:18:54.000000000", + "2019-01-04T10:19:17.000000000", + "2019-01-04T10:19:57.000000000", + "2019-01-04T10:20:44.000000000", + "2019-01-04T10:21:23.000000000", + "2019-01-04T10:24:05.000000000", + "2019-01-04T10:25:14.000000000", + "2019-01-04T10:25:15.000000000", + "2019-01-04T10:26:26.000000000", + "2019-01-04T10:26:28.000000000", + "2019-01-04T10:26:29.000000000", + "2019-01-04T10:28:12.000000000", + "2019-01-04T10:28:41.000000000", + "2019-01-04T10:29:30.000000000", + "2019-01-04T10:29:34.000000000", + "2019-01-04T10:29:56.000000000", + "2019-01-04T10:30:58.000000000", + "2019-01-04T10:31:00.000000000", + "2019-01-04T10:31:17.000000000", + "2019-01-04T10:31:25.000000000", + "2019-01-04T10:32:16.000000000", + "2019-01-04T10:32:52.000000000", + "2019-01-04T10:34:12.000000000", + "2019-01-04T10:35:25.000000000", + "2019-01-04T10:36:09.000000000", + "2019-01-04T10:36:44.000000000", + "2019-01-04T10:40:03.000000000", + "2019-01-04T10:40:05.000000000", + "2019-01-04T10:40:28.000000000", + "2019-01-04T10:40:32.000000000", + "2019-01-04T10:43:46.000000000", + "2019-01-04T10:43:57.000000000", + "2019-01-04T10:46:06.000000000", + "2019-01-04T10:47:07.000000000", + "2019-01-04T10:48:17.000000000", + "2019-01-04T10:48:51.000000000", + "2019-01-04T10:48:58.000000000", + "2019-01-04T10:50:26.000000000", + "2019-01-04T10:50:46.000000000", + "2019-01-04T10:51:36.000000000", + "2019-01-04T10:52:36.000000000", + "2019-01-04T10:53:25.000000000", + "2019-01-04T10:53:26.000000000", + "2019-01-04T10:54:38.000000000", + "2019-01-04T10:55:50.000000000", + "2019-01-04T10:59:27.000000000", + "2019-01-04T10:59:35.000000000", + "2019-01-04T11:01:17.000000000", + "2019-01-04T11:02:46.000000000", + "2019-01-04T11:03:22.000000000", + "2019-01-04T11:03:37.000000000", + "2019-01-04T11:04:31.000000000", + "2019-01-04T11:06:11.000000000", + "2019-01-04T11:07:32.000000000", + "2019-01-04T11:07:48.000000000", + "2019-01-04T11:08:13.000000000", + "2019-01-04T11:09:38.000000000", + "2019-01-04T11:11:40.000000000", + "2019-01-04T11:13:27.000000000", + "2019-01-04T11:14:25.000000000", + "2019-01-04T11:18:54.000000000", + "2019-01-04T11:19:10.000000000", + "2019-01-04T11:19:18.000000000", + "2019-01-04T11:20:04.000000000", + "2019-01-04T11:20:33.000000000", + "2019-01-04T11:20:52.000000000", + "2019-01-04T11:22:41.000000000", + "2019-01-04T11:23:00.000000000", + "2019-01-04T11:25:49.000000000", + "2019-01-04T11:27:37.000000000", + "2019-01-04T11:28:12.000000000", + "2019-01-04T11:28:32.000000000", + "2019-01-04T11:31:37.000000000", + "2019-01-04T11:33:08.000000000", + "2019-01-04T11:33:12.000000000", + "2019-01-04T11:33:17.000000000", + "2019-01-04T11:33:39.000000000", + "2019-01-04T11:34:08.000000000", + "2019-01-04T11:34:20.000000000", + "2019-01-04T11:36:32.000000000", + "2019-01-04T11:38:07.000000000", + "2019-01-04T11:39:37.000000000", + "2019-01-04T11:40:14.000000000", + "2019-01-04T11:41:20.000000000", + "2019-01-04T11:42:11.000000000", + "2019-01-04T11:42:38.000000000", + "2019-01-04T11:44:04.000000000", + "2019-01-04T11:45:45.000000000", + "2019-01-04T11:46:17.000000000", + "2019-01-04T11:46:23.000000000", + "2019-01-04T11:47:48.000000000", + "2019-01-04T11:53:19.000000000", + "2019-01-04T11:53:40.000000000", + "2019-01-04T11:53:46.000000000", + "2019-01-04T11:54:11.000000000", + "2019-01-04T11:54:14.000000000", + "2019-01-04T11:54:52.000000000", + "2019-01-04T11:56:21.000000000", + "2019-01-04T11:57:06.000000000", + "2019-01-04T11:57:33.000000000", + "2019-01-04T11:57:39.000000000", + "2019-01-04T11:58:30.000000000", + "2019-01-04T11:58:40.000000000", + "2019-01-04T11:58:53.000000000", + "2019-01-04T12:01:03.000000000", + "2019-01-04T12:03:12.000000000", + "2019-01-04T12:03:16.000000000", + "2019-01-04T12:03:21.000000000", + "2019-01-04T12:05:03.000000000", + "2019-01-04T12:05:47.000000000", + "2019-01-04T12:06:56.000000000", + "2019-01-04T12:07:45.000000000", + "2019-01-04T12:08:08.000000000", + "2019-01-04T12:08:32.000000000", + "2019-01-04T12:08:45.000000000", + "2019-01-04T12:08:54.000000000", + "2019-01-04T12:11:37.000000000", + "2019-01-04T12:12:08.000000000", + "2019-01-04T12:13:20.000000000", + "2019-01-04T12:13:21.000000000", + "2019-01-04T12:14:53.000000000", + "2019-01-04T12:15:23.000000000", + "2019-01-04T12:18:06.000000000", + "2019-01-04T12:18:11.000000000", + "2019-01-04T12:18:40.000000000", + "2019-01-04T12:18:41.000000000", + "2019-01-04T12:18:47.000000000", + "2019-01-04T12:19:07.000000000", + "2019-01-04T12:20:51.000000000", + "2019-01-04T12:22:20.000000000", + "2019-01-04T12:23:47.000000000", + "2019-01-04T12:24:08.000000000", + "2019-01-04T12:26:18.000000000", + "2019-01-04T12:27:13.000000000", + "2019-01-04T12:28:54.000000000", + "2019-01-04T12:29:00.000000000", + "2019-01-04T12:30:05.000000000", + "2019-01-04T12:30:18.000000000", + "2019-01-04T12:33:26.000000000", + "2019-01-04T12:34:30.000000000", + "2019-01-04T12:34:42.000000000", + "2019-01-04T12:36:17.000000000", + "2019-01-04T12:39:29.000000000", + "2019-01-04T12:40:04.000000000", + "2019-01-04T12:41:43.000000000", + "2019-01-04T12:44:41.000000000", + "2019-01-04T12:45:50.000000000", + "2019-01-04T12:45:54.000000000", + "2019-01-04T12:46:28.000000000", + "2019-01-04T12:46:40.000000000", + "2019-01-04T12:52:31.000000000", + "2019-01-04T12:55:18.000000000", + "2019-01-04T12:55:22.000000000", + "2019-01-04T12:58:23.000000000", + "2019-01-04T12:58:54.000000000", + "2019-01-04T12:59:03.000000000", + "2019-01-04T12:59:09.000000000", + "2019-01-04T12:59:29.000000000", + "2019-01-04T12:59:33.000000000", + "2019-01-04T12:59:40.000000000", + "2019-01-04T13:02:35.000000000", + "2019-01-04T13:03:05.000000000", + "2019-01-04T13:03:26.000000000", + "2019-01-04T13:03:37.000000000", + "2019-01-04T13:03:52.000000000", + "2019-01-04T13:03:58.000000000", + "2019-01-04T13:04:06.000000000", + "2019-01-04T13:06:19.000000000", + "2019-01-04T13:06:39.000000000", + "2019-01-04T13:09:34.000000000", + "2019-01-04T13:09:54.000000000", + "2019-01-04T13:11:08.000000000", + "2019-01-04T13:11:16.000000000", + "2019-01-04T13:12:40.000000000", + "2019-01-04T13:13:32.000000000", + "2019-01-04T13:14:59.000000000", + "2019-01-04T13:17:40.000000000", + "2019-01-04T13:17:51.000000000", + "2019-01-04T13:17:59.000000000", + "2019-01-04T13:18:24.000000000", + "2019-01-04T13:18:45.000000000", + "2019-01-04T13:20:04.000000000", + "2019-01-04T13:20:38.000000000", + "2019-01-04T13:23:05.000000000", + "2019-01-04T13:23:32.000000000", + "2019-01-04T13:24:39.000000000", + "2019-01-04T13:25:52.000000000", + "2019-01-04T13:26:41.000000000", + "2019-01-04T13:26:46.000000000", + "2019-01-04T13:26:56.000000000", + "2019-01-04T13:29:46.000000000", + "2019-01-04T13:30:03.000000000", + "2019-01-04T13:31:07.000000000", + "2019-01-04T13:31:26.000000000", + "2019-01-04T13:38:50.000000000", + "2019-01-04T13:38:57.000000000", + "2019-01-04T13:39:17.000000000", + "2019-01-04T13:39:50.000000000", + "2019-01-04T13:41:08.000000000", + "2019-01-04T13:42:08.000000000", + "2019-01-04T13:42:23.000000000", + "2019-01-04T13:42:39.000000000", + "2019-01-04T13:42:49.000000000", + "2019-01-04T13:43:29.000000000", + "2019-01-04T13:43:45.000000000", + "2019-01-04T13:44:05.000000000", + "2019-01-04T13:47:42.000000000", + "2019-01-04T13:48:08.000000000", + "2019-01-04T13:49:17.000000000", + "2019-01-04T13:49:57.000000000", + "2019-01-04T13:50:26.000000000", + "2019-01-04T13:50:52.000000000", + "2019-01-04T13:51:00.000000000", + "2019-01-04T13:52:33.000000000", + "2019-01-04T13:53:26.000000000", + "2019-01-04T13:54:44.000000000", + "2019-01-04T13:56:02.000000000", + "2019-01-04T13:56:46.000000000", + "2019-01-04T14:00:07.000000000", + "2019-01-04T14:00:23.000000000", + "2019-01-04T14:00:35.000000000", + "2019-01-04T14:00:57.000000000", + "2019-01-04T14:01:06.000000000", + "2019-01-04T14:02:08.000000000", + "2019-01-04T14:02:52.000000000", + "2019-01-04T14:03:33.000000000", + "2019-01-04T14:05:21.000000000", + "2019-01-04T14:09:19.000000000", + "2019-01-04T14:11:16.000000000", + "2019-01-04T14:11:26.000000000", + "2019-01-04T14:11:42.000000000", + "2019-01-04T14:11:44.000000000", + "2019-01-04T14:11:56.000000000", + "2019-01-04T14:13:02.000000000", + "2019-01-04T14:13:35.000000000", + "2019-01-04T14:14:11.000000000", + "2019-01-04T14:14:57.000000000", + "2019-01-04T14:15:21.000000000", + "2019-01-04T14:15:41.000000000", + "2019-01-04T14:16:51.000000000", + "2019-01-04T14:17:58.000000000", + "2019-01-04T14:22:25.000000000", + "2019-01-04T14:22:26.000000000", + "2019-01-04T14:22:45.000000000", + "2019-01-04T14:24:17.000000000", + "2019-01-04T14:25:46.000000000", + "2019-01-04T14:26:18.000000000", + "2019-01-04T14:26:51.000000000", + "2019-01-04T14:27:09.000000000", + "2019-01-04T14:27:47.000000000", + "2019-01-04T14:28:01.000000000", + "2019-01-04T14:28:18.000000000", + "2019-01-04T14:28:40.000000000", + "2019-01-04T14:29:49.000000000", + "2019-01-04T14:29:51.000000000", + "2019-01-04T14:30:28.000000000", + "2019-01-04T14:31:01.000000000", + "2019-01-04T14:31:24.000000000", + "2019-01-04T14:32:11.000000000", + "2019-01-04T14:32:19.000000000", + "2019-01-04T14:32:57.000000000", + "2019-01-04T14:33:06.000000000", + "2019-01-04T14:33:47.000000000", + "2019-01-04T14:35:56.000000000", + "2019-01-04T14:36:05.000000000", + "2019-01-04T14:37:17.000000000", + "2019-01-04T14:37:19.000000000", + "2019-01-04T14:38:30.000000000", + "2019-01-04T14:38:40.000000000", + "2019-01-04T14:40:29.000000000", + "2019-01-04T14:40:39.000000000", + "2019-01-04T14:41:34.000000000", + "2019-01-04T14:42:04.000000000", + "2019-01-04T14:42:25.000000000", + "2019-01-04T14:44:46.000000000", + "2019-01-04T14:45:23.000000000", + "2019-01-04T14:45:48.000000000", + "2019-01-04T14:48:45.000000000", + "2019-01-04T14:48:56.000000000", + "2019-01-04T14:49:24.000000000", + "2019-01-04T14:52:37.000000000", + "2019-01-04T14:54:15.000000000", + "2019-01-04T14:54:20.000000000", + "2019-01-04T14:54:31.000000000", + "2019-01-04T14:59:06.000000000", + "2019-01-04T14:59:11.000000000", + "2019-01-04T15:00:53.000000000", + "2019-01-04T15:03:34.000000000", + "2019-01-04T15:04:49.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:05:47.000000000", + "2019-01-04T15:05:54.000000000", + "2019-01-04T15:05:57.000000000", + "2019-01-04T15:06:31.000000000", + "2019-01-04T15:06:35.000000000", + "2019-01-04T15:07:04.000000000", + "2019-01-04T15:07:05.000000000", + "2019-01-04T15:07:39.000000000", + "2019-01-04T15:08:00.000000000", + "2019-01-04T15:08:25.000000000", + "2019-01-04T15:09:24.000000000", + "2019-01-04T15:09:31.000000000", + "2019-01-04T15:13:24.000000000", + "2019-01-04T15:13:30.000000000", + "2019-01-04T15:13:42.000000000", + "2019-01-04T15:13:43.000000000", + "2019-01-04T15:17:09.000000000", + "2019-01-04T15:17:20.000000000", + "2019-01-04T15:20:43.000000000", + "2019-01-04T15:22:09.000000000", + "2019-01-04T15:22:14.000000000", + "2019-01-04T15:22:41.000000000", + "2019-01-04T15:23:34.000000000", + "2019-01-04T15:24:54.000000000", + "2019-01-04T15:25:21.000000000", + "2019-01-04T15:26:24.000000000", + "2019-01-04T15:27:49.000000000", + "2019-01-04T15:31:25.000000000", + "2019-01-04T15:31:38.000000000", + "2019-01-04T15:32:40.000000000", + "2019-01-04T15:35:08.000000000", + "2019-01-04T15:36:00.000000000", + "2019-01-04T15:36:34.000000000", + "2019-01-04T15:37:30.000000000", + "2019-01-04T15:40:01.000000000", + "2019-01-04T15:40:05.000000000", + "2019-01-04T15:40:49.000000000", + "2019-01-04T15:42:58.000000000", + "2019-01-04T15:43:21.000000000", + "2019-01-04T15:43:25.000000000", + "2019-01-04T15:44:21.000000000", + "2019-01-04T15:45:01.000000000", + "2019-01-04T15:46:20.000000000", + "2019-01-04T15:46:45.000000000", + "2019-01-04T15:49:06.000000000", + "2019-01-04T15:49:58.000000000", + "2019-01-04T15:49:59.000000000", + "2019-01-04T15:50:22.000000000", + "2019-01-04T15:52:38.000000000", + "2019-01-04T15:56:10.000000000", + "2019-01-04T15:57:12.000000000", + "2019-01-04T15:57:50.000000000", + "2019-01-04T15:58:54.000000000", + "2019-01-04T16:00:37.000000000", + "2019-01-04T16:01:13.000000000", + "2019-01-04T16:01:45.000000000", + "2019-01-04T16:03:11.000000000", + "2019-01-04T16:04:07.000000000", + "2019-01-04T16:05:16.000000000", + "2019-01-04T16:05:50.000000000", + "2019-01-04T16:07:19.000000000", + "2019-01-04T16:09:39.000000000", + "2019-01-04T16:10:10.000000000", + "2019-01-04T16:10:48.000000000", + "2019-01-04T16:11:00.000000000", + "2019-01-04T16:11:20.000000000", + "2019-01-04T16:13:06.000000000", + "2019-01-04T16:13:30.000000000", + "2019-01-04T16:13:44.000000000", + "2019-01-04T16:14:53.000000000", + "2019-01-04T16:15:11.000000000", + "2019-01-04T16:15:55.000000000", + "2019-01-04T16:23:00.000000000", + "2019-01-04T16:23:47.000000000", + "2019-01-04T16:24:32.000000000", + "2019-01-04T16:24:56.000000000", + "2019-01-04T16:25:54.000000000", + "2019-01-04T16:25:58.000000000", + "2019-01-04T16:27:32.000000000", + "2019-01-04T16:27:48.000000000", + "2019-01-04T16:28:54.000000000", + "2019-01-04T16:29:50.000000000", + "2019-01-04T16:30:51.000000000", + "2019-01-04T16:32:01.000000000", + "2019-01-04T16:33:21.000000000", + "2019-01-04T16:34:45.000000000", + "2019-01-04T16:38:39.000000000", + "2019-01-04T16:39:09.000000000", + "2019-01-04T16:39:21.000000000", + "2019-01-04T16:40:15.000000000", + "2019-01-04T16:47:30.000000000", + "2019-01-04T16:48:19.000000000", + "2019-01-04T16:48:38.000000000", + "2019-01-04T16:49:04.000000000", + "2019-01-04T16:49:11.000000000", + "2019-01-04T16:50:06.000000000", + "2019-01-04T16:51:28.000000000", + "2019-01-04T16:51:31.000000000", + "2019-01-04T16:51:55.000000000", + "2019-01-04T16:52:20.000000000", + "2019-01-04T16:53:33.000000000", + "2019-01-04T16:53:54.000000000", + "2019-01-04T16:54:13.000000000", + "2019-01-04T16:54:51.000000000", + "2019-01-04T16:55:46.000000000", + "2019-01-04T16:57:08.000000000", + "2019-01-04T16:57:11.000000000", + "2019-01-04T16:57:17.000000000", + "2019-01-04T16:58:15.000000000", + "2019-01-04T16:58:39.000000000", + "2019-01-04T16:58:47.000000000", + "2019-01-04T17:00:16.000000000", + "2019-01-04T17:00:32.000000000", + "2019-01-04T17:00:36.000000000", + "2019-01-04T17:01:57.000000000", + "2019-01-04T17:03:33.000000000", + "2019-01-04T17:04:16.000000000", + "2019-01-04T17:05:58.000000000", + "2019-01-04T17:10:58.000000000", + "2019-01-04T17:11:25.000000000", + "2019-01-04T17:13:03.000000000", + "2019-01-04T17:13:59.000000000", + "2019-01-04T17:14:43.000000000", + "2019-01-04T17:16:46.000000000", + "2019-01-04T17:17:16.000000000", + "2019-01-04T17:20:50.000000000", + "2019-01-04T17:21:03.000000000", + "2019-01-04T17:21:49.000000000", + "2019-01-04T17:21:58.000000000", + "2019-01-04T17:24:18.000000000", + "2019-01-04T17:24:36.000000000", + "2019-01-04T17:24:37.000000000", + "2019-01-04T17:27:12.000000000", + "2019-01-04T17:27:18.000000000", + "2019-01-04T17:29:03.000000000", + "2019-01-04T17:30:12.000000000", + "2019-01-04T17:30:22.000000000", + "2019-01-04T17:31:18.000000000", + "2019-01-04T17:31:42.000000000", + "2019-01-04T17:31:46.000000000", + "2019-01-04T17:32:47.000000000", + "2019-01-04T17:34:44.000000000", + "2019-01-04T17:34:59.000000000", + "2019-01-04T17:35:17.000000000", + "2019-01-04T17:35:34.000000000", + "2019-01-04T17:36:37.000000000", + "2019-01-04T17:38:17.000000000", + "2019-01-04T17:38:48.000000000", + "2019-01-04T17:39:15.000000000", + "2019-01-04T17:43:11.000000000", + "2019-01-04T17:43:17.000000000", + "2019-01-04T17:44:42.000000000", + "2019-01-04T17:44:57.000000000", + "2019-01-04T17:45:38.000000000", + "2019-01-04T17:47:14.000000000", + "2019-01-04T17:47:40.000000000", + "2019-01-04T17:48:27.000000000", + "2019-01-04T17:49:08.000000000", + "2019-01-04T17:50:40.000000000", + "2019-01-04T17:51:31.000000000", + "2019-01-04T17:52:29.000000000", + "2019-01-04T17:58:07.000000000", + "2019-01-04T17:58:20.000000000", + "2019-01-04T17:58:31.000000000", + "2019-01-04T17:59:36.000000000", + "2019-01-04T18:00:01.000000000", + "2019-01-04T18:00:07.000000000", + "2019-01-04T18:00:55.000000000", + "2019-01-04T18:01:56.000000000", + "2019-01-04T18:04:48.000000000", + "2019-01-04T18:04:59.000000000", + "2019-01-04T18:07:34.000000000", + "2019-01-04T18:08:27.000000000", + "2019-01-04T18:09:34.000000000", + "2019-01-04T18:10:59.000000000", + "2019-01-04T18:11:19.000000000", + "2019-01-04T18:14:42.000000000", + "2019-01-04T18:14:54.000000000", + "2019-01-04T18:15:51.000000000", + "2019-01-04T18:17:24.000000000", + "2019-01-04T18:17:54.000000000", + "2019-01-04T18:18:06.000000000", + "2019-01-04T18:18:34.000000000", + "2019-01-04T18:20:25.000000000", + "2019-01-04T18:21:36.000000000", + "2019-01-04T18:24:51.000000000", + "2019-01-04T18:25:04.000000000", + "2019-01-04T18:27:19.000000000", + "2019-01-04T18:28:36.000000000", + "2019-01-04T18:29:32.000000000", + "2019-01-04T18:29:49.000000000", + "2019-01-04T18:30:01.000000000", + "2019-01-04T18:32:38.000000000", + "2019-01-04T18:32:54.000000000", + "2019-01-04T18:33:37.000000000", + "2019-01-04T18:35:45.000000000", + "2019-01-04T18:37:06.000000000", + "2019-01-04T18:40:39.000000000", + "2019-01-04T18:41:36.000000000", + "2019-01-04T18:41:37.000000000", + "2019-01-04T18:42:15.000000000", + "2019-01-04T18:44:09.000000000", + "2019-01-04T18:44:55.000000000", + "2019-01-04T18:45:50.000000000", + "2019-01-04T18:46:26.000000000", + "2019-01-04T18:46:58.000000000", + "2019-01-04T18:47:09.000000000", + "2019-01-04T18:47:47.000000000", + "2019-01-04T18:48:15.000000000", + "2019-01-04T18:48:30.000000000", + "2019-01-04T18:49:31.000000000", + "2019-01-04T18:52:38.000000000", + "2019-01-04T18:52:41.000000000", + "2019-01-04T18:53:30.000000000", + "2019-01-04T18:55:14.000000000", + "2019-01-04T18:55:43.000000000", + "2019-01-04T18:55:50.000000000", + "2019-01-04T18:56:22.000000000", + "2019-01-04T18:57:03.000000000", + "2019-01-04T18:59:42.000000000", + "2019-01-04T19:03:52.000000000", + "2019-01-04T19:04:54.000000000", + "2019-01-04T19:06:46.000000000", + "2019-01-04T19:07:20.000000000", + "2019-01-04T19:08:16.000000000", + "2019-01-04T19:13:51.000000000", + "2019-01-04T19:14:34.000000000", + "2019-01-04T19:15:41.000000000", + "2019-01-04T19:16:12.000000000", + "2019-01-04T19:17:07.000000000", + "2019-01-04T19:17:41.000000000", + "2019-01-04T19:19:09.000000000", + "2019-01-04T19:19:23.000000000", + "2019-01-04T19:19:41.000000000", + "2019-01-04T19:20:16.000000000", + "2019-01-04T19:21:15.000000000", + "2019-01-04T19:21:30.000000000", + "2019-01-04T19:22:23.000000000", + "2019-01-04T19:24:55.000000000", + "2019-01-04T19:25:06.000000000", + "2019-01-04T19:25:11.000000000", + "2019-01-04T19:32:30.000000000", + "2019-01-04T19:34:43.000000000", + "2019-01-04T19:34:53.000000000", + "2019-01-04T19:35:15.000000000", + "2019-01-04T19:36:14.000000000", + "2019-01-04T19:38:49.000000000", + "2019-01-04T19:39:21.000000000", + "2019-01-04T19:41:29.000000000", + "2019-01-04T19:41:43.000000000", + "2019-01-04T19:41:46.000000000", + "2019-01-04T19:46:15.000000000", + "2019-01-04T19:47:35.000000000", + "2019-01-04T19:48:23.000000000", + "2019-01-04T19:48:41.000000000", + "2019-01-04T19:49:38.000000000", + "2019-01-04T19:49:56.000000000", + "2019-01-04T19:50:06.000000000", + "2019-01-04T19:50:08.000000000", + "2019-01-04T19:51:17.000000000", + "2019-01-04T19:52:23.000000000", + "2019-01-04T19:52:49.000000000", + "2019-01-04T19:53:04.000000000", + "2019-01-04T19:53:14.000000000", + "2019-01-04T19:53:24.000000000", + "2019-01-04T19:53:46.000000000", + "2019-01-04T19:53:51.000000000", + "2019-01-04T19:53:59.000000000", + "2019-01-04T19:55:00.000000000", + "2019-01-04T19:55:05.000000000", + "2019-01-04T19:55:43.000000000", + "2019-01-04T19:56:07.000000000", + "2019-01-04T19:56:34.000000000", + "2019-01-04T19:56:46.000000000", + "2019-01-04T19:57:16.000000000", + "2019-01-04T19:57:22.000000000", + "2019-01-04T19:58:12.000000000", + "2019-01-04T19:58:26.000000000", + "2019-01-04T20:01:10.000000000", + "2019-01-04T20:01:16.000000000", + "2019-01-04T20:02:18.000000000", + "2019-01-04T20:02:45.000000000", + "2019-01-04T20:03:02.000000000", + "2019-01-04T20:03:10.000000000", + "2019-01-04T20:04:09.000000000", + "2019-01-04T20:05:05.000000000", + "2019-01-04T20:05:56.000000000", + "2019-01-04T20:06:32.000000000", + "2019-01-04T20:07:19.000000000", + "2019-01-04T20:07:25.000000000", + "2019-01-04T20:08:25.000000000", + "2019-01-04T20:08:56.000000000", + "2019-01-04T20:09:35.000000000", + "2019-01-04T20:10:13.000000000", + "2019-01-04T20:10:49.000000000", + "2019-01-04T20:11:21.000000000", + "2019-01-04T20:11:45.000000000", + "2019-01-04T20:13:34.000000000", + "2019-01-04T20:14:07.000000000", + "2019-01-04T20:14:12.000000000", + "2019-01-04T20:16:03.000000000", + "2019-01-04T20:18:55.000000000", + "2019-01-04T20:21:07.000000000", + "2019-01-04T20:21:15.000000000", + "2019-01-04T20:21:27.000000000", + "2019-01-04T20:23:27.000000000", + "2019-01-04T20:28:30.000000000", + "2019-01-04T20:30:34.000000000", + "2019-01-04T20:31:22.000000000", + "2019-01-04T20:32:31.000000000", + "2019-01-04T20:33:30.000000000", + "2019-01-04T20:34:04.000000000", + "2019-01-04T20:36:09.000000000", + "2019-01-04T20:36:24.000000000", + "2019-01-04T20:37:45.000000000", + "2019-01-04T20:37:47.000000000", + "2019-01-04T20:38:01.000000000", + "2019-01-04T20:38:33.000000000", + "2019-01-04T20:38:47.000000000", + "2019-01-04T20:40:05.000000000", + "2019-01-04T20:40:12.000000000", + "2019-01-04T20:40:36.000000000", + "2019-01-04T20:42:33.000000000", + "2019-01-04T20:43:59.000000000", + "2019-01-04T20:44:03.000000000", + "2019-01-04T20:44:33.000000000", + "2019-01-04T20:45:58.000000000", + "2019-01-04T20:46:13.000000000", + "2019-01-04T20:46:16.000000000", + "2019-01-04T20:48:18.000000000", + "2019-01-04T20:48:46.000000000", + "2019-01-04T20:49:01.000000000", + "2019-01-04T20:49:11.000000000", + "2019-01-04T20:49:38.000000000", + "2019-01-04T20:49:52.000000000", + "2019-01-04T20:51:41.000000000", + "2019-01-04T20:52:54.000000000", + "2019-01-04T20:53:24.000000000", + "2019-01-04T20:57:31.000000000", + "2019-01-04T20:58:38.000000000", + "2019-01-04T20:59:37.000000000", + "2019-01-04T20:59:44.000000000", + "2019-01-04T20:59:49.000000000", + "2019-01-04T21:00:05.000000000", + "2019-01-04T21:01:23.000000000", + "2019-01-04T21:02:16.000000000", + "2019-01-04T21:06:34.000000000", + "2019-01-04T21:07:04.000000000", + "2019-01-04T21:07:49.000000000", + "2019-01-04T21:09:05.000000000", + "2019-01-04T21:09:29.000000000", + "2019-01-04T21:09:58.000000000", + "2019-01-04T21:10:28.000000000", + "2019-01-04T21:11:09.000000000", + "2019-01-04T21:11:27.000000000", + "2019-01-04T21:11:37.000000000", + "2019-01-04T21:11:40.000000000", + "2019-01-04T21:15:38.000000000", + "2019-01-04T21:18:16.000000000", + "2019-01-04T21:18:17.000000000", + "2019-01-04T21:18:28.000000000", + "2019-01-04T21:20:42.000000000", + "2019-01-04T21:21:03.000000000", + "2019-01-04T21:22:05.000000000", + "2019-01-04T21:22:18.000000000", + "2019-01-04T21:23:06.000000000", + "2019-01-04T21:23:45.000000000", + "2019-01-04T21:27:02.000000000", + "2019-01-04T21:27:19.000000000", + "2019-01-04T21:30:21.000000000", + "2019-01-04T21:30:24.000000000", + "2019-01-04T21:30:45.000000000", + "2019-01-04T21:31:45.000000000", + "2019-01-04T21:31:54.000000000", + "2019-01-04T21:34:02.000000000", + "2019-01-04T21:34:36.000000000", + "2019-01-04T21:35:04.000000000", + "2019-01-04T21:35:58.000000000", + "2019-01-04T21:37:01.000000000", + "2019-01-04T21:37:14.000000000", + "2019-01-04T21:37:16.000000000", + "2019-01-04T21:37:48.000000000", + "2019-01-04T21:39:02.000000000", + "2019-01-04T21:39:45.000000000", + "2019-01-04T21:40:41.000000000", + "2019-01-04T21:43:15.000000000", + "2019-01-04T21:43:20.000000000", + "2019-01-04T21:44:20.000000000", + "2019-01-04T21:45:17.000000000", + "2019-01-04T21:46:01.000000000", + "2019-01-04T21:46:12.000000000", + "2019-01-04T21:46:14.000000000", + "2019-01-04T21:46:48.000000000", + "2019-01-04T21:47:52.000000000", + "2019-01-04T21:48:22.000000000", + "2019-01-04T21:48:38.000000000", + "2019-01-04T21:48:51.000000000", + "2019-01-04T21:48:59.000000000", + "2019-01-04T21:49:26.000000000", + "2019-01-04T21:50:34.000000000", + "2019-01-04T21:51:11.000000000", + "2019-01-04T21:53:57.000000000", + "2019-01-04T21:55:42.000000000", + "2019-01-04T21:55:52.000000000", + "2019-01-04T22:00:36.000000000", + "2019-01-04T22:00:45.000000000", + "2019-01-04T22:02:02.000000000", + "2019-01-04T22:02:04.000000000", + "2019-01-04T22:03:08.000000000", + "2019-01-04T22:03:21.000000000", + "2019-01-04T22:03:53.000000000", + "2019-01-04T22:04:05.000000000", + "2019-01-04T22:05:12.000000000", + "2019-01-04T22:05:54.000000000", + "2019-01-04T22:08:48.000000000", + "2019-01-04T22:10:13.000000000", + "2019-01-04T22:10:37.000000000", + "2019-01-04T22:11:10.000000000", + "2019-01-04T22:11:13.000000000", + "2019-01-04T22:13:43.000000000", + "2019-01-04T22:15:01.000000000", + "2019-01-04T22:15:14.000000000", + "2019-01-04T22:15:53.000000000", + "2019-01-04T22:17:49.000000000", + "2019-01-04T22:18:40.000000000", + "2019-01-04T22:20:02.000000000", + "2019-01-04T22:20:38.000000000", + "2019-01-04T22:22:18.000000000", + "2019-01-04T22:23:17.000000000", + "2019-01-04T22:23:48.000000000", + "2019-01-04T22:24:46.000000000", + "2019-01-04T22:28:22.000000000", + "2019-01-04T22:29:17.000000000", + "2019-01-04T22:29:31.000000000", + "2019-01-04T22:30:00.000000000", + "2019-01-04T22:30:35.000000000", + "2019-01-04T22:31:58.000000000", + "2019-01-04T22:32:08.000000000", + "2019-01-04T22:33:30.000000000", + "2019-01-04T22:33:38.000000000", + "2019-01-04T22:35:49.000000000", + "2019-01-04T22:35:51.000000000", + "2019-01-04T22:36:45.000000000", + "2019-01-04T22:36:47.000000000", + "2019-01-04T22:37:06.000000000", + "2019-01-04T22:38:20.000000000", + "2019-01-04T22:39:45.000000000", + "2019-01-04T22:40:47.000000000", + "2019-01-04T22:41:56.000000000", + "2019-01-04T22:42:00.000000000", + "2019-01-04T22:42:07.000000000", + "2019-01-04T22:43:31.000000000", + "2019-01-04T22:44:16.000000000", + "2019-01-04T22:44:49.000000000", + "2019-01-04T22:45:15.000000000", + "2019-01-04T22:45:29.000000000", + "2019-01-04T22:50:07.000000000", + "2019-01-04T22:50:15.000000000", + "2019-01-04T22:51:52.000000000", + "2019-01-04T22:52:37.000000000", + "2019-01-04T22:54:15.000000000", + "2019-01-04T22:54:54.000000000", + "2019-01-04T22:55:18.000000000", + "2019-01-04T22:55:48.000000000", + "2019-01-04T22:56:47.000000000", + "2019-01-04T22:57:06.000000000", + "2019-01-04T22:57:51.000000000", + "2019-01-04T22:57:57.000000000", + "2019-01-04T22:58:30.000000000", + "2019-01-04T22:59:50.000000000", + "2019-01-04T23:00:15.000000000", + "2019-01-04T23:00:39.000000000", + "2019-01-04T23:01:32.000000000", + "2019-01-04T23:01:40.000000000", + "2019-01-04T23:02:23.000000000", + "2019-01-04T23:02:46.000000000", + "2019-01-04T23:03:46.000000000", + "2019-01-04T23:04:18.000000000", + "2019-01-04T23:07:42.000000000", + "2019-01-04T23:08:41.000000000", + "2019-01-04T23:13:03.000000000", + "2019-01-04T23:15:01.000000000", + "2019-01-04T23:15:18.000000000", + "2019-01-04T23:15:21.000000000", + "2019-01-04T23:15:44.000000000", + "2019-01-04T23:15:49.000000000", + "2019-01-04T23:17:12.000000000", + "2019-01-04T23:17:44.000000000", + "2019-01-04T23:19:08.000000000", + "2019-01-04T23:19:45.000000000", + "2019-01-04T23:20:11.000000000", + "2019-01-04T23:20:18.000000000", + "2019-01-04T23:21:00.000000000", + "2019-01-04T23:22:27.000000000", + "2019-01-04T23:22:47.000000000", + "2019-01-04T23:23:22.000000000", + "2019-01-04T23:24:59.000000000", + "2019-01-04T23:27:07.000000000", + "2019-01-04T23:29:00.000000000", + "2019-01-04T23:31:00.000000000", + "2019-01-04T23:31:10.000000000", + "2019-01-04T23:31:40.000000000", + "2019-01-04T23:38:29.000000000", + "2019-01-04T23:38:47.000000000", + "2019-01-04T23:39:18.000000000", + "2019-01-04T23:40:27.000000000", + "2019-01-04T23:41:08.000000000", + "2019-01-04T23:41:18.000000000", + "2019-01-04T23:42:36.000000000", + "2019-01-04T23:44:33.000000000", + "2019-01-04T23:45:16.000000000", + "2019-01-04T23:46:11.000000000", + "2019-01-04T23:46:54.000000000", + "2019-01-04T23:47:09.000000000", + "2019-01-04T23:48:28.000000000", + "2019-01-04T23:49:09.000000000", + "2019-01-04T23:51:20.000000000", + "2019-01-04T23:51:24.000000000", + "2019-01-04T23:53:41.000000000", + "2019-01-04T23:54:39.000000000", + "2019-01-04T23:54:53.000000000", + "2019-01-04T23:55:44.000000000", + "2019-01-04T23:56:31.000000000", + "2019-01-04T23:56:33.000000000", + "2019-01-04T23:57:00.000000000", + "2019-01-04T23:57:07.000000000", + "2019-01-04T23:58:15.000000000", + "2019-01-04T23:59:00.000000000", + "2019-01-05T00:00:15.000000000", + "2019-01-05T00:01:15.000000000", + "2019-01-05T00:02:10.000000000", + "2019-01-05T00:03:31.000000000", + "2019-01-05T00:03:49.000000000", + "2019-01-05T00:03:52.000000000", + "2019-01-05T00:04:10.000000000", + "2019-01-05T00:05:31.000000000", + "2019-01-05T00:05:36.000000000", + "2019-01-05T00:07:06.000000000", + "2019-01-05T00:07:19.000000000", + "2019-01-05T00:11:15.000000000", + "2019-01-05T00:12:27.000000000", + "2019-01-05T00:13:02.000000000", + "2019-01-05T00:13:55.000000000", + "2019-01-05T00:16:09.000000000", + "2019-01-05T00:16:37.000000000", + "2019-01-05T00:16:46.000000000", + "2019-01-05T00:18:26.000000000", + "2019-01-05T00:19:09.000000000", + "2019-01-05T00:19:31.000000000", + "2019-01-05T00:19:45.000000000", + "2019-01-05T00:20:21.000000000", + "2019-01-05T00:21:42.000000000", + "2019-01-05T00:25:08.000000000", + "2019-01-05T00:25:23.000000000", + "2019-01-05T00:25:40.000000000", + "2019-01-05T00:26:35.000000000", + "2019-01-05T00:26:53.000000000", + "2019-01-05T00:27:58.000000000", + "2019-01-05T00:28:22.000000000", + "2019-01-05T00:28:27.000000000", + "2019-01-05T00:29:20.000000000", + "2019-01-05T00:29:56.000000000", + "2019-01-05T00:31:32.000000000", + "2019-01-05T00:32:03.000000000", + "2019-01-05T00:32:30.000000000", + "2019-01-05T00:33:20.000000000", + "2019-01-05T00:35:36.000000000", + "2019-01-05T00:38:57.000000000", + "2019-01-05T00:39:00.000000000", + "2019-01-05T00:39:45.000000000", + "2019-01-05T00:40:59.000000000", + "2019-01-05T00:41:08.000000000", + "2019-01-05T00:42:45.000000000", + "2019-01-05T00:45:27.000000000", + "2019-01-05T00:48:38.000000000", + "2019-01-05T00:49:55.000000000", + "2019-01-05T00:50:41.000000000", + "2019-01-05T00:50:51.000000000", + "2019-01-05T00:51:05.000000000", + "2019-01-05T00:52:26.000000000", + "2019-01-05T00:52:44.000000000", + "2019-01-05T00:54:06.000000000", + "2019-01-05T00:55:17.000000000", + "2019-01-05T00:56:31.000000000", + "2019-01-05T00:57:32.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:02:30.000000000", + "2019-01-05T01:05:15.000000000", + "2019-01-05T01:07:33.000000000", + "2019-01-05T01:10:52.000000000", + "2019-01-05T01:11:56.000000000", + "2019-01-05T01:12:40.000000000", + "2019-01-05T01:13:44.000000000", + "2019-01-05T01:13:50.000000000", + "2019-01-05T01:14:25.000000000", + "2019-01-05T01:16:03.000000000", + "2019-01-05T01:16:36.000000000", + "2019-01-05T01:17:06.000000000", + "2019-01-05T01:17:50.000000000", + "2019-01-05T01:19:48.000000000", + "2019-01-05T01:19:53.000000000", + "2019-01-05T01:20:21.000000000", + "2019-01-05T01:21:11.000000000", + "2019-01-05T01:23:39.000000000", + "2019-01-05T01:25:33.000000000", + "2019-01-05T01:25:50.000000000", + "2019-01-05T01:26:40.000000000", + "2019-01-05T01:26:53.000000000", + "2019-01-05T01:27:28.000000000", + "2019-01-05T01:27:56.000000000", + "2019-01-05T01:28:02.000000000", + "2019-01-05T01:29:37.000000000", + "2019-01-05T01:29:49.000000000", + "2019-01-05T01:31:31.000000000", + "2019-01-05T01:34:01.000000000", + "2019-01-05T01:34:37.000000000", + "2019-01-05T01:35:11.000000000", + "2019-01-05T01:35:28.000000000", + "2019-01-05T01:38:11.000000000", + "2019-01-05T01:38:18.000000000", + "2019-01-05T01:38:45.000000000", + "2019-01-05T01:40:34.000000000", + "2019-01-05T01:41:05.000000000", + "2019-01-05T01:43:38.000000000", + "2019-01-05T01:45:52.000000000", + "2019-01-05T01:47:11.000000000", + "2019-01-05T01:47:28.000000000", + "2019-01-05T01:48:45.000000000", + "2019-01-05T01:48:50.000000000", + "2019-01-05T01:50:55.000000000", + "2019-01-05T01:51:56.000000000", + "2019-01-05T01:52:02.000000000", + "2019-01-05T01:52:22.000000000", + "2019-01-05T01:52:56.000000000", + "2019-01-05T01:55:13.000000000", + "2019-01-05T01:55:52.000000000", + "2019-01-05T01:56:36.000000000", + "2019-01-05T01:56:51.000000000", + "2019-01-05T01:58:59.000000000", + "2019-01-05T01:59:01.000000000", + "2019-01-05T01:59:51.000000000", + "2019-01-05T02:01:29.000000000", + "2019-01-05T02:02:00.000000000", + "2019-01-05T02:02:09.000000000", + "2019-01-05T02:02:14.000000000", + "2019-01-05T02:03:34.000000000", + "2019-01-05T02:04:27.000000000", + "2019-01-05T02:05:08.000000000", + "2019-01-05T02:06:12.000000000", + "2019-01-05T02:06:34.000000000", + "2019-01-05T02:07:05.000000000", + "2019-01-05T02:07:25.000000000", + "2019-01-05T02:08:21.000000000", + "2019-01-05T02:09:22.000000000", + "2019-01-05T02:11:00.000000000", + "2019-01-05T02:11:14.000000000", + "2019-01-05T02:11:28.000000000", + "2019-01-05T02:12:55.000000000", + "2019-01-05T02:14:08.000000000", + "2019-01-05T02:16:23.000000000", + "2019-01-05T02:17:10.000000000", + "2019-01-05T02:17:15.000000000", + "2019-01-05T02:17:54.000000000", + "2019-01-05T02:18:51.000000000", + "2019-01-05T02:19:10.000000000", + "2019-01-05T02:19:34.000000000", + "2019-01-05T02:22:34.000000000", + "2019-01-05T02:24:11.000000000", + "2019-01-05T02:24:14.000000000", + "2019-01-05T02:25:16.000000000", + "2019-01-05T02:26:13.000000000", + "2019-01-05T02:29:46.000000000", + "2019-01-05T02:31:43.000000000", + "2019-01-05T02:32:26.000000000", + "2019-01-05T02:32:57.000000000", + "2019-01-05T02:33:00.000000000", + "2019-01-05T02:33:22.000000000", + "2019-01-05T02:34:03.000000000", + "2019-01-05T02:34:32.000000000", + "2019-01-05T02:35:09.000000000", + "2019-01-05T02:37:05.000000000", + "2019-01-05T02:37:22.000000000", + "2019-01-05T02:37:24.000000000", + "2019-01-05T02:38:10.000000000", + "2019-01-05T02:38:39.000000000", + "2019-01-05T02:39:22.000000000", + "2019-01-05T02:43:06.000000000", + "2019-01-05T02:43:40.000000000", + "2019-01-05T02:44:28.000000000", + "2019-01-05T02:46:37.000000000", + "2019-01-05T02:49:10.000000000", + "2019-01-05T02:50:02.000000000", + "2019-01-05T02:50:13.000000000", + "2019-01-05T02:50:25.000000000", + "2019-01-05T02:51:12.000000000", + "2019-01-05T02:51:53.000000000", + "2019-01-05T02:52:51.000000000", + "2019-01-05T02:53:44.000000000", + "2019-01-05T02:55:38.000000000", + "2019-01-05T02:57:47.000000000", + "2019-01-05T02:59:21.000000000", + "2019-01-05T03:00:00.000000000", + "2019-01-05T03:00:12.000000000", + "2019-01-05T03:01:43.000000000", + "2019-01-05T03:01:51.000000000", + "2019-01-05T03:02:55.000000000", + "2019-01-05T03:03:59.000000000", + "2019-01-05T03:04:15.000000000", + "2019-01-05T03:05:33.000000000", + "2019-01-05T03:11:54.000000000", + "2019-01-05T03:12:33.000000000", + "2019-01-05T03:13:50.000000000", + "2019-01-05T03:15:30.000000000", + "2019-01-05T03:15:48.000000000", + "2019-01-05T03:16:00.000000000", + "2019-01-05T03:19:01.000000000", + "2019-01-05T03:20:40.000000000", + "2019-01-05T03:21:19.000000000", + "2019-01-05T03:21:31.000000000", + "2019-01-05T03:21:35.000000000", + "2019-01-05T03:22:48.000000000", + "2019-01-05T03:25:14.000000000", + "2019-01-05T03:25:22.000000000", + "2019-01-05T03:25:27.000000000", + "2019-01-05T03:26:09.000000000", + "2019-01-05T03:26:35.000000000", + "2019-01-05T03:28:23.000000000", + "2019-01-05T03:29:45.000000000", + "2019-01-05T03:29:57.000000000", + "2019-01-05T03:30:11.000000000", + "2019-01-05T03:30:21.000000000", + "2019-01-05T03:31:54.000000000", + "2019-01-05T03:32:10.000000000", + "2019-01-05T03:32:44.000000000", + "2019-01-05T03:34:33.000000000", + "2019-01-05T03:35:03.000000000", + "2019-01-05T03:35:19.000000000", + "2019-01-05T03:35:21.000000000", + "2019-01-05T03:35:36.000000000", + "2019-01-05T03:36:29.000000000", + "2019-01-05T03:38:41.000000000", + "2019-01-05T03:40:31.000000000", + "2019-01-05T03:41:28.000000000", + "2019-01-05T03:42:31.000000000", + "2019-01-05T03:44:17.000000000", + "2019-01-05T03:46:10.000000000", + "2019-01-05T03:48:37.000000000", + "2019-01-05T03:51:41.000000000", + "2019-01-05T03:52:32.000000000", + "2019-01-05T03:55:41.000000000", + "2019-01-05T03:55:53.000000000", + "2019-01-05T03:56:17.000000000", + "2019-01-05T03:56:34.000000000", + "2019-01-05T03:58:01.000000000", + "2019-01-05T03:58:10.000000000", + "2019-01-05T03:58:31.000000000", + "2019-01-05T03:59:32.000000000", + "2019-01-05T04:00:30.000000000", + "2019-01-05T04:00:37.000000000", + "2019-01-05T04:00:57.000000000", + "2019-01-05T04:01:03.000000000", + "2019-01-05T04:02:00.000000000", + "2019-01-05T04:04:27.000000000", + "2019-01-05T04:09:51.000000000", + "2019-01-05T04:10:05.000000000", + "2019-01-05T04:10:19.000000000", + "2019-01-05T04:10:20.000000000", + "2019-01-05T04:10:34.000000000", + "2019-01-05T04:10:37.000000000", + "2019-01-05T04:12:33.000000000", + "2019-01-05T04:13:21.000000000", + "2019-01-05T04:15:28.000000000", + "2019-01-05T04:15:48.000000000", + "2019-01-05T04:17:31.000000000", + "2019-01-05T04:17:49.000000000", + "2019-01-05T04:18:49.000000000", + "2019-01-05T04:20:00.000000000", + "2019-01-05T04:20:53.000000000", + "2019-01-05T04:22:16.000000000", + "2019-01-05T04:22:40.000000000", + "2019-01-05T04:22:55.000000000", + "2019-01-05T04:24:00.000000000", + "2019-01-05T04:24:15.000000000", + "2019-01-05T04:25:34.000000000", + "2019-01-05T04:26:31.000000000", + "2019-01-05T04:26:52.000000000", + "2019-01-05T04:27:54.000000000", + "2019-01-05T04:28:58.000000000", + "2019-01-05T04:29:17.000000000", + "2019-01-05T04:31:29.000000000", + "2019-01-05T04:31:57.000000000", + "2019-01-05T04:32:24.000000000", + "2019-01-05T04:34:53.000000000", + "2019-01-05T04:34:54.000000000", + "2019-01-05T04:35:11.000000000", + "2019-01-05T04:36:36.000000000", + "2019-01-05T04:36:50.000000000", + "2019-01-05T04:39:16.000000000", + "2019-01-05T04:39:42.000000000", + "2019-01-05T04:39:51.000000000", + "2019-01-05T04:40:44.000000000", + "2019-01-05T04:40:50.000000000", + "2019-01-05T04:42:09.000000000", + "2019-01-05T04:42:36.000000000", + "2019-01-05T04:42:45.000000000", + "2019-01-05T04:43:34.000000000", + "2019-01-05T04:45:15.000000000", + "2019-01-05T04:46:29.000000000", + "2019-01-05T04:47:12.000000000", + "2019-01-05T04:47:24.000000000", + "2019-01-05T04:48:22.000000000", + "2019-01-05T04:50:14.000000000", + "2019-01-05T04:50:15.000000000", + "2019-01-05T04:51:16.000000000", + "2019-01-05T04:52:16.000000000", + "2019-01-05T04:52:19.000000000", + "2019-01-05T04:54:09.000000000", + "2019-01-05T04:55:15.000000000", + "2019-01-05T04:55:48.000000000", + "2019-01-05T04:56:50.000000000", + "2019-01-05T05:00:02.000000000", + "2019-01-05T05:00:47.000000000", + "2019-01-05T05:01:17.000000000", + "2019-01-05T05:01:24.000000000", + "2019-01-05T05:03:20.000000000", + "2019-01-05T05:04:03.000000000", + "2019-01-05T05:04:53.000000000", + "2019-01-05T05:05:16.000000000", + "2019-01-05T05:05:51.000000000", + "2019-01-05T05:09:11.000000000", + "2019-01-05T05:09:26.000000000", + "2019-01-05T05:10:00.000000000", + "2019-01-05T05:11:40.000000000", + "2019-01-05T05:12:04.000000000", + "2019-01-05T05:13:02.000000000", + "2019-01-05T05:14:08.000000000", + "2019-01-05T05:14:28.000000000", + "2019-01-05T05:14:45.000000000", + "2019-01-05T05:15:40.000000000", + "2019-01-05T05:17:11.000000000", + "2019-01-05T05:20:29.000000000", + "2019-01-05T05:22:57.000000000", + "2019-01-05T05:23:16.000000000", + "2019-01-05T05:24:38.000000000", + "2019-01-05T05:24:42.000000000", + "2019-01-05T05:24:43.000000000", + "2019-01-05T05:26:13.000000000", + "2019-01-05T05:26:16.000000000", + "2019-01-05T05:26:22.000000000", + "2019-01-05T05:26:52.000000000", + "2019-01-05T05:26:57.000000000", + "2019-01-05T05:27:51.000000000", + "2019-01-05T05:28:33.000000000", + "2019-01-05T05:28:46.000000000", + "2019-01-05T05:28:58.000000000", + "2019-01-05T05:29:22.000000000", + "2019-01-05T05:29:32.000000000", + "2019-01-05T05:29:55.000000000", + "2019-01-05T05:30:25.000000000", + "2019-01-05T05:30:38.000000000", + "2019-01-05T05:31:38.000000000", + "2019-01-05T05:32:49.000000000", + "2019-01-05T05:33:35.000000000", + "2019-01-05T05:34:25.000000000", + "2019-01-05T05:35:27.000000000", + "2019-01-05T05:35:40.000000000", + "2019-01-05T05:37:11.000000000", + "2019-01-05T05:37:32.000000000", + "2019-01-05T05:37:51.000000000", + "2019-01-05T05:37:57.000000000", + "2019-01-05T05:41:00.000000000", + "2019-01-05T05:42:17.000000000", + "2019-01-05T05:42:31.000000000", + "2019-01-05T05:44:39.000000000", + "2019-01-05T05:46:52.000000000", + "2019-01-05T05:48:03.000000000", + "2019-01-05T05:48:40.000000000", + "2019-01-05T05:52:28.000000000", + "2019-01-05T05:53:13.000000000", + "2019-01-05T05:56:56.000000000", + "2019-01-05T05:58:57.000000000", + "2019-01-05T05:59:04.000000000", + "2019-01-05T05:59:53.000000000", + "2019-01-05T06:00:17.000000000", + "2019-01-05T06:01:29.000000000", + "2019-01-05T06:01:49.000000000", + "2019-01-05T06:03:12.000000000", + "2019-01-05T06:04:49.000000000", + "2019-01-05T06:04:56.000000000", + "2019-01-05T06:05:27.000000000", + "2019-01-05T06:05:42.000000000", + "2019-01-05T06:06:00.000000000", + "2019-01-05T06:06:02.000000000", + "2019-01-05T06:06:08.000000000", + "2019-01-05T06:07:49.000000000", + "2019-01-05T06:08:03.000000000", + "2019-01-05T06:08:05.000000000", + "2019-01-05T06:08:35.000000000", + "2019-01-05T06:08:39.000000000", + "2019-01-05T06:08:56.000000000", + "2019-01-05T06:09:55.000000000", + "2019-01-05T06:10:24.000000000", + "2019-01-05T06:12:06.000000000", + "2019-01-05T06:12:14.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:27.000000000", + "2019-01-05T06:13:45.000000000", + "2019-01-05T06:13:50.000000000", + "2019-01-05T06:13:53.000000000", + "2019-01-05T06:14:52.000000000", + "2019-01-05T06:15:27.000000000", + "2019-01-05T06:18:29.000000000", + "2019-01-05T06:18:30.000000000", + "2019-01-05T06:18:47.000000000", + "2019-01-05T06:19:20.000000000", + "2019-01-05T06:20:11.000000000", + "2019-01-05T06:22:49.000000000", + "2019-01-05T06:23:19.000000000", + "2019-01-05T06:27:07.000000000", + "2019-01-05T06:31:26.000000000", + "2019-01-05T06:31:49.000000000", + "2019-01-05T06:32:17.000000000", + "2019-01-05T06:34:29.000000000", + "2019-01-05T06:34:31.000000000", + "2019-01-05T06:34:32.000000000", + "2019-01-05T06:36:45.000000000", + "2019-01-05T06:38:06.000000000", + "2019-01-05T06:39:46.000000000", + "2019-01-05T06:40:46.000000000", + "2019-01-05T06:42:00.000000000", + "2019-01-05T06:42:07.000000000", + "2019-01-05T06:42:55.000000000", + "2019-01-05T06:44:59.000000000", + "2019-01-05T06:46:17.000000000", + "2019-01-05T06:46:43.000000000", + "2019-01-05T06:47:01.000000000", + "2019-01-05T06:47:02.000000000", + "2019-01-05T06:48:46.000000000", + "2019-01-05T06:52:19.000000000", + "2019-01-05T06:53:16.000000000", + "2019-01-05T06:54:33.000000000", + "2019-01-05T06:55:37.000000000", + "2019-01-05T06:58:09.000000000", + "2019-01-05T06:58:41.000000000", + "2019-01-05T06:58:56.000000000", + "2019-01-05T06:59:50.000000000", + "2019-01-05T07:00:23.000000000", + "2019-01-05T07:00:41.000000000", + "2019-01-05T07:01:36.000000000", + "2019-01-05T07:02:14.000000000", + "2019-01-05T07:02:47.000000000", + "2019-01-05T07:03:31.000000000", + "2019-01-05T07:05:04.000000000", + "2019-01-05T07:05:23.000000000", + "2019-01-05T07:06:00.000000000", + "2019-01-05T07:06:55.000000000", + "2019-01-05T07:07:05.000000000", + "2019-01-05T07:07:33.000000000", + "2019-01-05T07:09:43.000000000", + "2019-01-05T07:10:03.000000000", + "2019-01-05T07:11:16.000000000", + "2019-01-05T07:12:00.000000000", + "2019-01-05T07:16:06.000000000", + "2019-01-05T07:16:08.000000000", + "2019-01-05T07:16:21.000000000", + "2019-01-05T07:16:33.000000000", + "2019-01-05T07:17:29.000000000", + "2019-01-05T07:18:16.000000000", + "2019-01-05T07:18:46.000000000", + "2019-01-05T07:19:23.000000000", + "2019-01-05T07:19:33.000000000", + "2019-01-05T07:19:38.000000000", + "2019-01-05T07:24:43.000000000", + "2019-01-05T07:26:05.000000000", + "2019-01-05T07:26:44.000000000", + "2019-01-05T07:28:40.000000000", + "2019-01-05T07:30:07.000000000", + "2019-01-05T07:30:52.000000000", + "2019-01-05T07:30:54.000000000", + "2019-01-05T07:31:25.000000000", + "2019-01-05T07:33:24.000000000", + "2019-01-05T07:33:28.000000000", + "2019-01-05T07:35:08.000000000", + "2019-01-05T07:35:11.000000000", + "2019-01-05T07:36:27.000000000", + "2019-01-05T07:40:03.000000000", + "2019-01-05T07:41:28.000000000", + "2019-01-05T07:43:13.000000000", + "2019-01-05T07:43:17.000000000", + "2019-01-05T07:44:12.000000000", + "2019-01-05T07:44:27.000000000", + "2019-01-05T07:44:29.000000000", + "2019-01-05T07:45:27.000000000", + "2019-01-05T07:47:05.000000000", + "2019-01-05T07:48:07.000000000", + "2019-01-05T07:48:38.000000000", + "2019-01-05T07:50:33.000000000", + "2019-01-05T07:50:54.000000000", + "2019-01-05T07:51:23.000000000", + "2019-01-05T07:52:54.000000000", + "2019-01-05T07:54:56.000000000", + "2019-01-05T07:56:05.000000000", + "2019-01-05T07:58:29.000000000", + "2019-01-05T08:02:46.000000000", + "2019-01-05T08:03:24.000000000", + "2019-01-05T08:05:15.000000000", + "2019-01-05T08:05:23.000000000", + "2019-01-05T08:05:40.000000000", + "2019-01-05T08:09:18.000000000", + "2019-01-05T08:09:51.000000000", + "2019-01-05T08:10:01.000000000", + "2019-01-05T08:10:54.000000000", + "2019-01-05T08:11:45.000000000", + "2019-01-05T08:12:13.000000000", + "2019-01-05T08:19:00.000000000", + "2019-01-05T08:20:14.000000000", + "2019-01-05T08:21:28.000000000", + "2019-01-05T08:21:42.000000000", + "2019-01-05T08:23:14.000000000", + "2019-01-05T08:23:18.000000000", + "2019-01-05T08:23:49.000000000", + "2019-01-05T08:23:54.000000000", + "2019-01-05T08:24:43.000000000", + "2019-01-05T08:26:36.000000000", + "2019-01-05T08:26:59.000000000", + "2019-01-05T08:29:43.000000000", + "2019-01-05T08:30:11.000000000", + "2019-01-05T08:30:32.000000000", + "2019-01-05T08:30:59.000000000", + "2019-01-05T08:31:48.000000000", + "2019-01-05T08:32:44.000000000", + "2019-01-05T08:33:29.000000000", + "2019-01-05T08:34:33.000000000", + "2019-01-05T08:39:10.000000000", + "2019-01-05T08:39:12.000000000", + "2019-01-05T08:41:13.000000000", + "2019-01-05T08:42:59.000000000", + "2019-01-05T08:44:04.000000000", + "2019-01-05T08:45:03.000000000", + "2019-01-05T08:45:35.000000000", + "2019-01-05T08:45:50.000000000", + "2019-01-05T08:45:58.000000000", + "2019-01-05T08:46:39.000000000", + "2019-01-05T08:48:02.000000000", + "2019-01-05T08:50:02.000000000", + "2019-01-05T08:50:41.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:32.000000000", + "2019-01-05T08:51:40.000000000", + "2019-01-05T08:51:44.000000000", + "2019-01-05T08:51:48.000000000", + "2019-01-05T08:52:16.000000000", + "2019-01-05T08:54:00.000000000", + "2019-01-05T08:54:01.000000000", + "2019-01-05T08:54:16.000000000", + "2019-01-05T08:55:01.000000000", + "2019-01-05T08:56:43.000000000", + "2019-01-05T08:59:31.000000000", + "2019-01-05T09:00:01.000000000", + "2019-01-05T09:00:14.000000000", + "2019-01-05T09:00:39.000000000", + "2019-01-05T09:00:44.000000000", + "2019-01-05T09:01:34.000000000", + "2019-01-05T09:02:23.000000000", + "2019-01-05T09:02:51.000000000", + "2019-01-05T09:03:01.000000000", + "2019-01-05T09:03:28.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:06:21.000000000", + "2019-01-05T09:07:52.000000000", + "2019-01-05T09:09:37.000000000", + "2019-01-05T09:10:12.000000000", + "2019-01-05T09:10:13.000000000", + "2019-01-05T09:10:48.000000000", + "2019-01-05T09:11:06.000000000", + "2019-01-05T09:11:13.000000000", + "2019-01-05T09:11:44.000000000", + "2019-01-05T09:14:18.000000000", + "2019-01-05T09:14:45.000000000", + "2019-01-05T09:15:15.000000000", + "2019-01-05T09:16:09.000000000", + "2019-01-05T09:16:33.000000000", + "2019-01-05T09:18:54.000000000", + "2019-01-05T09:21:45.000000000", + "2019-01-05T09:21:46.000000000", + "2019-01-05T09:26:32.000000000", + "2019-01-05T09:27:01.000000000", + "2019-01-05T09:27:04.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:54.000000000", + "2019-01-05T09:31:27.000000000", + "2019-01-05T09:31:47.000000000", + "2019-01-05T09:32:29.000000000", + "2019-01-05T09:36:18.000000000", + "2019-01-05T09:38:59.000000000", + "2019-01-05T09:39:59.000000000", + "2019-01-05T09:40:16.000000000", + "2019-01-05T09:41:01.000000000", + "2019-01-05T09:41:12.000000000", + "2019-01-05T09:41:21.000000000", + "2019-01-05T09:43:09.000000000", + "2019-01-05T09:43:11.000000000", + "2019-01-05T09:43:21.000000000", + "2019-01-05T09:45:42.000000000", + "2019-01-05T09:45:44.000000000", + "2019-01-05T09:46:38.000000000", + "2019-01-05T09:47:12.000000000", + "2019-01-05T09:47:49.000000000", + "2019-01-05T09:49:35.000000000", + "2019-01-05T09:51:37.000000000", + "2019-01-05T09:52:25.000000000", + "2019-01-05T09:52:35.000000000", + "2019-01-05T09:52:46.000000000", + "2019-01-05T09:55:58.000000000", + "2019-01-05T09:56:50.000000000", + "2019-01-05T09:57:50.000000000", + "2019-01-05T09:58:32.000000000", + "2019-01-05T10:00:49.000000000", + "2019-01-05T10:01:57.000000000", + "2019-01-05T10:03:00.000000000", + "2019-01-05T10:03:58.000000000", + "2019-01-05T10:04:18.000000000", + "2019-01-05T10:04:20.000000000", + "2019-01-05T10:04:40.000000000", + "2019-01-05T10:04:46.000000000", + "2019-01-05T10:05:09.000000000", + "2019-01-05T10:07:15.000000000", + "2019-01-05T10:08:40.000000000", + "2019-01-05T10:09:25.000000000", + "2019-01-05T10:10:13.000000000", + "2019-01-05T10:10:38.000000000", + "2019-01-05T10:10:47.000000000", + "2019-01-05T10:13:11.000000000", + "2019-01-05T10:14:09.000000000", + "2019-01-05T10:14:55.000000000", + "2019-01-05T10:15:50.000000000", + "2019-01-05T10:15:59.000000000", + "2019-01-05T10:17:41.000000000", + "2019-01-05T10:19:48.000000000", + "2019-01-05T10:20:54.000000000", + "2019-01-05T10:23:50.000000000", + "2019-01-05T10:24:04.000000000", + "2019-01-05T10:24:19.000000000", + "2019-01-05T10:24:55.000000000", + "2019-01-05T10:25:19.000000000", + "2019-01-05T10:25:48.000000000", + "2019-01-05T10:26:03.000000000", + "2019-01-05T10:26:50.000000000", + "2019-01-05T10:27:49.000000000", + "2019-01-05T10:27:50.000000000", + "2019-01-05T10:27:59.000000000", + "2019-01-05T10:29:53.000000000", + "2019-01-05T10:30:33.000000000", + "2019-01-05T10:30:39.000000000", + "2019-01-05T10:31:36.000000000", + "2019-01-05T10:32:28.000000000", + "2019-01-05T10:34:24.000000000", + "2019-01-05T10:36:04.000000000", + "2019-01-05T10:36:19.000000000", + "2019-01-05T10:37:25.000000000", + "2019-01-05T10:42:07.000000000", + "2019-01-05T10:42:41.000000000", + "2019-01-05T10:43:19.000000000", + "2019-01-05T10:46:38.000000000", + "2019-01-05T10:47:14.000000000", + "2019-01-05T10:47:58.000000000", + "2019-01-05T10:48:45.000000000", + "2019-01-05T10:49:17.000000000", + "2019-01-05T10:49:23.000000000", + "2019-01-05T10:49:31.000000000", + "2019-01-05T10:50:36.000000000", + "2019-01-05T10:52:18.000000000", + "2019-01-05T10:52:25.000000000", + "2019-01-05T10:53:13.000000000", + "2019-01-05T10:53:23.000000000", + "2019-01-05T10:55:48.000000000", + "2019-01-05T10:56:07.000000000", + "2019-01-05T10:58:09.000000000", + "2019-01-05T10:59:42.000000000", + "2019-01-05T11:01:20.000000000", + "2019-01-05T11:04:04.000000000", + "2019-01-05T11:04:36.000000000", + "2019-01-05T11:05:42.000000000", + "2019-01-05T11:06:45.000000000", + "2019-01-05T11:08:54.000000000", + "2019-01-05T11:10:42.000000000", + "2019-01-05T11:11:29.000000000", + "2019-01-05T11:11:47.000000000", + "2019-01-05T11:12:32.000000000", + "2019-01-05T11:13:37.000000000", + "2019-01-05T11:13:56.000000000", + "2019-01-05T11:14:17.000000000", + "2019-01-05T11:15:40.000000000", + "2019-01-05T11:16:35.000000000", + "2019-01-05T11:16:58.000000000", + "2019-01-05T11:16:59.000000000", + "2019-01-05T11:18:05.000000000", + "2019-01-05T11:19:34.000000000", + "2019-01-05T11:20:17.000000000", + "2019-01-05T11:21:28.000000000", + "2019-01-05T11:21:45.000000000", + "2019-01-05T11:22:02.000000000", + "2019-01-05T11:23:01.000000000", + "2019-01-05T11:25:51.000000000", + "2019-01-05T11:26:36.000000000", + "2019-01-05T11:27:34.000000000", + "2019-01-05T11:28:52.000000000", + "2019-01-05T11:29:44.000000000", + "2019-01-05T11:31:11.000000000", + "2019-01-05T11:31:23.000000000", + "2019-01-05T11:34:17.000000000", + "2019-01-05T11:37:04.000000000", + "2019-01-05T11:37:41.000000000", + "2019-01-05T11:38:55.000000000", + "2019-01-05T11:40:47.000000000", + "2019-01-05T11:43:38.000000000", + "2019-01-05T11:45:00.000000000", + "2019-01-05T11:45:16.000000000", + "2019-01-05T11:45:39.000000000", + "2019-01-05T11:46:08.000000000", + "2019-01-05T11:50:09.000000000", + "2019-01-05T11:51:21.000000000", + "2019-01-05T11:51:32.000000000", + "2019-01-05T11:52:21.000000000", + "2019-01-05T11:53:21.000000000", + "2019-01-05T11:53:36.000000000", + "2019-01-05T11:54:24.000000000", + "2019-01-05T11:55:37.000000000", + "2019-01-05T11:56:07.000000000", + "2019-01-05T11:56:20.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:30.000000000", + "2019-01-05T11:57:28.000000000", + "2019-01-05T11:57:45.000000000", + "2019-01-05T12:00:06.000000000", + "2019-01-05T12:01:10.000000000", + "2019-01-05T12:01:19.000000000", + "2019-01-05T12:01:30.000000000", + "2019-01-05T12:02:11.000000000", + "2019-01-05T12:02:35.000000000", + "2019-01-05T12:03:42.000000000", + "2019-01-05T12:04:12.000000000", + "2019-01-05T12:05:14.000000000", + "2019-01-05T12:06:52.000000000", + "2019-01-05T12:07:21.000000000", + "2019-01-05T12:07:45.000000000", + "2019-01-05T12:08:20.000000000", + "2019-01-05T12:08:37.000000000", + "2019-01-05T12:11:11.000000000", + "2019-01-05T12:12:31.000000000", + "2019-01-05T12:12:52.000000000", + "2019-01-05T12:12:59.000000000", + "2019-01-05T12:14:52.000000000", + "2019-01-05T12:15:15.000000000", + "2019-01-05T12:16:40.000000000", + "2019-01-05T12:17:14.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:18:22.000000000", + "2019-01-05T12:18:59.000000000", + "2019-01-05T12:19:47.000000000", + "2019-01-05T12:20:16.000000000", + "2019-01-05T12:20:42.000000000", + "2019-01-05T12:22:24.000000000", + "2019-01-05T12:23:31.000000000", + "2019-01-05T12:26:54.000000000", + "2019-01-05T12:27:01.000000000", + "2019-01-05T12:28:06.000000000", + "2019-01-05T12:29:46.000000000", + "2019-01-05T12:30:26.000000000", + "2019-01-05T12:30:50.000000000", + "2019-01-05T12:31:50.000000000", + "2019-01-05T12:32:21.000000000", + "2019-01-05T12:32:44.000000000", + "2019-01-05T12:32:48.000000000", + "2019-01-05T12:34:51.000000000", + "2019-01-05T12:35:28.000000000", + "2019-01-05T12:35:31.000000000", + "2019-01-05T12:38:55.000000000", + "2019-01-05T12:40:00.000000000", + "2019-01-05T12:40:12.000000000", + "2019-01-05T12:40:50.000000000", + "2019-01-05T12:41:47.000000000", + "2019-01-05T12:42:16.000000000", + "2019-01-05T12:43:49.000000000", + "2019-01-05T12:44:11.000000000", + "2019-01-05T12:47:57.000000000", + "2019-01-05T12:48:09.000000000", + "2019-01-05T12:48:17.000000000", + "2019-01-05T12:49:23.000000000", + "2019-01-05T12:49:30.000000000", + "2019-01-05T12:49:43.000000000", + "2019-01-05T12:50:08.000000000", + "2019-01-05T12:54:28.000000000", + "2019-01-05T12:56:26.000000000", + "2019-01-05T12:58:43.000000000", + "2019-01-05T12:58:49.000000000", + "2019-01-05T12:59:48.000000000", + "2019-01-05T13:02:39.000000000", + "2019-01-05T13:02:45.000000000", + "2019-01-05T13:03:29.000000000", + "2019-01-05T13:03:44.000000000", + "2019-01-05T13:03:55.000000000", + "2019-01-05T13:05:06.000000000", + "2019-01-05T13:05:38.000000000", + "2019-01-05T13:06:16.000000000", + "2019-01-05T13:07:54.000000000", + "2019-01-05T13:08:00.000000000", + "2019-01-05T13:08:21.000000000", + "2019-01-05T13:10:46.000000000", + "2019-01-05T13:12:20.000000000", + "2019-01-05T13:13:00.000000000", + "2019-01-05T13:13:51.000000000", + "2019-01-05T13:15:10.000000000", + "2019-01-05T13:15:16.000000000", + "2019-01-05T13:15:30.000000000", + "2019-01-05T13:16:29.000000000", + "2019-01-05T13:16:46.000000000", + "2019-01-05T13:17:04.000000000", + "2019-01-05T13:18:59.000000000", + "2019-01-05T13:19:49.000000000", + "2019-01-05T13:22:00.000000000", + "2019-01-05T13:22:09.000000000", + "2019-01-05T13:23:00.000000000", + "2019-01-05T13:23:57.000000000", + "2019-01-05T13:24:00.000000000", + "2019-01-05T13:24:16.000000000", + "2019-01-05T13:24:33.000000000", + "2019-01-05T13:26:24.000000000", + "2019-01-05T13:26:28.000000000", + "2019-01-05T13:27:27.000000000", + "2019-01-05T13:27:35.000000000", + "2019-01-05T13:29:55.000000000", + "2019-01-05T13:30:34.000000000", + "2019-01-05T13:30:36.000000000", + "2019-01-05T13:32:15.000000000", + "2019-01-05T13:32:47.000000000", + "2019-01-05T13:32:58.000000000", + "2019-01-05T13:33:02.000000000", + "2019-01-05T13:33:28.000000000", + "2019-01-05T13:34:33.000000000", + "2019-01-05T13:35:35.000000000", + "2019-01-05T13:35:38.000000000", + "2019-01-05T13:35:39.000000000", + "2019-01-05T13:35:45.000000000", + "2019-01-05T13:37:07.000000000", + "2019-01-05T13:38:28.000000000", + "2019-01-05T13:39:11.000000000", + "2019-01-05T13:39:57.000000000", + "2019-01-05T13:40:28.000000000", + "2019-01-05T13:40:56.000000000", + "2019-01-05T13:41:23.000000000", + "2019-01-05T13:41:52.000000000", + "2019-01-05T13:42:37.000000000", + "2019-01-05T13:43:23.000000000", + "2019-01-05T13:43:29.000000000", + "2019-01-05T13:46:38.000000000", + "2019-01-05T13:47:29.000000000", + "2019-01-05T13:47:45.000000000", + "2019-01-05T13:48:57.000000000", + "2019-01-05T13:51:05.000000000", + "2019-01-05T13:51:50.000000000", + "2019-01-05T13:51:53.000000000", + "2019-01-05T13:52:09.000000000", + "2019-01-05T13:52:22.000000000", + "2019-01-05T13:52:50.000000000", + "2019-01-05T13:54:07.000000000", + "2019-01-05T13:54:16.000000000", + "2019-01-05T13:54:22.000000000", + "2019-01-05T13:54:37.000000000", + "2019-01-05T13:55:18.000000000", + "2019-01-05T13:55:20.000000000", + "2019-01-05T13:56:15.000000000", + "2019-01-05T13:57:26.000000000", + "2019-01-05T13:57:50.000000000", + "2019-01-05T13:58:19.000000000", + "2019-01-05T13:58:51.000000000", + "2019-01-05T14:03:07.000000000", + "2019-01-05T14:04:36.000000000", + "2019-01-05T14:05:43.000000000", + "2019-01-05T14:06:06.000000000", + "2019-01-05T14:06:35.000000000", + "2019-01-05T14:08:23.000000000", + "2019-01-05T14:10:11.000000000", + "2019-01-05T14:11:16.000000000", + "2019-01-05T14:12:36.000000000", + "2019-01-05T14:15:12.000000000", + "2019-01-05T14:17:14.000000000", + "2019-01-05T14:18:08.000000000", + "2019-01-05T14:19:49.000000000", + "2019-01-05T14:20:48.000000000", + "2019-01-05T14:21:20.000000000", + "2019-01-05T14:21:46.000000000", + "2019-01-05T14:22:46.000000000", + "2019-01-05T14:23:12.000000000", + "2019-01-05T14:24:26.000000000", + "2019-01-05T14:25:24.000000000", + "2019-01-05T14:28:45.000000000", + "2019-01-05T14:30:34.000000000", + "2019-01-05T14:33:48.000000000", + "2019-01-05T14:33:52.000000000", + "2019-01-05T14:34:18.000000000", + "2019-01-05T14:34:34.000000000", + "2019-01-05T14:35:38.000000000", + "2019-01-05T14:37:31.000000000", + "2019-01-05T14:39:14.000000000", + "2019-01-05T14:39:49.000000000", + "2019-01-05T14:42:43.000000000", + "2019-01-05T14:43:16.000000000", + "2019-01-05T14:44:08.000000000", + "2019-01-05T14:44:53.000000000", + "2019-01-05T14:45:32.000000000", + "2019-01-05T14:45:46.000000000", + "2019-01-05T14:45:57.000000000", + "2019-01-05T14:47:23.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:52:38.000000000", + "2019-01-05T14:54:17.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:56:35.000000000", + "2019-01-05T14:57:01.000000000", + "2019-01-05T14:57:15.000000000", + "2019-01-05T14:57:51.000000000", + "2019-01-05T14:58:46.000000000", + "2019-01-05T15:00:29.000000000", + "2019-01-05T15:01:48.000000000", + "2019-01-05T15:06:00.000000000", + "2019-01-05T15:06:24.000000000", + "2019-01-05T15:07:10.000000000", + "2019-01-05T15:08:27.000000000", + "2019-01-05T15:08:30.000000000", + "2019-01-05T15:09:55.000000000", + "2019-01-05T15:11:17.000000000", + "2019-01-05T15:11:22.000000000", + "2019-01-05T15:11:34.000000000", + "2019-01-05T15:12:06.000000000", + "2019-01-05T15:14:40.000000000", + "2019-01-05T15:15:51.000000000", + "2019-01-05T15:18:48.000000000", + "2019-01-05T15:18:57.000000000", + "2019-01-05T15:21:47.000000000", + "2019-01-05T15:22:34.000000000", + "2019-01-05T15:23:18.000000000", + "2019-01-05T15:23:33.000000000", + "2019-01-05T15:24:51.000000000", + "2019-01-05T15:25:11.000000000", + "2019-01-05T15:25:13.000000000", + "2019-01-05T15:26:21.000000000", + "2019-01-05T15:27:38.000000000", + "2019-01-05T15:29:24.000000000", + "2019-01-05T15:30:13.000000000", + "2019-01-05T15:32:27.000000000", + "2019-01-05T15:32:44.000000000", + "2019-01-05T15:33:02.000000000", + "2019-01-05T15:33:04.000000000", + "2019-01-05T15:34:20.000000000", + "2019-01-05T15:36:13.000000000", + "2019-01-05T15:36:35.000000000", + "2019-01-05T15:37:06.000000000", + "2019-01-05T15:39:03.000000000", + "2019-01-05T15:40:03.000000000", + "2019-01-05T15:41:29.000000000", + "2019-01-05T15:41:46.000000000", + "2019-01-05T15:42:17.000000000", + "2019-01-05T15:43:02.000000000", + "2019-01-05T15:43:13.000000000", + "2019-01-05T15:44:14.000000000", + "2019-01-05T15:44:58.000000000", + "2019-01-05T15:46:11.000000000", + "2019-01-05T15:47:11.000000000", + "2019-01-05T15:49:20.000000000", + "2019-01-05T15:50:09.000000000", + "2019-01-05T15:53:01.000000000", + "2019-01-05T15:54:28.000000000", + "2019-01-05T15:54:41.000000000", + "2019-01-05T15:56:30.000000000", + "2019-01-05T15:56:32.000000000", + "2019-01-05T15:58:40.000000000", + "2019-01-05T15:58:41.000000000", + "2019-01-05T15:58:53.000000000", + "2019-01-05T16:01:23.000000000", + "2019-01-05T16:01:54.000000000", + "2019-01-05T16:01:57.000000000", + "2019-01-05T16:03:09.000000000", + "2019-01-05T16:04:24.000000000", + "2019-01-05T16:05:37.000000000", + "2019-01-05T16:05:46.000000000", + "2019-01-05T16:06:14.000000000", + "2019-01-05T16:07:23.000000000", + "2019-01-05T16:09:09.000000000", + "2019-01-05T16:11:02.000000000", + "2019-01-05T16:12:16.000000000", + "2019-01-05T16:12:45.000000000", + "2019-01-05T16:13:04.000000000", + "2019-01-05T16:14:43.000000000", + "2019-01-05T16:15:12.000000000", + "2019-01-05T16:15:22.000000000", + "2019-01-05T16:16:39.000000000", + "2019-01-05T16:16:46.000000000", + "2019-01-05T16:17:36.000000000", + "2019-01-05T16:18:52.000000000", + "2019-01-05T16:19:34.000000000", + "2019-01-05T16:19:37.000000000", + "2019-01-05T16:20:47.000000000", + "2019-01-05T16:21:30.000000000", + "2019-01-05T16:22:05.000000000", + "2019-01-05T16:22:45.000000000", + "2019-01-05T16:22:56.000000000", + "2019-01-05T16:23:10.000000000", + "2019-01-05T16:23:17.000000000", + "2019-01-05T16:25:00.000000000", + "2019-01-05T16:27:05.000000000", + "2019-01-05T16:28:48.000000000", + "2019-01-05T16:29:09.000000000", + "2019-01-05T16:31:14.000000000", + "2019-01-05T16:31:42.000000000", + "2019-01-05T16:32:38.000000000", + "2019-01-05T16:33:22.000000000", + "2019-01-05T16:36:05.000000000", + "2019-01-05T16:36:20.000000000", + "2019-01-05T16:39:53.000000000", + "2019-01-05T16:40:01.000000000", + "2019-01-05T16:40:06.000000000", + "2019-01-05T16:40:57.000000000", + "2019-01-05T16:41:59.000000000", + "2019-01-05T16:44:01.000000000", + "2019-01-05T16:45:06.000000000", + "2019-01-05T16:46:00.000000000", + "2019-01-05T16:46:01.000000000", + "2019-01-05T16:46:09.000000000", + "2019-01-05T16:46:35.000000000", + "2019-01-05T16:47:04.000000000", + "2019-01-05T16:47:22.000000000", + "2019-01-05T16:47:24.000000000", + "2019-01-05T16:48:32.000000000", + "2019-01-05T16:49:31.000000000", + "2019-01-05T16:50:36.000000000", + "2019-01-05T16:51:44.000000000", + "2019-01-05T16:52:17.000000000", + "2019-01-05T16:52:55.000000000", + "2019-01-05T16:53:22.000000000", + "2019-01-05T16:54:32.000000000", + "2019-01-05T16:55:41.000000000", + "2019-01-05T16:56:15.000000000", + "2019-01-05T16:57:32.000000000", + "2019-01-05T16:59:21.000000000", + "2019-01-05T16:59:53.000000000", + "2019-01-05T17:00:55.000000000", + "2019-01-05T17:01:11.000000000", + "2019-01-05T17:03:43.000000000", + "2019-01-05T17:04:31.000000000", + "2019-01-05T17:04:40.000000000", + "2019-01-05T17:05:41.000000000", + "2019-01-05T17:07:05.000000000", + "2019-01-05T17:07:23.000000000", + "2019-01-05T17:08:16.000000000", + "2019-01-05T17:08:59.000000000", + "2019-01-05T17:11:17.000000000", + "2019-01-05T17:12:56.000000000", + "2019-01-05T17:16:29.000000000", + "2019-01-05T17:17:06.000000000", + "2019-01-05T17:17:08.000000000", + "2019-01-05T17:17:26.000000000", + "2019-01-05T17:19:10.000000000", + "2019-01-05T17:19:12.000000000", + "2019-01-05T17:19:26.000000000", + "2019-01-05T17:19:45.000000000", + "2019-01-05T17:21:21.000000000", + "2019-01-05T17:23:08.000000000", + "2019-01-05T17:24:00.000000000", + "2019-01-05T17:24:34.000000000", + "2019-01-05T17:25:01.000000000", + "2019-01-05T17:27:55.000000000", + "2019-01-05T17:28:23.000000000", + "2019-01-05T17:30:30.000000000", + "2019-01-05T17:31:00.000000000", + "2019-01-05T17:32:53.000000000", + "2019-01-05T17:33:05.000000000", + "2019-01-05T17:33:15.000000000", + "2019-01-05T17:33:25.000000000", + "2019-01-05T17:33:27.000000000", + "2019-01-05T17:36:05.000000000", + "2019-01-05T17:36:54.000000000", + "2019-01-05T17:37:39.000000000", + "2019-01-05T17:38:10.000000000", + "2019-01-05T17:38:20.000000000", + "2019-01-05T17:38:50.000000000", + "2019-01-05T17:40:43.000000000", + "2019-01-05T17:40:47.000000000", + "2019-01-05T17:41:25.000000000", + "2019-01-05T17:41:38.000000000", + "2019-01-05T17:41:46.000000000", + "2019-01-05T17:42:08.000000000", + "2019-01-05T17:43:30.000000000", + "2019-01-05T17:44:27.000000000", + "2019-01-05T17:45:29.000000000", + "2019-01-05T17:45:43.000000000", + "2019-01-05T17:46:17.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:49:40.000000000", + "2019-01-05T17:51:06.000000000", + "2019-01-05T17:51:50.000000000", + "2019-01-05T17:52:35.000000000", + "2019-01-05T17:52:53.000000000", + "2019-01-05T17:53:08.000000000", + "2019-01-05T17:53:29.000000000", + "2019-01-05T17:53:37.000000000", + "2019-01-05T17:53:38.000000000", + "2019-01-05T17:54:09.000000000", + "2019-01-05T17:54:32.000000000", + "2019-01-05T17:54:45.000000000", + "2019-01-05T17:55:01.000000000", + "2019-01-05T17:56:32.000000000", + "2019-01-05T17:57:38.000000000", + "2019-01-05T17:58:57.000000000", + "2019-01-05T17:59:19.000000000", + "2019-01-05T18:00:43.000000000", + "2019-01-05T18:01:47.000000000", + "2019-01-05T18:03:03.000000000", + "2019-01-05T18:04:05.000000000", + "2019-01-05T18:05:10.000000000", + "2019-01-05T18:06:06.000000000", + "2019-01-05T18:06:13.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:24.000000000", + "2019-01-05T18:06:48.000000000", + "2019-01-05T18:07:16.000000000", + "2019-01-05T18:10:41.000000000", + "2019-01-05T18:12:52.000000000", + "2019-01-05T18:13:29.000000000", + "2019-01-05T18:13:40.000000000", + "2019-01-05T18:14:58.000000000", + "2019-01-05T18:15:26.000000000", + "2019-01-05T18:16:15.000000000", + "2019-01-05T18:19:02.000000000", + "2019-01-05T18:21:11.000000000", + "2019-01-05T18:25:41.000000000", + "2019-01-05T18:25:43.000000000", + "2019-01-05T18:27:56.000000000", + "2019-01-05T18:28:23.000000000", + "2019-01-05T18:30:09.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:31:26.000000000", + "2019-01-05T18:31:53.000000000", + "2019-01-05T18:32:24.000000000", + "2019-01-05T18:36:09.000000000", + "2019-01-05T18:37:29.000000000", + "2019-01-05T18:37:34.000000000", + "2019-01-05T18:37:59.000000000", + "2019-01-05T18:39:19.000000000", + "2019-01-05T18:41:42.000000000", + "2019-01-05T18:42:17.000000000", + "2019-01-05T18:42:30.000000000", + "2019-01-05T18:43:12.000000000", + "2019-01-05T18:45:40.000000000", + "2019-01-05T18:46:48.000000000", + "2019-01-05T18:47:14.000000000", + "2019-01-05T18:48:27.000000000", + "2019-01-05T18:48:54.000000000", + "2019-01-05T18:50:27.000000000", + "2019-01-05T18:50:50.000000000", + "2019-01-05T18:51:55.000000000", + "2019-01-05T18:52:29.000000000", + "2019-01-05T18:53:24.000000000", + "2019-01-05T18:53:41.000000000", + "2019-01-05T18:54:59.000000000", + "2019-01-05T18:55:47.000000000", + "2019-01-05T18:57:05.000000000", + "2019-01-05T18:57:42.000000000", + "2019-01-05T18:57:54.000000000", + "2019-01-05T18:59:01.000000000", + "2019-01-05T18:59:18.000000000", + "2019-01-05T19:00:48.000000000", + "2019-01-05T19:01:32.000000000", + "2019-01-05T19:01:36.000000000", + "2019-01-05T19:03:43.000000000", + "2019-01-05T19:04:14.000000000", + "2019-01-05T19:04:40.000000000", + "2019-01-05T19:05:13.000000000", + "2019-01-05T19:07:24.000000000", + "2019-01-05T19:08:11.000000000", + "2019-01-05T19:10:10.000000000", + "2019-01-05T19:11:20.000000000", + "2019-01-05T19:11:46.000000000", + "2019-01-05T19:12:15.000000000", + "2019-01-05T19:12:28.000000000", + "2019-01-05T19:13:06.000000000", + "2019-01-05T19:17:13.000000000", + "2019-01-05T19:19:01.000000000", + "2019-01-05T19:19:47.000000000", + "2019-01-05T19:20:43.000000000", + "2019-01-05T19:21:31.000000000", + "2019-01-05T19:21:53.000000000", + "2019-01-05T19:21:59.000000000", + "2019-01-05T19:22:11.000000000", + "2019-01-05T19:22:25.000000000", + "2019-01-05T19:22:30.000000000", + "2019-01-05T19:23:48.000000000", + "2019-01-05T19:25:52.000000000", + "2019-01-05T19:26:13.000000000", + "2019-01-05T19:26:18.000000000", + "2019-01-05T19:26:58.000000000", + "2019-01-05T19:28:20.000000000", + "2019-01-05T19:28:43.000000000", + "2019-01-05T19:29:16.000000000", + "2019-01-05T19:30:16.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:45.000000000", + "2019-01-05T19:30:48.000000000", + "2019-01-05T19:32:05.000000000", + "2019-01-05T19:32:13.000000000", + "2019-01-05T19:32:33.000000000", + "2019-01-05T19:33:00.000000000", + "2019-01-05T19:33:13.000000000", + "2019-01-05T19:34:00.000000000", + "2019-01-05T19:34:38.000000000", + "2019-01-05T19:36:26.000000000", + "2019-01-05T19:39:27.000000000", + "2019-01-05T19:39:43.000000000", + "2019-01-05T19:40:04.000000000", + "2019-01-05T19:40:32.000000000", + "2019-01-05T19:41:15.000000000", + "2019-01-05T19:42:03.000000000", + "2019-01-05T19:46:04.000000000", + "2019-01-05T19:46:32.000000000", + "2019-01-05T19:46:48.000000000", + "2019-01-05T19:47:57.000000000", + "2019-01-05T19:48:20.000000000", + "2019-01-05T19:49:19.000000000", + "2019-01-05T19:49:28.000000000", + "2019-01-05T19:51:03.000000000", + "2019-01-05T19:52:16.000000000", + "2019-01-05T19:52:43.000000000", + "2019-01-05T19:55:23.000000000", + "2019-01-05T19:55:24.000000000", + "2019-01-05T19:55:28.000000000", + "2019-01-05T19:56:55.000000000", + "2019-01-05T19:57:00.000000000", + "2019-01-05T19:58:34.000000000", + "2019-01-05T19:59:58.000000000", + "2019-01-05T20:00:10.000000000", + "2019-01-05T20:01:00.000000000", + "2019-01-05T20:01:08.000000000", + "2019-01-05T20:01:28.000000000", + "2019-01-05T20:05:11.000000000", + "2019-01-05T20:05:37.000000000", + "2019-01-05T20:05:42.000000000", + "2019-01-05T20:08:15.000000000", + "2019-01-05T20:09:50.000000000", + "2019-01-05T20:11:06.000000000", + "2019-01-05T20:13:14.000000000", + "2019-01-05T20:14:24.000000000", + "2019-01-05T20:16:12.000000000", + "2019-01-05T20:16:17.000000000", + "2019-01-05T20:16:29.000000000", + "2019-01-05T20:16:41.000000000", + "2019-01-05T20:17:49.000000000", + "2019-01-05T20:20:04.000000000", + "2019-01-05T20:22:07.000000000", + "2019-01-05T20:22:47.000000000", + "2019-01-05T20:29:17.000000000", + "2019-01-05T20:30:06.000000000", + "2019-01-05T20:30:32.000000000", + "2019-01-05T20:32:58.000000000", + "2019-01-05T20:34:04.000000000", + "2019-01-05T20:34:32.000000000", + "2019-01-05T20:35:13.000000000", + "2019-01-05T20:35:23.000000000", + "2019-01-05T20:36:48.000000000", + "2019-01-05T20:38:42.000000000", + "2019-01-05T20:39:36.000000000", + "2019-01-05T20:40:10.000000000", + "2019-01-05T20:40:25.000000000", + "2019-01-05T20:42:48.000000000", + "2019-01-05T20:43:54.000000000", + "2019-01-05T20:44:07.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:45:45.000000000", + "2019-01-05T20:47:22.000000000", + "2019-01-05T20:50:38.000000000", + "2019-01-05T20:50:43.000000000", + "2019-01-05T20:53:04.000000000", + "2019-01-05T20:53:13.000000000", + "2019-01-05T20:53:52.000000000", + "2019-01-05T20:54:18.000000000", + "2019-01-05T20:55:30.000000000", + "2019-01-05T20:55:41.000000000", + "2019-01-05T20:55:44.000000000", + "2019-01-05T20:56:31.000000000", + "2019-01-05T20:58:14.000000000", + "2019-01-05T20:59:14.000000000", + "2019-01-05T20:59:32.000000000", + "2019-01-05T21:00:27.000000000", + "2019-01-05T21:00:58.000000000", + "2019-01-05T21:02:10.000000000", + "2019-01-05T21:02:54.000000000", + "2019-01-05T21:03:21.000000000", + "2019-01-05T21:03:32.000000000", + "2019-01-05T21:04:40.000000000", + "2019-01-05T21:05:02.000000000", + "2019-01-05T21:05:50.000000000", + "2019-01-05T21:06:37.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:10:43.000000000", + "2019-01-05T21:11:34.000000000", + "2019-01-05T21:11:45.000000000", + "2019-01-05T21:13:02.000000000", + "2019-01-05T21:17:18.000000000", + "2019-01-05T21:18:23.000000000", + "2019-01-05T21:18:41.000000000", + "2019-01-05T21:20:50.000000000", + "2019-01-05T21:21:30.000000000", + "2019-01-05T21:22:38.000000000", + "2019-01-05T21:23:26.000000000", + "2019-01-05T21:24:39.000000000", + "2019-01-05T21:25:11.000000000", + "2019-01-05T21:26:13.000000000", + "2019-01-05T21:26:14.000000000", + "2019-01-05T21:27:12.000000000", + "2019-01-05T21:27:30.000000000", + "2019-01-05T21:27:34.000000000", + "2019-01-05T21:27:39.000000000", + "2019-01-05T21:27:53.000000000", + "2019-01-05T21:32:01.000000000", + "2019-01-05T21:32:19.000000000", + "2019-01-05T21:33:29.000000000", + "2019-01-05T21:34:30.000000000", + "2019-01-05T21:36:00.000000000", + "2019-01-05T21:36:56.000000000", + "2019-01-05T21:40:36.000000000", + "2019-01-05T21:43:36.000000000", + "2019-01-05T21:43:41.000000000", + "2019-01-05T21:45:29.000000000", + "2019-01-05T21:46:40.000000000", + "2019-01-05T21:47:28.000000000", + "2019-01-05T21:48:42.000000000", + "2019-01-05T21:49:24.000000000", + "2019-01-05T21:49:44.000000000", + "2019-01-05T21:51:35.000000000", + "2019-01-05T21:52:47.000000000", + "2019-01-05T21:53:08.000000000", + "2019-01-05T21:53:55.000000000", + "2019-01-05T21:58:22.000000000", + "2019-01-05T22:01:13.000000000", + "2019-01-05T22:01:39.000000000", + "2019-01-05T22:01:44.000000000", + "2019-01-05T22:02:40.000000000", + "2019-01-05T22:03:47.000000000", + "2019-01-05T22:04:06.000000000", + "2019-01-05T22:04:57.000000000", + "2019-01-05T22:06:30.000000000", + "2019-01-05T22:06:42.000000000", + "2019-01-05T22:06:59.000000000", + "2019-01-05T22:07:10.000000000", + "2019-01-05T22:07:35.000000000", + "2019-01-05T22:07:40.000000000", + "2019-01-05T22:08:20.000000000", + "2019-01-05T22:08:58.000000000", + "2019-01-05T22:09:18.000000000", + "2019-01-05T22:12:20.000000000", + "2019-01-05T22:14:19.000000000", + "2019-01-05T22:14:58.000000000", + "2019-01-05T22:16:38.000000000", + "2019-01-05T22:16:45.000000000", + "2019-01-05T22:18:17.000000000", + "2019-01-05T22:18:45.000000000", + "2019-01-05T22:19:30.000000000", + "2019-01-05T22:20:15.000000000", + "2019-01-05T22:20:45.000000000", + "2019-01-05T22:21:56.000000000", + "2019-01-05T22:22:20.000000000", + "2019-01-05T22:23:51.000000000", + "2019-01-05T22:24:13.000000000", + "2019-01-05T22:24:23.000000000", + "2019-01-05T22:24:35.000000000", + "2019-01-05T22:25:22.000000000", + "2019-01-05T22:26:00.000000000", + "2019-01-05T22:28:19.000000000", + "2019-01-05T22:29:12.000000000", + "2019-01-05T22:31:01.000000000", + "2019-01-05T22:33:48.000000000", + "2019-01-05T22:33:59.000000000", + "2019-01-05T22:35:28.000000000", + "2019-01-05T22:36:06.000000000", + "2019-01-05T22:37:19.000000000", + "2019-01-05T22:39:01.000000000", + "2019-01-05T22:39:38.000000000", + "2019-01-05T22:40:51.000000000", + "2019-01-05T22:41:18.000000000", + "2019-01-05T22:44:40.000000000", + "2019-01-05T22:45:43.000000000", + "2019-01-05T22:46:17.000000000", + "2019-01-05T22:47:06.000000000", + "2019-01-05T22:47:20.000000000", + "2019-01-05T22:47:37.000000000", + "2019-01-05T22:48:47.000000000", + "2019-01-05T22:51:38.000000000", + "2019-01-05T22:51:44.000000000", + "2019-01-05T22:51:47.000000000", + "2019-01-05T22:52:12.000000000", + "2019-01-05T22:53:12.000000000", + "2019-01-05T22:54:01.000000000", + "2019-01-05T22:54:38.000000000", + "2019-01-05T22:55:26.000000000", + "2019-01-05T22:56:09.000000000", + "2019-01-05T22:56:58.000000000", + "2019-01-05T23:00:25.000000000", + "2019-01-05T23:00:32.000000000", + "2019-01-05T23:00:45.000000000", + "2019-01-05T23:03:01.000000000", + "2019-01-05T23:04:36.000000000", + "2019-01-05T23:04:43.000000000", + "2019-01-05T23:05:07.000000000", + "2019-01-05T23:05:11.000000000", + "2019-01-05T23:05:50.000000000", + "2019-01-05T23:06:53.000000000", + "2019-01-05T23:12:28.000000000", + "2019-01-05T23:12:32.000000000", + "2019-01-05T23:13:17.000000000", + "2019-01-05T23:13:59.000000000", + "2019-01-05T23:18:13.000000000", + "2019-01-05T23:20:37.000000000", + "2019-01-05T23:20:43.000000000", + "2019-01-05T23:22:35.000000000", + "2019-01-05T23:23:02.000000000", + "2019-01-05T23:25:44.000000000", + "2019-01-05T23:26:21.000000000", + "2019-01-05T23:26:47.000000000", + "2019-01-05T23:28:32.000000000", + "2019-01-05T23:29:31.000000000", + "2019-01-05T23:30:07.000000000", + "2019-01-05T23:30:23.000000000", + "2019-01-05T23:33:50.000000000", + "2019-01-05T23:34:00.000000000", + "2019-01-05T23:34:06.000000000", + "2019-01-05T23:34:16.000000000", + "2019-01-05T23:35:16.000000000", + "2019-01-05T23:35:45.000000000", + "2019-01-05T23:35:58.000000000", + "2019-01-05T23:37:18.000000000", + "2019-01-05T23:37:26.000000000", + "2019-01-05T23:37:51.000000000", + "2019-01-05T23:38:29.000000000", + "2019-01-05T23:38:46.000000000", + "2019-01-05T23:38:54.000000000", + "2019-01-05T23:43:02.000000000", + "2019-01-05T23:44:12.000000000", + "2019-01-05T23:46:08.000000000", + "2019-01-05T23:46:26.000000000", + "2019-01-05T23:47:00.000000000", + "2019-01-05T23:47:30.000000000", + "2019-01-05T23:49:51.000000000", + "2019-01-05T23:50:12.000000000", + "2019-01-05T23:51:36.000000000", + "2019-01-05T23:51:45.000000000", + "2019-01-05T23:52:48.000000000", + "2019-01-05T23:53:02.000000000", + "2019-01-05T23:53:06.000000000", + "2019-01-05T23:53:58.000000000", + "2019-01-05T23:55:21.000000000", + "2019-01-05T23:55:42.000000000", + "2019-01-05T23:56:06.000000000", + "2019-01-05T23:56:31.000000000", + "2019-01-05T23:56:32.000000000", + "2019-01-05T23:57:49.000000000", + "2019-01-05T23:58:27.000000000", + "2019-01-06T00:00:34.000000000", + "2019-01-06T00:01:21.000000000", + "2019-01-06T00:02:09.000000000", + "2019-01-06T00:03:25.000000000", + "2019-01-06T00:03:29.000000000", + "2019-01-06T00:03:40.000000000", + "2019-01-06T00:03:48.000000000", + "2019-01-06T00:04:32.000000000", + "2019-01-06T00:06:14.000000000", + "2019-01-06T00:06:25.000000000", + "2019-01-06T00:06:51.000000000", + "2019-01-06T00:07:13.000000000", + "2019-01-06T00:09:22.000000000", + "2019-01-06T00:09:27.000000000", + "2019-01-06T00:09:50.000000000", + "2019-01-06T00:11:12.000000000", + "2019-01-06T00:12:35.000000000", + "2019-01-06T00:12:47.000000000", + "2019-01-06T00:13:20.000000000", + "2019-01-06T00:13:50.000000000", + "2019-01-06T00:15:37.000000000", + "2019-01-06T00:16:59.000000000", + "2019-01-06T00:17:00.000000000", + "2019-01-06T00:17:53.000000000", + "2019-01-06T00:18:47.000000000", + "2019-01-06T00:19:20.000000000", + "2019-01-06T00:23:06.000000000", + "2019-01-06T00:23:32.000000000", + "2019-01-06T00:23:49.000000000", + "2019-01-06T00:24:26.000000000", + "2019-01-06T00:24:47.000000000", + "2019-01-06T00:25:00.000000000", + "2019-01-06T00:25:32.000000000", + "2019-01-06T00:25:48.000000000", + "2019-01-06T00:26:10.000000000", + "2019-01-06T00:27:22.000000000", + "2019-01-06T00:28:27.000000000", + "2019-01-06T00:28:41.000000000", + "2019-01-06T00:28:45.000000000", + "2019-01-06T00:30:29.000000000", + "2019-01-06T00:30:43.000000000", + "2019-01-06T00:30:55.000000000", + "2019-01-06T00:31:25.000000000", + "2019-01-06T00:31:27.000000000", + "2019-01-06T00:32:39.000000000", + "2019-01-06T00:33:27.000000000", + "2019-01-06T00:35:40.000000000", + "2019-01-06T00:35:44.000000000", + "2019-01-06T00:37:48.000000000", + "2019-01-06T00:38:14.000000000", + "2019-01-06T00:39:23.000000000", + "2019-01-06T00:41:14.000000000", + "2019-01-06T00:42:34.000000000", + "2019-01-06T00:43:23.000000000", + "2019-01-06T00:43:33.000000000", + "2019-01-06T00:43:54.000000000", + "2019-01-06T00:43:55.000000000", + "2019-01-06T00:44:42.000000000", + "2019-01-06T00:46:13.000000000", + "2019-01-06T00:47:54.000000000", + "2019-01-06T00:48:28.000000000", + "2019-01-06T00:49:05.000000000", + "2019-01-06T00:50:08.000000000", + "2019-01-06T00:50:11.000000000", + "2019-01-06T00:50:49.000000000", + "2019-01-06T00:51:55.000000000", + "2019-01-06T00:53:08.000000000", + "2019-01-06T00:56:15.000000000", + "2019-01-06T00:56:26.000000000", + "2019-01-06T00:56:46.000000000", + "2019-01-06T01:01:57.000000000", + "2019-01-06T01:03:17.000000000", + "2019-01-06T01:03:23.000000000", + "2019-01-06T01:04:27.000000000", + "2019-01-06T01:04:36.000000000", + "2019-01-06T01:07:59.000000000", + "2019-01-06T01:08:12.000000000", + "2019-01-06T01:09:21.000000000", + "2019-01-06T01:09:31.000000000", + "2019-01-06T01:10:14.000000000", + "2019-01-06T01:10:17.000000000", + "2019-01-06T01:10:31.000000000", + "2019-01-06T01:11:36.000000000", + "2019-01-06T01:11:46.000000000", + "2019-01-06T01:13:27.000000000", + "2019-01-06T01:13:31.000000000", + "2019-01-06T01:15:01.000000000", + "2019-01-06T01:15:08.000000000", + "2019-01-06T01:15:26.000000000", + "2019-01-06T01:16:00.000000000", + "2019-01-06T01:16:20.000000000", + "2019-01-06T01:17:48.000000000", + "2019-01-06T01:18:03.000000000", + "2019-01-06T01:20:11.000000000", + "2019-01-06T01:21:08.000000000", + "2019-01-06T01:21:32.000000000", + "2019-01-06T01:22:04.000000000", + "2019-01-06T01:22:21.000000000", + "2019-01-06T01:22:53.000000000", + "2019-01-06T01:24:16.000000000", + "2019-01-06T01:25:09.000000000", + "2019-01-06T01:27:47.000000000", + "2019-01-06T01:28:41.000000000", + "2019-01-06T01:29:26.000000000", + "2019-01-06T01:29:45.000000000", + "2019-01-06T01:30:37.000000000", + "2019-01-06T01:33:37.000000000", + "2019-01-06T01:34:43.000000000", + "2019-01-06T01:35:38.000000000", + "2019-01-06T01:37:19.000000000", + "2019-01-06T01:37:55.000000000", + "2019-01-06T01:38:10.000000000", + "2019-01-06T01:39:50.000000000", + "2019-01-06T01:39:58.000000000", + "2019-01-06T01:40:26.000000000", + "2019-01-06T01:40:54.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:44:13.000000000", + "2019-01-06T01:47:30.000000000", + "2019-01-06T01:48:09.000000000", + "2019-01-06T01:48:17.000000000", + "2019-01-06T01:48:57.000000000", + "2019-01-06T01:50:06.000000000", + "2019-01-06T01:50:54.000000000", + "2019-01-06T01:50:56.000000000", + "2019-01-06T01:51:09.000000000", + "2019-01-06T01:52:22.000000000", + "2019-01-06T01:52:33.000000000", + "2019-01-06T01:53:59.000000000", + "2019-01-06T01:55:03.000000000", + "2019-01-06T01:56:15.000000000", + "2019-01-06T01:56:39.000000000", + "2019-01-06T01:59:24.000000000", + "2019-01-06T02:01:57.000000000", + "2019-01-06T02:04:00.000000000", + "2019-01-06T02:04:01.000000000", + "2019-01-06T02:08:57.000000000", + "2019-01-06T02:10:03.000000000", + "2019-01-06T02:11:26.000000000", + "2019-01-06T02:12:35.000000000", + "2019-01-06T02:12:44.000000000", + "2019-01-06T02:13:49.000000000", + "2019-01-06T02:16:02.000000000", + "2019-01-06T02:16:14.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:17:07.000000000", + "2019-01-06T02:17:08.000000000", + "2019-01-06T02:18:47.000000000", + "2019-01-06T02:20:53.000000000", + "2019-01-06T02:23:43.000000000", + "2019-01-06T02:26:07.000000000", + "2019-01-06T02:27:09.000000000", + "2019-01-06T02:28:36.000000000", + "2019-01-06T02:28:55.000000000", + "2019-01-06T02:30:10.000000000", + "2019-01-06T02:31:22.000000000", + "2019-01-06T02:33:14.000000000", + "2019-01-06T02:33:57.000000000", + "2019-01-06T02:35:31.000000000", + "2019-01-06T02:35:37.000000000", + "2019-01-06T02:36:52.000000000", + "2019-01-06T02:36:55.000000000", + "2019-01-06T02:37:09.000000000", + "2019-01-06T02:37:17.000000000", + "2019-01-06T02:38:06.000000000", + "2019-01-06T02:38:57.000000000", + "2019-01-06T02:40:03.000000000", + "2019-01-06T02:41:25.000000000", + "2019-01-06T02:42:02.000000000", + "2019-01-06T02:43:24.000000000", + "2019-01-06T02:43:42.000000000", + "2019-01-06T02:43:43.000000000", + "2019-01-06T02:44:05.000000000", + "2019-01-06T02:49:56.000000000", + "2019-01-06T02:52:20.000000000", + "2019-01-06T02:54:17.000000000", + "2019-01-06T02:56:03.000000000", + "2019-01-06T02:59:45.000000000", + "2019-01-06T03:00:42.000000000", + "2019-01-06T03:01:05.000000000", + "2019-01-06T03:02:26.000000000", + "2019-01-06T03:03:03.000000000", + "2019-01-06T03:05:28.000000000", + "2019-01-06T03:08:35.000000000", + "2019-01-06T03:09:25.000000000", + "2019-01-06T03:10:20.000000000", + "2019-01-06T03:11:00.000000000", + "2019-01-06T03:11:43.000000000", + "2019-01-06T03:13:29.000000000", + "2019-01-06T03:16:48.000000000", + "2019-01-06T03:16:49.000000000", + "2019-01-06T03:17:37.000000000", + "2019-01-06T03:17:39.000000000", + "2019-01-06T03:18:39.000000000", + "2019-01-06T03:18:46.000000000", + "2019-01-06T03:19:52.000000000", + "2019-01-06T03:20:08.000000000", + "2019-01-06T03:20:39.000000000", + "2019-01-06T03:20:56.000000000", + "2019-01-06T03:21:46.000000000", + "2019-01-06T03:22:48.000000000", + "2019-01-06T03:23:03.000000000", + "2019-01-06T03:24:16.000000000", + "2019-01-06T03:32:38.000000000", + "2019-01-06T03:34:06.000000000", + "2019-01-06T03:34:12.000000000", + "2019-01-06T03:34:25.000000000", + "2019-01-06T03:34:57.000000000", + "2019-01-06T03:37:39.000000000", + "2019-01-06T03:38:47.000000000", + "2019-01-06T03:39:10.000000000", + "2019-01-06T03:40:52.000000000", + "2019-01-06T03:43:35.000000000", + "2019-01-06T03:43:36.000000000", + "2019-01-06T03:44:20.000000000", + "2019-01-06T03:45:40.000000000", + "2019-01-06T03:47:29.000000000", + "2019-01-06T03:49:45.000000000", + "2019-01-06T03:50:32.000000000", + "2019-01-06T03:50:35.000000000", + "2019-01-06T03:51:56.000000000", + "2019-01-06T03:52:34.000000000", + "2019-01-06T03:54:05.000000000", + "2019-01-06T03:54:51.000000000", + "2019-01-06T03:55:31.000000000", + "2019-01-06T03:55:36.000000000", + "2019-01-06T03:58:55.000000000", + "2019-01-06T04:00:23.000000000", + "2019-01-06T04:00:33.000000000", + "2019-01-06T04:02:31.000000000", + "2019-01-06T04:02:40.000000000", + "2019-01-06T04:02:46.000000000", + "2019-01-06T04:03:30.000000000", + "2019-01-06T04:04:56.000000000", + "2019-01-06T04:06:19.000000000", + "2019-01-06T04:07:51.000000000", + "2019-01-06T04:08:22.000000000", + "2019-01-06T04:09:23.000000000", + "2019-01-06T04:10:00.000000000", + "2019-01-06T04:10:49.000000000", + "2019-01-06T04:10:57.000000000", + "2019-01-06T04:11:44.000000000", + "2019-01-06T04:11:58.000000000", + "2019-01-06T04:13:30.000000000", + "2019-01-06T04:13:37.000000000", + "2019-01-06T04:15:40.000000000", + "2019-01-06T04:17:24.000000000", + "2019-01-06T04:18:40.000000000", + "2019-01-06T04:19:16.000000000", + "2019-01-06T04:19:24.000000000", + "2019-01-06T04:20:18.000000000", + "2019-01-06T04:21:05.000000000", + "2019-01-06T04:21:06.000000000", + "2019-01-06T04:21:50.000000000", + "2019-01-06T04:22:21.000000000", + "2019-01-06T04:23:48.000000000", + "2019-01-06T04:25:23.000000000", + "2019-01-06T04:26:13.000000000", + "2019-01-06T04:27:00.000000000", + "2019-01-06T04:30:07.000000000", + "2019-01-06T04:30:48.000000000", + "2019-01-06T04:31:13.000000000", + "2019-01-06T04:32:47.000000000", + "2019-01-06T04:34:28.000000000", + "2019-01-06T04:34:29.000000000", + "2019-01-06T04:34:32.000000000", + "2019-01-06T04:35:00.000000000", + "2019-01-06T04:35:11.000000000", + "2019-01-06T04:36:03.000000000", + "2019-01-06T04:39:15.000000000", + "2019-01-06T04:41:29.000000000", + "2019-01-06T04:43:03.000000000", + "2019-01-06T04:43:25.000000000", + "2019-01-06T04:43:29.000000000", + "2019-01-06T04:43:36.000000000", + "2019-01-06T04:44:27.000000000", + "2019-01-06T04:45:27.000000000", + "2019-01-06T04:46:09.000000000", + "2019-01-06T04:49:21.000000000", + "2019-01-06T04:49:25.000000000", + "2019-01-06T04:53:14.000000000", + "2019-01-06T04:54:54.000000000", + "2019-01-06T04:55:02.000000000", + "2019-01-06T04:55:47.000000000", + "2019-01-06T04:55:57.000000000", + "2019-01-06T04:56:32.000000000", + "2019-01-06T04:57:26.000000000", + "2019-01-06T04:57:41.000000000", + "2019-01-06T04:58:06.000000000", + "2019-01-06T04:58:47.000000000", + "2019-01-06T04:59:15.000000000", + "2019-01-06T05:01:51.000000000", + "2019-01-06T05:01:52.000000000", + "2019-01-06T05:01:57.000000000", + "2019-01-06T05:02:36.000000000", + "2019-01-06T05:03:13.000000000", + "2019-01-06T05:05:18.000000000", + "2019-01-06T05:06:03.000000000", + "2019-01-06T05:07:09.000000000", + "2019-01-06T05:07:32.000000000", + "2019-01-06T05:08:38.000000000", + "2019-01-06T05:10:55.000000000", + "2019-01-06T05:11:02.000000000", + "2019-01-06T05:13:18.000000000", + "2019-01-06T05:15:21.000000000", + "2019-01-06T05:16:16.000000000", + "2019-01-06T05:17:42.000000000", + "2019-01-06T05:18:03.000000000", + "2019-01-06T05:18:39.000000000", + "2019-01-06T05:18:47.000000000", + "2019-01-06T05:23:03.000000000", + "2019-01-06T05:23:12.000000000", + "2019-01-06T05:23:29.000000000", + "2019-01-06T05:25:26.000000000", + "2019-01-06T05:25:38.000000000", + "2019-01-06T05:25:40.000000000", + "2019-01-06T05:26:42.000000000", + "2019-01-06T05:27:42.000000000", + "2019-01-06T05:28:12.000000000", + "2019-01-06T05:28:32.000000000", + "2019-01-06T05:28:37.000000000", + "2019-01-06T05:29:29.000000000", + "2019-01-06T05:31:31.000000000", + "2019-01-06T05:32:21.000000000", + "2019-01-06T05:32:33.000000000", + "2019-01-06T05:33:02.000000000", + "2019-01-06T05:33:29.000000000", + "2019-01-06T05:34:44.000000000", + "2019-01-06T05:36:11.000000000", + "2019-01-06T05:36:19.000000000", + "2019-01-06T05:38:07.000000000", + "2019-01-06T05:39:14.000000000", + "2019-01-06T05:40:21.000000000", + "2019-01-06T05:40:43.000000000", + "2019-01-06T05:41:01.000000000", + "2019-01-06T05:41:07.000000000", + "2019-01-06T05:42:16.000000000", + "2019-01-06T05:42:21.000000000", + "2019-01-06T05:42:24.000000000", + "2019-01-06T05:44:07.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:45:51.000000000", + "2019-01-06T05:45:55.000000000", + "2019-01-06T05:46:03.000000000", + "2019-01-06T05:46:34.000000000", + "2019-01-06T05:48:18.000000000", + "2019-01-06T05:51:32.000000000", + "2019-01-06T05:51:38.000000000", + "2019-01-06T05:52:56.000000000", + "2019-01-06T05:52:57.000000000", + "2019-01-06T05:58:10.000000000", + "2019-01-06T06:00:07.000000000", + "2019-01-06T06:00:23.000000000", + "2019-01-06T06:01:43.000000000", + "2019-01-06T06:03:13.000000000", + "2019-01-06T06:04:27.000000000", + "2019-01-06T06:04:48.000000000", + "2019-01-06T06:06:53.000000000", + "2019-01-06T06:06:59.000000000", + "2019-01-06T06:09:01.000000000", + "2019-01-06T06:09:08.000000000", + "2019-01-06T06:09:36.000000000", + "2019-01-06T06:09:57.000000000", + "2019-01-06T06:10:15.000000000", + "2019-01-06T06:10:55.000000000", + "2019-01-06T06:11:50.000000000", + "2019-01-06T06:11:51.000000000", + "2019-01-06T06:13:35.000000000", + "2019-01-06T06:14:18.000000000", + "2019-01-06T06:14:31.000000000", + "2019-01-06T06:15:52.000000000", + "2019-01-06T06:16:01.000000000", + "2019-01-06T06:16:45.000000000", + "2019-01-06T06:16:46.000000000", + "2019-01-06T06:18:12.000000000", + "2019-01-06T06:20:38.000000000", + "2019-01-06T06:20:40.000000000", + "2019-01-06T06:23:10.000000000", + "2019-01-06T06:23:47.000000000", + "2019-01-06T06:26:26.000000000", + "2019-01-06T06:28:01.000000000", + "2019-01-06T06:28:31.000000000", + "2019-01-06T06:28:51.000000000", + "2019-01-06T06:33:35.000000000", + "2019-01-06T06:34:39.000000000", + "2019-01-06T06:36:56.000000000", + "2019-01-06T06:37:47.000000000", + "2019-01-06T06:39:50.000000000", + "2019-01-06T06:40:14.000000000", + "2019-01-06T06:40:42.000000000", + "2019-01-06T06:41:01.000000000", + "2019-01-06T06:41:11.000000000", + "2019-01-06T06:41:20.000000000", + "2019-01-06T06:41:21.000000000", + "2019-01-06T06:41:32.000000000", + "2019-01-06T06:41:47.000000000", + "2019-01-06T06:42:03.000000000", + "2019-01-06T06:42:12.000000000", + "2019-01-06T06:45:14.000000000", + "2019-01-06T06:48:30.000000000", + "2019-01-06T06:49:57.000000000", + "2019-01-06T06:53:02.000000000", + "2019-01-06T06:53:28.000000000", + "2019-01-06T06:54:04.000000000", + "2019-01-06T06:54:16.000000000", + "2019-01-06T06:54:20.000000000", + "2019-01-06T06:57:05.000000000", + "2019-01-06T06:57:27.000000000", + "2019-01-06T06:58:31.000000000", + "2019-01-06T06:59:07.000000000", + "2019-01-06T06:59:41.000000000", + "2019-01-06T06:59:48.000000000", + "2019-01-06T07:01:23.000000000", + "2019-01-06T07:01:40.000000000", + "2019-01-06T07:01:51.000000000", + "2019-01-06T07:04:27.000000000", + "2019-01-06T07:04:57.000000000", + "2019-01-06T07:05:29.000000000", + "2019-01-06T07:05:41.000000000", + "2019-01-06T07:06:51.000000000", + "2019-01-06T07:07:57.000000000", + "2019-01-06T07:10:19.000000000", + "2019-01-06T07:12:05.000000000", + "2019-01-06T07:13:26.000000000", + "2019-01-06T07:14:30.000000000", + "2019-01-06T07:15:16.000000000", + "2019-01-06T07:15:53.000000000", + "2019-01-06T07:21:29.000000000", + "2019-01-06T07:22:36.000000000", + "2019-01-06T07:22:43.000000000", + "2019-01-06T07:23:03.000000000", + "2019-01-06T07:24:49.000000000", + "2019-01-06T07:24:59.000000000", + "2019-01-06T07:25:01.000000000", + "2019-01-06T07:25:23.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:27:30.000000000", + "2019-01-06T07:27:33.000000000", + "2019-01-06T07:27:54.000000000", + "2019-01-06T07:28:11.000000000", + "2019-01-06T07:28:48.000000000", + "2019-01-06T07:29:59.000000000", + "2019-01-06T07:30:10.000000000", + "2019-01-06T07:30:16.000000000", + "2019-01-06T07:30:29.000000000", + "2019-01-06T07:32:12.000000000", + "2019-01-06T07:34:01.000000000", + "2019-01-06T07:37:25.000000000", + "2019-01-06T07:39:11.000000000", + "2019-01-06T07:40:38.000000000", + "2019-01-06T07:40:44.000000000", + "2019-01-06T07:43:16.000000000", + "2019-01-06T07:45:34.000000000", + "2019-01-06T07:46:29.000000000", + "2019-01-06T07:47:04.000000000", + "2019-01-06T07:47:06.000000000", + "2019-01-06T07:48:21.000000000", + "2019-01-06T07:49:06.000000000", + "2019-01-06T07:50:03.000000000", + "2019-01-06T07:51:08.000000000", + "2019-01-06T07:53:50.000000000", + "2019-01-06T07:53:51.000000000", + "2019-01-06T07:54:20.000000000", + "2019-01-06T07:54:23.000000000", + "2019-01-06T07:54:37.000000000", + "2019-01-06T07:56:28.000000000", + "2019-01-06T07:57:27.000000000", + "2019-01-06T07:57:51.000000000", + "2019-01-06T07:59:36.000000000", + "2019-01-06T08:02:08.000000000", + "2019-01-06T08:02:22.000000000", + "2019-01-06T08:02:50.000000000", + "2019-01-06T08:03:16.000000000", + "2019-01-06T08:04:29.000000000", + "2019-01-06T08:05:26.000000000", + "2019-01-06T08:05:27.000000000", + "2019-01-06T08:06:43.000000000", + "2019-01-06T08:08:05.000000000", + "2019-01-06T08:10:14.000000000", + "2019-01-06T08:10:31.000000000", + "2019-01-06T08:11:11.000000000", + "2019-01-06T08:11:17.000000000", + "2019-01-06T08:12:55.000000000", + "2019-01-06T08:12:57.000000000", + "2019-01-06T08:14:17.000000000", + "2019-01-06T08:15:24.000000000", + "2019-01-06T08:16:43.000000000", + "2019-01-06T08:16:45.000000000", + "2019-01-06T08:17:14.000000000", + "2019-01-06T08:18:21.000000000", + "2019-01-06T08:20:02.000000000", + "2019-01-06T08:21:40.000000000", + "2019-01-06T08:22:10.000000000", + "2019-01-06T08:23:24.000000000", + "2019-01-06T08:23:30.000000000", + "2019-01-06T08:26:43.000000000", + "2019-01-06T08:27:56.000000000", + "2019-01-06T08:28:26.000000000", + "2019-01-06T08:28:58.000000000", + "2019-01-06T08:30:57.000000000", + "2019-01-06T08:32:27.000000000", + "2019-01-06T08:33:59.000000000", + "2019-01-06T08:34:03.000000000", + "2019-01-06T08:35:05.000000000", + "2019-01-06T08:35:57.000000000", + "2019-01-06T08:36:06.000000000", + "2019-01-06T08:36:51.000000000", + "2019-01-06T08:36:59.000000000", + "2019-01-06T08:37:16.000000000", + "2019-01-06T08:37:35.000000000", + "2019-01-06T08:37:39.000000000", + "2019-01-06T08:40:10.000000000", + "2019-01-06T08:40:30.000000000", + "2019-01-06T08:40:40.000000000", + "2019-01-06T08:41:25.000000000", + "2019-01-06T08:41:54.000000000", + "2019-01-06T08:42:44.000000000", + "2019-01-06T08:43:44.000000000", + "2019-01-06T08:44:43.000000000", + "2019-01-06T08:45:59.000000000", + "2019-01-06T08:47:29.000000000", + "2019-01-06T08:47:30.000000000", + "2019-01-06T08:48:07.000000000", + "2019-01-06T08:48:41.000000000", + "2019-01-06T08:51:35.000000000", + "2019-01-06T08:52:37.000000000", + "2019-01-06T08:52:49.000000000", + "2019-01-06T08:53:43.000000000", + "2019-01-06T08:55:13.000000000", + "2019-01-06T08:58:04.000000000", + "2019-01-06T08:58:07.000000000", + "2019-01-06T08:58:20.000000000", + "2019-01-06T09:00:14.000000000", + "2019-01-06T09:00:29.000000000", + "2019-01-06T09:03:40.000000000", + "2019-01-06T09:04:17.000000000", + "2019-01-06T09:04:20.000000000", + "2019-01-06T09:05:51.000000000", + "2019-01-06T09:10:38.000000000", + "2019-01-06T09:10:53.000000000", + "2019-01-06T09:13:27.000000000", + "2019-01-06T09:14:55.000000000", + "2019-01-06T09:15:33.000000000", + "2019-01-06T09:15:49.000000000", + "2019-01-06T09:16:05.000000000", + "2019-01-06T09:17:03.000000000", + "2019-01-06T09:17:13.000000000", + "2019-01-06T09:18:30.000000000", + "2019-01-06T09:18:38.000000000", + "2019-01-06T09:19:58.000000000", + "2019-01-06T09:21:05.000000000", + "2019-01-06T09:21:20.000000000", + "2019-01-06T09:22:09.000000000", + "2019-01-06T09:24:15.000000000", + "2019-01-06T09:25:13.000000000", + "2019-01-06T09:25:15.000000000", + "2019-01-06T09:25:42.000000000", + "2019-01-06T09:27:01.000000000", + "2019-01-06T09:28:04.000000000", + "2019-01-06T09:28:47.000000000", + "2019-01-06T09:29:14.000000000", + "2019-01-06T09:31:17.000000000", + "2019-01-06T09:31:49.000000000", + "2019-01-06T09:32:17.000000000", + "2019-01-06T09:32:26.000000000", + "2019-01-06T09:32:51.000000000", + "2019-01-06T09:33:00.000000000", + "2019-01-06T09:34:14.000000000", + "2019-01-06T09:36:00.000000000", + "2019-01-06T09:36:03.000000000", + "2019-01-06T09:36:09.000000000", + "2019-01-06T09:36:58.000000000", + "2019-01-06T09:37:11.000000000", + "2019-01-06T09:39:53.000000000", + "2019-01-06T09:40:16.000000000", + "2019-01-06T09:44:35.000000000", + "2019-01-06T09:46:10.000000000", + "2019-01-06T09:46:57.000000000", + "2019-01-06T09:47:47.000000000", + "2019-01-06T09:48:41.000000000", + "2019-01-06T09:49:27.000000000", + "2019-01-06T09:50:52.000000000", + "2019-01-06T09:51:49.000000000", + "2019-01-06T09:53:50.000000000", + "2019-01-06T09:54:07.000000000", + "2019-01-06T09:55:47.000000000", + "2019-01-06T09:55:55.000000000", + "2019-01-06T09:55:56.000000000", + "2019-01-06T09:57:10.000000000", + "2019-01-06T09:57:34.000000000", + "2019-01-06T09:59:24.000000000", + "2019-01-06T10:01:45.000000000", + "2019-01-06T10:04:47.000000000", + "2019-01-06T10:04:57.000000000", + "2019-01-06T10:05:07.000000000", + "2019-01-06T10:05:49.000000000", + "2019-01-06T10:08:40.000000000", + "2019-01-06T10:10:03.000000000", + "2019-01-06T10:10:56.000000000", + "2019-01-06T10:14:24.000000000", + "2019-01-06T10:14:38.000000000", + "2019-01-06T10:14:58.000000000", + "2019-01-06T10:16:39.000000000", + "2019-01-06T10:16:51.000000000", + "2019-01-06T10:17:36.000000000", + "2019-01-06T10:18:26.000000000", + "2019-01-06T10:19:34.000000000", + "2019-01-06T10:21:41.000000000", + "2019-01-06T10:22:49.000000000", + "2019-01-06T10:23:12.000000000", + "2019-01-06T10:28:55.000000000", + "2019-01-06T10:29:10.000000000", + "2019-01-06T10:29:15.000000000", + "2019-01-06T10:29:36.000000000", + "2019-01-06T10:30:03.000000000", + "2019-01-06T10:31:19.000000000", + "2019-01-06T10:31:20.000000000", + "2019-01-06T10:31:49.000000000", + "2019-01-06T10:32:32.000000000", + "2019-01-06T10:32:42.000000000", + "2019-01-06T10:33:32.000000000", + "2019-01-06T10:34:07.000000000", + "2019-01-06T10:37:25.000000000", + "2019-01-06T10:39:40.000000000", + "2019-01-06T10:41:24.000000000", + "2019-01-06T10:41:31.000000000", + "2019-01-06T10:41:35.000000000", + "2019-01-06T10:42:56.000000000", + "2019-01-06T10:43:06.000000000", + "2019-01-06T10:43:09.000000000", + "2019-01-06T10:43:28.000000000", + "2019-01-06T10:45:19.000000000", + "2019-01-06T10:45:59.000000000", + "2019-01-06T10:46:08.000000000", + "2019-01-06T10:47:43.000000000", + "2019-01-06T10:48:19.000000000", + "2019-01-06T10:48:23.000000000", + "2019-01-06T10:48:25.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:49:31.000000000", + "2019-01-06T10:49:53.000000000", + "2019-01-06T10:50:38.000000000", + "2019-01-06T10:52:14.000000000", + "2019-01-06T10:53:35.000000000", + "2019-01-06T10:54:07.000000000", + "2019-01-06T10:55:18.000000000", + "2019-01-06T10:55:47.000000000", + "2019-01-06T10:57:33.000000000", + "2019-01-06T10:59:23.000000000", + "2019-01-06T11:01:11.000000000", + "2019-01-06T11:01:52.000000000", + "2019-01-06T11:02:00.000000000", + "2019-01-06T11:04:19.000000000", + "2019-01-06T11:04:25.000000000", + "2019-01-06T11:05:40.000000000", + "2019-01-06T11:06:23.000000000", + "2019-01-06T11:06:29.000000000", + "2019-01-06T11:07:45.000000000", + "2019-01-06T11:08:38.000000000", + "2019-01-06T11:08:51.000000000", + "2019-01-06T11:08:57.000000000", + "2019-01-06T11:09:34.000000000", + "2019-01-06T11:09:58.000000000", + "2019-01-06T11:10:29.000000000", + "2019-01-06T11:11:08.000000000", + "2019-01-06T11:11:48.000000000", + "2019-01-06T11:13:56.000000000", + "2019-01-06T11:14:15.000000000", + "2019-01-06T11:15:11.000000000", + "2019-01-06T11:15:35.000000000", + "2019-01-06T11:16:16.000000000", + "2019-01-06T11:16:45.000000000", + "2019-01-06T11:16:57.000000000", + "2019-01-06T11:20:00.000000000", + "2019-01-06T11:22:47.000000000", + "2019-01-06T11:23:37.000000000", + "2019-01-06T11:26:02.000000000", + "2019-01-06T11:27:31.000000000", + "2019-01-06T11:27:40.000000000", + "2019-01-06T11:28:40.000000000", + "2019-01-06T11:29:47.000000000", + "2019-01-06T11:30:38.000000000", + "2019-01-06T11:32:02.000000000", + "2019-01-06T11:32:46.000000000", + "2019-01-06T11:33:28.000000000", + "2019-01-06T11:35:03.000000000", + "2019-01-06T11:35:53.000000000", + "2019-01-06T11:36:38.000000000", + "2019-01-06T11:37:47.000000000", + "2019-01-06T11:37:56.000000000", + "2019-01-06T11:39:06.000000000", + "2019-01-06T11:39:18.000000000", + "2019-01-06T11:39:19.000000000", + "2019-01-06T11:40:56.000000000", + "2019-01-06T11:42:24.000000000", + "2019-01-06T11:42:26.000000000", + "2019-01-06T11:44:20.000000000", + "2019-01-06T11:44:43.000000000", + "2019-01-06T11:45:30.000000000", + "2019-01-06T11:45:39.000000000", + "2019-01-06T11:46:23.000000000", + "2019-01-06T11:49:02.000000000", + "2019-01-06T11:49:24.000000000", + "2019-01-06T11:49:43.000000000", + "2019-01-06T11:50:36.000000000", + "2019-01-06T11:50:46.000000000", + "2019-01-06T11:50:57.000000000", + "2019-01-06T11:52:50.000000000", + "2019-01-06T11:55:45.000000000", + "2019-01-06T11:55:47.000000000", + "2019-01-06T11:56:22.000000000", + "2019-01-06T11:57:22.000000000", + "2019-01-06T11:58:31.000000000", + "2019-01-06T11:59:05.000000000", + "2019-01-06T11:59:07.000000000", + "2019-01-06T12:00:05.000000000", + "2019-01-06T12:04:08.000000000", + "2019-01-06T12:04:16.000000000", + "2019-01-06T12:06:13.000000000", + "2019-01-06T12:06:59.000000000", + "2019-01-06T12:08:28.000000000", + "2019-01-06T12:08:47.000000000", + "2019-01-06T12:09:29.000000000", + "2019-01-06T12:14:58.000000000", + "2019-01-06T12:16:33.000000000", + "2019-01-06T12:16:42.000000000", + "2019-01-06T12:16:43.000000000", + "2019-01-06T12:19:03.000000000", + "2019-01-06T12:21:35.000000000", + "2019-01-06T12:21:58.000000000", + "2019-01-06T12:22:55.000000000", + "2019-01-06T12:24:43.000000000", + "2019-01-06T12:25:39.000000000", + "2019-01-06T12:25:50.000000000", + "2019-01-06T12:26:55.000000000", + "2019-01-06T12:27:15.000000000", + "2019-01-06T12:30:08.000000000", + "2019-01-06T12:30:18.000000000", + "2019-01-06T12:30:45.000000000", + "2019-01-06T12:31:47.000000000", + "2019-01-06T12:32:01.000000000", + "2019-01-06T12:33:11.000000000", + "2019-01-06T12:36:11.000000000", + "2019-01-06T12:38:51.000000000", + "2019-01-06T12:39:45.000000000", + "2019-01-06T12:42:47.000000000", + "2019-01-06T12:43:10.000000000", + "2019-01-06T12:46:58.000000000", + "2019-01-06T12:47:05.000000000", + "2019-01-06T12:48:22.000000000", + "2019-01-06T12:48:24.000000000", + "2019-01-06T12:49:18.000000000", + "2019-01-06T12:49:39.000000000", + "2019-01-06T12:50:34.000000000", + "2019-01-06T12:50:39.000000000", + "2019-01-06T12:50:44.000000000", + "2019-01-06T12:50:52.000000000", + "2019-01-06T12:51:49.000000000", + "2019-01-06T12:55:18.000000000", + "2019-01-06T12:55:46.000000000", + "2019-01-06T12:57:08.000000000", + "2019-01-06T12:57:40.000000000", + "2019-01-06T12:59:34.000000000", + "2019-01-06T13:00:51.000000000", + "2019-01-06T13:01:27.000000000", + "2019-01-06T13:01:29.000000000", + "2019-01-06T13:03:22.000000000", + "2019-01-06T13:04:14.000000000", + "2019-01-06T13:04:36.000000000", + "2019-01-06T13:04:44.000000000", + "2019-01-06T13:04:52.000000000", + "2019-01-06T13:06:42.000000000", + "2019-01-06T13:07:07.000000000", + "2019-01-06T13:07:54.000000000", + "2019-01-06T13:11:23.000000000", + "2019-01-06T13:12:08.000000000", + "2019-01-06T13:12:16.000000000", + "2019-01-06T13:16:26.000000000", + "2019-01-06T13:16:54.000000000", + "2019-01-06T13:19:22.000000000", + "2019-01-06T13:19:56.000000000", + "2019-01-06T13:20:46.000000000", + "2019-01-06T13:21:18.000000000", + "2019-01-06T13:21:43.000000000", + "2019-01-06T13:23:13.000000000", + "2019-01-06T13:24:21.000000000", + "2019-01-06T13:27:12.000000000", + "2019-01-06T13:28:24.000000000", + "2019-01-06T13:29:14.000000000", + "2019-01-06T13:32:22.000000000", + "2019-01-06T13:32:57.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:34:04.000000000", + "2019-01-06T13:34:50.000000000", + "2019-01-06T13:36:48.000000000", + "2019-01-06T13:36:59.000000000", + "2019-01-06T13:39:07.000000000", + "2019-01-06T13:39:15.000000000", + "2019-01-06T13:40:00.000000000", + "2019-01-06T13:40:06.000000000", + "2019-01-06T13:41:45.000000000", + "2019-01-06T13:44:04.000000000", + "2019-01-06T13:44:18.000000000", + "2019-01-06T13:44:32.000000000", + "2019-01-06T13:47:32.000000000", + "2019-01-06T13:48:08.000000000", + "2019-01-06T13:49:21.000000000", + "2019-01-06T13:50:23.000000000", + "2019-01-06T13:53:42.000000000", + "2019-01-06T13:54:29.000000000", + "2019-01-06T13:54:55.000000000", + "2019-01-06T13:55:57.000000000", + "2019-01-06T13:58:20.000000000", + "2019-01-06T13:58:55.000000000", + "2019-01-06T13:58:57.000000000", + "2019-01-06T13:59:54.000000000", + "2019-01-06T13:59:57.000000000", + "2019-01-06T13:59:58.000000000", + "2019-01-06T14:00:22.000000000", + "2019-01-06T14:01:20.000000000", + "2019-01-06T14:02:32.000000000", + "2019-01-06T14:03:52.000000000", + "2019-01-06T14:04:38.000000000", + "2019-01-06T14:05:46.000000000", + "2019-01-06T14:06:29.000000000", + "2019-01-06T14:07:14.000000000", + "2019-01-06T14:08:17.000000000", + "2019-01-06T14:08:25.000000000", + "2019-01-06T14:09:00.000000000", + "2019-01-06T14:11:10.000000000", + "2019-01-06T14:11:30.000000000", + "2019-01-06T14:11:54.000000000", + "2019-01-06T14:13:08.000000000", + "2019-01-06T14:13:11.000000000", + "2019-01-06T14:14:12.000000000", + "2019-01-06T14:14:48.000000000", + "2019-01-06T14:15:30.000000000", + "2019-01-06T14:16:08.000000000", + "2019-01-06T14:16:46.000000000", + "2019-01-06T14:16:49.000000000", + "2019-01-06T14:17:19.000000000", + "2019-01-06T14:17:48.000000000", + "2019-01-06T14:18:44.000000000", + "2019-01-06T14:18:49.000000000", + "2019-01-06T14:21:20.000000000", + "2019-01-06T14:23:29.000000000", + "2019-01-06T14:23:55.000000000", + "2019-01-06T14:24:00.000000000", + "2019-01-06T14:24:12.000000000", + "2019-01-06T14:24:24.000000000", + "2019-01-06T14:25:34.000000000", + "2019-01-06T14:26:51.000000000", + "2019-01-06T14:30:03.000000000", + "2019-01-06T14:30:32.000000000", + "2019-01-06T14:31:10.000000000", + "2019-01-06T14:31:18.000000000", + "2019-01-06T14:32:35.000000000", + "2019-01-06T14:32:46.000000000", + "2019-01-06T14:34:58.000000000", + "2019-01-06T14:36:31.000000000", + "2019-01-06T14:37:32.000000000", + "2019-01-06T14:38:10.000000000", + "2019-01-06T14:39:15.000000000", + "2019-01-06T14:39:57.000000000", + "2019-01-06T14:40:38.000000000", + "2019-01-06T14:41:09.000000000", + "2019-01-06T14:41:16.000000000", + "2019-01-06T14:42:20.000000000", + "2019-01-06T14:42:33.000000000", + "2019-01-06T14:43:02.000000000", + "2019-01-06T14:43:03.000000000", + "2019-01-06T14:43:07.000000000", + "2019-01-06T14:43:15.000000000", + "2019-01-06T14:44:04.000000000", + "2019-01-06T14:44:23.000000000", + "2019-01-06T14:44:42.000000000", + "2019-01-06T14:45:35.000000000", + "2019-01-06T14:45:39.000000000", + "2019-01-06T14:48:22.000000000", + "2019-01-06T14:48:49.000000000", + "2019-01-06T14:49:09.000000000", + "2019-01-06T14:50:16.000000000", + "2019-01-06T14:50:37.000000000", + "2019-01-06T14:52:00.000000000", + "2019-01-06T14:55:19.000000000", + "2019-01-06T14:57:04.000000000", + "2019-01-06T14:57:10.000000000", + "2019-01-06T14:57:18.000000000", + "2019-01-06T14:57:21.000000000", + "2019-01-06T14:57:30.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:16.000000000", + "2019-01-06T14:58:27.000000000", + "2019-01-06T14:59:58.000000000", + "2019-01-06T15:00:04.000000000", + "2019-01-06T15:00:53.000000000", + "2019-01-06T15:01:33.000000000", + "2019-01-06T15:01:48.000000000", + "2019-01-06T15:02:30.000000000", + "2019-01-06T15:04:10.000000000", + "2019-01-06T15:04:36.000000000", + "2019-01-06T15:06:16.000000000", + "2019-01-06T15:07:47.000000000", + "2019-01-06T15:09:11.000000000", + "2019-01-06T15:09:26.000000000", + "2019-01-06T15:10:14.000000000", + "2019-01-06T15:10:38.000000000", + "2019-01-06T15:10:42.000000000", + "2019-01-06T15:12:02.000000000", + "2019-01-06T15:13:23.000000000", + "2019-01-06T15:13:38.000000000", + "2019-01-06T15:13:44.000000000", + "2019-01-06T15:14:43.000000000", + "2019-01-06T15:19:07.000000000", + "2019-01-06T15:19:36.000000000", + "2019-01-06T15:19:52.000000000", + "2019-01-06T15:20:29.000000000", + "2019-01-06T15:20:44.000000000", + "2019-01-06T15:22:27.000000000", + "2019-01-06T15:23:21.000000000", + "2019-01-06T15:23:46.000000000", + "2019-01-06T15:23:50.000000000", + "2019-01-06T15:25:37.000000000", + "2019-01-06T15:27:17.000000000", + "2019-01-06T15:27:33.000000000", + "2019-01-06T15:27:55.000000000", + "2019-01-06T15:29:07.000000000", + "2019-01-06T15:29:37.000000000", + "2019-01-06T15:29:45.000000000", + "2019-01-06T15:31:25.000000000", + "2019-01-06T15:32:07.000000000", + "2019-01-06T15:32:17.000000000", + "2019-01-06T15:33:24.000000000", + "2019-01-06T15:33:55.000000000", + "2019-01-06T15:35:15.000000000", + "2019-01-06T15:36:01.000000000", + "2019-01-06T15:37:20.000000000", + "2019-01-06T15:38:09.000000000", + "2019-01-06T15:40:53.000000000", + "2019-01-06T15:43:12.000000000", + "2019-01-06T15:44:40.000000000", + "2019-01-06T15:45:36.000000000", + "2019-01-06T15:45:57.000000000", + "2019-01-06T15:46:25.000000000", + "2019-01-06T15:46:44.000000000", + "2019-01-06T15:51:41.000000000", + "2019-01-06T15:53:26.000000000", + "2019-01-06T15:54:02.000000000", + "2019-01-06T15:55:59.000000000", + "2019-01-06T15:59:08.000000000", + "2019-01-06T16:01:01.000000000", + "2019-01-06T16:01:25.000000000", + "2019-01-06T16:01:37.000000000", + "2019-01-06T16:01:50.000000000", + "2019-01-06T16:02:36.000000000", + "2019-01-06T16:03:13.000000000", + "2019-01-06T16:03:25.000000000", + "2019-01-06T16:04:05.000000000", + "2019-01-06T16:05:39.000000000", + "2019-01-06T16:05:56.000000000", + "2019-01-06T16:07:49.000000000", + "2019-01-06T16:08:16.000000000", + "2019-01-06T16:09:31.000000000", + "2019-01-06T16:09:36.000000000", + "2019-01-06T16:09:49.000000000", + "2019-01-06T16:12:34.000000000", + "2019-01-06T16:13:38.000000000", + "2019-01-06T16:13:57.000000000", + "2019-01-06T16:17:21.000000000", + "2019-01-06T16:18:07.000000000", + "2019-01-06T16:18:27.000000000", + "2019-01-06T16:21:14.000000000", + "2019-01-06T16:22:43.000000000", + "2019-01-06T16:22:52.000000000", + "2019-01-06T16:23:18.000000000", + "2019-01-06T16:26:36.000000000", + "2019-01-06T16:26:45.000000000", + "2019-01-06T16:27:26.000000000", + "2019-01-06T16:27:34.000000000", + "2019-01-06T16:27:43.000000000", + "2019-01-06T16:29:06.000000000", + "2019-01-06T16:31:33.000000000", + "2019-01-06T16:31:34.000000000", + "2019-01-06T16:32:58.000000000", + "2019-01-06T16:33:43.000000000", + "2019-01-06T16:35:02.000000000", + "2019-01-06T16:35:13.000000000", + "2019-01-06T16:35:55.000000000", + "2019-01-06T16:40:13.000000000", + "2019-01-06T16:40:19.000000000", + "2019-01-06T16:41:38.000000000", + "2019-01-06T16:44:18.000000000", + "2019-01-06T16:44:20.000000000", + "2019-01-06T16:45:49.000000000", + "2019-01-06T16:46:28.000000000", + "2019-01-06T16:46:58.000000000", + "2019-01-06T16:48:43.000000000", + "2019-01-06T16:48:56.000000000", + "2019-01-06T16:49:00.000000000", + "2019-01-06T16:51:03.000000000", + "2019-01-06T16:52:19.000000000", + "2019-01-06T16:53:26.000000000", + "2019-01-06T16:56:38.000000000", + "2019-01-06T16:57:17.000000000", + "2019-01-06T16:58:00.000000000", + "2019-01-06T16:58:54.000000000", + "2019-01-06T16:59:33.000000000", + "2019-01-06T17:00:12.000000000", + "2019-01-06T17:00:46.000000000", + "2019-01-06T17:02:01.000000000", + "2019-01-06T17:04:00.000000000", + "2019-01-06T17:04:02.000000000", + "2019-01-06T17:08:10.000000000", + "2019-01-06T17:08:48.000000000", + "2019-01-06T17:08:56.000000000", + "2019-01-06T17:10:38.000000000", + "2019-01-06T17:10:43.000000000", + "2019-01-06T17:11:52.000000000", + "2019-01-06T17:15:14.000000000", + "2019-01-06T17:15:22.000000000", + "2019-01-06T17:17:34.000000000", + "2019-01-06T17:21:05.000000000", + "2019-01-06T17:21:29.000000000", + "2019-01-06T17:21:38.000000000", + "2019-01-06T17:22:02.000000000", + "2019-01-06T17:26:16.000000000", + "2019-01-06T17:27:19.000000000", + "2019-01-06T17:28:44.000000000", + "2019-01-06T17:29:20.000000000", + "2019-01-06T17:29:34.000000000", + "2019-01-06T17:30:44.000000000", + "2019-01-06T17:32:54.000000000", + "2019-01-06T17:33:03.000000000", + "2019-01-06T17:33:38.000000000", + "2019-01-06T17:34:38.000000000", + "2019-01-06T17:34:57.000000000", + "2019-01-06T17:35:06.000000000", + "2019-01-06T17:35:25.000000000", + "2019-01-06T17:36:19.000000000", + "2019-01-06T17:38:48.000000000", + "2019-01-06T17:40:49.000000000", + "2019-01-06T17:43:31.000000000", + "2019-01-06T17:44:13.000000000", + "2019-01-06T17:45:53.000000000", + "2019-01-06T17:45:55.000000000", + "2019-01-06T17:45:59.000000000", + "2019-01-06T17:46:30.000000000", + "2019-01-06T17:48:13.000000000", + "2019-01-06T17:48:25.000000000", + "2019-01-06T17:48:59.000000000", + "2019-01-06T17:50:38.000000000", + "2019-01-06T17:51:05.000000000", + "2019-01-06T17:52:31.000000000", + "2019-01-06T17:54:52.000000000", + "2019-01-06T17:55:26.000000000", + "2019-01-06T17:55:30.000000000", + "2019-01-06T17:55:36.000000000", + "2019-01-06T17:56:34.000000000", + "2019-01-06T17:57:40.000000000", + "2019-01-06T17:59:30.000000000", + "2019-01-06T18:03:15.000000000", + "2019-01-06T18:03:18.000000000", + "2019-01-06T18:03:57.000000000", + "2019-01-06T18:04:04.000000000", + "2019-01-06T18:04:34.000000000", + "2019-01-06T18:04:45.000000000", + "2019-01-06T18:05:17.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:07:37.000000000", + "2019-01-06T18:08:10.000000000", + "2019-01-06T18:11:09.000000000", + "2019-01-06T18:11:23.000000000", + "2019-01-06T18:11:29.000000000", + "2019-01-06T18:13:50.000000000", + "2019-01-06T18:14:05.000000000", + "2019-01-06T18:14:48.000000000", + "2019-01-06T18:14:58.000000000", + "2019-01-06T18:15:08.000000000", + "2019-01-06T18:15:34.000000000", + "2019-01-06T18:15:38.000000000", + "2019-01-06T18:16:37.000000000", + "2019-01-06T18:17:11.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:19:12.000000000", + "2019-01-06T18:19:50.000000000", + "2019-01-06T18:20:33.000000000", + "2019-01-06T18:21:23.000000000", + "2019-01-06T18:23:26.000000000", + "2019-01-06T18:23:29.000000000", + "2019-01-06T18:23:37.000000000", + "2019-01-06T18:25:51.000000000", + "2019-01-06T18:28:01.000000000", + "2019-01-06T18:29:35.000000000", + "2019-01-06T18:30:06.000000000", + "2019-01-06T18:30:36.000000000", + "2019-01-06T18:31:39.000000000", + "2019-01-06T18:32:48.000000000", + "2019-01-06T18:34:10.000000000", + "2019-01-06T18:35:26.000000000", + "2019-01-06T18:36:59.000000000", + "2019-01-06T18:37:00.000000000", + "2019-01-06T18:39:00.000000000", + "2019-01-06T18:41:01.000000000", + "2019-01-06T18:41:44.000000000", + "2019-01-06T18:42:46.000000000", + "2019-01-06T18:44:52.000000000", + "2019-01-06T18:45:28.000000000", + "2019-01-06T18:46:09.000000000", + "2019-01-06T18:47:11.000000000", + "2019-01-06T18:47:15.000000000", + "2019-01-06T18:48:31.000000000", + "2019-01-06T18:49:22.000000000", + "2019-01-06T18:50:29.000000000", + "2019-01-06T18:50:32.000000000", + "2019-01-06T18:50:33.000000000", + "2019-01-06T18:51:28.000000000", + "2019-01-06T18:51:46.000000000", + "2019-01-06T18:55:10.000000000", + "2019-01-06T18:55:21.000000000", + "2019-01-06T18:56:20.000000000", + "2019-01-06T18:58:42.000000000", + "2019-01-06T19:00:25.000000000", + "2019-01-06T19:00:58.000000000", + "2019-01-06T19:01:05.000000000", + "2019-01-06T19:01:26.000000000", + "2019-01-06T19:03:41.000000000", + "2019-01-06T19:04:36.000000000", + "2019-01-06T19:05:19.000000000", + "2019-01-06T19:05:24.000000000", + "2019-01-06T19:06:36.000000000", + "2019-01-06T19:07:25.000000000", + "2019-01-06T19:07:35.000000000", + "2019-01-06T19:08:23.000000000", + "2019-01-06T19:09:51.000000000", + "2019-01-06T19:11:40.000000000", + "2019-01-06T19:15:59.000000000", + "2019-01-06T19:17:00.000000000", + "2019-01-06T19:17:05.000000000", + "2019-01-06T19:17:19.000000000", + "2019-01-06T19:17:20.000000000", + "2019-01-06T19:17:25.000000000", + "2019-01-06T19:17:34.000000000", + "2019-01-06T19:17:43.000000000", + "2019-01-06T19:18:25.000000000", + "2019-01-06T19:18:27.000000000", + "2019-01-06T19:20:32.000000000", + "2019-01-06T19:21:50.000000000", + "2019-01-06T19:22:09.000000000", + "2019-01-06T19:22:21.000000000", + "2019-01-06T19:24:26.000000000", + "2019-01-06T19:24:48.000000000", + "2019-01-06T19:25:29.000000000", + "2019-01-06T19:26:16.000000000", + "2019-01-06T19:26:29.000000000", + "2019-01-06T19:26:44.000000000", + "2019-01-06T19:30:14.000000000", + "2019-01-06T19:33:15.000000000", + "2019-01-06T19:33:17.000000000", + "2019-01-06T19:33:46.000000000", + "2019-01-06T19:35:12.000000000", + "2019-01-06T19:35:42.000000000", + "2019-01-06T19:36:06.000000000", + "2019-01-06T19:36:55.000000000", + "2019-01-06T19:38:01.000000000", + "2019-01-06T19:39:00.000000000", + "2019-01-06T19:39:12.000000000", + "2019-01-06T19:39:56.000000000", + "2019-01-06T19:41:34.000000000", + "2019-01-06T19:41:51.000000000", + "2019-01-06T19:42:52.000000000", + "2019-01-06T19:43:28.000000000", + "2019-01-06T19:44:02.000000000", + "2019-01-06T19:44:20.000000000", + "2019-01-06T19:47:22.000000000", + "2019-01-06T19:49:10.000000000", + "2019-01-06T19:50:33.000000000", + "2019-01-06T19:51:13.000000000", + "2019-01-06T19:51:23.000000000", + "2019-01-06T19:55:40.000000000", + "2019-01-06T19:56:04.000000000", + "2019-01-06T19:57:47.000000000", + "2019-01-06T19:58:05.000000000", + "2019-01-06T19:59:26.000000000", + "2019-01-06T20:01:38.000000000", + "2019-01-06T20:01:54.000000000", + "2019-01-06T20:02:08.000000000", + "2019-01-06T20:03:34.000000000", + "2019-01-06T20:04:56.000000000", + "2019-01-06T20:11:24.000000000", + "2019-01-06T20:12:20.000000000", + "2019-01-06T20:14:50.000000000", + "2019-01-06T20:15:34.000000000", + "2019-01-06T20:16:06.000000000", + "2019-01-06T20:16:46.000000000", + "2019-01-06T20:17:04.000000000", + "2019-01-06T20:17:30.000000000", + "2019-01-06T20:17:49.000000000", + "2019-01-06T20:18:08.000000000", + "2019-01-06T20:19:06.000000000", + "2019-01-06T20:19:39.000000000", + "2019-01-06T20:19:42.000000000", + "2019-01-06T20:21:27.000000000", + "2019-01-06T20:22:03.000000000", + "2019-01-06T20:22:58.000000000", + "2019-01-06T20:23:03.000000000", + "2019-01-06T20:24:44.000000000", + "2019-01-06T20:25:06.000000000", + "2019-01-06T20:26:33.000000000", + "2019-01-06T20:27:16.000000000", + "2019-01-06T20:27:23.000000000", + "2019-01-06T20:28:19.000000000", + "2019-01-06T20:29:45.000000000", + "2019-01-06T20:29:53.000000000", + "2019-01-06T20:30:05.000000000", + "2019-01-06T20:31:57.000000000", + "2019-01-06T20:32:51.000000000", + "2019-01-06T20:33:50.000000000", + "2019-01-06T20:34:48.000000000", + "2019-01-06T20:35:47.000000000", + "2019-01-06T20:38:32.000000000", + "2019-01-06T20:38:46.000000000", + "2019-01-06T20:40:34.000000000", + "2019-01-06T20:40:59.000000000", + "2019-01-06T20:41:53.000000000", + "2019-01-06T20:43:29.000000000", + "2019-01-06T20:43:45.000000000", + "2019-01-06T20:43:48.000000000", + "2019-01-06T20:44:25.000000000", + "2019-01-06T20:46:54.000000000", + "2019-01-06T20:47:09.000000000", + "2019-01-06T20:48:15.000000000", + "2019-01-06T20:48:45.000000000", + "2019-01-06T20:49:44.000000000", + "2019-01-06T20:51:52.000000000", + "2019-01-06T20:52:39.000000000", + "2019-01-06T20:55:56.000000000", + "2019-01-06T20:56:19.000000000", + "2019-01-06T20:56:51.000000000", + "2019-01-06T20:59:21.000000000", + "2019-01-06T21:01:16.000000000", + "2019-01-06T21:02:45.000000000", + "2019-01-06T21:06:53.000000000", + "2019-01-06T21:11:34.000000000", + "2019-01-06T21:11:54.000000000", + "2019-01-06T21:13:09.000000000", + "2019-01-06T21:13:48.000000000", + "2019-01-06T21:18:29.000000000", + "2019-01-06T21:19:36.000000000", + "2019-01-06T21:19:52.000000000", + "2019-01-06T21:20:07.000000000", + "2019-01-06T21:20:54.000000000", + "2019-01-06T21:22:47.000000000", + "2019-01-06T21:23:35.000000000", + "2019-01-06T21:23:52.000000000", + "2019-01-06T21:25:06.000000000", + "2019-01-06T21:25:58.000000000", + "2019-01-06T21:26:29.000000000", + "2019-01-06T21:27:18.000000000", + "2019-01-06T21:28:23.000000000", + "2019-01-06T21:30:56.000000000", + "2019-01-06T21:32:20.000000000", + "2019-01-06T21:33:03.000000000", + "2019-01-06T21:34:15.000000000", + "2019-01-06T21:34:31.000000000", + "2019-01-06T21:34:44.000000000", + "2019-01-06T21:34:47.000000000", + "2019-01-06T21:35:06.000000000", + "2019-01-06T21:36:08.000000000", + "2019-01-06T21:37:02.000000000", + "2019-01-06T21:38:06.000000000", + "2019-01-06T21:38:09.000000000", + "2019-01-06T21:38:50.000000000", + "2019-01-06T21:39:55.000000000", + "2019-01-06T21:40:41.000000000", + "2019-01-06T21:41:16.000000000", + "2019-01-06T21:42:13.000000000", + "2019-01-06T21:42:28.000000000", + "2019-01-06T21:42:40.000000000", + "2019-01-06T21:42:47.000000000", + "2019-01-06T21:43:03.000000000", + "2019-01-06T21:44:43.000000000", + "2019-01-06T21:45:39.000000000", + "2019-01-06T21:47:32.000000000", + "2019-01-06T21:49:22.000000000", + "2019-01-06T21:50:02.000000000", + "2019-01-06T21:52:14.000000000", + "2019-01-06T21:53:39.000000000", + "2019-01-06T21:55:09.000000000", + "2019-01-06T21:55:37.000000000", + "2019-01-06T21:56:40.000000000", + "2019-01-06T21:57:08.000000000", + "2019-01-06T21:58:17.000000000", + "2019-01-06T21:59:01.000000000", + "2019-01-06T21:59:02.000000000", + "2019-01-06T21:59:46.000000000", + "2019-01-06T22:00:59.000000000", + "2019-01-06T22:01:10.000000000", + "2019-01-06T22:02:38.000000000", + "2019-01-06T22:04:17.000000000", + "2019-01-06T22:05:13.000000000", + "2019-01-06T22:06:24.000000000", + "2019-01-06T22:06:55.000000000", + "2019-01-06T22:08:40.000000000", + "2019-01-06T22:09:17.000000000", + "2019-01-06T22:09:57.000000000", + "2019-01-06T22:12:04.000000000", + "2019-01-06T22:13:45.000000000", + "2019-01-06T22:15:55.000000000", + "2019-01-06T22:16:00.000000000", + "2019-01-06T22:18:42.000000000", + "2019-01-06T22:21:08.000000000", + "2019-01-06T22:21:33.000000000", + "2019-01-06T22:22:15.000000000", + "2019-01-06T22:22:17.000000000", + "2019-01-06T22:22:34.000000000", + "2019-01-06T22:22:50.000000000", + "2019-01-06T22:24:03.000000000", + "2019-01-06T22:24:07.000000000", + "2019-01-06T22:24:20.000000000", + "2019-01-06T22:26:22.000000000", + "2019-01-06T22:27:07.000000000", + "2019-01-06T22:28:08.000000000", + "2019-01-06T22:28:43.000000000", + "2019-01-06T22:29:04.000000000", + "2019-01-06T22:29:34.000000000", + "2019-01-06T22:29:51.000000000", + "2019-01-06T22:30:43.000000000", + "2019-01-06T22:31:07.000000000", + "2019-01-06T22:31:30.000000000", + "2019-01-06T22:32:12.000000000", + "2019-01-06T22:32:27.000000000", + "2019-01-06T22:34:42.000000000", + "2019-01-06T22:35:00.000000000", + "2019-01-06T22:36:09.000000000", + "2019-01-06T22:36:24.000000000", + "2019-01-06T22:37:22.000000000", + "2019-01-06T22:37:57.000000000", + "2019-01-06T22:38:56.000000000", + "2019-01-06T22:39:37.000000000", + "2019-01-06T22:41:57.000000000", + "2019-01-06T22:44:31.000000000", + "2019-01-06T22:44:42.000000000", + "2019-01-06T22:48:29.000000000", + "2019-01-06T22:50:27.000000000", + "2019-01-06T22:51:09.000000000", + "2019-01-06T22:52:57.000000000", + "2019-01-06T22:54:45.000000000", + "2019-01-06T22:54:54.000000000", + "2019-01-06T22:55:28.000000000", + "2019-01-06T22:55:56.000000000", + "2019-01-06T22:56:32.000000000", + "2019-01-06T22:56:56.000000000", + "2019-01-06T22:57:34.000000000", + "2019-01-06T22:59:55.000000000", + "2019-01-06T23:01:11.000000000", + "2019-01-06T23:01:23.000000000", + "2019-01-06T23:02:02.000000000", + "2019-01-06T23:02:17.000000000", + "2019-01-06T23:04:11.000000000", + "2019-01-06T23:04:28.000000000", + "2019-01-06T23:04:57.000000000", + "2019-01-06T23:05:23.000000000", + "2019-01-06T23:06:34.000000000", + "2019-01-06T23:07:04.000000000", + "2019-01-06T23:08:23.000000000", + "2019-01-06T23:08:27.000000000", + "2019-01-06T23:09:16.000000000", + "2019-01-06T23:09:32.000000000", + "2019-01-06T23:11:09.000000000", + "2019-01-06T23:12:58.000000000", + "2019-01-06T23:12:59.000000000", + "2019-01-06T23:13:05.000000000", + "2019-01-06T23:13:53.000000000", + "2019-01-06T23:15:54.000000000", + "2019-01-06T23:17:45.000000000", + "2019-01-06T23:18:55.000000000", + "2019-01-06T23:20:29.000000000", + "2019-01-06T23:23:01.000000000", + "2019-01-06T23:25:19.000000000", + "2019-01-06T23:26:28.000000000", + "2019-01-06T23:28:20.000000000", + "2019-01-06T23:28:27.000000000", + "2019-01-06T23:28:38.000000000", + "2019-01-06T23:28:50.000000000", + "2019-01-06T23:30:11.000000000", + "2019-01-06T23:31:06.000000000", + "2019-01-06T23:31:25.000000000", + "2019-01-06T23:32:31.000000000", + "2019-01-06T23:32:58.000000000", + "2019-01-06T23:33:56.000000000", + "2019-01-06T23:35:13.000000000", + "2019-01-06T23:35:31.000000000", + "2019-01-06T23:35:49.000000000", + "2019-01-06T23:36:59.000000000", + "2019-01-06T23:38:05.000000000", + "2019-01-06T23:39:43.000000000", + "2019-01-06T23:41:28.000000000", + "2019-01-06T23:43:06.000000000", + "2019-01-06T23:43:20.000000000", + "2019-01-06T23:43:50.000000000", + "2019-01-06T23:46:45.000000000", + "2019-01-06T23:46:47.000000000", + "2019-01-06T23:48:15.000000000", + "2019-01-06T23:49:03.000000000", + "2019-01-06T23:50:08.000000000", + "2019-01-06T23:50:26.000000000", + "2019-01-06T23:50:53.000000000", + "2019-01-06T23:51:33.000000000", + "2019-01-06T23:53:35.000000000", + "2019-01-06T23:54:51.000000000", + "2019-01-06T23:55:28.000000000", + "2019-01-06T23:55:42.000000000", + "2019-01-06T23:58:24.000000000", + "2019-01-06T23:58:46.000000000", + "2019-01-06T23:59:45.000000000", + "2019-01-07T00:01:51.000000000", + "2019-01-07T00:01:54.000000000", + "2019-01-07T00:03:49.000000000", + "2019-01-07T00:04:12.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:43.000000000", + "2019-01-07T00:07:29.000000000", + "2019-01-07T00:08:58.000000000", + "2019-01-07T00:12:21.000000000", + "2019-01-07T00:13:34.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:14:20.000000000", + "2019-01-07T00:14:37.000000000", + "2019-01-07T00:18:44.000000000", + "2019-01-07T00:20:52.000000000", + "2019-01-07T00:21:09.000000000", + "2019-01-07T00:21:30.000000000", + "2019-01-07T00:22:11.000000000", + "2019-01-07T00:22:13.000000000", + "2019-01-07T00:24:17.000000000", + "2019-01-07T00:25:17.000000000", + "2019-01-07T00:25:39.000000000", + "2019-01-07T00:25:53.000000000", + "2019-01-07T00:26:28.000000000", + "2019-01-07T00:27:50.000000000", + "2019-01-07T00:28:13.000000000", + "2019-01-07T00:28:51.000000000", + "2019-01-07T00:29:13.000000000", + "2019-01-07T00:29:21.000000000", + "2019-01-07T00:29:29.000000000", + "2019-01-07T00:29:55.000000000", + "2019-01-07T00:29:56.000000000", + "2019-01-07T00:30:23.000000000", + "2019-01-07T00:31:03.000000000", + "2019-01-07T00:32:14.000000000", + "2019-01-07T00:33:49.000000000", + "2019-01-07T00:34:07.000000000", + "2019-01-07T00:34:32.000000000", + "2019-01-07T00:34:59.000000000", + "2019-01-07T00:38:57.000000000", + "2019-01-07T00:40:52.000000000", + "2019-01-07T00:42:08.000000000", + "2019-01-07T00:42:20.000000000", + "2019-01-07T00:42:25.000000000", + "2019-01-07T00:43:03.000000000", + "2019-01-07T00:44:29.000000000", + "2019-01-07T00:45:00.000000000", + "2019-01-07T00:45:52.000000000", + "2019-01-07T00:46:49.000000000", + "2019-01-07T00:48:31.000000000", + "2019-01-07T00:48:53.000000000", + "2019-01-07T00:52:13.000000000", + "2019-01-07T00:52:29.000000000", + "2019-01-07T00:54:10.000000000", + "2019-01-07T00:54:39.000000000", + "2019-01-07T00:54:53.000000000", + "2019-01-07T00:56:29.000000000", + "2019-01-07T00:56:55.000000000", + "2019-01-07T00:57:56.000000000", + "2019-01-07T00:58:21.000000000", + "2019-01-07T00:58:31.000000000", + "2019-01-07T00:58:56.000000000", + "2019-01-07T00:59:39.000000000", + "2019-01-07T01:00:32.000000000", + "2019-01-07T01:03:03.000000000", + "2019-01-07T01:03:40.000000000", + "2019-01-07T01:03:45.000000000", + "2019-01-07T01:04:14.000000000", + "2019-01-07T01:07:12.000000000", + "2019-01-07T01:08:31.000000000", + "2019-01-07T01:10:11.000000000", + "2019-01-07T01:10:14.000000000", + "2019-01-07T01:10:33.000000000", + "2019-01-07T01:11:06.000000000", + "2019-01-07T01:12:25.000000000", + "2019-01-07T01:12:42.000000000", + "2019-01-07T01:16:41.000000000", + "2019-01-07T01:18:09.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:20:24.000000000", + "2019-01-07T01:24:39.000000000", + "2019-01-07T01:24:43.000000000", + "2019-01-07T01:28:14.000000000", + "2019-01-07T01:28:40.000000000", + "2019-01-07T01:30:20.000000000", + "2019-01-07T01:30:39.000000000", + "2019-01-07T01:30:40.000000000", + "2019-01-07T01:31:12.000000000", + "2019-01-07T01:32:06.000000000", + "2019-01-07T01:32:09.000000000", + "2019-01-07T01:32:39.000000000", + "2019-01-07T01:33:45.000000000", + "2019-01-07T01:35:11.000000000", + "2019-01-07T01:35:54.000000000", + "2019-01-07T01:37:33.000000000", + "2019-01-07T01:38:35.000000000", + "2019-01-07T01:38:56.000000000", + "2019-01-07T01:43:49.000000000", + "2019-01-07T01:44:27.000000000", + "2019-01-07T01:46:50.000000000", + "2019-01-07T01:47:17.000000000", + "2019-01-07T01:48:42.000000000", + "2019-01-07T01:48:53.000000000", + "2019-01-07T01:51:40.000000000", + "2019-01-07T01:51:49.000000000", + "2019-01-07T01:52:58.000000000", + "2019-01-07T01:53:33.000000000", + "2019-01-07T01:54:08.000000000", + "2019-01-07T01:54:39.000000000", + "2019-01-07T01:54:43.000000000", + "2019-01-07T01:54:55.000000000", + "2019-01-07T01:57:39.000000000", + "2019-01-07T01:58:15.000000000", + "2019-01-07T02:00:42.000000000", + "2019-01-07T02:00:49.000000000", + "2019-01-07T02:01:51.000000000", + "2019-01-07T02:04:04.000000000", + "2019-01-07T02:05:19.000000000", + "2019-01-07T02:06:34.000000000", + "2019-01-07T02:07:12.000000000", + "2019-01-07T02:07:37.000000000", + "2019-01-07T02:08:53.000000000", + "2019-01-07T02:11:13.000000000", + "2019-01-07T02:11:41.000000000", + "2019-01-07T02:11:53.000000000", + "2019-01-07T02:12:03.000000000", + "2019-01-07T02:12:16.000000000", + "2019-01-07T02:12:27.000000000", + "2019-01-07T02:13:23.000000000", + "2019-01-07T02:13:33.000000000", + "2019-01-07T02:13:55.000000000", + "2019-01-07T02:15:28.000000000", + "2019-01-07T02:16:19.000000000", + "2019-01-07T02:16:24.000000000", + "2019-01-07T02:17:03.000000000", + "2019-01-07T02:21:42.000000000", + "2019-01-07T02:21:54.000000000", + "2019-01-07T02:23:06.000000000", + "2019-01-07T02:23:18.000000000", + "2019-01-07T02:24:02.000000000", + "2019-01-07T02:24:39.000000000", + "2019-01-07T02:25:12.000000000", + "2019-01-07T02:25:28.000000000", + "2019-01-07T02:25:36.000000000", + "2019-01-07T02:26:34.000000000", + "2019-01-07T02:27:29.000000000", + "2019-01-07T02:27:30.000000000", + "2019-01-07T02:28:02.000000000", + "2019-01-07T02:28:32.000000000", + "2019-01-07T02:28:55.000000000", + "2019-01-07T02:29:00.000000000", + "2019-01-07T02:29:10.000000000", + "2019-01-07T02:30:18.000000000", + "2019-01-07T02:31:06.000000000", + "2019-01-07T02:34:29.000000000", + "2019-01-07T02:35:01.000000000", + "2019-01-07T02:35:51.000000000", + "2019-01-07T02:36:10.000000000", + "2019-01-07T02:36:55.000000000", + "2019-01-07T02:37:48.000000000", + "2019-01-07T02:38:13.000000000", + "2019-01-07T02:38:50.000000000", + "2019-01-07T02:39:21.000000000", + "2019-01-07T02:40:55.000000000", + "2019-01-07T02:41:09.000000000", + "2019-01-07T02:41:45.000000000", + "2019-01-07T02:42:06.000000000", + "2019-01-07T02:42:34.000000000", + "2019-01-07T02:43:03.000000000", + "2019-01-07T02:44:15.000000000", + "2019-01-07T02:45:15.000000000", + "2019-01-07T02:45:35.000000000", + "2019-01-07T02:45:37.000000000", + "2019-01-07T02:47:10.000000000", + "2019-01-07T02:52:09.000000000", + "2019-01-07T02:52:49.000000000", + "2019-01-07T02:55:14.000000000", + "2019-01-07T02:57:10.000000000", + "2019-01-07T02:58:26.000000000", + "2019-01-07T02:58:40.000000000", + "2019-01-07T03:00:43.000000000", + "2019-01-07T03:02:44.000000000", + "2019-01-07T03:02:57.000000000", + "2019-01-07T03:03:03.000000000", + "2019-01-07T03:03:41.000000000", + "2019-01-07T03:05:27.000000000", + "2019-01-07T03:05:51.000000000", + "2019-01-07T03:06:00.000000000", + "2019-01-07T03:06:51.000000000", + "2019-01-07T03:08:20.000000000", + "2019-01-07T03:08:55.000000000", + "2019-01-07T03:09:32.000000000", + "2019-01-07T03:11:33.000000000", + "2019-01-07T03:12:35.000000000", + "2019-01-07T03:13:24.000000000", + "2019-01-07T03:13:43.000000000", + "2019-01-07T03:16:48.000000000", + "2019-01-07T03:18:41.000000000", + "2019-01-07T03:18:43.000000000", + "2019-01-07T03:22:31.000000000", + "2019-01-07T03:23:53.000000000", + "2019-01-07T03:26:29.000000000", + "2019-01-07T03:26:34.000000000", + "2019-01-07T03:26:50.000000000", + "2019-01-07T03:27:20.000000000", + "2019-01-07T03:28:53.000000000", + "2019-01-07T03:30:12.000000000", + "2019-01-07T03:33:26.000000000", + "2019-01-07T03:33:51.000000000", + "2019-01-07T03:34:17.000000000", + "2019-01-07T03:34:32.000000000", + "2019-01-07T03:34:46.000000000", + "2019-01-07T03:35:10.000000000", + "2019-01-07T03:35:15.000000000", + "2019-01-07T03:36:25.000000000", + "2019-01-07T03:38:12.000000000", + "2019-01-07T03:42:38.000000000", + "2019-01-07T03:44:11.000000000", + "2019-01-07T03:45:09.000000000", + "2019-01-07T03:46:10.000000000", + "2019-01-07T03:46:38.000000000", + "2019-01-07T03:47:32.000000000", + "2019-01-07T03:48:02.000000000", + "2019-01-07T03:50:59.000000000", + "2019-01-07T03:51:10.000000000", + "2019-01-07T03:51:35.000000000", + "2019-01-07T03:52:27.000000000", + "2019-01-07T03:52:50.000000000", + "2019-01-07T03:54:07.000000000", + "2019-01-07T03:55:07.000000000", + "2019-01-07T03:55:44.000000000", + "2019-01-07T03:56:06.000000000", + "2019-01-07T03:56:07.000000000", + "2019-01-07T03:56:52.000000000", + "2019-01-07T03:57:45.000000000", + "2019-01-07T03:59:56.000000000", + "2019-01-07T04:00:21.000000000", + "2019-01-07T04:03:49.000000000", + "2019-01-07T04:04:05.000000000", + "2019-01-07T04:05:57.000000000", + "2019-01-07T04:07:17.000000000", + "2019-01-07T04:08:30.000000000", + "2019-01-07T04:10:43.000000000", + "2019-01-07T04:11:28.000000000", + "2019-01-07T04:12:12.000000000", + "2019-01-07T04:12:18.000000000", + "2019-01-07T04:12:37.000000000", + "2019-01-07T04:13:57.000000000", + "2019-01-07T04:16:21.000000000", + "2019-01-07T04:18:14.000000000", + "2019-01-07T04:19:00.000000000", + "2019-01-07T04:19:12.000000000", + "2019-01-07T04:24:10.000000000", + "2019-01-07T04:25:04.000000000", + "2019-01-07T04:26:42.000000000", + "2019-01-07T04:28:03.000000000", + "2019-01-07T04:31:09.000000000", + "2019-01-07T04:34:55.000000000", + "2019-01-07T04:35:19.000000000", + "2019-01-07T04:36:03.000000000", + "2019-01-07T04:36:48.000000000", + "2019-01-07T04:38:43.000000000", + "2019-01-07T04:41:25.000000000", + "2019-01-07T04:41:47.000000000", + "2019-01-07T04:41:55.000000000", + "2019-01-07T04:42:22.000000000", + "2019-01-07T04:42:24.000000000", + "2019-01-07T04:42:41.000000000", + "2019-01-07T04:44:16.000000000", + "2019-01-07T04:44:29.000000000", + "2019-01-07T04:45:01.000000000", + "2019-01-07T04:45:43.000000000", + "2019-01-07T04:46:07.000000000", + "2019-01-07T04:46:27.000000000", + "2019-01-07T04:46:36.000000000", + "2019-01-07T04:50:55.000000000", + "2019-01-07T04:52:06.000000000", + "2019-01-07T04:53:14.000000000", + "2019-01-07T04:53:23.000000000", + "2019-01-07T04:53:40.000000000", + "2019-01-07T04:54:49.000000000", + "2019-01-07T04:56:04.000000000", + "2019-01-07T04:56:59.000000000", + "2019-01-07T05:01:21.000000000", + "2019-01-07T05:01:22.000000000", + "2019-01-07T05:03:16.000000000", + "2019-01-07T05:03:17.000000000", + "2019-01-07T05:04:23.000000000", + "2019-01-07T05:06:16.000000000", + "2019-01-07T05:07:51.000000000", + "2019-01-07T05:08:32.000000000", + "2019-01-07T05:10:21.000000000", + "2019-01-07T05:11:07.000000000", + "2019-01-07T05:11:22.000000000", + "2019-01-07T05:17:10.000000000", + "2019-01-07T05:18:20.000000000", + "2019-01-07T05:20:47.000000000", + "2019-01-07T05:20:51.000000000", + "2019-01-07T05:20:57.000000000", + "2019-01-07T05:20:58.000000000", + "2019-01-07T05:22:02.000000000", + "2019-01-07T05:22:04.000000000", + "2019-01-07T05:23:33.000000000", + "2019-01-07T05:24:31.000000000", + "2019-01-07T05:25:16.000000000", + "2019-01-07T05:25:53.000000000", + "2019-01-07T05:26:47.000000000", + "2019-01-07T05:27:11.000000000", + "2019-01-07T05:28:05.000000000", + "2019-01-07T05:28:18.000000000", + "2019-01-07T05:29:11.000000000", + "2019-01-07T05:29:30.000000000", + "2019-01-07T05:30:08.000000000", + "2019-01-07T05:31:20.000000000", + "2019-01-07T05:33:44.000000000", + "2019-01-07T05:34:00.000000000", + "2019-01-07T05:34:01.000000000", + "2019-01-07T05:35:17.000000000", + "2019-01-07T05:35:19.000000000", + "2019-01-07T05:35:48.000000000", + "2019-01-07T05:36:34.000000000", + "2019-01-07T05:39:22.000000000", + "2019-01-07T05:39:50.000000000", + "2019-01-07T05:40:26.000000000", + "2019-01-07T05:41:40.000000000", + "2019-01-07T05:42:43.000000000", + "2019-01-07T05:42:49.000000000", + "2019-01-07T05:42:54.000000000", + "2019-01-07T05:43:23.000000000", + "2019-01-07T05:48:37.000000000", + "2019-01-07T05:49:06.000000000", + "2019-01-07T05:56:56.000000000", + "2019-01-07T05:56:57.000000000", + "2019-01-07T05:57:24.000000000", + "2019-01-07T05:58:15.000000000", + "2019-01-07T05:58:50.000000000", + "2019-01-07T05:59:24.000000000", + "2019-01-07T06:00:29.000000000", + "2019-01-07T06:01:26.000000000", + "2019-01-07T06:01:45.000000000", + "2019-01-07T06:02:11.000000000", + "2019-01-07T06:02:16.000000000", + "2019-01-07T06:07:32.000000000", + "2019-01-07T06:08:18.000000000", + "2019-01-07T06:09:25.000000000", + "2019-01-07T06:10:05.000000000", + "2019-01-07T06:10:51.000000000", + "2019-01-07T06:11:02.000000000", + "2019-01-07T06:11:55.000000000", + "2019-01-07T06:13:52.000000000", + "2019-01-07T06:16:34.000000000", + "2019-01-07T06:16:41.000000000", + "2019-01-07T06:17:23.000000000", + "2019-01-07T06:18:17.000000000", + "2019-01-07T06:19:03.000000000", + "2019-01-07T06:22:08.000000000", + "2019-01-07T06:23:14.000000000", + "2019-01-07T06:23:29.000000000", + "2019-01-07T06:24:47.000000000", + "2019-01-07T06:27:30.000000000", + "2019-01-07T06:27:43.000000000", + "2019-01-07T06:28:29.000000000", + "2019-01-07T06:29:41.000000000", + "2019-01-07T06:30:46.000000000", + "2019-01-07T06:31:24.000000000", + "2019-01-07T06:33:41.000000000", + "2019-01-07T06:35:58.000000000", + "2019-01-07T06:37:37.000000000", + "2019-01-07T06:37:42.000000000", + "2019-01-07T06:38:24.000000000", + "2019-01-07T06:39:12.000000000", + "2019-01-07T06:42:17.000000000", + "2019-01-07T06:42:24.000000000", + "2019-01-07T06:44:52.000000000", + "2019-01-07T06:45:17.000000000", + "2019-01-07T06:46:21.000000000", + "2019-01-07T06:48:06.000000000", + "2019-01-07T06:48:10.000000000", + "2019-01-07T06:48:11.000000000", + "2019-01-07T06:48:36.000000000", + "2019-01-07T06:50:04.000000000", + "2019-01-07T06:50:48.000000000", + "2019-01-07T06:52:46.000000000", + "2019-01-07T06:52:51.000000000", + "2019-01-07T06:52:59.000000000", + "2019-01-07T06:54:19.000000000", + "2019-01-07T06:55:09.000000000", + "2019-01-07T06:56:21.000000000", + "2019-01-07T06:57:13.000000000", + "2019-01-07T06:59:08.000000000", + "2019-01-07T06:59:34.000000000", + "2019-01-07T07:00:16.000000000", + "2019-01-07T07:00:39.000000000", + "2019-01-07T07:01:19.000000000", + "2019-01-07T07:01:57.000000000", + "2019-01-07T07:02:31.000000000", + "2019-01-07T07:02:34.000000000", + "2019-01-07T07:02:46.000000000", + "2019-01-07T07:02:53.000000000", + "2019-01-07T07:03:22.000000000", + "2019-01-07T07:04:06.000000000", + "2019-01-07T07:04:32.000000000", + "2019-01-07T07:05:15.000000000", + "2019-01-07T07:05:45.000000000", + "2019-01-07T07:06:36.000000000", + "2019-01-07T07:07:33.000000000", + "2019-01-07T07:07:55.000000000", + "2019-01-07T07:08:28.000000000", + "2019-01-07T07:08:56.000000000", + "2019-01-07T07:09:12.000000000", + "2019-01-07T07:10:29.000000000", + "2019-01-07T07:13:26.000000000", + "2019-01-07T07:13:40.000000000", + "2019-01-07T07:15:15.000000000", + "2019-01-07T07:15:42.000000000", + "2019-01-07T07:17:27.000000000", + "2019-01-07T07:17:42.000000000", + "2019-01-07T07:17:52.000000000", + "2019-01-07T07:17:57.000000000", + "2019-01-07T07:18:46.000000000", + "2019-01-07T07:19:00.000000000", + "2019-01-07T07:19:18.000000000", + "2019-01-07T07:19:50.000000000", + "2019-01-07T07:19:54.000000000", + "2019-01-07T07:19:59.000000000", + "2019-01-07T07:21:27.000000000", + "2019-01-07T07:22:13.000000000", + "2019-01-07T07:23:19.000000000", + "2019-01-07T07:23:45.000000000", + "2019-01-07T07:24:41.000000000", + "2019-01-07T07:25:00.000000000", + "2019-01-07T07:25:29.000000000", + "2019-01-07T07:28:08.000000000", + "2019-01-07T07:29:08.000000000", + "2019-01-07T07:29:18.000000000", + "2019-01-07T07:30:06.000000000", + "2019-01-07T07:30:28.000000000", + "2019-01-07T07:32:45.000000000", + "2019-01-07T07:33:21.000000000", + "2019-01-07T07:33:56.000000000", + "2019-01-07T07:34:20.000000000", + "2019-01-07T07:34:22.000000000", + "2019-01-07T07:34:43.000000000", + "2019-01-07T07:35:34.000000000", + "2019-01-07T07:39:25.000000000", + "2019-01-07T07:39:32.000000000", + "2019-01-07T07:40:17.000000000", + "2019-01-07T07:42:39.000000000", + "2019-01-07T07:44:54.000000000", + "2019-01-07T07:45:03.000000000", + "2019-01-07T07:49:30.000000000", + "2019-01-07T07:50:23.000000000", + "2019-01-07T07:51:10.000000000", + "2019-01-07T07:53:41.000000000", + "2019-01-07T07:54:52.000000000", + "2019-01-07T07:54:57.000000000", + "2019-01-07T07:57:42.000000000", + "2019-01-07T07:58:18.000000000", + "2019-01-07T07:58:31.000000000", + "2019-01-07T07:58:59.000000000", + "2019-01-07T08:01:03.000000000", + "2019-01-07T08:03:52.000000000", + "2019-01-07T08:04:40.000000000", + "2019-01-07T08:05:01.000000000", + "2019-01-07T08:05:51.000000000", + "2019-01-07T08:06:44.000000000", + "2019-01-07T08:07:09.000000000", + "2019-01-07T08:09:43.000000000", + "2019-01-07T08:09:58.000000000", + "2019-01-07T08:11:19.000000000", + "2019-01-07T08:11:48.000000000", + "2019-01-07T08:13:02.000000000", + "2019-01-07T08:15:25.000000000", + "2019-01-07T08:15:27.000000000", + "2019-01-07T08:15:33.000000000", + "2019-01-07T08:16:56.000000000", + "2019-01-07T08:17:29.000000000", + "2019-01-07T08:17:59.000000000", + "2019-01-07T08:19:06.000000000", + "2019-01-07T08:20:05.000000000", + "2019-01-07T08:21:58.000000000", + "2019-01-07T08:22:41.000000000", + "2019-01-07T08:26:02.000000000", + "2019-01-07T08:28:37.000000000", + "2019-01-07T08:29:42.000000000", + "2019-01-07T08:30:15.000000000", + "2019-01-07T08:31:13.000000000", + "2019-01-07T08:31:30.000000000", + "2019-01-07T08:31:45.000000000", + "2019-01-07T08:34:08.000000000", + "2019-01-07T08:34:49.000000000", + "2019-01-07T08:34:58.000000000", + "2019-01-07T08:35:29.000000000", + "2019-01-07T08:36:29.000000000", + "2019-01-07T08:37:00.000000000", + "2019-01-07T08:39:30.000000000", + "2019-01-07T08:41:16.000000000", + "2019-01-07T08:41:23.000000000", + "2019-01-07T08:42:37.000000000", + "2019-01-07T08:43:20.000000000", + "2019-01-07T08:43:26.000000000", + "2019-01-07T08:43:50.000000000", + "2019-01-07T08:45:21.000000000", + "2019-01-07T08:46:58.000000000", + "2019-01-07T08:47:59.000000000", + "2019-01-07T08:48:33.000000000", + "2019-01-07T08:49:40.000000000", + "2019-01-07T08:54:16.000000000", + "2019-01-07T08:54:37.000000000", + "2019-01-07T08:56:09.000000000", + "2019-01-07T08:56:12.000000000", + "2019-01-07T09:00:08.000000000", + "2019-01-07T09:00:34.000000000", + "2019-01-07T09:00:48.000000000", + "2019-01-07T09:00:57.000000000", + "2019-01-07T09:01:08.000000000", + "2019-01-07T09:01:30.000000000", + "2019-01-07T09:01:46.000000000", + "2019-01-07T09:01:59.000000000", + "2019-01-07T09:02:06.000000000", + "2019-01-07T09:02:46.000000000", + "2019-01-07T09:02:52.000000000", + "2019-01-07T09:03:11.000000000", + "2019-01-07T09:04:24.000000000", + "2019-01-07T09:04:44.000000000", + "2019-01-07T09:06:08.000000000", + "2019-01-07T09:06:16.000000000", + "2019-01-07T09:06:54.000000000", + "2019-01-07T09:09:28.000000000", + "2019-01-07T09:09:58.000000000", + "2019-01-07T09:10:21.000000000", + "2019-01-07T09:10:59.000000000", + "2019-01-07T09:12:27.000000000", + "2019-01-07T09:12:50.000000000", + "2019-01-07T09:13:04.000000000", + "2019-01-07T09:14:27.000000000", + "2019-01-07T09:14:34.000000000", + "2019-01-07T09:17:02.000000000", + "2019-01-07T09:17:30.000000000", + "2019-01-07T09:18:30.000000000", + "2019-01-07T09:18:37.000000000", + "2019-01-07T09:20:12.000000000", + "2019-01-07T09:20:25.000000000", + "2019-01-07T09:20:46.000000000", + "2019-01-07T09:22:10.000000000", + "2019-01-07T09:22:22.000000000", + "2019-01-07T09:23:10.000000000", + "2019-01-07T09:25:17.000000000", + "2019-01-07T09:25:29.000000000", + "2019-01-07T09:25:34.000000000", + "2019-01-07T09:26:24.000000000", + "2019-01-07T09:27:29.000000000", + "2019-01-07T09:28:32.000000000", + "2019-01-07T09:29:52.000000000", + "2019-01-07T09:30:51.000000000", + "2019-01-07T09:32:08.000000000", + "2019-01-07T09:33:07.000000000", + "2019-01-07T09:33:49.000000000", + "2019-01-07T09:33:55.000000000", + "2019-01-07T09:34:31.000000000", + "2019-01-07T09:36:46.000000000", + "2019-01-07T09:37:08.000000000", + "2019-01-07T09:37:18.000000000", + "2019-01-07T09:41:47.000000000", + "2019-01-07T09:44:14.000000000", + "2019-01-07T09:44:35.000000000", + "2019-01-07T09:45:29.000000000", + "2019-01-07T09:46:47.000000000", + "2019-01-07T09:47:55.000000000", + "2019-01-07T09:48:36.000000000", + "2019-01-07T09:49:57.000000000", + "2019-01-07T09:50:43.000000000", + "2019-01-07T09:55:13.000000000", + "2019-01-07T09:55:41.000000000", + "2019-01-07T09:56:33.000000000", + "2019-01-07T09:56:39.000000000", + "2019-01-07T09:56:48.000000000", + "2019-01-07T09:58:14.000000000", + "2019-01-07T09:58:28.000000000", + "2019-01-07T09:59:38.000000000", + "2019-01-07T10:01:23.000000000", + "2019-01-07T10:01:38.000000000", + "2019-01-07T10:01:48.000000000", + "2019-01-07T10:05:22.000000000", + "2019-01-07T10:07:15.000000000", + "2019-01-07T10:07:21.000000000", + "2019-01-07T10:12:37.000000000", + "2019-01-07T10:15:16.000000000", + "2019-01-07T10:15:50.000000000", + "2019-01-07T10:15:52.000000000", + "2019-01-07T10:16:52.000000000", + "2019-01-07T10:18:25.000000000", + "2019-01-07T10:19:32.000000000", + "2019-01-07T10:20:13.000000000", + "2019-01-07T10:23:19.000000000", + "2019-01-07T10:23:38.000000000", + "2019-01-07T10:24:50.000000000", + "2019-01-07T10:25:41.000000000", + "2019-01-07T10:26:32.000000000", + "2019-01-07T10:28:06.000000000", + "2019-01-07T10:28:11.000000000", + "2019-01-07T10:29:17.000000000", + "2019-01-07T10:30:03.000000000", + "2019-01-07T10:30:26.000000000", + "2019-01-07T10:30:36.000000000", + "2019-01-07T10:31:30.000000000", + "2019-01-07T10:31:52.000000000", + "2019-01-07T10:31:53.000000000", + "2019-01-07T10:32:08.000000000", + "2019-01-07T10:33:34.000000000", + "2019-01-07T10:35:15.000000000", + "2019-01-07T10:35:53.000000000", + "2019-01-07T10:36:00.000000000", + "2019-01-07T10:36:46.000000000", + "2019-01-07T10:36:58.000000000", + "2019-01-07T10:38:52.000000000", + "2019-01-07T10:40:07.000000000", + "2019-01-07T10:43:12.000000000", + "2019-01-07T10:43:13.000000000", + "2019-01-07T10:45:07.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:46:47.000000000", + "2019-01-07T10:47:43.000000000", + "2019-01-07T10:47:46.000000000", + "2019-01-07T10:49:28.000000000", + "2019-01-07T10:49:39.000000000", + "2019-01-07T10:50:58.000000000", + "2019-01-07T10:52:57.000000000", + "2019-01-07T10:53:15.000000000", + "2019-01-07T10:54:23.000000000", + "2019-01-07T10:54:30.000000000", + "2019-01-07T10:54:56.000000000", + "2019-01-07T10:54:59.000000000", + "2019-01-07T10:56:17.000000000", + "2019-01-07T10:56:40.000000000", + "2019-01-07T10:57:41.000000000", + "2019-01-07T10:58:07.000000000", + "2019-01-07T10:58:09.000000000", + "2019-01-07T10:58:17.000000000", + "2019-01-07T10:58:29.000000000", + "2019-01-07T11:00:31.000000000", + "2019-01-07T11:02:52.000000000", + "2019-01-07T11:03:56.000000000", + "2019-01-07T11:04:09.000000000", + "2019-01-07T11:04:15.000000000", + "2019-01-07T11:04:28.000000000", + "2019-01-07T11:06:37.000000000", + "2019-01-07T11:07:31.000000000", + "2019-01-07T11:11:05.000000000", + "2019-01-07T11:11:37.000000000", + "2019-01-07T11:13:27.000000000", + "2019-01-07T11:13:40.000000000", + "2019-01-07T11:13:54.000000000", + "2019-01-07T11:14:59.000000000", + "2019-01-07T11:16:48.000000000", + "2019-01-07T11:18:00.000000000", + "2019-01-07T11:18:20.000000000", + "2019-01-07T11:19:27.000000000", + "2019-01-07T11:20:11.000000000", + "2019-01-07T11:20:18.000000000", + "2019-01-07T11:22:19.000000000", + "2019-01-07T11:22:24.000000000", + "2019-01-07T11:22:46.000000000", + "2019-01-07T11:23:28.000000000", + "2019-01-07T11:23:30.000000000", + "2019-01-07T11:25:02.000000000", + "2019-01-07T11:25:36.000000000", + "2019-01-07T11:26:23.000000000", + "2019-01-07T11:27:52.000000000", + "2019-01-07T11:28:15.000000000", + "2019-01-07T11:30:02.000000000", + "2019-01-07T11:30:06.000000000", + "2019-01-07T11:30:28.000000000", + "2019-01-07T11:30:45.000000000", + "2019-01-07T11:30:55.000000000", + "2019-01-07T11:32:28.000000000", + "2019-01-07T11:32:45.000000000", + "2019-01-07T11:33:31.000000000", + "2019-01-07T11:36:10.000000000", + "2019-01-07T11:36:16.000000000", + "2019-01-07T11:37:20.000000000", + "2019-01-07T11:38:17.000000000", + "2019-01-07T11:40:25.000000000", + "2019-01-07T11:40:42.000000000", + "2019-01-07T11:43:30.000000000", + "2019-01-07T11:43:51.000000000", + "2019-01-07T11:45:09.000000000", + "2019-01-07T11:45:58.000000000", + "2019-01-07T11:46:13.000000000", + "2019-01-07T11:46:58.000000000", + "2019-01-07T11:47:05.000000000", + "2019-01-07T11:47:59.000000000", + "2019-01-07T11:48:13.000000000", + "2019-01-07T11:48:19.000000000", + "2019-01-07T11:49:55.000000000", + "2019-01-07T11:51:45.000000000", + "2019-01-07T11:52:39.000000000", + "2019-01-07T11:53:10.000000000", + "2019-01-07T11:53:20.000000000", + "2019-01-07T11:54:12.000000000", + "2019-01-07T11:55:35.000000000", + "2019-01-07T11:56:47.000000000", + "2019-01-07T11:57:09.000000000", + "2019-01-07T11:57:44.000000000", + "2019-01-07T11:58:36.000000000", + "2019-01-07T11:59:21.000000000", + "2019-01-07T12:02:52.000000000", + "2019-01-07T12:03:19.000000000", + "2019-01-07T12:04:02.000000000", + "2019-01-07T12:04:20.000000000", + "2019-01-07T12:04:34.000000000", + "2019-01-07T12:06:42.000000000", + "2019-01-07T12:07:19.000000000", + "2019-01-07T12:08:44.000000000", + "2019-01-07T12:09:18.000000000", + "2019-01-07T12:09:21.000000000", + "2019-01-07T12:09:39.000000000", + "2019-01-07T12:11:29.000000000", + "2019-01-07T12:12:21.000000000", + "2019-01-07T12:13:07.000000000", + "2019-01-07T12:13:30.000000000", + "2019-01-07T12:13:33.000000000", + "2019-01-07T12:14:13.000000000", + "2019-01-07T12:15:12.000000000", + "2019-01-07T12:16:37.000000000", + "2019-01-07T12:16:49.000000000", + "2019-01-07T12:18:00.000000000", + "2019-01-07T12:19:40.000000000", + "2019-01-07T12:20:23.000000000", + "2019-01-07T12:21:48.000000000", + "2019-01-07T12:22:11.000000000", + "2019-01-07T12:24:40.000000000", + "2019-01-07T12:25:00.000000000", + "2019-01-07T12:26:26.000000000", + "2019-01-07T12:26:59.000000000", + "2019-01-07T12:28:26.000000000", + "2019-01-07T12:28:50.000000000", + "2019-01-07T12:28:52.000000000", + "2019-01-07T12:29:23.000000000", + "2019-01-07T12:29:33.000000000", + "2019-01-07T12:30:17.000000000", + "2019-01-07T12:31:21.000000000", + "2019-01-07T12:32:40.000000000", + "2019-01-07T12:34:21.000000000", + "2019-01-07T12:34:38.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:37:16.000000000", + "2019-01-07T12:37:20.000000000", + "2019-01-07T12:37:23.000000000", + "2019-01-07T12:38:07.000000000", + "2019-01-07T12:39:48.000000000", + "2019-01-07T12:40:26.000000000", + "2019-01-07T12:41:30.000000000", + "2019-01-07T12:41:39.000000000", + "2019-01-07T12:41:43.000000000", + "2019-01-07T12:41:53.000000000", + "2019-01-07T12:43:40.000000000", + "2019-01-07T12:46:37.000000000", + "2019-01-07T12:48:30.000000000", + "2019-01-07T12:49:43.000000000", + "2019-01-07T12:51:14.000000000", + "2019-01-07T12:53:05.000000000", + "2019-01-07T12:53:14.000000000", + "2019-01-07T12:53:21.000000000", + "2019-01-07T12:53:37.000000000", + "2019-01-07T12:54:18.000000000", + "2019-01-07T12:54:56.000000000", + "2019-01-07T12:55:43.000000000", + "2019-01-07T12:56:47.000000000", + "2019-01-07T12:57:02.000000000", + "2019-01-07T12:57:17.000000000", + "2019-01-07T12:57:29.000000000", + "2019-01-07T12:57:36.000000000", + "2019-01-07T12:57:49.000000000", + "2019-01-07T12:58:38.000000000", + "2019-01-07T12:58:54.000000000", + "2019-01-07T13:00:51.000000000", + "2019-01-07T13:04:20.000000000", + "2019-01-07T13:05:15.000000000", + "2019-01-07T13:05:17.000000000", + "2019-01-07T13:05:41.000000000", + "2019-01-07T13:07:49.000000000", + "2019-01-07T13:08:20.000000000", + "2019-01-07T13:10:13.000000000", + "2019-01-07T13:11:02.000000000", + "2019-01-07T13:11:53.000000000", + "2019-01-07T13:14:17.000000000", + "2019-01-07T13:15:10.000000000", + "2019-01-07T13:15:17.000000000", + "2019-01-07T13:17:04.000000000", + "2019-01-07T13:18:12.000000000", + "2019-01-07T13:19:34.000000000", + "2019-01-07T13:20:59.000000000", + "2019-01-07T13:22:38.000000000", + "2019-01-07T13:23:31.000000000", + "2019-01-07T13:25:14.000000000", + "2019-01-07T13:25:58.000000000", + "2019-01-07T13:26:10.000000000", + "2019-01-07T13:26:49.000000000", + "2019-01-07T13:28:35.000000000", + "2019-01-07T13:28:46.000000000", + "2019-01-07T13:28:48.000000000", + "2019-01-07T13:30:18.000000000", + "2019-01-07T13:31:46.000000000", + "2019-01-07T13:32:06.000000000", + "2019-01-07T13:32:10.000000000", + "2019-01-07T13:32:12.000000000", + "2019-01-07T13:32:17.000000000", + "2019-01-07T13:34:46.000000000", + "2019-01-07T13:36:02.000000000", + "2019-01-07T13:36:48.000000000", + "2019-01-07T13:37:05.000000000", + "2019-01-07T13:38:07.000000000", + "2019-01-07T13:38:38.000000000", + "2019-01-07T13:40:21.000000000", + "2019-01-07T13:40:28.000000000", + "2019-01-07T13:42:11.000000000", + "2019-01-07T13:42:59.000000000", + "2019-01-07T13:46:11.000000000", + "2019-01-07T13:47:46.000000000", + "2019-01-07T13:47:49.000000000", + "2019-01-07T13:48:38.000000000", + "2019-01-07T13:49:23.000000000", + "2019-01-07T13:50:32.000000000", + "2019-01-07T13:50:36.000000000", + "2019-01-07T13:53:32.000000000", + "2019-01-07T13:55:19.000000000", + "2019-01-07T13:58:09.000000000", + "2019-01-07T14:03:02.000000000", + "2019-01-07T14:04:28.000000000", + "2019-01-07T14:05:13.000000000", + "2019-01-07T14:07:51.000000000", + "2019-01-07T14:10:12.000000000", + "2019-01-07T14:14:28.000000000", + "2019-01-07T14:16:06.000000000", + "2019-01-07T14:17:54.000000000", + "2019-01-07T14:18:35.000000000", + "2019-01-07T14:19:19.000000000", + "2019-01-07T14:20:22.000000000", + "2019-01-07T14:20:31.000000000", + "2019-01-07T14:21:09.000000000", + "2019-01-07T14:21:41.000000000", + "2019-01-07T14:22:49.000000000", + "2019-01-07T14:22:55.000000000", + "2019-01-07T14:23:06.000000000", + "2019-01-07T14:23:50.000000000", + "2019-01-07T14:25:47.000000000", + "2019-01-07T14:26:25.000000000", + "2019-01-07T14:26:31.000000000", + "2019-01-07T14:28:13.000000000", + "2019-01-07T14:29:32.000000000", + "2019-01-07T14:29:59.000000000", + "2019-01-07T14:30:03.000000000", + "2019-01-07T14:30:52.000000000", + "2019-01-07T14:31:01.000000000", + "2019-01-07T14:31:52.000000000", + "2019-01-07T14:32:53.000000000", + "2019-01-07T14:35:39.000000000", + "2019-01-07T14:36:39.000000000", + "2019-01-07T14:37:06.000000000", + "2019-01-07T14:38:05.000000000", + "2019-01-07T14:39:51.000000000", + "2019-01-07T14:40:37.000000000", + "2019-01-07T14:41:41.000000000", + "2019-01-07T14:43:55.000000000", + "2019-01-07T14:45:19.000000000", + "2019-01-07T14:45:42.000000000", + "2019-01-07T14:46:40.000000000", + "2019-01-07T14:51:08.000000000", + "2019-01-07T14:52:27.000000000", + "2019-01-07T14:52:46.000000000", + "2019-01-07T14:54:51.000000000", + "2019-01-07T14:56:59.000000000", + "2019-01-07T14:57:06.000000000", + "2019-01-07T14:59:46.000000000", + "2019-01-07T15:02:39.000000000", + "2019-01-07T15:02:40.000000000", + "2019-01-07T15:03:24.000000000", + "2019-01-07T15:06:10.000000000", + "2019-01-07T15:07:31.000000000", + "2019-01-07T15:07:47.000000000", + "2019-01-07T15:08:46.000000000", + "2019-01-07T15:08:51.000000000", + "2019-01-07T15:09:09.000000000", + "2019-01-07T15:10:13.000000000", + "2019-01-07T15:10:20.000000000", + "2019-01-07T15:10:47.000000000", + "2019-01-07T15:12:36.000000000", + "2019-01-07T15:12:54.000000000", + "2019-01-07T15:13:44.000000000", + "2019-01-07T15:13:50.000000000", + "2019-01-07T15:16:59.000000000", + "2019-01-07T15:17:20.000000000", + "2019-01-07T15:17:33.000000000", + "2019-01-07T15:17:53.000000000", + "2019-01-07T15:18:33.000000000", + "2019-01-07T15:18:47.000000000", + "2019-01-07T15:19:37.000000000", + "2019-01-07T15:19:56.000000000", + "2019-01-07T15:20:14.000000000", + "2019-01-07T15:20:47.000000000", + "2019-01-07T15:21:32.000000000", + "2019-01-07T15:22:29.000000000", + "2019-01-07T15:22:31.000000000", + "2019-01-07T15:23:04.000000000", + "2019-01-07T15:23:06.000000000", + "2019-01-07T15:23:10.000000000", + "2019-01-07T15:23:38.000000000", + "2019-01-07T15:24:16.000000000", + "2019-01-07T15:25:52.000000000", + "2019-01-07T15:26:26.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:18.000000000", + "2019-01-07T15:27:29.000000000", + "2019-01-07T15:28:42.000000000", + "2019-01-07T15:28:52.000000000", + "2019-01-07T15:29:37.000000000", + "2019-01-07T15:29:42.000000000", + "2019-01-07T15:30:09.000000000", + "2019-01-07T15:30:54.000000000", + "2019-01-07T15:32:15.000000000", + "2019-01-07T15:32:21.000000000", + "2019-01-07T15:32:24.000000000", + "2019-01-07T15:32:48.000000000", + "2019-01-07T15:33:31.000000000", + "2019-01-07T15:34:32.000000000", + "2019-01-07T15:34:36.000000000", + "2019-01-07T15:34:50.000000000", + "2019-01-07T15:35:15.000000000", + "2019-01-07T15:35:46.000000000", + "2019-01-07T15:36:18.000000000", + "2019-01-07T15:38:40.000000000", + "2019-01-07T15:39:20.000000000", + "2019-01-07T15:40:42.000000000", + "2019-01-07T15:42:50.000000000", + "2019-01-07T15:43:02.000000000", + "2019-01-07T15:43:58.000000000", + "2019-01-07T15:45:34.000000000", + "2019-01-07T15:48:03.000000000", + "2019-01-07T15:49:01.000000000", + "2019-01-07T15:50:21.000000000", + "2019-01-07T15:51:06.000000000", + "2019-01-07T15:52:46.000000000", + "2019-01-07T15:52:56.000000000", + "2019-01-07T15:54:29.000000000", + "2019-01-07T15:54:44.000000000", + "2019-01-07T15:56:34.000000000", + "2019-01-07T15:56:40.000000000", + "2019-01-07T15:59:16.000000000", + "2019-01-07T15:59:59.000000000", + "2019-01-07T16:01:15.000000000", + "2019-01-07T16:02:34.000000000", + "2019-01-07T16:03:19.000000000", + "2019-01-07T16:03:56.000000000", + "2019-01-07T16:04:48.000000000", + "2019-01-07T16:06:47.000000000", + "2019-01-07T16:07:23.000000000", + "2019-01-07T16:09:10.000000000", + "2019-01-07T16:10:30.000000000", + "2019-01-07T16:10:45.000000000", + "2019-01-07T16:10:52.000000000", + "2019-01-07T16:10:58.000000000", + "2019-01-07T16:11:16.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:58.000000000", + "2019-01-07T16:12:14.000000000", + "2019-01-07T16:13:08.000000000", + "2019-01-07T16:14:47.000000000", + "2019-01-07T16:15:50.000000000", + "2019-01-07T16:15:55.000000000", + "2019-01-07T16:17:00.000000000", + "2019-01-07T16:17:27.000000000", + "2019-01-07T16:17:41.000000000", + "2019-01-07T16:17:46.000000000", + "2019-01-07T16:18:09.000000000", + "2019-01-07T16:18:42.000000000", + "2019-01-07T16:19:22.000000000", + "2019-01-07T16:20:53.000000000", + "2019-01-07T16:21:32.000000000", + "2019-01-07T16:26:22.000000000", + "2019-01-07T16:26:40.000000000", + "2019-01-07T16:27:28.000000000", + "2019-01-07T16:27:32.000000000", + "2019-01-07T16:29:07.000000000", + "2019-01-07T16:29:40.000000000", + "2019-01-07T16:29:56.000000000", + "2019-01-07T16:31:08.000000000", + "2019-01-07T16:31:10.000000000", + "2019-01-07T16:31:24.000000000", + "2019-01-07T16:31:55.000000000", + "2019-01-07T16:32:27.000000000", + "2019-01-07T16:33:15.000000000", + "2019-01-07T16:34:54.000000000", + "2019-01-07T16:35:06.000000000", + "2019-01-07T16:35:13.000000000", + "2019-01-07T16:36:21.000000000", + "2019-01-07T16:40:15.000000000", + "2019-01-07T16:40:27.000000000", + "2019-01-07T16:40:50.000000000", + "2019-01-07T16:42:41.000000000", + "2019-01-07T16:43:06.000000000", + "2019-01-07T16:44:00.000000000", + "2019-01-07T16:44:05.000000000", + "2019-01-07T16:44:17.000000000", + "2019-01-07T16:45:43.000000000", + "2019-01-07T16:47:00.000000000", + "2019-01-07T16:47:48.000000000", + "2019-01-07T16:47:54.000000000", + "2019-01-07T16:48:14.000000000", + "2019-01-07T16:48:28.000000000", + "2019-01-07T16:48:39.000000000", + "2019-01-07T16:51:00.000000000", + "2019-01-07T16:53:11.000000000", + "2019-01-07T16:53:36.000000000", + "2019-01-07T16:58:40.000000000", + "2019-01-07T16:59:33.000000000", + "2019-01-07T17:00:56.000000000", + "2019-01-07T17:01:11.000000000", + "2019-01-07T17:02:04.000000000", + "2019-01-07T17:02:06.000000000", + "2019-01-07T17:02:12.000000000", + "2019-01-07T17:03:04.000000000", + "2019-01-07T17:03:36.000000000", + "2019-01-07T17:03:40.000000000", + "2019-01-07T17:04:04.000000000", + "2019-01-07T17:05:10.000000000", + "2019-01-07T17:06:20.000000000", + "2019-01-07T17:08:10.000000000", + "2019-01-07T17:10:31.000000000", + "2019-01-07T17:11:38.000000000", + "2019-01-07T17:12:00.000000000", + "2019-01-07T17:12:08.000000000", + "2019-01-07T17:13:10.000000000", + "2019-01-07T17:13:53.000000000", + "2019-01-07T17:14:00.000000000", + "2019-01-07T17:14:19.000000000", + "2019-01-07T17:14:37.000000000", + "2019-01-07T17:15:38.000000000", + "2019-01-07T17:18:17.000000000", + "2019-01-07T17:18:55.000000000", + "2019-01-07T17:19:01.000000000", + "2019-01-07T17:19:48.000000000", + "2019-01-07T17:21:56.000000000", + "2019-01-07T17:22:58.000000000", + "2019-01-07T17:24:43.000000000", + "2019-01-07T17:24:44.000000000", + "2019-01-07T17:26:03.000000000", + "2019-01-07T17:26:33.000000000", + "2019-01-07T17:27:46.000000000", + "2019-01-07T17:28:15.000000000", + "2019-01-07T17:29:33.000000000", + "2019-01-07T17:29:57.000000000", + "2019-01-07T17:30:37.000000000", + "2019-01-07T17:30:58.000000000", + "2019-01-07T17:33:50.000000000", + "2019-01-07T17:36:31.000000000", + "2019-01-07T17:40:25.000000000", + "2019-01-07T17:40:56.000000000", + "2019-01-07T17:40:57.000000000", + "2019-01-07T17:41:05.000000000", + "2019-01-07T17:41:40.000000000", + "2019-01-07T17:41:49.000000000", + "2019-01-07T17:42:45.000000000", + "2019-01-07T17:44:43.000000000", + "2019-01-07T17:44:48.000000000", + "2019-01-07T17:45:13.000000000", + "2019-01-07T17:46:37.000000000", + "2019-01-07T17:47:49.000000000", + "2019-01-07T17:47:56.000000000", + "2019-01-07T17:48:21.000000000", + "2019-01-07T17:48:56.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:55:15.000000000", + "2019-01-07T17:58:33.000000000", + "2019-01-07T18:00:20.000000000", + "2019-01-07T18:01:10.000000000", + "2019-01-07T18:01:29.000000000", + "2019-01-07T18:01:43.000000000", + "2019-01-07T18:02:13.000000000", + "2019-01-07T18:03:47.000000000", + "2019-01-07T18:07:28.000000000", + "2019-01-07T18:09:09.000000000", + "2019-01-07T18:10:29.000000000", + "2019-01-07T18:11:04.000000000", + "2019-01-07T18:13:44.000000000", + "2019-01-07T18:14:41.000000000", + "2019-01-07T18:14:59.000000000", + "2019-01-07T18:15:36.000000000", + "2019-01-07T18:16:30.000000000", + "2019-01-07T18:16:44.000000000", + "2019-01-07T18:16:46.000000000", + "2019-01-07T18:18:01.000000000", + "2019-01-07T18:19:02.000000000", + "2019-01-07T18:19:05.000000000", + "2019-01-07T18:20:15.000000000", + "2019-01-07T18:20:24.000000000", + "2019-01-07T18:21:23.000000000", + "2019-01-07T18:21:48.000000000", + "2019-01-07T18:22:13.000000000", + "2019-01-07T18:22:19.000000000", + "2019-01-07T18:22:38.000000000", + "2019-01-07T18:23:29.000000000", + "2019-01-07T18:25:47.000000000", + "2019-01-07T18:26:12.000000000", + "2019-01-07T18:26:52.000000000", + "2019-01-07T18:27:09.000000000", + "2019-01-07T18:27:25.000000000", + "2019-01-07T18:28:31.000000000", + "2019-01-07T18:29:57.000000000", + "2019-01-07T18:30:04.000000000", + "2019-01-07T18:32:16.000000000", + "2019-01-07T18:32:53.000000000", + "2019-01-07T18:33:48.000000000", + "2019-01-07T18:33:58.000000000", + "2019-01-07T18:35:25.000000000", + "2019-01-07T18:36:00.000000000", + "2019-01-07T18:36:08.000000000", + "2019-01-07T18:37:32.000000000", + "2019-01-07T18:38:49.000000000", + "2019-01-07T18:42:37.000000000", + "2019-01-07T18:44:55.000000000", + "2019-01-07T18:44:56.000000000", + "2019-01-07T18:45:08.000000000", + "2019-01-07T18:46:10.000000000", + "2019-01-07T18:49:40.000000000", + "2019-01-07T18:51:24.000000000", + "2019-01-07T18:51:53.000000000", + "2019-01-07T18:52:01.000000000", + "2019-01-07T18:52:35.000000000", + "2019-01-07T18:53:48.000000000", + "2019-01-07T18:54:13.000000000", + "2019-01-07T18:56:21.000000000", + "2019-01-07T18:56:58.000000000", + "2019-01-07T18:57:42.000000000", + "2019-01-07T18:58:49.000000000", + "2019-01-07T19:00:22.000000000", + "2019-01-07T19:02:06.000000000", + "2019-01-07T19:02:13.000000000", + "2019-01-07T19:02:15.000000000", + "2019-01-07T19:03:39.000000000", + "2019-01-07T19:03:44.000000000", + "2019-01-07T19:06:11.000000000", + "2019-01-07T19:06:22.000000000", + "2019-01-07T19:08:05.000000000", + "2019-01-07T19:08:45.000000000", + "2019-01-07T19:11:28.000000000", + "2019-01-07T19:12:51.000000000", + "2019-01-07T19:13:41.000000000", + "2019-01-07T19:13:44.000000000", + "2019-01-07T19:14:56.000000000", + "2019-01-07T19:15:14.000000000", + "2019-01-07T19:16:24.000000000", + "2019-01-07T19:16:34.000000000", + "2019-01-07T19:17:20.000000000", + "2019-01-07T19:18:21.000000000", + "2019-01-07T19:19:07.000000000", + "2019-01-07T19:19:33.000000000", + "2019-01-07T19:20:53.000000000", + "2019-01-07T19:21:16.000000000", + "2019-01-07T19:22:43.000000000", + "2019-01-07T19:22:58.000000000", + "2019-01-07T19:26:05.000000000", + "2019-01-07T19:26:07.000000000", + "2019-01-07T19:26:13.000000000", + "2019-01-07T19:27:23.000000000", + "2019-01-07T19:28:01.000000000", + "2019-01-07T19:29:41.000000000", + "2019-01-07T19:30:16.000000000", + "2019-01-07T19:30:22.000000000", + "2019-01-07T19:30:25.000000000", + "2019-01-07T19:30:47.000000000", + "2019-01-07T19:32:59.000000000", + "2019-01-07T19:33:36.000000000", + "2019-01-07T19:34:10.000000000", + "2019-01-07T19:34:52.000000000", + "2019-01-07T19:35:23.000000000", + "2019-01-07T19:38:16.000000000", + "2019-01-07T19:38:18.000000000", + "2019-01-07T19:38:47.000000000", + "2019-01-07T19:39:45.000000000", + "2019-01-07T19:39:50.000000000", + "2019-01-07T19:40:48.000000000", + "2019-01-07T19:41:16.000000000", + "2019-01-07T19:42:24.000000000", + "2019-01-07T19:43:09.000000000", + "2019-01-07T19:44:07.000000000", + "2019-01-07T19:44:22.000000000", + "2019-01-07T19:44:42.000000000", + "2019-01-07T19:47:22.000000000", + "2019-01-07T19:48:07.000000000", + "2019-01-07T19:48:23.000000000", + "2019-01-07T19:49:53.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:52:28.000000000", + "2019-01-07T19:52:45.000000000", + "2019-01-07T19:52:52.000000000", + "2019-01-07T19:56:35.000000000", + "2019-01-07T19:59:05.000000000", + "2019-01-07T20:00:25.000000000", + "2019-01-07T20:01:14.000000000", + "2019-01-07T20:01:20.000000000", + "2019-01-07T20:01:46.000000000", + "2019-01-07T20:01:47.000000000", + "2019-01-07T20:04:02.000000000", + "2019-01-07T20:04:14.000000000", + "2019-01-07T20:07:00.000000000", + "2019-01-07T20:08:32.000000000", + "2019-01-07T20:11:29.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:13:41.000000000", + "2019-01-07T20:16:22.000000000", + "2019-01-07T20:18:24.000000000", + "2019-01-07T20:18:39.000000000", + "2019-01-07T20:19:22.000000000", + "2019-01-07T20:20:35.000000000", + "2019-01-07T20:21:25.000000000", + "2019-01-07T20:22:52.000000000", + "2019-01-07T20:23:41.000000000", + "2019-01-07T20:32:51.000000000", + "2019-01-07T20:33:56.000000000", + "2019-01-07T20:34:52.000000000", + "2019-01-07T20:35:25.000000000", + "2019-01-07T20:36:27.000000000", + "2019-01-07T20:39:11.000000000", + "2019-01-07T20:42:25.000000000", + "2019-01-07T20:43:18.000000000", + "2019-01-07T20:43:28.000000000", + "2019-01-07T20:45:30.000000000", + "2019-01-07T20:45:45.000000000", + "2019-01-07T20:46:10.000000000", + "2019-01-07T20:47:16.000000000", + "2019-01-07T20:47:20.000000000", + "2019-01-07T20:47:26.000000000", + "2019-01-07T20:48:38.000000000", + "2019-01-07T20:49:33.000000000", + "2019-01-07T20:49:43.000000000", + "2019-01-07T20:51:31.000000000", + "2019-01-07T20:52:22.000000000", + "2019-01-07T20:53:33.000000000", + "2019-01-07T20:54:04.000000000", + "2019-01-07T20:55:24.000000000", + "2019-01-07T20:56:08.000000000", + "2019-01-07T20:57:22.000000000", + "2019-01-07T20:57:30.000000000", + "2019-01-07T20:58:00.000000000", + "2019-01-07T20:59:33.000000000", + "2019-01-07T21:01:06.000000000", + "2019-01-07T21:01:19.000000000", + "2019-01-07T21:01:43.000000000", + "2019-01-07T21:03:37.000000000", + "2019-01-07T21:03:45.000000000", + "2019-01-07T21:04:37.000000000", + "2019-01-07T21:06:54.000000000", + "2019-01-07T21:07:33.000000000", + "2019-01-07T21:07:41.000000000", + "2019-01-07T21:09:00.000000000", + "2019-01-07T21:11:30.000000000", + "2019-01-07T21:12:41.000000000", + "2019-01-07T21:14:34.000000000", + "2019-01-07T21:14:42.000000000", + "2019-01-07T21:15:47.000000000", + "2019-01-07T21:15:49.000000000", + "2019-01-07T21:16:53.000000000", + "2019-01-07T21:18:39.000000000", + "2019-01-07T21:19:04.000000000", + "2019-01-07T21:20:05.000000000", + "2019-01-07T21:20:29.000000000", + "2019-01-07T21:20:50.000000000", + "2019-01-07T21:21:28.000000000", + "2019-01-07T21:23:26.000000000", + "2019-01-07T21:23:31.000000000", + "2019-01-07T21:24:18.000000000", + "2019-01-07T21:25:49.000000000", + "2019-01-07T21:26:42.000000000", + "2019-01-07T21:27:30.000000000", + "2019-01-07T21:27:42.000000000", + "2019-01-07T21:28:10.000000000", + "2019-01-07T21:30:39.000000000", + "2019-01-07T21:32:14.000000000", + "2019-01-07T21:32:27.000000000", + "2019-01-07T21:35:11.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:30.000000000", + "2019-01-07T21:37:19.000000000", + "2019-01-07T21:38:08.000000000", + "2019-01-07T21:38:11.000000000", + "2019-01-07T21:38:33.000000000", + "2019-01-07T21:39:03.000000000", + "2019-01-07T21:40:51.000000000", + "2019-01-07T21:41:21.000000000", + "2019-01-07T21:42:55.000000000", + "2019-01-07T21:43:30.000000000", + "2019-01-07T21:43:59.000000000", + "2019-01-07T21:44:51.000000000", + "2019-01-07T21:45:42.000000000", + "2019-01-07T21:48:22.000000000", + "2019-01-07T21:48:57.000000000", + "2019-01-07T21:49:42.000000000", + "2019-01-07T21:50:48.000000000", + "2019-01-07T21:51:14.000000000", + "2019-01-07T21:51:41.000000000", + "2019-01-07T21:51:46.000000000", + "2019-01-07T21:52:38.000000000", + "2019-01-07T21:53:55.000000000", + "2019-01-07T21:53:57.000000000", + "2019-01-07T21:54:15.000000000", + "2019-01-07T21:56:30.000000000", + "2019-01-07T21:57:11.000000000", + "2019-01-07T21:57:15.000000000", + "2019-01-07T21:57:41.000000000", + "2019-01-07T21:59:05.000000000", + "2019-01-07T21:59:13.000000000", + "2019-01-07T22:01:26.000000000", + "2019-01-07T22:05:14.000000000", + "2019-01-07T22:05:55.000000000", + "2019-01-07T22:06:48.000000000", + "2019-01-07T22:07:49.000000000", + "2019-01-07T22:08:37.000000000", + "2019-01-07T22:12:30.000000000", + "2019-01-07T22:12:58.000000000", + "2019-01-07T22:13:10.000000000", + "2019-01-07T22:14:17.000000000", + "2019-01-07T22:14:32.000000000", + "2019-01-07T22:14:58.000000000", + "2019-01-07T22:15:10.000000000", + "2019-01-07T22:15:30.000000000", + "2019-01-07T22:16:40.000000000", + "2019-01-07T22:17:11.000000000", + "2019-01-07T22:18:02.000000000", + "2019-01-07T22:20:17.000000000", + "2019-01-07T22:20:40.000000000", + "2019-01-07T22:21:51.000000000", + "2019-01-07T22:22:10.000000000", + "2019-01-07T22:22:26.000000000", + "2019-01-07T22:24:52.000000000", + "2019-01-07T22:24:59.000000000", + "2019-01-07T22:25:26.000000000", + "2019-01-07T22:26:45.000000000", + "2019-01-07T22:26:58.000000000", + "2019-01-07T22:28:48.000000000", + "2019-01-07T22:30:42.000000000", + "2019-01-07T22:31:17.000000000", + "2019-01-07T22:31:20.000000000", + "2019-01-07T22:31:38.000000000", + "2019-01-07T22:31:46.000000000", + "2019-01-07T22:32:47.000000000", + "2019-01-07T22:33:28.000000000", + "2019-01-07T22:34:16.000000000", + "2019-01-07T22:34:20.000000000", + "2019-01-07T22:34:36.000000000", + "2019-01-07T22:35:41.000000000", + "2019-01-07T22:37:25.000000000", + "2019-01-07T22:37:27.000000000", + "2019-01-07T22:38:05.000000000", + "2019-01-07T22:39:10.000000000", + "2019-01-07T22:39:21.000000000", + "2019-01-07T22:40:05.000000000", + "2019-01-07T22:40:25.000000000", + "2019-01-07T22:40:49.000000000", + "2019-01-07T22:41:31.000000000", + "2019-01-07T22:42:13.000000000", + "2019-01-07T22:42:27.000000000", + "2019-01-07T22:42:40.000000000", + "2019-01-07T22:43:33.000000000", + "2019-01-07T22:44:48.000000000", + "2019-01-07T22:45:51.000000000", + "2019-01-07T22:47:41.000000000", + "2019-01-07T22:47:55.000000000", + "2019-01-07T22:48:03.000000000", + "2019-01-07T22:49:30.000000000", + "2019-01-07T22:51:00.000000000", + "2019-01-07T22:52:44.000000000", + "2019-01-07T22:53:35.000000000", + "2019-01-07T22:53:53.000000000", + "2019-01-07T22:56:35.000000000", + "2019-01-07T22:58:50.000000000", + "2019-01-07T22:59:07.000000000", + "2019-01-07T23:00:06.000000000", + "2019-01-07T23:08:30.000000000", + "2019-01-07T23:09:38.000000000", + "2019-01-07T23:10:21.000000000", + "2019-01-07T23:10:40.000000000", + "2019-01-07T23:11:05.000000000", + "2019-01-07T23:14:01.000000000", + "2019-01-07T23:14:39.000000000", + "2019-01-07T23:14:44.000000000", + "2019-01-07T23:16:26.000000000", + "2019-01-07T23:19:06.000000000", + "2019-01-07T23:19:58.000000000", + "2019-01-07T23:20:46.000000000", + "2019-01-07T23:20:49.000000000", + "2019-01-07T23:21:58.000000000", + "2019-01-07T23:23:04.000000000", + "2019-01-07T23:25:11.000000000", + "2019-01-07T23:26:26.000000000", + "2019-01-07T23:27:14.000000000", + "2019-01-07T23:27:21.000000000", + "2019-01-07T23:28:16.000000000", + "2019-01-07T23:29:24.000000000", + "2019-01-07T23:30:44.000000000", + "2019-01-07T23:32:09.000000000", + "2019-01-07T23:33:08.000000000", + "2019-01-07T23:33:20.000000000", + "2019-01-07T23:34:52.000000000", + "2019-01-07T23:34:56.000000000", + "2019-01-07T23:35:31.000000000", + "2019-01-07T23:35:59.000000000", + "2019-01-07T23:38:21.000000000", + "2019-01-07T23:38:55.000000000", + "2019-01-07T23:42:27.000000000", + "2019-01-07T23:43:23.000000000", + "2019-01-07T23:43:40.000000000", + "2019-01-07T23:45:29.000000000", + "2019-01-07T23:47:01.000000000", + "2019-01-07T23:47:15.000000000", + "2019-01-07T23:47:55.000000000", + "2019-01-07T23:48:12.000000000", + "2019-01-07T23:49:23.000000000", + "2019-01-07T23:49:45.000000000", + "2019-01-07T23:50:07.000000000", + "2019-01-07T23:51:07.000000000", + "2019-01-07T23:51:52.000000000", + "2019-01-07T23:53:18.000000000", + "2019-01-07T23:53:19.000000000", + "2019-01-07T23:53:56.000000000", + "2019-01-07T23:55:56.000000000" + ], + "y": [ + 2.912543345569847, + 3.060680275450156, + 2.7980974894397144, + 3.2789017321839324, + 2.7312129073977878, + 2.998029674465307, + 2.752753543142779, + 3.2205043308129584, + 3.1969387793818695, + 2.77621828218125, + 3.0163214254322406, + 3.298185515990218, + 2.989249471588387, + 2.5861535385608345, + 2.590546956031159, + 2.6556943924449583, + 2.8560368858305747, + 2.973775007726938, + 3.2367311302086916, + 3.2172561162899274, + 2.8648365205502024, + 2.810790484359871, + 3.4454551419800206, + 2.78442895156405, + 3.595746079580473, + 2.591871983000469, + 2.921696232160414, + 2.9057982606574373, + 2.9022812247403698, + 3.028465315898029, + 3.4685521003230435, + 3.5712440290413503, + 3.2911242474602105, + 2.8987757849076674, + 2.9737900914526834, + 3.7182538717184634, + 3.2743314917388564, + 4.130535696145648, + 3.591818019983561, + 3.630423047508102, + 3.5220071481792643, + 3.221863487369029, + 3.317524803937239, + 3.761705947772733, + 3.610673380462953, + 3.5880141262469643, + 3.6889753104354948, + 3.4649910413376426, + 3.518800871420716, + 3.8124781783694246, + 3.600023580793757, + 3.487995149377528, + 3.4533964756185895, + 2.95721745560442, + 3.454723247874051, + 3.753200541877454, + 3.7477193410956553, + 4.018652979713019, + 3.2369792105065094, + 4.042225423146355, + 3.1654275052799727, + 3.8947720532761676, + 3.7508149942287266, + 3.493247676817162, + 3.345186484395558, + 3.6531448989364264, + 3.7518772676587537, + 3.729768600107601, + 4.118428821869844, + 3.4818423199726602, + 3.3103318463722724, + 3.5934125246426274, + 3.6472293290323874, + 4.1571194014616335, + 3.5358503507217165, + 3.966051597881632, + 4.451246530027503, + 3.7744365535447524, + 3.66648788374429, + 4.337027925632222, + 3.672207537150359, + 4.2415081650098605, + 3.9736982934302127, + 3.8575800909682636, + 3.805206093390556, + 3.6474199116891377, + 3.9306062524311427, + 4.438090445185895, + 4.270434986897687, + 4.435757082437133, + 3.928582521129419, + 4.081412066515226, + 4.433456601949917, + 3.8423241745942525, + 4.130643372644708, + 4.318927488430951, + 4.131099745224915, + 4.184567327778171, + 4.133404552611851, + 4.138353083517746, + 3.9423310036195303, + 4.237432508742813, + 4.393122844482981, + 3.9265194758980435, + 4.157067420129275, + 3.9226259621297976, + 4.29090723154629, + 4.257441596868754, + 4.887763399242715, + 4.506075128730006, + 4.408024547121093, + 3.8853374627050776, + 3.1873502756473617, + 4.585176701583314, + 4.279428181246254, + 4.185257226022593, + 4.249741428529856, + 4.601705319073468, + 4.950025157200387, + 4.318426099678809, + 4.477918001527325, + 4.655210475019225, + 4.454444152573893, + 5.047689294548041, + 4.569414217619192, + 4.7180747729480075, + 4.895935738969864, + 4.376829452478716, + 4.790920965924577, + 3.9786682543735687, + 5.369408216881721, + 4.595439714948778, + 4.530440320281766, + 4.633829371123119, + 4.625605821378842, + 4.519633262910937, + 4.298464473551346, + 4.272250480633066, + 4.587819953741957, + 4.7454802145012325, + 5.232037522815255, + 4.691855054377976, + 4.969201478844829, + 5.063804921393284, + 5.165583170383149, + 4.61575072338761, + 4.30858402419426, + 4.6354382815945385, + 4.40215831766672, + 4.440145818347062, + 4.86033727481182, + 4.56439414750412, + 4.7972620695195864, + 4.786966546466161, + 4.5294146349653035, + 4.224854412814424, + 4.994202204229685, + 4.930022471980339, + 5.222497177209199, + 5.035095605542771, + 4.474244455394282, + 5.077237629268687, + 4.885802906824418, + 4.453073859793879, + 5.214511836908605, + 4.600531702181949, + 4.593068447981282, + 5.104840343631322, + 5.328309649190261, + 5.286999909981669, + 5.504519150183677, + 4.741328424359855, + 5.383481994874658, + 4.9664446500511215, + 5.368026959584343, + 5.001026742786216, + 4.9817015988115525, + 5.288486335557134, + 4.895391832193531, + 4.982802478997506, + 4.494678148210733, + 4.939766514509961, + 5.046371515897849, + 4.838264715593761, + 4.859420240030734, + 5.032773139787033, + 4.714095015161134, + 5.523555546530026, + 4.617907948222348, + 4.9684879880135755, + 5.58936575122212, + 5.61725676473769, + 5.0619132028328435, + 5.18969018074714, + 5.790726063530591, + 5.36045757719533, + 5.165946040602647, + 5.666440834430752, + 5.659333476337901, + 5.423157164498611, + 5.392331317070972, + 5.058386642942756, + 5.386650088351383, + 5.377257860332577, + 6.12973007747371, + 5.673393048905208, + 5.9125284649509044, + 5.395762034801677, + 5.497318145714522, + 5.415568828296862, + 5.382317053732248, + 5.299336332508117, + 4.593471355742445, + 5.39965588801448, + 4.643397940974145, + 5.925116237618317, + 5.61898866945934, + 5.243149913359608, + 5.03908076414227, + 5.550466620911973, + 5.586811111428023, + 6.043026791773449, + 5.364274754365858, + 6.427507851949835, + 5.8054431740684365, + 5.772618037667779, + 5.515963024300845, + 5.064337541325973, + 5.118331174673151, + 5.925670324020048, + 5.670047191900215, + 5.926373477058611, + 5.8575619422554075, + 6.077523608110286, + 5.036860449718917, + 5.757983036010069, + 5.794795127293938, + 5.438753062200394, + 5.399877272502526, + 5.928095553330904, + 5.914463855993058, + 5.707377358167679, + 5.709066993963077, + 5.555473552200799, + 5.9574616794299855, + 5.904883658554826, + 5.741752886266964, + 6.136395609150793, + 6.064650702530368, + 5.933842502784082, + 6.051939568503286, + 5.547438747536863, + 5.754747228358455, + 5.614250455246287, + 5.7458374501934, + 5.766459045123023, + 5.815716429349251, + 5.929902099326575, + 5.951728010829259, + 5.53666228510761, + 5.760195017164134, + 5.7467272850833515, + 6.570702275379523, + 6.076395592785134, + 5.9881874710692315, + 5.782651163992883, + 6.205737846016783, + 5.697233701482922, + 5.902343991767939, + 5.629087404256752, + 6.261251117545646, + 5.526087925088674, + 5.626928931363099, + 6.1341370041438195, + 6.222872306205116, + 6.164803314892331, + 5.402740934294038, + 5.444954522014379, + 6.095357886684117, + 5.874314482444128, + 6.112994548255759, + 5.684519133400617, + 6.571815680682176, + 6.385305480213557, + 5.915820359244393, + 5.94174583211547, + 6.105799288889103, + 6.394811927672975, + 6.734483580490213, + 6.100047040791278, + 6.207971263223404, + 6.49378808048111, + 5.914789527508378, + 6.152696507082238, + 6.275831140725481, + 5.887513377333284, + 6.662860817762528, + 5.976957615772041, + 6.006540901520404, + 6.225892488619905, + 5.755758710858168, + 5.81224814377709, + 5.5887667788023325, + 6.324464901175728, + 6.54497197444795, + 6.1492450092540984, + 6.282763811520108, + 6.564359158672756, + 6.542471370371797, + 5.976044888515748, + 6.152531862871697, + 6.74743650082613, + 6.434849873866244, + 6.426153857105261, + 6.50880212605324, + 6.595911881083774, + 6.070359481462503, + 6.507292089111377, + 6.2646854881372445, + 6.839606025005846, + 6.596825268548079, + 5.763491674341688, + 6.173285963002752, + 6.427987658095576, + 7.039942988508606, + 5.803819564156824, + 6.397105247431339, + 6.389765411703707, + 6.456108041102331, + 6.626361434817256, + 6.591893267968123, + 6.5347020948791, + 6.449561453002586, + 5.823738702174678, + 6.848872835447936, + 5.871377554676874, + 6.520207947326366, + 6.646292763398781, + 6.189098385793864, + 6.275219838399855, + 6.267780643019091, + 6.326953452922296, + 6.675514830344343, + 6.233839663704884, + 6.701796397391689, + 6.329639747869092, + 5.926173828905567, + 6.411207017690649, + 6.576588493873241, + 6.724093655087689, + 6.528146348009337, + 6.170849933642855, + 6.979844696968081, + 6.817172989730886, + 6.707086197637031, + 6.972269988861131, + 6.326346455556421, + 6.42720159024705, + 6.515158120726719, + 6.63577832404575, + 6.4764632025650295, + 7.206236098099085, + 6.971288155842316, + 6.331280042115919, + 6.144033509914544, + 6.544939793358944, + 6.503301363266458, + 6.638464106552344, + 6.496168109977025, + 6.118102392969821, + 6.500537581349583, + 6.278365035541974, + 6.969366822531038, + 6.433367797159834, + 7.046337584759211, + 6.728152981858207, + 6.294494511745366, + 7.093552708333446, + 6.698275584461773, + 6.75970256382492, + 6.472914887290368, + 6.946706940095467, + 6.4808910075341295, + 6.790262118538757, + 6.2652973375264605, + 6.68893700156591, + 6.777199624490961, + 6.24211768520698, + 6.640868663583367, + 6.7889601172731435, + 6.652250601035408, + 6.854042356532889, + 6.545280639021665, + 7.0646950369297095, + 6.643217224809972, + 6.481561860446982, + 6.272699553681165, + 6.673517608210855, + 6.797159793496257, + 7.171352081197638, + 6.159958492180128, + 6.106032527207472, + 6.459272974912951, + 6.140568682939225, + 6.408509133029705, + 7.190820955349426, + 7.171327323151094, + 6.630799665266036, + 6.299984366268721, + 6.466471592924631, + 6.647019601045693, + 6.059561576564259, + 6.646461575023438, + 6.6629187427692145, + 6.407236074133469, + 6.374475205529773, + 6.3944191098204675, + 6.55648201280086, + 6.3320185448786654, + 6.5058193555355714, + 6.826552195657671, + 6.268620801682841, + 6.013679178329716, + 6.6899327058451625, + 7.048042911356798, + 6.669979597051754, + 6.9821879080836915, + 6.6428747104378605, + 6.267715552550255, + 6.737521056560687, + 6.496054568502699, + 6.3502673203938755, + 6.893571044383592, + 6.741389536353234, + 7.114768601918679, + 6.708662768954748, + 6.493056907271233, + 6.613241494910551, + 6.656765694501991, + 6.239166348808617, + 6.5573043564284035, + 6.448335990754139, + 6.037986658565059, + 6.488897675353729, + 6.43792099419235, + 6.334050429925582, + 6.565441321303625, + 6.623467801601406, + 6.5737314823908495, + 5.968995093334807, + 6.3547843298727145, + 6.456440451283613, + 6.937572459483308, + 6.0765423470948114, + 6.8097076444189275, + 6.184263083968575, + 6.579866778609768, + 6.890186963328143, + 6.929409048330405, + 6.540354233922192, + 5.634566634550774, + 6.554002196312445, + 6.4568487464040025, + 6.350349228964215, + 6.40171215519385, + 6.877639110426682, + 5.995471827484314, + 6.7491816440828325, + 7.3719129104820444, + 6.963593480799793, + 6.237558074377195, + 6.647630198946723, + 6.397069983141629, + 6.3648769055405126, + 6.080185829868443, + 6.883882014181293, + 6.396598803478245, + 7.009513768245624, + 6.602997805125067, + 6.441236350777055, + 6.214704826022766, + 6.148607487302966, + 6.115620823900788, + 6.271787794187919, + 6.814762130060246, + 6.126406180721939, + 5.994821271828749, + 6.250183452862325, + 6.681181823474647, + 6.092814543078731, + 6.354750328321165, + 6.362984494434225, + 6.530898536424177, + 6.2582185855605434, + 6.242998361773459, + 6.323418882364903, + 6.391292453986982, + 5.949667042453541, + 6.569011391807937, + 6.199425143843574, + 6.8055860062896185, + 6.106494438574069, + 6.216247833856306, + 6.107370124606404, + 5.705131647323011, + 6.881639527570165, + 6.450009430843521, + 6.358521002686039, + 6.143305571662075, + 6.0540887860417545, + 6.123301063767051, + 6.5501729528527015, + 6.321341578752119, + 6.008071234687048, + 6.312801083509956, + 6.298372189269538, + 6.48303379434447, + 6.115728479371556, + 6.536315912386598, + 6.389967932838616, + 5.893109026929879, + 6.328406658865021, + 6.123892058844257, + 6.251488504721747, + 6.6527065713539555, + 6.348986494885663, + 6.326468962871155, + 6.39848123501816, + 6.465897798318731, + 6.542989719105097, + 6.371900788089091, + 6.255388300340451, + 6.238214171347574, + 5.921949767474383, + 6.4505842682034835, + 6.237315410178668, + 6.5568832793952945, + 6.201477097677683, + 6.107218068695939, + 6.279674943908893, + 6.9925737777628925, + 6.14959767507214, + 5.999878517210361, + 5.99324775506267, + 6.595505236585177, + 6.008415906093045, + 5.809420646620844, + 6.341275548486228, + 5.768423934364259, + 6.349387880550042, + 6.354180676759995, + 5.908056998550401, + 5.464168211110653, + 6.096668107627304, + 5.8742480918764555, + 5.752306369583547, + 5.708287144133359, + 6.0205439525929245, + 5.647721137936515, + 5.931019864556615, + 5.733068013609878, + 5.852133945667871, + 5.651230269035694, + 5.829409884977964, + 5.688891067692393, + 6.4587304904430685, + 5.759381703380515, + 5.950179053312158, + 6.177744475358762, + 6.448980902841219, + 5.478683434057338, + 5.854457855558456, + 6.024333105181897, + 6.408120685777543, + 6.439140268795317, + 5.577718145913461, + 6.110073515360417, + 6.063820814338627, + 5.853526034571446, + 5.752039344663565, + 5.956798438609329, + 6.131520156023422, + 6.024689825873858, + 6.093995227397178, + 5.48879023639658, + 5.914272501211203, + 5.483045184433658, + 6.252759112040139, + 6.0112095710084095, + 5.56188599209185, + 5.92029459835054, + 5.300894384592641, + 5.730932408015953, + 5.614966572703027, + 5.441184586077756, + 5.906590382787391, + 5.42660815896304, + 5.516592839630011, + 5.95861538131912, + 5.58127467896907, + 5.774830898354023, + 5.81942735287489, + 5.859596333957841, + 5.514422600937697, + 5.44573276676042, + 5.538890561663697, + 5.886933274093789, + 5.591113641798982, + 5.61792229801463, + 6.095805778495448, + 5.501169383965215, + 5.8167830552051925, + 6.023751692030669, + 5.355622414525225, + 5.917824346662087, + 5.4417766370327065, + 5.892276501870678, + 5.344989092280552, + 5.84608422659238, + 5.5443394432611655, + 5.388014942683916, + 5.826030441529028, + 5.355949953828826, + 5.704616045842924, + 5.494583450787161, + 5.408690687074437, + 5.882418888895027, + 5.153416917561909, + 4.716396392323497, + 5.569821080863487, + 5.665917989771821, + 5.231741748940088, + 5.568909674506684, + 5.8330003471454965, + 4.814184763700071, + 5.550974259255519, + 5.41325806392126, + 5.2970240804149675, + 5.619415434859267, + 5.466415929493915, + 5.308289934808512, + 5.584007391487866, + 5.910615112197264, + 5.191645698315789, + 4.914312861755191, + 5.932066985611796, + 5.389216798313581, + 5.132897383596809, + 5.025124334363079, + 4.641952843039083, + 4.9059401233513205, + 5.499582588593178, + 5.1037504095815605, + 5.230600358405649, + 4.550354738050183, + 5.472211591177544, + 5.1212247611131785, + 4.690466251260262, + 5.267050324649533, + 5.43111307080563, + 4.828482744705296, + 5.316941332289313, + 5.649812289926218, + 4.726522525975115, + 4.957108150128419, + 4.756458746882514, + 4.5320587607956435, + 4.852886372955864, + 4.931826419990566, + 5.45143582262932, + 4.9619289975800696, + 5.239832314707021, + 4.82551120824617, + 4.636209365313564, + 4.825797694514238, + 4.790520912272654, + 4.989910871618384, + 4.721996599379694, + 4.889871380453628, + 4.927698216492511, + 4.492176756913506, + 4.900168686272805, + 4.717072146147688, + 4.67790446818115, + 4.939840846599154, + 4.549882355666338, + 4.90484506884035, + 4.6530889790614305, + 4.775565430912242, + 4.63864793203295, + 4.278108916499656, + 5.118050801151097, + 4.353161746799412, + 4.63635327631511, + 4.789401654749467, + 5.202556560652461, + 4.063634158429728, + 4.184274667073542, + 4.779164909600138, + 4.17227056043939, + 4.541945323180107, + 4.791162052697796, + 4.560774099643505, + 5.037776667334698, + 4.346142404855107, + 4.584596572364711, + 4.074594118354902, + 5.257002504606488, + 4.849485775939671, + 4.7696871276886466, + 3.8584869005541607, + 4.314678237971161, + 4.3935999485903166, + 4.634172346463175, + 4.2000789399904885, + 4.805326688139534, + 4.701113828635603, + 4.333161992935012, + 3.682279389649749, + 3.8984220933024907, + 4.615388178857094, + 4.313996829896117, + 4.530117895105006, + 4.223348925017569, + 4.067706994375645, + 4.399047029187721, + 3.7644684053731443, + 3.9061361051953862, + 3.544356476598429, + 4.014887263263692, + 4.746879378316104, + 3.9621138651906014, + 3.9244964973516874, + 4.153249596215262, + 4.395735964021121, + 4.758763380111191, + 4.1192091481015645, + 4.059838554705525, + 3.766051163021154, + 3.911349683245393, + 4.019402782870785, + 5.0282863136485325, + 4.420496406515612, + 3.8624357961002014, + 4.416127331690515, + 4.333213314380697, + 4.220488367595488, + 3.2611758373548407, + 4.553897892537059, + 3.9249777018446728, + 3.9181745062097386, + 3.7885289297750018, + 4.2294981187842575, + 4.4717088719165545, + 3.816230847621113, + 4.0165256798826245, + 3.813732107982247, + 3.9756902487062433, + 4.354296650152811, + 3.9742423178319726, + 3.325294837442727, + 4.213366442344592, + 3.7533031029243817, + 3.5670013229552655, + 3.1983036579571906, + 4.169676011075718, + 3.434216084768663, + 3.847611737258404, + 4.246449265497124, + 3.7306428491372277, + 3.105174670679216, + 3.205121851633168, + 3.734296112106098, + 4.0639002268199205, + 3.737092204143548, + 3.439854861565742, + 3.8613841776995805, + 3.5630950311175105, + 3.1004324724553167, + 3.6630030130609113, + 3.428284396308924, + 4.048695368170658, + 3.9543309375582614, + 3.1372324243844587, + 3.79737104075858, + 3.3299088551616247, + 4.060394377646186, + 3.304453091893306, + 3.3350637931210105, + 3.001291798228093, + 3.7938526757704043, + 3.697965026060739, + 3.6140588659688557, + 3.739335458627636, + 3.4777397946855175, + 3.846286107357558, + 3.2666167453530215, + 3.359256913418199, + 3.3269145424799538, + 3.8641850192332603, + 3.1432073820702113, + 2.836932968288729, + 3.2469891400983113, + 3.226287511589236, + 2.638798929371842, + 2.928198324162847, + 3.257846548539391, + 3.374204166019423, + 3.0423556408115626, + 3.598001427643122, + 3.637576278928518, + 2.9153572447376814, + 3.1406380177226487, + 2.369639164995573, + 3.2400952980023567, + 3.539359910283132, + 3.350278501307782, + 2.860749379393743, + 3.6533283438074786, + 2.9016978838200562, + 2.7393459023290623, + 3.5062051286856564, + 3.194914246306162, + 3.32977107610202, + 2.880389511006336, + 2.873657226120778, + 3.0880285734249524, + 3.1194295350150356, + 3.077477477402795, + 2.78986217515844, + 3.3564435757207205, + 2.8913900452750534, + 2.7274578528497053, + 2.750254272943602, + 2.5993067423907754, + 2.9767766206125117, + 2.674703925867002, + 2.387334494742679, + 2.7677730880669182, + 2.515329769056695, + 2.5691673236149777, + 2.943878370748667, + 2.679143036299272, + 3.0423094677239346, + 2.6531308386148558, + 2.707472078202254, + 2.8604538355377973, + 2.279058940923285, + 2.6824158974627625, + 2.3582263937986165, + 2.712923709315364, + 2.52839287324712, + 2.6504930701684506, + 3.092990029162733, + 2.5174944283120855, + 2.9545374819872636, + 3.0971412342080855, + 2.528720039487874, + 1.9216915606417302, + 2.628124484902586, + 2.5187545523081942, + 2.152596395618966, + 2.254642338564209, + 2.072898568213636, + 2.5650560778199165, + 2.4229495930329237, + 2.1007714528013914, + 2.2238798111624694, + 2.896546161947978, + 2.5268139336909896, + 2.013427398730857, + 2.952295773365094, + 2.321289779062021, + 2.409353239401909, + 2.436960737685759, + 2.3086735209800997, + 2.5410494754938706, + 2.848539658597935, + 2.2761936024708054, + 1.8234125332705502, + 1.7504882099643484, + 1.8373775306466935, + 2.3700699682752426, + 2.0903361190066456, + 2.419137025290039, + 2.295701466306484, + 3.1281008519788145, + 2.456217769025281, + 1.75620818363159, + 2.233061949865313, + 1.9948759730039574, + 1.642654114854979, + 2.1742053904690803, + 1.8939142074987942, + 1.9265834592177131, + 2.0278633553054344, + 1.976010529797787, + 2.0589869040098656, + 2.450804537702659, + 2.256507292915289, + 2.0803110076457423, + 1.869690300151452, + 2.523098589104218, + 2.2271693367884104, + 2.2655315456728116, + 2.2475280698776263, + 1.6952170222689769, + 2.0150723943091906, + 1.1025329882428856, + 2.232130722461002, + 2.663873414588113, + 1.874898771604863, + 1.6252270685652823, + 1.7506354471877428, + 2.122544446919441, + 1.5439715500555569, + 1.8973056740440932, + 1.749319102402079, + 1.9399936980700911, + 1.817169003492503, + 1.9391499896599769, + 2.5103105863623005, + 1.9974287098271863, + 2.012356995905569, + 2.07438264860889, + 1.6989861808526667, + 1.6541635245952744, + 2.0107532858062074, + 1.855138831964377, + 1.2654768778428647, + 1.7236774235761323, + 2.66532961120672, + 1.6336501508397947, + 1.3275228035768425, + 1.436409098087094, + 1.357867293322529, + 1.365366331664137, + 1.8989856721617007, + 1.0553165230902655, + 2.038182770442763, + 1.1846846992919398, + 1.0771168376639308, + 1.2715687778514175, + 1.8928915164887794, + 1.4316183970514107, + 1.354538689895484, + 1.7567101949926571, + 1.2822153584702536, + 1.6653925455276186, + 1.674803496434221, + 1.7792012202330003, + 1.3401270916656014, + 1.4955310676750593, + 1.4311089732641573, + 0.9160276130351932, + 0.870895663038937, + 1.251268690181217, + 1.603367736776503, + 1.4596228624770364, + 1.0005533300009786, + 1.245042919804233, + 1.6097590806201882, + 1.4038069894328453, + 1.4588328912750828, + 1.3768677841372645, + 1.4560923520081683, + 1.4299937144668804, + 1.5122573247131434, + 1.490802056633002, + 1.3955468472049273, + 1.5693314392996487, + 1.271995917300414, + 1.3405724809769501, + 0.934726113389514, + 0.8232028031615183, + 1.66092159847617, + 1.5990631470149317, + 0.9163523897523633, + 1.6679432326391752, + 2.0360195942131614, + 1.1076986493014376, + 0.816275607624444, + 1.943839532979656, + 1.594032387219163, + 1.1593201085997775, + 1.3431589632513887, + 0.726766083062677, + 1.3704748135923037, + 0.8532246595702384, + 1.2619122202823734, + 0.980382536266631, + 1.487055741152057, + 1.902825017867241, + 0.8248639924145871, + 1.5261000862713114, + 0.9047936948915456, + 1.413890584176425, + 0.9917197661428173, + 0.9637855874977646, + 1.4053996636894897, + 1.189593729867866, + 1.1466941808239606, + 1.4894755325740168, + 0.8236940090789484, + 1.2336538200148184, + 1.7861342598999626, + 1.111570497943767, + 1.9249764767648505, + 0.6025509074736086, + 1.0274517110576573, + 1.2290137472235714, + 1.5177778948113256, + 1.0952051712056046, + 0.8470841419964614, + 1.6585846483082198, + 0.8204636051265382, + 1.1118240889222553, + 1.028282321119692, + 0.4421992362180307, + 1.1050537020052627, + 0.9863087929194754, + 1.2732558443456485, + 0.6869060746036818, + 0.7960041445911105, + 0.7115852370422807, + 0.8703423368830266, + 0.6811640238434922, + 1.0214335634631297, + 0.9609862180044323, + 0.44888281551602544, + 1.0605029623692224, + 0.6123005425568977, + 0.6219655658415573, + 0.39656675471609437, + 1.2274250378620992, + 0.620736406318682, + 1.0377838861523019, + 1.0465860046854305, + 1.0420646055666727, + 1.1640827540301928, + 0.9827117052218892, + 0.9356599416920133, + 0.3037482485780868, + 0.37226597996189825, + 0.6792609732473771, + -0.23310727797128084, + 0.918149410586707, + 1.0397830687382361, + 0.7971917197812167, + 0.6488846296982145, + 0.46046900512349465, + 1.10773939685587, + 0.7282856829887341, + 0.7797238824748886, + 0.8078834145153172, + 1.1022903723471567, + 1.1087345019126558, + 1.1117641954202544, + 0.7473091066866202, + 0.8224490414363305, + 0.47115514406101444, + 0.7314719203113904, + 0.8910511525780113, + 0.8013849652156587, + 0.4509080641950874, + 0.8438539338520095, + 0.16682982562588178, + 0.9622067284304691, + 0.8825668425001056, + 0.30484689584485386, + 0.8299499320194346, + 1.0901886076185472, + 0.552833389565089, + 0.5466956327344958, + 0.6424536383076199, + 0.7905752445399279, + 0.7132666272219246, + 0.38370673648973763, + 0.7178311903578586, + 0.7587846014414271, + 0.7006443129891352, + 0.1618103209465549, + 0.8725021876758554, + 0.4139828470791593, + 0.38483772514432324, + 0.8505574099822233, + 0.5007844828330024, + 0.6350418604699753, + 0.40222425040568616, + 0.5167097550708084, + 0.5017944763185457, + 1.0307130900802302, + 0.9915186534184516, + 0.7055067162051196, + 1.2587097354934875, + 1.0244204605261638, + 0.5751312700663367, + 0.7971071785038334, + 0.566667308881708, + 0.039838935275327, + 0.8154858453038304, + 1.006452029574715, + 1.0316746620496668, + 0.8278485370470338, + 0.5166862363639678, + 1.4135638028645698, + 0.9221512638939502, + 0.6494372596307648, + 0.4169347312943792, + 0.4287104447063317, + 0.3718314021374315, + 1.0559711519305148, + 1.0737025475024664, + 0.7563033614571374, + 0.6341430044399782, + 0.48057093200478107, + 0.8405089411683639, + 0.7775734073166385, + 0.7878595940490233, + 0.8119510512674621, + 1.1313274585319602, + 0.170688582249853, + 1.109710661463321, + 0.8973108988690541, + 0.7250894860313694, + 0.9741545031933936, + -0.007256110849515829, + 0.322168239327105, + 0.3371189688549338, + 0.06693360196650733, + 0.3931198624732974, + 0.5924946167640732, + 0.2480907746744639, + 0.6164910924172149, + 0.3094032127203888, + 0.9509265317495341, + 0.691042120602212, + 0.4521910508840947, + 0.6454672209305364, + 0.7686508728366285, + 0.6139497550685097, + 0.38710615969690887, + 0.9625675569944545, + 0.6961160291904884, + 0.4095143290091876, + 0.47214638679330556, + 0.3787906615027127, + 1.0501051741418845, + 0.49891823713927963, + 0.538341302673574, + 1.0245555305752143, + 0.938873513168917, + 0.8893342579270743, + 1.1305540905085025, + 0.6418037484642375, + 0.16019406970906752, + 0.4494264256502885, + 0.12208868226886682, + 0.7365105515664139, + 0.6739103708571292, + 0.9052266534231969, + 0.5803950529633431, + 0.4180620567369215, + 0.3793605272511944, + 0.6214126409248569, + 0.9736878770381487, + 0.3398333746652814, + 0.37227442428259705, + 0.28107977214341673, + 0.6345668862625274, + 0.4112957156144267, + 0.6929685661287976, + 0.5840141470262068, + 0.7306254141657716, + 1.046849988513557, + 0.9162104311398418, + 0.6898604209010529, + 0.5635089303244426, + 0.31224808956522326, + 0.9575900411615825, + 1.1279069147881058, + 1.6985276556251458, + 0.8764456800535223, + 0.6685806654795199, + 0.8352207776647297, + 0.6093853503346606, + 1.1980911008504063, + 0.9784482448581133, + 0.7960165328522086, + 1.3438255890805397, + 0.9170222679032908, + 0.6021974513420704, + 0.9211697329629751, + 1.0053461006389974, + 0.6242740625948192, + 0.7883001203741009, + 0.46338218186310226, + 0.6555116906729178, + 0.7107307490910224, + 0.29468172456139935, + 0.7548939147829611, + 0.5067155276611455, + 0.10085585289049981, + 0.9359649281905063, + 0.5602730722996273, + 1.2144111705642755, + 0.7691803610123852, + 0.8721513301301843, + 1.412989593496542, + 0.7416573173055966, + 0.7096229860827343, + 1.03035808671882, + 0.9699717964600402, + 0.6628830493433999, + 1.0389337369301817, + 0.6619743720328984, + 0.25907364529275967, + 0.8467825573905166, + 0.455415500367348, + 0.8522896685736658, + 1.1183535808441751, + 0.6036961246528745, + 0.20523444570497662, + 0.002482660184989771, + 0.9591691121374472, + 0.20368281228477303, + 0.9501909038168812, + 1.126549413403354, + 0.706017287495805, + 0.723301529714264, + 0.9749888222973596, + 1.1248662553478268, + 0.7214181895439356, + 0.7892534290019174, + 1.3311298504860654, + 1.29988454601358, + 0.9408299356528388, + 0.2069085974023821, + 0.9291917763026499, + 0.8787010337658621, + 1.3941190796310672, + 0.551657924066348, + 0.9936009184854125, + 1.124371241173366, + 1.0012216136598484, + 1.0201126121773136, + 0.9668148080792472, + 1.3988305473299798, + 1.1124324592770645, + 0.4414320837753881, + 0.9930878703284433, + 1.2333836219212173, + 0.9379968345752308, + 1.3693368696828419, + 1.252811377143802, + 0.8879540187189866, + 0.872424127368843, + 1.3048340460733447, + 1.0279220355092005, + 0.9402508163824281, + 1.5785745305018821, + 1.0938521880493013, + 1.001698210695053, + 0.9256867616507798, + 0.7281528003422065, + 0.3997293821000375, + 0.6672129196169403, + 1.1622694260626205, + 0.9785467776793161, + 1.0243603103790246, + 0.9105900853765064, + 0.9229060922754353, + 1.2417152644619553, + 1.328734134776474, + 1.0126578155579857, + 0.7903128981080877, + 1.1251639206708717, + 1.0199511374473373, + 1.1966724427798485, + 0.9973696998179029, + 1.123665295729258, + 1.3447447404253625, + 1.0920278078383927, + 1.196257000170847, + 0.7927400770188535, + 1.1502609982495131, + 1.5299328305143751, + 1.811441834801489, + 0.7379864803986278, + 0.6380551263199876, + 1.8622871417519535, + 0.8128789902088196, + 0.7636194247258938, + 1.2674957711526331, + 1.4149161496867404, + 1.2789273355773896, + 0.8265429792127095, + 1.528493028136168, + 1.3374844030897854, + 1.2299838085916066, + 1.277411925256249, + 1.6062896794780888, + 1.789137149862237, + 1.7071148830968566, + 0.876202055956366, + 1.0743921778885477, + 1.1075610111233074, + 0.939472564163369, + 0.896938099450976, + 1.3650654566511946, + 1.7182869485143133, + 1.5870644080140062, + 1.6927346085509687, + 1.0957524266248213, + 1.6417356035597468, + 1.2400488807071273, + 1.3361897675676928, + 1.880309751661104, + 1.4432247322588585, + 1.441874689496493, + 1.5078938831978308, + 1.2279766647318557, + 1.143380374217789, + 1.0562346991348532, + 1.690446175338118, + 1.2890689367905002, + 1.6264642978179717, + 1.2680018463826506, + 1.722162971464687, + 1.6030021449667875, + 1.3399981362994622, + 1.528696346150485, + 1.8628326814597713, + 1.8504073090910766, + 1.3690239504787223, + 2.0278628550622275, + 1.8376894414813385, + 1.357349249380438, + 1.2700301373735492, + 1.992318677525447, + 1.7314913549896405, + 1.5212511202880812, + 1.6474855488646774, + 0.8109462074765145, + 2.3970184170428035, + 1.742978786200117, + 1.6474674640326012, + 1.4206325170776721, + 2.217112206795319, + 1.3710273665995174, + 1.8979470111633472, + 2.026238270933517, + 2.0464808539648858, + 2.047165000890779, + 2.2900014378116027, + 2.2828861293948766, + 1.6977407534131828, + 1.9849098801815936, + 1.4961542197482862, + 2.695451757159398, + 1.6058797888492728, + 1.7945360201379021, + 1.5603707063176568, + 2.7043461017367236, + 1.558616319404189, + 1.490826657319221, + 1.7484793598645545, + 2.5211441520356974, + 2.4927139930726794, + 2.0799099160469363, + 2.0255753783805153, + 2.3685141634354165, + 2.4150737278721737, + 2.3840412784336014, + 1.8667897672331863, + 1.5766187341433069, + 2.579253522109294, + 1.645226792015467, + 2.537277243398556, + 2.2606125752324946, + 1.8958184402465321, + 1.9930891838277571, + 1.8724208413886552, + 2.318633523514583, + 2.175657803715197, + 1.990061079489465, + 1.7567224617919597, + 2.1767742617394594, + 2.1674882714818215, + 2.1650869251907325, + 2.039602204641699, + 2.1151881203058363, + 2.4306281280567785, + 2.3731518019397906, + 1.355877096417489, + 2.0696529090813427, + 2.0749367807438914, + 2.220246750501563, + 2.2275243737241346, + 2.726920706433266, + 1.6475137966196902, + 2.265739300932937, + 2.861680893953482, + 2.0061816780130335, + 2.2679230500772074, + 2.4308128154196407, + 2.5331282457147313, + 2.674855559906173, + 2.7140166381187263, + 2.908911828476838, + 2.9262584630405803, + 2.0696385085866833, + 2.48323135775781, + 2.3827916853753353, + 2.5466366610500684, + 2.5149682245407456, + 2.4937708115048083, + 1.96755786903074, + 2.88107095890195, + 2.429390141250228, + 2.169974795961076, + 2.2281813694436625, + 2.742192187501959, + 3.2106141888015682, + 2.4043574048651877, + 3.1482083521295077, + 2.2969111613563133, + 2.5465031535852627, + 2.623236725961311, + 2.845231128725927, + 2.7599530810700674, + 2.8183680004585083, + 2.5941130901730434, + 2.4163125668026093, + 2.4833933641890096, + 3.149122847231529, + 2.883066994364385, + 2.514032006010398, + 3.199165058151253, + 2.9099430440249656, + 2.7052900514189337, + 2.8955029857117016, + 3.3862996319384933, + 3.2547557724039344, + 2.931025797162265, + 2.9295797658987888, + 2.817458528547783, + 3.3320434143777105, + 2.7581476067513018, + 2.636134511536401, + 2.737524165193333, + 2.982842204512181, + 2.9844667905230624, + 3.035066512813943, + 2.4411814157903664, + 3.093125032673621, + 2.5889766754456445, + 3.836793925185991, + 3.0476641907563553, + 2.850727384352785, + 3.097001725377391, + 3.442355306675073, + 2.6718336055567753, + 2.849675965059635, + 2.8195413769364426, + 2.7575382422805648, + 3.353412972540175, + 3.00644826557603, + 3.1925977817934394, + 2.9388956970759033, + 3.1797258520101277, + 3.029659149521357, + 3.2524765733076637, + 3.3734871491385467, + 2.9166961162281577, + 3.7389167611078764, + 3.645991775885467, + 3.54111524184752, + 3.2641703159042974, + 3.049171174365063, + 3.419022140831742, + 3.203339604776026, + 3.682270230608938, + 3.7274162108869526, + 3.466736774896119, + 3.3849970213892004, + 3.9676685330699772, + 3.418849667668678, + 3.5732565635602365, + 3.7073154788925873, + 2.928610257258047, + 3.83882986582016, + 3.4826064041153026, + 3.857432237958701, + 3.740747279026799, + 3.6972352474282117, + 3.5807512189605917, + 3.362958084835639, + 3.2709319896509754, + 3.4631662255179565, + 3.665687351816213, + 3.8104672480985484, + 4.13729614238863, + 3.558429807656563, + 3.9509238882752133, + 3.767152362282683, + 3.726217640470777, + 3.339452964416911, + 4.146518273359579, + 3.4820907558628216, + 3.829033436355654, + 4.018914174310147, + 3.768683386351332, + 4.047787342463777, + 3.736684722047931, + 4.187451424642553, + 4.225869846034225, + 3.8358660857093336, + 3.6083808557672086, + 3.661260794772043, + 3.953127132315258, + 3.778493834307347, + 3.6507650257728987, + 4.215036966644513, + 4.0387412186564, + 4.0263885841147316, + 4.194469608904887, + 4.305179100333421, + 3.8849683665916057, + 3.5951100597119345, + 4.033077149210518, + 3.6211891328139907, + 3.9413124526044427, + 4.163627488708659, + 3.801366694014477, + 3.845680535239012, + 4.119578273462519, + 3.9386070516101532, + 4.512603536370437, + 4.076669827809086, + 4.848787112399781, + 3.8914733233802004, + 4.316859190762291, + 3.704979211282275, + 4.251447911815437, + 4.119242141764066, + 4.356722396648968, + 4.126106260312134, + 4.372095984609411, + 3.946825282612007, + 4.066628224788587, + 4.155068621448722, + 4.359929606769405, + 4.6665584958778865, + 4.336955807812332, + 4.1756088735560795, + 4.216980339511959, + 4.902943994405785, + 4.00361984820002, + 4.238009703557426, + 4.032685628139886, + 4.503667188030706, + 4.255172533403423, + 4.228749463075619, + 4.9322647575703, + 4.4471745989816895, + 4.454612773731133, + 4.895243546544694, + 4.336418762124095, + 4.233373148390135, + 4.887391553524506, + 4.391715546061026, + 5.246067422942341, + 4.385016072082515, + 5.0667877055255035, + 4.529772709615514, + 4.394593910142936, + 4.504934064751589, + 4.13139891458581, + 4.487661156975065, + 4.304853881233748, + 4.466794675694145, + 4.466702513678824, + 4.927090509494437, + 4.585184901453777, + 4.59183617635622, + 5.023962627880637, + 5.3677903283445945, + 4.4659313087227765, + 4.633944053419103, + 5.526794854161332, + 4.701731027302709, + 5.110257845420531, + 4.698567507352539, + 4.457245498664044, + 4.710025846575103, + 4.7834825903048745, + 4.530459689675145, + 4.806377493106384, + 4.804017872453417, + 4.8740498827575935, + 5.200013050432372, + 5.242785703117371, + 4.491332079326375, + 4.910031500998415, + 5.157131499911589, + 5.064384242014307, + 5.006211267579716, + 5.140577506086959, + 4.755603490912842, + 5.023245966795981, + 5.156791253026399, + 5.107775873647336, + 5.1348738012645, + 5.360861441150038, + 5.390198033967159, + 5.674391675779413, + 4.659458811738621, + 5.107702001667438, + 5.651213424152594, + 5.282327015354584, + 4.767761451122755, + 4.954391993088376, + 5.439284363051282, + 4.94715042870426, + 5.09966001067369, + 4.794198466509115, + 5.512215434895939, + 5.195016506148344, + 5.54912029540833, + 5.226886223185181, + 5.138547208747029, + 4.688701852245318, + 5.085213221105312, + 5.383779879472573, + 5.429614732174115, + 5.223416430536218, + 5.35801531093209, + 5.464752938106328, + 4.978044906147816, + 5.4331408401107, + 5.367521799047494, + 5.5954354658450445, + 5.332438270611922, + 5.149047478501882, + 5.771916411621605, + 5.73162525310812, + 5.537648324759658, + 4.7394674274148665, + 5.079474567580304, + 5.239645391008114, + 5.404263031936349, + 5.627280339629339, + 5.875829646000611, + 5.803802455979799, + 5.752796120377227, + 4.531233777659195, + 5.749643009861518, + 5.678139652238477, + 5.49081815355621, + 5.680049546777231, + 5.838091493375464, + 5.628341405993303, + 5.314086688551314, + 5.618858318291717, + 5.616707850928888, + 5.6155654948714595, + 5.6212183087091345, + 5.674515364196479, + 5.129163526860295, + 5.329567208779994, + 5.3962336619531115, + 6.027915733481858, + 5.937348560259004, + 5.445911940893284, + 5.472304636463525, + 5.837481417983831, + 5.523887445364512, + 5.932585258646639, + 5.796607593251886, + 5.665695933915949, + 5.655322970716418, + 5.334290419512939, + 5.5428739721391755, + 5.792966098561556, + 6.161654494008892, + 6.030472165104699, + 5.722122962196156, + 5.805071092904364, + 5.693654799074741, + 6.423323429660699, + 5.950654374455735, + 5.6792805458553905, + 5.432314347669446, + 5.258661405992149, + 5.564072281301727, + 5.663701426792179, + 5.893805371529815, + 6.357535645852861, + 6.07023076862333, + 5.8898991853982885, + 5.940057164704735, + 5.751196708849022, + 5.947336880475907, + 5.672763334258632, + 5.621122845652867, + 6.209799496236451, + 5.833935720631664, + 5.915866874524223, + 5.792989347649509, + 5.665473747145083, + 5.7938050722902785, + 6.194643590057381, + 5.737861492034199, + 5.895691564514092, + 5.74068609055821, + 6.0626774499040685, + 6.122184867781049, + 6.270830285571412, + 6.260525439537579, + 6.041718262858008, + 6.271087599408943, + 6.2377669489586225, + 5.628277818799586, + 5.856235166329808, + 5.810176003119768, + 6.26118375984423, + 6.497505885444507, + 5.877159969362052, + 6.363847970502494, + 6.262000123608654, + 6.125995486199848, + 5.907573686756388, + 6.869074412545097, + 6.4348415054790085, + 5.857357039118387, + 6.501768376632837, + 6.565567379808883, + 6.513136821599614, + 7.007853556562781, + 6.70869001199676, + 6.09582237210482, + 6.51349632728731, + 6.051906291960921, + 6.188178739504945, + 6.399672858096199, + 5.596355249448938, + 6.231184528244621, + 5.902381144739845, + 5.656083295205175, + 6.256848575856723, + 6.235533927904769, + 6.605446647968232, + 6.157794581265056, + 6.067377337842113, + 6.677585166271858, + 6.173971754335212, + 5.8962882893904816, + 6.1165519805392075, + 6.528189027437058, + 6.881896682367633, + 6.236732034689897, + 5.741089713752342, + 5.944098000429364, + 6.37312182005586, + 6.454827556938822, + 6.256446023495294, + 6.278410359337163, + 6.816980911866742, + 6.450420440358372, + 7.057159723555928, + 6.32887452765838, + 6.130894364425818, + 6.466454082364699, + 6.453561043126331, + 6.0380485360259835, + 6.704901591162095, + 6.208835888708061, + 5.772153393850447, + 6.471358449055492, + 6.409955363272296, + 6.017771331623777, + 6.19019762352532, + 6.395905237375328, + 6.056217734227046, + 5.86671767704264, + 6.6091263156911095, + 6.675679260980553, + 6.74326272408049, + 6.109144071822549, + 6.318116811957222, + 7.151236830876679, + 6.191322247947502, + 6.191084703226373, + 6.238962170820569, + 6.880989915901375, + 6.461720228885938, + 6.336482857620695, + 6.092541501767803, + 6.410503471408601, + 6.413127755608861, + 6.862548527955333, + 7.014996974278746, + 6.28943542218107, + 6.740271108980879, + 5.712109538479848, + 6.253445011238447, + 6.235611139373481, + 7.093150248732538, + 6.73323879192279, + 6.604282231702239, + 6.876882334419028, + 6.6250839645314725, + 6.687243792041283, + 6.6823050242517, + 6.793819309305823, + 6.333275639001358, + 6.582093248539587, + 6.3058442534723405, + 6.82061342623369, + 5.9055871731800185, + 6.877630176915107, + 7.102073821093059, + 6.728195792569019, + 6.513907747828435, + 6.784605392206494, + 6.231035201493114, + 6.3411627740967305, + 6.577630989375065, + 6.844277353331477, + 6.844637150528874, + 5.627150833385265, + 6.661621503890318, + 6.126904578349678, + 6.415038422691587, + 6.831734322453967, + 6.798350643075943, + 6.94302700869032, + 5.940046734119325, + 6.978865166267225, + 6.44422840165625, + 6.8295918922277155, + 5.874853464051869, + 6.314076740864395, + 6.580144276630051, + 6.50819320438631, + 5.928511076198794, + 6.710372847213938, + 6.7595361150142095, + 5.91786812407004, + 6.8564242279302565, + 6.792330499816552, + 6.525086672797772, + 6.628234835345527, + 6.553511976087179, + 7.04512730920635, + 6.518947518930818, + 6.391493039552281, + 7.050162861031839, + 6.672201659922778, + 6.1221105473159145, + 6.769619193753392, + 6.667960883037067, + 6.748207344861682, + 6.195839042306944, + 6.337056146731295, + 6.389885284354665, + 6.530612860886663, + 7.016976397086175, + 6.4767151808711585, + 6.855657542392225, + 6.742765356378058, + 6.596377639740707, + 6.4416730573507754, + 6.4439993050872495, + 6.476730393657608, + 6.7059468283843335, + 6.416098925037199, + 6.565065057020264, + 6.080914848779811, + 6.546720716693723, + 6.4902235873962635, + 6.035946297130882, + 6.696455941640337, + 6.069483904907553, + 6.833204977428308, + 6.840904224044656, + 6.464473788009557, + 6.584243548176668, + 6.63949389963235, + 6.759183225806923, + 6.119163404177254, + 6.2966397500357125, + 7.050022221102339, + 6.550171241335185, + 7.035143565228396, + 6.818008874612766, + 6.486775557014836, + 6.818277883967276, + 6.560772880700247, + 6.955944822258534, + 6.488205674688894, + 7.320749379095126, + 6.186441334133757, + 6.3443051709078055, + 6.5394482802204985, + 6.6662965253022355, + 6.026459473339988, + 6.543626045977357, + 6.847437518319972, + 6.734065387919929, + 6.688463302577575, + 6.788044713911934, + 6.6935347386312625, + 6.525705202511088, + 6.499913812150009, + 6.737220078499187, + 7.084319665427792, + 6.7062755784902786, + 6.713269702951245, + 6.6223662148248925, + 6.096264644449934, + 7.4394405422626555, + 6.792282402699315, + 6.063132111886144, + 6.748079498060285, + 6.767733142159747, + 6.480603469391906, + 6.573233282122401, + 6.973452580596692, + 6.215128450469908, + 6.076014707082155, + 6.769760888239247, + 6.965146300764212, + 6.816305482225255, + 6.128579480775345, + 6.115529967782434, + 6.745789283567783, + 6.3519626710482395, + 6.624059000382446, + 6.866179369406493, + 5.821241855630246, + 5.892991778254767, + 6.680921220523025, + 6.545620551097879, + 6.682031753610701, + 6.496698461579276, + 6.113556895794584, + 6.004940417817748, + 6.273212670878427, + 6.871243604592836, + 6.68722889278744, + 7.002965730379991, + 6.387052389696926, + 5.592397609862331, + 6.193648041023048, + 5.956792990507683, + 6.435430781726796, + 6.473567896640703, + 6.460359697872961, + 6.476175558227524, + 6.259876804908653, + 6.329840523828667, + 5.867560960438953, + 6.082705308439329, + 6.028876826725513, + 6.259731937991172, + 5.457810225848054, + 6.3331076115666445, + 6.510651883241527, + 6.4133430161263085, + 6.311296754957409, + 6.158793749646285, + 6.133328859924279, + 6.318702184318362, + 6.005749634906957, + 6.181720821274149, + 6.435518368245497, + 6.0770767224264235, + 6.556903896302626, + 6.1210079091583705, + 5.892624513976365, + 6.208582652094645, + 6.024873881202252, + 6.271152716120038, + 6.234615096195528, + 6.613230033742138, + 6.447163256753669, + 5.674310911865666, + 5.764228207159423, + 6.348340730078329, + 5.907091635924177, + 6.329758777078776, + 5.947405948542491, + 6.234913287170917, + 6.042470851344481, + 5.888733758914862, + 5.895619436456697, + 5.956864865335875, + 6.002020718745056, + 6.288061683010459, + 5.996742169909482, + 6.174124074261989, + 5.689712772523665, + 5.595559354693928, + 6.3918930171044455, + 6.263787999006194, + 5.392266025536126, + 6.137773362163035, + 6.08983077763223, + 5.746116434267834, + 5.479745827173463, + 5.914758586203891, + 5.276463002114915, + 5.604841889205926, + 5.476951420712624, + 6.144814001555645, + 5.997953934726218, + 5.984532497721893, + 5.778011472476112, + 6.106054096909791, + 6.285937997914698, + 5.78880420073606, + 5.515288709368908, + 5.982573300226845, + 6.080651741557055, + 5.642398588891758, + 5.7141276131636305, + 5.857885772786076, + 5.341277155105564, + 6.111991224741524, + 5.626802518172026, + 5.876450359307931, + 5.8449484053691485, + 5.657691645353738, + 5.518406245409428, + 5.560198690567483, + 5.932704511312916, + 6.1553004140035625, + 5.441803257942037, + 5.361242392773896, + 5.716679515173829, + 5.784258951410513, + 5.656880540454456, + 5.7747330627421976, + 5.880692621386712, + 5.530474014003561, + 5.53954267407034, + 6.42618338960637, + 5.649402425491188, + 4.9653894299727845, + 5.728834690535513, + 5.686478212652144, + 4.716016910992207, + 5.8781762526777115, + 5.174457456447771, + 5.509170458586995, + 5.823993717896338, + 5.604234094650109, + 5.525098903134831, + 5.359696556295355, + 5.443692339658684, + 5.696350185281843, + 5.831735488449078, + 5.634399665765274, + 5.2903735849924844, + 5.838765200714764, + 5.129982022570855, + 4.902923628800178, + 5.962073044387994, + 5.1602354404090605, + 4.894557952355035, + 5.528464518967753, + 5.153484692263437, + 5.460958036381048, + 4.9691676097330415, + 4.745783369374363, + 5.1767181126852595, + 5.155740173399377, + 4.799986838830282, + 5.44459895612463, + 5.732141261002952, + 5.50817790932524, + 4.965372234204918, + 5.0359815100658905, + 5.2795982775126795, + 4.890268739212593, + 5.493492120108577, + 4.902649884555247, + 5.2862875546425325, + 5.188822145446489, + 4.682556590164292, + 5.045080149030284, + 4.807078421242054, + 5.345183708217495, + 4.36747231379237, + 4.727004212718789, + 4.934296738055972, + 5.158412555108649, + 4.980693293611271, + 5.042175187916582, + 5.234136837722093, + 4.872877164355562, + 5.57283332343633, + 4.587333817841607, + 4.830650059837988, + 5.204686936026877, + 5.141625095998285, + 4.5370866371938625, + 5.071182498023534, + 5.371752612563493, + 5.062484146429568, + 4.613312679324912, + 4.988732692918381, + 5.125098059752289, + 4.675886519160544, + 5.085352977952115, + 4.869087653198883, + 4.695046799889913, + 5.170830892089561, + 5.449581610014819, + 4.9367783244368075, + 4.536569747137335, + 4.394039322124262, + 4.2783320559326405, + 4.957404437930184, + 4.834740107257637, + 5.196645508598696, + 4.770909285055547, + 4.609243674974428, + 4.481955956389352, + 4.10695439801346, + 4.73369645921352, + 4.649288218554482, + 4.55879867549229, + 4.883905455701012, + 4.170753510442082, + 5.079962090310954, + 5.092613823459703, + 4.998408989855588, + 4.521967688950192, + 4.705976841452064, + 4.974068973771308, + 4.460616249614416, + 4.30844678192794, + 4.79091933469617, + 4.959367476010283, + 4.461747327687366, + 4.59186093867311, + 4.6580181318496425, + 4.683425843967453, + 4.454012131133045, + 5.020160369775762, + 4.50151648947873, + 4.73421900348336, + 4.817374104533687, + 4.496000960943007, + 4.347687325268713, + 4.019382799750876, + 3.9214688248598373, + 4.455728345885745, + 4.198490276862698, + 4.339091058717642, + 4.879370567337414, + 4.442467281941073, + 4.102859205870556, + 3.9691028447186985, + 4.214782386418067, + 4.091293316978652, + 4.316416926307924, + 4.506895391018924, + 3.9307981986346108, + 4.37668466836983, + 4.049757462460043, + 3.9709437142771846, + 3.973888193707117, + 4.1190569899562055, + 4.111494522348238, + 3.7946997825386193, + 4.038878384811637, + 4.1794597326927505, + 4.147451408614002, + 4.439668840588639, + 4.278676414695475, + 4.310091951548606, + 3.945541162053698, + 4.268603557710856, + 4.448877018459235, + 3.6633920000072937, + 4.292126907528078, + 4.221839222153435, + 4.481352259247696, + 4.119938257290313, + 3.619561486699555, + 4.442963759881509, + 3.856598570601195, + 3.5263837534958222, + 3.712440800410991, + 3.3993264958126703, + 3.831153471395795, + 3.2780071410784237, + 3.449834420790085, + 3.7825644997301247, + 3.626271737032427, + 3.6453924138549993, + 4.273122061806678, + 3.869602150937108, + 3.9996222251268985, + 3.7006233418936247, + 4.030002738667911, + 3.612318315949314, + 3.976874029452783, + 4.211515182494813, + 3.233538360093596, + 3.7842768682437145, + 3.7068778030929828, + 3.679203675403339, + 3.749056034914331, + 3.2720361550916226, + 3.5012748399654585, + 3.5748874404746895, + 3.754895107014574, + 3.9321432530548543, + 3.406897503125287, + 3.1212543446807905, + 2.8529673719260824, + 3.65614614511455, + 3.338463057649298, + 3.779776656944527, + 3.5822301255722615, + 3.620061239324752, + 2.9965979209549496, + 3.2250298976310146, + 2.9428301650251774, + 3.443976149172523, + 3.47758417497668, + 3.244805070075125, + 3.8427982021457985, + 3.2220433550931395, + 3.3305867708477295, + 2.592892240098753, + 3.380474008142309, + 3.135437503951123, + 3.4179567295852307, + 3.8837551768524268, + 3.5544074605924205, + 3.2126916225251905, + 2.924301707505007, + 3.0899170548677506, + 2.940698117203722, + 3.4994781994229207, + 3.5257276565588573, + 3.1202868811455438, + 2.8176008232777443, + 2.598623101572252, + 3.376238647632631, + 2.700292983586528, + 3.0467561620612624, + 3.458251370773857, + 3.2893431653646834, + 3.0040750323750642, + 2.152773308959298, + 2.8138307441456596, + 2.942314651445919, + 3.048261097049192, + 2.7558976127373063, + 2.877847203386219, + 2.6351044689538763, + 2.5873911324071095, + 2.8514660735163146, + 3.388324957729469, + 3.1868672744667164, + 3.2543976843712787, + 2.6220921488388953, + 2.6397019948380023, + 3.130399723456303, + 2.715883959002436, + 2.4468591224369725, + 3.1031243201592056, + 2.387601770042016, + 2.7906846247871475, + 2.9256862541770343, + 2.6850758569201147, + 3.0635139004047347, + 3.0652157690934905, + 2.203959642196372, + 2.689244396840753, + 2.3609004054031653, + 2.637903122290935, + 2.4668639195506694, + 2.638969571778553, + 2.7466803890545783, + 2.6574982785779233, + 2.5673024617971394, + 2.351891736728458, + 2.2674242788600507, + 2.39559389476531, + 2.271638038669413, + 2.6087838487906683, + 2.465453057086774, + 2.392965990761067, + 2.4203075778741345, + 2.6196073457582534, + 3.078255290134921, + 2.5451622405034944, + 2.5665869464771895, + 2.542210528244866, + 2.4384575539771816, + 2.194020178785129, + 2.269359065708921, + 2.4045415100114034, + 2.978216831411284, + 2.219357347581203, + 2.2385729226107998, + 2.557402855962498, + 2.14001172176452, + 2.0829151782156803, + 2.197215443095543, + 2.783488969154036, + 2.249599488763294, + 2.1576234157116643, + 2.3354041971357082, + 2.5916947405130246, + 2.5943392268678203, + 2.0173718961965337, + 2.288247049434939, + 1.7243957894604336, + 1.9926899494777814, + 1.8922463346417318, + 2.216472406432243, + 2.0470483934512123, + 2.575768523369964, + 1.8007239964407995, + 1.9362194082485271, + 2.311712290412148, + 2.123884435382334, + 1.7758335591863115, + 2.272332595641704, + 2.3014169229927983, + 1.8988242145395835, + 2.3415266833931794, + 2.1039699802141465, + 1.7451679496371901, + 1.7008856879549095, + 1.5718524164641758, + 1.9806542738842738, + 1.517511790714508, + 1.472644656801287, + 2.3698710241539964, + 1.8352592402642065, + 1.9576550607459031, + 1.9054797241719146, + 1.6879128989526195, + 1.6498111991118987, + 1.2901122087634973, + 2.2443115082886074, + 1.6684494306114723, + 1.9269421265258297, + 1.857696340224602, + 2.0320213307174426, + 1.892879172326494, + 2.511510861754608, + 2.026890333097823, + 1.4157204861648762, + 1.797396340307409, + 1.589482319174774, + 1.786962330948359, + 1.3424322576160093, + 1.809952482111584, + 1.6750179459864534, + 1.9539584213732324, + 1.7587645791004725, + 1.9101429540778985, + 1.879520699726834, + 1.2916614751654634, + 1.320413088750874, + 1.692070097449964, + 1.126027518875563, + 1.6768467965088636, + 2.02064895018874, + 1.6302958433152754, + 1.6911698756306774, + 1.6107488058902777, + 1.5593676102954448, + 1.6630081201277331, + 1.2993102071484781, + 1.5067889307510223, + 1.227235643085926, + 1.9957954104384252, + 1.7182552182131074, + 1.8205151048759034, + 1.8890910034162005, + 1.4457411833051386, + 1.1297580481780842, + 1.5605158990901096, + 1.2433973733733683, + 1.6394446135399958, + 1.0447061555993975, + 1.381279566665104, + 1.6957734296525233, + 1.3926636742662548, + 1.608980327664511, + 1.6642191745235875, + 1.5674010937298681, + 1.8305105213645052, + 1.4177762730076575, + 1.0729533742585937, + 1.578547204055417, + 0.8140212950561257, + 1.900157068286644, + 1.0083259758430079, + 1.7875699621984538, + 1.3950681413839885, + 1.0429529938375766, + 1.7564918249491588, + 1.4541286627217984, + 1.9662984641572008, + 2.0723229313732587, + 1.2261531972356572, + 1.2782996926484729, + 1.2199084710119241, + 1.4255349101342198, + 1.347894264030423, + 1.2231082193958047, + 1.2683139119807763, + 1.1308692970868535, + 1.4655413510369484, + 0.8838872657630235, + 0.792362396515689, + 1.1193947408099092, + 1.4448804693244774, + 0.8458137026593249, + 1.2917878793199777, + 1.2588584074695817, + 1.1750538377831048, + 0.9825633655913932, + 1.564278418778747, + 0.5756247551632042, + 1.0635840209519372, + 1.51483515259704, + 0.9407746036293638, + 0.9974305591971219, + 0.6968715723957968, + 1.545829014432455, + 1.5024155849896053, + 0.9489166659465301, + 1.4834336164080002, + 1.2089923230158364, + 1.0569284043318785, + 0.7451073185584834, + 1.2645287314690403, + 1.0184953465525184, + 1.1389656960566192, + 0.3038680806033375, + 0.7728220242786398, + 0.7689202723901782, + 1.1406762177973038, + 1.1001688583206635, + 1.2731523253027874, + 1.096854941709382, + 0.9859345196994131, + 0.5969016978974577, + 0.6831334671896159, + 0.7815699391327001, + 1.024138639477492, + 0.9840148018171393, + 0.8452463250762324, + 0.8896479590112517, + 0.735958189937312, + 0.9096896497010992, + 0.7649495286354084, + 0.38130144739196214, + 1.294845753109099, + 1.1587620380347698, + 0.861639944019548, + 1.6014154745617484, + 0.8466099132690652, + 0.4474864536470654, + 0.8974507842856732, + 0.5311545579183607, + 1.3049894280072687, + 0.4882547376550726, + 0.9299557521629127, + 0.4965531950780014, + 0.42086454725987404, + 1.2404428690262719, + 0.5642131519786531, + 0.3576585582172113, + 1.2614751917795144, + 0.5813887533981894, + 0.6110120470375772, + 0.7231279981122888, + 0.8375523260376465, + 0.45338547144231883, + 1.0051965523744433, + 0.6470700196920873, + 0.7161341774082155, + 0.931589678787933, + 0.9708241671696995, + 0.8799676727944991, + 1.4176921570954444, + 0.31623668948066197, + 0.5853047764410387, + 0.8170534785018868, + 0.8546281486631541, + 0.7643670181737862, + 0.9002501229048546, + 0.7608926621321077, + 1.0223991160530805, + 0.3299448192645829, + 0.7212136184389741, + 0.5673919444903037, + 0.54173098326405, + 0.5115728527441901, + 0.7680333380480628, + 0.5973581366895755, + 0.6078129816076911, + 0.10437972030822584, + 0.5898935165968621, + 1.2368279748644841, + 0.6152407157943492, + 0.8249217958678492, + 1.0035390202088272, + 0.5278637618157511, + 0.18943700253363288, + 0.1683853740371274, + 0.9464698690043141, + 0.8181294464944422, + 0.8004038880063693, + 0.5304163958451559, + 0.6491917315711506, + 0.6240472289271135, + 0.48006734163554493, + 1.2321327422403892, + 0.5872115774578823, + 0.28180280625375315, + 0.5963513631588195, + 1.2815438277522984, + 0.22649683267371057, + 0.3878533645504484, + 0.6684752033514636, + 0.843292071128491, + 1.178192959219765, + 0.8728581624319255, + 0.9802204145036166, + 0.643989642007828, + 0.4561995903073536, + 1.0176729097951187, + 0.6882387299576822, + 0.6069604807040049, + 0.5179330588293111, + 0.3394717834154085, + 0.9669724723553668, + 0.5191864376441498, + 0.16612697824587858, + 0.7232343504457929, + 0.6055836460034131, + 0.42645556246570376, + 0.44248329582749524, + 0.2165800202365059, + 0.7152401634001155, + 0.8171547569042203, + 1.4878936560573095, + 0.9850812007649001, + 0.1781559642004899, + 0.8198393652038172, + 0.8151716476349509, + 0.7023198947317403, + 0.5089576904742545, + 0.7858944804358927, + 0.6482550636711127, + 0.7596841120980302, + 0.8448034609675158, + 0.5536347466233326, + 0.32603714000635087, + 1.083267660858163, + 0.269999435840013, + 0.11984745966912336, + 0.56355832667832, + 0.9319527839774261, + 0.7087093265591384, + 0.42535466873071703, + -0.17659179014035986, + 0.7244532600914031, + 0.4201308543306558, + 0.08031825493051903, + 0.711959769785014, + 0.19181429990802618, + 0.30528236309711493, + 0.8852127277919446, + 0.4029819631172114, + 0.2656125075286004, + 0.509268844902787, + 0.8151356047147634, + 0.7439343784532962, + 0.3210435117857565, + 0.4386232830511631, + 0.7729050013672665, + 0.3367989167942703, + 0.750857663569902, + 0.9326723628384741, + 0.44843625038584484, + 0.5255500900420141, + 0.6525728106929621, + 0.7998805601501074, + 0.770199104396653, + 0.3313666264754614, + 0.8670058898402833, + 0.8163255663338085, + 0.9082244140144077, + 0.8246128547283551, + 0.3171980266403397, + 0.768836656007993, + 0.7852961620003566, + 0.7389479122358434, + 0.46610514975320594, + 0.6224572413434737, + 0.31667545670932407, + 0.5826147112316346, + 1.3646434208912104, + 0.54202768983541, + 0.7895076275696568, + 0.2418794949188544, + 0.8914644424284816, + 0.6144992027590896, + 0.6275183393878956, + 0.673787071100218, + 0.5562753559680442, + 0.5236356862387573, + 0.8413885388147524, + 0.6462576404823064, + 0.3176288081379143, + 0.9338240338374578, + 0.16246621686368012, + 0.8042435239776053, + 0.7290704799503556, + 0.4169239869986203, + 0.6444559913318599, + 0.49415144248697596, + 0.7667824201159846, + 1.0367916819428038, + 0.9402094119332353, + 1.057216659343253, + 1.0044585208506829, + 0.923200187660549, + 0.9648264752100499, + 0.46682369028671805, + 0.7972144258782279, + 0.7773254032170896, + 0.6368238765890192, + 0.6687979522116618, + 0.9385827775579033, + 0.9091148330876649, + 0.7173840036616611, + 0.21391829117925576, + 0.489611486315796, + 1.1804946115412998, + 0.10233436558295173, + 1.1029978854684548, + 0.6455336828929729, + 1.089798375476465, + 0.8741382310350638, + 0.7886614921280849, + 0.9775640255860795, + 1.0538604830468845, + 0.3097068966929275, + 0.5120246346906369, + 0.5655776672186517, + 0.25265248888082914, + 0.6618514213151605, + 0.975700272221496, + 0.40705456312133365, + 0.4645276427794799, + 0.9337488043160936, + 0.816511715463437, + 0.9363134047567999, + 1.0056036891924702, + 1.165208539969853, + 1.280877533555587, + 0.6990529816269346, + 0.7636739699281074, + 0.4059194854242826, + 0.7483711418863486, + 0.6272593168039006, + 1.0484330262085078, + 1.2693791565336194, + 1.4035869620421066, + 1.0618408589669013, + 1.403233826517537, + 0.5208966465411238, + 0.8014813057385354, + 0.720119306110584, + 0.8828880873037831, + 0.6812502065748558, + 1.5976142670597218, + 0.24361737685507878, + 1.7568520809258468, + 1.0264230019216736, + 0.5642512213042941, + 1.445476742477077, + 0.7468996412609504, + 1.4472488882349377, + 1.4444085026042093, + 0.9135329913420465, + 1.1322687924022463, + 0.6252209067609886, + 0.7733821692286758, + 1.6300974072398389, + 0.9737247264871641, + 1.0751725136007118, + 0.6793983400858452, + 1.5821019653710264, + 0.8405967329731391, + 0.7372016514948818, + 1.3421011280726014, + 0.2643256260139819, + 1.5044587443910957, + 1.3510378831416332, + 0.844475956763318, + 0.8755139317209817, + 1.311087068159932, + 0.7310566545554735, + 1.654072977811753, + 0.9895033043008371, + 1.6561711156643206, + 1.371344832916932, + 1.2927844584212784, + 0.8374558248705326, + 1.0811494804355308, + 1.3834887927924346, + 0.7524333414439695, + 0.8762890234082781, + 1.5729820560810686, + 1.2037117482209885, + 1.4768357531439138, + 1.3219515267757591, + 1.2260450335502875, + 1.1203623486770824, + 1.161241757492411, + 1.326404647026049, + 1.5840428794805768, + 1.057276292085672, + 1.4597362348430187, + 0.9905068020399559, + 1.5859123200817449, + 1.2472723512479649, + 1.8011999038435458, + 1.7248345877918394, + 1.0286404154007747, + 1.3051913698520305, + 1.3919297167607692, + 1.8025723496921924, + 1.1533771867869007, + 1.4617104401719774, + 1.8568019120307393, + 1.3468034443895671, + 1.687405185486935, + 1.6407804730752547, + 1.445022541216625, + 2.009083734194526, + 1.4635725805941104, + 1.4008770911390083, + 1.4958011108452205, + 1.051901662314634, + 2.01354930569049, + 1.4732769438900195, + 1.244311968086308, + 1.5064508991668621, + 1.7080047914779235, + 1.6400567512618704, + 2.0228626819568127, + 1.3890981883147453, + 1.3895033550354847, + 1.8475549788702967, + 1.7408897717984917, + 1.217614269165676, + 1.8139033495647303, + 2.0109616063595177, + 1.6894558774320747, + 1.8681488192875528, + 1.4617751481467478, + 2.0222513160732714, + 1.7433524094528219, + 1.5763419884998762, + 1.6159446075768216, + 1.40109542606449, + 1.8704990159266195, + 1.8658904448416478, + 1.8276673393644265, + 1.9953441137527987, + 2.2222861676256653, + 2.0150786473875026, + 1.7512489660302608, + 1.4282036001608038, + 2.0516615405678262, + 2.0509318825092318, + 2.234965449581734, + 1.4432474658832979, + 2.539523286356405, + 1.74995775460558, + 2.258273367294106, + 1.9664643332061467, + 1.7395465522220466, + 2.015616256823886, + 1.5236370154996797, + 2.2031977434975207, + 1.8194486959577427, + 2.088914601363662, + 1.817639070691822, + 1.9557925532130167, + 2.0316425363203017, + 2.1076090529157256, + 1.758295596744399, + 2.100605825674704, + 1.7441353845517256, + 2.0706392287952196, + 1.8186339905777378, + 2.6390405746140573, + 2.2512482004997434, + 2.127265277353604, + 1.76741259811276, + 1.729880473442017, + 2.088210396286253, + 1.7009840965950893, + 2.3214362036677523, + 2.052083653902375, + 2.163334052654944, + 2.6595425477203647, + 1.5265421001347712, + 2.4580642316246224, + 2.5116815130162005, + 2.5860773970593094, + 1.9242097758521253, + 2.4013565118084905, + 2.3340854842640977, + 1.8492078428624632, + 2.3132286585215622, + 2.2680264435306094, + 2.2900113151429125, + 2.2152124304938905, + 2.2477430704556993, + 2.4781051728874495, + 2.4190737326969676, + 2.2356886561403297, + 1.8721974013472833, + 2.475852588261379, + 2.8911044491905833, + 2.2282901405173248, + 2.9376238039565896, + 2.3926585633748587, + 2.5521315672626117, + 2.7410371055790304, + 2.9910986320074144, + 2.7553836236056832, + 2.35831768687202, + 2.414312855466282, + 2.18629071404561, + 2.0412233668433357, + 2.105372042737074, + 2.7816132613362905, + 2.2539795466200383, + 2.4103395946130712, + 3.208448633068717, + 2.343626534883197, + 2.7221516740922276, + 2.6058057200582656, + 2.431781508434123, + 2.066907627879084, + 2.940450887982802, + 3.18715406030148, + 1.9441923646401311, + 2.615257276067135, + 2.859356468815523, + 2.7359498157602573, + 2.381592879757069, + 2.9813835442290437, + 3.1987222100044677, + 3.1676724164093706, + 2.9723880804774008, + 3.340953905668855, + 2.6147800897323874, + 3.170905283952007, + 2.7990790889094663, + 2.6500347303488834, + 2.4746940599117413, + 2.425898250011425, + 2.790511037311012, + 2.7940281757326764, + 2.809640722160448, + 2.843703820453616, + 3.154900044450728, + 3.72468274588347, + 3.1106303482158295, + 3.0173043395657526, + 3.355020308041288, + 3.105024758505318, + 3.3560082663611657, + 3.335731068562242, + 3.133912382231967, + 3.010508380984712, + 2.7457927251799528, + 3.5226703489289974, + 2.9713497880699093, + 3.861947366329396, + 3.1769026993485627, + 2.8825171218455536, + 3.2156948595508013, + 3.4775737492536685, + 2.7176136820019425, + 3.2768543093171485, + 3.137225829148146, + 3.1877975421381923, + 3.068326810424839, + 3.36126214943683, + 2.8998859754128037, + 3.2461580393993454, + 2.8537639521877267, + 3.2243747356791452, + 3.4743581758394786, + 3.2177085258770974, + 3.457494746867888, + 3.1024291465573857, + 3.6447493690126787, + 2.9928661432407706, + 3.217145136529552, + 2.9834844707281873, + 3.3965604742444695, + 3.6099158195399426, + 3.4257442539512173, + 3.235026228512317, + 2.9773796733950624, + 3.4897310431436677, + 3.769081994934434, + 3.8370295760267936, + 3.0847045434285305, + 3.895851341310589, + 3.224117077407229, + 3.3208095955676287, + 3.6769884118751666, + 3.765406110504479, + 3.3321990146476796, + 4.059021768780797, + 3.5823124546767304, + 3.261219085554412, + 3.695663653451497, + 4.051419867961197, + 3.2709251076214554, + 3.500725069715277, + 3.6857819864982555, + 3.2150103058981294, + 3.926377012153395, + 3.3932425750246087, + 3.626929085768155, + 3.9217719121120878, + 3.9730982896226834, + 4.398286213441853, + 3.9562570616707236, + 4.1713161971440105, + 3.9007134961598315, + 3.490117449592104, + 3.9556889545489984, + 3.4449136627386543, + 4.1853915166732, + 4.329263188262372, + 4.489788891048132, + 3.8943628564080632, + 4.288524758872106, + 4.063480106499707, + 4.199894258939034, + 4.125375397827224, + 3.622985128446123, + 4.015110080406134, + 3.737224024817235, + 4.575078294405429, + 3.4611927196993464, + 4.307195205043495, + 3.686593965551638, + 4.054752765283695, + 4.0476464129298, + 4.019815289635693, + 3.5309823525072055, + 4.243516724689823, + 4.525499201490295, + 3.458764891542763, + 4.195069630349133, + 4.406898778820926, + 4.49865846176027, + 3.964243237148266, + 3.890722025544671, + 4.149040261316173, + 4.30016257497657, + 3.946054587538115, + 4.732009966246758, + 3.881396663429749, + 4.513054307641544, + 3.8524171712623203, + 4.432135071005191, + 3.922996968326059, + 4.06617245974427, + 4.584094117411097, + 4.434343152814331, + 4.467268139177042, + 4.1511931386946905, + 4.612150674681285, + 4.474595998643882, + 4.403299404132515, + 4.563458502499689, + 4.534284521884165, + 5.3414637824034035, + 4.362925811219375, + 4.285564743509374, + 4.285225032482331, + 4.908096155412049, + 4.539586343393189, + 4.712582030099359, + 4.7676125981380935, + 4.868779150875618, + 4.478832922817326, + 4.530230668533967, + 4.941709501506096, + 4.582066454869825, + 4.468686535953742, + 4.7546465063182755, + 4.719781448034808, + 5.225026314003043, + 4.5238165705988065, + 4.72182498727488, + 5.1071041590209045, + 4.696517092632547, + 4.911559420409331, + 4.962761576296722, + 4.695989228370361, + 4.71933979992662, + 4.451092523756484, + 4.705691900289086, + 4.89097264177636, + 4.856214052866854, + 4.955311149459663, + 5.339076988941986, + 4.739857227281605, + 4.867945060231832, + 4.5874986610819, + 4.388917214560312, + 5.307275305819469, + 5.1414403969190605, + 4.792974305984232, + 4.88588663373344, + 4.951050137312837, + 5.194961627617522, + 4.8349048730256134, + 5.573206865237313, + 5.082328404077523, + 5.257203879873796, + 4.735782604218856, + 5.1957500149585885, + 5.117349336996533, + 4.890300727849541, + 4.859064832816371, + 4.827859004094618, + 4.961618979098435, + 5.731519209247916, + 5.318110767555617, + 5.440612964963987, + 4.961223366144342, + 5.372418165404417, + 5.339532500493542, + 5.004506365102703, + 5.6327945091758735, + 5.222652991842443, + 5.3440720971912805, + 5.178598102668451, + 5.14774482585698, + 5.391620717565947, + 5.346787217510611, + 5.324081158090674, + 5.388602474457522, + 5.042490066498276, + 5.395066560771647, + 5.235885904257563, + 5.013570868067555, + 4.795385116726679, + 4.824114562374578, + 4.689410076860891, + 5.065181133173681, + 5.239960937223802, + 5.411652379866322, + 5.594607328092798, + 5.463488980326676, + 5.364017917445926, + 5.135980245489939, + 5.508804384794505, + 5.566515847360996, + 5.606946284326843, + 4.903344981650761, + 5.575869763894439, + 5.625588956169588, + 6.0925130539026116, + 5.928385386644518, + 6.0756642777010414, + 5.308935011862396, + 5.222992552131949, + 6.115065663250333, + 5.984035591452821, + 5.515982180817242, + 5.792848956684539, + 5.500321987241558, + 6.242512254001954, + 4.6715628688624165, + 5.590090247049384, + 5.151715424903575, + 5.642582898266581, + 5.82473080535777, + 5.81841460531666, + 6.26403014710993, + 5.879702581833854, + 5.6350433237632, + 5.749088944519658, + 5.5944058514271315, + 5.959526347241371, + 5.6665002799899575, + 6.187728171024634, + 5.457457705460157, + 5.5488237677907675, + 5.862146050285889, + 6.042565798296781, + 5.653614965475139, + 5.50837259438309, + 5.803840513628869, + 5.7262459518726265, + 5.776948159809831, + 6.089095837181117, + 5.957885136826868, + 5.9468271805530035, + 5.8331548926459185, + 6.0083113509304, + 5.92212526702645, + 6.0894288040308195, + 6.5291156965354835, + 5.786675079749536, + 5.940112759433467, + 6.263062483620635, + 5.535395454310189, + 6.244504896637099, + 5.668298421449601, + 5.892208584776581, + 5.8462207062091345, + 5.994226369852224, + 5.728335308928264, + 5.5348951193285085, + 5.86221598347491, + 6.352255851355514, + 5.6781908848397284, + 6.000639693651562, + 6.104326468215439, + 5.768494114231559, + 6.022793987307671, + 5.747686248270808, + 6.031226066676557, + 6.136896929503197, + 5.7013772263801386, + 6.334216167479869, + 5.677588287628346, + 5.980552829737771, + 6.46041520789484, + 6.176525976164722, + 5.692314507036042, + 6.210560842783368, + 5.6750150930341485, + 6.301009019029835, + 6.297863868315916, + 6.404045212230395, + 6.34197102255964, + 5.867342929298745, + 5.886597498963296, + 6.524696883112651, + 6.318935249340748, + 5.898643509207175, + 5.7783520890476145, + 6.213488510603541, + 6.341245813517669, + 6.853259138164284, + 5.609589562685146, + 6.244585559832787, + 6.136430393237536, + 6.096064465773595, + 6.365992087725938, + 6.7423406646859565, + 6.18489799817795, + 6.723638968613526, + 6.577270355658074, + 6.249715294151737, + 6.386953268065216, + 5.530703063147536, + 6.359444043133211, + 5.997719392585936, + 6.029322551356905, + 5.984709210747069, + 6.469952785575765, + 6.223284244905312, + 6.694745372760614, + 6.577548122947246, + 6.1899054648519645, + 5.822611029028429, + 6.445572785688429, + 6.700702003974309, + 6.306352565474233, + 6.0467370495868895, + 6.1196736269424585, + 6.008249884353856, + 6.84919339841794, + 6.627221586347706, + 6.097073014209392, + 6.4997712970882455, + 6.318195121064178, + 6.735744646954989, + 7.160723412612918, + 6.240587337870314, + 5.976663441308851, + 6.475581274980092, + 6.405155046992167, + 6.193469346464126, + 6.64991210501744, + 6.62279409859471, + 6.521694253968873, + 6.025250996816904, + 6.505424234670424, + 6.55619376105096, + 6.418333571041696, + 6.989346727582834, + 6.818801007332449, + 6.036904336323716, + 6.423374332581799, + 6.698211494173686, + 6.824981230617263, + 6.676211444246063, + 6.707556656102483, + 6.5111093013681485, + 6.19128125497129, + 6.157486346476313, + 6.595403154696551, + 6.3339737552062125, + 6.79385529670865, + 6.188307877273932, + 6.360870505639694, + 6.277521098991038, + 6.695586162592377, + 6.196556243535417, + 7.191713326081959, + 6.4572294260305165, + 6.490349711191641, + 6.436299387317068, + 6.232865214903683, + 7.034123625709821, + 6.827985222943591, + 6.833996936071317, + 6.5613288221222765, + 6.646388788632409, + 6.371903525336857, + 6.692427800631178, + 6.5704193761563205, + 7.105427588107122, + 6.914312996904401, + 6.9178595624393795, + 6.820097344209195, + 5.949939691204742, + 6.315691687638627, + 6.776464812084923, + 6.621811444939912, + 7.114305682708383, + 6.629002462952209, + 6.507542688638514, + 7.11122626890579, + 6.613101212783601, + 6.473953351672396, + 6.5472425569338535, + 6.675372256014283, + 6.370831329250454, + 6.6487121724090725, + 6.163242172523049, + 6.828413557724617, + 6.685659950574877, + 6.176247991177565, + 6.7686993447086214, + 6.438729790707995, + 6.696577968081898, + 6.504530983982112, + 6.5686231401114945, + 6.41041353204471, + 6.116896960959911, + 6.6271319608518615, + 6.593210491109043, + 6.343488751247851, + 6.36035885358611, + 7.204025527392029, + 6.197461908897063, + 6.913828191924129, + 6.237488945714994, + 6.762673180762075, + 6.292973610134951, + 6.8376999598729356, + 6.644713019197538, + 6.42294721028738, + 6.6780396657993215, + 6.36084929673005, + 6.6987972171471935, + 6.642190404478853, + 6.921642747428115, + 6.898981673058092, + 6.578822312755922, + 6.296301634591286, + 7.122838898789407, + 6.445326867148726, + 6.5280087754431, + 6.198425065786299, + 7.082411257588338, + 6.8596552548225835, + 5.869651254038053, + 7.101737050564872, + 7.383207145050282, + 6.341435246609145, + 7.2235050005661705, + 6.883110549451576, + 6.407533583275095, + 6.323478621090818, + 6.7872144682683, + 6.912665681167534, + 6.211630144385175, + 6.054303740855506, + 6.813270031067977, + 6.202900546412555, + 6.667572543813295, + 6.3042237469804, + 6.708033435331558, + 6.67105513617581, + 6.2495016274144515, + 6.573212926764994, + 6.773636614891192, + 6.326701821057598, + 5.840497702903148, + 6.346746759304521, + 6.782958433893528, + 6.516688781351327, + 6.296119449241451, + 6.929660406868328, + 5.963223776256915, + 6.403281154227585, + 6.94939180457681, + 6.906531564707416, + 6.533488571967214, + 6.4010086768769945, + 6.538286160537683, + 6.529124130725596, + 6.294659908161832, + 6.334958468159159, + 6.126231232010052, + 6.533617641861737, + 6.511115197024727, + 6.439811006324914, + 6.731391073605431, + 6.563617799731687, + 6.531542728788138, + 6.534163051393282, + 6.140870156421443, + 6.710894091696851, + 6.817461554616766, + 6.857295702787448, + 6.574918476909553, + 6.028557178332265, + 6.067966484052063, + 5.5173808803239766, + 6.0458801147587415, + 6.593757640864213, + 6.130274403636851, + 6.07258836216755, + 7.111027536587095, + 6.433854688080642, + 5.982276456117125, + 6.338764273786692, + 6.39438646102728, + 6.331626475443139, + 6.762520132156488, + 6.667884160020855, + 5.961756085335236, + 6.688803657796114, + 6.292904254124231, + 6.721804105391572, + 6.128717689887079, + 6.648018099701145, + 6.839844659963352, + 6.170920705210817, + 6.408967424325263, + 6.32875092135574, + 6.37284844936928, + 7.11018821163944, + 6.514945573953719, + 6.115594922062332, + 6.323630278514618, + 5.81095536574852, + 5.736564443171478, + 6.426041056260103, + 5.921877573804713, + 5.714696254396119, + 5.924546511257797, + 5.946760560369382, + 5.718225989402499, + 6.466304816518076, + 5.977107404277936, + 6.2509618499806, + 5.934682302884306, + 6.164897659570373, + 6.003726572135998, + 6.253876331838146, + 5.990361364302389, + 6.189287361311503, + 5.987356532781793, + 6.499455064619082, + 6.639162308628504, + 5.628487966159498, + 6.4371570837726315, + 5.588265875404923, + 6.293513872256187, + 6.8578373997663284, + 6.013678234634438, + 5.7713554345732, + 6.4297948273319125, + 5.750801224929129, + 6.435603064126698, + 6.228097078401618, + 6.364970751735968, + 6.007649732884574, + 6.589669084174098, + 5.800175289235488, + 5.907636650775557, + 5.8823617491539055, + 6.125793170605573, + 6.226757536006836, + 6.139080116408394, + 5.699591664463767, + 6.1310251885815, + 5.602140484720616, + 6.0944373600602715, + 5.9470483524347015, + 5.989691096582671, + 5.560395752029747, + 5.944699151769796, + 6.124587019662765, + 5.603993303827792, + 5.555364340499599, + 5.807862606365721, + 5.48275105920323, + 6.104511991533354, + 5.828776535333054, + 6.104209397807002, + 6.162555378297133, + 5.456302958963125, + 5.728914522112125, + 5.713533734903056, + 6.171129995469999, + 5.69055758556009, + 5.614610969752238, + 5.806354837931842, + 6.217563860941443, + 5.750851243827187, + 5.447820400131405, + 6.037565235054255, + 5.554683319895101, + 6.222167877038687, + 5.314821768097666, + 6.381096095162305, + 6.022292091885199, + 6.379553174901867, + 6.140530781632962, + 5.983384488331415, + 5.509225993402483, + 5.901075028822458, + 6.092707949417983, + 5.4486530625992335, + 5.688203927437121, + 6.193335986190837, + 5.6169715565933656, + 6.056127239605667, + 5.393580488458021, + 5.7570231114713915, + 6.065695920489134, + 5.431637614042547, + 5.712200330688152, + 5.146709842365964, + 5.3189657280445495, + 6.020483732577009, + 5.4368537584989625, + 5.783320892291108, + 5.749960127808476, + 5.672669512183261, + 5.7297882653989705, + 5.008320454168198, + 5.802082660509165, + 5.88360166336663, + 5.665603718539289, + 5.445181760830427, + 5.300263441143582, + 4.991238414255401, + 5.576079973005051, + 5.573828205324016, + 5.2514384425700955, + 5.944366181418439, + 5.355788455242899, + 5.474886504891797, + 5.445888470465861, + 5.439039038317145, + 5.444302673970251, + 5.232409779778357, + 4.665742664023803, + 5.6168582442194355, + 4.932274289555524, + 5.141025324223978, + 5.324969501804352, + 5.279771046133268, + 5.477292285610486, + 5.483599220384895, + 5.496592112282617, + 5.490815377774977, + 4.743409244299845, + 5.137360773138344, + 5.69842562001039, + 5.07456511098327, + 5.413889012701133, + 5.1479328516622544, + 4.96959818491798, + 5.285685416729097, + 5.641358546427773, + 5.530151187560376, + 5.135669235789288, + 5.373708147430673, + 5.114869652649266, + 4.926764016764693, + 5.446489890699288, + 4.91784416665235, + 5.272962325356478, + 5.071721802554455, + 5.507937832265866, + 4.715292827965472, + 4.975375316423036, + 5.184042770286495, + 5.264838490961231, + 4.904947735486252, + 5.430944980908952, + 4.551151450743999, + 4.790623742268716, + 4.664059715158203, + 4.987071624128421, + 4.559741562052283, + 4.566336354893125, + 4.8658436473215225, + 4.895651954720669, + 4.572393878411337, + 4.600660048939887, + 4.695207926686856, + 4.424383751145707, + 4.458999945891922, + 5.028850692194002, + 5.047226997035174, + 4.771881134756382, + 4.823380335276611, + 5.196931591507706, + 4.995586575923999, + 4.434517296473717, + 4.292191104287448, + 5.222265297362519, + 5.289304117595301, + 4.866007369971768, + 4.838813173429512, + 5.1040571977532165, + 4.821966801206376, + 4.467347114367911, + 4.771196630328605, + 5.047666221663771, + 4.553193139222624, + 5.053743438469837, + 4.483277836463001, + 4.640688543723019, + 4.446655724058161, + 4.718546824376449, + 4.642460063659553, + 4.651240526787681, + 4.597462403359444, + 4.50193525836992, + 4.230976301855239, + 4.621853665891966, + 4.2388271970172315, + 4.152054116537274, + 4.116942275810816, + 4.716885397958019, + 4.563361550119365, + 4.056139381091988, + 4.602522771464665, + 4.764338473474409, + 4.268937562142685, + 4.0395538281585885, + 4.534983340756044, + 4.421414132971328, + 4.098877024789233, + 4.17611282841625, + 4.108239118395885, + 4.221081835346373, + 4.393367103500838, + 4.0150308986973915, + 4.212167360773698, + 3.8659638014919686, + 4.292971705614994, + 4.098733799445211, + 4.506040394314369, + 3.882905799094492, + 4.502142347920485, + 4.4281243137753, + 4.353978685198624, + 4.560842512560398, + 4.400352405176919, + 4.022234654709477, + 4.250239112561761, + 3.581658709024615, + 3.952420619065731, + 4.2351123921233285, + 4.256153894187566, + 4.021792980777234, + 3.661847826753037, + 4.558920106206776, + 4.001559826845044, + 4.258283448373776, + 4.219180765839761, + 3.994333251569431, + 3.9936810496443425, + 4.4390723224324145, + 4.152675689211866, + 4.214814129469676, + 3.784047577745469, + 3.642426146171628, + 4.253455889644414, + 3.4767201832503734, + 3.991247198200952, + 3.972911958509709, + 4.3264432040789975, + 4.02734313177522, + 3.7831229494572463, + 3.89257031001416, + 3.862238211352841, + 3.526455471938845, + 3.6463167542453547, + 3.9823009012533586, + 3.932586455719941, + 4.052776536189287, + 3.352734629109972, + 3.788752128873354, + 3.7915430643041907, + 3.3924338899860227, + 3.9763371899826088, + 4.269209449177836, + 4.435999452121527, + 3.4553811356745077, + 3.827909761199905, + 3.4836696831910143, + 3.625285384138841, + 3.131073815592296, + 3.5657581223237833, + 3.5700312063295048, + 3.6280578843835145, + 3.289444814786386, + 3.5595876468035073, + 3.2696016506918806, + 3.4948297119497194, + 3.5498729456295686, + 3.3119919124516715, + 3.227681888570348, + 3.291196752935785, + 4.020042376200979, + 2.803848928848412, + 3.827866202176097, + 3.395407268851505, + 3.268426237519318, + 3.563570308747829, + 3.1903476452471353, + 3.62264338916556, + 2.974205269038656, + 3.215995958939315, + 3.478977930909572, + 3.4016855832189106, + 3.270283415247265, + 3.140267475678939, + 3.0364967969691548, + 3.198769982601272, + 3.2783083685687435, + 3.57155260775524, + 2.6453472274882452, + 3.1167347435875716, + 3.1845375711874757, + 3.17937848047067, + 2.5091227052932528, + 3.315036298445071, + 2.8456050836250757, + 3.58125461972918, + 3.0166587900304487, + 3.0020841615168785, + 2.9219197105427237, + 2.736983527913639, + 2.9764043378381766, + 2.9127983307830165, + 2.6671237967022012, + 2.8701816522639776, + 2.9808748840640518, + 2.8799010400792238, + 2.1366144776446294, + 2.977479881634416, + 2.517923151589481, + 3.2046483892729425, + 3.1084562966684763, + 2.3343467731797465, + 2.922272464163295, + 3.141889311320011, + 2.7805393034929247, + 3.275791757201802, + 2.959602115629081, + 2.8556937996794565, + 2.5559879500190537, + 2.992965969218007, + 2.5572820514712578, + 2.8356608929138947, + 2.8619516780727547, + 3.005639474660693, + 2.5722297036306205, + 2.373686070554042, + 2.902239343150058, + 2.695300268036584, + 2.790270423042623, + 2.6982767556766873, + 2.517366184356451, + 2.7597848295391225, + 2.2030766559156927, + 2.697394085903191, + 2.9608371302704217, + 2.605207367806374, + 2.5082938656830436, + 2.962997674790593, + 2.008910321722876, + 2.333329058337682, + 2.250422165505722, + 2.319440354264217, + 2.6092418305209404, + 2.711021729452924, + 2.0422466827500125, + 2.3575813802641767, + 1.8635045890357804, + 2.1584861873239642, + 2.265982154114017, + 2.7544815584253355, + 2.573005197702953, + 2.3787416179491268, + 2.584217295789479, + 2.2034483294884257, + 2.0069845771250145, + 2.4112257367442655, + 2.4143079891414527, + 2.3329816372262266, + 2.3415534753491505, + 2.0351657044523037, + 2.0640051257697922, + 2.219659823130941, + 2.2424858209236196, + 1.892002950869303, + 2.0402615233995127, + 1.6804023747576056, + 2.1018586951968876, + 1.9848116780241063, + 2.290993553904854, + 2.1305698046493813, + 2.2864106134806135, + 1.9294322882215575, + 2.541717431964728, + 1.987589614512543, + 1.7826160605142887, + 2.4688977215871066, + 1.9361660235324503, + 2.4309697552648455, + 2.37663951339813, + 2.2590594971788125, + 1.7910124131437797, + 2.0028538871310078, + 1.9918123768882445, + 2.100135193319002, + 1.8137215403835993, + 2.0288547826076115, + 2.1575393337847166, + 1.2227317507522546, + 2.198222225449644, + 2.12677587963292, + 1.9606297170452724, + 1.7792173858470677, + 1.616832742847499, + 1.4749479017140275, + 2.132337769939874, + 1.9162690237739066, + 1.6050655807885326, + 1.7260605867840288, + 1.9037630795656348, + 2.097006199983711, + 2.1002139556855877, + 1.6881438001979299, + 1.9167719696908532, + 2.213281527994753, + 1.8814884363431563, + 1.4396327575425607, + 1.8958618308778383, + 1.6424755469778731, + 2.3197161019704327, + 1.7476395132331832, + 1.6398263282351067, + 2.14757004454723, + 2.2045878134863925, + 1.54174149356998, + 1.8565928189773433, + 1.9260087283908907, + 2.0425391583777373, + 1.7964879442513408, + 1.5779213494607913, + 1.4220544262556236, + 1.415372778551312, + 1.5350844755037936, + 1.916466089838538, + 1.2960255832364815, + 1.1456570852952066, + 1.4598786217634965, + 1.3746483521472201, + 1.2205028025714562, + 1.6642144044286455, + 1.2825002851490097, + 1.9267941503726398, + 1.5293827080238025, + 1.8491888671439811, + 1.0852417035431567, + 1.0765883510355347, + 1.4385386380356908, + 1.0640865424565502, + 1.6220363071619832, + 1.741567426093312, + 1.1896303361207683, + 0.9971247289408114, + 1.2644453005957752, + 1.1286755219752358, + 1.9390155218691718, + 1.4654329680915292, + 1.5538902459639496, + 1.244050749992134, + 1.040940484874315, + 1.3579251422017207, + 1.0931760682307288, + 1.7579573433771736, + 1.2543929383309906, + 1.2799957728041198, + 0.991384981084783, + 1.3946284322339686, + 1.4708008578641967, + 1.1780187221041734, + 1.3194156956201972, + 1.6985959428484008, + 1.2995821635293372, + 0.9292351687022555, + 0.4531640222152933, + 0.8197854452588453, + 1.075115552372075, + 1.2860568586349532, + 0.9511882651731869, + 1.1534514500372686, + 1.2077746825415812, + 0.9165960743579334, + 1.9279977259618928, + 1.2638301476738583, + 1.568018754175237, + 0.8630270227212813, + 1.2686611815518538, + 1.3480246327589043, + 1.1023082077544544, + 1.7876090383849847, + 1.2481092259063407, + 0.8862631494894069, + 1.1276269511012749, + 1.2011007898848072, + 1.0462795258546516, + 1.1159527362561896, + 0.7209805898412224, + 1.622580577614607, + 1.2839194161073706, + 0.7873735624400562, + 0.8552768956811698, + 1.2307147455026248, + 1.234005993419623, + 0.5263676504850386, + 0.7591883090104146, + 1.3340257941119524, + 1.2920221208419465, + 0.6430166415570999, + 1.283386545577623, + 1.240801851095812, + 1.4479949881890788, + 1.1768205552595807, + 1.3837050270248907, + 1.030553481607285, + 1.4904245320092313, + 0.547055089863031, + 0.9525270739306367, + 0.24571776377559018, + 0.6611450951157651, + 0.9906037197962564, + 0.888256617057349, + 1.197232321121365, + 1.045069890746493, + 0.849810491854706, + 0.17124759566595904, + 0.7905179591725393, + 0.883562185027157, + 1.4715976999175209, + 1.1226812075294896, + 0.9024032521147113, + 0.4870138542276527, + 0.7875625305401064, + 0.9900272990832295, + 1.0362145871583341, + 0.46463751250969304, + 1.1631063667207893, + 0.8449052107144907, + 0.6581890396537979, + 0.2802912068658494, + 0.7968535007721239, + 0.3590246989376662, + 1.2741519205638014, + 0.7385280037482131, + 1.0913868765862755, + 0.47158473592647826, + 0.78956496707475, + 1.1339839675080152, + 0.7645768473669239, + 1.4115988581465944, + 1.044065096739598, + 0.20393495073530943, + 1.0787994058597827, + 0.9865372132981237, + 0.6601929786008257, + 0.6225969507650083, + 0.6531197284308857, + 0.7830724052538454, + 0.6521105639234969, + 0.9518694859968334, + 0.5192405948555494, + 0.7615127452061344, + 0.05517937588459343, + 0.29307216432289657, + 1.152690508293189, + 0.6710207220258014, + 0.38087056138602365, + 0.744669938758509, + 1.2855179526591205, + 0.4675131368610663, + 0.9884129282252079, + 0.7500577467861754, + 0.4104503104796107, + 0.6001770150455517, + 0.8563479201423466, + -0.14820925975778398, + 0.49432588701407254, + 0.8123566831122079, + 0.36308021956576336, + 0.6395545218868985, + 0.35100179760252054, + 1.1223977001306478, + 0.021692170361292562, + 0.5873965428412723, + 0.7899052867125458, + 1.0488882202614147, + 1.0057285034565946, + 0.5177030075073962, + 0.8377065424561623, + 0.5523922420474916, + 0.48083654821568134, + 1.0240326738869268, + 0.3469073130174945, + 0.6062215205319929, + 0.5846530470415128, + 0.3436346494278267, + 0.6799026444220864, + 0.7024737841224953, + 0.3266395831919201, + 0.5747095960745016, + 0.440012778717749, + 0.5112583405174022, + 0.5481998072589541, + 0.31472713718424755, + 0.7384894524176138, + 0.7214345885928461, + 0.6225397836404135, + 0.9702090828714418, + 0.12546317276391994, + 0.9704311247547478, + 0.8878735697610233, + 0.1895657956515523, + 0.4809341141015994, + 0.8521211218683956, + 0.44588723749871173, + 0.6109232354599122, + 0.6605246510178164, + 0.7403502408883326, + 0.5747304703976875, + 0.176288198024056, + 0.5463796115196705, + 0.9388481327846625, + 0.15958962723348863, + 0.6567446850708998, + 0.2501022893050848, + 0.9998268986971909, + 0.7794113074504291, + 0.5441860896865803, + 0.8000519241332155, + 0.8883321450973269, + 0.9568445292728032, + 0.48368278759628724, + 0.7722692784314042, + 0.4110773756197198, + 0.4268719575613855, + 0.4387606758949295, + 0.7389153485301001, + 0.5143910560323911, + 0.8915194114779108, + 0.030422145651395782, + 0.4763717133587396, + 0.41573039494072717, + 0.80979647601232, + 0.8270122843134775, + 0.3505256795016961, + 0.456006525236341, + 0.5457109247958984, + 0.5067897219547277, + 0.8757149594592946, + 1.1160799590936015, + 0.5811953677993283, + 0.11227378211931816, + 0.9781137361779726, + 0.591956872368349, + 0.24314764466967242, + 0.780410830275621, + 0.5446547995726546, + 0.6044561518570583, + 0.2515195653923992, + 0.7516168164933386, + 0.7762113527907173, + 0.8078954434249426, + 0.3074097365251614, + 0.7815275020947011, + -0.09863889723497543, + 0.39880510849970785, + 0.5577219866101222, + 0.7634753651896915, + 0.5076905157415437, + 0.8245288851185804, + 1.049190693561235, + 0.8975122892121834, + 1.1518954636010612, + 0.6967917191071009, + 0.4349457765548805, + 0.606409820228868, + 0.917579767629923, + 0.2286890330978104, + 1.0235034108405652, + 0.44027342391910174, + 0.8619902721187819, + 0.658863944528838, + 0.9435610145643288, + 0.3840929452240616, + 0.5159274595654814, + 1.0021766264137038, + 0.07807282949253724, + 0.5101645410205605, + 0.9179358726105374, + 0.6718360083745597, + 0.6622315598774383, + 1.0342614377207446, + 0.8115111774577455, + 0.3725972535281749, + 0.5526177375194288, + 0.937570610192706, + 1.0301657704620426, + 0.9825795290480177, + 0.8040462759761533, + 1.151639927386864, + 0.9879087363368562, + 0.7119820117799707, + 0.5758999614997552, + 0.5279470564862688, + 1.0498960087329112, + 1.2961629826971741, + 0.6081069510058175, + 0.4793105513409756, + 0.7114339727670044, + 0.5880857291300209, + 1.2679171360184098, + 0.7078146610437439, + 0.6194464791792171, + 0.8603360627129736, + 0.9923078649688115, + 0.7231252782711344, + 0.232279980633588, + 0.7854318076974182, + 0.7467819043642178, + 0.43814012811126096, + 1.2951119065531487, + 0.9283132644390524, + 0.6894281805407341, + 0.849912409072056, + 0.46943390293801557, + 0.8252728989095693, + 0.9534770180943899, + 0.3582699872323355, + 0.1968747580041872, + 0.3963399641710452, + 0.8535460846121758, + 0.6786678472566422, + 0.8285026960352538, + 1.445841529184734, + 0.6877340313564057, + 0.7516242341336867, + 1.0158138148003648, + 1.1487776376486554, + 0.3548005534505857, + 1.3010093492829486, + 0.4440434791180946, + 0.8145824011103057, + 1.4050528900390502, + 0.8523751400222872, + 1.0452832113785653, + 1.0840292973147332, + 0.9152540281898885, + 0.667562865084326, + 0.8551729719201306, + 0.2549041514362006, + 1.1583684450085252, + 0.8156148332224277, + 1.7025108226029697, + 0.7838551921601521, + 0.34027722721697584, + 1.5928462534428978, + 0.859850961098577, + 0.9156203973142817, + 1.2251928521833562, + 1.0457045580804463, + 1.0767428821449574, + 1.3877088944265252, + 0.6285499257972443, + 0.9797967743276916, + 1.413572803298027, + 1.1788726025515253, + 1.0476036207267865, + 0.911008013281819, + 1.757475715152864, + 1.2688653436903585, + 1.161197588060436, + 0.6481612125062207, + 1.0180665464261012, + 1.3622242942130276, + 0.3934329721788491, + 1.6404850291721957, + 1.5672036924320005, + 1.2879702602699628, + 1.2389233597070284, + 1.509295531205586, + 0.8065537969644081, + 1.158195104101742, + 1.2542265075668597, + 1.197768109551135, + 1.0695800869820973, + 1.279761230050105, + 1.0176043280379248, + 1.565196137411479, + 1.2994715438408615, + 1.233824991094551, + 0.8139745321228669, + 1.664807306232111, + 1.1798351433401482, + 1.376394274183549, + 1.3310631906267292, + 1.7051373020598937, + 1.109375231004341, + 1.199320931951941, + 1.3951806436312297, + 2.111846331567586, + 1.4568362004389548, + 1.4562024550097474, + 1.600997789448691, + 1.2480715879929343, + 1.8452982688991542, + 0.6595805117560818, + 1.828529237790478, + 1.2414309540863573, + 1.0589486037187492, + 1.4185556553852212, + 1.0682350424622207, + 1.1281234040552517, + 1.3249327321060849, + 1.5035366171879552, + 1.7069613011062252, + 1.6688918865817286, + 1.4416862093943026, + 1.4143583200167567, + 1.6808459215908307, + 2.362955931945362, + 1.8091288345605083, + 1.4386539276644998, + 1.8467351733504764, + 1.8246509039529044, + 1.6326166874996315, + 1.7496283257975862, + 1.736794061787745, + 1.512636097178761, + 1.9684436380337442, + 1.4971741808584673, + 1.633342646000374, + 2.0848048767834957, + 1.9407057487896846, + 1.9603304548172944, + 1.2595730383324724, + 1.9749848286714982, + 2.0835618179304842, + 2.16136116394757, + 2.396674769333591, + 1.776844001464893, + 2.6689779144308576, + 1.8025755367889271, + 1.5390553067410773, + 1.5011440154502624, + 1.9233640863968633, + 2.1843786304556665, + 1.921356449621604, + 1.757913580978654, + 1.7894363451415298, + 1.781460892093295, + 1.4959129813306997, + 2.0701781554410266, + 2.226068592165964, + 1.9278652271282775, + 1.5369113794795184, + 1.8111011668356916, + 2.222470556901958, + 2.139470257041999, + 1.6164189419240576, + 1.6687145074038634, + 2.2378632183698346, + 1.7116417671413953, + 2.581081473401505, + 1.6912870213102016, + 2.19915356480589, + 1.8145120501190979, + 2.2224827934842204, + 2.1934899968307766, + 1.8748216855123108, + 1.9125135366869146, + 2.1099573286237123, + 1.5495274998382522, + 2.1373895374383483, + 2.7124236891264037, + 2.03944460656154, + 2.127844673618108, + 2.0734126673322257, + 2.5802985464720964, + 2.023944527086447, + 1.9668847930201558, + 2.4408972607834403, + 2.110423575610406, + 2.3674011208339016, + 2.5016369117559, + 2.2484064491827347, + 2.4856749954607413, + 2.6535308845257926, + 1.8650950827205015, + 1.8957906385745882, + 2.6706586018440275, + 2.0610691128632306, + 2.405173915434883, + 2.2150448200108794, + 2.8216390733256347, + 2.085724389243736, + 2.7407074185367426, + 2.492091555091197, + 2.364713898861276, + 2.344728738452072, + 2.403054498712046, + 2.0626419438198544, + 2.3496265772152274, + 2.388623437547075, + 2.903392257156664, + 2.373829495449215, + 2.3755561023314677, + 2.546958272630732, + 3.03213798753317, + 2.0492176303053147, + 2.2976596458245018, + 2.0842852787985207, + 2.411287043775161, + 2.3864506958076848, + 2.426335488448052, + 3.068502921737378, + 2.612332620130851, + 2.3251872821321125, + 2.6360701144195753, + 2.7783286339486892, + 3.236979378465344, + 2.9187120354098637, + 2.886771777784495, + 2.466932170145473, + 2.8957199889399465, + 3.0263612838136384, + 2.8303711750099616, + 2.9700629370334113, + 2.9386911573582477, + 2.864348286636159, + 3.016347223480987, + 3.292725942925986, + 3.2163067397550176, + 2.9805413503891716, + 3.1152626453233774, + 2.8533424842250015, + 2.879038290264587, + 3.2214848516188006, + 2.8442130595776143, + 3.0495119490459945, + 3.061820978786544, + 2.9390447563776845, + 2.8274692814935025, + 2.901686787204665, + 2.616557643661571, + 2.8320711654317896, + 3.518644921752067, + 3.673194385709446, + 2.631872458620659, + 3.0807590137200083, + 3.0605824908777706, + 2.83730581284352, + 2.9604273362586144, + 2.6231630877589627, + 3.0754899190142537, + 2.6263589539527366, + 3.222618134069149, + 3.2031204227540835, + 3.2080575848649935, + 3.314243880059696, + 3.482472838260574, + 2.979709291542751, + 3.406860015671251, + 2.80604038425675, + 3.075335894221891, + 3.4000072133145696, + 3.4680927981362424, + 3.4552971247945172, + 3.2274589791222006, + 3.0468463722725265, + 3.2675565748379096, + 3.3765471324662446, + 3.899604141909518, + 3.302350724310544, + 3.536834625755951, + 3.0182079454091877, + 3.908570451142525, + 2.8782102239473746, + 3.4716522813882422, + 3.8482934395652464, + 3.049676507533805, + 3.1652136391297634, + 3.273759065080089, + 3.4994346138843238, + 3.4232927371895716, + 3.7730801782461785, + 3.4557912565379327, + 3.8585207999431774, + 3.81961101902272, + 3.5178082223594958, + 3.5264763676030384, + 3.7826005662158146, + 3.8324151977184924, + 3.6393539810288025, + 3.9302353683484372, + 3.1010218361937323, + 3.5070434516710063, + 4.185810872537428, + 3.861620401715545, + 3.4653351536390193, + 3.8843867555384777, + 3.5668925895929675, + 4.001757898445424, + 4.054397290469087, + 3.214825864967648, + 4.315683461896888, + 3.1317095545125526, + 4.008929521147633, + 4.294828469765283, + 3.7257393958088447, + 3.2845382402173255, + 3.6716602224059085, + 3.4141305584481842, + 3.9618798207147714, + 3.960784599830067, + 3.4367287805621003, + 3.5813365241087634, + 3.8688533455827265, + 3.7396615161982014, + 4.052748546054545, + 3.6952288710071866, + 4.038457919132212, + 3.8598893424090686, + 4.526500552703347, + 4.031133275981537, + 3.8235752492782478, + 3.5782037041112287, + 4.13061918776724, + 4.052884806838787, + 3.76394537101781, + 3.7136898033238146, + 4.276279795841003, + 4.414369312737616, + 3.879590205957111, + 4.097988577196074, + 3.995499562311704, + 4.592003835546812, + 4.3108662042377945, + 3.9299657395546235, + 4.616323456997756, + 4.577290684234525, + 4.131694948535221, + 4.821754885949757, + 4.0706789072077845, + 4.401906323046765, + 4.713942293048552, + 4.170530305739418, + 4.403477150317294, + 4.800278886469431, + 4.044952024629995, + 4.357780245603473, + 4.079868229099158, + 4.16682267341828, + 4.70674909760199, + 4.617503842772798, + 4.210104109910699, + 4.209385624764947, + 4.776455114122428, + 4.3607038651424705, + 4.108071588051238, + 4.707394370879131, + 4.260238899806942, + 5.0543185246989495, + 4.868631200438036, + 4.2581855775456905, + 4.117462147138312, + 4.668842331204276, + 4.872197919879755, + 4.7368713047384885, + 4.519924131236014, + 4.266646171932198, + 4.573127129002219, + 4.8831378779226124, + 4.749432956448455, + 4.592700172323813, + 3.9283393622416867, + 4.877867424251407, + 4.984020763722807, + 4.172853336989825, + 4.5994025874648, + 4.374343843003992, + 4.557826780572068, + 4.605277210655614, + 4.636040244506306, + 4.442114875544814, + 4.451165165605253, + 4.684419525411899, + 4.704516527256494, + 4.897089587430089, + 4.756560826592572, + 4.752791565496087, + 4.444623474919204, + 5.0890748115825035, + 4.8558459513219665, + 4.515030492899394, + 4.8684007062095045, + 5.312507607546171, + 5.212873889491329, + 5.133877590129589, + 4.880545409441883, + 5.286720514034098, + 4.7851142783604566, + 4.516332772082099, + 4.831954232987116, + 4.709598827464801, + 5.067034648902533, + 5.021713718961813, + 5.341094355237383, + 4.920999538722411, + 5.171007879380088, + 4.622815831600986, + 5.1120737896665105, + 5.188175618450383, + 4.6505081677778275, + 5.5811849771533675, + 5.271503837106699, + 4.835861663338502, + 5.318711829689747, + 5.122129190814244, + 5.187579279503974, + 5.172759030740407, + 5.138418130112333, + 5.499211941965804, + 5.1501810749705985, + 5.632612467302978, + 5.285200494638009, + 5.317062298922724, + 5.168996822977499, + 5.5830137324431215, + 4.877660877088817, + 4.933284442222804, + 5.1654662836406, + 5.030593253617407, + 5.271821194744798, + 5.315008099854802, + 5.610165208906802, + 5.265107053375328, + 5.118189827300308, + 5.6357105469178945, + 5.252827314143522, + 6.137135818012678, + 5.532224864583799, + 4.958084887280693, + 5.574968410932611, + 5.805423114554617, + 5.2248041507382625, + 5.265628491549379, + 5.721717016004833, + 5.645534315718844, + 6.196204453390809, + 6.21474065372699, + 5.651819214456705, + 5.365786834461414, + 5.687637847987317, + 5.195383630668066, + 5.960890808144622, + 5.917822087633556, + 5.443845851936694, + 5.838028384963314, + 6.098823141964773, + 5.744134789012627, + 5.420550401679713, + 5.949722022572816, + 4.783449431310369, + 6.183045409895895, + 5.938606650855231, + 5.424430927183465, + 5.921402198753067, + 5.658779429228312, + 5.788289422894249, + 5.670021616840269, + 5.171723962596084, + 5.97841302045207, + 6.130886283809247, + 5.665520203504756, + 5.749381996780959, + 5.3614460802250425, + 5.9024543594326815, + 5.998827730646126, + 5.266297149595139, + 5.738337812027898, + 5.562311186264445, + 6.042709201348582, + 5.882803879406109, + 5.759210332717789, + 5.631588127297606, + 5.686409860325428, + 6.254774140489089, + 6.048399371234671, + 5.808300903501794, + 6.028370125676581, + 6.177835756816127, + 6.451472384176004, + 5.895842661981216, + 6.045941951116914, + 6.131516747825073, + 5.808429975560699, + 5.860104724363041, + 6.208970855477891, + 6.196600284660338, + 6.300046182352154, + 5.500955886034095, + 6.331227327062134, + 5.7540216889755165, + 5.848533593287906, + 6.248603553781711, + 6.628485686643952, + 6.58778863724541, + 6.163842663956962, + 5.817205815868233, + 6.677737194768727, + 6.226975542370411, + 6.104182177294253, + 6.234589137863684, + 6.050563049009945, + 6.065720198965242, + 6.299206130155126, + 6.14692587385199, + 6.330632803795906, + 6.274987989067948, + 6.241337377364317, + 5.993714934838111, + 6.078440511685129, + 6.070071826418806, + 6.376160679538131, + 6.309686471927539, + 6.378301166191317, + 6.086910166155768, + 6.047616828575361, + 6.046126357702371, + 6.207773403244741, + 6.533794845577506, + 6.967089970496915, + 6.470393491190828, + 6.049518493725248, + 6.229747446864224, + 6.018193789245224, + 6.083175538914118, + 6.493504541116483, + 6.704558852512693, + 5.965946169360329, + 6.400706330311978, + 6.363161316790862, + 5.8523427217856785, + 6.238020170219747, + 6.465827195559885, + 6.731018682074623, + 6.676141991522012, + 6.882142560545839, + 6.183966699544506, + 6.344035092063282, + 6.135864010842397, + 6.350823889075831, + 6.166523900491253, + 5.9112368072522, + 6.103972213816321, + 6.2641563535478, + 6.887157023964879, + 6.258015496717504, + 5.561995545053194, + 6.373295248080271, + 6.234110496238865, + 6.020298275949853, + 6.201590811206183, + 6.392526497064002, + 7.130955111573034, + 6.557229051920195, + 6.210733362404401, + 6.3623073455687456, + 6.8226162226304385, + 6.269836624261547, + 5.934579637714429, + 6.41162529073723, + 6.30519273722635, + 6.858356607314735, + 6.415411252031407, + 6.0849379316326, + 6.501967814283272, + 6.849163524748939, + 6.420987873950812, + 7.047866345272994, + 6.585421477389179, + 6.390823881761179, + 6.584573003415186, + 6.015719502421901, + 6.6951845726166415, + 5.876725510862854, + 6.740243102712802, + 5.984608322182989, + 6.839248821650616, + 5.937612504120496, + 5.760590752330345, + 6.706345213061108, + 6.9730794447754, + 6.3428494978967604, + 5.997162910077694, + 6.408233314972704, + 6.856405471108816, + 6.494860648985294, + 6.7671710998529075, + 6.135292714152489, + 6.115837237318754, + 6.528444132073508, + 6.465474552177075, + 6.391962420307152, + 6.692546287920312, + 6.658642663805921, + 6.816434597051525, + 6.115318105769418, + 6.625597763313641, + 6.647277883810462, + 6.675105823561689, + 6.695852681073961, + 6.237412621475117, + 6.562919409304123, + 7.042182791093949, + 6.153366462703813, + 6.0531643705595926, + 6.886405774079873, + 6.265225233665998, + 6.488727709737772, + 6.393110485833482, + 6.4120035425083355, + 5.982532234126404, + 6.703303157635009, + 6.309051986718025, + 6.921587480423355, + 6.6907297452076655, + 6.8281184858427215, + 6.907934669888565, + 6.114144711731083, + 6.901111261190172, + 6.146846809782298, + 6.711826574530686, + 6.692230971743713, + 6.1731462983087715, + 6.0436588116910945, + 6.388640908497892, + 7.362004067391652, + 6.705544840957436, + 7.455750483745619, + 6.378190825795362, + 7.2425399582421734, + 6.121328146300952, + 6.559557972673808, + 6.62059379384474, + 6.900194197096769, + 6.485182977418677, + 6.716473818081301, + 6.458968208707081, + 6.33949791639453, + 6.60835756250879, + 6.349513910923211, + 6.902086120427668, + 6.8250830594814795, + 6.442537257248261, + 5.84006598662435, + 6.425966286446558, + 6.543093599743746, + 6.3658388378757245, + 7.170944620292252, + 6.833569147168405, + 6.601876207244954, + 6.287439790050408, + 6.434406098210698, + 6.517427581388925, + 6.342687604718269, + 6.718085587797513, + 6.105259308658581, + 6.765923867341297, + 6.986992607914953, + 6.234705935688109, + 6.91271841498907, + 6.803954949504934, + 6.73723913693413, + 6.826513130162481, + 6.445340175610495, + 5.916127574518188, + 6.5696705359617145, + 7.065318611093775, + 6.8249049846585255, + 6.431266355735919, + 6.697931631010519, + 5.940384712300543, + 6.2003958271455595, + 6.353850802500109, + 6.606742530997682, + 6.691353781520412, + 6.370139346576771, + 7.2378613312007305, + 6.259905258056358, + 6.752518014111206, + 6.337384644120788, + 6.276387171118054, + 6.218215285370497, + 6.8605697776975125, + 6.148395410165699, + 7.059000640886207, + 6.600073743179757, + 6.855358480688512, + 6.053696423534854, + 6.781829031923801, + 6.174142190766913, + 6.371254938707941, + 6.575331357242347, + 5.970124484281353, + 6.098436934936974, + 6.5002459442871965, + 6.530223795314573, + 6.652316655731863, + 6.4602045949344475, + 6.538879341490354, + 5.8044484813473405, + 6.686918380007278, + 6.737166314238237, + 5.997586653084397, + 7.169198908155056, + 7.014542827421957, + 6.223992340727585, + 6.339349823668389, + 6.248298115102134, + 6.373716604578284, + 6.59125186975343, + 6.356212395069375, + 6.475225538167706, + 6.222685809391256, + 6.217586779345146, + 6.501664313401722, + 6.528983666834603, + 6.094960130097792, + 6.331206094663457, + 6.142790896573125, + 7.0044870809265785, + 6.089612383999463, + 6.450828664022883, + 6.408736013517275, + 5.948851028030382, + 6.5259178540641845, + 6.319099339839867, + 7.051060274406108, + 6.282191181322108, + 6.5456941718737935, + 6.186933904159955, + 6.297775192164405, + 5.946500151725428, + 5.930014723940704, + 6.494146564918024, + 6.577591846012578, + 6.523105306945578, + 6.374238929041319, + 6.42150745850798, + 5.878064868437668, + 6.876373606306165, + 6.081535365504162, + 6.4797393700198365, + 6.3836418861298565, + 6.143366981451882, + 6.112940406173569, + 6.589608787812591, + 6.246592447382644, + 5.7764864960341855, + 6.58082831983494, + 6.020418513790222, + 6.179920736790726, + 6.102728476813705, + 6.506259388415595, + 6.193889163571773, + 5.6535319260029, + 6.148819889631647, + 6.043291755872243, + 6.399575621371605, + 5.583104540072477, + 6.463213744524859, + 5.797978922174024, + 5.479445798256591, + 6.3358392558049745, + 5.89372812445331, + 6.23067291391901, + 5.786405183384262, + 6.5014229008047675, + 6.6271345812582325, + 5.6202957645168405, + 6.351954176224743, + 5.633011065533269, + 5.852466760311176, + 6.288241656995852, + 5.802194828052532, + 5.6407057306464345, + 5.530000572301425, + 5.7041804651015084, + 5.743875813620217, + 6.45782518032037, + 6.736709924854054, + 5.760665100127236, + 6.05693393612286, + 6.415546841628733, + 5.73477459768065, + 6.49632032540616, + 6.278540696080534, + 5.805215827696985, + 5.756127706649768, + 6.072165959258553, + 5.617099749465221, + 6.604194708718527, + 6.121446153708493, + 5.945662254660134, + 5.940507607711468, + 6.3624397359840215, + 5.586039107067739, + 5.21258381665643, + 5.503637231705381, + 5.63131971667743, + 5.529525519565368, + 6.734844687875069, + 6.205642112815846, + 5.6738288641199945, + 5.474295978552324, + 5.327092392422395, + 5.42575560082826, + 5.984211285328886, + 5.883824990268131, + 5.681424848982294, + 5.927835869441956, + 5.639048193228319, + 5.663751305737817, + 5.856827372274902, + 6.34894406949488, + 5.840321936575525, + 5.545282814946811, + 5.54448246059078, + 5.801876847988183, + 6.253890329618946, + 5.3385324864035315, + 5.679447052898034, + 5.959968208754059, + 5.100379864590935, + 5.592498136899988, + 5.236208677349796, + 4.774472785527278, + 5.72613381943912, + 5.4323735911179, + 5.690917484862756, + 5.579661134263371, + 5.515568222212334, + 5.393378217551935, + 5.197962555189245, + 5.605994204644584, + 5.066716565621643, + 5.746247798693552, + 5.93616427960869, + 5.169825401157511, + 5.391446396417884, + 5.65484198144506, + 5.618823251155203, + 5.121541393532137, + 5.021541538363723, + 5.234029733382521, + 5.599988283603803, + 5.665881521888016, + 5.66658551518382, + 5.740778125624369, + 4.9721817632961285, + 5.6478776434727305, + 5.39996354043723, + 5.4906451008049775, + 5.515538603282369, + 5.679648431002925, + 5.663794497539239, + 5.521999360805471, + 5.737671597975636, + 5.645410771014264, + 5.764037126892246, + 5.195170664982369, + 5.389616955729678, + 5.585426291333301, + 5.59354341772978, + 5.057302655606891, + 5.239999201243068, + 5.517307596588044, + 4.994795110038195, + 5.2961169420553755, + 4.9826141406558255, + 4.929259908989148, + 5.142045092737652, + 5.339901445586531, + 5.400658663050789, + 4.803058810257705, + 5.277118025734887, + 4.99299879068353, + 4.957183972306224, + 5.4973217600600925, + 5.427057090101893, + 5.236850832721418, + 4.74739463046287, + 5.041529574116574, + 5.320915149106477, + 4.776184056818953, + 4.9464100680086185, + 4.879026392334219, + 5.195026079328167, + 5.0877831971534855, + 4.192857693326457, + 4.706269077308307, + 4.951919442419018, + 5.00383520384536, + 5.097877067834717, + 4.514450591496145, + 4.992957021887798, + 4.942567944541042, + 4.954739352627003, + 4.511411151756455, + 4.404529839208123, + 4.6348692447942605, + 4.986103545858941, + 4.371006114002337, + 4.602762535263272, + 4.3503663955060095, + 4.612841478668992, + 4.783041627499546, + 5.040214877131083, + 4.696904611191166, + 4.810856903590281, + 4.370405213904824, + 5.176279962600277, + 4.4368257153344315, + 4.457959047980761, + 4.3959307710431474, + 4.59744733981643, + 4.227475516002657, + 4.345963736529478, + 4.701096011705474, + 4.504137142079552, + 4.248209181630468, + 4.818067573992655, + 4.889619989829191, + 4.493958531891853, + 4.042352613560356, + 4.611530361092014, + 4.614869214272492, + 4.6746158877080095, + 4.029140440704498, + 3.9015031245387344, + 4.336874060420815, + 3.9876200848510646, + 4.362596504697752, + 4.375862906745861, + 4.525079395787395, + 4.570670958007541, + 4.514807342232384, + 4.336817282644312, + 4.155826059818723, + 4.156778578787422, + 3.9428349485558973, + 4.604932672439385, + 4.244538664996639, + 4.082833904071449, + 4.102705389135241, + 4.648014946652663, + 4.125513225534522, + 4.436609330581248, + 3.89559144772036, + 4.192283855252137, + 4.289166651768541, + 3.915964683134723, + 4.097135139968254, + 4.239667030466281, + 4.485820344262259, + 3.7534337746716853, + 4.186411185077205, + 4.352258843908546, + 4.136372766692334, + 4.091759685419263, + 4.590366402079236, + 4.183078634500868, + 3.634970001811205, + 3.709473457776614, + 3.769674808262981, + 3.8927190951665436, + 4.121532583291086, + 4.184591624195809, + 4.071055018335702, + 4.187115927997468, + 3.7149911786069394, + 4.271453400224565, + 4.117124547593682, + 4.239994661728996, + 4.2025665811621105, + 4.216478452119567, + 4.150614603810329, + 3.379085265584781, + 4.105565165196022, + 3.785861758307982, + 3.762389257957385, + 3.69580731620567, + 3.653150595591118, + 3.5046354223353697, + 4.079714488803367, + 3.707480185653279, + 4.051899470735979, + 3.8052414902134886, + 3.174546691430108, + 3.9752359502791474, + 3.16134704806327, + 3.520813386197667, + 3.6733877857710286, + 3.3683801042553663, + 2.9969840134246235, + 3.798536842261898, + 4.084577849290188, + 3.92792536385402, + 3.551072146168038, + 4.0073030979431605, + 3.2998960321062363, + 3.462567088878463, + 3.367677833871085, + 3.022228230918231, + 3.6697750064279546, + 3.9172855365760695, + 3.7399673489060232, + 3.763386766053601, + 3.2058109502212475, + 3.4274514156699967, + 3.261923468349379, + 3.2538379680497895, + 2.7153615719844546, + 3.564077794836023, + 2.910617859102709, + 3.4864343301324525, + 3.5566233918232038, + 3.032228106349717, + 2.9082360719486102, + 3.601097906223524, + 3.619192462360746, + 3.185985472978406, + 3.213504768370566, + 3.5403324847770987, + 3.4949891898560086, + 3.333458059297269, + 3.3131668978790425, + 2.9313324089385677, + 3.7410787854036576, + 2.8961526629394125, + 3.5072627351101495, + 3.211483056496667, + 3.273491287912638, + 2.557994420034709, + 2.3027999473937135, + 2.7692736294767633, + 3.4711630817530996, + 3.2842039404124193, + 2.890619818792459, + 3.05125056755471, + 3.1546461106988497, + 2.2585834387388304, + 2.5991706046347662, + 2.5049305366922696, + 3.171329841568671, + 3.075312236268645, + 2.475812920384735, + 2.858103975981826, + 2.4706961062818635, + 2.5647207853960565, + 2.8286788244226106, + 2.5569394870952067, + 2.8773290333544073, + 2.6140960549402026, + 2.9286001283588803, + 2.652444815180213, + 2.579120207759657, + 2.322563420277499, + 3.0844921410371504, + 2.6876332938196166, + 3.183794803087746, + 3.1383052368289492, + 2.9350025790655336, + 2.487984727368519, + 2.9611903001877544, + 2.6658826333089163, + 2.9550887261945653, + 2.485742688385072, + 2.649839126948672, + 2.717294246473272, + 2.5344108203015585, + 2.814654845468021, + 2.1775980994091286, + 2.729193244101531, + 2.9745849073117543, + 2.666134432518904, + 2.411806786961354, + 2.605553066246327, + 3.1258317342322086, + 2.59945482277023, + 2.43733198501245, + 2.6654200053028565, + 2.130999593333851, + 2.3984434475454672, + 2.7660034718480104, + 2.215774431128284, + 2.343452069950993, + 1.979986652083695, + 2.3592922902863385, + 2.324729991631076, + 2.7034748642357207, + 2.5011601066184483, + 2.5706289168779617, + 2.6104831476437367, + 1.879353525321352, + 2.362110316956667, + 2.9856760765343626, + 1.8471841247184968, + 2.3095694457255296, + 2.2558647011614945, + 2.46543320774619, + 1.980914250281109, + 2.9111688168599743, + 2.8910983185819323, + 1.74615140863978, + 2.367850730693487, + 2.0010208976124075, + 1.9992667749876216, + 2.118574986862154, + 2.217412817142814, + 2.4508630307897676, + 1.7599527439850031, + 2.110681383093256, + 2.061684629642254, + 1.8773551202013028, + 2.572150858587375, + 2.001913817099112, + 2.3921910227217476, + 2.106449435465978, + 1.670685448670141, + 1.9861624784166911, + 1.6921203252624217, + 2.2858416315048404, + 1.8039449345369591, + 2.09205019513253, + 2.1043800611011454, + 1.913466552462622, + 1.9952772767328293, + 1.8975983625857993, + 2.225991763890161, + 1.349649199196549, + 1.9759436308114577, + 1.7437734922451487, + 2.399780686734516, + 1.8444445906011013, + 1.508019098073468, + 2.1712638238956163, + 2.335829781724286, + 1.4101718427972825, + 1.7613218667553188, + 1.672080052003953, + 1.9478931927760843, + 1.5017083918686733, + 1.4650747894111902, + 1.8093772827294825, + 1.8825033991797246, + 1.754909523090633, + 1.6322279214895967, + 1.56928409498514, + 1.6073694497447255, + 1.5612291123261273, + 1.8880239887611678, + 2.1344010364365067, + 1.8936034163010884, + 1.419672986956254, + 1.862108985450368, + 1.2531882468218867, + 2.0074375809032707, + 1.957403984127429, + 1.9573515665857806, + 1.3064918602871511, + 1.934295562199972, + 1.5458355139107123, + 1.9674142026370975, + 1.436200863852931, + 1.5469422420800902, + 2.01490476975193, + 2.2839649677540046, + 1.5050874645956331, + 1.6346626885793114, + 1.8243442928506715, + 1.7430113526549407, + 1.3541395183303169, + 1.6861522328809582, + 1.7425773097074768, + 1.2545103178576156, + 1.101182988266956, + 1.5365668316667631, + 1.324736956249236, + 1.1168975469729718, + 1.2188475576055389, + 1.4716047479255867, + 1.6187395463818481, + 1.9019009206224047, + 1.2760418834662701, + 1.4927006598237416, + 1.5481904841713332, + 1.1411420328106958, + 1.4784679742290694, + 1.4017244081258278, + 1.5254957214698506, + 0.9792842764585368, + 0.7384514676126989, + 1.2992641608921127, + 1.5069437737972673, + 1.2297283284078433, + 1.2491384959934937, + 1.1829738812188324, + 1.143403452881593, + 1.2644081386103025, + 1.5722265653691418, + 0.7342860749622128, + 1.1907207017895685, + 1.3425504585467243, + 0.9879995678537792, + 1.2612022046182934, + 0.6320358413186824, + 0.9801524650542714, + 1.453295245050847, + 1.3711321668652265, + 0.8374433357184268, + 1.1237725022817397, + 1.0547900208217083, + 1.0957676310398317, + 0.9040003498490745, + 1.0269693380467044, + 1.8099619265693143, + 0.8261108033065808, + 1.7269735517657918, + 1.213724919791332, + 1.1134474037429933, + 1.0882058321961956, + 0.6976302835180599, + 1.2557697545818072, + 0.6477006352645636, + 0.7259934139414714, + 1.0730693599200702, + 1.0914297686259873, + 1.1815749384671055, + 0.7269855478412488, + 0.3404530378456697, + 0.9140421139573622, + 0.8585378834520196, + 0.663666167467815, + 0.9160896711792159, + 1.3394956697374902, + 1.2046731056846913, + 1.1120334462606238, + 1.1932948272511599, + 1.7411180468556258, + 0.7320024774380052, + 0.7087036188501541, + 1.076349560590292, + 0.6313609259916555, + 0.8214008865751186, + 0.7473070706210733, + 0.7072358797938151, + 0.8384028080987811, + 1.2941286118459812, + 0.448290570743434, + 0.9387982065136574, + 0.9750220447619112, + 0.9696909760287444, + 0.8382333381318732, + 0.6558293473350897, + 1.0571601332737761, + 0.7935730710515939, + 0.579357042265813, + 1.010576640890175, + 0.5685221043004803, + 1.0262175418840818, + 0.779559447729385, + 0.7835087422268232, + 1.1742489002926126, + 0.9600748050075305, + 1.0583898267213123, + 0.5955640911061091, + 0.7019897717023635, + 1.1173917348008588, + 0.9043745880586037, + 0.7305910911621315, + 1.2614383363360915, + 0.700994555810935, + 0.570560605241638, + 0.7409363062964618, + 0.3650882835791877, + 0.23013663530749595, + 0.8507237397787099, + 0.3836442045082741, + 0.6935164834823582, + 1.2698805193195093, + 0.7663290991731234, + 1.025986373649148, + 0.4144869520810715, + 0.4583757698207265, + 0.8093053969674306, + 0.7029958944483164, + 0.5361462089415588, + 1.3074728332251042, + 0.48660932455439115, + 0.1984935592919702, + 0.623319431662568, + 0.21256560979573624, + 0.34181463603809514, + 0.9707459341087685, + 0.5702941949823933, + 0.5233304162018668, + 0.44212786487981093, + 0.783827548266258, + 0.7883923705908251, + 0.44737894702945535, + 0.4881629894399129, + 0.6618199804683074, + 0.8251123289079454, + 1.1461447399631695, + 0.7809748432974342, + 0.8971041097087314, + 0.9401642081336941, + 0.8277232177846205, + 1.1420407297612418, + 0.6749482708149733, + 0.5844521681679691, + 0.46353584955491356, + 0.7231412660196845, + 0.736626328921604, + 0.9218399113158445, + 0.8847682684939332, + 0.4909853823118703, + 0.07621662504973892, + 0.3030091807915974, + 0.6943798043366003, + 0.30140989631751736, + 1.069180256067571, + 0.07170399776647662, + 0.37226579288316514, + 0.7926110333480514, + 0.588684315051596, + 0.3424444476800994, + 1.1381983691558735, + 1.3094396486547435, + 0.5666119298881135, + 0.4549363115118912, + 0.6317431143048245, + 0.9042711671748209, + 0.8354445314593323, + 0.9371220050910547, + 0.5359844545463907, + 0.30935691860680076, + 0.8198363422246916, + 0.09847124109701644, + 0.6271232845466279, + 0.8710706764188824, + 0.6063500821934584, + 0.305266001937836, + 0.5476136295905546, + 0.4592665884371604, + 0.20297273161954593, + 0.4755703632898538, + 0.2983678499469084, + 0.9785540852646392, + 0.010631931900351943, + 0.8790886642556537, + 0.7522146174950515, + 0.21950756959303075, + 0.3135776900406242, + 0.8016014574842394, + 0.8653183961445301, + 0.37962468696062224, + 0.2427368859121703, + 0.3619593898417545, + 0.3077079531329671, + 0.5790698295452253, + 0.8542564957931462, + 0.6309470148739984, + 0.454243607350186, + 0.3011033427390264, + 0.13804127319200282, + 0.42647622715759037, + 0.775214628769967, + 0.39833534542729454, + 0.6198583329576195, + 0.40323276891795523, + 0.19883421283991048, + 0.44793614589905895, + 0.07075879543384422, + 0.1667378644214506, + 0.6877498013968786, + 0.5415635742230105, + 1.110745497588896, + 0.8511814634632807, + 0.7953516911530247, + 0.7558445099598194, + 0.7319940633303557, + 1.2118998041984992, + 0.1963441321174541, + 0.9379717494662589, + 0.15122507542397096, + 0.4453888350001632, + 1.2579763914821323, + 0.48334646636110085, + 0.6389530804120083, + 0.49930379983884443, + 0.054251604473929405, + 0.2953648299273561, + 0.8953114432185949, + 0.7173243819119348, + 0.3755231291379272, + 0.7937718840480967, + 1.2834990961982142, + 0.7783700849707005, + 0.9189896587494519, + 0.5199986932418836, + 0.7198112637653712, + 0.48540405537592, + 1.0680269699396465, + 0.3314010156740089, + 0.8175181527134229, + 0.9127801242437108, + 0.8915080178102728, + 0.5988683558084194, + 0.618231224208587, + 1.1466498106793885, + 1.288713606913634, + 0.675891505397272, + 0.8359888577199129, + 0.33260483885586895, + 0.5531372048868454, + 0.6500563239034467, + 0.5435421732766843, + 1.2819612647313061, + 0.2916036988510035, + 1.1024131017940157, + 0.2680064563444542, + 0.27787056238334146, + 1.1135506582483945, + 0.6565743943653204, + 1.2377181312050967, + 0.3637650969237164, + 0.3810417675429542, + 0.8608221334938375, + 0.7911493670140748, + 1.0462797955181926, + 0.7283204722137838, + 0.26461603338116146, + 0.3691591019702268, + 0.8294278848295416, + 0.7947648255494677, + 0.5085322862226005, + 1.086933668923903, + 0.949777161643667, + 1.115214425442846, + 0.45335573917106053, + 0.7406840905457416, + 0.7020759675088545, + 1.287520680695963, + 1.0840505871020227, + 0.6790929387461418, + 0.6627209955311142, + 1.1522805978130253, + 0.5805586058843253, + 0.8829282455601944, + 0.7115083639291038, + 0.6381751700824954, + 1.1664607666275995, + 1.0682007644514395, + 1.658930056746391, + 0.27764192008781086, + 1.1404464734976152, + 0.8718824197490447, + 1.5396546529427524, + 1.088532898145031, + 1.0998518926584642, + 0.7371568380620374, + 0.7037183698915512, + 1.1305476142339772, + 0.591374766824107, + 0.8193755791705063, + 0.6744107827678092, + 1.4433212758585021, + 0.7745241452700717, + 1.2399409286659124, + 1.3378566237087912, + 1.183727661631711, + 0.8666363460097438, + 0.8609717048401645, + 1.2596766257637344, + 1.0134921607654723, + 0.9996232384869063, + 0.4495323535874254, + 1.4282307674211574, + 0.9735577083308025, + 0.7535229150580007, + 1.0623622269048596, + 1.081810879277627, + 0.715316900305246, + 0.8985696308097775, + 0.6906545707439828, + 0.9506276014864823, + 1.3006411894003758, + 1.2347331642213588, + 0.9985007769440435, + 0.7983830308613581, + 1.3407895061540769, + 0.93842934166659, + 0.8134639309398741, + 1.24833987771656, + 0.9141895578319545, + 1.612222687167825, + 1.8677688349452315, + 0.9414635208246642, + 0.9822797481042238, + 0.7626713720794184, + 1.2955708999829703, + 1.0639595247618407, + 0.8641410783213539, + 0.8557598168966021, + 1.0767846068660316, + 1.3377812534794131, + 0.5627460862842141, + 1.3987082839064853, + 0.741026397864203, + 1.4819168208668962, + 1.3783305170099338, + 1.772722936369406, + 1.3815298396370705, + 1.008540591545148, + 0.5487703442855069, + 1.059457542797687, + 1.1346853301924507, + 0.9745381263778925, + 1.4270846634994783, + 1.260393857646217, + 0.803877895229617, + 1.3688827640236054, + 0.8255444988813277, + 1.5435170336182211, + 1.156899814657479, + 1.397177062610952, + 1.1427919526576993, + 1.1584262139521844, + 0.8501289443868105, + 1.409909236464112, + 2.111391994134639, + 1.433416717774412, + 1.2337220543020995, + 1.6846023617524744, + 1.4505679834309237, + 1.6748844336653133, + 1.9602391231526632, + 1.922428886984911, + 1.4626000414166034, + 1.5940489746085909, + 1.350120217958892, + 1.2874855586861618, + 1.8707773343864078, + 1.441606620804415, + 1.7365912304203461, + 1.6163802884408918, + 2.1164239691448206, + 1.787634289084712, + 1.9539736066838367, + 1.6963119662934585, + 1.9315426063220067, + 1.9276750136435503, + 1.8743229920160103, + 1.3759305500584023, + 1.8688241285517981, + 1.9025977878185525, + 2.057676287254483, + 1.8123009867536675, + 1.3170677096918069, + 1.5817329233029436, + 1.8338492279520957, + 1.5920643438261313, + 1.76698030727919, + 1.7876964213469082, + 1.5704536981195112, + 2.089277862663809, + 1.7249222253785097, + 2.0203307222747395, + 1.7985579988501867, + 1.3204815149715903, + 1.83898525235497, + 1.6263984321194311, + 1.7688423787311178, + 1.8208782261253835, + 1.7368457639168478, + 1.9828951584440746, + 2.2774805316927025, + 1.7832386768777542, + 1.5778997856331896, + 2.299811422770314, + 1.950545194021801, + 2.2617183730491583, + 2.127762373857021, + 1.8183871167702543, + 2.215945232204863, + 1.9693757007482082, + 1.518508630828342, + 2.498164805092021, + 2.0148152711444016, + 2.2228623932091187, + 2.0093143337046837, + 2.320125105682245, + 2.025379261943267, + 2.0709979605169195, + 2.6838587695264806, + 2.4840430060855336, + 1.9713963240667733, + 1.6570799466178805, + 2.072402395672427, + 1.975536996972365, + 1.75798230415886, + 2.6876936989762346, + 1.8969417790922942, + 1.9966702267835148, + 2.4780647535347535, + 2.1108442871958686, + 1.7759057067637485, + 2.258393299552729, + 2.4348348996949283, + 2.6921571423730772, + 2.6169781659566174, + 2.6387200659890007, + 2.318767989648972, + 2.340810999449844, + 2.520690043393749, + 2.5204128746369956, + 2.0182987383814015, + 2.326833373452306, + 3.0496800190642452, + 2.9110832901295947, + 2.1760927641899723, + 2.5975568894652366, + 2.670217497041559, + 2.1505008830565324, + 1.7971701084119056, + 2.4061920371484624, + 2.523918844268376, + 2.3634031886623514, + 2.522158263923395, + 2.7106516296170255, + 2.314387461333358, + 2.938517189367089, + 2.6256894683068506, + 2.428627667914759, + 2.39886512860888, + 2.7589394793817674, + 2.6025711355409036, + 2.5183907503530873, + 2.3585084964570244, + 2.987986260520658, + 2.683262905921023, + 1.9244676606524593, + 2.8970863752717704, + 2.4635217764584594, + 2.6881107353103855, + 2.701323331340856, + 2.7183022458674886, + 2.494300198858734, + 2.763197802842687, + 2.558825690527757, + 2.873462845771823, + 2.561745442797616, + 2.8459866538062935, + 2.8755562295365995, + 2.611997149847851, + 3.0063005761160166, + 2.085711665145956, + 3.092234538960057, + 2.7811742582035537, + 2.9212627793478347, + 2.864633378277473, + 2.8096449154132084, + 2.973972158779502, + 2.7428332022322492, + 2.787236181075792, + 2.8858905846730374, + 2.4697125748914805, + 2.835299091164753, + 2.8744492766493344, + 3.209110035469579, + 2.8251363581770286, + 3.531848040551557, + 3.277031104353467, + 3.1725697513275266, + 3.070960949065045, + 2.893518856119622, + 3.190326680856253, + 3.030016382222221, + 3.092103375278079, + 3.1276823044101927, + 3.51018416821438, + 3.212388867098952, + 3.5465000379838427, + 3.0837559919499813, + 3.7768666163017017, + 2.988182085799359, + 2.973090442869805, + 3.6851638400843054, + 3.2726810823217023, + 2.7373714943809886, + 3.591759459852585, + 2.901482852207548, + 3.6285944473659097, + 3.287584166669898, + 3.259667527114791, + 2.9640434090737022, + 3.68934383750431, + 3.719989573003714, + 3.6545337014716544, + 3.2652825824306433, + 3.7789746154270807, + 3.6235094232659137, + 3.1325265127778996, + 4.1309783959687465, + 3.7101402593329134, + 3.7192274470433624, + 3.600964787007401, + 3.525705212606164, + 3.417167841721735, + 3.7390304906370173, + 3.2659611396503174, + 3.2430746335900187, + 3.440805656336036, + 3.425926708721275, + 3.7183321086387897, + 3.4901640372349814, + 3.3056763943688363, + 3.3680190912068797, + 3.9707619055926617, + 4.201227939946229, + 4.006887222356504, + 3.645095228529532, + 3.7065721173084842, + 4.260312090384818, + 3.68147113688221, + 3.548973250871595, + 3.6239351938504787, + 4.045705368469945, + 3.620863560589691, + 3.415369872534263, + 3.247392075155067, + 3.775548786959055, + 4.183026920343142, + 3.5645766671699626, + 3.5417464379997763, + 4.058877438012326, + 3.1371756496643264, + 3.6092061319249154, + 3.484535929667821, + 3.5381972869020246, + 3.4819216682724607, + 4.209753623216552, + 4.048056903549322, + 3.51116160703321, + 4.819235268466387, + 3.71220434768396, + 4.043363315334101, + 4.184885183440271, + 3.554078684052659, + 3.8818542281087125, + 4.328078621613264, + 3.858802624688751, + 4.096317762393378, + 3.891354260400171, + 3.9948698759263594, + 3.9732527599284064, + 3.790554550184072, + 4.1449730301112, + 4.247950160303628, + 3.506736007539181, + 4.322817156493009, + 4.172866434278423, + 4.889907258261941, + 4.302973793631155, + 4.647719828264867, + 4.441905732284646, + 4.493557819226052, + 4.312353823638489, + 4.685399595308065, + 4.605338010344951, + 4.43153709798161, + 4.588554219989194, + 3.8648094407715776, + 4.010416477721181, + 4.502512967733302, + 3.9812073632864062, + 4.622303896229878, + 3.8281812953317087, + 4.64400899903706, + 5.013067797067544, + 3.64750321761224, + 4.692010508164395, + 4.341726954917986, + 4.04096773073491, + 4.692345556180604, + 4.741141543859657, + 4.37431165779084, + 4.939231110346035, + 4.508202730888495, + 4.642555119823668, + 4.421232141949095, + 4.652031588431317, + 4.990816993925446, + 4.826432908816428, + 4.544954463756017, + 4.6786669887102335, + 4.8184848033986825, + 4.418050502074438, + 4.409956697785957, + 5.237053484216104, + 4.36273932626968, + 4.545907270687096, + 4.802286474815308, + 4.857384461282588, + 4.968388667737398, + 4.2122559472095755, + 4.872713052231575, + 4.8984280671013085, + 5.028428373169652, + 4.823125203614541, + 4.8845603915785265, + 4.723735335926701, + 3.9759444712535035, + 4.324128779424377, + 5.044962229823934, + 4.8353746925569, + 4.5245003527051635, + 5.100254754021874, + 5.082645220359774, + 5.3514806418419285, + 5.74406201724953, + 5.379840450783524, + 4.618316915133971, + 4.705999352209367, + 5.285115410901613, + 4.535444668901826, + 5.230311956627024, + 5.220406511438258, + 5.157600092187345, + 4.703665246237295, + 4.437249885091705, + 5.0758823115388, + 5.189736751242307, + 5.211643825532339, + 4.9479994872826705, + 5.197409882649502, + 4.9792679626866585, + 4.903018906170426, + 5.676836869858905, + 5.011861796843777, + 4.803005063443867, + 4.8509759810937, + 5.159677586018033, + 5.085990278430781, + 4.946820706541753, + 5.620041834298994, + 5.612945777183362, + 4.944943798077868, + 5.391340262881121, + 5.357029209275527, + 5.123382726173042, + 5.166954093923538, + 4.968078696853028, + 5.462142419632623, + 5.361215308810544, + 6.04070513390838, + 5.469500762720069, + 5.174795009949921, + 5.157003713209171, + 5.316812668357701, + 4.754351940481175, + 5.708880079466854, + 5.3291190773481825, + 5.415828968304021, + 5.524728673879958, + 5.437993590061599, + 6.176490895105068, + 5.2876470171693795, + 5.399505916714407, + 5.262460771412618, + 5.163140930597239, + 5.177127456933588, + 5.624516005992724, + 6.168772267558367, + 5.289961239043525, + 5.179398661180294, + 5.86167578011126, + 5.372585654569823, + 5.510389075422352, + 5.757020991760161, + 5.578698720075913, + 5.816829089743504, + 6.156366410825152, + 5.617262454006595, + 5.623465461153616, + 5.785922331976653, + 5.5092188323539135, + 5.944999093398328, + 5.500872945026573, + 5.5491941671798175, + 5.738111874726121, + 5.404175061958931, + 5.9985245405058, + 5.370543176838734, + 5.70467897983043, + 6.334600880893998, + 5.754210527465724, + 6.271341717670742, + 5.670097069199262, + 5.519244253966529, + 5.621406301415806, + 5.692647789045572, + 6.007350496959694, + 5.913728632332708, + 5.00483738092986, + 5.688368877483628, + 6.041400350493132, + 5.6601990540267675, + 5.673708965718966, + 6.095942676685039, + 6.108204527405251, + 5.729952471511547, + 5.68538164923704, + 6.158040109189963, + 5.991194955145335, + 5.935550622006731, + 6.053172241149881, + 6.223858383706606, + 6.0681871788468325, + 6.040093406563342, + 5.902040466140238, + 5.6176045050471775, + 5.915477302640766, + 6.038544892693811, + 5.746539696746555, + 6.056110037404592, + 6.194958247488527, + 6.180502941678635, + 6.009670287834926, + 5.915354545915819, + 5.854549622781834, + 6.297943172944744, + 6.368615996641928, + 6.152723583310369, + 5.375131993993796, + 5.686574070805039, + 5.394177804666721, + 6.033869162353943, + 6.029488144026183, + 5.675407007618631, + 5.314095862298454, + 6.726091141083643, + 6.173192818938982, + 6.4819292508273625, + 5.5643178154887325, + 6.10866125125172, + 6.147851730337408, + 6.384222399109632, + 6.498268689397625, + 6.488206415692942, + 6.115547386597018, + 6.137061386796043, + 5.887549994002892, + 6.223790788845357, + 6.351637064553032, + 6.005656079029779, + 5.984876271365998, + 5.982555227432624, + 7.282366388392156, + 5.633128024974051, + 6.442212142928696, + 6.147778525272167, + 6.203346374284015, + 6.353965629794929, + 6.398488572398358, + 6.447085112061908, + 6.029140550902261, + 6.828272565260868, + 6.638442429665859, + 6.585649861219026, + 6.301563910824365, + 6.3742146917561575, + 6.032199853354721, + 6.414343460969302, + 6.7865753442204, + 6.711531069872074, + 5.925362789305506, + 6.453351181379815, + 5.953032852674911, + 5.991560986185447, + 6.9300132781505175, + 6.960995541569057, + 6.44416048715445, + 6.247789378077077, + 6.532018481138195, + 6.936272659689717, + 6.473972434341493, + 6.503719587186062, + 6.03828694028736, + 6.66780449545069, + 6.031107355893125, + 6.483225594435513, + 6.550510536302027, + 6.18305858652694, + 6.5683172526952625, + 6.492488038391789, + 6.145619103714768, + 6.915876529134542, + 6.436190976820423, + 6.2573457125096805, + 6.384830016280494, + 6.268666370690715, + 6.3302707351048815, + 6.640271790233083, + 6.024106990066033, + 6.604580083779666, + 6.248827803733532, + 6.402959036966382, + 6.685275460468429, + 6.3016693714945475, + 6.678871091484685, + 6.917079899007619, + 5.965961294432321, + 6.305079555778617, + 6.840966342413548, + 6.331013580561008, + 6.71856796467655, + 6.361408079430904, + 6.729204586212136, + 6.372376195219379, + 6.693768215479654, + 6.467846656997952, + 6.150662391448023, + 6.60729769227327, + 6.794127562323853, + 6.490288124024922, + 6.980421692511126, + 6.60006130648712, + 6.476196307911209, + 6.757625841091653, + 6.673989286442976, + 6.056594840412718, + 6.040255878818085, + 6.551010639794396, + 6.853285065825894, + 6.080730960955371, + 6.507611487759797, + 6.667266087533185, + 6.447417450329423, + 6.2688921736738745, + 6.47799879565815, + 6.241321373051157, + 6.55151883907273, + 6.1328975168460165, + 6.365239694866213, + 6.430570072565098, + 6.4022467063117015, + 6.68441168694739, + 6.680148116956529, + 6.878709623835346, + 6.793733044252686, + 6.539622158308094, + 6.734165199125831, + 6.696296382919442, + 6.484213791810034, + 6.871387627436323, + 6.296207655937692, + 6.7494433145943304, + 6.452294132406419, + 6.763985126388829, + 6.889161134207095, + 6.282305616451877, + 6.753964364226783, + 6.110744573580292, + 7.052080455857123, + 6.854928917177811, + 7.126865017993783, + 6.960537960341151, + 6.703168028850235, + 6.021176164291752, + 6.525320360505941, + 6.485332156219112, + 7.523158053121979, + 6.319226817505502, + 6.706963440075356, + 6.977789351414087, + 6.468844675694773, + 6.237576149773299, + 6.4162651642898885, + 6.639079176135568, + 6.877122758398283, + 6.829661496185474, + 6.65826211120015, + 6.283068968328683, + 7.143725864012085, + 6.391705128990617, + 6.890822862596619, + 6.682164988102968, + 6.594739255592558, + 6.538956380650263, + 6.6110960884242305, + 6.981649069974712, + 6.860999300834106, + 6.549404498565191, + 6.917805107523553, + 6.775623212766505, + 6.6523076650732476, + 6.657784996630822, + 6.389708237663088, + 6.7575677759704424, + 6.452288746819735, + 6.552578534118684, + 6.550729206728094, + 6.745156466297142, + 6.40671110596279, + 6.136692215936107, + 6.42131481440881, + 6.745922848430134, + 6.588394804559373, + 7.111653930289491, + 6.183408842738283, + 6.538888711188004, + 6.760687735815917, + 7.009171004997915, + 6.582613989756239, + 6.983257668633215, + 6.466878452468828, + 6.419619149187488, + 6.700482225176131, + 6.510522683851183, + 6.54824556757277, + 6.740447349506796, + 6.794805145904616, + 6.486413924718382, + 6.65669290346698, + 6.330596187729599, + 6.41219134851599, + 6.8086067352935045, + 6.7630103422707455, + 6.8160169600518845, + 6.4171934101150105, + 6.30815483145944, + 6.354469924625268, + 6.245324708929679, + 6.093315672414091, + 6.062979769584045, + 6.547542669641305, + 6.772333715608356, + 5.78599221085195, + 6.419943582400058, + 6.438901323486976, + 6.390743955110858, + 6.389946020335431, + 6.353067554744917, + 6.528035680011794, + 6.301512009132776, + 6.370867319597576, + 6.492489827790875, + 6.316272572567375, + 6.09490271562849, + 6.814062501286456, + 6.742407528442492, + 6.0572959077763375, + 6.648848691448354, + 6.101200362280079, + 6.446653835913828, + 6.1577208166580775, + 5.937029264564393, + 6.501136319120548, + 6.248719294984414, + 6.410042560923947, + 6.608110015948849, + 6.437965956362179, + 6.468697409772223, + 6.8647075945999045, + 6.745866496613056, + 6.164277752529008, + 6.562214130394371, + 5.983766641399045, + 6.634913016740448, + 6.583344659076655, + 6.679591302679168, + 6.054137105383663, + 6.439856363535232, + 6.110644755690207, + 6.421567930871793, + 6.65527962703364, + 6.225859742902057, + 6.400764760738927, + 5.956655880076036, + 6.002229508698423, + 6.088300087047747, + 6.108783720592561, + 6.278103289084312, + 6.473740709359538, + 6.610355161685984, + 5.880990024198841, + 6.356856015844764, + 6.327315123375658, + 5.9546988940618295, + 6.006818480722738, + 5.895065109096492, + 5.790555550652905, + 6.470306851221585, + 6.693033693834969, + 6.0925287776763835, + 6.000884935863896, + 6.492668452440399, + 6.0487344337811555, + 5.847035201343541, + 6.071804645082898, + 6.224777674516863, + 6.194623238196598, + 6.21158656113671, + 5.994928702084682, + 5.452149963707564, + 6.214022453017741, + 6.322180042405201, + 6.138698815684226, + 6.1288881143311364, + 6.607603818972446, + 5.881376696504555, + 6.23502652128171, + 6.4631858484255424, + 6.181827354310614, + 6.713256012545629, + 5.983561704269209, + 5.759172748207901, + 6.287494156320788, + 6.20487336035237, + 5.92055470277987, + 5.841944951545682, + 6.128435791459912, + 5.910702425722446, + 5.688445474087074, + 6.486000628275142, + 6.482913554361671, + 5.804113418707242, + 6.2091470180111425, + 6.0232734258645975, + 5.86183418824633, + 6.155668178498504, + 5.687374706016422, + 5.954993943649964, + 5.66386396528263, + 5.832285681348384, + 6.1326979039779435, + 5.707844894573118, + 6.035349770620811, + 6.318725854122273, + 6.036779985818765, + 5.397359042836844, + 6.158469845440955, + 5.727450028322184, + 5.703471212466859, + 6.390097849529857, + 5.513615512944361, + 5.876596766838268, + 6.259574981422941, + 6.070981477054279, + 5.825164333323706, + 6.271670966187848, + 5.367397061430029, + 6.119143188728119, + 5.5094824393295685, + 6.144871324106319, + 5.009052952854808, + 5.843320045681375, + 5.372235669357715, + 6.255155510068498, + 5.789049339585235, + 5.808350768549064, + 5.988656962955185, + 5.913917238385682, + 5.625320142697422, + 5.581862440800828, + 5.767846133715414, + 5.944570277315478, + 5.345560664174112, + 5.7496955683805036, + 5.769310983304112, + 5.5208536625962585, + 5.620836216060492, + 5.684951545834905, + 5.1676855143765525, + 5.360375286938548, + 5.470298447541426, + 5.36361836319297, + 5.858268668797065, + 5.4529528287599875, + 5.975814200205392, + 5.408061613300718, + 5.762927756616343, + 5.589810470047279, + 5.262312097731447, + 5.4009820625808755, + 5.488698427011211, + 5.665267620558791, + 5.153270174145549, + 5.0328375429624455, + 4.928521813032809, + 5.5846266375806275, + 5.60108174816049, + 4.914595280092867, + 5.246612488634024, + 4.5648594199666945, + 5.933878759056008, + 5.051691998264636, + 5.081033069576421, + 5.418763581295847, + 5.197402741811361, + 5.2585341423706, + 5.156126881176525, + 5.501253121226102, + 5.681281722252358, + 5.169662376582805, + 4.998851417743747, + 4.958737576975524, + 4.9549112238815125, + 5.343683749511648, + 5.600616757000007, + 5.218935000847524, + 5.219005561266206, + 5.430989892827327, + 4.579874703890802, + 5.3712800385292105, + 5.062739292035558, + 5.3251437788589175, + 4.8525973709262065, + 5.173205779639632, + 5.425118555522386, + 5.351585933999732, + 5.248506663783609, + 5.085873789227016, + 4.675830286920297, + 5.043697320906608, + 5.142976235952269, + 5.111574087570517, + 4.61952404248012, + 5.206317350966975, + 5.626486017079155, + 4.9621662305482594, + 4.220797500283357, + 5.648402820878175, + 4.831115862254498, + 5.057851696047359, + 4.849288011658942, + 4.58711963790276, + 5.247768270321916, + 4.866310233105044, + 4.3738916498159295, + 5.150316565122652, + 4.6070567161782865, + 4.57080977192845, + 4.66339457330916, + 4.633447275030889, + 4.590163696409928, + 4.337248718091107, + 4.505345970141954, + 4.348832333484737, + 4.467534515718147, + 4.576532905824421, + 4.583835640469761, + 4.091683437890173, + 4.03944681651239, + 4.103654355385925, + 5.072531269858482, + 4.124724922865346, + 5.1025876913201245, + 4.565162779901946, + 4.400058128798933, + 4.720762480254789, + 4.2915655376097925, + 5.052436935920904, + 4.610840379507837, + 4.893839212930505, + 4.431517538373253, + 4.680173507639852, + 4.628770002964462, + 5.116140406946599, + 4.391119629997218, + 4.393781295055666, + 4.459137970559762, + 4.828851835304009, + 4.569349655070293, + 3.7095784437723904, + 4.673461387690232, + 4.394026825073267, + 4.274064817199701, + 4.445905838377942, + 4.522327180661592, + 4.047699236740609, + 4.613106020194469, + 4.198861371356165, + 4.097954577291979, + 4.2524412211542115, + 3.7800111571042776, + 4.923866452617583, + 4.182477796615625, + 4.066239089298339, + 4.630489605914754, + 4.180011962875828, + 3.8597160654338736, + 3.769521106466768, + 3.874697780635734, + 3.926091252134982, + 3.9310011926822956, + 4.154392330566099, + 3.9983849992461877, + 4.1225983134443815, + 3.6899223512020676, + 4.795224001121589, + 3.928568121945204, + 3.3037469035806066, + 4.125589785237163, + 3.9755908501974555, + 4.390471202164574, + 3.7664191620087015, + 4.37760206401512, + 3.0278633869492424, + 4.6117856950655565, + 3.72996528421621, + 3.8433300263878403, + 4.1829957659381, + 3.5780141245824644, + 3.3704460776321707, + 3.9029210782180823, + 3.7431336377322304, + 4.074527048649212, + 3.7245980847715363, + 3.612435213498228, + 4.006455111686386, + 3.163394765402612, + 3.790543964758157, + 4.478653233482455, + 4.0587386716329785, + 3.560940749808856, + 3.9639345349694715, + 3.648957430435536, + 3.433481641491649, + 3.6974685059049435, + 3.776482205760008, + 3.704857817146, + 3.2378780734448163, + 3.252970001999744, + 3.7627297270391744, + 3.5669669814312757, + 3.906859256571286, + 3.8096990462976477, + 3.6765841159897645, + 3.795170291163643, + 3.5479846277102496, + 3.29639002511367, + 3.323568305854747, + 3.601953629916381, + 3.612025482453943, + 3.357024365640381, + 3.2070111205223233, + 2.9577508949612454, + 3.0066162548608855, + 3.0880515675535376, + 2.9676940589347742, + 3.4566735246000815, + 3.345186863545295, + 2.838610085970041, + 3.045465481376584, + 2.982970260394266, + 3.510021086794332, + 3.600775258353743, + 3.53801094724043, + 3.2310846829226882, + 3.615778163830488, + 3.1367852817568878, + 3.1453516158139863, + 3.3409138509140934, + 3.1014802909323205, + 2.8627891394963836, + 3.4655669957845943, + 2.7952719521831066, + 3.0646350809172724, + 3.3051614272112046, + 3.215450159551105, + 3.3361320883660794, + 3.154816185379439, + 2.9658804160226677, + 3.0373142037922243, + 2.8699371649963274, + 3.0890536509534225, + 3.2439830998830566, + 2.9746258791518123, + 3.2824860932570554, + 2.861279730749646, + 2.616626780477108, + 2.8841198013352227, + 2.7116439413860136, + 3.0964026616527183, + 2.973789168818199, + 2.5162246539879827, + 2.8313676966035235, + 2.968105583169669, + 2.3796881572831037, + 3.147329033152301, + 2.9268854061528535, + 2.509689702825971, + 3.163609601147893, + 2.52304726657483, + 2.5101204266916715, + 2.9815199791589206, + 3.198969148988268, + 2.371967143917192, + 2.72001553174929, + 2.6221922078283777, + 2.9720698091020137, + 2.643993582300985, + 2.5895367328739716, + 2.614729207174946, + 2.382627290082362, + 2.525802501333583, + 2.50125157211155, + 3.1049983042212244, + 2.6324582448757385, + 3.1896413400154278, + 2.9111677941847307, + 2.369315408731676, + 2.529274733016763, + 2.677738818038175, + 2.8092286903138928, + 2.2636206994454526, + 2.323200058798124, + 2.697147670498168, + 2.145421892827098, + 2.642240975956412, + 2.562976277996045, + 2.286101672166632, + 2.6259467917637145, + 2.7896275060556763, + 2.2642906506409224, + 2.113529254658148, + 2.327095598625361, + 2.432204392739939, + 2.4464665829512167, + 2.06964414948064, + 2.3800943705782327, + 2.1094765384693464, + 2.3314247185677166, + 2.3630942691757126, + 2.1575297753998353, + 2.6695563951027736, + 2.5811018553812994, + 2.0837832534756995, + 1.9895569700795215, + 1.9215932077173012, + 2.384468096190979, + 1.9715442873292839, + 2.0126890150780508, + 2.1574642313182233, + 2.2190385980054392, + 2.6531163377622056, + 2.155118768893825, + 2.388444447578143, + 2.518668815739825, + 2.077271697818329, + 2.5103013978461757, + 2.487901790104978, + 2.273943236975074, + 2.3116821229456375, + 1.756154758434668, + 1.7008701628810003, + 2.439327570166958, + 2.5888855651641265, + 1.9065066838831664, + 1.9828214478915789, + 2.1815974554368487, + 1.8776333556263003, + 1.775320482570315, + 1.640531690007543, + 1.5993618859867034, + 1.6885868552498557, + 1.8223473303465747, + 2.0709910010230708, + 1.4780388306943082, + 1.5977676697659018, + 2.2887500560191656, + 2.0149567311063805, + 1.6384423069005416, + 2.1328537767873765, + 1.521251821774041, + 1.4265113791164774, + 1.6509347545953097, + 2.070296455906294, + 1.885363033067519, + 1.5781426636874112, + 1.4697074880362677, + 1.2962630374579676, + 1.4727347501956087, + 1.6237129259552283, + 2.4354604014475125, + 1.8278502456569508, + 1.853647628833891, + 2.4047377895255675, + 2.0232779774703014, + 1.9413890251419628, + 1.3874480878419602, + 1.6210197113061025, + 1.7079480545737933, + 1.456625576980115, + 1.9852768741093103, + 2.1008576959789056, + 1.51643145867253, + 1.302503235133107, + 1.3667236296172889, + 1.273182596986052, + 2.055419430136002, + 1.3495394071566962, + 1.0511890686586391, + 2.074960346702286, + 1.0329643655734315, + 2.0284830127489117, + 1.8266613449976736, + 1.6775809714152812, + 1.2954585405600898, + 1.5090945853019881, + 1.5079508914046158, + 1.2077137176299295, + 1.429140573602945, + 1.4934872372761723, + 1.556470022600492, + 1.6932869309041545, + 1.181588950948171, + 1.5875198323090298, + 1.458800135098417, + 2.1733789829064203, + 1.7472156273856718, + 1.7326262202392786, + 0.8979586571088549, + 1.7345904411216644, + 1.5767646585898867, + 1.232882838671249, + 1.1144977586590183, + 1.7125782885435545, + 1.8736165215818046, + 1.3918898677461022, + 1.1515700648905238, + 1.3071579007762397, + 1.059380897817267, + 1.1798224061377898, + 1.5076143722535122, + 1.1759707120862144, + 0.975184183199781, + 1.1112046488660203, + 1.0891979773347906, + 1.055293594837748, + 1.5993862328789443, + 1.3419629505846922, + 1.055270498939404, + 0.9374405300807469, + 1.413190460924699, + 1.5240628486341254, + 1.0754597050212167, + 1.1026384216686298, + 0.598342553773483, + 1.1202263559218282, + 1.675833228803741, + 1.0200246665618427, + 1.5336530870580243, + 0.7433597941280907, + 0.48403592259169914, + 1.0763345582226245, + 1.559776571920549, + 0.775821377646118, + 1.1929595905475685, + 0.8025462073540695, + 0.6412926035841044, + 1.2538338491017542, + 1.09285725754227, + 1.4512733509376932, + 1.0134775430944656, + 0.4386010738946423, + 1.3777090557639964, + 0.4555511302481675, + 0.8649512542564934, + 0.8136363933805584, + 0.8029211950602864, + 0.5486829952086745, + 1.0587231662701724, + 0.9423697893223234, + 0.8227972303162565, + 0.6807657295532046, + 1.1466766303744984, + 0.7397427614336631, + 0.8493183980517613, + 1.1151043655835684, + 1.3103742508936236, + 0.62941566119016, + 0.5058382272684163, + 0.8533802291718499, + 1.1380789453388265, + 0.602557703389901, + 0.6883196944866713, + 1.2432755457504512, + 0.5506785967665694, + 0.835607898355857, + 1.2113216998719585, + 0.9364986600385884, + 0.8368458010257179, + 0.8833195607596722, + 0.9743350131123587, + 0.9844916830845168, + 0.9342316915599326, + 0.5718452299394647, + 0.5507422675571991, + 0.8067124393593996, + 0.9426456909415636, + 0.13430318666025154, + 0.857882172235203, + 0.4998733750082074, + 0.9821707092112233, + 0.45201918877352637, + 1.1343874173663784, + 1.0622742693424583, + 1.1133304811081037, + 1.1261139320369182, + 0.9152764020296565, + 0.04579298762551176, + 0.8208424667725261, + 1.3314904314715506, + 0.8613338200879009, + 0.8782198608431391, + 0.85742044498286, + 0.5185985398744946, + 1.3521226033294225, + 1.1403106206129636, + 0.9333771972442622, + 1.3618836242859667, + 1.1785563455056969, + 0.8264929521871476, + 0.6559376788983353, + 0.7256687060808421, + 0.9011631200816282, + 1.1840869688066529, + 0.9468298471412782, + 1.0541669154873914, + 0.8523389522242435, + 1.4377539865938873, + 0.3875526740346632, + 0.5318848910511725, + 1.1633422820393724, + 0.5290391999325292, + 1.07383341301422, + 0.6285741734740227, + 0.572310108871128, + 0.9941663014146254, + 0.7165854487581466, + 0.5476259513993286, + 1.0382348360441698, + 0.7687644269936079, + 0.7394477040893379, + 0.5934310584513731, + 0.7092309428409387, + 0.6794800336879039, + 0.5587454227793545, + 1.120448698242618, + 0.39369996702839105, + 0.4556921801515832, + 0.5546697160258216, + 0.722380585509907, + 0.3682386270550236, + 1.0239643908583955, + 0.519508021519955, + 0.8218514125147921, + 0.7873966443587227, + 0.5177781223618796, + 0.5000384853777267, + 0.3836849443402372, + 0.6889388045389137, + 0.897918232416884, + 0.748172260653964, + 0.3630963073517464, + 0.9720618622057794, + 1.0535574584766276, + 1.2208424643800053, + 0.5810981854726919, + 0.25140578293537647, + 0.5591894825478031, + 0.010725629265913805, + 0.5908313234487333, + 0.4070700681729663, + 0.3238820569669464, + 0.6259268995435961, + 0.3381203971820623, + 0.32605684368931753, + 0.3618467522564039, + 1.2063937505834286, + 0.47354936091910843, + 0.983762372677539, + 0.7157289952478416, + 0.805280869743742, + 0.8572452488595842, + 0.7309735764972737, + 0.46619680288539583, + -0.14923367393015452, + 0.5342599872076629, + 0.7589840113322173, + 0.6667631670414906, + 0.6998217595842589, + 0.670245937406615, + 0.45170128059789183, + 0.25843093041270004, + 0.5446284217495679, + -0.05632507220900396, + 0.6174706558298073, + 0.751330312414886, + 0.11309749909889544, + 0.5115387453484642, + 0.5780808114518398, + 0.2600378109930888, + 0.8009180395149784, + 0.47851305640592123, + 0.7777884401170151, + 0.4497972879158648, + 1.0488868099156778, + 0.9893989199585012, + 0.5546970191986761, + 0.44851413466248047, + 0.8008714324790971, + 0.9384495952910994, + 1.1716240414191428, + 0.6158514296290023, + 0.4466013576040473, + 0.841855451693485, + 0.7333592240723406, + 1.1115253315405937, + 0.7327811492973216, + 1.1479142584453128, + 0.6160933551055054, + 0.7293683391799145, + 1.1611176604700075, + 0.5135039908884023, + 0.2797639161557834, + 0.42514801035915584, + 0.42446377183397177, + 0.4929615444201315, + 0.19690945110077485, + 0.4632955402322367, + 0.5206551216597064, + 0.9539042207500841, + 0.9955985928356164, + 1.0648146302604926, + 0.2994196073160151, + -0.27810563447739045, + 0.7629581295415849, + 0.3367368430054184, + 0.4345619054220533, + 0.2729946316464113, + 0.7143627602822876, + 0.9673705860173987, + 0.5965626930763297, + 1.100855332332499, + 1.0263648204290898, + 0.6554735644144838, + 0.5993158882289471, + 1.1152564230835535, + 0.7588300308730234, + 1.4303120665204863, + 0.46389859370930087, + 0.27514501583854195, + 0.6284051462008082, + 0.47325454597216954, + 0.7343190104299668, + 0.6036865449361686, + 1.3188993254978363, + 1.3084845519668895, + 0.9662360296969491, + 0.9763505844309763, + 0.6805308446434454, + 0.7167956534827333, + 0.42156700384098417, + 0.5667747055323474, + 0.9437858696204061, + 0.9038526776408292, + 0.5239823354983725, + 1.286791756439209, + 0.40968916729996513, + 0.79580759727012, + 1.2714473695898234, + 0.7027199124634368, + 0.6320897649707461, + 0.48625143702656304, + 0.5595222164163897, + 1.273977794562449, + 0.9778719596858404, + 0.3451714808853472, + 0.8390256656479347, + 0.7262023043466047, + 0.5865997606675108, + 1.0096184507987993, + 0.6247649455242231, + 0.7667564510136459, + 0.9512510720199272, + 0.4611556231468625, + 0.6199098410323243, + 1.068837034987832, + 0.4373501283895325, + 0.6291140455729018, + 0.966437184085369, + 0.8884800363705166, + 1.185409108260091, + 1.2928082017144455, + 0.6246060565735054, + 0.7649740264165479, + 1.1539530110790828, + 1.2936202458101698, + 1.3209274024419493, + 0.41852010763338743, + 1.174660391435555, + 0.47443592691983205, + 0.8381637699073631, + 0.7094483000548933, + 0.8354964442736628, + 0.6427017745030708, + 1.3840873372979192, + 0.9875530583273269, + 1.1668486075064777, + 1.2477298872683509, + 1.251846911885345, + 1.0700734182523164, + 0.9070851020822599, + 1.388332820624138, + 1.1952132506903492, + 0.8393624274700199, + 1.2920234438458402, + 1.1862584647407295, + 0.6299754276688306, + 0.7693556685756091, + 1.0059801802929393, + 1.2773252352146225, + 1.298256618904151, + 1.0972228080196194, + 1.0786983183150844, + 1.2436174736778733, + 0.49727762731870573, + 0.7253780011205821, + 1.0647542046278913, + 0.7866462116296555, + 1.1157933375777305, + 1.248670196671985, + 0.43654900262828167, + 1.913884955901509, + 1.5035139826208375, + 0.8266089530443498, + 1.142772863776663, + 0.8476871545962049, + 0.9634606718197466, + 1.067276778186499, + 1.2967716677919006, + 1.7321411522796941, + 1.8844922191303701, + 0.9320407886511325, + 1.2258467573981842, + 0.39094988621247295, + 1.2796615336867412, + 1.22653567324149, + 1.0648093753817285, + 1.3599647985562606, + 1.5684854199258405, + 1.6311305440355404, + 1.716159713981243, + 1.2840919777878719, + 1.2374173158476438, + 1.054218728097921, + 1.3374493882265492, + 1.487550705724383, + 0.7658280681762187, + 1.3945402521816566, + 1.7645992649144644, + 1.6844231688686286, + 1.4954603220106533, + 1.2323220473654606, + 1.0702326821590955, + 1.5023119966568947, + 0.9492734258856979, + 1.9925745411690492, + 1.2927122713293344, + 1.0715299177226834, + 1.4403799231467906, + 1.1994989197397625, + 1.7998694973417155, + 1.7036502114230994, + 1.568718919966985, + 1.4711038834299597, + 1.406868276639, + 1.0315033786746142, + 1.5084981992500708, + 1.8145831715193887, + 1.5466604077049961, + 1.5525139317901904, + 1.6914460860570504, + 1.892778033121122, + 1.9199755361887267, + 1.6742755875251991, + 1.8468898079760014, + 1.2112735805317052, + 1.4149723899321254, + 1.7710096781892242, + 1.352815907434174, + 1.6360800677146672, + 1.3939926958988174, + 1.8233234730036885, + 1.6311098712688816, + 1.6434481447169902, + 1.465922285525493, + 1.74549684160872, + 1.656004279771538, + 2.3106972366442116, + 1.9679100415737327, + 2.45144433144692, + 1.0802132171431849, + 1.5757390030724245, + 1.5977165170732, + 2.1019974547937705, + 1.9773962715274596, + 2.3965552801233723, + 1.836781706932588, + 2.2728254945974506, + 1.4033635499150325, + 2.3192761298338374, + 1.2962690150942078, + 2.688602046978873, + 1.1722352090391233, + 2.1838243436074967, + 2.171297762319125, + 1.9918811383125021, + 1.7007212722823748, + 1.489883975053779, + 1.835579283373739, + 1.746380508901855, + 1.694349197321832, + 1.9745128231305096, + 2.1253866923191866, + 1.8574209718223915, + 1.505410250797379, + 1.6196450248304886, + 2.11022614228342, + 2.0061834686351303, + 1.9366357534653313, + 1.8255663151299129, + 2.5449770099144637, + 2.3823634117591967, + 2.0280885397727775, + 1.9716924222029257, + 1.95071423343341, + 1.7496089337620502, + 2.3181569719681923, + 1.9634947695182015, + 2.577658718475486, + 2.0913454978068926, + 2.1964443026342533, + 2.290886008370262, + 2.2097343567321888, + 2.0766157850492295, + 2.454505208327149, + 2.4205301398385495, + 2.152690473703459, + 2.03335807119616, + 2.3896068145987663, + 1.898828747032339, + 2.583129067207364, + 2.198965630311891, + 2.7352923005515404, + 2.0186982629597088, + 3.044506476838047, + 1.7661399531118125, + 2.2118894182527087, + 1.9875425476809965, + 2.676793469821908, + 2.931012406871934, + 2.5789567780846143, + 2.0317154439138134, + 2.1992350777229634, + 1.8892421850962933, + 2.532914300229399, + 2.237840400172009, + 3.2890737304067117, + 1.8603538074907708, + 2.0888070679853765, + 2.5211384643805625, + 2.2878195770535714, + 2.9856495252693653, + 2.636381067264501, + 2.3529765676428043, + 2.1127628681524167, + 2.621087024118354, + 3.3099748203219765, + 2.105810408274186, + 2.449461207371269, + 2.8036584435938647, + 2.2265004785347795, + 3.1499931631406044, + 2.9164109323947836, + 2.3470133633242654, + 2.3598043290619493, + 3.0219953841041183, + 3.039749535992349, + 3.03328889344057, + 2.7181328476143665, + 3.2903548818422754, + 2.0779214721071284, + 2.5211657751469296, + 2.688148779062506, + 2.868167051225265, + 2.688400139012939, + 3.0095393195900217, + 3.3373799545497436, + 2.913147449669428, + 2.6022368916031535, + 2.934668292269601, + 2.531080648630439, + 3.213084013952397, + 2.8051427963965883, + 3.050523049051355, + 3.3665223457539417, + 3.186433094324533, + 2.8132168203677668, + 3.3149023293617175, + 3.0966116401264516, + 3.7750542131845233, + 3.564443651281862, + 2.911101804961137, + 2.8799443601711086, + 3.5799754654067155, + 2.9443182797441576, + 3.061403435548566, + 2.9589968848361172, + 2.9745697829050965, + 3.038923701599081, + 3.498302182827245, + 3.6002461902086353, + 3.1763450084155807, + 3.080133295828621, + 2.746466802540391, + 3.2276206567204486, + 2.844712047703511, + 3.0396858833832976, + 4.320634324577226, + 3.136347191125856, + 3.3852275626156207, + 3.6362336036878413, + 3.2416345633111683, + 3.5336083493485715, + 3.393571622026887, + 2.9565036143664813, + 3.481901277602542, + 3.235383548303198, + 3.560439026762425, + 3.2554333523650145, + 3.567895267087523, + 3.2753995810420724, + 3.1872173346376726, + 3.6808150929393824, + 3.6105419757945767, + 3.1664310215674822, + 3.8859782820720667, + 3.5540519557010724, + 3.5855803067911354, + 3.908117862749795, + 3.997312840593886, + 3.6964972194252494, + 3.4629852754417008, + 3.8658714426735785, + 3.9190035045469864, + 3.9696197457263036, + 4.157846438390006, + 3.3996372299020137, + 3.8380416636310946, + 3.82760748393948, + 3.8843224618927445, + 3.477827491846506, + 3.590760018653566, + 4.105612789662588, + 4.196364822125634, + 4.311598559916306, + 3.993613646121452, + 4.448887486869821, + 3.9146992036111596, + 3.6683575664410255, + 4.106834933961893, + 3.0281377180933173, + 3.608210443370088, + 3.6441332240574758, + 4.640006848078064, + 4.149406402837636, + 4.006974671934694, + 4.0974906783727345, + 3.693228687780557, + 3.675915232788234, + 4.203610598927613, + 4.03931695191388, + 3.6352986948326045, + 3.53836914315512, + 3.972247303197164, + 3.531109723826768, + 4.258678058662364, + 4.774785075675087, + 3.9513106175772457, + 4.2068474112997345, + 4.182770351253162, + 4.021941054599941, + 4.4952900261705855, + 4.706169913827014, + 4.309014224959775, + 4.243607175290728, + 4.074314500823007, + 4.47819052963886, + 3.878865209493358, + 4.690430803589388, + 4.46227589309496, + 4.195511637641248, + 4.249748680970049, + 4.557475600659063, + 4.775978522285865, + 4.426766826096996, + 4.2010356018506965, + 4.500439512525059, + 4.661689100773673, + 4.210602950116452, + 4.354047929822015, + 4.7187160135425925, + 4.351044782612716, + 4.75411089710709, + 4.109253147261767, + 4.337328527827775, + 3.9594434092123656, + 4.932826698049814, + 4.636380493188696, + 4.430997881865331, + 4.374294234075531, + 4.045596412146182, + 4.60387767106544, + 4.312962259537736, + 4.9329117680797685, + 4.052967246748278, + 4.4815822956030775, + 4.218157097488176, + 4.787842130303214, + 4.7858306184604835, + 5.0250902276755625, + 4.280436360796126, + 4.514381925011041, + 4.616062029653749, + 4.6051915050382055, + 4.754127421409081, + 4.605757285428327, + 4.741406267991649, + 4.273130574062612, + 4.553432277079148, + 4.827165049644558, + 4.849485310688616, + 4.689974978496172, + 4.547455089861834, + 4.76675829376385, + 4.904663971026048, + 5.270564981057129, + 4.830809259418708, + 4.932225020445748, + 4.9016970776458635, + 5.21895386617644, + 5.0377772976226085, + 4.9339424457296515, + 4.944905983522232, + 5.0445848170251075, + 4.696593522593882, + 4.742803424880066, + 5.158044566069065, + 5.00988618990584, + 5.222134306594385, + 4.8459009467772365, + 4.905102288365268, + 4.770888189286861, + 4.81302274257392, + 4.674755638675338, + 4.9292775720061135, + 5.411440055962395, + 4.9260024592514355, + 4.455637934887751, + 4.567523218805022, + 5.607136705435739, + 5.077722742865821, + 5.381972448260257, + 5.022365261027742, + 5.143247850826827, + 5.02777239569041, + 4.817509555445607, + 5.24847324713548, + 5.492793003354889, + 5.582295363891249, + 4.884458445694253, + 5.40677128828724, + 5.259217038830475, + 5.406279209616794, + 5.479301373668145, + 4.854204707019141, + 5.748873636689673, + 5.672463119648162, + 5.061253031639682, + 5.267843509773695, + 6.047349765198462, + 4.852552136306633, + 5.6387785658897425, + 5.164286831521421, + 5.567411889275786, + 5.280992307963905, + 6.072410695914877, + 5.167455844144243, + 5.6608852696462, + 4.712325999626206, + 5.1620549647473775, + 5.5562261365394745, + 5.460546212512879, + 5.466896735730904, + 5.313786781070372, + 5.480204551328216, + 5.026812070711141, + 5.703795629004314, + 5.414168643119659, + 5.41497572591321, + 5.5718021148057355, + 5.578224656844723, + 5.889582587897544, + 4.870791387363599, + 5.787084675089746, + 5.948119813339324, + 5.5010166877056825, + 5.45367991816831, + 5.442124394945954, + 5.507422269861687, + 5.9061467930385945, + 5.34359101024009, + 5.403291983592627, + 5.494766817352174, + 5.464050243373406, + 5.97224652109492, + 5.508183005337873, + 5.775532106490218, + 5.629608966511694, + 5.55722290207339, + 5.611140374880726, + 5.584937868737601, + 5.743303238705398, + 5.1688455372777, + 5.733502188675755, + 6.111894307220936, + 5.6327078579578895, + 5.444939071904055, + 5.606142643977482, + 5.930927398172436, + 5.729676449567082, + 5.561308576878404, + 5.734970712223026, + 5.764051846715166, + 6.619246762115856, + 6.302808296178423, + 6.033093963627268, + 5.274882816934152, + 6.004326455718534, + 5.626514126568986, + 5.801407313182174, + 6.214832124474865, + 6.079822340952313, + 5.44380478372469, + 5.6493724858272465, + 5.858107265769528, + 6.372214506190288, + 5.886913341640781, + 5.83279863775689, + 6.009174787373167, + 6.30294007713892, + 6.208701387657317, + 6.033017173985576, + 6.014352398784057, + 5.70619274378542, + 6.237422114686881, + 6.023820603441021, + 5.433499462987516, + 5.9151184328477635, + 6.05374792664203, + 6.312342191785464, + 6.073513058528251, + 4.937097641372265, + 6.201854295568103, + 6.072074736300729, + 5.984494730924714, + 6.52957594120976, + 6.997419738993708, + 5.669270064721512, + 6.248270176129651, + 5.8075567319056995, + 6.149295898441067, + 6.335765539423671, + 6.292136004607057, + 5.521765138411538, + 6.250118317960989, + 6.011709585952425, + 6.426760728131166, + 6.321445391348026, + 6.113980934531608, + 5.659941825595436, + 6.36977370857364, + 5.633012481217136, + 5.727339071841787, + 6.010194254996719, + 6.0366547680560085, + 6.0679814769175175, + 6.174916520755145, + 6.365634908136384, + 6.439750079675241, + 6.322932278791051, + 6.069013416807889, + 6.602334757683688, + 6.819295242711249, + 6.467368678596294, + 6.0746937667201335, + 5.694939876396718, + 6.086102424454524, + 6.626405512756777, + 6.605473690398813, + 6.486583641483986, + 6.825096661610166, + 6.4445724415410375, + 6.577077739222159, + 6.514358804560857, + 6.2847597929241035, + 6.274005686434703, + 6.512279694681576, + 6.52332245340138, + 6.56807435656875, + 6.634335132355707, + 6.741870821256349, + 6.127524622435413, + 6.109456633340856, + 6.063812625061064, + 6.052826710132433, + 6.860573896603033, + 5.962223628303129, + 6.742672968301786, + 6.519438505219351, + 6.446838987443948, + 6.172482576201699, + 6.760019549301731, + 6.569408755121497, + 6.919243985303584, + 6.397909291379042, + 6.484343533744317, + 6.1246168105374545, + 5.6961308853668156, + 6.049035664119589, + 6.375820627050159, + 6.2366757755747235, + 6.637589521677901, + 5.932399208435986, + 6.690577773685807, + 6.053788785651673, + 6.375878518192888, + 7.027021153274156, + 6.3781208534337, + 6.482968288701588, + 6.65038982720525, + 6.422090905594789, + 6.676378765829381, + 6.126396115523523, + 6.474125724577951, + 6.328455533973134, + 6.790743750758512, + 6.311615678628612, + 7.292136244750093, + 6.356370124142529, + 6.536693056558844, + 6.396782961568291, + 6.563440799503615, + 7.06799305597278, + 6.8617627048398, + 6.65405636023804, + 6.2334866561294655, + 6.734646294888233, + 6.378224892351202, + 6.3253748262186225, + 6.641162981961184, + 6.643422886187161, + 6.816735168735326, + 6.460427155593919, + 6.706983652264704, + 6.139398916043218, + 6.951536963291241, + 6.857081973252987, + 6.84445898836947, + 6.889514558340235, + 6.500624792435752, + 6.581944513152441, + 6.644680899600779, + 6.494849953083569, + 6.719046863964987, + 6.945088998388643, + 6.1177920581079, + 7.291627803325369, + 6.3438727646013415, + 6.217818074137403, + 6.927288488221059, + 7.06051271317146, + 6.822847942680832, + 6.020466260243943, + 6.724175723278187, + 6.878612962121611, + 6.616054052517157, + 6.625022009572747, + 6.666338025691358, + 6.525062805090053, + 6.163662997511607, + 6.560197945240487, + 6.747281185955393, + 6.161560928734559, + 6.711528336050749, + 6.54716284801021, + 6.6517922160523595, + 6.489138263121711, + 7.086002522021084, + 6.602327695564174, + 6.4461747855377824, + 6.623177058060642, + 7.085629892813704, + 6.518785450888942, + 6.88871410001287, + 6.48541606465983, + 6.779542754830556, + 7.1515704794160175, + 6.1965199034319065, + 6.815277100095357, + 6.8337852618551125, + 7.351882699385443, + 6.7420045456245825, + 6.381869667628469, + 6.012327629948755, + 6.809540950484734, + 7.137772246823074, + 6.442048731620722, + 6.531807402671566, + 7.06156438508461, + 5.540671358790511, + 6.68828020933467, + 6.839694487813938, + 6.370617390361341, + 6.802706864191547, + 7.148727394920967, + 6.6598430081385445, + 6.651310039602524, + 6.043364832666126, + 6.41781087280903, + 7.55493527079455, + 6.391842121404055, + 6.326660298251819, + 6.63591662275307, + 6.234026143699745, + 6.427887022845511, + 6.445853236297103, + 6.739747707745581, + 6.807455426863391, + 6.902742757447773, + 6.29136829418698, + 7.141191382220392, + 6.713830751511268, + 6.151241030501106, + 6.240890852353919, + 6.378799574358266, + 6.237783505049918, + 6.864943440009714, + 6.446694536162885, + 6.556277298575852, + 6.796847676944951, + 6.468971405964636, + 6.902846478816301, + 6.872038269691422, + 6.650782649740082, + 5.907422657163271, + 7.023326328272212, + 5.927465909732915, + 6.1647500813634215, + 6.70814860938933, + 6.860079789021374, + 6.519820014134018, + 6.779563308392208, + 6.5664662022982805, + 6.510576704839547, + 6.256210757213666, + 6.7739676443394226, + 7.118441164372041, + 7.027726721481693, + 6.289841995774267, + 6.046737012462797, + 6.680079365738999, + 6.5355366245925195, + 6.500670670732517, + 7.052216158738176, + 6.111103817544296, + 6.645642464985002, + 6.737595287669522, + 6.4784931049904975, + 6.174848494615729, + 6.2648240991004895, + 6.609042657871474, + 6.2516012598589565, + 5.9973479967147645, + 6.576284415209671, + 6.366065308853889, + 6.372993080817033, + 6.518517020130456, + 5.904188136361518, + 5.946830287560736, + 5.7974503342748465, + 6.528503590589859, + 6.459904005084385, + 6.790509503364643, + 6.79781803496598, + 6.232636417351982, + 5.940950070959445, + 5.991235686326689, + 6.441233430080039, + 6.13589300965966, + 6.130039332629905, + 6.145247574119899, + 6.489995558565662, + 6.035593311008246, + 6.82613900081376, + 6.214220702294346, + 6.524988848732965, + 6.217724192390363, + 6.29639896249046, + 6.34664398395019, + 6.072429596385701, + 6.152348043141173, + 6.544555766846077, + 6.4482375081472245, + 6.3581537433410675, + 6.794598279982341, + 6.305478950602106, + 6.672575902182933, + 6.08426636127265, + 6.3509896088180975, + 6.552257921981247, + 6.055650297666241, + 6.21377425574732, + 6.2877815102279415, + 6.16201135573017, + 6.549443899043514, + 6.1348809745761725, + 5.99040693959652, + 5.596034510269904, + 6.002696014095853, + 6.093841176550539, + 6.10336448196655, + 6.076173828571874, + 6.380176732225039, + 5.676848277614381, + 5.595567592927378, + 5.788589312899059, + 5.791981460954069, + 5.887542092017886, + 6.381429008100981, + 6.105765711578835, + 5.894253407657638, + 6.234739823160693, + 5.753471366982965, + 6.311602855693841, + 5.911123702767815, + 5.877440665352185, + 6.20814116709917, + 5.953665497626238, + 6.170319495388207, + 6.056970572008947, + 5.851493138983102, + 5.845139038423821, + 5.669167371148025, + 6.5520108121934255, + 6.179139310523841, + 5.990599625428733, + 5.627583709070645, + 6.303768533715575, + 5.756908043550708, + 6.10532464845489, + 5.578131925621445, + 6.080789396262844, + 5.741877451469409, + 6.492368608443206, + 5.949508692456669, + 5.987012173236293, + 5.612969045030742, + 5.2701775609308354, + 5.869817873736127, + 4.836768402854398, + 5.99181001064584, + 6.221943686907484, + 5.834680913670724, + 5.8672819748714735, + 5.442385811054215, + 5.949731383414039, + 5.9416906328587995, + 5.476440419245208, + 5.97104516205714, + 5.343420015081254, + 5.789630621079279, + 5.173852895535061, + 6.357901405756375, + 5.48981830303909, + 5.675973651832293, + 5.588029626767555, + 5.211995710510928, + 5.396743436438583, + 5.940922571375362, + 5.712577085722486, + 6.117131510101194, + 5.77538137906713, + 5.831555250876057, + 5.177721348620547, + 5.180483408903291, + 5.706594749020962, + 5.401097234491696, + 5.6287846040865706, + 5.730058022239518, + 5.382405501819075, + 5.2042054551789265, + 5.157097851097248, + 5.721073612994891, + 4.978346030416669, + 5.814022900711963, + 5.152480915399429, + 5.442179708548912, + 5.236818842408467, + 5.555711004875711, + 5.248958519063238, + 5.345787941316108, + 5.526543032932118, + 5.253101337291011, + 5.16099177445784, + 5.463163501366899, + 4.737791210388743, + 5.25433528161384, + 6.071999512130773, + 5.765752670340422, + 5.651251197352854, + 5.167194041565406, + 4.705519762976516, + 5.430084001666493, + 5.59568730931146, + 4.976854494065173, + 4.9692892187558275, + 5.152271780356813, + 5.331346380856564, + 5.086827823731483, + 5.306172864358824, + 5.00033666083299, + 5.762733493252628, + 5.0613137741029135, + 4.772390051515771, + 5.1918925096948, + 4.819170559835167, + 4.936722964210135, + 5.246436795917455, + 5.391397924216121, + 5.042061024915187, + 4.58912693589209, + 5.247893210935615, + 5.283263685096627, + 5.438591221562239, + 5.3285209425330065, + 5.291330654489479, + 4.6143414169255585, + 5.04230132559472, + 4.712887825020125, + 5.423052859025412, + 4.85086059571759, + 4.627461879622796, + 4.963032467253174, + 5.543076586232492, + 4.991980944142018, + 4.29384845067706, + 4.762203185711465, + 4.674749330385079, + 4.910831792192562, + 5.016179763601912, + 5.12389195434417, + 4.825446964680023, + 4.728193726159974, + 4.993057687624067, + 4.417081202958506, + 4.599074736401173, + 5.021327145983419, + 4.98433019651197, + 5.473215544918258, + 4.863153204976887, + 4.774413502519204, + 4.801577697377242, + 4.6677730095355, + 4.748643770230422, + 4.4899238358933315, + 4.659888469659242, + 4.38975392115531, + 4.512203679731907, + 4.755753571205861, + 4.77469908240826, + 4.832981800712069, + 4.087498218001818, + 4.590429973417725, + 4.139175636578226, + 4.890701511588487, + 4.6591063389704415, + 5.074640697102176, + 3.786485897934274, + 4.232944391833071, + 4.258193718363393, + 4.101713740156379, + 5.144894500399666, + 4.906281615936216, + 3.8902709156688453, + 4.550520824120677, + 4.118096226297329, + 5.0159300170880705, + 4.104688267427653, + 3.8706419030281136, + 5.036917586686849, + 4.712013585263433, + 3.719875240374715, + 4.794497486143377, + 4.175574649597474, + 4.245442312347444, + 3.988111569244533, + 4.2991492878478414, + 4.48848228395822, + 4.058776122581327, + 4.275042709234845, + 4.107742052245547, + 4.198101512054148, + 4.742662292538972, + 4.638689921376758, + 4.403605578411956, + 4.107323834421132, + 3.607844192253438, + 4.172923968246377, + 3.66437875416816, + 4.086525807361216, + 4.192221676319306, + 4.197215484134503, + 3.6069777950084134, + 4.659801056976335, + 4.060128598908152, + 4.1701736378786105, + 4.1206317798564704, + 3.759201773960708, + 3.8505092742362703, + 4.155124466239178, + 3.6320432034201016, + 4.641816094183075, + 3.8134901477962004, + 3.548067759067388, + 4.343999866462133, + 3.987472714101923, + 3.819901162273078, + 3.932496558042378, + 4.329864419577392, + 3.723948685778358, + 3.450128168855112, + 4.005183333614849, + 4.187713590917144, + 4.00475015264357, + 4.164568911015589, + 3.613660301924641, + 3.498612069522196, + 3.670017403580057, + 4.007251143356124, + 3.8227071065904292, + 4.067413651566579, + 3.835129054411973, + 3.4435340666012966, + 3.1191985622243488, + 3.8686528969478267, + 3.66028069451009, + 3.4927192329560195, + 3.7862556847564712, + 3.4080158597580277, + 3.119242309813636, + 4.056772520373588, + 3.2921139684209235, + 3.3678851253091326, + 3.731652757582196, + 3.3900883970100626, + 3.462838960697438, + 3.4110529288367406, + 3.7747575949837646, + 3.731909092947548, + 3.5389964768002087, + 3.8246513275196854, + 3.329405703586303, + 3.2068104769561834, + 3.5288155800992187, + 3.582048528281388, + 2.9804269452274377, + 3.4085980920053625, + 3.39928256329096, + 3.2059075067649436, + 3.0519990394188605, + 2.9434000249145145, + 3.5699501593165013, + 3.0841783233969506, + 3.395893523049019, + 3.022449802049191, + 3.3206666681842614, + 3.896378856756292, + 3.139854802140854, + 3.098450619487124, + 3.567117940683327, + 3.354030660011378, + 2.935570210472918, + 2.965958837208311, + 3.3023451847754797, + 2.743332806974527, + 3.3647940644140624, + 3.173171829942412, + 2.90327179690939, + 3.1700067148886415, + 2.7765775349171715, + 3.128551557059663, + 3.0391025821125353, + 3.5557404984966157, + 2.974599614712795, + 3.2562305823668183, + 2.876229281900111, + 2.8434320602247403, + 2.953337719605219, + 3.4218659063908325, + 3.362063455468708, + 3.0125639277935354, + 3.0607532491222846, + 3.233414653047024, + 3.2550791555290557, + 2.5388159804968247, + 2.7145019995975046, + 2.5512214828196256, + 2.279170228508042, + 2.4046328204261203, + 2.881197617033934, + 2.458322494216754, + 2.34887214672915, + 2.5941056854097324, + 2.46021298786559, + 2.743813873398594, + 2.8110674386411687, + 3.4366311658100726, + 2.3586487261778792, + 3.0938930620352516, + 2.393014135248181, + 2.8340022133851637, + 2.4765158404965284, + 2.7480056656822085, + 2.9260787113338487, + 2.356666986221759, + 2.689706952178643, + 2.23716336190835, + 2.452602035127037, + 2.674721665612239, + 2.6790563470701745, + 2.0853073835674216, + 2.5465581637741947, + 2.4977775914412876, + 2.7826115316782603, + 2.540520634605634, + 3.072220783940018, + 2.0088211720588918, + 2.3591255002538345, + 2.5675820063517403, + 2.2006601409826096, + 2.0571588183636482, + 2.0073321310769865, + 1.927749343567845, + 2.3173316964106165, + 1.993005825432972, + 2.8284213120139476, + 2.2627163866624156, + 2.3483438678173454, + 2.499426997656579, + 2.05857793243572, + 2.7117342107607416, + 2.1473282188134344, + 2.6679689831686866, + 2.0235912993135172, + 2.198792168164288, + 2.648609306497634, + 2.1936273971674543, + 1.770221299982074, + 2.110720071322692, + 2.496960384904073, + 2.42771450631706, + 2.293981977684619, + 1.7879916895216077, + 2.0608495663728275, + 2.9840971300497063, + 2.5728430575021557, + 2.2948754411931147, + 2.4234906614763565, + 2.231259099188655, + 1.9869633177504322, + 1.897355259860847, + 2.020228486032657, + 1.9996219891338427, + 1.6977527994338555, + 2.2011379303374756, + 1.7518658783535537, + 1.5249103089008684, + 1.636602738200874, + 1.6179982495305794, + 2.2147051250758447, + 2.367559347430163, + 2.036006027848242, + 1.9718254116496452, + 2.022189988961221, + 1.7063718091250093, + 1.8289326650775481, + 1.6244600622747325, + 1.737843060768771, + 1.598801448890064, + 2.195835337114747, + 1.417432403036932, + 2.0633271205919654, + 1.9246668531758888, + 1.8854034449941193, + 2.0683749053828016, + 2.142700545974226, + 1.0114682393764811, + 1.4775889797677741, + 1.640484957912507, + 1.3870779378700915, + 2.0323591463535813, + 1.6502220351044024, + 2.0906490727018663, + 1.7425299644565404, + 0.9216852534579342, + 1.9390058688549172, + 1.7416024840836406, + 2.098335632724648, + 1.7114647861851378, + 2.3561266442755606, + 1.74691997237653, + 1.8274845301952387, + 1.4081426791366785, + 1.5140099358630257, + 1.951011054511154, + 1.610811859059981, + 1.4774423681820992, + 1.575981192283872, + 1.5672574110725037, + 1.872918990942349, + 1.207796142782367, + 1.5400177121361975, + 0.7996681538689501, + 1.3652089785965662, + 1.5811837136874256, + 1.500412387332463, + 1.3462248339212213, + 0.7980226628991678, + 1.7568138527251622, + 1.354299189428187, + 1.243203667269932, + 2.0004058539698266, + 1.7753213701349841, + 1.281303060567066, + 2.0927760334179046, + 1.487841679753341, + 1.2736083867318162, + 1.2945278954786914, + 1.4209112886807218, + 1.2978924603943292, + 1.874834267111464, + 1.0650235053868524, + 1.460592515176304, + 1.5190743972257865, + 1.480318611757925, + 1.619265078141207, + 1.3757938012199789, + 1.212326832384851, + 0.9937139921212909, + 1.120419807151894, + 1.4638004288539037, + 1.4093975207852065, + 1.0278458391470342, + 1.114660368076784, + 0.7967397190361203, + 0.771493622803912, + 0.7124708705596401, + 0.6079669474950525, + 1.227610229626532, + 0.9382380462020494, + 0.45102174046159405, + 1.3535003168241087, + 1.546136601663869, + 1.1158588593186782, + 1.415179606530297, + 1.272301550984743, + 1.1390763130257917, + 1.1896357970728604, + 0.9654383026325657, + 1.2003207221372427, + 0.8074151015499946, + 1.288635861486687, + 1.0088077281147971, + 0.6435070397106617, + 0.7429476699951315, + 1.0090761878540087, + 1.1206071147734646, + 1.3481072411448367, + 1.2323071305865176, + 1.547421548256434, + 1.1988532896098423, + 1.2316819571559314, + 1.3226138909796032, + 1.1157181646553207, + 1.3317423021962655, + 0.9905096094201682, + 0.7005241035025092, + 0.9368704619989683, + 0.8033629562107903, + 0.9472470064346146, + 0.9509787012956735, + 1.239983363984182, + 0.6493642056702591, + 1.135503992540557, + 0.9542640788462221, + 1.0044836916283937, + 1.0016946895795975, + 0.9379293403602271, + 0.7144706347720553, + 0.6330925376940986, + 1.0576674725177684, + 0.9556057089222126, + 0.687444882285043, + 0.5371285091753341, + 1.2579626738505132, + 0.9890781573632149, + 0.36116579637431134, + 0.7412680832305514, + 0.6595401515903889, + 1.4220614391010344, + 1.2232698371096045, + -0.06929131631390939, + 0.8468809075584754, + 0.7170881692927553, + 1.2207043114101837, + 0.3120532310671075, + 0.6575884228735989, + 1.3293094140831592, + 0.6874809780965645, + 1.0468035939814944, + 0.953270192144182, + 0.7425132392310129, + 0.6463987280322695, + 0.692859613918723, + 1.2278333145290947, + 0.7154006281151924, + 0.28030770112843506, + 0.5460334257296503, + 0.6389247459850314, + 0.44519014284163155, + 1.0406410907960941, + 0.5761490094341004, + 0.9011148473579842, + 0.8461659467667405, + 0.7666288892541675, + 0.5963378045418923, + 0.2537930918256813, + 0.6911781398298682, + 0.5764522914671963, + 1.1327354001902363, + 0.44670363317191053, + 0.9785397771641637, + 0.9825587210661861, + 0.6240329195444714, + 0.12112086773148978, + 0.18695288348886552, + 0.707885429068028, + 1.0622626075658645, + 0.6706780927473941, + 0.8547990053103222, + 0.6647773894434807, + 0.7500046691780292, + 0.766509912598808, + 0.47877979116121794, + 0.9436300798471554, + 1.3250483053903344, + 0.4914134395077376, + 0.43526190047339464, + 0.2604635910991742, + 0.7592046818373784, + 0.5922005052035126, + 0.2895251755624092, + 0.922432079292915, + 0.6864605966844147, + 0.22723955230764614, + 1.2044092790062821, + 0.9850516639536182, + 0.35529030755137725, + 0.750381339855877, + 0.6188551539810595, + 0.8603363392797458, + 0.749028043244399, + 0.3274149812800407, + 0.8493536689914586, + 1.0919546721089746, + 0.6329313137813579, + 0.4094649683446602, + 1.4274986817819166, + 0.7610142913989306, + 0.8457890983769785, + 0.8394356895524737, + 0.9082238374198921, + 0.46605857022822117, + 0.6257781912360179, + 0.8576867253007232, + 0.7266389955834133, + 0.5416875803675812, + 0.8610762081937324, + 0.7069017445285724, + 0.3011278248831447, + 0.41921506655662366, + 0.5121909284415964, + 0.6034388547008697, + 0.6762138396795867, + 0.7881251449750015, + 0.7773372142864541, + 0.45814376419477265, + 0.5359759603553711, + 0.48304625519538713, + 0.70668016378369, + 0.9312019354782677, + 0.5520033380178518, + 0.6105265437712175, + -0.09755015318274407, + 0.632584941987404, + 0.8503648594434887, + 0.5213344701898046, + 0.4959505010876586, + 0.45284033370216725, + 0.24152259515718616, + 0.2525054552249248, + 0.5558533930289365, + -0.08143544584464968, + 0.5921349285622026, + 0.6294119303841679, + 0.1346251770032355, + 0.4780587779945899, + 0.3390182371194479, + 0.4362226452219594, + 0.5431695954618541, + 0.5814142289360348, + 0.8074887965043701, + 1.1433625202894344, + 0.08394046854731829, + 0.6885470522889817, + 0.83818550223665, + 0.800717530500866, + -0.07969921711774697, + 0.535285318252511, + 0.6560153468190376, + 0.6753753348862974, + 0.780464557911764, + 0.34512795178005884, + 0.6160413853468748, + 0.6419508469980999, + 0.6890010418869535, + 0.21611888901826237, + 0.6697374827621385, + 0.37194074252147835, + 1.0192369267147106, + 0.707801874535731, + 0.5208720846731448, + 0.5062157004799244, + 0.750967901735005, + 0.4799939664205557, + 0.800698209056531, + 0.5289656115475126, + 0.7975562533426003, + 0.7516756225569861, + 0.9771663645864043, + 0.5971407404431824, + 0.8113698982171582, + 0.8456000847771934, + 0.7642749208662495, + 0.7246742957305453, + 0.24038395014694008, + 0.32401439343835714, + 0.8327383268324134, + 0.6774522434316778, + 0.801319060870202, + 0.6572301587171253, + 0.3416317727301516, + 0.775320738833073, + 0.7280399988331189, + 0.5450282841891915, + 0.7314531185646103, + 0.6718698188270034, + 0.8421425961053228, + 0.9630065766052641, + 0.2616788739303627, + 0.7857603986501115, + 0.3970984434641173, + 0.4932541789341103, + 0.3197418192585541, + 0.8014995266679741, + 0.329064557174465, + 0.45568386654126214, + 0.7264650438536974, + 1.0446176678189134, + 1.270820595377425, + 0.473464191202816, + 0.4587645576703171, + 0.7914956478586388, + 0.6443234708642483, + 0.8300202319803613, + 0.920835726044784, + 0.6989862301168533, + 1.6633097900784706, + 1.153797135502297, + 0.6270297787239794, + 0.42689251527754685, + 0.6561539217098733, + 0.6753751580198133, + 0.8034990436778967, + 0.9213870270859101, + 0.5179565411298612, + 0.6024859065332476, + 0.7788112599734643, + 0.676652676667415, + 0.420482979589443, + 0.8442394197044616, + 0.923436535214851, + 1.5586177073058223, + 0.6371258969398499, + 0.8563957203950543, + 0.7411774301884476, + 1.264007955125716, + 1.1457527487459065, + 1.0301347284501492, + 0.8373785718271709, + 0.8815382946107888, + 0.8516093200899837, + 1.0936828723759282, + 1.151876672328568, + 0.7498144387681142, + 1.1374816470594031, + 1.198746105746266, + 0.9062997759695972, + 0.9454801252019991, + 0.5379071180888256, + 0.6114791702074529, + 1.2292062374133101, + 1.1328192107254007, + 1.0766556987915321, + 1.1473325843963817, + 0.5768595446460243, + 1.591556055447314, + 1.1272170984284604, + 0.8859029821819941, + 1.4120213259976993, + 1.5936421396008065, + 1.208619822918173, + 0.885183367829683, + 1.0308668443103404, + 1.3035207284746955, + 1.0211082717243682, + 1.055651461098012, + 0.9028231753175029, + 1.4429532733209105, + 0.9765772827976228, + 0.7207118157004899, + 1.3398092012259215, + 1.3937564060218142, + 1.2673785702662568, + 0.6227274448349758, + 1.0359481847904837, + 0.7333892719741886, + 0.8561429201812947, + 0.6496070963799367, + 1.3315689520598837, + 1.4819514097016768, + 0.8644121694521503, + 1.4545784509620587, + 0.9635055687839722, + 1.7365837159604687, + 1.1782844123193648, + 1.2482266290774389, + 1.1847821623727528, + 1.4514491192983607, + 0.7524898527688504, + 1.278324165990863, + 1.2349336108360063, + 1.7828716257271369, + 0.9329414578139441, + 1.0363948560058962, + 0.7697447736366703, + 1.613102113511652, + 1.2943801883602284, + 0.8957258181107192, + 1.3397101159089109, + 1.8826273237694453, + 1.118255806228506, + 1.6252019723554914, + 1.2422192591436434, + 1.803539751738634, + 1.4702386079167675, + 1.6701857941740816, + 1.2912691840920028, + 1.2120376901335206, + 1.2862279123693665, + 1.3190999331494928, + 1.1540803502701673, + 1.5502036551360658, + 1.4183106842248132, + 1.1045049995163658, + 1.8708073480738092, + 0.891889917010691, + 1.141265541809749, + 1.7413179174771405, + 1.446392601100004, + 1.454209249790552, + 1.0312685594685544, + 1.483444259738417, + 2.141961495592582, + 1.7815259641987944, + 0.9281996718428145, + 1.6549668859018107, + 1.6350138543362622, + 1.5836134702781905, + 1.5824946616243216, + 1.7205819221348242, + 1.4049410328338816, + 1.406052199409217, + 1.5764822412430892, + 1.5895877921719739, + 2.045325651768441, + 1.6732695522980496, + 1.3947743224507954, + 1.7141625505829758, + 1.578799566342006, + 1.2915406801449645, + 1.358557263122491, + 1.698667491395743, + 2.0108432927361237, + 1.4104657400388712, + 2.0091381756858313, + 2.0194162403355294, + 1.6776300582859887, + 1.9534243745993285, + 1.548344081576893, + 1.8728757577984578, + 1.8173968385651755, + 2.26826882711143, + 1.69059008835442, + 1.7338856232385835, + 2.134102527253135, + 1.6214201403352209, + 2.3132145523278593, + 1.9939035308546436, + 1.3038869878303743, + 1.7614310363947445, + 1.586576488872636, + 1.7054665341726816, + 2.3465139701832674, + 1.6149099973420218, + 2.3323198419604023, + 2.1478219876075912, + 2.001655908090025, + 2.011581282135339, + 2.017660240242367, + 2.3752438491711283, + 2.0162221106114573, + 1.9108038455366485, + 2.2980782600767755, + 1.8959929181899546, + 1.798917351976106, + 1.9216626931210812, + 2.556790561205128, + 2.231010905907408, + 2.177472057691186, + 1.9238921207013053, + 2.0525162945784476, + 2.2444540926065932, + 2.0595816851460556, + 1.9661358224185608, + 2.2503787572649263, + 2.413248295168777, + 2.385778016075489, + 2.295317318250788, + 2.3114142069891574, + 2.4253960387998417, + 2.131121344710707, + 2.415834404065957, + 2.127022559642806, + 2.4668495371009045, + 1.892562682959763, + 2.5065977571001987, + 2.1776330915780995, + 2.3727954080151368, + 2.0108761802593995, + 2.7798986116929196, + 2.6740667228139943, + 2.690429195569701, + 2.307220870121495, + 2.4059308979987937, + 1.9174150294482326, + 1.8465044181751051, + 2.3779205779966817, + 2.4729792387309453, + 2.615796333034922, + 2.041942739037116, + 2.410209196470917, + 2.5095488328941755, + 2.5863965425013036, + 2.6509293406326093, + 2.6632815729134247, + 2.374157302203902, + 2.855883719639, + 2.415341225899171, + 2.724870478794686, + 2.745922340917753, + 2.7432432765819037, + 2.5942547448278277, + 2.7689898108019433, + 2.6625413444229196, + 2.8784246351587637, + 1.9947275869689651, + 2.585538307931011, + 2.6367997041076867, + 2.580039874310167, + 2.5881304320672536, + 2.5063507299277, + 2.3567785257867238, + 2.8706963433370434, + 2.883188957888416, + 2.440730990803496, + 2.692612529636983, + 2.8820698027579827, + 3.011967037232415, + 2.932444386226111, + 2.289844235859195, + 2.4441453294586544, + 2.322987932209645, + 2.585826418468935, + 3.3146683711431884, + 2.442842400496861, + 2.81568250011366, + 3.0878434074588355, + 3.2267146854317454, + 3.6023648724504236, + 3.300589567344734, + 3.365867805864431, + 2.8139125223968455, + 2.657922115859139, + 3.2646846096414026, + 3.1917358343080986, + 2.9394459134007906, + 3.178315949870852, + 3.074874096301762, + 2.8383524092861725, + 3.263237582804862, + 2.718608440210751, + 3.2875846787830953, + 2.7120377045952164, + 3.0414614542751046, + 2.7525918165296885, + 2.9656757856594194, + 3.0887847031329336, + 3.0548121315441517, + 2.9356600604075673, + 3.1061453790890234, + 3.2617097358414053, + 3.4104208219114036, + 3.280897905674742, + 3.0109335266267463, + 3.441680492957625, + 3.7998785435925138, + 3.097970719833574, + 3.3847175993443908, + 3.7404590357461047, + 3.3832374838094808, + 3.912703837885642, + 2.9483586490323734, + 2.8123221210660594, + 3.355550435362682, + 3.951899468984071, + 2.822732675322939, + 3.837499922393107, + 3.4196164075601265, + 3.0994652357913224, + 4.331444448028266, + 3.4082524690199305, + 3.2359296397112995, + 3.5159934300511986, + 3.6237639392608783, + 3.4069402383537084, + 3.4946190528759598, + 4.031500864724535, + 3.977795844250038, + 3.8918058440895464, + 3.1856971162968972, + 3.5341379723393977, + 3.3691861822785514, + 3.541323323493565, + 3.803065311944066, + 3.5970030589481983, + 3.693020864530817, + 3.6536270324052236, + 3.665414700041313, + 3.6757721841457016, + 3.717315248655807, + 3.8347118348180036, + 3.4412909542673105, + 3.919957436095599, + 3.9524673612020385, + 3.94887298842528, + 3.941785706832917, + 3.600758241249899, + 3.4671923970775165, + 3.658398685206676, + 3.807118499221872, + 4.3237902029469355, + 4.2111685482317815, + 3.8025289166786327, + 3.934425508962597, + 4.087981408058951, + 4.805023873720566, + 3.2715534392882226, + 3.46548118558302, + 3.854470409564917, + 4.14365283595385, + 3.8511278603625585, + 3.777532228383968, + 4.028459503475374, + 4.517173015547183, + 4.382801941133801, + 3.9616930366840855, + 3.817851826979713, + 4.092484757418088, + 4.454577317219866, + 3.4760813333478846, + 4.163670435460739, + 4.576111779572162, + 4.141625930730075, + 3.7900726616574847, + 4.193973347529198, + 4.386546595878728, + 4.287575536427119, + 3.5736032966436886, + 4.055370626688977, + 4.90298476336195, + 4.695121414842712, + 4.67023633533025, + 3.374600713173554, + 4.305859313483951, + 4.031913374452636, + 4.01836241230636, + 4.090790226212175, + 3.790457000915939, + 4.323208122172327, + 4.5373048649936365, + 4.31496357614016, + 4.515968901332276, + 3.964486298048326, + 4.441687309613671, + 4.441819532448664, + 4.099861756035474, + 4.173427096689575, + 4.233086242459767, + 4.037480768951392, + 4.279040779166512, + 4.364882992048498, + 4.967672426685856, + 4.301837181244472, + 4.274905468029228, + 4.374492800335753, + 4.201402293723854, + 4.545782210279247, + 4.868176694877172, + 5.217621059191165, + 4.73277300798055, + 4.680189284000467, + 4.842157418586207, + 4.848869716780015, + 4.668743384752808, + 4.5738872473599015, + 4.666463265264572, + 4.715305257873039, + 4.5215043849913235, + 5.643395533756056, + 4.593032125373039, + 4.490571144903065, + 4.348400987796105, + 4.337339691830771, + 4.5765563300395895, + 4.655357557664608, + 5.341319892349252, + 4.508078536308683, + 4.6858242368845096, + 5.515904467100756, + 4.895371641642216, + 5.052685989519754, + 5.239747839309579, + 5.115549487211104, + 5.096436219574536, + 4.7973693459622755, + 4.591537496677719, + 5.206633424260264, + 5.421125438770144, + 5.03495669623709, + 5.250817493803934, + 4.737121323374865, + 5.169677516860976, + 5.020731201678563, + 5.082373243056016, + 5.069150369355748, + 5.00448074982914, + 5.231486929951353, + 4.496475445299708, + 5.482290659556985, + 4.9374121508056765, + 5.287684248061165, + 5.146479831056849, + 5.099835884875821, + 5.235548801496775, + 5.693476176485091, + 4.831308772142987, + 4.989237872071122, + 5.61727038859568, + 5.61033018181973, + 5.212214070280601, + 5.220779760141507, + 5.735999025785585, + 5.652497181703418, + 5.35769187121851, + 5.6951269144468855, + 5.218316495382406, + 5.322994495744985, + 5.704270033318773, + 5.643743487586219, + 5.086751614755329, + 5.363750231968524, + 5.445633497720326, + 5.302343928710935, + 6.289962868960915, + 5.442645276703245, + 4.8240666479147745, + 5.4888610524241175, + 5.72698879211904, + 5.338725734375936, + 4.572873666271805, + 5.637366297238497, + 5.35170269255027, + 5.344019148333162, + 5.356879537240431, + 5.375458754612691, + 5.865167543646679, + 5.508109753101145, + 5.694294682747263, + 5.319753292174729, + 5.475257533387589, + 5.741135416074573, + 5.759760879919451, + 5.038469619143281, + 5.678638167198021, + 5.29028465898631, + 5.487749459992257, + 5.292837601462417, + 5.802150281024714, + 5.660860897236371, + 5.825629164138525, + 5.812451339997968, + 5.255754954156001, + 5.7045379269951715, + 5.5446272963414485, + 6.3071673629948695, + 5.618131232727535, + 5.98062574816135, + 5.95687481008279, + 5.898503965745147, + 5.310485574500577, + 5.230106595353446, + 5.856504205392101, + 6.197270066371456, + 5.373374438603542, + 6.016446434080038, + 5.5700525218345, + 5.673003061543238, + 6.125163335185502, + 5.813280007699922, + 5.814078914678531, + 5.696582488998399, + 5.811178613303343, + 5.904809482341786, + 6.243020002357784, + 5.694478311011557, + 5.68113123359732, + 6.104390385692039, + 6.373584640097763, + 5.980084515433111, + 5.506659870613818, + 5.608875975921575, + 6.184331309986627, + 6.6966156993159505, + 6.078064525151758, + 5.355902933779156, + 5.885763122989865, + 5.910051495632322, + 6.204435299539142, + 5.948988459758329, + 6.234448968691148, + 6.214799884826419, + 5.914132587845237, + 5.803526754968822, + 5.803263521312099, + 6.057566915356732, + 6.372063798659945, + 6.00618564739689, + 5.993207278717047, + 6.468233616578967, + 6.038398059676677, + 6.652822906494535, + 5.848520284200615, + 6.1713360087179705, + 6.028357628956132, + 6.008161461190065, + 6.376810941839928, + 6.030675460076625, + 5.888658841432137, + 5.788864983052032, + 5.71452893581512, + 6.506626540130538, + 6.425913650696783, + 5.70090638862016, + 6.197754431634195, + 6.124103497063705, + 6.22160104899058, + 6.439865501352898, + 6.031530639954782, + 6.257444086651154, + 6.322045290233204, + 6.990707928563062, + 6.037747631585252, + 6.542370227226427, + 6.15540718885184, + 5.63466259337061, + 6.839151089281785, + 6.209003147724996, + 6.21072198376181, + 6.197198189222709, + 6.729913321361613, + 6.149362793409585, + 6.792764048276071, + 6.388039125952355, + 6.217978168335632, + 6.443889008661992, + 5.834437332832062, + 6.209394212162321, + 6.1276878408438025, + 6.957005197942998, + 6.139238574892699, + 6.254837059175958, + 6.34523848834869, + 6.424985865913027, + 6.2698493811333895, + 6.385449591104405, + 6.168614386426184, + 6.558064567020441, + 6.236090921855956, + 6.325857469497639, + 5.771704081384279, + 6.121966287679364, + 6.158982542600368, + 6.195173546619873, + 6.074975662364151, + 5.861369513830352, + 6.494234337316216, + 6.522263260911379, + 6.673909104418732, + 6.636426429673806, + 6.169633352417086, + 6.186903465699729, + 5.964391355245832, + 6.765035674743664, + 6.131603427898614, + 6.2720726039786125, + 6.143777173580033, + 6.645405224021206, + 6.398060882766005, + 6.100466734063662, + 6.404844036983278, + 6.518314903701261, + 6.430181009893346, + 6.227432548453283, + 6.833636572503522, + 6.561331243054866, + 6.2646785222067845, + 6.616875926892978, + 6.145295810616067, + 7.035848272664136, + 6.986851422116891, + 5.8531630773889765, + 6.131349193376214, + 6.089818991203293, + 6.411751512820538, + 6.8763924228011035, + 6.487607631532666, + 6.467336865970543, + 6.2954018773985405, + 6.337359076992478, + 6.57258227974767, + 6.276209398693829, + 6.246680608201837, + 6.177807881382159, + 6.724729104261058, + 6.259866389005006, + 6.361917148105662, + 6.510139297029939, + 6.143889737772358, + 6.905371324062964, + 5.9482751683410715, + 6.639420224194724, + 6.350570143781749, + 5.948247719908805, + 6.71882460230058, + 6.49948179272393, + 6.313688813646735, + 6.126131503186072, + 6.60393692000207, + 6.142815962701206, + 6.851047224959945, + 6.838874314513227, + 6.792297180519644, + 6.713015459497973, + 7.100520296507537, + 6.456660390499899, + 6.563630305646113, + 7.086399964919237, + 6.69178413041909, + 6.967239285204015, + 6.4887937624157015, + 7.062421862438373, + 6.625939901162263, + 6.555240196973282, + 6.51805498929443, + 6.906294783307564, + 6.339577565739172, + 6.419525341987562, + 6.17528471369019, + 6.623739262384474, + 6.5303805574985505, + 6.542260760025293, + 6.737467974876073, + 6.9417372068358505, + 6.5186155601926155, + 6.530796101155476, + 6.402834084386835, + 6.453294829291079, + 6.603636839640714, + 6.050206108825143, + 6.583504609711363, + 6.743228927971866, + 6.862005176938043, + 6.3634913454169615, + 6.465896805399938, + 6.465487825784681, + 6.631904551139548, + 7.0638973232939755, + 6.447751212504038, + 6.66814714902031, + 6.756251614017796, + 6.893625480131377, + 6.381150081299921, + 6.752564103145418, + 6.353016492117781, + 6.585156056639824, + 6.86762890641693, + 6.4423968514880485, + 6.942286507810912, + 6.064397955737021, + 6.797180383297893, + 6.796071684336601, + 7.329818799489565, + 7.131728813908792, + 6.791429899582346, + 6.001242019219382, + 7.0077774808722175, + 6.497698448520931, + 7.180955654577726, + 6.751514563562703, + 5.94203014723156, + 6.708798771048748, + 6.604961204420989, + 6.5083435705965185, + 6.496093404245123, + 6.801620012739621, + 6.735911445955696, + 6.334268615814821, + 6.895659446411404, + 6.63950807962276, + 6.881220707881673, + 6.710460207702346, + 6.415310247528715, + 6.001955551382296, + 6.576709472545601, + 6.361523397389149, + 6.802086798270378, + 6.214400783109505, + 7.036483048054711, + 6.343240476069916, + 5.933761078154476, + 6.826404524111974, + 6.20991975290699, + 6.325728564035645, + 6.281983922683402, + 6.209468463406031, + 7.2677219772397015, + 6.743288744730461, + 6.185739623871013, + 6.460968682238439, + 6.222521199734536, + 6.510957473859824, + 6.354832474750157, + 6.518641962134469, + 6.262757541498213, + 6.120253611120101, + 6.372893643018839, + 7.1797686420761755, + 6.887801011394183, + 6.52212442939958, + 6.494176343451355, + 6.265493364086055, + 6.821494208888781, + 6.383532715446185, + 6.5666503495858395, + 6.111404650101757, + 6.506463622423011, + 6.300263868506393, + 6.237811051817469, + 6.337909388173219, + 6.940806528651143, + 6.374980455720019, + 6.803649667685973, + 6.53814005396568, + 6.068697643597616, + 6.357143501515716, + 6.186298601732898, + 6.653350181751677, + 6.52212602265761, + 6.53160141105086, + 6.24294497627769, + 6.474051422574717, + 6.722221909296468, + 6.4905397857048825, + 6.581409293716393, + 6.638922131514213, + 6.167462193635241, + 6.161822115854564, + 6.021628277864946, + 5.990356032840852, + 5.75615001155307, + 6.077224866025613, + 5.972140973712804, + 6.241404583644993, + 6.406273586435576, + 5.704105367446928, + 6.489457511326892, + 6.756894876231851, + 5.896378526939057, + 6.20313926682123, + 5.8293974868376575, + 6.004792582218916, + 6.643854849025025, + 6.051812315122294, + 6.051848330626364, + 6.396783401507663, + 5.916368539170767, + 6.2216040667888635, + 6.529146876850795, + 5.727164650777429, + 6.323073120796445, + 6.557837641685468, + 6.285228241946908, + 6.122686445642245, + 6.345128865666229, + 5.401203450383093, + 6.150759640848152, + 6.498832456943138, + 6.038605037666936, + 5.809863822162306, + 6.31585666559196, + 5.297902165541373, + 6.016261099865991, + 6.263043753300042, + 6.062102646048524, + 6.017149837093384, + 5.989510048558863, + 5.764927876599402, + 6.395390083266759, + 6.1094129115565865, + 6.088511585261278, + 6.139144561999717, + 5.64755081301194, + 6.022153686166963, + 5.966498516148565, + 6.121893980094646, + 5.413090614687942, + 5.855459630496895, + 5.684485545104062, + 6.023656652017718, + 5.472505414120635, + 5.909233399161082, + 5.844700012924298, + 6.393958738835821, + 5.873838968014109, + 5.716446648056271, + 6.386907488385801, + 6.0412065285553975, + 5.967930392824694, + 6.112271533104244, + 5.914928171930549, + 6.4429176318088315, + 5.649203046221511, + 6.43175534014013, + 6.466326091845988, + 6.3884670666610415, + 5.666217549186803, + 5.844705784487826, + 5.941820037979235, + 6.003738523750162, + 6.27024969926733, + 6.696928606574696, + 5.555252907259159, + 5.500624931152111, + 5.441126513907815, + 5.859809405280378, + 6.195230072893182, + 5.814374670976785, + 6.105647135929575, + 5.635210521561103, + 5.905058399958471, + 5.668639921330709, + 5.515347520270159, + 6.249447075595728, + 5.239170302520369, + 5.635407832135774, + 5.992944373063958, + 6.012223887081681, + 5.436165590580708, + 5.732692269057055, + 5.682511547926845, + 5.111278906385767, + 5.244392713487721, + 5.611244935134297, + 5.377164441075001, + 5.460917423616422, + 5.865148819600873, + 5.741899844023362, + 5.870493677302896, + 5.346073948834649, + 5.591415047993088, + 5.343269887401589, + 5.749920757501078, + 5.191406178368253, + 5.7977022684574875, + 5.325320145807567, + 4.814146114966683, + 5.158497586106079, + 5.504075303149543, + 5.975276067730659, + 5.377741885083138, + 5.137460677989435, + 5.208911474027972, + 5.513022324595638, + 5.735684365455371, + 4.846095702694775, + 5.333005093178598, + 5.424360211470847, + 5.35803592568714, + 5.55742699805258, + 4.46825778030326, + 5.741675149547298, + 5.094032025764594, + 5.66516466078282, + 5.352293814879477, + 5.435973660647165, + 4.997276834795676, + 5.677952023941572, + 5.641726210452781, + 5.178326785036614, + 4.961868579622501, + 5.454045165336319, + 5.009704767303471, + 5.828903585743179, + 5.145090472299309, + 5.514333397301406, + 5.374224854489285, + 4.805863026223288, + 5.264909724272017, + 5.227792571140813, + 5.290475229619403, + 5.304074223229549, + 5.043128367772327, + 5.292153406074965, + 5.23857739616244, + 5.02917959442945, + 5.075973502490593, + 4.642384158259901, + 4.798748149200873, + 5.112876136063889, + 4.715154913547337, + 5.557775183210749, + 5.1389235492953125, + 4.8423430290391245, + 4.883213434188212, + 4.783182918405135, + 4.976048126307786, + 5.311864524027812, + 5.049555841101483, + 5.113249988349153, + 5.161185572137555, + 4.580797618208462, + 5.111226256621986, + 5.1324984888290475, + 5.209178227489453, + 4.615852855874139, + 4.969122417646771, + 4.406147240238429, + 4.405037364508554, + 4.222218982643943, + 4.6701152924918645, + 4.685587789914352, + 4.972350606777323, + 5.230017561940727, + 4.814210802506468, + 4.415329208366938, + 5.334361388965729, + 4.371099348099646, + 4.967983323247783, + 4.640105116632361, + 4.962615890498366, + 4.666046860650838, + 4.5390649447743385, + 4.532686596019847, + 4.560363238739778, + 4.282476141546057, + 4.129294069801618, + 4.240380468916661, + 4.760060844512946, + 4.421761687250275, + 4.319286016273609, + 4.42424482895542, + 4.491258825368088, + 4.264912518234673, + 4.008069111951189, + 4.571902262718868, + 4.317002091674213, + 5.175711236455397, + 4.6953212987535125, + 4.261675528306253, + 4.4139750935772355, + 4.486018834983546, + 4.532669464317203, + 3.743846906126802, + 4.213292120757501, + 4.601539615290022, + 5.08111483963565, + 4.327934474550482, + 3.5663346561730767, + 5.040004654922969, + 4.0066999624647615, + 3.957949774483107, + 3.8544970986480003, + 4.245818782480974, + 4.355238703518702, + 4.300903754210994, + 4.400987799219644, + 4.118337726885536, + 3.8627685743004796, + 4.434247286759614, + 4.030156485072064, + 4.114406945627481, + 3.9170900441940653, + 4.058474183926056, + 3.989272994316158, + 3.7506475825285968, + 3.5275824067629715, + 3.8853148923750775, + 4.569501863749856, + 3.9442892651748283, + 4.0324348672353265, + 3.7206073011127008, + 4.1261939294539145, + 4.1956248942910435, + 3.9427482477018803, + 4.234851335604504, + 3.7131971375614325, + 3.7133135592810005, + 3.6282873551485806, + 3.883148291651614, + 3.8364971058699315, + 4.79155950732112, + 3.5582496204043075, + 4.178835251858144, + 3.8282269947080327, + 4.303597875224795, + 4.1254912577157095, + 3.892285788987805, + 4.108193026405031, + 3.859889432305649, + 3.3049182505848598, + 3.3207661803264883, + 3.4003888275410823, + 3.5833621653633, + 4.114086221704659, + 3.4820048924618825, + 3.9392592366915893, + 3.39721493937635, + 3.3754419982061354, + 3.2886535283807277, + 3.585159990833356, + 3.714475808906172, + 3.894941406570734, + 3.955950357392809, + 3.762802676355467, + 3.81984352952517, + 3.5325964866418476, + 3.229023502651892, + 3.675357598186596, + 3.5878983090246024, + 2.901552159129624, + 4.094839016773857, + 3.2143146999523564, + 3.872124085695023, + 3.084089523411665, + 3.721649336086534, + 3.410664802263108, + 3.3300316062405515, + 3.5772175220684406, + 3.921742545009468, + 2.7451207060959524, + 3.110168510045933, + 3.3758403576099667, + 3.669704309430972, + 3.393061743404404, + 2.9569257127609654, + 3.237421304261908, + 3.28369995635715, + 3.569322843055135, + 3.291252402674923, + 2.603673254845667, + 3.6886568902891765, + 3.0281575563082446, + 3.6399297131757735, + 3.1435111293941898, + 3.167402977042462, + 3.1037210222679947, + 2.6923964738953363, + 3.221361975924637, + 3.207584317079529, + 3.0299420487617885, + 2.852414090340078, + 3.1021365965431595, + 3.030482909170677, + 2.570236313407816, + 3.0561554758637737, + 3.1482082719654763, + 3.0275576147203958, + 2.832592519364779, + 2.7660329242907435, + 3.1122955331809763, + 3.0192068471558615, + 2.954366828880692, + 3.0778597791035223, + 3.1186983178257672, + 2.7673482537831875, + 3.0382811225783373, + 2.4161514083198345, + 2.9976274221274393, + 3.312275838416859, + 2.781978635103201, + 2.8190508618375247, + 3.322542465959873, + 2.5151969043353333, + 2.744934525072957, + 2.670053248727991, + 2.8992737212585578, + 2.635765716910312, + 2.2912139543648378, + 2.5813082370510574, + 2.4336160907564146, + 1.9189229574743671, + 2.9977607840014544, + 1.9246531157052056, + 2.365117468784945, + 2.609048046463001, + 3.0369512953658346, + 2.2612955387928917, + 2.8294969230343403, + 2.3161904412740446, + 2.7012421677401446, + 2.5366205550321115, + 2.7388766304473524, + 2.54140585595967, + 2.0190239699090107, + 2.307430851038846, + 2.628250958282642, + 2.598556585170727, + 2.3690110795217096, + 2.3813522121771533, + 2.806445833669267, + 2.2965374856327396, + 3.01282331074116, + 2.470409957018179, + 2.6690222637637464, + 2.538873994070255, + 2.3948883284078586, + 2.239941681145698, + 2.31176070444379, + 2.034062504388385, + 2.242982304635461, + 2.222658298910561, + 2.0769775000372306, + 2.362885200976848, + 2.505625012922828, + 2.1904365346597343, + 2.343073972363906, + 2.526400930864025, + 2.0777629792197008, + 2.300602101478879, + 2.264307812260189, + 1.5875305950911276, + 2.1006613168480537, + 1.921232568457675, + 2.328321104116478, + 1.9997132760477323, + 2.5786284325764948, + 2.2221101603205033, + 2.609193352611811, + 1.9748223888187302, + 1.9661666246256422, + 1.9870422818351485, + 1.9338157033870509, + 2.19240870455133, + 2.038410768133022, + 2.183724414495366, + 2.6552731318025664, + 2.054155272026388, + 1.8758277964119197, + 2.2007314089307437, + 1.7565355967186664, + 1.5600877054565574, + 1.9737777428724241, + 1.8380313780247404, + 1.7761568707042106, + 2.152131718786022, + 2.2074619027467683, + 1.844016686265382, + 1.93597337614493, + 2.2458796494168407, + 2.0837581888945325, + 1.7955570449644258, + 1.9607583035949254, + 2.067534851500799, + 2.027045069166189, + 2.3466743608277745, + 2.1172627496245466, + 2.2136614674516077, + 1.8503663571953182, + 1.6495668981652816, + 1.3459300854398075, + 1.576198363439671, + 2.131947244394017, + 1.6679684135869435, + 1.302633673383657, + 1.5314221306686184, + 2.1576482291464507, + 2.0846036783121624, + 1.4328573990675766, + 1.341467271032235, + 1.4826120468595159, + 2.1390736773063255, + 2.049237556457499, + 1.7836100113318056, + 1.5130590803766657, + 1.7256788640678744, + 1.6791268080840673, + 1.6650435942735526, + 1.7468222859900266, + 1.8555318903547282, + 1.6354988096361658, + 1.6560460553738698, + 1.532538475881155, + 1.3105900813476616, + 1.3627203500739244, + 1.0009128319280904, + 1.2138815594507872, + 1.1254871223246692, + 1.2671643790705225, + 1.964610604186683, + 1.308696489323932, + 1.4800251475405415, + 1.2073213089269723, + 1.1257761315337242, + 1.3240489472874104, + 1.7747031327851053, + 1.5227359757490544, + 1.9066140457005307, + 1.0923084576573594, + 1.599747327289851, + 1.830785858087031, + 1.496156490494072, + 1.3679550527175395, + 1.018890385844212, + 0.9985948146288504, + 1.6476456290888373, + 1.0740107338354439, + 1.1939016557781488, + 1.840780418676391, + 1.4335871608327242, + 1.572126447388928, + 1.4125858456336113, + 1.2856542852364277, + 1.6330152386179224, + 1.0342250157526516, + 1.4968944927501326, + 1.3410248171206267, + 1.121573734441898, + 1.0874668692503164, + 1.4044132769652031, + 0.9969943385407961, + 1.4330708860117642, + 1.4943281794755385, + 1.4209415740555356, + 0.8408920699182005, + 0.9209160091962022, + 0.986770819203202, + 1.252712642791698, + 0.6704052307301258, + 0.9434321110046645, + 0.8728482155349557, + 1.6274130293986966, + 0.9123595950362106, + 1.2250152309648703, + 1.2391284861395688, + 0.49363071558614335, + 0.6762428419831159, + 0.627837957911745, + 0.9770906456434517, + 1.076179243166649, + 0.3183663002588585, + 0.9795510999721595, + 1.056867071278156, + 0.9636962047287078, + 1.1551957921626426, + 0.19584566842673123, + 1.3641739246314832, + 1.2102943337322818, + 0.3042826942850989, + 0.5897706664372846, + 0.8637896132203587, + 0.6610332787430682, + 0.9866163261742349, + 1.1979512053423291, + 1.8486326693837913, + 0.3568796100434686, + 0.7060765999079832, + 0.8154869748155065, + 0.3544817353763736, + 1.1484076687233573, + 1.2552291685710555, + 0.8149760805114347, + 0.7510318190390458, + 0.32304693854779576, + 0.5166069861875815, + 0.9364617955668991, + 1.0630616041258347, + 1.4762640777464924, + 0.896059541089905, + 0.4835639476341456, + 1.0368371317654814, + 0.8854615061154416, + 0.5630320191746243, + 0.5712252129896475, + 0.5976847499350001, + 0.7984066499518362, + 1.148617163608084, + 1.225256382599845, + 0.521847483937818, + 1.0812550528070926, + 0.6383476442162347, + 0.8938454239394737, + 0.4932109632659802, + 0.9758088815887412, + 0.6590493821210822, + 0.8408682851821293, + 0.8503164404977921, + 0.7642140148317548, + 1.1478083674964015, + 0.7124629960435562, + 0.9720100914317472, + 0.5017442071372228, + 0.2537792509902379, + 0.7730953906805608, + 0.44827549878643186, + 0.5236559421909008, + 0.7184288561620186, + 0.7769459033086356, + 0.2457505502315387, + 0.8848048914952037, + 0.7957554886440439, + 0.4253215316093007, + 1.2046719942348576, + 0.4869330082975278, + 0.5208996875894684, + 1.174600014332837, + 0.5716303449142751, + 0.9203416218383188, + 0.3473105492053579, + 1.1173659216829264, + 1.0358981683021706, + 1.0562534996646789, + 0.5601411211184181, + 0.43567252905488707, + 0.8067331853643684, + 0.4677307382105549, + 0.8706396241473673, + 0.49858954795199495, + 0.6389358437644878, + 0.7264898344911744, + 0.7828972552302138, + 0.5640085812094581, + 0.17552090805893772, + 0.15254215374856828, + 0.7549645786904112, + 0.10378509722602802, + 0.43527528448396247, + 0.7386326151886942, + 0.7218114565445531, + 0.5254745976936609, + 0.782490119700739, + 0.7700373037828501, + 0.5429950970102777, + 0.40676548618253594, + 0.9143512993702205, + 0.5895028960094557, + 0.4137178149734081, + 0.7243678071020915, + 0.3076875307933619, + 0.41349462313506047, + 0.793469464217401, + 0.30067039613964, + 0.9315742071510962, + 0.5002072234151054, + 0.21851513961039903, + 0.5605921993666434, + 0.784639417832081, + 0.7647387855520295, + 1.1897638666920292, + 0.9795170007225686, + 0.42590178439119386, + 0.8022717281191812, + 0.6972845644309869, + 0.9462016448744204, + 0.36906990846645626, + 1.1311355303162385, + 1.0980839302686547, + -0.16419758365324688, + 0.4507619707621252, + 0.8346413324745995, + 0.5929073135000359, + 0.8243812120081456, + 0.7667723847324064, + 0.4253735124739402, + 0.7193613820009044, + 0.3831415736719685, + 0.30576592052097723, + 0.5453572381452005, + 0.16840872330300694, + 0.8453967838778371, + 0.467136916546558, + 0.38579020469777725, + 0.796223675368545, + 0.6075716965483888, + 0.851025950558094, + 0.1362422576514064, + 0.5387526601776338, + 0.6682396587811161, + 0.5693605878479168, + 0.6449120844266042, + 0.7380661313196114, + 0.9339466097609659, + 0.30611765012321585, + 0.4819898740280549, + 0.7246371943259692, + 0.7134781691173717, + -0.18905288331563075, + 0.08634040891309469, + 0.9799307778214639, + 0.6313882202159055, + 0.8748940589957643, + 0.3872373658001225, + 0.667388012730595, + 0.44946118154509584, + 0.9371463656230083, + 1.0796203496948453, + 0.7950003331796776, + 0.11741451419525861, + 0.3573865339014812, + 0.7365506235753427, + 0.7825516591646703, + 0.35546796014820725, + 0.6905178029366559, + 0.23191321437473417, + 1.0822732428687132, + 1.1326315110458247, + 0.6341666328940849, + 0.825754482666911, + 0.13366912269706266, + -0.010096449534635954, + 0.6495711709016773, + 0.8266315930377776, + 0.5694198413598516, + 0.9426386798724014, + 0.9077790583476368, + 0.3155902252424091, + 0.8345213130603839, + 0.5939091596184588, + 0.2423697105003128, + 0.5512072455641822, + 1.4449664878565098, + 0.8248571429399867, + 0.8329709361021751, + 0.7065988180323842, + 0.9837104303433558, + 0.5157059357024095, + -0.13140434022302616, + 0.44956743507474517, + 0.3706189257586768, + 0.821897938080674, + 0.8913962825819628, + 0.02564873338188156, + 0.9620613547940742, + 0.8077495837630239, + 0.7627581456790072, + 1.2458230954138285, + 0.9570714197476972, + 0.5876319865821849, + 0.37132569227899964, + 0.5095070143407812, + 0.8851855781428072, + 0.3272607540183338, + 0.4121276215785315, + 0.3240659019956344, + 0.8985500974695346, + 0.7944867245240417, + 0.29273804688471755, + 0.657115156660108, + 0.17193605295997627, + 1.1272057865716265, + 0.9554804021610862, + 0.5026377282346949, + 0.5205817968005894, + 0.5495792342585906, + 1.0563509151089536, + 0.8037424724711663, + 1.2041978089860046, + 0.6510630795077, + 0.686853938580892, + 0.8046775559339117, + 0.7632826178580298, + 1.2065122368486851, + 0.5584538621824519, + 0.9277333560736286, + 0.9476123458554829, + 0.7970157734241057, + 0.9483149901225766, + 0.7554348316879673, + 0.7558183137502137, + 0.604236013830155, + 0.6210334877407169, + 1.3340312709261906, + 0.4743171967803887, + 1.3277953144818773, + 1.2577648892520994, + 1.1234672338685934, + 1.3596697369413688, + 1.1967756266808143, + 0.4661289157523561, + 0.927004717807809, + 0.7419188573347545, + 0.8162667083660268, + 0.699690741944608, + 0.8806471219387286, + 1.0037105805043436, + 1.4432288040932366, + 0.5232128189318597, + 1.4623718775445398, + 0.5764810502087874, + 0.7250634536146645, + 0.8336460878484659, + 1.4127269729856586, + 0.7682260352269932, + 1.5358827372732575, + 1.4097960120720179, + 1.0845253027337083, + 1.053310266573102, + 1.3573385597544956, + 0.7698766787404052, + 1.137095159817054, + 0.718842834069146, + 1.1271924584227035, + 1.0042926825584666, + 0.7288178144731179, + 1.3266082672484016, + 0.7544060086574216, + 0.6502291584286054, + 1.3739197311640228, + 0.549064819283956, + 0.6582068192393871, + 1.3533704909422732, + 0.9177591057488506, + 0.9216903955862473, + 1.1805766855423887, + 1.277432799124082, + 0.9739732045512851, + 1.4276933733167707, + 1.6323093976830598, + 1.08766768593151, + 0.9414996169695755, + 0.7659761463400635, + 1.398636297678209, + 1.4722874493768348, + 0.9897711920394165, + 1.2653500548536185, + 1.2145626641306901, + 1.180886242471123, + 0.8749492678446273, + 0.8671181368511407, + 1.7949727029055376, + 1.5874677883518626, + 1.274193966163785, + 1.1625662018288685, + 1.9170064762299899, + 1.0667397057495351, + 1.232701285967576, + 1.1451456072088826, + 1.4243149665958015, + 1.343912010241273, + 1.4733795767599536, + 1.6988733576417165, + 1.164524333556419, + 1.401798502070948, + 1.3373123321601845, + 1.0181047220348072, + 1.5732847026061414, + 1.5785182897463013, + 1.552726331312859, + 1.3307947168953707, + 1.6953280807483948, + 1.5680786344282596, + 1.6039889095189073, + 1.9541475621208992, + 1.322761045979767, + 1.9638422873704982, + 1.310331749922535, + 1.4364581822353923, + 1.5078558519378726, + 1.4136625386243957, + 2.134566496840492, + 1.4501788097590345, + 1.3852155928002505, + 1.7120646743294794, + 1.4614504008864149, + 1.1186032023646768, + 1.4722907358897952, + 1.4959741147063097, + 1.9090727244774293, + 1.3775627474691583, + 1.5576724473914245, + 1.7046731332135168, + 1.3619159524332645, + 1.207065462457538, + 1.752866907213921, + 1.9155756556664383, + 1.69065796228453, + 1.4007762425753731, + 1.244582178419393, + 1.907156839519494, + 1.8483300527135464, + 1.7176008965022418, + 2.1712015095617434, + 1.6224054484609542, + 2.296912707181958, + 1.8762090690078832, + 2.080982337070745, + 1.621486083513381, + 1.9611341217232985, + 2.3315140467391693, + 1.8932426960592008, + 2.355301630257741, + 2.0129741808705086, + 2.5057128575093035, + 1.5240872792626559, + 1.9370905410420787, + 2.046629389685645, + 2.00464738841604, + 1.2535100204863698, + 2.2707739710603168, + 2.3768793809776367, + 1.4268250751896314, + 1.9789039802884991, + 1.919325729055281, + 2.2554431638186556, + 1.5798576661657622, + 2.142976811807302, + 2.0980747711675702, + 2.2703711005634264, + 2.1398159464593163, + 2.06292532170968, + 1.936187030613654, + 1.3008452248829478, + 2.544183420081039, + 2.1302853463996594, + 2.3494510303728497, + 2.302641683061121, + 2.438392687427211, + 2.4919523748669055, + 2.3683072623843255, + 2.7132365229201625, + 2.428449912734847, + 2.104726522333832, + 2.6467580036191194, + 2.5872198063337124, + 2.2097713956487803, + 1.9252836218932043, + 2.137353505020595, + 2.542021114404128, + 2.461044803018127, + 2.1920436993969155, + 2.5119768122463237, + 2.2850265257659723, + 2.3030186419089356, + 1.7380122861692178, + 2.42674313327547, + 1.7640041141761467, + 2.3312358881588713, + 1.979445338249915, + 2.7429274963685004, + 2.5099784528890825, + 2.847351736306256, + 2.1236731868253185, + 2.2729719516259617, + 2.340847716932728, + 3.1888956787667473, + 2.8671141805285614, + 2.0930943023445865, + 2.0501513978636794, + 2.644375455434015, + 2.7222128803333088, + 2.6813392021849074, + 3.2473505356675876, + 2.2986817363122536, + 2.175907913418831, + 3.172084708388102, + 2.8254673972248585, + 2.3749118036564125, + 2.593208756299269, + 2.7491433911145218, + 2.61974317782857, + 2.6191823665631717, + 2.4851957003929237, + 2.726048697521274, + 2.5080302299978925, + 2.9560185343023138, + 2.6049369417800086, + 2.2722697916178127, + 2.543722294899474, + 2.938782021102529, + 2.5514165830331477, + 2.8976044211171463, + 2.553362095494919 + ] + }, + { + "mode": "lines", + "name": "target", + "type": "scatter", + "x": [ + "2019-01-01T00:02:42.000000000", + "2019-01-01T00:02:59.000000000", + "2019-01-01T00:04:03.000000000", + "2019-01-01T00:04:24.000000000", + "2019-01-01T00:05:47.000000000", + "2019-01-01T00:06:20.000000000", + "2019-01-01T00:06:54.000000000", + "2019-01-01T00:07:44.000000000", + "2019-01-01T00:07:47.000000000", + "2019-01-01T00:07:55.000000000", + "2019-01-01T00:11:11.000000000", + "2019-01-01T00:12:34.000000000", + "2019-01-01T00:14:15.000000000", + "2019-01-01T00:15:26.000000000", + "2019-01-01T00:15:55.000000000", + "2019-01-01T00:16:54.000000000", + "2019-01-01T00:17:26.000000000", + "2019-01-01T00:18:13.000000000", + "2019-01-01T00:18:32.000000000", + "2019-01-01T00:20:11.000000000", + "2019-01-01T00:20:40.000000000", + "2019-01-01T00:24:09.000000000", + "2019-01-01T00:24:38.000000000", + "2019-01-01T00:25:34.000000000", + "2019-01-01T00:26:16.000000000", + "2019-01-01T00:28:27.000000000", + "2019-01-01T00:28:42.000000000", + "2019-01-01T00:29:14.000000000", + "2019-01-01T00:32:11.000000000", + "2019-01-01T00:32:18.000000000", + "2019-01-01T00:32:45.000000000", + "2019-01-01T00:34:28.000000000", + "2019-01-01T00:34:36.000000000", + "2019-01-01T00:35:03.000000000", + "2019-01-01T00:35:18.000000000", + "2019-01-01T00:36:00.000000000", + "2019-01-01T00:36:17.000000000", + "2019-01-01T00:36:24.000000000", + "2019-01-01T00:38:59.000000000", + "2019-01-01T00:41:06.000000000", + "2019-01-01T00:41:33.000000000", + "2019-01-01T00:41:48.000000000", + "2019-01-01T00:44:17.000000000", + "2019-01-01T00:44:51.000000000", + "2019-01-01T00:44:56.000000000", + "2019-01-01T00:47:19.000000000", + "2019-01-01T00:47:28.000000000", + "2019-01-01T00:47:29.000000000", + "2019-01-01T00:47:47.000000000", + "2019-01-01T00:48:43.000000000", + "2019-01-01T00:49:34.000000000", + "2019-01-01T00:51:50.000000000", + "2019-01-01T00:52:27.000000000", + "2019-01-01T00:53:52.000000000", + "2019-01-01T00:54:55.000000000", + "2019-01-01T00:57:00.000000000", + "2019-01-01T00:57:40.000000000", + "2019-01-01T00:58:07.000000000", + "2019-01-01T01:00:33.000000000", + "2019-01-01T01:00:36.000000000", + "2019-01-01T01:00:59.000000000", + "2019-01-01T01:03:43.000000000", + "2019-01-01T01:04:12.000000000", + "2019-01-01T01:04:52.000000000", + "2019-01-01T01:05:42.000000000", + "2019-01-01T01:05:45.000000000", + "2019-01-01T01:07:39.000000000", + "2019-01-01T01:07:43.000000000", + "2019-01-01T01:10:13.000000000", + "2019-01-01T01:10:43.000000000", + "2019-01-01T01:11:03.000000000", + "2019-01-01T01:11:25.000000000", + "2019-01-01T01:12:01.000000000", + "2019-01-01T01:12:30.000000000", + "2019-01-01T01:15:29.000000000", + "2019-01-01T01:15:42.000000000", + "2019-01-01T01:16:23.000000000", + "2019-01-01T01:16:36.000000000", + "2019-01-01T01:18:40.000000000", + "2019-01-01T01:18:44.000000000", + "2019-01-01T01:21:30.000000000", + "2019-01-01T01:22:31.000000000", + "2019-01-01T01:23:29.000000000", + "2019-01-01T01:23:41.000000000", + "2019-01-01T01:27:51.000000000", + "2019-01-01T01:27:54.000000000", + "2019-01-01T01:27:58.000000000", + "2019-01-01T01:28:34.000000000", + "2019-01-01T01:29:07.000000000", + "2019-01-01T01:31:55.000000000", + "2019-01-01T01:32:20.000000000", + "2019-01-01T01:33:18.000000000", + "2019-01-01T01:34:22.000000000", + "2019-01-01T01:34:33.000000000", + "2019-01-01T01:35:06.000000000", + "2019-01-01T01:35:12.000000000", + "2019-01-01T01:36:18.000000000", + "2019-01-01T01:36:26.000000000", + "2019-01-01T01:38:28.000000000", + "2019-01-01T01:39:00.000000000", + "2019-01-01T01:39:53.000000000", + "2019-01-01T01:40:42.000000000", + "2019-01-01T01:42:50.000000000", + "2019-01-01T01:42:52.000000000", + "2019-01-01T01:43:40.000000000", + "2019-01-01T01:46:57.000000000", + "2019-01-01T01:47:56.000000000", + "2019-01-01T01:49:05.000000000", + "2019-01-01T01:49:08.000000000", + "2019-01-01T01:50:34.000000000", + "2019-01-01T01:51:35.000000000", + "2019-01-01T01:52:38.000000000", + "2019-01-01T01:52:48.000000000", + "2019-01-01T01:53:36.000000000", + "2019-01-01T01:55:22.000000000", + "2019-01-01T01:57:54.000000000", + "2019-01-01T01:58:37.000000000", + "2019-01-01T02:00:16.000000000", + "2019-01-01T02:00:30.000000000", + "2019-01-01T02:00:32.000000000", + "2019-01-01T02:01:51.000000000", + "2019-01-01T02:02:14.000000000", + "2019-01-01T02:02:49.000000000", + "2019-01-01T02:04:11.000000000", + "2019-01-01T02:06:21.000000000", + "2019-01-01T02:08:03.000000000", + "2019-01-01T02:08:26.000000000", + "2019-01-01T02:08:35.000000000", + "2019-01-01T02:09:18.000000000", + "2019-01-01T02:09:45.000000000", + "2019-01-01T02:10:01.000000000", + "2019-01-01T02:10:28.000000000", + "2019-01-01T02:10:50.000000000", + "2019-01-01T02:11:23.000000000", + "2019-01-01T02:12:37.000000000", + "2019-01-01T02:12:51.000000000", + "2019-01-01T02:13:07.000000000", + "2019-01-01T02:13:42.000000000", + "2019-01-01T02:18:18.000000000", + "2019-01-01T02:20:15.000000000", + "2019-01-01T02:20:58.000000000", + "2019-01-01T02:23:27.000000000", + "2019-01-01T02:24:09.000000000", + "2019-01-01T02:25:07.000000000", + "2019-01-01T02:25:45.000000000", + "2019-01-01T02:27:48.000000000", + "2019-01-01T02:30:26.000000000", + "2019-01-01T02:31:48.000000000", + "2019-01-01T02:32:34.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:32:39.000000000", + "2019-01-01T02:33:18.000000000", + "2019-01-01T02:33:49.000000000", + "2019-01-01T02:36:02.000000000", + "2019-01-01T02:37:39.000000000", + "2019-01-01T02:38:55.000000000", + "2019-01-01T02:39:30.000000000", + "2019-01-01T02:39:33.000000000", + "2019-01-01T02:40:05.000000000", + "2019-01-01T02:40:54.000000000", + "2019-01-01T02:41:40.000000000", + "2019-01-01T02:41:49.000000000", + "2019-01-01T02:43:24.000000000", + "2019-01-01T02:44:04.000000000", + "2019-01-01T02:44:45.000000000", + "2019-01-01T02:44:48.000000000", + "2019-01-01T02:45:01.000000000", + "2019-01-01T02:48:17.000000000", + "2019-01-01T02:49:20.000000000", + "2019-01-01T02:49:50.000000000", + "2019-01-01T02:50:18.000000000", + "2019-01-01T02:50:31.000000000", + "2019-01-01T02:51:59.000000000", + "2019-01-01T02:52:13.000000000", + "2019-01-01T02:52:16.000000000", + "2019-01-01T02:53:10.000000000", + "2019-01-01T02:57:45.000000000", + "2019-01-01T02:57:47.000000000", + "2019-01-01T02:58:12.000000000", + "2019-01-01T02:59:06.000000000", + "2019-01-01T02:59:08.000000000", + "2019-01-01T03:00:16.000000000", + "2019-01-01T03:01:18.000000000", + "2019-01-01T03:02:31.000000000", + "2019-01-01T03:02:50.000000000", + "2019-01-01T03:05:15.000000000", + "2019-01-01T03:06:30.000000000", + "2019-01-01T03:06:57.000000000", + "2019-01-01T03:07:04.000000000", + "2019-01-01T03:07:17.000000000", + "2019-01-01T03:07:30.000000000", + "2019-01-01T03:08:42.000000000", + "2019-01-01T03:09:36.000000000", + "2019-01-01T03:11:54.000000000", + "2019-01-01T03:12:40.000000000", + "2019-01-01T03:14:09.000000000", + "2019-01-01T03:16:10.000000000", + "2019-01-01T03:18:31.000000000", + "2019-01-01T03:19:42.000000000", + "2019-01-01T03:24:27.000000000", + "2019-01-01T03:27:10.000000000", + "2019-01-01T03:27:13.000000000", + "2019-01-01T03:31:09.000000000", + "2019-01-01T03:31:33.000000000", + "2019-01-01T03:32:06.000000000", + "2019-01-01T03:36:55.000000000", + "2019-01-01T03:37:00.000000000", + "2019-01-01T03:38:47.000000000", + "2019-01-01T03:38:57.000000000", + "2019-01-01T03:39:12.000000000", + "2019-01-01T03:49:46.000000000", + "2019-01-01T03:50:20.000000000", + "2019-01-01T03:50:31.000000000", + "2019-01-01T03:50:39.000000000", + "2019-01-01T03:50:45.000000000", + "2019-01-01T03:52:18.000000000", + "2019-01-01T03:52:40.000000000", + "2019-01-01T03:54:13.000000000", + "2019-01-01T03:54:49.000000000", + "2019-01-01T03:55:12.000000000", + "2019-01-01T03:55:41.000000000", + "2019-01-01T03:57:07.000000000", + "2019-01-01T03:57:15.000000000", + "2019-01-01T03:57:18.000000000", + "2019-01-01T03:58:25.000000000", + "2019-01-01T04:01:58.000000000", + "2019-01-01T04:02:15.000000000", + "2019-01-01T04:03:13.000000000", + "2019-01-01T04:04:04.000000000", + "2019-01-01T04:08:12.000000000", + "2019-01-01T04:08:27.000000000", + "2019-01-01T04:09:00.000000000", + "2019-01-01T04:09:33.000000000", + "2019-01-01T04:10:57.000000000", + "2019-01-01T04:13:39.000000000", + "2019-01-01T04:14:50.000000000", + "2019-01-01T04:15:23.000000000", + "2019-01-01T04:17:45.000000000", + "2019-01-01T04:19:42.000000000", + "2019-01-01T04:20:28.000000000", + "2019-01-01T04:21:00.000000000", + "2019-01-01T04:21:26.000000000", + "2019-01-01T04:22:36.000000000", + "2019-01-01T04:24:07.000000000", + "2019-01-01T04:24:29.000000000", + "2019-01-01T04:25:17.000000000", + "2019-01-01T04:26:29.000000000", + "2019-01-01T04:27:18.000000000", + "2019-01-01T04:27:19.000000000", + "2019-01-01T04:28:14.000000000", + "2019-01-01T04:28:40.000000000", + "2019-01-01T04:30:07.000000000", + "2019-01-01T04:30:17.000000000", + "2019-01-01T04:30:41.000000000", + "2019-01-01T04:33:18.000000000", + "2019-01-01T04:34:49.000000000", + "2019-01-01T04:35:36.000000000", + "2019-01-01T04:35:47.000000000", + "2019-01-01T04:35:57.000000000", + "2019-01-01T04:36:05.000000000", + "2019-01-01T04:36:10.000000000", + "2019-01-01T04:36:22.000000000", + "2019-01-01T04:36:37.000000000", + "2019-01-01T04:38:44.000000000", + "2019-01-01T04:39:22.000000000", + "2019-01-01T04:39:34.000000000", + "2019-01-01T04:40:33.000000000", + "2019-01-01T04:40:38.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:41:43.000000000", + "2019-01-01T04:42:22.000000000", + "2019-01-01T04:43:26.000000000", + "2019-01-01T04:44:02.000000000", + "2019-01-01T04:44:24.000000000", + "2019-01-01T04:44:52.000000000", + "2019-01-01T04:44:59.000000000", + "2019-01-01T04:46:34.000000000", + "2019-01-01T04:48:35.000000000", + "2019-01-01T04:49:28.000000000", + "2019-01-01T04:49:44.000000000", + "2019-01-01T04:49:58.000000000", + "2019-01-01T04:50:34.000000000", + "2019-01-01T04:53:00.000000000", + "2019-01-01T04:53:34.000000000", + "2019-01-01T04:55:24.000000000", + "2019-01-01T04:55:28.000000000", + "2019-01-01T04:55:29.000000000", + "2019-01-01T04:56:18.000000000", + "2019-01-01T04:57:06.000000000", + "2019-01-01T04:57:11.000000000", + "2019-01-01T05:00:55.000000000", + "2019-01-01T05:01:46.000000000", + "2019-01-01T05:02:42.000000000", + "2019-01-01T05:03:21.000000000", + "2019-01-01T05:04:16.000000000", + "2019-01-01T05:04:24.000000000", + "2019-01-01T05:10:08.000000000", + "2019-01-01T05:11:57.000000000", + "2019-01-01T05:14:53.000000000", + "2019-01-01T05:14:58.000000000", + "2019-01-01T05:19:08.000000000", + "2019-01-01T05:20:27.000000000", + "2019-01-01T05:21:05.000000000", + "2019-01-01T05:21:15.000000000", + "2019-01-01T05:21:33.000000000", + "2019-01-01T05:25:05.000000000", + "2019-01-01T05:25:10.000000000", + "2019-01-01T05:25:39.000000000", + "2019-01-01T05:25:45.000000000", + "2019-01-01T05:26:35.000000000", + "2019-01-01T05:27:41.000000000", + "2019-01-01T05:30:44.000000000", + "2019-01-01T05:35:30.000000000", + "2019-01-01T05:35:32.000000000", + "2019-01-01T05:36:03.000000000", + "2019-01-01T05:36:07.000000000", + "2019-01-01T05:37:12.000000000", + "2019-01-01T05:39:00.000000000", + "2019-01-01T05:39:04.000000000", + "2019-01-01T05:39:37.000000000", + "2019-01-01T05:40:39.000000000", + "2019-01-01T05:41:45.000000000", + "2019-01-01T05:43:52.000000000", + "2019-01-01T05:45:07.000000000", + "2019-01-01T05:46:13.000000000", + "2019-01-01T05:48:40.000000000", + "2019-01-01T05:48:44.000000000", + "2019-01-01T05:49:17.000000000", + "2019-01-01T05:50:05.000000000", + "2019-01-01T05:50:11.000000000", + "2019-01-01T05:50:16.000000000", + "2019-01-01T05:50:31.000000000", + "2019-01-01T05:51:45.000000000", + "2019-01-01T05:52:21.000000000", + "2019-01-01T05:53:11.000000000", + "2019-01-01T05:55:59.000000000", + "2019-01-01T05:56:12.000000000", + "2019-01-01T05:56:35.000000000", + "2019-01-01T05:57:20.000000000", + "2019-01-01T05:57:49.000000000", + "2019-01-01T05:58:57.000000000", + "2019-01-01T05:59:12.000000000", + "2019-01-01T06:00:20.000000000", + "2019-01-01T06:00:21.000000000", + "2019-01-01T06:01:00.000000000", + "2019-01-01T06:02:23.000000000", + "2019-01-01T06:02:34.000000000", + "2019-01-01T06:02:38.000000000", + "2019-01-01T06:03:49.000000000", + "2019-01-01T06:05:10.000000000", + "2019-01-01T06:05:30.000000000", + "2019-01-01T06:07:32.000000000", + "2019-01-01T06:08:10.000000000", + "2019-01-01T06:09:35.000000000", + "2019-01-01T06:12:25.000000000", + "2019-01-01T06:12:26.000000000", + "2019-01-01T06:12:56.000000000", + "2019-01-01T06:13:03.000000000", + "2019-01-01T06:15:09.000000000", + "2019-01-01T06:15:28.000000000", + "2019-01-01T06:15:53.000000000", + "2019-01-01T06:16:56.000000000", + "2019-01-01T06:17:39.000000000", + "2019-01-01T06:18:20.000000000", + "2019-01-01T06:18:27.000000000", + "2019-01-01T06:18:56.000000000", + "2019-01-01T06:19:23.000000000", + "2019-01-01T06:19:35.000000000", + "2019-01-01T06:19:56.000000000", + "2019-01-01T06:20:07.000000000", + "2019-01-01T06:21:21.000000000", + "2019-01-01T06:21:26.000000000", + "2019-01-01T06:22:09.000000000", + "2019-01-01T06:23:56.000000000", + "2019-01-01T06:24:36.000000000", + "2019-01-01T06:25:11.000000000", + "2019-01-01T06:26:24.000000000", + "2019-01-01T06:27:47.000000000", + "2019-01-01T06:28:18.000000000", + "2019-01-01T06:29:14.000000000", + "2019-01-01T06:29:22.000000000", + "2019-01-01T06:30:42.000000000", + "2019-01-01T06:31:47.000000000", + "2019-01-01T06:31:51.000000000", + "2019-01-01T06:31:54.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:32:03.000000000", + "2019-01-01T06:35:17.000000000", + "2019-01-01T06:35:30.000000000", + "2019-01-01T06:38:02.000000000", + "2019-01-01T06:39:21.000000000", + "2019-01-01T06:39:39.000000000", + "2019-01-01T06:40:15.000000000", + "2019-01-01T06:40:29.000000000", + "2019-01-01T06:41:55.000000000", + "2019-01-01T06:43:05.000000000", + "2019-01-01T06:43:25.000000000", + "2019-01-01T06:43:28.000000000", + "2019-01-01T06:45:16.000000000", + "2019-01-01T06:46:34.000000000", + "2019-01-01T06:47:08.000000000", + "2019-01-01T06:50:42.000000000", + "2019-01-01T06:51:23.000000000", + "2019-01-01T06:52:20.000000000", + "2019-01-01T06:52:24.000000000", + "2019-01-01T06:52:44.000000000", + "2019-01-01T06:52:47.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:54:36.000000000", + "2019-01-01T06:55:08.000000000", + "2019-01-01T06:55:49.000000000", + "2019-01-01T06:56:28.000000000", + "2019-01-01T06:56:33.000000000", + "2019-01-01T06:57:51.000000000", + "2019-01-01T07:00:11.000000000", + "2019-01-01T07:01:31.000000000", + "2019-01-01T07:02:30.000000000", + "2019-01-01T07:04:06.000000000", + "2019-01-01T07:04:31.000000000", + "2019-01-01T07:05:15.000000000", + "2019-01-01T07:05:27.000000000", + "2019-01-01T07:05:49.000000000", + "2019-01-01T07:06:17.000000000", + "2019-01-01T07:06:26.000000000", + "2019-01-01T07:07:31.000000000", + "2019-01-01T07:09:21.000000000", + "2019-01-01T07:12:19.000000000", + "2019-01-01T07:12:26.000000000", + "2019-01-01T07:13:56.000000000", + "2019-01-01T07:15:03.000000000", + "2019-01-01T07:17:28.000000000", + "2019-01-01T07:18:04.000000000", + "2019-01-01T07:18:56.000000000", + "2019-01-01T07:19:21.000000000", + "2019-01-01T07:19:46.000000000", + "2019-01-01T07:20:31.000000000", + "2019-01-01T07:21:47.000000000", + "2019-01-01T07:24:25.000000000", + "2019-01-01T07:25:25.000000000", + "2019-01-01T07:25:42.000000000", + "2019-01-01T07:27:45.000000000", + "2019-01-01T07:30:45.000000000", + "2019-01-01T07:31:25.000000000", + "2019-01-01T07:31:33.000000000", + "2019-01-01T07:33:28.000000000", + "2019-01-01T07:35:13.000000000", + "2019-01-01T07:37:16.000000000", + "2019-01-01T07:40:34.000000000", + "2019-01-01T07:40:45.000000000", + "2019-01-01T07:40:56.000000000", + "2019-01-01T07:40:59.000000000", + "2019-01-01T07:41:00.000000000", + "2019-01-01T07:41:59.000000000", + "2019-01-01T07:42:38.000000000", + "2019-01-01T07:42:48.000000000", + "2019-01-01T07:42:52.000000000", + "2019-01-01T07:43:41.000000000", + "2019-01-01T07:44:49.000000000", + "2019-01-01T07:46:28.000000000", + "2019-01-01T07:48:34.000000000", + "2019-01-01T07:52:21.000000000", + "2019-01-01T07:52:59.000000000", + "2019-01-01T07:54:07.000000000", + "2019-01-01T07:55:16.000000000", + "2019-01-01T07:57:04.000000000", + "2019-01-01T07:58:08.000000000", + "2019-01-01T07:58:18.000000000", + "2019-01-01T07:58:55.000000000", + "2019-01-01T08:00:30.000000000", + "2019-01-01T08:04:08.000000000", + "2019-01-01T08:04:46.000000000", + "2019-01-01T08:05:49.000000000", + "2019-01-01T08:06:01.000000000", + "2019-01-01T08:06:54.000000000", + "2019-01-01T08:08:15.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:08:55.000000000", + "2019-01-01T08:11:33.000000000", + "2019-01-01T08:11:47.000000000", + "2019-01-01T08:12:03.000000000", + "2019-01-01T08:12:53.000000000", + "2019-01-01T08:13:17.000000000", + "2019-01-01T08:13:31.000000000", + "2019-01-01T08:14:10.000000000", + "2019-01-01T08:15:24.000000000", + "2019-01-01T08:16:02.000000000", + "2019-01-01T08:16:30.000000000", + "2019-01-01T08:18:19.000000000", + "2019-01-01T08:18:51.000000000", + "2019-01-01T08:19:43.000000000", + "2019-01-01T08:20:02.000000000", + "2019-01-01T08:23:31.000000000", + "2019-01-01T08:24:37.000000000", + "2019-01-01T08:25:06.000000000", + "2019-01-01T08:25:19.000000000", + "2019-01-01T08:26:39.000000000", + "2019-01-01T08:27:52.000000000", + "2019-01-01T08:28:57.000000000", + "2019-01-01T08:29:44.000000000", + "2019-01-01T08:31:48.000000000", + "2019-01-01T08:32:26.000000000", + "2019-01-01T08:33:39.000000000", + "2019-01-01T08:34:11.000000000", + "2019-01-01T08:34:22.000000000", + "2019-01-01T08:35:40.000000000", + "2019-01-01T08:36:29.000000000", + "2019-01-01T08:37:39.000000000", + "2019-01-01T08:38:36.000000000", + "2019-01-01T08:40:08.000000000", + "2019-01-01T08:42:51.000000000", + "2019-01-01T08:43:20.000000000", + "2019-01-01T08:44:20.000000000", + "2019-01-01T08:44:52.000000000", + "2019-01-01T08:45:35.000000000", + "2019-01-01T08:49:10.000000000", + "2019-01-01T08:49:34.000000000", + "2019-01-01T08:49:36.000000000", + "2019-01-01T08:49:56.000000000", + "2019-01-01T08:50:29.000000000", + "2019-01-01T08:51:09.000000000", + "2019-01-01T08:51:37.000000000", + "2019-01-01T08:52:25.000000000", + "2019-01-01T08:52:39.000000000", + "2019-01-01T08:53:09.000000000", + "2019-01-01T08:55:15.000000000", + "2019-01-01T08:57:16.000000000", + "2019-01-01T08:57:29.000000000", + "2019-01-01T08:57:56.000000000", + "2019-01-01T08:59:55.000000000", + "2019-01-01T09:00:54.000000000", + "2019-01-01T09:01:24.000000000", + "2019-01-01T09:01:29.000000000", + "2019-01-01T09:02:12.000000000", + "2019-01-01T09:03:24.000000000", + "2019-01-01T09:04:03.000000000", + "2019-01-01T09:04:55.000000000", + "2019-01-01T09:05:05.000000000", + "2019-01-01T09:05:18.000000000", + "2019-01-01T09:06:33.000000000", + "2019-01-01T09:10:15.000000000", + "2019-01-01T09:13:49.000000000", + "2019-01-01T09:14:59.000000000", + "2019-01-01T09:16:48.000000000", + "2019-01-01T09:17:01.000000000", + "2019-01-01T09:17:06.000000000", + "2019-01-01T09:18:34.000000000", + "2019-01-01T09:19:35.000000000", + "2019-01-01T09:20:33.000000000", + "2019-01-01T09:20:53.000000000", + "2019-01-01T09:21:43.000000000", + "2019-01-01T09:24:16.000000000", + "2019-01-01T09:25:05.000000000", + "2019-01-01T09:25:44.000000000", + "2019-01-01T09:26:30.000000000", + "2019-01-01T09:27:13.000000000", + "2019-01-01T09:30:16.000000000", + "2019-01-01T09:30:19.000000000", + "2019-01-01T09:31:42.000000000", + "2019-01-01T09:32:19.000000000", + "2019-01-01T09:33:27.000000000", + "2019-01-01T09:33:44.000000000", + "2019-01-01T09:36:24.000000000", + "2019-01-01T09:37:53.000000000", + "2019-01-01T09:42:07.000000000", + "2019-01-01T09:43:32.000000000", + "2019-01-01T09:43:38.000000000", + "2019-01-01T09:44:02.000000000", + "2019-01-01T09:44:10.000000000", + "2019-01-01T09:44:55.000000000", + "2019-01-01T09:45:05.000000000", + "2019-01-01T09:45:12.000000000", + "2019-01-01T09:45:26.000000000", + "2019-01-01T09:45:47.000000000", + "2019-01-01T09:45:55.000000000", + "2019-01-01T09:49:15.000000000", + "2019-01-01T09:49:27.000000000", + "2019-01-01T09:50:02.000000000", + "2019-01-01T09:53:04.000000000", + "2019-01-01T09:53:19.000000000", + "2019-01-01T09:55:17.000000000", + "2019-01-01T09:56:17.000000000", + "2019-01-01T09:57:18.000000000", + "2019-01-01T09:59:07.000000000", + "2019-01-01T09:59:32.000000000", + "2019-01-01T10:00:22.000000000", + "2019-01-01T10:00:43.000000000", + "2019-01-01T10:01:05.000000000", + "2019-01-01T10:01:11.000000000", + "2019-01-01T10:02:19.000000000", + "2019-01-01T10:02:34.000000000", + "2019-01-01T10:03:22.000000000", + "2019-01-01T10:05:03.000000000", + "2019-01-01T10:05:16.000000000", + "2019-01-01T10:06:34.000000000", + "2019-01-01T10:07:02.000000000", + "2019-01-01T10:07:34.000000000", + "2019-01-01T10:07:48.000000000", + "2019-01-01T10:09:55.000000000", + "2019-01-01T10:11:45.000000000", + "2019-01-01T10:11:55.000000000", + "2019-01-01T10:13:39.000000000", + "2019-01-01T10:14:02.000000000", + "2019-01-01T10:14:28.000000000", + "2019-01-01T10:14:42.000000000", + "2019-01-01T10:15:32.000000000", + "2019-01-01T10:16:13.000000000", + "2019-01-01T10:16:48.000000000", + "2019-01-01T10:19:00.000000000", + "2019-01-01T10:20:20.000000000", + "2019-01-01T10:20:21.000000000", + "2019-01-01T10:23:57.000000000", + "2019-01-01T10:24:28.000000000", + "2019-01-01T10:24:37.000000000", + "2019-01-01T10:24:44.000000000", + "2019-01-01T10:25:54.000000000", + "2019-01-01T10:26:21.000000000", + "2019-01-01T10:27:11.000000000", + "2019-01-01T10:28:30.000000000", + "2019-01-01T10:28:45.000000000", + "2019-01-01T10:30:43.000000000", + "2019-01-01T10:30:49.000000000", + "2019-01-01T10:31:03.000000000", + "2019-01-01T10:31:15.000000000", + "2019-01-01T10:31:36.000000000", + "2019-01-01T10:33:12.000000000", + "2019-01-01T10:33:57.000000000", + "2019-01-01T10:34:00.000000000", + "2019-01-01T10:35:14.000000000", + "2019-01-01T10:36:35.000000000", + "2019-01-01T10:39:36.000000000", + "2019-01-01T10:40:55.000000000", + "2019-01-01T10:41:41.000000000", + "2019-01-01T10:43:05.000000000", + "2019-01-01T10:44:02.000000000", + "2019-01-01T10:44:08.000000000", + "2019-01-01T10:44:54.000000000", + "2019-01-01T10:45:19.000000000", + "2019-01-01T10:46:03.000000000", + "2019-01-01T10:48:55.000000000", + "2019-01-01T10:50:58.000000000", + "2019-01-01T10:52:13.000000000", + "2019-01-01T10:52:16.000000000", + "2019-01-01T10:53:07.000000000", + "2019-01-01T10:53:48.000000000", + "2019-01-01T10:56:09.000000000", + "2019-01-01T10:58:49.000000000", + "2019-01-01T11:00:22.000000000", + "2019-01-01T11:01:43.000000000", + "2019-01-01T11:02:27.000000000", + "2019-01-01T11:03:03.000000000", + "2019-01-01T11:07:06.000000000", + "2019-01-01T11:07:10.000000000", + "2019-01-01T11:07:25.000000000", + "2019-01-01T11:08:05.000000000", + "2019-01-01T11:09:36.000000000", + "2019-01-01T11:09:49.000000000", + "2019-01-01T11:10:16.000000000", + "2019-01-01T11:10:40.000000000", + "2019-01-01T11:12:01.000000000", + "2019-01-01T11:12:32.000000000", + "2019-01-01T11:15:09.000000000", + "2019-01-01T11:15:12.000000000", + "2019-01-01T11:15:25.000000000", + "2019-01-01T11:17:29.000000000", + "2019-01-01T11:17:36.000000000", + "2019-01-01T11:19:01.000000000", + "2019-01-01T11:19:02.000000000", + "2019-01-01T11:19:14.000000000", + "2019-01-01T11:21:30.000000000", + "2019-01-01T11:24:46.000000000", + "2019-01-01T11:27:17.000000000", + "2019-01-01T11:28:21.000000000", + "2019-01-01T11:29:12.000000000", + "2019-01-01T11:34:18.000000000", + "2019-01-01T11:34:31.000000000", + "2019-01-01T11:34:40.000000000", + "2019-01-01T11:35:04.000000000", + "2019-01-01T11:35:38.000000000", + "2019-01-01T11:36:31.000000000", + "2019-01-01T11:37:43.000000000", + "2019-01-01T11:38:29.000000000", + "2019-01-01T11:38:36.000000000", + "2019-01-01T11:39:09.000000000", + "2019-01-01T11:39:12.000000000", + "2019-01-01T11:40:07.000000000", + "2019-01-01T11:41:16.000000000", + "2019-01-01T11:42:45.000000000", + "2019-01-01T11:46:21.000000000", + "2019-01-01T11:47:04.000000000", + "2019-01-01T11:47:36.000000000", + "2019-01-01T11:48:19.000000000", + "2019-01-01T11:49:17.000000000", + "2019-01-01T11:49:18.000000000", + "2019-01-01T11:50:06.000000000", + "2019-01-01T11:53:01.000000000", + "2019-01-01T11:55:32.000000000", + "2019-01-01T11:56:24.000000000", + "2019-01-01T11:57:09.000000000", + "2019-01-01T11:58:11.000000000", + "2019-01-01T11:59:07.000000000", + "2019-01-01T12:00:23.000000000", + "2019-01-01T12:00:57.000000000", + "2019-01-01T12:01:02.000000000", + "2019-01-01T12:02:26.000000000", + "2019-01-01T12:03:34.000000000", + "2019-01-01T12:03:57.000000000", + "2019-01-01T12:04:16.000000000", + "2019-01-01T12:05:13.000000000", + "2019-01-01T12:05:14.000000000", + "2019-01-01T12:05:31.000000000", + "2019-01-01T12:06:43.000000000", + "2019-01-01T12:07:00.000000000", + "2019-01-01T12:07:30.000000000", + "2019-01-01T12:08:54.000000000", + "2019-01-01T12:10:19.000000000", + "2019-01-01T12:10:38.000000000", + "2019-01-01T12:13:42.000000000", + "2019-01-01T12:16:07.000000000", + "2019-01-01T12:16:40.000000000", + "2019-01-01T12:17:41.000000000", + "2019-01-01T12:19:36.000000000", + "2019-01-01T12:20:09.000000000", + "2019-01-01T12:21:43.000000000", + "2019-01-01T12:23:44.000000000", + "2019-01-01T12:24:01.000000000", + "2019-01-01T12:24:54.000000000", + "2019-01-01T12:25:03.000000000", + "2019-01-01T12:25:14.000000000", + "2019-01-01T12:27:02.000000000", + "2019-01-01T12:27:04.000000000", + "2019-01-01T12:27:05.000000000", + "2019-01-01T12:28:35.000000000", + "2019-01-01T12:30:16.000000000", + "2019-01-01T12:30:28.000000000", + "2019-01-01T12:31:24.000000000", + "2019-01-01T12:31:56.000000000", + "2019-01-01T12:32:56.000000000", + "2019-01-01T12:33:10.000000000", + "2019-01-01T12:33:13.000000000", + "2019-01-01T12:33:50.000000000", + "2019-01-01T12:33:52.000000000", + "2019-01-01T12:34:42.000000000", + "2019-01-01T12:34:53.000000000", + "2019-01-01T12:34:55.000000000", + "2019-01-01T12:37:05.000000000", + "2019-01-01T12:37:09.000000000", + "2019-01-01T12:37:18.000000000", + "2019-01-01T12:37:20.000000000", + "2019-01-01T12:38:21.000000000", + "2019-01-01T12:39:44.000000000", + "2019-01-01T12:41:04.000000000", + "2019-01-01T12:41:10.000000000", + "2019-01-01T12:42:13.000000000", + "2019-01-01T12:44:45.000000000", + "2019-01-01T12:45:49.000000000", + "2019-01-01T12:46:05.000000000", + "2019-01-01T12:47:29.000000000", + "2019-01-01T12:49:37.000000000", + "2019-01-01T12:49:46.000000000", + "2019-01-01T12:54:47.000000000", + "2019-01-01T12:55:29.000000000", + "2019-01-01T12:55:33.000000000", + "2019-01-01T12:56:29.000000000", + "2019-01-01T12:57:37.000000000", + "2019-01-01T12:58:24.000000000", + "2019-01-01T12:58:40.000000000", + "2019-01-01T12:59:24.000000000", + "2019-01-01T12:59:40.000000000", + "2019-01-01T13:03:16.000000000", + "2019-01-01T13:03:44.000000000", + "2019-01-01T13:03:48.000000000", + "2019-01-01T13:05:09.000000000", + "2019-01-01T13:07:52.000000000", + "2019-01-01T13:07:57.000000000", + "2019-01-01T13:09:20.000000000", + "2019-01-01T13:10:52.000000000", + "2019-01-01T13:11:08.000000000", + "2019-01-01T13:11:47.000000000", + "2019-01-01T13:12:00.000000000", + "2019-01-01T13:13:27.000000000", + "2019-01-01T13:14:00.000000000", + "2019-01-01T13:14:59.000000000", + "2019-01-01T13:15:00.000000000", + "2019-01-01T13:15:35.000000000", + "2019-01-01T13:16:56.000000000", + "2019-01-01T13:17:37.000000000", + "2019-01-01T13:19:10.000000000", + "2019-01-01T13:21:30.000000000", + "2019-01-01T13:25:09.000000000", + "2019-01-01T13:28:55.000000000", + "2019-01-01T13:30:52.000000000", + "2019-01-01T13:34:22.000000000", + "2019-01-01T13:34:53.000000000", + "2019-01-01T13:35:13.000000000", + "2019-01-01T13:35:42.000000000", + "2019-01-01T13:40:21.000000000", + "2019-01-01T13:40:27.000000000", + "2019-01-01T13:42:03.000000000", + "2019-01-01T13:43:09.000000000", + "2019-01-01T13:46:19.000000000", + "2019-01-01T13:47:09.000000000", + "2019-01-01T13:48:53.000000000", + "2019-01-01T13:48:57.000000000", + "2019-01-01T13:49:14.000000000", + "2019-01-01T13:50:03.000000000", + "2019-01-01T13:50:09.000000000", + "2019-01-01T13:50:51.000000000", + "2019-01-01T13:53:15.000000000", + "2019-01-01T13:54:31.000000000", + "2019-01-01T13:56:40.000000000", + "2019-01-01T13:56:51.000000000", + "2019-01-01T13:57:32.000000000", + "2019-01-01T13:59:12.000000000", + "2019-01-01T13:59:16.000000000", + "2019-01-01T13:59:27.000000000", + "2019-01-01T13:59:34.000000000", + "2019-01-01T14:00:18.000000000", + "2019-01-01T14:01:14.000000000", + "2019-01-01T14:02:10.000000000", + "2019-01-01T14:03:06.000000000", + "2019-01-01T14:03:53.000000000", + "2019-01-01T14:04:35.000000000", + "2019-01-01T14:04:51.000000000", + "2019-01-01T14:05:58.000000000", + "2019-01-01T14:08:36.000000000", + "2019-01-01T14:09:56.000000000", + "2019-01-01T14:10:53.000000000", + "2019-01-01T14:15:32.000000000", + "2019-01-01T14:16:13.000000000", + "2019-01-01T14:17:12.000000000", + "2019-01-01T14:18:24.000000000", + "2019-01-01T14:19:59.000000000", + "2019-01-01T14:22:21.000000000", + "2019-01-01T14:24:27.000000000", + "2019-01-01T14:25:43.000000000", + "2019-01-01T14:26:23.000000000", + "2019-01-01T14:26:24.000000000", + "2019-01-01T14:28:27.000000000", + "2019-01-01T14:28:55.000000000", + "2019-01-01T14:30:54.000000000", + "2019-01-01T14:32:53.000000000", + "2019-01-01T14:34:57.000000000", + "2019-01-01T14:35:39.000000000", + "2019-01-01T14:36:17.000000000", + "2019-01-01T14:36:44.000000000", + "2019-01-01T14:38:18.000000000", + "2019-01-01T14:38:32.000000000", + "2019-01-01T14:38:56.000000000", + "2019-01-01T14:38:58.000000000", + "2019-01-01T14:39:00.000000000", + "2019-01-01T14:40:20.000000000", + "2019-01-01T14:40:29.000000000", + "2019-01-01T14:40:51.000000000", + "2019-01-01T14:41:42.000000000", + "2019-01-01T14:42:58.000000000", + "2019-01-01T14:44:22.000000000", + "2019-01-01T14:44:30.000000000", + "2019-01-01T14:46:14.000000000", + "2019-01-01T14:47:00.000000000", + "2019-01-01T14:47:13.000000000", + "2019-01-01T14:47:25.000000000", + "2019-01-01T14:47:57.000000000", + "2019-01-01T14:48:48.000000000", + "2019-01-01T14:49:06.000000000", + "2019-01-01T14:49:08.000000000", + "2019-01-01T14:50:36.000000000", + "2019-01-01T14:52:05.000000000", + "2019-01-01T14:53:49.000000000", + "2019-01-01T14:54:06.000000000", + "2019-01-01T14:56:23.000000000", + "2019-01-01T14:56:42.000000000", + "2019-01-01T14:57:36.000000000", + "2019-01-01T14:57:43.000000000", + "2019-01-01T14:57:57.000000000", + "2019-01-01T14:58:03.000000000", + "2019-01-01T14:59:25.000000000", + "2019-01-01T15:00:00.000000000", + "2019-01-01T15:00:24.000000000", + "2019-01-01T15:01:28.000000000", + "2019-01-01T15:02:12.000000000", + "2019-01-01T15:04:11.000000000", + "2019-01-01T15:05:10.000000000", + "2019-01-01T15:07:47.000000000", + "2019-01-01T15:08:54.000000000", + "2019-01-01T15:09:08.000000000", + "2019-01-01T15:09:09.000000000", + "2019-01-01T15:09:35.000000000", + "2019-01-01T15:13:11.000000000", + "2019-01-01T15:13:13.000000000", + "2019-01-01T15:14:57.000000000", + "2019-01-01T15:16:27.000000000", + "2019-01-01T15:16:41.000000000", + "2019-01-01T15:18:36.000000000", + "2019-01-01T15:19:31.000000000", + "2019-01-01T15:20:11.000000000", + "2019-01-01T15:20:17.000000000", + "2019-01-01T15:20:44.000000000", + "2019-01-01T15:20:58.000000000", + "2019-01-01T15:21:58.000000000", + "2019-01-01T15:23:26.000000000", + "2019-01-01T15:24:24.000000000", + "2019-01-01T15:25:49.000000000", + "2019-01-01T15:29:16.000000000", + "2019-01-01T15:29:40.000000000", + "2019-01-01T15:30:14.000000000", + "2019-01-01T15:30:31.000000000", + "2019-01-01T15:30:39.000000000", + "2019-01-01T15:31:13.000000000", + "2019-01-01T15:31:30.000000000", + "2019-01-01T15:33:14.000000000", + "2019-01-01T15:33:17.000000000", + "2019-01-01T15:33:36.000000000", + "2019-01-01T15:36:46.000000000", + "2019-01-01T15:39:05.000000000", + "2019-01-01T15:39:07.000000000", + "2019-01-01T15:40:16.000000000", + "2019-01-01T15:40:52.000000000", + "2019-01-01T15:41:25.000000000", + "2019-01-01T15:41:44.000000000", + "2019-01-01T15:42:03.000000000", + "2019-01-01T15:44:27.000000000", + "2019-01-01T15:45:23.000000000", + "2019-01-01T15:45:33.000000000", + "2019-01-01T15:45:59.000000000", + "2019-01-01T15:47:36.000000000", + "2019-01-01T15:49:06.000000000", + "2019-01-01T15:49:37.000000000", + "2019-01-01T15:49:48.000000000", + "2019-01-01T15:50:04.000000000", + "2019-01-01T15:50:57.000000000", + "2019-01-01T15:51:18.000000000", + "2019-01-01T15:53:14.000000000", + "2019-01-01T15:53:45.000000000", + "2019-01-01T15:54:16.000000000", + "2019-01-01T15:55:00.000000000", + "2019-01-01T15:56:21.000000000", + "2019-01-01T15:56:46.000000000", + "2019-01-01T15:59:39.000000000", + "2019-01-01T15:59:56.000000000", + "2019-01-01T16:00:29.000000000", + "2019-01-01T16:02:27.000000000", + "2019-01-01T16:05:10.000000000", + "2019-01-01T16:07:52.000000000", + "2019-01-01T16:09:14.000000000", + "2019-01-01T16:11:39.000000000", + "2019-01-01T16:11:45.000000000", + "2019-01-01T16:12:55.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:13:09.000000000", + "2019-01-01T16:15:44.000000000", + "2019-01-01T16:16:14.000000000", + "2019-01-01T16:17:53.000000000", + "2019-01-01T16:19:16.000000000", + "2019-01-01T16:19:27.000000000", + "2019-01-01T16:20:09.000000000", + "2019-01-01T16:20:35.000000000", + "2019-01-01T16:21:53.000000000", + "2019-01-01T16:22:55.000000000", + "2019-01-01T16:22:56.000000000", + "2019-01-01T16:23:03.000000000", + "2019-01-01T16:23:59.000000000", + "2019-01-01T16:24:08.000000000", + "2019-01-01T16:27:49.000000000", + "2019-01-01T16:30:02.000000000", + "2019-01-01T16:30:05.000000000", + "2019-01-01T16:30:21.000000000", + "2019-01-01T16:31:28.000000000", + "2019-01-01T16:31:32.000000000", + "2019-01-01T16:31:35.000000000", + "2019-01-01T16:33:36.000000000", + "2019-01-01T16:34:17.000000000", + "2019-01-01T16:35:13.000000000", + "2019-01-01T16:35:37.000000000", + "2019-01-01T16:37:25.000000000", + "2019-01-01T16:38:49.000000000", + "2019-01-01T16:40:37.000000000", + "2019-01-01T16:41:02.000000000", + "2019-01-01T16:42:07.000000000", + "2019-01-01T16:42:23.000000000", + "2019-01-01T16:42:34.000000000", + "2019-01-01T16:44:40.000000000", + "2019-01-01T16:49:09.000000000", + "2019-01-01T16:49:51.000000000", + "2019-01-01T16:50:15.000000000", + "2019-01-01T16:50:57.000000000", + "2019-01-01T16:52:39.000000000", + "2019-01-01T16:55:17.000000000", + "2019-01-01T16:55:32.000000000", + "2019-01-01T16:56:48.000000000", + "2019-01-01T16:58:06.000000000", + "2019-01-01T16:58:32.000000000", + "2019-01-01T16:59:18.000000000", + "2019-01-01T17:02:04.000000000", + "2019-01-01T17:02:39.000000000", + "2019-01-01T17:02:51.000000000", + "2019-01-01T17:03:15.000000000", + "2019-01-01T17:03:18.000000000", + "2019-01-01T17:04:25.000000000", + "2019-01-01T17:05:41.000000000", + "2019-01-01T17:06:44.000000000", + "2019-01-01T17:07:03.000000000", + "2019-01-01T17:07:08.000000000", + "2019-01-01T17:07:36.000000000", + "2019-01-01T17:09:05.000000000", + "2019-01-01T17:09:26.000000000", + "2019-01-01T17:09:43.000000000", + "2019-01-01T17:10:19.000000000", + "2019-01-01T17:10:36.000000000", + "2019-01-01T17:11:15.000000000", + "2019-01-01T17:11:23.000000000", + "2019-01-01T17:13:22.000000000", + "2019-01-01T17:13:47.000000000", + "2019-01-01T17:16:35.000000000", + "2019-01-01T17:17:39.000000000", + "2019-01-01T17:17:49.000000000", + "2019-01-01T17:20:36.000000000", + "2019-01-01T17:20:47.000000000", + "2019-01-01T17:21:11.000000000", + "2019-01-01T17:21:13.000000000", + "2019-01-01T17:22:58.000000000", + "2019-01-01T17:23:16.000000000", + "2019-01-01T17:25:10.000000000", + "2019-01-01T17:26:20.000000000", + "2019-01-01T17:26:47.000000000", + "2019-01-01T17:27:04.000000000", + "2019-01-01T17:27:33.000000000", + "2019-01-01T17:30:22.000000000", + "2019-01-01T17:30:46.000000000", + "2019-01-01T17:30:47.000000000", + "2019-01-01T17:30:52.000000000", + "2019-01-01T17:31:26.000000000", + "2019-01-01T17:34:21.000000000", + "2019-01-01T17:35:56.000000000", + "2019-01-01T17:37:02.000000000", + "2019-01-01T17:37:03.000000000", + "2019-01-01T17:39:10.000000000", + "2019-01-01T17:39:32.000000000", + "2019-01-01T17:39:34.000000000", + "2019-01-01T17:40:20.000000000", + "2019-01-01T17:40:49.000000000", + "2019-01-01T17:40:59.000000000", + "2019-01-01T17:41:25.000000000", + "2019-01-01T17:42:05.000000000", + "2019-01-01T17:45:43.000000000", + "2019-01-01T17:46:31.000000000", + "2019-01-01T17:46:37.000000000", + "2019-01-01T17:47:33.000000000", + "2019-01-01T17:48:28.000000000", + "2019-01-01T17:49:41.000000000", + "2019-01-01T17:52:15.000000000", + "2019-01-01T17:56:05.000000000", + "2019-01-01T17:56:17.000000000", + "2019-01-01T17:56:31.000000000", + "2019-01-01T17:58:54.000000000", + "2019-01-01T18:00:19.000000000", + "2019-01-01T18:02:10.000000000", + "2019-01-01T18:03:20.000000000", + "2019-01-01T18:03:49.000000000", + "2019-01-01T18:05:11.000000000", + "2019-01-01T18:05:46.000000000", + "2019-01-01T18:06:17.000000000", + "2019-01-01T18:06:51.000000000", + "2019-01-01T18:07:38.000000000", + "2019-01-01T18:08:10.000000000", + "2019-01-01T18:09:03.000000000", + "2019-01-01T18:09:24.000000000", + "2019-01-01T18:09:37.000000000", + "2019-01-01T18:10:36.000000000", + "2019-01-01T18:12:07.000000000", + "2019-01-01T18:12:55.000000000", + "2019-01-01T18:15:10.000000000", + "2019-01-01T18:15:42.000000000", + "2019-01-01T18:15:46.000000000", + "2019-01-01T18:17:20.000000000", + "2019-01-01T18:17:57.000000000", + "2019-01-01T18:19:35.000000000", + "2019-01-01T18:20:10.000000000", + "2019-01-01T18:21:48.000000000", + "2019-01-01T18:21:54.000000000", + "2019-01-01T18:22:14.000000000", + "2019-01-01T18:24:03.000000000", + "2019-01-01T18:25:15.000000000", + "2019-01-01T18:27:25.000000000", + "2019-01-01T18:28:59.000000000", + "2019-01-01T18:30:11.000000000", + "2019-01-01T18:32:19.000000000", + "2019-01-01T18:33:30.000000000", + "2019-01-01T18:33:35.000000000", + "2019-01-01T18:35:05.000000000", + "2019-01-01T18:35:23.000000000", + "2019-01-01T18:36:10.000000000", + "2019-01-01T18:36:40.000000000", + "2019-01-01T18:36:54.000000000", + "2019-01-01T18:37:16.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:05.000000000", + "2019-01-01T18:40:49.000000000", + "2019-01-01T18:42:03.000000000", + "2019-01-01T18:43:20.000000000", + "2019-01-01T18:43:26.000000000", + "2019-01-01T18:43:51.000000000", + "2019-01-01T18:45:00.000000000", + "2019-01-01T18:48:05.000000000", + "2019-01-01T18:48:53.000000000", + "2019-01-01T18:49:27.000000000", + "2019-01-01T18:50:05.000000000", + "2019-01-01T18:51:02.000000000", + "2019-01-01T18:52:00.000000000", + "2019-01-01T18:52:21.000000000", + "2019-01-01T18:52:30.000000000", + "2019-01-01T18:52:43.000000000", + "2019-01-01T18:55:08.000000000", + "2019-01-01T18:55:28.000000000", + "2019-01-01T18:55:50.000000000", + "2019-01-01T19:02:53.000000000", + "2019-01-01T19:03:57.000000000", + "2019-01-01T19:04:34.000000000", + "2019-01-01T19:05:03.000000000", + "2019-01-01T19:05:11.000000000", + "2019-01-01T19:06:50.000000000", + "2019-01-01T19:07:27.000000000", + "2019-01-01T19:08:35.000000000", + "2019-01-01T19:09:09.000000000", + "2019-01-01T19:10:12.000000000", + "2019-01-01T19:10:13.000000000", + "2019-01-01T19:10:21.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:12:14.000000000", + "2019-01-01T19:13:39.000000000", + "2019-01-01T19:14:17.000000000", + "2019-01-01T19:14:23.000000000", + "2019-01-01T19:14:39.000000000", + "2019-01-01T19:15:11.000000000", + "2019-01-01T19:18:11.000000000", + "2019-01-01T19:19:55.000000000", + "2019-01-01T19:20:14.000000000", + "2019-01-01T19:22:26.000000000", + "2019-01-01T19:22:33.000000000", + "2019-01-01T19:25:28.000000000", + "2019-01-01T19:26:24.000000000", + "2019-01-01T19:26:58.000000000", + "2019-01-01T19:28:47.000000000", + "2019-01-01T19:29:49.000000000", + "2019-01-01T19:30:26.000000000", + "2019-01-01T19:30:36.000000000", + "2019-01-01T19:31:56.000000000", + "2019-01-01T19:32:06.000000000", + "2019-01-01T19:33:09.000000000", + "2019-01-01T19:33:10.000000000", + "2019-01-01T19:34:25.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:28.000000000", + "2019-01-01T19:34:41.000000000", + "2019-01-01T19:35:05.000000000", + "2019-01-01T19:37:26.000000000", + "2019-01-01T19:37:39.000000000", + "2019-01-01T19:38:24.000000000", + "2019-01-01T19:38:30.000000000", + "2019-01-01T19:39:07.000000000", + "2019-01-01T19:39:10.000000000", + "2019-01-01T19:41:03.000000000", + "2019-01-01T19:42:23.000000000", + "2019-01-01T19:43:06.000000000", + "2019-01-01T19:43:35.000000000", + "2019-01-01T19:44:34.000000000", + "2019-01-01T19:45:23.000000000", + "2019-01-01T19:46:20.000000000", + "2019-01-01T19:46:26.000000000", + "2019-01-01T19:47:31.000000000", + "2019-01-01T19:48:39.000000000", + "2019-01-01T19:49:10.000000000", + "2019-01-01T19:49:38.000000000", + "2019-01-01T19:51:27.000000000", + "2019-01-01T19:51:39.000000000", + "2019-01-01T19:51:46.000000000", + "2019-01-01T19:53:35.000000000", + "2019-01-01T19:53:36.000000000", + "2019-01-01T19:54:06.000000000", + "2019-01-01T19:55:49.000000000", + "2019-01-01T19:55:57.000000000", + "2019-01-01T19:58:03.000000000", + "2019-01-01T19:58:23.000000000", + "2019-01-01T20:00:47.000000000", + "2019-01-01T20:01:26.000000000", + "2019-01-01T20:03:55.000000000", + "2019-01-01T20:05:35.000000000", + "2019-01-01T20:07:00.000000000", + "2019-01-01T20:07:22.000000000", + "2019-01-01T20:09:50.000000000", + "2019-01-01T20:12:15.000000000", + "2019-01-01T20:12:44.000000000", + "2019-01-01T20:13:50.000000000", + "2019-01-01T20:14:48.000000000", + "2019-01-01T20:14:56.000000000", + "2019-01-01T20:15:35.000000000", + "2019-01-01T20:16:20.000000000", + "2019-01-01T20:16:50.000000000", + "2019-01-01T20:17:32.000000000", + "2019-01-01T20:19:27.000000000", + "2019-01-01T20:22:29.000000000", + "2019-01-01T20:23:01.000000000", + "2019-01-01T20:23:07.000000000", + "2019-01-01T20:25:23.000000000", + "2019-01-01T20:25:49.000000000", + "2019-01-01T20:25:56.000000000", + "2019-01-01T20:28:49.000000000", + "2019-01-01T20:30:53.000000000", + "2019-01-01T20:31:22.000000000", + "2019-01-01T20:31:44.000000000", + "2019-01-01T20:34:27.000000000", + "2019-01-01T20:37:16.000000000", + "2019-01-01T20:37:23.000000000", + "2019-01-01T20:37:58.000000000", + "2019-01-01T20:38:12.000000000", + "2019-01-01T20:38:59.000000000", + "2019-01-01T20:39:43.000000000", + "2019-01-01T20:40:01.000000000", + "2019-01-01T20:40:21.000000000", + "2019-01-01T20:42:02.000000000", + "2019-01-01T20:42:14.000000000", + "2019-01-01T20:42:46.000000000", + "2019-01-01T20:43:00.000000000", + "2019-01-01T20:46:23.000000000", + "2019-01-01T20:47:50.000000000", + "2019-01-01T20:49:07.000000000", + "2019-01-01T20:49:09.000000000", + "2019-01-01T20:49:34.000000000", + "2019-01-01T20:49:38.000000000", + "2019-01-01T20:49:52.000000000", + "2019-01-01T20:52:16.000000000", + "2019-01-01T20:52:26.000000000", + "2019-01-01T20:53:15.000000000", + "2019-01-01T20:55:37.000000000", + "2019-01-01T20:58:09.000000000", + "2019-01-01T20:58:19.000000000", + "2019-01-01T20:58:22.000000000", + "2019-01-01T20:59:14.000000000", + "2019-01-01T20:59:48.000000000", + "2019-01-01T21:01:40.000000000", + "2019-01-01T21:01:42.000000000", + "2019-01-01T21:01:50.000000000", + "2019-01-01T21:03:35.000000000", + "2019-01-01T21:04:30.000000000", + "2019-01-01T21:04:59.000000000", + "2019-01-01T21:05:03.000000000", + "2019-01-01T21:05:28.000000000", + "2019-01-01T21:05:36.000000000", + "2019-01-01T21:06:02.000000000", + "2019-01-01T21:08:15.000000000", + "2019-01-01T21:10:51.000000000", + "2019-01-01T21:11:16.000000000", + "2019-01-01T21:12:01.000000000", + "2019-01-01T21:12:55.000000000", + "2019-01-01T21:14:01.000000000", + "2019-01-01T21:15:11.000000000", + "2019-01-01T21:15:36.000000000", + "2019-01-01T21:16:12.000000000", + "2019-01-01T21:17:30.000000000", + "2019-01-01T21:17:43.000000000", + "2019-01-01T21:18:55.000000000", + "2019-01-01T21:19:35.000000000", + "2019-01-01T21:19:48.000000000", + "2019-01-01T21:22:04.000000000", + "2019-01-01T21:24:01.000000000", + "2019-01-01T21:24:39.000000000", + "2019-01-01T21:26:27.000000000", + "2019-01-01T21:27:08.000000000", + "2019-01-01T21:30:42.000000000", + "2019-01-01T21:31:09.000000000", + "2019-01-01T21:31:40.000000000", + "2019-01-01T21:31:48.000000000", + "2019-01-01T21:31:56.000000000", + "2019-01-01T21:32:00.000000000", + "2019-01-01T21:35:24.000000000", + "2019-01-01T21:37:22.000000000", + "2019-01-01T21:38:22.000000000", + "2019-01-01T21:40:46.000000000", + "2019-01-01T21:41:57.000000000", + "2019-01-01T21:43:10.000000000", + "2019-01-01T21:44:50.000000000", + "2019-01-01T21:45:56.000000000", + "2019-01-01T21:52:10.000000000", + "2019-01-01T21:53:08.000000000", + "2019-01-01T21:54:20.000000000", + "2019-01-01T21:54:56.000000000", + "2019-01-01T21:55:00.000000000", + "2019-01-01T21:55:35.000000000", + "2019-01-01T21:55:41.000000000", + "2019-01-01T21:56:56.000000000", + "2019-01-01T21:58:09.000000000", + "2019-01-01T22:01:13.000000000", + "2019-01-01T22:04:18.000000000", + "2019-01-01T22:04:30.000000000", + "2019-01-01T22:05:11.000000000", + "2019-01-01T22:08:01.000000000", + "2019-01-01T22:09:16.000000000", + "2019-01-01T22:09:36.000000000", + "2019-01-01T22:12:02.000000000", + "2019-01-01T22:12:24.000000000", + "2019-01-01T22:12:31.000000000", + "2019-01-01T22:13:38.000000000", + "2019-01-01T22:16:21.000000000", + "2019-01-01T22:17:15.000000000", + "2019-01-01T22:18:08.000000000", + "2019-01-01T22:18:37.000000000", + "2019-01-01T22:21:49.000000000", + "2019-01-01T22:22:11.000000000", + "2019-01-01T22:22:17.000000000", + "2019-01-01T22:22:24.000000000", + "2019-01-01T22:23:49.000000000", + "2019-01-01T22:24:05.000000000", + "2019-01-01T22:28:43.000000000", + "2019-01-01T22:29:41.000000000", + "2019-01-01T22:30:05.000000000", + "2019-01-01T22:32:29.000000000", + "2019-01-01T22:35:02.000000000", + "2019-01-01T22:35:47.000000000", + "2019-01-01T22:36:21.000000000", + "2019-01-01T22:36:38.000000000", + "2019-01-01T22:36:47.000000000", + "2019-01-01T22:37:56.000000000", + "2019-01-01T22:38:08.000000000", + "2019-01-01T22:38:28.000000000", + "2019-01-01T22:38:56.000000000", + "2019-01-01T22:39:31.000000000", + "2019-01-01T22:41:39.000000000", + "2019-01-01T22:41:48.000000000", + "2019-01-01T22:41:59.000000000", + "2019-01-01T22:42:16.000000000", + "2019-01-01T22:43:08.000000000", + "2019-01-01T22:43:12.000000000", + "2019-01-01T22:43:24.000000000", + "2019-01-01T22:45:57.000000000", + "2019-01-01T22:46:22.000000000", + "2019-01-01T22:46:37.000000000", + "2019-01-01T22:47:50.000000000", + "2019-01-01T22:48:18.000000000", + "2019-01-01T22:48:29.000000000", + "2019-01-01T22:49:04.000000000", + "2019-01-01T22:50:37.000000000", + "2019-01-01T22:51:13.000000000", + "2019-01-01T22:56:46.000000000", + "2019-01-01T22:57:31.000000000", + "2019-01-01T22:57:37.000000000", + "2019-01-01T22:59:29.000000000", + "2019-01-01T23:03:23.000000000", + "2019-01-01T23:03:37.000000000", + "2019-01-01T23:04:37.000000000", + "2019-01-01T23:06:04.000000000", + "2019-01-01T23:07:20.000000000", + "2019-01-01T23:07:40.000000000", + "2019-01-01T23:08:42.000000000", + "2019-01-01T23:08:48.000000000", + "2019-01-01T23:09:29.000000000", + "2019-01-01T23:10:34.000000000", + "2019-01-01T23:12:16.000000000", + "2019-01-01T23:12:25.000000000", + "2019-01-01T23:12:27.000000000", + "2019-01-01T23:12:30.000000000", + "2019-01-01T23:12:36.000000000", + "2019-01-01T23:14:03.000000000", + "2019-01-01T23:15:00.000000000", + "2019-01-01T23:15:08.000000000", + "2019-01-01T23:17:29.000000000", + "2019-01-01T23:20:27.000000000", + "2019-01-01T23:20:28.000000000", + "2019-01-01T23:21:35.000000000", + "2019-01-01T23:23:18.000000000", + "2019-01-01T23:23:21.000000000", + "2019-01-01T23:24:31.000000000", + "2019-01-01T23:25:08.000000000", + "2019-01-01T23:27:04.000000000", + "2019-01-01T23:28:56.000000000", + "2019-01-01T23:29:12.000000000", + "2019-01-01T23:29:29.000000000", + "2019-01-01T23:30:03.000000000", + "2019-01-01T23:30:16.000000000", + "2019-01-01T23:31:04.000000000", + "2019-01-01T23:32:44.000000000", + "2019-01-01T23:34:02.000000000", + "2019-01-01T23:34:10.000000000", + "2019-01-01T23:35:46.000000000", + "2019-01-01T23:35:55.000000000", + "2019-01-01T23:36:14.000000000", + "2019-01-01T23:36:27.000000000", + "2019-01-01T23:37:57.000000000", + "2019-01-01T23:40:17.000000000", + "2019-01-01T23:40:48.000000000", + "2019-01-01T23:41:12.000000000", + "2019-01-01T23:42:29.000000000", + "2019-01-01T23:43:07.000000000", + "2019-01-01T23:43:17.000000000", + "2019-01-01T23:43:57.000000000", + "2019-01-01T23:44:09.000000000", + "2019-01-01T23:45:39.000000000", + "2019-01-01T23:46:58.000000000", + "2019-01-01T23:47:13.000000000", + "2019-01-01T23:47:56.000000000", + "2019-01-01T23:48:12.000000000", + "2019-01-01T23:48:41.000000000", + "2019-01-01T23:49:23.000000000", + "2019-01-01T23:52:06.000000000", + "2019-01-01T23:52:43.000000000", + "2019-01-01T23:53:10.000000000", + "2019-01-01T23:53:38.000000000", + "2019-01-01T23:54:11.000000000", + "2019-01-01T23:55:05.000000000", + "2019-01-01T23:55:06.000000000", + "2019-01-01T23:55:33.000000000", + "2019-01-01T23:59:30.000000000", + "2019-01-02T00:00:46.000000000", + "2019-01-02T00:01:11.000000000", + "2019-01-02T00:01:18.000000000", + "2019-01-02T00:02:02.000000000", + "2019-01-02T00:06:14.000000000", + "2019-01-02T00:06:34.000000000", + "2019-01-02T00:06:46.000000000", + "2019-01-02T00:07:44.000000000", + "2019-01-02T00:07:57.000000000", + "2019-01-02T00:10:14.000000000", + "2019-01-02T00:11:28.000000000", + "2019-01-02T00:11:32.000000000", + "2019-01-02T00:12:17.000000000", + "2019-01-02T00:15:53.000000000", + "2019-01-02T00:16:23.000000000", + "2019-01-02T00:18:19.000000000", + "2019-01-02T00:19:08.000000000", + "2019-01-02T00:19:18.000000000", + "2019-01-02T00:19:36.000000000", + "2019-01-02T00:21:57.000000000", + "2019-01-02T00:22:05.000000000", + "2019-01-02T00:23:03.000000000", + "2019-01-02T00:25:04.000000000", + "2019-01-02T00:25:32.000000000", + "2019-01-02T00:28:40.000000000", + "2019-01-02T00:30:56.000000000", + "2019-01-02T00:32:03.000000000", + "2019-01-02T00:32:22.000000000", + "2019-01-02T00:34:54.000000000", + "2019-01-02T00:35:14.000000000", + "2019-01-02T00:36:49.000000000", + "2019-01-02T00:38:14.000000000", + "2019-01-02T00:38:35.000000000", + "2019-01-02T00:38:52.000000000", + "2019-01-02T00:39:17.000000000", + "2019-01-02T00:39:38.000000000", + "2019-01-02T00:41:21.000000000", + "2019-01-02T00:43:59.000000000", + "2019-01-02T00:44:11.000000000", + "2019-01-02T00:45:35.000000000", + "2019-01-02T00:45:38.000000000", + "2019-01-02T00:48:12.000000000", + "2019-01-02T00:48:16.000000000", + "2019-01-02T00:48:29.000000000", + "2019-01-02T00:49:28.000000000", + "2019-01-02T00:51:06.000000000", + "2019-01-02T00:52:15.000000000", + "2019-01-02T00:54:21.000000000", + "2019-01-02T00:54:24.000000000", + "2019-01-02T00:54:42.000000000", + "2019-01-02T00:55:32.000000000", + "2019-01-02T00:55:44.000000000", + "2019-01-02T00:55:54.000000000", + "2019-01-02T00:56:11.000000000", + "2019-01-02T00:57:00.000000000", + "2019-01-02T00:57:41.000000000", + "2019-01-02T00:58:44.000000000", + "2019-01-02T00:58:52.000000000", + "2019-01-02T00:59:23.000000000", + "2019-01-02T01:02:02.000000000", + "2019-01-02T01:02:12.000000000", + "2019-01-02T01:02:47.000000000", + "2019-01-02T01:04:51.000000000", + "2019-01-02T01:06:37.000000000", + "2019-01-02T01:06:54.000000000", + "2019-01-02T01:08:20.000000000", + "2019-01-02T01:08:44.000000000", + "2019-01-02T01:10:27.000000000", + "2019-01-02T01:11:39.000000000", + "2019-01-02T01:11:46.000000000", + "2019-01-02T01:12:04.000000000", + "2019-01-02T01:13:20.000000000", + "2019-01-02T01:13:55.000000000", + "2019-01-02T01:14:45.000000000", + "2019-01-02T01:15:49.000000000", + "2019-01-02T01:18:12.000000000", + "2019-01-02T01:18:38.000000000", + "2019-01-02T01:19:07.000000000", + "2019-01-02T01:20:04.000000000", + "2019-01-02T01:23:00.000000000", + "2019-01-02T01:23:06.000000000", + "2019-01-02T01:24:43.000000000", + "2019-01-02T01:24:55.000000000", + "2019-01-02T01:26:12.000000000", + "2019-01-02T01:27:03.000000000", + "2019-01-02T01:28:39.000000000", + "2019-01-02T01:28:54.000000000", + "2019-01-02T01:28:56.000000000", + "2019-01-02T01:29:23.000000000", + "2019-01-02T01:29:49.000000000", + "2019-01-02T01:30:00.000000000", + "2019-01-02T01:30:50.000000000", + "2019-01-02T01:32:50.000000000", + "2019-01-02T01:33:52.000000000", + "2019-01-02T01:34:58.000000000", + "2019-01-02T01:36:01.000000000", + "2019-01-02T01:37:45.000000000", + "2019-01-02T01:38:10.000000000", + "2019-01-02T01:39:49.000000000", + "2019-01-02T01:39:55.000000000", + "2019-01-02T01:40:20.000000000", + "2019-01-02T01:42:07.000000000", + "2019-01-02T01:42:17.000000000", + "2019-01-02T01:46:26.000000000", + "2019-01-02T01:46:37.000000000", + "2019-01-02T01:46:47.000000000", + "2019-01-02T01:50:27.000000000", + "2019-01-02T01:50:48.000000000", + "2019-01-02T01:50:58.000000000", + "2019-01-02T01:51:40.000000000", + "2019-01-02T01:52:30.000000000", + "2019-01-02T01:52:43.000000000", + "2019-01-02T01:53:01.000000000", + "2019-01-02T01:54:43.000000000", + "2019-01-02T01:55:49.000000000", + "2019-01-02T01:57:17.000000000", + "2019-01-02T01:57:56.000000000", + "2019-01-02T01:58:20.000000000", + "2019-01-02T01:58:40.000000000", + "2019-01-02T01:59:54.000000000", + "2019-01-02T02:00:30.000000000", + "2019-01-02T02:01:56.000000000", + "2019-01-02T02:02:30.000000000", + "2019-01-02T02:02:57.000000000", + "2019-01-02T02:03:54.000000000", + "2019-01-02T02:07:24.000000000", + "2019-01-02T02:08:13.000000000", + "2019-01-02T02:08:21.000000000", + "2019-01-02T02:08:36.000000000", + "2019-01-02T02:09:45.000000000", + "2019-01-02T02:10:10.000000000", + "2019-01-02T02:11:22.000000000", + "2019-01-02T02:13:49.000000000", + "2019-01-02T02:14:29.000000000", + "2019-01-02T02:14:46.000000000", + "2019-01-02T02:17:50.000000000", + "2019-01-02T02:19:02.000000000", + "2019-01-02T02:19:28.000000000", + "2019-01-02T02:20:54.000000000", + "2019-01-02T02:21:24.000000000", + "2019-01-02T02:22:09.000000000", + "2019-01-02T02:24:57.000000000", + "2019-01-02T02:25:33.000000000", + "2019-01-02T02:25:48.000000000", + "2019-01-02T02:26:05.000000000", + "2019-01-02T02:26:12.000000000", + "2019-01-02T02:27:41.000000000", + "2019-01-02T02:30:07.000000000", + "2019-01-02T02:34:28.000000000", + "2019-01-02T02:38:08.000000000", + "2019-01-02T02:39:41.000000000", + "2019-01-02T02:40:17.000000000", + "2019-01-02T02:41:31.000000000", + "2019-01-02T02:41:47.000000000", + "2019-01-02T02:41:49.000000000", + "2019-01-02T02:45:49.000000000", + "2019-01-02T02:46:50.000000000", + "2019-01-02T02:47:35.000000000", + "2019-01-02T02:48:47.000000000", + "2019-01-02T02:51:39.000000000", + "2019-01-02T02:51:40.000000000", + "2019-01-02T02:53:10.000000000", + "2019-01-02T02:53:23.000000000", + "2019-01-02T02:53:30.000000000", + "2019-01-02T02:53:48.000000000", + "2019-01-02T02:54:01.000000000", + "2019-01-02T02:55:01.000000000", + "2019-01-02T02:56:10.000000000", + "2019-01-02T02:56:12.000000000", + "2019-01-02T02:57:03.000000000", + "2019-01-02T02:57:04.000000000", + "2019-01-02T02:57:14.000000000", + "2019-01-02T02:57:15.000000000", + "2019-01-02T02:57:49.000000000", + "2019-01-02T02:58:41.000000000", + "2019-01-02T03:00:10.000000000", + "2019-01-02T03:00:43.000000000", + "2019-01-02T03:00:54.000000000", + "2019-01-02T03:01:40.000000000", + "2019-01-02T03:02:17.000000000", + "2019-01-02T03:02:58.000000000", + "2019-01-02T03:04:32.000000000", + "2019-01-02T03:06:17.000000000", + "2019-01-02T03:08:03.000000000", + "2019-01-02T03:08:31.000000000", + "2019-01-02T03:12:12.000000000", + "2019-01-02T03:13:28.000000000", + "2019-01-02T03:15:46.000000000", + "2019-01-02T03:17:12.000000000", + "2019-01-02T03:17:25.000000000", + "2019-01-02T03:18:22.000000000", + "2019-01-02T03:18:55.000000000", + "2019-01-02T03:23:00.000000000", + "2019-01-02T03:23:52.000000000", + "2019-01-02T03:25:18.000000000", + "2019-01-02T03:27:24.000000000", + "2019-01-02T03:29:21.000000000", + "2019-01-02T03:30:33.000000000", + "2019-01-02T03:31:35.000000000", + "2019-01-02T03:32:45.000000000", + "2019-01-02T03:33:14.000000000", + "2019-01-02T03:33:34.000000000", + "2019-01-02T03:34:38.000000000", + "2019-01-02T03:35:18.000000000", + "2019-01-02T03:35:35.000000000", + "2019-01-02T03:35:52.000000000", + "2019-01-02T03:36:51.000000000", + "2019-01-02T03:36:59.000000000", + "2019-01-02T03:37:17.000000000", + "2019-01-02T03:40:28.000000000", + "2019-01-02T03:41:19.000000000", + "2019-01-02T03:43:02.000000000", + "2019-01-02T03:43:33.000000000", + "2019-01-02T03:43:55.000000000", + "2019-01-02T03:45:10.000000000", + "2019-01-02T03:46:16.000000000", + "2019-01-02T03:46:50.000000000", + "2019-01-02T03:46:53.000000000", + "2019-01-02T03:48:58.000000000", + "2019-01-02T03:49:26.000000000", + "2019-01-02T03:49:40.000000000", + "2019-01-02T03:51:59.000000000", + "2019-01-02T03:52:15.000000000", + "2019-01-02T03:52:18.000000000", + "2019-01-02T03:52:50.000000000", + "2019-01-02T03:53:25.000000000", + "2019-01-02T03:54:39.000000000", + "2019-01-02T03:54:55.000000000", + "2019-01-02T03:55:28.000000000", + "2019-01-02T03:55:57.000000000", + "2019-01-02T03:55:58.000000000", + "2019-01-02T03:56:03.000000000", + "2019-01-02T03:57:42.000000000", + "2019-01-02T03:58:04.000000000", + "2019-01-02T03:58:13.000000000", + "2019-01-02T03:59:17.000000000", + "2019-01-02T03:59:41.000000000", + "2019-01-02T04:01:05.000000000", + "2019-01-02T04:01:48.000000000", + "2019-01-02T04:01:59.000000000", + "2019-01-02T04:02:52.000000000", + "2019-01-02T04:04:24.000000000", + "2019-01-02T04:05:27.000000000", + "2019-01-02T04:05:50.000000000", + "2019-01-02T04:06:28.000000000", + "2019-01-02T04:08:17.000000000", + "2019-01-02T04:09:27.000000000", + "2019-01-02T04:10:19.000000000", + "2019-01-02T04:11:03.000000000", + "2019-01-02T04:14:49.000000000", + "2019-01-02T04:16:10.000000000", + "2019-01-02T04:18:25.000000000", + "2019-01-02T04:20:00.000000000", + "2019-01-02T04:20:21.000000000", + "2019-01-02T04:21:14.000000000", + "2019-01-02T04:22:52.000000000", + "2019-01-02T04:23:36.000000000", + "2019-01-02T04:24:32.000000000", + "2019-01-02T04:26:00.000000000", + "2019-01-02T04:28:26.000000000", + "2019-01-02T04:29:06.000000000", + "2019-01-02T04:30:07.000000000", + "2019-01-02T04:32:36.000000000", + "2019-01-02T04:33:19.000000000", + "2019-01-02T04:33:37.000000000", + "2019-01-02T04:35:32.000000000", + "2019-01-02T04:35:58.000000000", + "2019-01-02T04:36:36.000000000", + "2019-01-02T04:37:52.000000000", + "2019-01-02T04:38:24.000000000", + "2019-01-02T04:39:07.000000000", + "2019-01-02T04:39:18.000000000", + "2019-01-02T04:39:34.000000000", + "2019-01-02T04:40:47.000000000", + "2019-01-02T04:41:11.000000000", + "2019-01-02T04:41:33.000000000", + "2019-01-02T04:41:59.000000000", + "2019-01-02T04:44:01.000000000", + "2019-01-02T04:44:22.000000000", + "2019-01-02T04:47:45.000000000", + "2019-01-02T04:48:38.000000000", + "2019-01-02T04:50:20.000000000", + "2019-01-02T04:51:18.000000000", + "2019-01-02T04:51:27.000000000", + "2019-01-02T04:54:40.000000000", + "2019-01-02T04:54:44.000000000", + "2019-01-02T04:54:52.000000000", + "2019-01-02T04:55:03.000000000", + "2019-01-02T04:56:51.000000000", + "2019-01-02T04:57:13.000000000", + "2019-01-02T04:57:47.000000000", + "2019-01-02T04:58:03.000000000", + "2019-01-02T04:59:10.000000000", + "2019-01-02T05:00:32.000000000", + "2019-01-02T05:02:25.000000000", + "2019-01-02T05:03:10.000000000", + "2019-01-02T05:03:50.000000000", + "2019-01-02T05:04:03.000000000", + "2019-01-02T05:04:22.000000000", + "2019-01-02T05:06:03.000000000", + "2019-01-02T05:07:17.000000000", + "2019-01-02T05:08:47.000000000", + "2019-01-02T05:09:21.000000000", + "2019-01-02T05:09:30.000000000", + "2019-01-02T05:10:07.000000000", + "2019-01-02T05:10:10.000000000", + "2019-01-02T05:10:35.000000000", + "2019-01-02T05:10:37.000000000", + "2019-01-02T05:10:56.000000000", + "2019-01-02T05:12:33.000000000", + "2019-01-02T05:13:37.000000000", + "2019-01-02T05:14:23.000000000", + "2019-01-02T05:15:33.000000000", + "2019-01-02T05:17:00.000000000", + "2019-01-02T05:17:12.000000000", + "2019-01-02T05:18:37.000000000", + "2019-01-02T05:19:17.000000000", + "2019-01-02T05:19:28.000000000", + "2019-01-02T05:19:37.000000000", + "2019-01-02T05:21:02.000000000", + "2019-01-02T05:22:40.000000000", + "2019-01-02T05:23:20.000000000", + "2019-01-02T05:23:23.000000000", + "2019-01-02T05:23:38.000000000", + "2019-01-02T05:23:51.000000000", + "2019-01-02T05:23:52.000000000", + "2019-01-02T05:24:21.000000000", + "2019-01-02T05:24:22.000000000", + "2019-01-02T05:25:18.000000000", + "2019-01-02T05:26:23.000000000", + "2019-01-02T05:27:32.000000000", + "2019-01-02T05:28:19.000000000", + "2019-01-02T05:30:11.000000000", + "2019-01-02T05:31:58.000000000", + "2019-01-02T05:32:06.000000000", + "2019-01-02T05:33:28.000000000", + "2019-01-02T05:34:23.000000000", + "2019-01-02T05:34:30.000000000", + "2019-01-02T05:34:43.000000000", + "2019-01-02T05:35:41.000000000", + "2019-01-02T05:36:20.000000000", + "2019-01-02T05:36:47.000000000", + "2019-01-02T05:37:32.000000000", + "2019-01-02T05:37:36.000000000", + "2019-01-02T05:40:35.000000000", + "2019-01-02T05:41:37.000000000", + "2019-01-02T05:41:48.000000000", + "2019-01-02T05:42:55.000000000", + "2019-01-02T05:44:16.000000000", + "2019-01-02T05:44:32.000000000", + "2019-01-02T05:45:36.000000000", + "2019-01-02T05:46:03.000000000", + "2019-01-02T05:47:33.000000000", + "2019-01-02T05:47:38.000000000", + "2019-01-02T05:47:51.000000000", + "2019-01-02T05:50:32.000000000", + "2019-01-02T05:51:02.000000000", + "2019-01-02T05:51:23.000000000", + "2019-01-02T05:53:25.000000000", + "2019-01-02T05:53:26.000000000", + "2019-01-02T05:53:39.000000000", + "2019-01-02T05:55:24.000000000", + "2019-01-02T05:56:03.000000000", + "2019-01-02T05:57:00.000000000", + "2019-01-02T05:57:13.000000000", + "2019-01-02T05:57:42.000000000", + "2019-01-02T05:57:50.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:57:54.000000000", + "2019-01-02T05:59:05.000000000", + "2019-01-02T05:59:13.000000000", + "2019-01-02T06:00:06.000000000", + "2019-01-02T06:00:26.000000000", + "2019-01-02T06:00:34.000000000", + "2019-01-02T06:00:48.000000000", + "2019-01-02T06:02:13.000000000", + "2019-01-02T06:02:15.000000000", + "2019-01-02T06:02:43.000000000", + "2019-01-02T06:04:27.000000000", + "2019-01-02T06:04:57.000000000", + "2019-01-02T06:06:26.000000000", + "2019-01-02T06:06:38.000000000", + "2019-01-02T06:08:38.000000000", + "2019-01-02T06:11:48.000000000", + "2019-01-02T06:13:33.000000000", + "2019-01-02T06:14:22.000000000", + "2019-01-02T06:14:31.000000000", + "2019-01-02T06:14:36.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:14:49.000000000", + "2019-01-02T06:16:02.000000000", + "2019-01-02T06:16:58.000000000", + "2019-01-02T06:17:28.000000000", + "2019-01-02T06:18:06.000000000", + "2019-01-02T06:20:58.000000000", + "2019-01-02T06:21:33.000000000", + "2019-01-02T06:22:21.000000000", + "2019-01-02T06:22:35.000000000", + "2019-01-02T06:24:22.000000000", + "2019-01-02T06:24:56.000000000", + "2019-01-02T06:26:33.000000000", + "2019-01-02T06:26:59.000000000", + "2019-01-02T06:27:07.000000000", + "2019-01-02T06:27:11.000000000", + "2019-01-02T06:28:04.000000000", + "2019-01-02T06:28:33.000000000", + "2019-01-02T06:28:46.000000000", + "2019-01-02T06:28:50.000000000", + "2019-01-02T06:30:21.000000000", + "2019-01-02T06:30:50.000000000", + "2019-01-02T06:33:56.000000000", + "2019-01-02T06:35:05.000000000", + "2019-01-02T06:35:25.000000000", + "2019-01-02T06:36:49.000000000", + "2019-01-02T06:39:32.000000000", + "2019-01-02T06:40:28.000000000", + "2019-01-02T06:41:14.000000000", + "2019-01-02T06:41:23.000000000", + "2019-01-02T06:42:16.000000000", + "2019-01-02T06:43:01.000000000", + "2019-01-02T06:43:36.000000000", + "2019-01-02T06:44:07.000000000", + "2019-01-02T06:46:57.000000000", + "2019-01-02T06:47:44.000000000", + "2019-01-02T06:48:14.000000000", + "2019-01-02T06:48:26.000000000", + "2019-01-02T06:48:35.000000000", + "2019-01-02T06:51:25.000000000", + "2019-01-02T06:52:33.000000000", + "2019-01-02T06:54:11.000000000", + "2019-01-02T06:54:55.000000000", + "2019-01-02T06:55:23.000000000", + "2019-01-02T06:55:25.000000000", + "2019-01-02T06:55:44.000000000", + "2019-01-02T07:03:53.000000000", + "2019-01-02T07:04:21.000000000", + "2019-01-02T07:04:38.000000000", + "2019-01-02T07:05:28.000000000", + "2019-01-02T07:05:49.000000000", + "2019-01-02T07:08:58.000000000", + "2019-01-02T07:09:08.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:09:18.000000000", + "2019-01-02T07:11:25.000000000", + "2019-01-02T07:13:31.000000000", + "2019-01-02T07:13:41.000000000", + "2019-01-02T07:15:55.000000000", + "2019-01-02T07:16:00.000000000", + "2019-01-02T07:17:22.000000000", + "2019-01-02T07:18:01.000000000", + "2019-01-02T07:18:24.000000000", + "2019-01-02T07:21:16.000000000", + "2019-01-02T07:22:38.000000000", + "2019-01-02T07:23:37.000000000", + "2019-01-02T07:25:02.000000000", + "2019-01-02T07:25:22.000000000", + "2019-01-02T07:26:20.000000000", + "2019-01-02T07:26:47.000000000", + "2019-01-02T07:27:35.000000000", + "2019-01-02T07:27:46.000000000", + "2019-01-02T07:27:51.000000000", + "2019-01-02T07:28:11.000000000", + "2019-01-02T07:29:32.000000000", + "2019-01-02T07:30:07.000000000", + "2019-01-02T07:31:17.000000000", + "2019-01-02T07:31:27.000000000", + "2019-01-02T07:31:52.000000000", + "2019-01-02T07:32:08.000000000", + "2019-01-02T07:32:24.000000000", + "2019-01-02T07:33:40.000000000", + "2019-01-02T07:35:24.000000000", + "2019-01-02T07:36:19.000000000", + "2019-01-02T07:37:02.000000000", + "2019-01-02T07:37:25.000000000", + "2019-01-02T07:37:57.000000000", + "2019-01-02T07:38:54.000000000", + "2019-01-02T07:39:19.000000000", + "2019-01-02T07:39:29.000000000", + "2019-01-02T07:43:10.000000000", + "2019-01-02T07:44:41.000000000", + "2019-01-02T07:45:28.000000000", + "2019-01-02T07:46:08.000000000", + "2019-01-02T07:46:37.000000000", + "2019-01-02T07:46:43.000000000", + "2019-01-02T07:48:24.000000000", + "2019-01-02T07:49:48.000000000", + "2019-01-02T07:50:19.000000000", + "2019-01-02T07:50:35.000000000", + "2019-01-02T07:51:36.000000000", + "2019-01-02T07:52:08.000000000", + "2019-01-02T07:52:56.000000000", + "2019-01-02T07:53:29.000000000", + "2019-01-02T07:54:02.000000000", + "2019-01-02T07:54:37.000000000", + "2019-01-02T07:57:24.000000000", + "2019-01-02T07:58:40.000000000", + "2019-01-02T07:59:04.000000000", + "2019-01-02T08:00:16.000000000", + "2019-01-02T08:02:25.000000000", + "2019-01-02T08:03:21.000000000", + "2019-01-02T08:05:02.000000000", + "2019-01-02T08:05:20.000000000", + "2019-01-02T08:06:12.000000000", + "2019-01-02T08:07:45.000000000", + "2019-01-02T08:08:09.000000000", + "2019-01-02T08:08:54.000000000", + "2019-01-02T08:09:48.000000000", + "2019-01-02T08:10:23.000000000", + "2019-01-02T08:10:34.000000000", + "2019-01-02T08:11:19.000000000", + "2019-01-02T08:12:26.000000000", + "2019-01-02T08:12:58.000000000", + "2019-01-02T08:14:39.000000000", + "2019-01-02T08:14:45.000000000", + "2019-01-02T08:14:53.000000000", + "2019-01-02T08:15:23.000000000", + "2019-01-02T08:16:06.000000000", + "2019-01-02T08:16:25.000000000", + "2019-01-02T08:16:53.000000000", + "2019-01-02T08:17:38.000000000", + "2019-01-02T08:18:47.000000000", + "2019-01-02T08:18:51.000000000", + "2019-01-02T08:21:10.000000000", + "2019-01-02T08:21:20.000000000", + "2019-01-02T08:22:10.000000000", + "2019-01-02T08:23:25.000000000", + "2019-01-02T08:24:50.000000000", + "2019-01-02T08:25:35.000000000", + "2019-01-02T08:25:38.000000000", + "2019-01-02T08:27:20.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:21.000000000", + "2019-01-02T08:27:56.000000000", + "2019-01-02T08:27:59.000000000", + "2019-01-02T08:29:27.000000000", + "2019-01-02T08:31:53.000000000", + "2019-01-02T08:33:09.000000000", + "2019-01-02T08:34:17.000000000", + "2019-01-02T08:34:50.000000000", + "2019-01-02T08:34:55.000000000", + "2019-01-02T08:36:07.000000000", + "2019-01-02T08:37:25.000000000", + "2019-01-02T08:38:57.000000000", + "2019-01-02T08:39:25.000000000", + "2019-01-02T08:39:43.000000000", + "2019-01-02T08:39:46.000000000", + "2019-01-02T08:40:11.000000000", + "2019-01-02T08:40:17.000000000", + "2019-01-02T08:42:05.000000000", + "2019-01-02T08:42:29.000000000", + "2019-01-02T08:43:10.000000000", + "2019-01-02T08:43:17.000000000", + "2019-01-02T08:44:03.000000000", + "2019-01-02T08:44:42.000000000", + "2019-01-02T08:44:44.000000000", + "2019-01-02T08:44:50.000000000", + "2019-01-02T08:46:45.000000000", + "2019-01-02T08:46:55.000000000", + "2019-01-02T08:48:19.000000000", + "2019-01-02T08:48:20.000000000", + "2019-01-02T08:48:39.000000000", + "2019-01-02T08:52:12.000000000", + "2019-01-02T08:52:30.000000000", + "2019-01-02T08:53:25.000000000", + "2019-01-02T08:53:34.000000000", + "2019-01-02T08:54:27.000000000", + "2019-01-02T08:54:56.000000000", + "2019-01-02T08:55:15.000000000", + "2019-01-02T08:55:27.000000000", + "2019-01-02T08:55:51.000000000", + "2019-01-02T08:55:58.000000000", + "2019-01-02T08:56:07.000000000", + "2019-01-02T08:56:47.000000000", + "2019-01-02T08:56:58.000000000", + "2019-01-02T08:57:36.000000000", + "2019-01-02T08:58:53.000000000", + "2019-01-02T09:00:03.000000000", + "2019-01-02T09:00:06.000000000", + "2019-01-02T09:00:20.000000000", + "2019-01-02T09:02:25.000000000", + "2019-01-02T09:06:28.000000000", + "2019-01-02T09:06:29.000000000", + "2019-01-02T09:08:35.000000000", + "2019-01-02T09:10:11.000000000", + "2019-01-02T09:11:04.000000000", + "2019-01-02T09:13:51.000000000", + "2019-01-02T09:14:15.000000000", + "2019-01-02T09:15:57.000000000", + "2019-01-02T09:16:16.000000000", + "2019-01-02T09:16:26.000000000", + "2019-01-02T09:17:27.000000000", + "2019-01-02T09:20:36.000000000", + "2019-01-02T09:24:35.000000000", + "2019-01-02T09:26:47.000000000", + "2019-01-02T09:28:27.000000000", + "2019-01-02T09:30:43.000000000", + "2019-01-02T09:30:55.000000000", + "2019-01-02T09:32:17.000000000", + "2019-01-02T09:34:34.000000000", + "2019-01-02T09:34:36.000000000", + "2019-01-02T09:34:52.000000000", + "2019-01-02T09:34:59.000000000", + "2019-01-02T09:35:54.000000000", + "2019-01-02T09:36:57.000000000", + "2019-01-02T09:37:50.000000000", + "2019-01-02T09:42:01.000000000", + "2019-01-02T09:42:25.000000000", + "2019-01-02T09:43:41.000000000", + "2019-01-02T09:45:20.000000000", + "2019-01-02T09:48:14.000000000", + "2019-01-02T09:48:46.000000000", + "2019-01-02T09:49:16.000000000", + "2019-01-02T09:49:47.000000000", + "2019-01-02T09:52:12.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:33.000000000", + "2019-01-02T09:53:37.000000000", + "2019-01-02T09:53:51.000000000", + "2019-01-02T09:55:00.000000000", + "2019-01-02T09:56:21.000000000", + "2019-01-02T09:57:34.000000000", + "2019-01-02T09:59:25.000000000", + "2019-01-02T09:59:51.000000000", + "2019-01-02T10:01:02.000000000", + "2019-01-02T10:01:42.000000000", + "2019-01-02T10:02:00.000000000", + "2019-01-02T10:02:33.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:12.000000000", + "2019-01-02T10:03:58.000000000", + "2019-01-02T10:05:00.000000000", + "2019-01-02T10:05:04.000000000", + "2019-01-02T10:05:58.000000000", + "2019-01-02T10:06:41.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:12.000000000", + "2019-01-02T10:08:49.000000000", + "2019-01-02T10:09:57.000000000", + "2019-01-02T10:10:38.000000000", + "2019-01-02T10:10:50.000000000", + "2019-01-02T10:13:04.000000000", + "2019-01-02T10:13:12.000000000", + "2019-01-02T10:14:13.000000000", + "2019-01-02T10:16:13.000000000", + "2019-01-02T10:16:28.000000000", + "2019-01-02T10:17:53.000000000", + "2019-01-02T10:17:54.000000000", + "2019-01-02T10:19:34.000000000", + "2019-01-02T10:20:21.000000000", + "2019-01-02T10:20:31.000000000", + "2019-01-02T10:21:47.000000000", + "2019-01-02T10:22:25.000000000", + "2019-01-02T10:24:03.000000000", + "2019-01-02T10:24:49.000000000", + "2019-01-02T10:29:00.000000000", + "2019-01-02T10:30:50.000000000", + "2019-01-02T10:30:52.000000000", + "2019-01-02T10:30:58.000000000", + "2019-01-02T10:32:07.000000000", + "2019-01-02T10:32:27.000000000", + "2019-01-02T10:32:33.000000000", + "2019-01-02T10:32:44.000000000", + "2019-01-02T10:32:45.000000000", + "2019-01-02T10:35:10.000000000", + "2019-01-02T10:38:19.000000000", + "2019-01-02T10:38:57.000000000", + "2019-01-02T10:40:40.000000000", + "2019-01-02T10:42:29.000000000", + "2019-01-02T10:42:51.000000000", + "2019-01-02T10:42:54.000000000", + "2019-01-02T10:45:20.000000000", + "2019-01-02T10:46:22.000000000", + "2019-01-02T10:47:30.000000000", + "2019-01-02T10:47:55.000000000", + "2019-01-02T10:50:42.000000000", + "2019-01-02T10:51:00.000000000", + "2019-01-02T10:51:56.000000000", + "2019-01-02T10:52:37.000000000", + "2019-01-02T10:55:44.000000000", + "2019-01-02T10:56:24.000000000", + "2019-01-02T10:56:38.000000000", + "2019-01-02T10:56:47.000000000", + "2019-01-02T10:57:59.000000000", + "2019-01-02T10:58:17.000000000", + "2019-01-02T10:59:25.000000000", + "2019-01-02T11:00:29.000000000", + "2019-01-02T11:01:33.000000000", + "2019-01-02T11:02:40.000000000", + "2019-01-02T11:03:10.000000000", + "2019-01-02T11:04:35.000000000", + "2019-01-02T11:05:19.000000000", + "2019-01-02T11:06:17.000000000", + "2019-01-02T11:06:27.000000000", + "2019-01-02T11:06:42.000000000", + "2019-01-02T11:08:54.000000000", + "2019-01-02T11:09:40.000000000", + "2019-01-02T11:09:54.000000000", + "2019-01-02T11:11:59.000000000", + "2019-01-02T11:12:17.000000000", + "2019-01-02T11:13:22.000000000", + "2019-01-02T11:14:06.000000000", + "2019-01-02T11:15:33.000000000", + "2019-01-02T11:16:10.000000000", + "2019-01-02T11:17:48.000000000", + "2019-01-02T11:19:15.000000000", + "2019-01-02T11:19:28.000000000", + "2019-01-02T11:19:43.000000000", + "2019-01-02T11:20:59.000000000", + "2019-01-02T11:25:35.000000000", + "2019-01-02T11:27:50.000000000", + "2019-01-02T11:30:05.000000000", + "2019-01-02T11:30:14.000000000", + "2019-01-02T11:30:42.000000000", + "2019-01-02T11:31:23.000000000", + "2019-01-02T11:33:04.000000000", + "2019-01-02T11:33:57.000000000", + "2019-01-02T11:34:10.000000000", + "2019-01-02T11:40:13.000000000", + "2019-01-02T11:41:32.000000000", + "2019-01-02T11:42:48.000000000", + "2019-01-02T11:43:17.000000000", + "2019-01-02T11:45:19.000000000", + "2019-01-02T11:46:09.000000000", + "2019-01-02T11:48:16.000000000", + "2019-01-02T11:49:37.000000000", + "2019-01-02T11:53:24.000000000", + "2019-01-02T11:54:27.000000000", + "2019-01-02T11:55:14.000000000", + "2019-01-02T11:56:50.000000000", + "2019-01-02T11:56:58.000000000", + "2019-01-02T11:57:04.000000000", + "2019-01-02T11:57:08.000000000", + "2019-01-02T11:57:14.000000000", + "2019-01-02T11:57:47.000000000", + "2019-01-02T11:59:25.000000000", + "2019-01-02T11:59:58.000000000", + "2019-01-02T12:00:35.000000000", + "2019-01-02T12:02:01.000000000", + "2019-01-02T12:02:06.000000000", + "2019-01-02T12:02:43.000000000", + "2019-01-02T12:03:14.000000000", + "2019-01-02T12:04:33.000000000", + "2019-01-02T12:04:35.000000000", + "2019-01-02T12:05:31.000000000", + "2019-01-02T12:06:08.000000000", + "2019-01-02T12:08:11.000000000", + "2019-01-02T12:08:20.000000000", + "2019-01-02T12:11:30.000000000", + "2019-01-02T12:11:34.000000000", + "2019-01-02T12:12:18.000000000", + "2019-01-02T12:15:30.000000000", + "2019-01-02T12:20:07.000000000", + "2019-01-02T12:20:59.000000000", + "2019-01-02T12:24:06.000000000", + "2019-01-02T12:26:09.000000000", + "2019-01-02T12:26:32.000000000", + "2019-01-02T12:26:48.000000000", + "2019-01-02T12:27:26.000000000", + "2019-01-02T12:30:19.000000000", + "2019-01-02T12:32:32.000000000", + "2019-01-02T12:36:19.000000000", + "2019-01-02T12:39:40.000000000", + "2019-01-02T12:39:44.000000000", + "2019-01-02T12:41:33.000000000", + "2019-01-02T12:42:00.000000000", + "2019-01-02T12:42:08.000000000", + "2019-01-02T12:42:14.000000000", + "2019-01-02T12:44:45.000000000", + "2019-01-02T12:45:58.000000000", + "2019-01-02T12:48:04.000000000", + "2019-01-02T12:49:22.000000000", + "2019-01-02T12:49:49.000000000", + "2019-01-02T12:50:10.000000000", + "2019-01-02T12:51:06.000000000", + "2019-01-02T12:52:47.000000000", + "2019-01-02T12:53:42.000000000", + "2019-01-02T12:54:31.000000000", + "2019-01-02T12:56:26.000000000", + "2019-01-02T12:59:31.000000000", + "2019-01-02T13:01:03.000000000", + "2019-01-02T13:02:20.000000000", + "2019-01-02T13:02:35.000000000", + "2019-01-02T13:03:37.000000000", + "2019-01-02T13:04:15.000000000", + "2019-01-02T13:05:05.000000000", + "2019-01-02T13:05:29.000000000", + "2019-01-02T13:07:17.000000000", + "2019-01-02T13:08:44.000000000", + "2019-01-02T13:09:35.000000000", + "2019-01-02T13:10:25.000000000", + "2019-01-02T13:11:04.000000000", + "2019-01-02T13:11:58.000000000", + "2019-01-02T13:12:25.000000000", + "2019-01-02T13:13:54.000000000", + "2019-01-02T13:17:07.000000000", + "2019-01-02T13:17:18.000000000", + "2019-01-02T13:17:22.000000000", + "2019-01-02T13:17:52.000000000", + "2019-01-02T13:18:26.000000000", + "2019-01-02T13:18:34.000000000", + "2019-01-02T13:18:44.000000000", + "2019-01-02T13:21:37.000000000", + "2019-01-02T13:21:58.000000000", + "2019-01-02T13:22:03.000000000", + "2019-01-02T13:22:30.000000000", + "2019-01-02T13:22:39.000000000", + "2019-01-02T13:24:37.000000000", + "2019-01-02T13:24:52.000000000", + "2019-01-02T13:26:00.000000000", + "2019-01-02T13:26:38.000000000", + "2019-01-02T13:30:08.000000000", + "2019-01-02T13:31:04.000000000", + "2019-01-02T13:31:22.000000000", + "2019-01-02T13:32:37.000000000", + "2019-01-02T13:33:42.000000000", + "2019-01-02T13:36:50.000000000", + "2019-01-02T13:37:30.000000000", + "2019-01-02T13:38:11.000000000", + "2019-01-02T13:38:12.000000000", + "2019-01-02T13:38:38.000000000", + "2019-01-02T13:41:04.000000000", + "2019-01-02T13:41:43.000000000", + "2019-01-02T13:41:56.000000000", + "2019-01-02T13:42:45.000000000", + "2019-01-02T13:42:49.000000000", + "2019-01-02T13:44:53.000000000", + "2019-01-02T13:45:02.000000000", + "2019-01-02T13:45:35.000000000", + "2019-01-02T13:48:19.000000000", + "2019-01-02T13:48:40.000000000", + "2019-01-02T13:49:01.000000000", + "2019-01-02T13:49:25.000000000", + "2019-01-02T13:50:31.000000000", + "2019-01-02T13:52:27.000000000", + "2019-01-02T13:52:38.000000000", + "2019-01-02T13:53:08.000000000", + "2019-01-02T13:53:10.000000000", + "2019-01-02T13:53:15.000000000", + "2019-01-02T13:53:24.000000000", + "2019-01-02T13:53:46.000000000", + "2019-01-02T13:53:57.000000000", + "2019-01-02T13:55:17.000000000", + "2019-01-02T13:56:29.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:56:35.000000000", + "2019-01-02T13:57:12.000000000", + "2019-01-02T13:57:33.000000000", + "2019-01-02T14:00:56.000000000", + "2019-01-02T14:01:13.000000000", + "2019-01-02T14:03:14.000000000", + "2019-01-02T14:04:51.000000000", + "2019-01-02T14:05:18.000000000", + "2019-01-02T14:05:48.000000000", + "2019-01-02T14:05:51.000000000", + "2019-01-02T14:07:19.000000000", + "2019-01-02T14:08:04.000000000", + "2019-01-02T14:08:42.000000000", + "2019-01-02T14:09:33.000000000", + "2019-01-02T14:09:43.000000000", + "2019-01-02T14:10:58.000000000", + "2019-01-02T14:13:01.000000000", + "2019-01-02T14:13:31.000000000", + "2019-01-02T14:14:03.000000000", + "2019-01-02T14:16:38.000000000", + "2019-01-02T14:17:03.000000000", + "2019-01-02T14:18:53.000000000", + "2019-01-02T14:19:02.000000000", + "2019-01-02T14:19:56.000000000", + "2019-01-02T14:22:11.000000000", + "2019-01-02T14:22:18.000000000", + "2019-01-02T14:25:02.000000000", + "2019-01-02T14:25:35.000000000", + "2019-01-02T14:25:48.000000000", + "2019-01-02T14:26:09.000000000", + "2019-01-02T14:27:43.000000000", + "2019-01-02T14:27:46.000000000", + "2019-01-02T14:29:00.000000000", + "2019-01-02T14:29:32.000000000", + "2019-01-02T14:29:42.000000000", + "2019-01-02T14:29:44.000000000", + "2019-01-02T14:29:45.000000000", + "2019-01-02T14:29:51.000000000", + "2019-01-02T14:31:42.000000000", + "2019-01-02T14:33:25.000000000", + "2019-01-02T14:33:45.000000000", + "2019-01-02T14:34:36.000000000", + "2019-01-02T14:35:22.000000000", + "2019-01-02T14:35:52.000000000", + "2019-01-02T14:36:24.000000000", + "2019-01-02T14:37:05.000000000", + "2019-01-02T14:37:13.000000000", + "2019-01-02T14:38:31.000000000", + "2019-01-02T14:38:51.000000000", + "2019-01-02T14:39:24.000000000", + "2019-01-02T14:40:00.000000000", + "2019-01-02T14:41:30.000000000", + "2019-01-02T14:41:35.000000000", + "2019-01-02T14:42:00.000000000", + "2019-01-02T14:42:31.000000000", + "2019-01-02T14:44:18.000000000", + "2019-01-02T14:46:23.000000000", + "2019-01-02T14:47:00.000000000", + "2019-01-02T14:49:54.000000000", + "2019-01-02T14:50:09.000000000", + "2019-01-02T14:51:34.000000000", + "2019-01-02T14:52:05.000000000", + "2019-01-02T14:52:12.000000000", + "2019-01-02T14:53:17.000000000", + "2019-01-02T14:54:12.000000000", + "2019-01-02T14:55:05.000000000", + "2019-01-02T14:57:04.000000000", + "2019-01-02T14:57:18.000000000", + "2019-01-02T15:01:44.000000000", + "2019-01-02T15:01:50.000000000", + "2019-01-02T15:03:01.000000000", + "2019-01-02T15:03:04.000000000", + "2019-01-02T15:03:55.000000000", + "2019-01-02T15:03:58.000000000", + "2019-01-02T15:04:25.000000000", + "2019-01-02T15:04:32.000000000", + "2019-01-02T15:05:19.000000000", + "2019-01-02T15:08:49.000000000", + "2019-01-02T15:08:51.000000000", + "2019-01-02T15:10:57.000000000", + "2019-01-02T15:11:12.000000000", + "2019-01-02T15:11:22.000000000", + "2019-01-02T15:13:12.000000000", + "2019-01-02T15:16:25.000000000", + "2019-01-02T15:16:28.000000000", + "2019-01-02T15:16:59.000000000", + "2019-01-02T15:17:51.000000000", + "2019-01-02T15:18:25.000000000", + "2019-01-02T15:21:36.000000000", + "2019-01-02T15:21:55.000000000", + "2019-01-02T15:25:44.000000000", + "2019-01-02T15:26:11.000000000", + "2019-01-02T15:27:02.000000000", + "2019-01-02T15:31:04.000000000", + "2019-01-02T15:33:38.000000000", + "2019-01-02T15:34:04.000000000", + "2019-01-02T15:36:22.000000000", + "2019-01-02T15:37:15.000000000", + "2019-01-02T15:37:39.000000000", + "2019-01-02T15:39:06.000000000", + "2019-01-02T15:41:19.000000000", + "2019-01-02T15:41:27.000000000", + "2019-01-02T15:42:43.000000000", + "2019-01-02T15:43:31.000000000", + "2019-01-02T15:44:06.000000000", + "2019-01-02T15:45:36.000000000", + "2019-01-02T15:47:47.000000000", + "2019-01-02T15:48:37.000000000", + "2019-01-02T15:49:08.000000000", + "2019-01-02T15:49:10.000000000", + "2019-01-02T15:50:00.000000000", + "2019-01-02T15:50:22.000000000", + "2019-01-02T15:50:58.000000000", + "2019-01-02T15:51:26.000000000", + "2019-01-02T15:53:52.000000000", + "2019-01-02T15:54:09.000000000", + "2019-01-02T15:55:00.000000000", + "2019-01-02T15:55:57.000000000", + "2019-01-02T15:56:11.000000000", + "2019-01-02T15:56:44.000000000", + "2019-01-02T15:57:04.000000000", + "2019-01-02T16:00:26.000000000", + "2019-01-02T16:01:52.000000000", + "2019-01-02T16:03:24.000000000", + "2019-01-02T16:03:28.000000000", + "2019-01-02T16:04:32.000000000", + "2019-01-02T16:06:01.000000000", + "2019-01-02T16:06:43.000000000", + "2019-01-02T16:06:48.000000000", + "2019-01-02T16:07:51.000000000", + "2019-01-02T16:08:06.000000000", + "2019-01-02T16:08:19.000000000", + "2019-01-02T16:08:24.000000000", + "2019-01-02T16:08:26.000000000", + "2019-01-02T16:08:48.000000000", + "2019-01-02T16:09:01.000000000", + "2019-01-02T16:09:43.000000000", + "2019-01-02T16:12:38.000000000", + "2019-01-02T16:13:11.000000000", + "2019-01-02T16:13:18.000000000", + "2019-01-02T16:13:51.000000000", + "2019-01-02T16:14:31.000000000", + "2019-01-02T16:15:03.000000000", + "2019-01-02T16:15:27.000000000", + "2019-01-02T16:16:02.000000000", + "2019-01-02T16:16:45.000000000", + "2019-01-02T16:17:06.000000000", + "2019-01-02T16:17:13.000000000", + "2019-01-02T16:18:13.000000000", + "2019-01-02T16:19:17.000000000", + "2019-01-02T16:19:31.000000000", + "2019-01-02T16:22:27.000000000", + "2019-01-02T16:23:43.000000000", + "2019-01-02T16:24:15.000000000", + "2019-01-02T16:26:51.000000000", + "2019-01-02T16:26:55.000000000", + "2019-01-02T16:27:21.000000000", + "2019-01-02T16:28:09.000000000", + "2019-01-02T16:29:29.000000000", + "2019-01-02T16:31:59.000000000", + "2019-01-02T16:32:15.000000000", + "2019-01-02T16:33:55.000000000", + "2019-01-02T16:37:59.000000000", + "2019-01-02T16:38:29.000000000", + "2019-01-02T16:39:14.000000000", + "2019-01-02T16:40:59.000000000", + "2019-01-02T16:41:43.000000000", + "2019-01-02T16:42:07.000000000", + "2019-01-02T16:43:53.000000000", + "2019-01-02T16:44:01.000000000", + "2019-01-02T16:44:47.000000000", + "2019-01-02T16:45:22.000000000", + "2019-01-02T16:46:49.000000000", + "2019-01-02T16:46:56.000000000", + "2019-01-02T16:48:18.000000000", + "2019-01-02T16:49:53.000000000", + "2019-01-02T16:55:59.000000000", + "2019-01-02T16:57:05.000000000", + "2019-01-02T16:58:29.000000000", + "2019-01-02T16:58:31.000000000", + "2019-01-02T16:58:56.000000000", + "2019-01-02T17:00:16.000000000", + "2019-01-02T17:01:22.000000000", + "2019-01-02T17:03:54.000000000", + "2019-01-02T17:04:02.000000000", + "2019-01-02T17:04:11.000000000", + "2019-01-02T17:04:27.000000000", + "2019-01-02T17:05:23.000000000", + "2019-01-02T17:05:42.000000000", + "2019-01-02T17:07:12.000000000", + "2019-01-02T17:08:04.000000000", + "2019-01-02T17:08:41.000000000", + "2019-01-02T17:09:24.000000000", + "2019-01-02T17:10:09.000000000", + "2019-01-02T17:10:26.000000000", + "2019-01-02T17:12:32.000000000", + "2019-01-02T17:12:50.000000000", + "2019-01-02T17:12:55.000000000", + "2019-01-02T17:13:10.000000000", + "2019-01-02T17:14:49.000000000", + "2019-01-02T17:15:09.000000000", + "2019-01-02T17:16:11.000000000", + "2019-01-02T17:17:52.000000000", + "2019-01-02T17:19:33.000000000", + "2019-01-02T17:20:11.000000000", + "2019-01-02T17:20:24.000000000", + "2019-01-02T17:21:14.000000000", + "2019-01-02T17:21:15.000000000", + "2019-01-02T17:21:56.000000000", + "2019-01-02T17:22:07.000000000", + "2019-01-02T17:22:21.000000000", + "2019-01-02T17:22:22.000000000", + "2019-01-02T17:23:39.000000000", + "2019-01-02T17:25:15.000000000", + "2019-01-02T17:25:19.000000000", + "2019-01-02T17:25:51.000000000", + "2019-01-02T17:26:33.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:27:10.000000000", + "2019-01-02T17:28:09.000000000", + "2019-01-02T17:28:38.000000000", + "2019-01-02T17:28:54.000000000", + "2019-01-02T17:30:41.000000000", + "2019-01-02T17:31:38.000000000", + "2019-01-02T17:31:51.000000000", + "2019-01-02T17:33:33.000000000", + "2019-01-02T17:35:48.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:35:57.000000000", + "2019-01-02T17:38:48.000000000", + "2019-01-02T17:39:59.000000000", + "2019-01-02T17:40:43.000000000", + "2019-01-02T17:40:55.000000000", + "2019-01-02T17:41:05.000000000", + "2019-01-02T17:43:22.000000000", + "2019-01-02T17:48:16.000000000", + "2019-01-02T17:48:56.000000000", + "2019-01-02T17:50:29.000000000", + "2019-01-02T17:50:56.000000000", + "2019-01-02T17:51:04.000000000", + "2019-01-02T17:53:22.000000000", + "2019-01-02T17:53:41.000000000", + "2019-01-02T17:53:43.000000000", + "2019-01-02T17:54:37.000000000", + "2019-01-02T17:55:06.000000000", + "2019-01-02T17:57:05.000000000", + "2019-01-02T18:00:53.000000000", + "2019-01-02T18:02:19.000000000", + "2019-01-02T18:02:32.000000000", + "2019-01-02T18:03:44.000000000", + "2019-01-02T18:05:34.000000000", + "2019-01-02T18:06:06.000000000", + "2019-01-02T18:06:19.000000000", + "2019-01-02T18:07:27.000000000", + "2019-01-02T18:07:44.000000000", + "2019-01-02T18:11:12.000000000", + "2019-01-02T18:12:11.000000000", + "2019-01-02T18:12:28.000000000", + "2019-01-02T18:12:43.000000000", + "2019-01-02T18:13:26.000000000", + "2019-01-02T18:14:48.000000000", + "2019-01-02T18:16:04.000000000", + "2019-01-02T18:20:13.000000000", + "2019-01-02T18:21:16.000000000", + "2019-01-02T18:21:22.000000000", + "2019-01-02T18:21:26.000000000", + "2019-01-02T18:21:34.000000000", + "2019-01-02T18:22:12.000000000", + "2019-01-02T18:23:17.000000000", + "2019-01-02T18:24:25.000000000", + "2019-01-02T18:25:07.000000000", + "2019-01-02T18:26:06.000000000", + "2019-01-02T18:26:11.000000000", + "2019-01-02T18:27:02.000000000", + "2019-01-02T18:27:57.000000000", + "2019-01-02T18:27:59.000000000", + "2019-01-02T18:30:05.000000000", + "2019-01-02T18:33:09.000000000", + "2019-01-02T18:33:26.000000000", + "2019-01-02T18:36:34.000000000", + "2019-01-02T18:37:08.000000000", + "2019-01-02T18:39:04.000000000", + "2019-01-02T18:40:19.000000000", + "2019-01-02T18:40:38.000000000", + "2019-01-02T18:40:54.000000000", + "2019-01-02T18:41:38.000000000", + "2019-01-02T18:41:55.000000000", + "2019-01-02T18:42:07.000000000", + "2019-01-02T18:42:33.000000000", + "2019-01-02T18:46:52.000000000", + "2019-01-02T18:50:41.000000000", + "2019-01-02T18:51:45.000000000", + "2019-01-02T18:51:51.000000000", + "2019-01-02T18:53:52.000000000", + "2019-01-02T18:54:09.000000000", + "2019-01-02T18:56:21.000000000", + "2019-01-02T18:56:33.000000000", + "2019-01-02T18:58:12.000000000", + "2019-01-02T18:59:24.000000000", + "2019-01-02T19:01:16.000000000", + "2019-01-02T19:01:17.000000000", + "2019-01-02T19:01:50.000000000", + "2019-01-02T19:02:17.000000000", + "2019-01-02T19:02:55.000000000", + "2019-01-02T19:03:34.000000000", + "2019-01-02T19:05:34.000000000", + "2019-01-02T19:07:31.000000000", + "2019-01-02T19:09:07.000000000", + "2019-01-02T19:09:53.000000000", + "2019-01-02T19:11:03.000000000", + "2019-01-02T19:11:42.000000000", + "2019-01-02T19:12:04.000000000", + "2019-01-02T19:12:21.000000000", + "2019-01-02T19:12:54.000000000", + "2019-01-02T19:13:15.000000000", + "2019-01-02T19:14:03.000000000", + "2019-01-02T19:15:18.000000000", + "2019-01-02T19:16:11.000000000", + "2019-01-02T19:17:02.000000000", + "2019-01-02T19:17:12.000000000", + "2019-01-02T19:17:58.000000000", + "2019-01-02T19:18:02.000000000", + "2019-01-02T19:18:06.000000000", + "2019-01-02T19:19:12.000000000", + "2019-01-02T19:20:23.000000000", + "2019-01-02T19:21:02.000000000", + "2019-01-02T19:21:04.000000000", + "2019-01-02T19:21:09.000000000", + "2019-01-02T19:22:05.000000000", + "2019-01-02T19:24:09.000000000", + "2019-01-02T19:25:19.000000000", + "2019-01-02T19:25:58.000000000", + "2019-01-02T19:26:35.000000000", + "2019-01-02T19:28:12.000000000", + "2019-01-02T19:29:22.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:29:41.000000000", + "2019-01-02T19:30:17.000000000", + "2019-01-02T19:31:04.000000000", + "2019-01-02T19:31:30.000000000", + "2019-01-02T19:32:42.000000000", + "2019-01-02T19:35:31.000000000", + "2019-01-02T19:35:34.000000000", + "2019-01-02T19:35:51.000000000", + "2019-01-02T19:36:37.000000000", + "2019-01-02T19:40:50.000000000", + "2019-01-02T19:41:24.000000000", + "2019-01-02T19:41:25.000000000", + "2019-01-02T19:41:54.000000000", + "2019-01-02T19:43:30.000000000", + "2019-01-02T19:44:21.000000000", + "2019-01-02T19:44:43.000000000", + "2019-01-02T19:44:58.000000000", + "2019-01-02T19:46:38.000000000", + "2019-01-02T19:48:20.000000000", + "2019-01-02T19:50:10.000000000", + "2019-01-02T19:52:16.000000000", + "2019-01-02T19:53:56.000000000", + "2019-01-02T19:54:02.000000000", + "2019-01-02T19:55:32.000000000", + "2019-01-02T19:55:34.000000000", + "2019-01-02T19:57:06.000000000", + "2019-01-02T19:57:33.000000000", + "2019-01-02T19:58:16.000000000", + "2019-01-02T19:59:16.000000000", + "2019-01-02T20:00:41.000000000", + "2019-01-02T20:01:58.000000000", + "2019-01-02T20:02:03.000000000", + "2019-01-02T20:02:18.000000000", + "2019-01-02T20:04:01.000000000", + "2019-01-02T20:04:06.000000000", + "2019-01-02T20:04:13.000000000", + "2019-01-02T20:04:26.000000000", + "2019-01-02T20:04:45.000000000", + "2019-01-02T20:05:57.000000000", + "2019-01-02T20:07:12.000000000", + "2019-01-02T20:07:36.000000000", + "2019-01-02T20:08:50.000000000", + "2019-01-02T20:10:46.000000000", + "2019-01-02T20:10:49.000000000", + "2019-01-02T20:11:41.000000000", + "2019-01-02T20:13:26.000000000", + "2019-01-02T20:15:15.000000000", + "2019-01-02T20:17:15.000000000", + "2019-01-02T20:18:32.000000000", + "2019-01-02T20:19:58.000000000", + "2019-01-02T20:24:07.000000000", + "2019-01-02T20:25:39.000000000", + "2019-01-02T20:26:34.000000000", + "2019-01-02T20:27:38.000000000", + "2019-01-02T20:30:33.000000000", + "2019-01-02T20:31:32.000000000", + "2019-01-02T20:32:58.000000000", + "2019-01-02T20:33:01.000000000", + "2019-01-02T20:33:27.000000000", + "2019-01-02T20:33:33.000000000", + "2019-01-02T20:34:40.000000000", + "2019-01-02T20:36:38.000000000", + "2019-01-02T20:38:11.000000000", + "2019-01-02T20:38:36.000000000", + "2019-01-02T20:38:43.000000000", + "2019-01-02T20:39:19.000000000", + "2019-01-02T20:45:46.000000000", + "2019-01-02T20:47:07.000000000", + "2019-01-02T20:47:47.000000000", + "2019-01-02T20:48:51.000000000", + "2019-01-02T20:49:03.000000000", + "2019-01-02T20:50:46.000000000", + "2019-01-02T20:52:00.000000000", + "2019-01-02T20:52:35.000000000", + "2019-01-02T20:53:07.000000000", + "2019-01-02T20:53:39.000000000", + "2019-01-02T20:54:07.000000000", + "2019-01-02T20:54:10.000000000", + "2019-01-02T20:56:40.000000000", + "2019-01-02T21:00:04.000000000", + "2019-01-02T21:00:28.000000000", + "2019-01-02T21:00:42.000000000", + "2019-01-02T21:02:37.000000000", + "2019-01-02T21:03:27.000000000", + "2019-01-02T21:04:43.000000000", + "2019-01-02T21:04:45.000000000", + "2019-01-02T21:05:13.000000000", + "2019-01-02T21:06:07.000000000", + "2019-01-02T21:06:17.000000000", + "2019-01-02T21:06:22.000000000", + "2019-01-02T21:09:07.000000000", + "2019-01-02T21:10:55.000000000", + "2019-01-02T21:11:46.000000000", + "2019-01-02T21:12:12.000000000", + "2019-01-02T21:12:21.000000000", + "2019-01-02T21:12:42.000000000", + "2019-01-02T21:12:57.000000000", + "2019-01-02T21:14:13.000000000", + "2019-01-02T21:15:03.000000000", + "2019-01-02T21:17:34.000000000", + "2019-01-02T21:19:13.000000000", + "2019-01-02T21:22:06.000000000", + "2019-01-02T21:22:43.000000000", + "2019-01-02T21:22:45.000000000", + "2019-01-02T21:24:19.000000000", + "2019-01-02T21:24:29.000000000", + "2019-01-02T21:24:52.000000000", + "2019-01-02T21:27:03.000000000", + "2019-01-02T21:27:13.000000000", + "2019-01-02T21:27:51.000000000", + "2019-01-02T21:28:09.000000000", + "2019-01-02T21:30:28.000000000", + "2019-01-02T21:30:41.000000000", + "2019-01-02T21:31:48.000000000", + "2019-01-02T21:31:56.000000000", + "2019-01-02T21:33:09.000000000", + "2019-01-02T21:34:41.000000000", + "2019-01-02T21:35:21.000000000", + "2019-01-02T21:35:52.000000000", + "2019-01-02T21:36:07.000000000", + "2019-01-02T21:36:40.000000000", + "2019-01-02T21:37:00.000000000", + "2019-01-02T21:37:54.000000000", + "2019-01-02T21:38:01.000000000", + "2019-01-02T21:38:57.000000000", + "2019-01-02T21:40:04.000000000", + "2019-01-02T21:40:30.000000000", + "2019-01-02T21:41:59.000000000", + "2019-01-02T21:42:36.000000000", + "2019-01-02T21:43:33.000000000", + "2019-01-02T21:43:35.000000000", + "2019-01-02T21:45:43.000000000", + "2019-01-02T21:45:47.000000000", + "2019-01-02T21:46:43.000000000", + "2019-01-02T21:46:52.000000000", + "2019-01-02T21:47:23.000000000", + "2019-01-02T21:48:21.000000000", + "2019-01-02T21:48:39.000000000", + "2019-01-02T21:50:12.000000000", + "2019-01-02T21:50:28.000000000", + "2019-01-02T21:50:47.000000000", + "2019-01-02T21:50:55.000000000", + "2019-01-02T21:52:31.000000000", + "2019-01-02T21:53:03.000000000", + "2019-01-02T21:53:44.000000000", + "2019-01-02T21:54:17.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:56:06.000000000", + "2019-01-02T21:59:37.000000000", + "2019-01-02T22:00:05.000000000", + "2019-01-02T22:00:39.000000000", + "2019-01-02T22:01:23.000000000", + "2019-01-02T22:02:15.000000000", + "2019-01-02T22:03:03.000000000", + "2019-01-02T22:03:39.000000000", + "2019-01-02T22:05:47.000000000", + "2019-01-02T22:07:38.000000000", + "2019-01-02T22:08:02.000000000", + "2019-01-02T22:09:57.000000000", + "2019-01-02T22:10:22.000000000", + "2019-01-02T22:10:57.000000000", + "2019-01-02T22:12:26.000000000", + "2019-01-02T22:12:29.000000000", + "2019-01-02T22:12:40.000000000", + "2019-01-02T22:12:55.000000000", + "2019-01-02T22:14:12.000000000", + "2019-01-02T22:14:48.000000000", + "2019-01-02T22:21:23.000000000", + "2019-01-02T22:22:10.000000000", + "2019-01-02T22:22:13.000000000", + "2019-01-02T22:23:14.000000000", + "2019-01-02T22:25:37.000000000", + "2019-01-02T22:26:00.000000000", + "2019-01-02T22:26:06.000000000", + "2019-01-02T22:27:07.000000000", + "2019-01-02T22:27:30.000000000", + "2019-01-02T22:27:50.000000000", + "2019-01-02T22:28:22.000000000", + "2019-01-02T22:31:01.000000000", + "2019-01-02T22:31:07.000000000", + "2019-01-02T22:31:33.000000000", + "2019-01-02T22:32:59.000000000", + "2019-01-02T22:33:54.000000000", + "2019-01-02T22:33:59.000000000", + "2019-01-02T22:34:00.000000000", + "2019-01-02T22:34:29.000000000", + "2019-01-02T22:34:38.000000000", + "2019-01-02T22:35:18.000000000", + "2019-01-02T22:35:30.000000000", + "2019-01-02T22:37:57.000000000", + "2019-01-02T22:42:13.000000000", + "2019-01-02T22:43:35.000000000", + "2019-01-02T22:44:28.000000000", + "2019-01-02T22:44:40.000000000", + "2019-01-02T22:44:58.000000000", + "2019-01-02T22:46:00.000000000", + "2019-01-02T22:46:09.000000000", + "2019-01-02T22:51:22.000000000", + "2019-01-02T22:54:31.000000000", + "2019-01-02T22:55:37.000000000", + "2019-01-02T22:56:08.000000000", + "2019-01-02T22:56:28.000000000", + "2019-01-02T22:56:38.000000000", + "2019-01-02T22:56:51.000000000", + "2019-01-02T22:58:01.000000000", + "2019-01-02T23:00:20.000000000", + "2019-01-02T23:04:36.000000000", + "2019-01-02T23:05:21.000000000", + "2019-01-02T23:07:55.000000000", + "2019-01-02T23:08:08.000000000", + "2019-01-02T23:09:35.000000000", + "2019-01-02T23:10:24.000000000", + "2019-01-02T23:10:59.000000000", + "2019-01-02T23:12:45.000000000", + "2019-01-02T23:12:54.000000000", + "2019-01-02T23:13:29.000000000", + "2019-01-02T23:13:48.000000000", + "2019-01-02T23:15:37.000000000", + "2019-01-02T23:15:40.000000000", + "2019-01-02T23:15:48.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:42.000000000", + "2019-01-02T23:16:47.000000000", + "2019-01-02T23:16:59.000000000", + "2019-01-02T23:19:21.000000000", + "2019-01-02T23:19:23.000000000", + "2019-01-02T23:19:33.000000000", + "2019-01-02T23:20:01.000000000", + "2019-01-02T23:20:30.000000000", + "2019-01-02T23:20:42.000000000", + "2019-01-02T23:23:03.000000000", + "2019-01-02T23:24:53.000000000", + "2019-01-02T23:25:19.000000000", + "2019-01-02T23:25:43.000000000", + "2019-01-02T23:27:29.000000000", + "2019-01-02T23:28:31.000000000", + "2019-01-02T23:29:12.000000000", + "2019-01-02T23:29:41.000000000", + "2019-01-02T23:29:48.000000000", + "2019-01-02T23:30:09.000000000", + "2019-01-02T23:30:28.000000000", + "2019-01-02T23:32:14.000000000", + "2019-01-02T23:32:41.000000000", + "2019-01-02T23:33:00.000000000", + "2019-01-02T23:33:17.000000000", + "2019-01-02T23:33:42.000000000", + "2019-01-02T23:36:23.000000000", + "2019-01-02T23:36:58.000000000", + "2019-01-02T23:37:06.000000000", + "2019-01-02T23:37:10.000000000", + "2019-01-02T23:39:12.000000000", + "2019-01-02T23:40:01.000000000", + "2019-01-02T23:40:22.000000000", + "2019-01-02T23:40:30.000000000", + "2019-01-02T23:40:38.000000000", + "2019-01-02T23:42:11.000000000", + "2019-01-02T23:44:07.000000000", + "2019-01-02T23:44:20.000000000", + "2019-01-02T23:44:36.000000000", + "2019-01-02T23:44:56.000000000", + "2019-01-02T23:47:43.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:10.000000000", + "2019-01-02T23:49:34.000000000", + "2019-01-02T23:51:10.000000000", + "2019-01-02T23:52:45.000000000", + "2019-01-02T23:53:39.000000000", + "2019-01-02T23:53:43.000000000", + "2019-01-02T23:53:56.000000000", + "2019-01-02T23:54:13.000000000", + "2019-01-02T23:54:19.000000000", + "2019-01-02T23:55:46.000000000", + "2019-01-02T23:57:47.000000000", + "2019-01-02T23:58:58.000000000", + "2019-01-02T23:59:34.000000000", + "2019-01-03T00:00:42.000000000", + "2019-01-03T00:01:36.000000000", + "2019-01-03T00:04:57.000000000", + "2019-01-03T00:05:13.000000000", + "2019-01-03T00:07:23.000000000", + "2019-01-03T00:08:21.000000000", + "2019-01-03T00:08:44.000000000", + "2019-01-03T00:09:44.000000000", + "2019-01-03T00:09:49.000000000", + "2019-01-03T00:10:22.000000000", + "2019-01-03T00:10:36.000000000", + "2019-01-03T00:11:36.000000000", + "2019-01-03T00:13:12.000000000", + "2019-01-03T00:14:12.000000000", + "2019-01-03T00:14:19.000000000", + "2019-01-03T00:15:38.000000000", + "2019-01-03T00:17:00.000000000", + "2019-01-03T00:17:01.000000000", + "2019-01-03T00:18:56.000000000", + "2019-01-03T00:19:04.000000000", + "2019-01-03T00:21:05.000000000", + "2019-01-03T00:25:46.000000000", + "2019-01-03T00:26:38.000000000", + "2019-01-03T00:27:26.000000000", + "2019-01-03T00:27:33.000000000", + "2019-01-03T00:28:26.000000000", + "2019-01-03T00:28:53.000000000", + "2019-01-03T00:29:32.000000000", + "2019-01-03T00:31:22.000000000", + "2019-01-03T00:31:55.000000000", + "2019-01-03T00:32:56.000000000", + "2019-01-03T00:33:35.000000000", + "2019-01-03T00:35:46.000000000", + "2019-01-03T00:35:47.000000000", + "2019-01-03T00:38:43.000000000", + "2019-01-03T00:38:52.000000000", + "2019-01-03T00:38:55.000000000", + "2019-01-03T00:39:18.000000000", + "2019-01-03T00:40:17.000000000", + "2019-01-03T00:40:25.000000000", + "2019-01-03T00:41:56.000000000", + "2019-01-03T00:42:04.000000000", + "2019-01-03T00:43:05.000000000", + "2019-01-03T00:43:20.000000000", + "2019-01-03T00:44:38.000000000", + "2019-01-03T00:45:57.000000000", + "2019-01-03T00:47:08.000000000", + "2019-01-03T00:47:34.000000000", + "2019-01-03T00:48:25.000000000", + "2019-01-03T00:49:05.000000000", + "2019-01-03T00:49:54.000000000", + "2019-01-03T00:50:56.000000000", + "2019-01-03T00:51:40.000000000", + "2019-01-03T00:51:59.000000000", + "2019-01-03T00:54:50.000000000", + "2019-01-03T00:55:50.000000000", + "2019-01-03T01:00:18.000000000", + "2019-01-03T01:00:41.000000000", + "2019-01-03T01:00:48.000000000", + "2019-01-03T01:01:25.000000000", + "2019-01-03T01:01:30.000000000", + "2019-01-03T01:01:38.000000000", + "2019-01-03T01:02:00.000000000", + "2019-01-03T01:02:07.000000000", + "2019-01-03T01:02:50.000000000", + "2019-01-03T01:04:03.000000000", + "2019-01-03T01:04:58.000000000", + "2019-01-03T01:05:09.000000000", + "2019-01-03T01:05:49.000000000", + "2019-01-03T01:06:00.000000000", + "2019-01-03T01:06:39.000000000", + "2019-01-03T01:08:38.000000000", + "2019-01-03T01:09:24.000000000", + "2019-01-03T01:09:39.000000000", + "2019-01-03T01:09:55.000000000", + "2019-01-03T01:10:15.000000000", + "2019-01-03T01:10:20.000000000", + "2019-01-03T01:10:59.000000000", + "2019-01-03T01:11:27.000000000", + "2019-01-03T01:12:27.000000000", + "2019-01-03T01:12:48.000000000", + "2019-01-03T01:15:11.000000000", + "2019-01-03T01:15:35.000000000", + "2019-01-03T01:18:59.000000000", + "2019-01-03T01:19:22.000000000", + "2019-01-03T01:19:47.000000000", + "2019-01-03T01:19:48.000000000", + "2019-01-03T01:22:00.000000000", + "2019-01-03T01:23:27.000000000", + "2019-01-03T01:24:52.000000000", + "2019-01-03T01:25:32.000000000", + "2019-01-03T01:27:00.000000000", + "2019-01-03T01:27:18.000000000", + "2019-01-03T01:28:38.000000000", + "2019-01-03T01:30:13.000000000", + "2019-01-03T01:31:43.000000000", + "2019-01-03T01:32:02.000000000", + "2019-01-03T01:32:16.000000000", + "2019-01-03T01:32:57.000000000", + "2019-01-03T01:33:45.000000000", + "2019-01-03T01:34:17.000000000", + "2019-01-03T01:34:35.000000000", + "2019-01-03T01:35:22.000000000", + "2019-01-03T01:35:25.000000000", + "2019-01-03T01:35:52.000000000", + "2019-01-03T01:35:54.000000000", + "2019-01-03T01:36:03.000000000", + "2019-01-03T01:36:20.000000000", + "2019-01-03T01:36:53.000000000", + "2019-01-03T01:39:59.000000000", + "2019-01-03T01:40:02.000000000", + "2019-01-03T01:40:20.000000000", + "2019-01-03T01:42:06.000000000", + "2019-01-03T01:42:39.000000000", + "2019-01-03T01:43:18.000000000", + "2019-01-03T01:43:24.000000000", + "2019-01-03T01:43:37.000000000", + "2019-01-03T01:43:51.000000000", + "2019-01-03T01:45:51.000000000", + "2019-01-03T01:46:07.000000000", + "2019-01-03T01:46:17.000000000", + "2019-01-03T01:46:23.000000000", + "2019-01-03T01:46:24.000000000", + "2019-01-03T01:46:28.000000000", + "2019-01-03T01:47:38.000000000", + "2019-01-03T01:48:01.000000000", + "2019-01-03T01:48:06.000000000", + "2019-01-03T01:49:13.000000000", + "2019-01-03T01:49:20.000000000", + "2019-01-03T01:50:08.000000000", + "2019-01-03T01:51:14.000000000", + "2019-01-03T01:51:24.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:52:49.000000000", + "2019-01-03T01:54:02.000000000", + "2019-01-03T01:55:05.000000000", + "2019-01-03T01:55:43.000000000", + "2019-01-03T01:55:51.000000000", + "2019-01-03T01:56:34.000000000", + "2019-01-03T01:57:05.000000000", + "2019-01-03T01:57:54.000000000", + "2019-01-03T01:58:21.000000000", + "2019-01-03T01:58:38.000000000", + "2019-01-03T01:59:53.000000000", + "2019-01-03T02:00:41.000000000", + "2019-01-03T02:00:45.000000000", + "2019-01-03T02:02:29.000000000", + "2019-01-03T02:02:34.000000000", + "2019-01-03T02:02:48.000000000", + "2019-01-03T02:05:57.000000000", + "2019-01-03T02:08:02.000000000", + "2019-01-03T02:08:06.000000000", + "2019-01-03T02:08:46.000000000", + "2019-01-03T02:11:15.000000000", + "2019-01-03T02:11:25.000000000", + "2019-01-03T02:11:58.000000000", + "2019-01-03T02:12:51.000000000", + "2019-01-03T02:13:07.000000000", + "2019-01-03T02:14:54.000000000", + "2019-01-03T02:17:59.000000000", + "2019-01-03T02:18:33.000000000", + "2019-01-03T02:19:24.000000000", + "2019-01-03T02:21:32.000000000", + "2019-01-03T02:22:38.000000000", + "2019-01-03T02:24:28.000000000", + "2019-01-03T02:24:52.000000000", + "2019-01-03T02:25:02.000000000", + "2019-01-03T02:26:14.000000000", + "2019-01-03T02:26:40.000000000", + "2019-01-03T02:26:50.000000000", + "2019-01-03T02:28:05.000000000", + "2019-01-03T02:28:12.000000000", + "2019-01-03T02:29:51.000000000", + "2019-01-03T02:30:16.000000000", + "2019-01-03T02:31:31.000000000", + "2019-01-03T02:31:47.000000000", + "2019-01-03T02:33:24.000000000", + "2019-01-03T02:33:46.000000000", + "2019-01-03T02:35:04.000000000", + "2019-01-03T02:35:12.000000000", + "2019-01-03T02:37:10.000000000", + "2019-01-03T02:37:33.000000000", + "2019-01-03T02:37:57.000000000", + "2019-01-03T02:38:19.000000000", + "2019-01-03T02:38:21.000000000", + "2019-01-03T02:38:44.000000000", + "2019-01-03T02:38:53.000000000", + "2019-01-03T02:40:37.000000000", + "2019-01-03T02:43:50.000000000", + "2019-01-03T02:45:00.000000000", + "2019-01-03T02:45:19.000000000", + "2019-01-03T02:45:21.000000000", + "2019-01-03T02:50:58.000000000", + "2019-01-03T02:53:06.000000000", + "2019-01-03T02:55:14.000000000", + "2019-01-03T02:57:39.000000000", + "2019-01-03T02:58:13.000000000", + "2019-01-03T02:59:27.000000000", + "2019-01-03T02:59:49.000000000", + "2019-01-03T03:00:34.000000000", + "2019-01-03T03:03:31.000000000", + "2019-01-03T03:06:59.000000000", + "2019-01-03T03:08:30.000000000", + "2019-01-03T03:08:37.000000000", + "2019-01-03T03:11:37.000000000", + "2019-01-03T03:11:59.000000000", + "2019-01-03T03:14:43.000000000", + "2019-01-03T03:18:33.000000000", + "2019-01-03T03:20:40.000000000", + "2019-01-03T03:21:03.000000000", + "2019-01-03T03:21:28.000000000", + "2019-01-03T03:22:04.000000000", + "2019-01-03T03:26:39.000000000", + "2019-01-03T03:27:38.000000000", + "2019-01-03T03:28:01.000000000", + "2019-01-03T03:28:39.000000000", + "2019-01-03T03:29:01.000000000", + "2019-01-03T03:30:07.000000000", + "2019-01-03T03:33:58.000000000", + "2019-01-03T03:34:30.000000000", + "2019-01-03T03:34:40.000000000", + "2019-01-03T03:35:44.000000000", + "2019-01-03T03:37:22.000000000", + "2019-01-03T03:37:52.000000000", + "2019-01-03T03:38:19.000000000", + "2019-01-03T03:42:20.000000000", + "2019-01-03T03:42:28.000000000", + "2019-01-03T03:43:18.000000000", + "2019-01-03T03:46:41.000000000", + "2019-01-03T03:47:17.000000000", + "2019-01-03T03:47:36.000000000", + "2019-01-03T03:49:34.000000000", + "2019-01-03T03:52:18.000000000", + "2019-01-03T03:55:26.000000000", + "2019-01-03T03:59:23.000000000", + "2019-01-03T03:59:56.000000000", + "2019-01-03T04:00:00.000000000", + "2019-01-03T04:00:11.000000000", + "2019-01-03T04:00:14.000000000", + "2019-01-03T04:01:54.000000000", + "2019-01-03T04:02:07.000000000", + "2019-01-03T04:03:57.000000000", + "2019-01-03T04:05:32.000000000", + "2019-01-03T04:05:38.000000000", + "2019-01-03T04:07:51.000000000", + "2019-01-03T04:08:10.000000000", + "2019-01-03T04:08:24.000000000", + "2019-01-03T04:09:18.000000000", + "2019-01-03T04:10:26.000000000", + "2019-01-03T04:11:44.000000000", + "2019-01-03T04:13:09.000000000", + "2019-01-03T04:13:39.000000000", + "2019-01-03T04:16:42.000000000", + "2019-01-03T04:17:38.000000000", + "2019-01-03T04:18:02.000000000", + "2019-01-03T04:18:30.000000000", + "2019-01-03T04:18:37.000000000", + "2019-01-03T04:20:08.000000000", + "2019-01-03T04:20:16.000000000", + "2019-01-03T04:20:54.000000000", + "2019-01-03T04:22:08.000000000", + "2019-01-03T04:26:31.000000000", + "2019-01-03T04:28:06.000000000", + "2019-01-03T04:28:54.000000000", + "2019-01-03T04:30:36.000000000", + "2019-01-03T04:33:04.000000000", + "2019-01-03T04:33:08.000000000", + "2019-01-03T04:35:35.000000000", + "2019-01-03T04:35:53.000000000", + "2019-01-03T04:37:47.000000000", + "2019-01-03T04:39:34.000000000", + "2019-01-03T04:40:47.000000000", + "2019-01-03T04:41:31.000000000", + "2019-01-03T04:41:46.000000000", + "2019-01-03T04:42:05.000000000", + "2019-01-03T04:42:33.000000000", + "2019-01-03T04:42:59.000000000", + "2019-01-03T04:43:34.000000000", + "2019-01-03T04:44:13.000000000", + "2019-01-03T04:45:01.000000000", + "2019-01-03T04:45:10.000000000", + "2019-01-03T04:45:25.000000000", + "2019-01-03T04:46:32.000000000", + "2019-01-03T04:46:33.000000000", + "2019-01-03T04:46:46.000000000", + "2019-01-03T04:46:58.000000000", + "2019-01-03T04:47:00.000000000", + "2019-01-03T04:49:45.000000000", + "2019-01-03T04:50:11.000000000", + "2019-01-03T04:50:51.000000000", + "2019-01-03T04:51:05.000000000", + "2019-01-03T04:51:27.000000000", + "2019-01-03T04:51:39.000000000", + "2019-01-03T04:52:23.000000000", + "2019-01-03T04:52:34.000000000", + "2019-01-03T04:53:30.000000000", + "2019-01-03T04:55:38.000000000", + "2019-01-03T04:56:08.000000000", + "2019-01-03T04:56:33.000000000", + "2019-01-03T04:56:42.000000000", + "2019-01-03T05:00:21.000000000", + "2019-01-03T05:01:18.000000000", + "2019-01-03T05:02:18.000000000", + "2019-01-03T05:02:40.000000000", + "2019-01-03T05:03:06.000000000", + "2019-01-03T05:03:55.000000000", + "2019-01-03T05:06:02.000000000", + "2019-01-03T05:06:48.000000000", + "2019-01-03T05:08:45.000000000", + "2019-01-03T05:08:54.000000000", + "2019-01-03T05:09:04.000000000", + "2019-01-03T05:10:45.000000000", + "2019-01-03T05:12:41.000000000", + "2019-01-03T05:12:58.000000000", + "2019-01-03T05:13:30.000000000", + "2019-01-03T05:14:31.000000000", + "2019-01-03T05:16:24.000000000", + "2019-01-03T05:17:01.000000000", + "2019-01-03T05:17:29.000000000", + "2019-01-03T05:17:38.000000000", + "2019-01-03T05:18:23.000000000", + "2019-01-03T05:20:00.000000000", + "2019-01-03T05:22:32.000000000", + "2019-01-03T05:22:38.000000000", + "2019-01-03T05:23:05.000000000", + "2019-01-03T05:23:16.000000000", + "2019-01-03T05:23:42.000000000", + "2019-01-03T05:25:04.000000000", + "2019-01-03T05:25:15.000000000", + "2019-01-03T05:26:31.000000000", + "2019-01-03T05:33:27.000000000", + "2019-01-03T05:35:03.000000000", + "2019-01-03T05:35:15.000000000", + "2019-01-03T05:36:38.000000000", + "2019-01-03T05:36:45.000000000", + "2019-01-03T05:38:27.000000000", + "2019-01-03T05:38:43.000000000", + "2019-01-03T05:38:49.000000000", + "2019-01-03T05:38:52.000000000", + "2019-01-03T05:39:04.000000000", + "2019-01-03T05:41:56.000000000", + "2019-01-03T05:44:42.000000000", + "2019-01-03T05:46:41.000000000", + "2019-01-03T05:46:56.000000000", + "2019-01-03T05:47:03.000000000", + "2019-01-03T05:47:09.000000000", + "2019-01-03T05:47:34.000000000", + "2019-01-03T05:48:04.000000000", + "2019-01-03T05:48:13.000000000", + "2019-01-03T05:49:11.000000000", + "2019-01-03T05:51:27.000000000", + "2019-01-03T05:51:42.000000000", + "2019-01-03T05:51:52.000000000", + "2019-01-03T05:52:52.000000000", + "2019-01-03T05:54:29.000000000", + "2019-01-03T05:54:37.000000000", + "2019-01-03T05:55:12.000000000", + "2019-01-03T05:55:38.000000000", + "2019-01-03T05:56:47.000000000", + "2019-01-03T05:57:22.000000000", + "2019-01-03T05:59:30.000000000", + "2019-01-03T06:01:44.000000000", + "2019-01-03T06:01:47.000000000", + "2019-01-03T06:02:32.000000000", + "2019-01-03T06:05:27.000000000", + "2019-01-03T06:06:09.000000000", + "2019-01-03T06:06:38.000000000", + "2019-01-03T06:07:16.000000000", + "2019-01-03T06:08:57.000000000", + "2019-01-03T06:09:16.000000000", + "2019-01-03T06:10:13.000000000", + "2019-01-03T06:10:31.000000000", + "2019-01-03T06:11:40.000000000", + "2019-01-03T06:12:04.000000000", + "2019-01-03T06:13:19.000000000", + "2019-01-03T06:15:59.000000000", + "2019-01-03T06:17:53.000000000", + "2019-01-03T06:18:10.000000000", + "2019-01-03T06:18:51.000000000", + "2019-01-03T06:18:54.000000000", + "2019-01-03T06:19:44.000000000", + "2019-01-03T06:20:09.000000000", + "2019-01-03T06:20:19.000000000", + "2019-01-03T06:22:28.000000000", + "2019-01-03T06:23:13.000000000", + "2019-01-03T06:23:52.000000000", + "2019-01-03T06:23:57.000000000", + "2019-01-03T06:24:19.000000000", + "2019-01-03T06:24:32.000000000", + "2019-01-03T06:25:14.000000000", + "2019-01-03T06:26:29.000000000", + "2019-01-03T06:26:39.000000000", + "2019-01-03T06:27:25.000000000", + "2019-01-03T06:27:48.000000000", + "2019-01-03T06:27:59.000000000", + "2019-01-03T06:28:53.000000000", + "2019-01-03T06:30:16.000000000", + "2019-01-03T06:30:42.000000000", + "2019-01-03T06:31:06.000000000", + "2019-01-03T06:31:16.000000000", + "2019-01-03T06:31:28.000000000", + "2019-01-03T06:31:58.000000000", + "2019-01-03T06:35:02.000000000", + "2019-01-03T06:35:42.000000000", + "2019-01-03T06:36:00.000000000", + "2019-01-03T06:36:41.000000000", + "2019-01-03T06:37:30.000000000", + "2019-01-03T06:41:32.000000000", + "2019-01-03T06:42:59.000000000", + "2019-01-03T06:44:17.000000000", + "2019-01-03T06:45:08.000000000", + "2019-01-03T06:46:24.000000000", + "2019-01-03T06:46:27.000000000", + "2019-01-03T06:49:50.000000000", + "2019-01-03T06:52:16.000000000", + "2019-01-03T06:53:31.000000000", + "2019-01-03T06:53:50.000000000", + "2019-01-03T06:54:35.000000000", + "2019-01-03T06:55:50.000000000", + "2019-01-03T06:56:33.000000000", + "2019-01-03T06:56:35.000000000", + "2019-01-03T06:56:47.000000000", + "2019-01-03T06:56:48.000000000", + "2019-01-03T06:57:25.000000000", + "2019-01-03T06:58:12.000000000", + "2019-01-03T06:59:57.000000000", + "2019-01-03T07:01:35.000000000", + "2019-01-03T07:03:07.000000000", + "2019-01-03T07:03:19.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:04:39.000000000", + "2019-01-03T07:06:23.000000000", + "2019-01-03T07:06:47.000000000", + "2019-01-03T07:08:05.000000000", + "2019-01-03T07:08:15.000000000", + "2019-01-03T07:11:10.000000000", + "2019-01-03T07:14:07.000000000", + "2019-01-03T07:15:32.000000000", + "2019-01-03T07:15:33.000000000", + "2019-01-03T07:15:50.000000000", + "2019-01-03T07:16:22.000000000", + "2019-01-03T07:17:29.000000000", + "2019-01-03T07:17:45.000000000", + "2019-01-03T07:18:21.000000000", + "2019-01-03T07:20:48.000000000", + "2019-01-03T07:21:15.000000000", + "2019-01-03T07:22:46.000000000", + "2019-01-03T07:25:41.000000000", + "2019-01-03T07:27:18.000000000", + "2019-01-03T07:27:21.000000000", + "2019-01-03T07:27:22.000000000", + "2019-01-03T07:28:59.000000000", + "2019-01-03T07:29:07.000000000", + "2019-01-03T07:29:47.000000000", + "2019-01-03T07:31:36.000000000", + "2019-01-03T07:32:04.000000000", + "2019-01-03T07:32:47.000000000", + "2019-01-03T07:33:05.000000000", + "2019-01-03T07:33:44.000000000", + "2019-01-03T07:34:20.000000000", + "2019-01-03T07:35:38.000000000", + "2019-01-03T07:38:58.000000000", + "2019-01-03T07:41:01.000000000", + "2019-01-03T07:42:46.000000000", + "2019-01-03T07:43:20.000000000", + "2019-01-03T07:44:12.000000000", + "2019-01-03T07:44:20.000000000", + "2019-01-03T07:45:46.000000000", + "2019-01-03T07:47:21.000000000", + "2019-01-03T07:48:32.000000000", + "2019-01-03T07:49:34.000000000", + "2019-01-03T07:51:56.000000000", + "2019-01-03T07:53:59.000000000", + "2019-01-03T07:56:15.000000000", + "2019-01-03T07:56:43.000000000", + "2019-01-03T07:58:10.000000000", + "2019-01-03T07:59:46.000000000", + "2019-01-03T08:00:56.000000000", + "2019-01-03T08:01:08.000000000", + "2019-01-03T08:01:56.000000000", + "2019-01-03T08:03:52.000000000", + "2019-01-03T08:05:08.000000000", + "2019-01-03T08:06:22.000000000", + "2019-01-03T08:07:10.000000000", + "2019-01-03T08:07:37.000000000", + "2019-01-03T08:08:33.000000000", + "2019-01-03T08:08:44.000000000", + "2019-01-03T08:11:52.000000000", + "2019-01-03T08:13:45.000000000", + "2019-01-03T08:14:23.000000000", + "2019-01-03T08:15:42.000000000", + "2019-01-03T08:16:16.000000000", + "2019-01-03T08:16:17.000000000", + "2019-01-03T08:16:39.000000000", + "2019-01-03T08:16:43.000000000", + "2019-01-03T08:20:27.000000000", + "2019-01-03T08:21:38.000000000", + "2019-01-03T08:21:47.000000000", + "2019-01-03T08:22:16.000000000", + "2019-01-03T08:22:28.000000000", + "2019-01-03T08:23:15.000000000", + "2019-01-03T08:23:25.000000000", + "2019-01-03T08:24:38.000000000", + "2019-01-03T08:24:40.000000000", + "2019-01-03T08:24:44.000000000", + "2019-01-03T08:25:15.000000000", + "2019-01-03T08:26:17.000000000", + "2019-01-03T08:26:30.000000000", + "2019-01-03T08:26:33.000000000", + "2019-01-03T08:27:10.000000000", + "2019-01-03T08:27:32.000000000", + "2019-01-03T08:28:36.000000000", + "2019-01-03T08:29:20.000000000", + "2019-01-03T08:30:21.000000000", + "2019-01-03T08:31:10.000000000", + "2019-01-03T08:32:51.000000000", + "2019-01-03T08:34:18.000000000", + "2019-01-03T08:35:47.000000000", + "2019-01-03T08:37:17.000000000", + "2019-01-03T08:37:43.000000000", + "2019-01-03T08:39:19.000000000", + "2019-01-03T08:39:22.000000000", + "2019-01-03T08:39:33.000000000", + "2019-01-03T08:39:52.000000000", + "2019-01-03T08:40:14.000000000", + "2019-01-03T08:40:15.000000000", + "2019-01-03T08:40:23.000000000", + "2019-01-03T08:42:06.000000000", + "2019-01-03T08:42:09.000000000", + "2019-01-03T08:43:04.000000000", + "2019-01-03T08:43:38.000000000", + "2019-01-03T08:44:15.000000000", + "2019-01-03T08:44:22.000000000", + "2019-01-03T08:45:09.000000000", + "2019-01-03T08:45:16.000000000", + "2019-01-03T08:48:34.000000000", + "2019-01-03T08:49:48.000000000", + "2019-01-03T08:50:49.000000000", + "2019-01-03T08:50:51.000000000", + "2019-01-03T08:52:21.000000000", + "2019-01-03T08:53:05.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:16.000000000", + "2019-01-03T08:53:20.000000000", + "2019-01-03T08:56:02.000000000", + "2019-01-03T08:56:13.000000000", + "2019-01-03T08:57:43.000000000", + "2019-01-03T08:58:53.000000000", + "2019-01-03T08:59:17.000000000", + "2019-01-03T08:59:50.000000000", + "2019-01-03T09:00:11.000000000", + "2019-01-03T09:00:19.000000000", + "2019-01-03T09:01:06.000000000", + "2019-01-03T09:02:22.000000000", + "2019-01-03T09:02:47.000000000", + "2019-01-03T09:03:24.000000000", + "2019-01-03T09:03:30.000000000", + "2019-01-03T09:07:53.000000000", + "2019-01-03T09:08:30.000000000", + "2019-01-03T09:09:07.000000000", + "2019-01-03T09:10:43.000000000", + "2019-01-03T09:11:19.000000000", + "2019-01-03T09:11:35.000000000", + "2019-01-03T09:12:08.000000000", + "2019-01-03T09:14:34.000000000", + "2019-01-03T09:14:38.000000000", + "2019-01-03T09:15:12.000000000", + "2019-01-03T09:18:24.000000000", + "2019-01-03T09:19:49.000000000", + "2019-01-03T09:20:11.000000000", + "2019-01-03T09:20:51.000000000", + "2019-01-03T09:21:11.000000000", + "2019-01-03T09:21:14.000000000", + "2019-01-03T09:21:44.000000000", + "2019-01-03T09:22:16.000000000", + "2019-01-03T09:22:21.000000000", + "2019-01-03T09:23:25.000000000", + "2019-01-03T09:24:34.000000000", + "2019-01-03T09:25:49.000000000", + "2019-01-03T09:25:50.000000000", + "2019-01-03T09:26:02.000000000", + "2019-01-03T09:27:06.000000000", + "2019-01-03T09:28:18.000000000", + "2019-01-03T09:28:29.000000000", + "2019-01-03T09:29:48.000000000", + "2019-01-03T09:29:59.000000000", + "2019-01-03T09:31:21.000000000", + "2019-01-03T09:32:49.000000000", + "2019-01-03T09:34:33.000000000", + "2019-01-03T09:35:15.000000000", + "2019-01-03T09:36:51.000000000", + "2019-01-03T09:37:30.000000000", + "2019-01-03T09:37:52.000000000", + "2019-01-03T09:38:37.000000000", + "2019-01-03T09:41:20.000000000", + "2019-01-03T09:41:30.000000000", + "2019-01-03T09:41:43.000000000", + "2019-01-03T09:43:10.000000000", + "2019-01-03T09:44:15.000000000", + "2019-01-03T09:44:35.000000000", + "2019-01-03T09:46:24.000000000", + "2019-01-03T09:46:28.000000000", + "2019-01-03T09:46:55.000000000", + "2019-01-03T09:47:15.000000000", + "2019-01-03T09:47:54.000000000", + "2019-01-03T09:49:10.000000000", + "2019-01-03T09:50:25.000000000", + "2019-01-03T09:51:02.000000000", + "2019-01-03T09:51:24.000000000", + "2019-01-03T09:51:50.000000000", + "2019-01-03T09:51:58.000000000", + "2019-01-03T09:52:58.000000000", + "2019-01-03T09:54:03.000000000", + "2019-01-03T09:58:05.000000000", + "2019-01-03T09:58:15.000000000", + "2019-01-03T09:58:38.000000000", + "2019-01-03T09:59:42.000000000", + "2019-01-03T10:02:57.000000000", + "2019-01-03T10:04:32.000000000", + "2019-01-03T10:04:35.000000000", + "2019-01-03T10:05:11.000000000", + "2019-01-03T10:06:08.000000000", + "2019-01-03T10:06:20.000000000", + "2019-01-03T10:06:23.000000000", + "2019-01-03T10:08:52.000000000", + "2019-01-03T10:09:06.000000000", + "2019-01-03T10:09:44.000000000", + "2019-01-03T10:10:48.000000000", + "2019-01-03T10:11:29.000000000", + "2019-01-03T10:11:48.000000000", + "2019-01-03T10:13:04.000000000", + "2019-01-03T10:13:32.000000000", + "2019-01-03T10:14:33.000000000", + "2019-01-03T10:14:39.000000000", + "2019-01-03T10:15:11.000000000", + "2019-01-03T10:19:56.000000000", + "2019-01-03T10:21:26.000000000", + "2019-01-03T10:21:45.000000000", + "2019-01-03T10:24:03.000000000", + "2019-01-03T10:24:59.000000000", + "2019-01-03T10:26:51.000000000", + "2019-01-03T10:27:09.000000000", + "2019-01-03T10:27:39.000000000", + "2019-01-03T10:28:24.000000000", + "2019-01-03T10:28:41.000000000", + "2019-01-03T10:28:51.000000000", + "2019-01-03T10:30:09.000000000", + "2019-01-03T10:32:35.000000000", + "2019-01-03T10:32:59.000000000", + "2019-01-03T10:34:15.000000000", + "2019-01-03T10:34:29.000000000", + "2019-01-03T10:34:34.000000000", + "2019-01-03T10:35:47.000000000", + "2019-01-03T10:36:21.000000000", + "2019-01-03T10:36:28.000000000", + "2019-01-03T10:38:32.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:17.000000000", + "2019-01-03T10:39:34.000000000", + "2019-01-03T10:40:26.000000000", + "2019-01-03T10:41:42.000000000", + "2019-01-03T10:43:02.000000000", + "2019-01-03T10:45:58.000000000", + "2019-01-03T10:47:55.000000000", + "2019-01-03T10:48:03.000000000", + "2019-01-03T10:48:09.000000000", + "2019-01-03T10:49:47.000000000", + "2019-01-03T10:50:47.000000000", + "2019-01-03T10:51:00.000000000", + "2019-01-03T10:51:15.000000000", + "2019-01-03T10:51:54.000000000", + "2019-01-03T10:51:59.000000000", + "2019-01-03T10:52:15.000000000", + "2019-01-03T10:52:46.000000000", + "2019-01-03T10:53:46.000000000", + "2019-01-03T10:55:24.000000000", + "2019-01-03T10:59:26.000000000", + "2019-01-03T11:00:10.000000000", + "2019-01-03T11:00:43.000000000", + "2019-01-03T11:00:44.000000000", + "2019-01-03T11:02:04.000000000", + "2019-01-03T11:03:36.000000000", + "2019-01-03T11:04:28.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:31.000000000", + "2019-01-03T11:05:41.000000000", + "2019-01-03T11:05:55.000000000", + "2019-01-03T11:06:06.000000000", + "2019-01-03T11:06:45.000000000", + "2019-01-03T11:07:23.000000000", + "2019-01-03T11:08:31.000000000", + "2019-01-03T11:09:45.000000000", + "2019-01-03T11:10:01.000000000", + "2019-01-03T11:12:03.000000000", + "2019-01-03T11:12:05.000000000", + "2019-01-03T11:13:00.000000000", + "2019-01-03T11:14:19.000000000", + "2019-01-03T11:16:54.000000000", + "2019-01-03T11:18:16.000000000", + "2019-01-03T11:20:33.000000000", + "2019-01-03T11:22:37.000000000", + "2019-01-03T11:22:42.000000000", + "2019-01-03T11:23:53.000000000", + "2019-01-03T11:25:57.000000000", + "2019-01-03T11:26:17.000000000", + "2019-01-03T11:27:00.000000000", + "2019-01-03T11:27:35.000000000", + "2019-01-03T11:28:18.000000000", + "2019-01-03T11:28:45.000000000", + "2019-01-03T11:29:02.000000000", + "2019-01-03T11:29:22.000000000", + "2019-01-03T11:30:31.000000000", + "2019-01-03T11:32:12.000000000", + "2019-01-03T11:32:25.000000000", + "2019-01-03T11:33:04.000000000", + "2019-01-03T11:33:11.000000000", + "2019-01-03T11:34:35.000000000", + "2019-01-03T11:34:42.000000000", + "2019-01-03T11:36:37.000000000", + "2019-01-03T11:37:40.000000000", + "2019-01-03T11:40:08.000000000", + "2019-01-03T11:40:24.000000000", + "2019-01-03T11:40:42.000000000", + "2019-01-03T11:41:44.000000000", + "2019-01-03T11:42:03.000000000", + "2019-01-03T11:42:04.000000000", + "2019-01-03T11:42:50.000000000", + "2019-01-03T11:45:25.000000000", + "2019-01-03T11:46:02.000000000", + "2019-01-03T11:46:37.000000000", + "2019-01-03T11:48:22.000000000", + "2019-01-03T11:48:26.000000000", + "2019-01-03T11:51:18.000000000", + "2019-01-03T11:51:26.000000000", + "2019-01-03T11:52:02.000000000", + "2019-01-03T11:55:01.000000000", + "2019-01-03T11:55:16.000000000", + "2019-01-03T11:55:50.000000000", + "2019-01-03T11:56:20.000000000", + "2019-01-03T11:56:56.000000000", + "2019-01-03T11:57:13.000000000", + "2019-01-03T11:57:15.000000000", + "2019-01-03T11:57:22.000000000", + "2019-01-03T11:59:20.000000000", + "2019-01-03T11:59:22.000000000", + "2019-01-03T12:00:25.000000000", + "2019-01-03T12:00:44.000000000", + "2019-01-03T12:00:57.000000000", + "2019-01-03T12:02:08.000000000", + "2019-01-03T12:02:09.000000000", + "2019-01-03T12:02:34.000000000", + "2019-01-03T12:04:34.000000000", + "2019-01-03T12:06:47.000000000", + "2019-01-03T12:07:25.000000000", + "2019-01-03T12:07:42.000000000", + "2019-01-03T12:08:07.000000000", + "2019-01-03T12:08:53.000000000", + "2019-01-03T12:09:13.000000000", + "2019-01-03T12:09:23.000000000", + "2019-01-03T12:09:27.000000000", + "2019-01-03T12:09:57.000000000", + "2019-01-03T12:10:14.000000000", + "2019-01-03T12:10:27.000000000", + "2019-01-03T12:10:46.000000000", + "2019-01-03T12:11:16.000000000", + "2019-01-03T12:15:24.000000000", + "2019-01-03T12:15:43.000000000", + "2019-01-03T12:16:34.000000000", + "2019-01-03T12:16:52.000000000", + "2019-01-03T12:17:09.000000000", + "2019-01-03T12:18:43.000000000", + "2019-01-03T12:20:43.000000000", + "2019-01-03T12:20:57.000000000", + "2019-01-03T12:21:28.000000000", + "2019-01-03T12:21:39.000000000", + "2019-01-03T12:23:09.000000000", + "2019-01-03T12:23:56.000000000", + "2019-01-03T12:24:50.000000000", + "2019-01-03T12:25:17.000000000", + "2019-01-03T12:25:19.000000000", + "2019-01-03T12:25:51.000000000", + "2019-01-03T12:26:38.000000000", + "2019-01-03T12:26:44.000000000", + "2019-01-03T12:26:49.000000000", + "2019-01-03T12:26:50.000000000", + "2019-01-03T12:29:28.000000000", + "2019-01-03T12:29:42.000000000", + "2019-01-03T12:30:41.000000000", + "2019-01-03T12:31:22.000000000", + "2019-01-03T12:31:37.000000000", + "2019-01-03T12:32:18.000000000", + "2019-01-03T12:33:35.000000000", + "2019-01-03T12:34:04.000000000", + "2019-01-03T12:35:01.000000000", + "2019-01-03T12:35:45.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:38:10.000000000", + "2019-01-03T12:40:35.000000000", + "2019-01-03T12:42:04.000000000", + "2019-01-03T12:42:07.000000000", + "2019-01-03T12:46:06.000000000", + "2019-01-03T12:46:43.000000000", + "2019-01-03T12:46:45.000000000", + "2019-01-03T12:50:17.000000000", + "2019-01-03T12:52:16.000000000", + "2019-01-03T12:52:37.000000000", + "2019-01-03T12:52:38.000000000", + "2019-01-03T12:52:45.000000000", + "2019-01-03T12:54:11.000000000", + "2019-01-03T12:54:41.000000000", + "2019-01-03T12:57:07.000000000", + "2019-01-03T13:00:02.000000000", + "2019-01-03T13:00:10.000000000", + "2019-01-03T13:00:13.000000000", + "2019-01-03T13:00:33.000000000", + "2019-01-03T13:02:02.000000000", + "2019-01-03T13:02:38.000000000", + "2019-01-03T13:02:51.000000000", + "2019-01-03T13:04:35.000000000", + "2019-01-03T13:06:29.000000000", + "2019-01-03T13:07:25.000000000", + "2019-01-03T13:08:55.000000000", + "2019-01-03T13:09:53.000000000", + "2019-01-03T13:11:50.000000000", + "2019-01-03T13:12:18.000000000", + "2019-01-03T13:12:24.000000000", + "2019-01-03T13:13:29.000000000", + "2019-01-03T13:14:08.000000000", + "2019-01-03T13:14:22.000000000", + "2019-01-03T13:15:04.000000000", + "2019-01-03T13:15:47.000000000", + "2019-01-03T13:15:52.000000000", + "2019-01-03T13:16:19.000000000", + "2019-01-03T13:20:10.000000000", + "2019-01-03T13:21:04.000000000", + "2019-01-03T13:21:11.000000000", + "2019-01-03T13:21:36.000000000", + "2019-01-03T13:22:51.000000000", + "2019-01-03T13:23:14.000000000", + "2019-01-03T13:23:35.000000000", + "2019-01-03T13:23:54.000000000", + "2019-01-03T13:24:54.000000000", + "2019-01-03T13:26:59.000000000", + "2019-01-03T13:27:34.000000000", + "2019-01-03T13:31:57.000000000", + "2019-01-03T13:32:03.000000000", + "2019-01-03T13:35:05.000000000", + "2019-01-03T13:36:32.000000000", + "2019-01-03T13:39:38.000000000", + "2019-01-03T13:40:05.000000000", + "2019-01-03T13:40:40.000000000", + "2019-01-03T13:41:47.000000000", + "2019-01-03T13:42:35.000000000", + "2019-01-03T13:42:54.000000000", + "2019-01-03T13:47:05.000000000", + "2019-01-03T13:47:09.000000000", + "2019-01-03T13:50:34.000000000", + "2019-01-03T13:50:36.000000000", + "2019-01-03T13:51:33.000000000", + "2019-01-03T13:52:21.000000000", + "2019-01-03T13:52:39.000000000", + "2019-01-03T13:54:14.000000000", + "2019-01-03T13:56:27.000000000", + "2019-01-03T13:59:46.000000000", + "2019-01-03T13:59:48.000000000", + "2019-01-03T14:04:36.000000000", + "2019-01-03T14:07:34.000000000", + "2019-01-03T14:08:20.000000000", + "2019-01-03T14:08:29.000000000", + "2019-01-03T14:08:45.000000000", + "2019-01-03T14:11:48.000000000", + "2019-01-03T14:11:58.000000000", + "2019-01-03T14:14:21.000000000", + "2019-01-03T14:15:05.000000000", + "2019-01-03T14:16:57.000000000", + "2019-01-03T14:17:27.000000000", + "2019-01-03T14:18:30.000000000", + "2019-01-03T14:19:44.000000000", + "2019-01-03T14:21:06.000000000", + "2019-01-03T14:21:12.000000000", + "2019-01-03T14:23:05.000000000", + "2019-01-03T14:23:40.000000000", + "2019-01-03T14:24:15.000000000", + "2019-01-03T14:26:30.000000000", + "2019-01-03T14:26:37.000000000", + "2019-01-03T14:27:14.000000000", + "2019-01-03T14:27:37.000000000", + "2019-01-03T14:28:03.000000000", + "2019-01-03T14:28:05.000000000", + "2019-01-03T14:28:07.000000000", + "2019-01-03T14:30:35.000000000", + "2019-01-03T14:31:41.000000000", + "2019-01-03T14:33:37.000000000", + "2019-01-03T14:33:38.000000000", + "2019-01-03T14:36:28.000000000", + "2019-01-03T14:36:38.000000000", + "2019-01-03T14:36:58.000000000", + "2019-01-03T14:37:57.000000000", + "2019-01-03T14:38:16.000000000", + "2019-01-03T14:38:38.000000000", + "2019-01-03T14:38:51.000000000", + "2019-01-03T14:39:06.000000000", + "2019-01-03T14:39:44.000000000", + "2019-01-03T14:42:29.000000000", + "2019-01-03T14:42:32.000000000", + "2019-01-03T14:42:59.000000000", + "2019-01-03T14:43:26.000000000", + "2019-01-03T14:43:44.000000000", + "2019-01-03T14:45:39.000000000", + "2019-01-03T14:46:22.000000000", + "2019-01-03T14:48:37.000000000", + "2019-01-03T14:49:55.000000000", + "2019-01-03T14:49:59.000000000", + "2019-01-03T14:51:41.000000000", + "2019-01-03T14:52:09.000000000", + "2019-01-03T14:53:36.000000000", + "2019-01-03T14:53:42.000000000", + "2019-01-03T14:55:28.000000000", + "2019-01-03T14:55:46.000000000", + "2019-01-03T14:55:50.000000000", + "2019-01-03T14:56:04.000000000", + "2019-01-03T14:56:45.000000000", + "2019-01-03T14:59:18.000000000", + "2019-01-03T15:02:51.000000000", + "2019-01-03T15:04:04.000000000", + "2019-01-03T15:05:23.000000000", + "2019-01-03T15:06:33.000000000", + "2019-01-03T15:08:22.000000000", + "2019-01-03T15:08:25.000000000", + "2019-01-03T15:09:06.000000000", + "2019-01-03T15:10:16.000000000", + "2019-01-03T15:11:59.000000000", + "2019-01-03T15:14:15.000000000", + "2019-01-03T15:15:20.000000000", + "2019-01-03T15:15:46.000000000", + "2019-01-03T15:15:50.000000000", + "2019-01-03T15:16:08.000000000", + "2019-01-03T15:16:18.000000000", + "2019-01-03T15:18:36.000000000", + "2019-01-03T15:19:21.000000000", + "2019-01-03T15:20:06.000000000", + "2019-01-03T15:20:16.000000000", + "2019-01-03T15:22:00.000000000", + "2019-01-03T15:22:36.000000000", + "2019-01-03T15:26:35.000000000", + "2019-01-03T15:29:04.000000000", + "2019-01-03T15:30:35.000000000", + "2019-01-03T15:31:54.000000000", + "2019-01-03T15:31:59.000000000", + "2019-01-03T15:36:04.000000000", + "2019-01-03T15:40:34.000000000", + "2019-01-03T15:41:02.000000000", + "2019-01-03T15:41:20.000000000", + "2019-01-03T15:44:19.000000000", + "2019-01-03T15:44:49.000000000", + "2019-01-03T15:45:20.000000000", + "2019-01-03T15:45:40.000000000", + "2019-01-03T15:46:49.000000000", + "2019-01-03T15:46:51.000000000", + "2019-01-03T15:47:13.000000000", + "2019-01-03T15:49:10.000000000", + "2019-01-03T15:50:05.000000000", + "2019-01-03T15:50:27.000000000", + "2019-01-03T15:51:35.000000000", + "2019-01-03T15:52:36.000000000", + "2019-01-03T15:54:57.000000000", + "2019-01-03T15:54:59.000000000", + "2019-01-03T15:56:05.000000000", + "2019-01-03T15:56:18.000000000", + "2019-01-03T15:57:04.000000000", + "2019-01-03T15:57:35.000000000", + "2019-01-03T15:57:58.000000000", + "2019-01-03T15:58:50.000000000", + "2019-01-03T16:01:15.000000000", + "2019-01-03T16:01:28.000000000", + "2019-01-03T16:02:41.000000000", + "2019-01-03T16:04:54.000000000", + "2019-01-03T16:06:28.000000000", + "2019-01-03T16:06:34.000000000", + "2019-01-03T16:07:27.000000000", + "2019-01-03T16:07:39.000000000", + "2019-01-03T16:07:40.000000000", + "2019-01-03T16:09:04.000000000", + "2019-01-03T16:10:10.000000000", + "2019-01-03T16:10:29.000000000", + "2019-01-03T16:10:46.000000000", + "2019-01-03T16:11:12.000000000", + "2019-01-03T16:11:22.000000000", + "2019-01-03T16:11:32.000000000", + "2019-01-03T16:13:09.000000000", + "2019-01-03T16:15:45.000000000", + "2019-01-03T16:16:08.000000000", + "2019-01-03T16:16:20.000000000", + "2019-01-03T16:16:36.000000000", + "2019-01-03T16:16:39.000000000", + "2019-01-03T16:16:56.000000000", + "2019-01-03T16:17:22.000000000", + "2019-01-03T16:18:11.000000000", + "2019-01-03T16:18:45.000000000", + "2019-01-03T16:18:50.000000000", + "2019-01-03T16:18:59.000000000", + "2019-01-03T16:19:05.000000000", + "2019-01-03T16:20:22.000000000", + "2019-01-03T16:20:45.000000000", + "2019-01-03T16:21:38.000000000", + "2019-01-03T16:23:28.000000000", + "2019-01-03T16:24:15.000000000", + "2019-01-03T16:24:49.000000000", + "2019-01-03T16:25:44.000000000", + "2019-01-03T16:25:52.000000000", + "2019-01-03T16:26:49.000000000", + "2019-01-03T16:32:47.000000000", + "2019-01-03T16:33:24.000000000", + "2019-01-03T16:33:57.000000000", + "2019-01-03T16:35:26.000000000", + "2019-01-03T16:38:45.000000000", + "2019-01-03T16:40:04.000000000", + "2019-01-03T16:41:39.000000000", + "2019-01-03T16:43:17.000000000", + "2019-01-03T16:44:29.000000000", + "2019-01-03T16:44:36.000000000", + "2019-01-03T16:44:43.000000000", + "2019-01-03T16:46:39.000000000", + "2019-01-03T16:47:01.000000000", + "2019-01-03T16:47:21.000000000", + "2019-01-03T16:47:39.000000000", + "2019-01-03T16:50:10.000000000", + "2019-01-03T16:50:15.000000000", + "2019-01-03T16:50:40.000000000", + "2019-01-03T16:51:48.000000000", + "2019-01-03T16:52:56.000000000", + "2019-01-03T16:55:12.000000000", + "2019-01-03T16:55:13.000000000", + "2019-01-03T16:55:35.000000000", + "2019-01-03T16:57:08.000000000", + "2019-01-03T17:03:07.000000000", + "2019-01-03T17:03:28.000000000", + "2019-01-03T17:03:38.000000000", + "2019-01-03T17:03:51.000000000", + "2019-01-03T17:05:08.000000000", + "2019-01-03T17:05:34.000000000", + "2019-01-03T17:06:26.000000000", + "2019-01-03T17:06:46.000000000", + "2019-01-03T17:07:15.000000000", + "2019-01-03T17:08:32.000000000", + "2019-01-03T17:09:07.000000000", + "2019-01-03T17:13:16.000000000", + "2019-01-03T17:13:47.000000000", + "2019-01-03T17:16:26.000000000", + "2019-01-03T17:16:37.000000000", + "2019-01-03T17:16:42.000000000", + "2019-01-03T17:17:07.000000000", + "2019-01-03T17:17:28.000000000", + "2019-01-03T17:21:43.000000000", + "2019-01-03T17:22:23.000000000", + "2019-01-03T17:23:27.000000000", + "2019-01-03T17:23:31.000000000", + "2019-01-03T17:24:30.000000000", + "2019-01-03T17:24:55.000000000", + "2019-01-03T17:26:48.000000000", + "2019-01-03T17:27:28.000000000", + "2019-01-03T17:28:14.000000000", + "2019-01-03T17:29:29.000000000", + "2019-01-03T17:29:58.000000000", + "2019-01-03T17:30:05.000000000", + "2019-01-03T17:30:23.000000000", + "2019-01-03T17:31:23.000000000", + "2019-01-03T17:32:17.000000000", + "2019-01-03T17:33:02.000000000", + "2019-01-03T17:33:54.000000000", + "2019-01-03T17:34:00.000000000", + "2019-01-03T17:34:37.000000000", + "2019-01-03T17:39:19.000000000", + "2019-01-03T17:39:25.000000000", + "2019-01-03T17:40:07.000000000", + "2019-01-03T17:40:30.000000000", + "2019-01-03T17:40:48.000000000", + "2019-01-03T17:42:01.000000000", + "2019-01-03T17:42:52.000000000", + "2019-01-03T17:44:19.000000000", + "2019-01-03T17:44:40.000000000", + "2019-01-03T17:47:01.000000000", + "2019-01-03T17:47:08.000000000", + "2019-01-03T17:47:25.000000000", + "2019-01-03T17:48:03.000000000", + "2019-01-03T17:48:18.000000000", + "2019-01-03T17:49:13.000000000", + "2019-01-03T17:50:32.000000000", + "2019-01-03T17:52:36.000000000", + "2019-01-03T17:53:05.000000000", + "2019-01-03T17:53:44.000000000", + "2019-01-03T17:53:48.000000000", + "2019-01-03T17:54:12.000000000", + "2019-01-03T17:54:32.000000000", + "2019-01-03T17:55:35.000000000", + "2019-01-03T17:56:37.000000000", + "2019-01-03T17:58:11.000000000", + "2019-01-03T17:58:35.000000000", + "2019-01-03T17:59:16.000000000", + "2019-01-03T17:59:29.000000000", + "2019-01-03T18:02:39.000000000", + "2019-01-03T18:05:34.000000000", + "2019-01-03T18:06:13.000000000", + "2019-01-03T18:08:09.000000000", + "2019-01-03T18:08:27.000000000", + "2019-01-03T18:09:08.000000000", + "2019-01-03T18:10:45.000000000", + "2019-01-03T18:12:20.000000000", + "2019-01-03T18:12:22.000000000", + "2019-01-03T18:14:40.000000000", + "2019-01-03T18:15:22.000000000", + "2019-01-03T18:15:25.000000000", + "2019-01-03T18:17:29.000000000", + "2019-01-03T18:18:08.000000000", + "2019-01-03T18:19:03.000000000", + "2019-01-03T18:19:21.000000000", + "2019-01-03T18:21:51.000000000", + "2019-01-03T18:21:56.000000000", + "2019-01-03T18:23:16.000000000", + "2019-01-03T18:23:36.000000000", + "2019-01-03T18:23:58.000000000", + "2019-01-03T18:24:08.000000000", + "2019-01-03T18:24:35.000000000", + "2019-01-03T18:24:57.000000000", + "2019-01-03T18:26:14.000000000", + "2019-01-03T18:27:48.000000000", + "2019-01-03T18:28:09.000000000", + "2019-01-03T18:28:13.000000000", + "2019-01-03T18:29:01.000000000", + "2019-01-03T18:29:23.000000000", + "2019-01-03T18:29:45.000000000", + "2019-01-03T18:33:41.000000000", + "2019-01-03T18:35:34.000000000", + "2019-01-03T18:36:59.000000000", + "2019-01-03T18:37:51.000000000", + "2019-01-03T18:38:00.000000000", + "2019-01-03T18:38:36.000000000", + "2019-01-03T18:39:53.000000000", + "2019-01-03T18:40:45.000000000", + "2019-01-03T18:41:08.000000000", + "2019-01-03T18:41:28.000000000", + "2019-01-03T18:45:04.000000000", + "2019-01-03T18:45:17.000000000", + "2019-01-03T18:45:23.000000000", + "2019-01-03T18:46:43.000000000", + "2019-01-03T18:47:03.000000000", + "2019-01-03T18:47:06.000000000", + "2019-01-03T18:49:00.000000000", + "2019-01-03T18:49:30.000000000", + "2019-01-03T18:51:14.000000000", + "2019-01-03T18:51:51.000000000", + "2019-01-03T18:52:19.000000000", + "2019-01-03T18:54:02.000000000", + "2019-01-03T18:54:42.000000000", + "2019-01-03T18:56:26.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:36.000000000", + "2019-01-03T18:56:48.000000000", + "2019-01-03T18:56:50.000000000", + "2019-01-03T18:58:05.000000000", + "2019-01-03T18:59:52.000000000", + "2019-01-03T19:03:10.000000000", + "2019-01-03T19:05:42.000000000", + "2019-01-03T19:05:46.000000000", + "2019-01-03T19:06:18.000000000", + "2019-01-03T19:06:56.000000000", + "2019-01-03T19:07:06.000000000", + "2019-01-03T19:08:01.000000000", + "2019-01-03T19:08:09.000000000", + "2019-01-03T19:10:34.000000000", + "2019-01-03T19:11:34.000000000", + "2019-01-03T19:13:52.000000000", + "2019-01-03T19:14:30.000000000", + "2019-01-03T19:15:10.000000000", + "2019-01-03T19:17:19.000000000", + "2019-01-03T19:18:35.000000000", + "2019-01-03T19:18:36.000000000", + "2019-01-03T19:20:15.000000000", + "2019-01-03T19:21:17.000000000", + "2019-01-03T19:22:43.000000000", + "2019-01-03T19:23:05.000000000", + "2019-01-03T19:23:10.000000000", + "2019-01-03T19:27:17.000000000", + "2019-01-03T19:27:27.000000000", + "2019-01-03T19:30:30.000000000", + "2019-01-03T19:30:58.000000000", + "2019-01-03T19:31:22.000000000", + "2019-01-03T19:31:46.000000000", + "2019-01-03T19:32:41.000000000", + "2019-01-03T19:34:06.000000000", + "2019-01-03T19:34:21.000000000", + "2019-01-03T19:36:15.000000000", + "2019-01-03T19:36:33.000000000", + "2019-01-03T19:37:33.000000000", + "2019-01-03T19:38:12.000000000", + "2019-01-03T19:40:09.000000000", + "2019-01-03T19:41:56.000000000", + "2019-01-03T19:45:20.000000000", + "2019-01-03T19:47:31.000000000", + "2019-01-03T19:48:12.000000000", + "2019-01-03T19:49:20.000000000", + "2019-01-03T19:50:30.000000000", + "2019-01-03T19:52:33.000000000", + "2019-01-03T19:52:50.000000000", + "2019-01-03T19:53:36.000000000", + "2019-01-03T19:55:48.000000000", + "2019-01-03T19:55:50.000000000", + "2019-01-03T19:57:13.000000000", + "2019-01-03T19:58:14.000000000", + "2019-01-03T19:59:19.000000000", + "2019-01-03T20:02:04.000000000", + "2019-01-03T20:02:42.000000000", + "2019-01-03T20:03:24.000000000", + "2019-01-03T20:06:45.000000000", + "2019-01-03T20:08:06.000000000", + "2019-01-03T20:08:14.000000000", + "2019-01-03T20:08:29.000000000", + "2019-01-03T20:08:35.000000000", + "2019-01-03T20:09:49.000000000", + "2019-01-03T20:10:07.000000000", + "2019-01-03T20:12:48.000000000", + "2019-01-03T20:16:26.000000000", + "2019-01-03T20:18:11.000000000", + "2019-01-03T20:19:18.000000000", + "2019-01-03T20:19:19.000000000", + "2019-01-03T20:20:01.000000000", + "2019-01-03T20:20:07.000000000", + "2019-01-03T20:20:25.000000000", + "2019-01-03T20:20:58.000000000", + "2019-01-03T20:21:26.000000000", + "2019-01-03T20:22:43.000000000", + "2019-01-03T20:23:21.000000000", + "2019-01-03T20:23:53.000000000", + "2019-01-03T20:24:11.000000000", + "2019-01-03T20:24:48.000000000", + "2019-01-03T20:25:22.000000000", + "2019-01-03T20:25:30.000000000", + "2019-01-03T20:25:58.000000000", + "2019-01-03T20:26:52.000000000", + "2019-01-03T20:26:56.000000000", + "2019-01-03T20:27:35.000000000", + "2019-01-03T20:27:41.000000000", + "2019-01-03T20:30:37.000000000", + "2019-01-03T20:32:08.000000000", + "2019-01-03T20:34:28.000000000", + "2019-01-03T20:34:50.000000000", + "2019-01-03T20:35:41.000000000", + "2019-01-03T20:38:15.000000000", + "2019-01-03T20:40:04.000000000", + "2019-01-03T20:40:55.000000000", + "2019-01-03T20:41:53.000000000", + "2019-01-03T20:42:33.000000000", + "2019-01-03T20:43:47.000000000", + "2019-01-03T20:43:50.000000000", + "2019-01-03T20:43:57.000000000", + "2019-01-03T20:45:56.000000000", + "2019-01-03T20:46:08.000000000", + "2019-01-03T20:48:22.000000000", + "2019-01-03T20:51:04.000000000", + "2019-01-03T20:53:30.000000000", + "2019-01-03T20:53:31.000000000", + "2019-01-03T20:55:25.000000000", + "2019-01-03T20:56:13.000000000", + "2019-01-03T20:57:00.000000000", + "2019-01-03T20:57:31.000000000", + "2019-01-03T20:58:46.000000000", + "2019-01-03T20:59:04.000000000", + "2019-01-03T20:59:30.000000000", + "2019-01-03T20:59:58.000000000", + "2019-01-03T21:00:08.000000000", + "2019-01-03T21:01:14.000000000", + "2019-01-03T21:01:52.000000000", + "2019-01-03T21:01:59.000000000", + "2019-01-03T21:02:22.000000000", + "2019-01-03T21:03:01.000000000", + "2019-01-03T21:03:17.000000000", + "2019-01-03T21:03:35.000000000", + "2019-01-03T21:04:24.000000000", + "2019-01-03T21:05:16.000000000", + "2019-01-03T21:05:20.000000000", + "2019-01-03T21:08:09.000000000", + "2019-01-03T21:08:23.000000000", + "2019-01-03T21:08:51.000000000", + "2019-01-03T21:09:53.000000000", + "2019-01-03T21:10:20.000000000", + "2019-01-03T21:10:39.000000000", + "2019-01-03T21:11:04.000000000", + "2019-01-03T21:12:26.000000000", + "2019-01-03T21:13:33.000000000", + "2019-01-03T21:14:26.000000000", + "2019-01-03T21:16:02.000000000", + "2019-01-03T21:16:35.000000000", + "2019-01-03T21:18:03.000000000", + "2019-01-03T21:20:44.000000000", + "2019-01-03T21:21:40.000000000", + "2019-01-03T21:22:13.000000000", + "2019-01-03T21:22:21.000000000", + "2019-01-03T21:22:47.000000000", + "2019-01-03T21:22:52.000000000", + "2019-01-03T21:23:11.000000000", + "2019-01-03T21:23:31.000000000", + "2019-01-03T21:23:46.000000000", + "2019-01-03T21:23:58.000000000", + "2019-01-03T21:25:09.000000000", + "2019-01-03T21:26:01.000000000", + "2019-01-03T21:26:49.000000000", + "2019-01-03T21:27:13.000000000", + "2019-01-03T21:30:51.000000000", + "2019-01-03T21:31:27.000000000", + "2019-01-03T21:32:08.000000000", + "2019-01-03T21:32:41.000000000", + "2019-01-03T21:32:49.000000000", + "2019-01-03T21:34:30.000000000", + "2019-01-03T21:35:46.000000000", + "2019-01-03T21:36:08.000000000", + "2019-01-03T21:36:20.000000000", + "2019-01-03T21:38:48.000000000", + "2019-01-03T21:39:31.000000000", + "2019-01-03T21:39:44.000000000", + "2019-01-03T21:44:00.000000000", + "2019-01-03T21:44:06.000000000", + "2019-01-03T21:44:34.000000000", + "2019-01-03T21:45:44.000000000", + "2019-01-03T21:45:52.000000000", + "2019-01-03T21:47:06.000000000", + "2019-01-03T21:47:41.000000000", + "2019-01-03T21:48:54.000000000", + "2019-01-03T21:49:48.000000000", + "2019-01-03T21:51:46.000000000", + "2019-01-03T21:51:56.000000000", + "2019-01-03T21:53:20.000000000", + "2019-01-03T21:53:39.000000000", + "2019-01-03T21:55:39.000000000", + "2019-01-03T21:55:52.000000000", + "2019-01-03T21:56:22.000000000", + "2019-01-03T21:56:31.000000000", + "2019-01-03T21:57:43.000000000", + "2019-01-03T21:59:21.000000000", + "2019-01-03T22:00:20.000000000", + "2019-01-03T22:00:29.000000000", + "2019-01-03T22:00:47.000000000", + "2019-01-03T22:01:02.000000000", + "2019-01-03T22:01:05.000000000", + "2019-01-03T22:01:17.000000000", + "2019-01-03T22:02:47.000000000", + "2019-01-03T22:04:58.000000000", + "2019-01-03T22:05:02.000000000", + "2019-01-03T22:07:00.000000000", + "2019-01-03T22:07:07.000000000", + "2019-01-03T22:07:19.000000000", + "2019-01-03T22:08:42.000000000", + "2019-01-03T22:09:17.000000000", + "2019-01-03T22:09:54.000000000", + "2019-01-03T22:10:38.000000000", + "2019-01-03T22:11:39.000000000", + "2019-01-03T22:12:15.000000000", + "2019-01-03T22:12:20.000000000", + "2019-01-03T22:13:07.000000000", + "2019-01-03T22:14:06.000000000", + "2019-01-03T22:15:33.000000000", + "2019-01-03T22:16:25.000000000", + "2019-01-03T22:16:47.000000000", + "2019-01-03T22:17:38.000000000", + "2019-01-03T22:18:10.000000000", + "2019-01-03T22:18:35.000000000", + "2019-01-03T22:20:08.000000000", + "2019-01-03T22:23:05.000000000", + "2019-01-03T22:24:38.000000000", + "2019-01-03T22:25:25.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:27:11.000000000", + "2019-01-03T22:28:55.000000000", + "2019-01-03T22:29:08.000000000", + "2019-01-03T22:30:53.000000000", + "2019-01-03T22:31:13.000000000", + "2019-01-03T22:32:33.000000000", + "2019-01-03T22:34:19.000000000", + "2019-01-03T22:37:51.000000000", + "2019-01-03T22:37:59.000000000", + "2019-01-03T22:38:19.000000000", + "2019-01-03T22:39:13.000000000", + "2019-01-03T22:41:38.000000000", + "2019-01-03T22:41:49.000000000", + "2019-01-03T22:41:57.000000000", + "2019-01-03T22:43:52.000000000", + "2019-01-03T22:45:05.000000000", + "2019-01-03T22:45:50.000000000", + "2019-01-03T22:47:44.000000000", + "2019-01-03T22:48:14.000000000", + "2019-01-03T22:51:22.000000000", + "2019-01-03T22:52:20.000000000", + "2019-01-03T22:53:44.000000000", + "2019-01-03T22:55:59.000000000", + "2019-01-03T22:56:00.000000000", + "2019-01-03T22:56:20.000000000", + "2019-01-03T22:59:22.000000000", + "2019-01-03T22:59:47.000000000", + "2019-01-03T22:59:56.000000000", + "2019-01-03T23:01:51.000000000", + "2019-01-03T23:01:53.000000000", + "2019-01-03T23:04:23.000000000", + "2019-01-03T23:04:50.000000000", + "2019-01-03T23:05:49.000000000", + "2019-01-03T23:06:30.000000000", + "2019-01-03T23:07:14.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:39.000000000", + "2019-01-03T23:07:46.000000000", + "2019-01-03T23:13:52.000000000", + "2019-01-03T23:13:54.000000000", + "2019-01-03T23:14:27.000000000", + "2019-01-03T23:14:42.000000000", + "2019-01-03T23:16:21.000000000", + "2019-01-03T23:17:32.000000000", + "2019-01-03T23:17:45.000000000", + "2019-01-03T23:18:21.000000000", + "2019-01-03T23:18:39.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:18:42.000000000", + "2019-01-03T23:20:20.000000000", + "2019-01-03T23:21:04.000000000", + "2019-01-03T23:21:13.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:25:39.000000000", + "2019-01-03T23:27:27.000000000", + "2019-01-03T23:27:34.000000000", + "2019-01-03T23:29:13.000000000", + "2019-01-03T23:31:04.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:31:25.000000000", + "2019-01-03T23:34:06.000000000", + "2019-01-03T23:36:51.000000000", + "2019-01-03T23:37:04.000000000", + "2019-01-03T23:38:08.000000000", + "2019-01-03T23:38:30.000000000", + "2019-01-03T23:39:07.000000000", + "2019-01-03T23:39:20.000000000", + "2019-01-03T23:39:52.000000000", + "2019-01-03T23:39:56.000000000", + "2019-01-03T23:40:06.000000000", + "2019-01-03T23:41:21.000000000", + "2019-01-03T23:42:06.000000000", + "2019-01-03T23:42:14.000000000", + "2019-01-03T23:42:50.000000000", + "2019-01-03T23:45:20.000000000", + "2019-01-03T23:47:05.000000000", + "2019-01-03T23:47:25.000000000", + "2019-01-03T23:49:12.000000000", + "2019-01-03T23:49:34.000000000", + "2019-01-03T23:50:36.000000000", + "2019-01-03T23:51:23.000000000", + "2019-01-03T23:51:40.000000000", + "2019-01-03T23:53:04.000000000", + "2019-01-03T23:54:32.000000000", + "2019-01-03T23:55:44.000000000", + "2019-01-03T23:56:54.000000000", + "2019-01-03T23:57:48.000000000", + "2019-01-04T00:01:34.000000000", + "2019-01-04T00:02:19.000000000", + "2019-01-04T00:04:39.000000000", + "2019-01-04T00:05:46.000000000", + "2019-01-04T00:06:39.000000000", + "2019-01-04T00:07:34.000000000", + "2019-01-04T00:08:56.000000000", + "2019-01-04T00:09:47.000000000", + "2019-01-04T00:11:19.000000000", + "2019-01-04T00:11:41.000000000", + "2019-01-04T00:12:07.000000000", + "2019-01-04T00:14:01.000000000", + "2019-01-04T00:14:18.000000000", + "2019-01-04T00:15:31.000000000", + "2019-01-04T00:16:19.000000000", + "2019-01-04T00:16:44.000000000", + "2019-01-04T00:17:21.000000000", + "2019-01-04T00:18:10.000000000", + "2019-01-04T00:18:43.000000000", + "2019-01-04T00:19:00.000000000", + "2019-01-04T00:19:12.000000000", + "2019-01-04T00:19:41.000000000", + "2019-01-04T00:21:32.000000000", + "2019-01-04T00:23:17.000000000", + "2019-01-04T00:31:25.000000000", + "2019-01-04T00:33:20.000000000", + "2019-01-04T00:33:37.000000000", + "2019-01-04T00:35:39.000000000", + "2019-01-04T00:35:45.000000000", + "2019-01-04T00:37:14.000000000", + "2019-01-04T00:39:14.000000000", + "2019-01-04T00:39:29.000000000", + "2019-01-04T00:40:11.000000000", + "2019-01-04T00:40:57.000000000", + "2019-01-04T00:41:04.000000000", + "2019-01-04T00:42:49.000000000", + "2019-01-04T00:43:13.000000000", + "2019-01-04T00:43:37.000000000", + "2019-01-04T00:44:21.000000000", + "2019-01-04T00:44:42.000000000", + "2019-01-04T00:45:25.000000000", + "2019-01-04T00:45:54.000000000", + "2019-01-04T00:46:05.000000000", + "2019-01-04T00:47:01.000000000", + "2019-01-04T00:47:04.000000000", + "2019-01-04T00:47:44.000000000", + "2019-01-04T00:48:32.000000000", + "2019-01-04T00:48:55.000000000", + "2019-01-04T00:49:13.000000000", + "2019-01-04T00:49:56.000000000", + "2019-01-04T00:51:10.000000000", + "2019-01-04T00:51:50.000000000", + "2019-01-04T00:54:59.000000000", + "2019-01-04T00:55:23.000000000", + "2019-01-04T00:56:27.000000000", + "2019-01-04T00:56:42.000000000", + "2019-01-04T00:56:59.000000000", + "2019-01-04T00:57:41.000000000", + "2019-01-04T00:57:53.000000000", + "2019-01-04T00:58:24.000000000", + "2019-01-04T00:58:47.000000000", + "2019-01-04T01:00:23.000000000", + "2019-01-04T01:00:34.000000000", + "2019-01-04T01:03:09.000000000", + "2019-01-04T01:03:28.000000000", + "2019-01-04T01:04:34.000000000", + "2019-01-04T01:04:56.000000000", + "2019-01-04T01:05:15.000000000", + "2019-01-04T01:05:46.000000000", + "2019-01-04T01:05:59.000000000", + "2019-01-04T01:06:02.000000000", + "2019-01-04T01:06:20.000000000", + "2019-01-04T01:07:26.000000000", + "2019-01-04T01:09:04.000000000", + "2019-01-04T01:09:38.000000000", + "2019-01-04T01:11:08.000000000", + "2019-01-04T01:11:54.000000000", + "2019-01-04T01:14:01.000000000", + "2019-01-04T01:15:55.000000000", + "2019-01-04T01:16:51.000000000", + "2019-01-04T01:17:12.000000000", + "2019-01-04T01:17:36.000000000", + "2019-01-04T01:18:06.000000000", + "2019-01-04T01:18:43.000000000", + "2019-01-04T01:21:27.000000000", + "2019-01-04T01:21:35.000000000", + "2019-01-04T01:21:49.000000000", + "2019-01-04T01:24:44.000000000", + "2019-01-04T01:25:22.000000000", + "2019-01-04T01:25:33.000000000", + "2019-01-04T01:26:42.000000000", + "2019-01-04T01:27:42.000000000", + "2019-01-04T01:28:29.000000000", + "2019-01-04T01:28:50.000000000", + "2019-01-04T01:29:58.000000000", + "2019-01-04T01:30:46.000000000", + "2019-01-04T01:30:48.000000000", + "2019-01-04T01:30:57.000000000", + "2019-01-04T01:31:19.000000000", + "2019-01-04T01:31:31.000000000", + "2019-01-04T01:31:56.000000000", + "2019-01-04T01:33:33.000000000", + "2019-01-04T01:33:59.000000000", + "2019-01-04T01:34:32.000000000", + "2019-01-04T01:36:02.000000000", + "2019-01-04T01:36:38.000000000", + "2019-01-04T01:37:47.000000000", + "2019-01-04T01:39:26.000000000", + "2019-01-04T01:40:00.000000000", + "2019-01-04T01:40:57.000000000", + "2019-01-04T01:41:07.000000000", + "2019-01-04T01:42:41.000000000", + "2019-01-04T01:43:29.000000000", + "2019-01-04T01:44:39.000000000", + "2019-01-04T01:46:10.000000000", + "2019-01-04T01:46:42.000000000", + "2019-01-04T01:47:02.000000000", + "2019-01-04T01:47:52.000000000", + "2019-01-04T01:48:12.000000000", + "2019-01-04T01:48:47.000000000", + "2019-01-04T01:49:50.000000000", + "2019-01-04T01:49:55.000000000", + "2019-01-04T01:50:27.000000000", + "2019-01-04T01:52:12.000000000", + "2019-01-04T01:53:34.000000000", + "2019-01-04T01:55:03.000000000", + "2019-01-04T01:55:50.000000000", + "2019-01-04T01:56:37.000000000", + "2019-01-04T01:57:09.000000000", + "2019-01-04T01:57:52.000000000", + "2019-01-04T01:57:56.000000000", + "2019-01-04T01:59:05.000000000", + "2019-01-04T02:00:00.000000000", + "2019-01-04T02:01:05.000000000", + "2019-01-04T02:01:17.000000000", + "2019-01-04T02:03:14.000000000", + "2019-01-04T02:03:20.000000000", + "2019-01-04T02:04:56.000000000", + "2019-01-04T02:05:53.000000000", + "2019-01-04T02:06:45.000000000", + "2019-01-04T02:06:46.000000000", + "2019-01-04T02:08:13.000000000", + "2019-01-04T02:10:11.000000000", + "2019-01-04T02:11:01.000000000", + "2019-01-04T02:12:03.000000000", + "2019-01-04T02:12:10.000000000", + "2019-01-04T02:13:43.000000000", + "2019-01-04T02:16:56.000000000", + "2019-01-04T02:18:34.000000000", + "2019-01-04T02:18:55.000000000", + "2019-01-04T02:19:23.000000000", + "2019-01-04T02:22:02.000000000", + "2019-01-04T02:25:49.000000000", + "2019-01-04T02:27:39.000000000", + "2019-01-04T02:27:56.000000000", + "2019-01-04T02:29:49.000000000", + "2019-01-04T02:30:00.000000000", + "2019-01-04T02:30:46.000000000", + "2019-01-04T02:30:50.000000000", + "2019-01-04T02:32:01.000000000", + "2019-01-04T02:32:22.000000000", + "2019-01-04T02:33:40.000000000", + "2019-01-04T02:34:20.000000000", + "2019-01-04T02:34:38.000000000", + "2019-01-04T02:35:24.000000000", + "2019-01-04T02:36:50.000000000", + "2019-01-04T02:37:12.000000000", + "2019-01-04T02:38:47.000000000", + "2019-01-04T02:41:49.000000000", + "2019-01-04T02:42:44.000000000", + "2019-01-04T02:45:40.000000000", + "2019-01-04T02:46:53.000000000", + "2019-01-04T02:47:19.000000000", + "2019-01-04T02:48:42.000000000", + "2019-01-04T02:48:43.000000000", + "2019-01-04T02:49:24.000000000", + "2019-01-04T02:50:13.000000000", + "2019-01-04T02:51:47.000000000", + "2019-01-04T02:53:08.000000000", + "2019-01-04T02:53:45.000000000", + "2019-01-04T02:54:07.000000000", + "2019-01-04T02:54:10.000000000", + "2019-01-04T02:55:32.000000000", + "2019-01-04T02:55:58.000000000", + "2019-01-04T02:56:20.000000000", + "2019-01-04T02:56:56.000000000", + "2019-01-04T02:58:56.000000000", + "2019-01-04T02:59:52.000000000", + "2019-01-04T03:00:26.000000000", + "2019-01-04T03:00:52.000000000", + "2019-01-04T03:01:30.000000000", + "2019-01-04T03:01:55.000000000", + "2019-01-04T03:02:14.000000000", + "2019-01-04T03:02:45.000000000", + "2019-01-04T03:02:55.000000000", + "2019-01-04T03:04:12.000000000", + "2019-01-04T03:04:51.000000000", + "2019-01-04T03:05:50.000000000", + "2019-01-04T03:06:07.000000000", + "2019-01-04T03:06:36.000000000", + "2019-01-04T03:08:00.000000000", + "2019-01-04T03:08:20.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:09:01.000000000", + "2019-01-04T03:10:01.000000000", + "2019-01-04T03:10:10.000000000", + "2019-01-04T03:10:54.000000000", + "2019-01-04T03:11:09.000000000", + "2019-01-04T03:13:06.000000000", + "2019-01-04T03:15:17.000000000", + "2019-01-04T03:15:39.000000000", + "2019-01-04T03:16:31.000000000", + "2019-01-04T03:18:20.000000000", + "2019-01-04T03:18:32.000000000", + "2019-01-04T03:18:42.000000000", + "2019-01-04T03:19:24.000000000", + "2019-01-04T03:19:45.000000000", + "2019-01-04T03:20:39.000000000", + "2019-01-04T03:21:34.000000000", + "2019-01-04T03:22:29.000000000", + "2019-01-04T03:22:45.000000000", + "2019-01-04T03:23:27.000000000", + "2019-01-04T03:24:08.000000000", + "2019-01-04T03:24:44.000000000", + "2019-01-04T03:26:21.000000000", + "2019-01-04T03:26:33.000000000", + "2019-01-04T03:27:47.000000000", + "2019-01-04T03:28:31.000000000", + "2019-01-04T03:29:14.000000000", + "2019-01-04T03:29:27.000000000", + "2019-01-04T03:30:17.000000000", + "2019-01-04T03:31:19.000000000", + "2019-01-04T03:32:27.000000000", + "2019-01-04T03:32:35.000000000", + "2019-01-04T03:34:51.000000000", + "2019-01-04T03:36:42.000000000", + "2019-01-04T03:38:24.000000000", + "2019-01-04T03:40:46.000000000", + "2019-01-04T03:40:58.000000000", + "2019-01-04T03:41:27.000000000", + "2019-01-04T03:43:25.000000000", + "2019-01-04T03:44:04.000000000", + "2019-01-04T03:44:09.000000000", + "2019-01-04T03:44:45.000000000", + "2019-01-04T03:47:26.000000000", + "2019-01-04T03:48:14.000000000", + "2019-01-04T03:48:22.000000000", + "2019-01-04T03:48:27.000000000", + "2019-01-04T03:50:08.000000000", + "2019-01-04T03:53:04.000000000", + "2019-01-04T03:54:16.000000000", + "2019-01-04T03:54:34.000000000", + "2019-01-04T03:55:24.000000000", + "2019-01-04T03:55:30.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:55:44.000000000", + "2019-01-04T03:59:50.000000000", + "2019-01-04T04:02:19.000000000", + "2019-01-04T04:05:25.000000000", + "2019-01-04T04:07:29.000000000", + "2019-01-04T04:07:30.000000000", + "2019-01-04T04:08:27.000000000", + "2019-01-04T04:09:44.000000000", + "2019-01-04T04:10:50.000000000", + "2019-01-04T04:11:34.000000000", + "2019-01-04T04:13:56.000000000", + "2019-01-04T04:15:56.000000000", + "2019-01-04T04:16:30.000000000", + "2019-01-04T04:16:35.000000000", + "2019-01-04T04:19:27.000000000", + "2019-01-04T04:19:49.000000000", + "2019-01-04T04:22:56.000000000", + "2019-01-04T04:23:07.000000000", + "2019-01-04T04:23:08.000000000", + "2019-01-04T04:24:10.000000000", + "2019-01-04T04:24:53.000000000", + "2019-01-04T04:25:09.000000000", + "2019-01-04T04:25:53.000000000", + "2019-01-04T04:26:42.000000000", + "2019-01-04T04:26:58.000000000", + "2019-01-04T04:27:28.000000000", + "2019-01-04T04:28:38.000000000", + "2019-01-04T04:29:41.000000000", + "2019-01-04T04:30:22.000000000", + "2019-01-04T04:30:31.000000000", + "2019-01-04T04:32:42.000000000", + "2019-01-04T04:36:55.000000000", + "2019-01-04T04:37:05.000000000", + "2019-01-04T04:38:13.000000000", + "2019-01-04T04:44:41.000000000", + "2019-01-04T04:44:51.000000000", + "2019-01-04T04:45:46.000000000", + "2019-01-04T04:46:03.000000000", + "2019-01-04T04:46:23.000000000", + "2019-01-04T04:47:19.000000000", + "2019-01-04T04:47:54.000000000", + "2019-01-04T04:48:48.000000000", + "2019-01-04T04:48:56.000000000", + "2019-01-04T04:49:24.000000000", + "2019-01-04T04:50:14.000000000", + "2019-01-04T04:50:27.000000000", + "2019-01-04T04:51:09.000000000", + "2019-01-04T04:51:11.000000000", + "2019-01-04T04:51:49.000000000", + "2019-01-04T04:53:45.000000000", + "2019-01-04T04:55:10.000000000", + "2019-01-04T04:55:11.000000000", + "2019-01-04T04:55:12.000000000", + "2019-01-04T04:56:16.000000000", + "2019-01-04T04:58:43.000000000", + "2019-01-04T04:58:54.000000000", + "2019-01-04T05:01:30.000000000", + "2019-01-04T05:03:03.000000000", + "2019-01-04T05:03:11.000000000", + "2019-01-04T05:03:35.000000000", + "2019-01-04T05:05:00.000000000", + "2019-01-04T05:06:28.000000000", + "2019-01-04T05:09:44.000000000", + "2019-01-04T05:09:49.000000000", + "2019-01-04T05:10:04.000000000", + "2019-01-04T05:10:08.000000000", + "2019-01-04T05:12:11.000000000", + "2019-01-04T05:12:57.000000000", + "2019-01-04T05:13:15.000000000", + "2019-01-04T05:13:24.000000000", + "2019-01-04T05:15:56.000000000", + "2019-01-04T05:17:05.000000000", + "2019-01-04T05:17:33.000000000", + "2019-01-04T05:17:42.000000000", + "2019-01-04T05:18:00.000000000", + "2019-01-04T05:18:26.000000000", + "2019-01-04T05:19:06.000000000", + "2019-01-04T05:19:30.000000000", + "2019-01-04T05:21:56.000000000", + "2019-01-04T05:22:31.000000000", + "2019-01-04T05:25:32.000000000", + "2019-01-04T05:25:42.000000000", + "2019-01-04T05:26:26.000000000", + "2019-01-04T05:27:35.000000000", + "2019-01-04T05:27:47.000000000", + "2019-01-04T05:30:22.000000000", + "2019-01-04T05:30:39.000000000", + "2019-01-04T05:32:49.000000000", + "2019-01-04T05:33:38.000000000", + "2019-01-04T05:36:29.000000000", + "2019-01-04T05:39:24.000000000", + "2019-01-04T05:39:47.000000000", + "2019-01-04T05:42:02.000000000", + "2019-01-04T05:43:29.000000000", + "2019-01-04T05:43:46.000000000", + "2019-01-04T05:46:07.000000000", + "2019-01-04T05:47:05.000000000", + "2019-01-04T05:48:07.000000000", + "2019-01-04T05:48:50.000000000", + "2019-01-04T05:49:57.000000000", + "2019-01-04T05:50:28.000000000", + "2019-01-04T05:53:15.000000000", + "2019-01-04T05:56:26.000000000", + "2019-01-04T05:56:53.000000000", + "2019-01-04T05:57:43.000000000", + "2019-01-04T05:59:57.000000000", + "2019-01-04T06:00:57.000000000", + "2019-01-04T06:01:36.000000000", + "2019-01-04T06:02:36.000000000", + "2019-01-04T06:04:14.000000000", + "2019-01-04T06:04:28.000000000", + "2019-01-04T06:05:00.000000000", + "2019-01-04T06:07:45.000000000", + "2019-01-04T06:08:25.000000000", + "2019-01-04T06:08:52.000000000", + "2019-01-04T06:09:05.000000000", + "2019-01-04T06:09:42.000000000", + "2019-01-04T06:12:17.000000000", + "2019-01-04T06:12:53.000000000", + "2019-01-04T06:14:13.000000000", + "2019-01-04T06:17:44.000000000", + "2019-01-04T06:19:50.000000000", + "2019-01-04T06:20:45.000000000", + "2019-01-04T06:21:01.000000000", + "2019-01-04T06:21:30.000000000", + "2019-01-04T06:23:27.000000000", + "2019-01-04T06:25:09.000000000", + "2019-01-04T06:25:39.000000000", + "2019-01-04T06:25:44.000000000", + "2019-01-04T06:26:08.000000000", + "2019-01-04T06:28:07.000000000", + "2019-01-04T06:28:14.000000000", + "2019-01-04T06:29:52.000000000", + "2019-01-04T06:30:51.000000000", + "2019-01-04T06:30:57.000000000", + "2019-01-04T06:33:04.000000000", + "2019-01-04T06:33:07.000000000", + "2019-01-04T06:33:49.000000000", + "2019-01-04T06:34:24.000000000", + "2019-01-04T06:36:54.000000000", + "2019-01-04T06:36:57.000000000", + "2019-01-04T06:37:47.000000000", + "2019-01-04T06:37:55.000000000", + "2019-01-04T06:38:26.000000000", + "2019-01-04T06:39:41.000000000", + "2019-01-04T06:41:41.000000000", + "2019-01-04T06:43:17.000000000", + "2019-01-04T06:43:25.000000000", + "2019-01-04T06:44:20.000000000", + "2019-01-04T06:44:24.000000000", + "2019-01-04T06:44:57.000000000", + "2019-01-04T06:47:05.000000000", + "2019-01-04T06:48:02.000000000", + "2019-01-04T06:48:18.000000000", + "2019-01-04T06:48:47.000000000", + "2019-01-04T06:49:42.000000000", + "2019-01-04T06:52:14.000000000", + "2019-01-04T06:52:18.000000000", + "2019-01-04T06:52:27.000000000", + "2019-01-04T06:53:39.000000000", + "2019-01-04T06:54:10.000000000", + "2019-01-04T06:54:23.000000000", + "2019-01-04T06:55:27.000000000", + "2019-01-04T06:56:45.000000000", + "2019-01-04T07:01:03.000000000", + "2019-01-04T07:02:58.000000000", + "2019-01-04T07:03:21.000000000", + "2019-01-04T07:04:34.000000000", + "2019-01-04T07:05:59.000000000", + "2019-01-04T07:06:44.000000000", + "2019-01-04T07:08:12.000000000", + "2019-01-04T07:10:45.000000000", + "2019-01-04T07:10:57.000000000", + "2019-01-04T07:12:14.000000000", + "2019-01-04T07:15:19.000000000", + "2019-01-04T07:15:53.000000000", + "2019-01-04T07:15:58.000000000", + "2019-01-04T07:16:10.000000000", + "2019-01-04T07:17:02.000000000", + "2019-01-04T07:18:23.000000000", + "2019-01-04T07:20:01.000000000", + "2019-01-04T07:20:19.000000000", + "2019-01-04T07:20:21.000000000", + "2019-01-04T07:21:13.000000000", + "2019-01-04T07:22:02.000000000", + "2019-01-04T07:23:30.000000000", + "2019-01-04T07:25:15.000000000", + "2019-01-04T07:29:37.000000000", + "2019-01-04T07:30:26.000000000", + "2019-01-04T07:30:44.000000000", + "2019-01-04T07:31:13.000000000", + "2019-01-04T07:31:28.000000000", + "2019-01-04T07:33:36.000000000", + "2019-01-04T07:33:55.000000000", + "2019-01-04T07:34:49.000000000", + "2019-01-04T07:38:17.000000000", + "2019-01-04T07:39:46.000000000", + "2019-01-04T07:39:48.000000000", + "2019-01-04T07:41:09.000000000", + "2019-01-04T07:41:48.000000000", + "2019-01-04T07:43:06.000000000", + "2019-01-04T07:43:12.000000000", + "2019-01-04T07:43:42.000000000", + "2019-01-04T07:44:05.000000000", + "2019-01-04T07:44:57.000000000", + "2019-01-04T07:44:58.000000000", + "2019-01-04T07:45:09.000000000", + "2019-01-04T07:45:22.000000000", + "2019-01-04T07:45:28.000000000", + "2019-01-04T07:46:15.000000000", + "2019-01-04T07:47:48.000000000", + "2019-01-04T07:48:09.000000000", + "2019-01-04T07:50:02.000000000", + "2019-01-04T07:51:01.000000000", + "2019-01-04T07:51:59.000000000", + "2019-01-04T07:52:18.000000000", + "2019-01-04T07:53:53.000000000", + "2019-01-04T07:54:33.000000000", + "2019-01-04T07:56:13.000000000", + "2019-01-04T07:56:27.000000000", + "2019-01-04T08:00:44.000000000", + "2019-01-04T08:00:59.000000000", + "2019-01-04T08:01:52.000000000", + "2019-01-04T08:02:40.000000000", + "2019-01-04T08:04:09.000000000", + "2019-01-04T08:04:20.000000000", + "2019-01-04T08:05:37.000000000", + "2019-01-04T08:06:07.000000000", + "2019-01-04T08:06:27.000000000", + "2019-01-04T08:07:01.000000000", + "2019-01-04T08:07:44.000000000", + "2019-01-04T08:08:16.000000000", + "2019-01-04T08:08:44.000000000", + "2019-01-04T08:09:04.000000000", + "2019-01-04T08:09:15.000000000", + "2019-01-04T08:10:02.000000000", + "2019-01-04T08:10:14.000000000", + "2019-01-04T08:12:07.000000000", + "2019-01-04T08:12:55.000000000", + "2019-01-04T08:13:03.000000000", + "2019-01-04T08:13:52.000000000", + "2019-01-04T08:14:48.000000000", + "2019-01-04T08:15:59.000000000", + "2019-01-04T08:16:37.000000000", + "2019-01-04T08:17:32.000000000", + "2019-01-04T08:17:43.000000000", + "2019-01-04T08:17:52.000000000", + "2019-01-04T08:18:35.000000000", + "2019-01-04T08:19:07.000000000", + "2019-01-04T08:21:26.000000000", + "2019-01-04T08:23:00.000000000", + "2019-01-04T08:23:22.000000000", + "2019-01-04T08:23:29.000000000", + "2019-01-04T08:24:47.000000000", + "2019-01-04T08:25:14.000000000", + "2019-01-04T08:25:24.000000000", + "2019-01-04T08:25:35.000000000", + "2019-01-04T08:26:19.000000000", + "2019-01-04T08:26:39.000000000", + "2019-01-04T08:28:43.000000000", + "2019-01-04T08:30:20.000000000", + "2019-01-04T08:30:21.000000000", + "2019-01-04T08:32:30.000000000", + "2019-01-04T08:32:45.000000000", + "2019-01-04T08:36:10.000000000", + "2019-01-04T08:36:13.000000000", + "2019-01-04T08:36:39.000000000", + "2019-01-04T08:36:46.000000000", + "2019-01-04T08:37:27.000000000", + "2019-01-04T08:38:02.000000000", + "2019-01-04T08:38:12.000000000", + "2019-01-04T08:39:54.000000000", + "2019-01-04T08:40:02.000000000", + "2019-01-04T08:41:21.000000000", + "2019-01-04T08:42:26.000000000", + "2019-01-04T08:43:44.000000000", + "2019-01-04T08:45:42.000000000", + "2019-01-04T08:46:03.000000000", + "2019-01-04T08:46:12.000000000", + "2019-01-04T08:47:35.000000000", + "2019-01-04T08:48:14.000000000", + "2019-01-04T08:48:33.000000000", + "2019-01-04T08:48:38.000000000", + "2019-01-04T08:48:58.000000000", + "2019-01-04T08:49:21.000000000", + "2019-01-04T08:49:51.000000000", + "2019-01-04T08:50:16.000000000", + "2019-01-04T08:50:30.000000000", + "2019-01-04T08:50:48.000000000", + "2019-01-04T08:53:47.000000000", + "2019-01-04T08:55:07.000000000", + "2019-01-04T08:57:20.000000000", + "2019-01-04T08:57:39.000000000", + "2019-01-04T08:58:05.000000000", + "2019-01-04T08:58:26.000000000", + "2019-01-04T08:58:49.000000000", + "2019-01-04T09:00:22.000000000", + "2019-01-04T09:01:45.000000000", + "2019-01-04T09:01:50.000000000", + "2019-01-04T09:03:34.000000000", + "2019-01-04T09:04:18.000000000", + "2019-01-04T09:04:23.000000000", + "2019-01-04T09:05:36.000000000", + "2019-01-04T09:07:01.000000000", + "2019-01-04T09:07:04.000000000", + "2019-01-04T09:07:58.000000000", + "2019-01-04T09:08:41.000000000", + "2019-01-04T09:09:15.000000000", + "2019-01-04T09:11:28.000000000", + "2019-01-04T09:12:28.000000000", + "2019-01-04T09:12:47.000000000", + "2019-01-04T09:14:50.000000000", + "2019-01-04T09:17:20.000000000", + "2019-01-04T09:19:38.000000000", + "2019-01-04T09:21:14.000000000", + "2019-01-04T09:23:54.000000000", + "2019-01-04T09:26:08.000000000", + "2019-01-04T09:26:39.000000000", + "2019-01-04T09:27:07.000000000", + "2019-01-04T09:27:33.000000000", + "2019-01-04T09:27:49.000000000", + "2019-01-04T09:29:08.000000000", + "2019-01-04T09:29:32.000000000", + "2019-01-04T09:29:48.000000000", + "2019-01-04T09:30:59.000000000", + "2019-01-04T09:32:14.000000000", + "2019-01-04T09:32:36.000000000", + "2019-01-04T09:33:11.000000000", + "2019-01-04T09:35:05.000000000", + "2019-01-04T09:35:13.000000000", + "2019-01-04T09:35:18.000000000", + "2019-01-04T09:36:04.000000000", + "2019-01-04T09:37:08.000000000", + "2019-01-04T09:37:47.000000000", + "2019-01-04T09:38:37.000000000", + "2019-01-04T09:38:58.000000000", + "2019-01-04T09:40:30.000000000", + "2019-01-04T09:40:41.000000000", + "2019-01-04T09:41:43.000000000", + "2019-01-04T09:42:27.000000000", + "2019-01-04T09:43:35.000000000", + "2019-01-04T09:44:17.000000000", + "2019-01-04T09:44:22.000000000", + "2019-01-04T09:44:47.000000000", + "2019-01-04T09:48:06.000000000", + "2019-01-04T09:48:08.000000000", + "2019-01-04T09:50:15.000000000", + "2019-01-04T09:51:15.000000000", + "2019-01-04T09:52:09.000000000", + "2019-01-04T09:54:16.000000000", + "2019-01-04T09:54:17.000000000", + "2019-01-04T09:55:33.000000000", + "2019-01-04T09:55:42.000000000", + "2019-01-04T09:58:12.000000000", + "2019-01-04T09:58:47.000000000", + "2019-01-04T09:59:37.000000000", + "2019-01-04T10:01:01.000000000", + "2019-01-04T10:02:18.000000000", + "2019-01-04T10:06:51.000000000", + "2019-01-04T10:07:07.000000000", + "2019-01-04T10:13:04.000000000", + "2019-01-04T10:13:17.000000000", + "2019-01-04T10:13:19.000000000", + "2019-01-04T10:13:42.000000000", + "2019-01-04T10:13:59.000000000", + "2019-01-04T10:14:40.000000000", + "2019-01-04T10:15:30.000000000", + "2019-01-04T10:15:56.000000000", + "2019-01-04T10:16:27.000000000", + "2019-01-04T10:18:42.000000000", + "2019-01-04T10:18:47.000000000", + "2019-01-04T10:18:54.000000000", + "2019-01-04T10:19:17.000000000", + "2019-01-04T10:19:57.000000000", + "2019-01-04T10:20:44.000000000", + "2019-01-04T10:21:23.000000000", + "2019-01-04T10:24:05.000000000", + "2019-01-04T10:25:14.000000000", + "2019-01-04T10:25:15.000000000", + "2019-01-04T10:26:26.000000000", + "2019-01-04T10:26:28.000000000", + "2019-01-04T10:26:29.000000000", + "2019-01-04T10:28:12.000000000", + "2019-01-04T10:28:41.000000000", + "2019-01-04T10:29:30.000000000", + "2019-01-04T10:29:34.000000000", + "2019-01-04T10:29:56.000000000", + "2019-01-04T10:30:58.000000000", + "2019-01-04T10:31:00.000000000", + "2019-01-04T10:31:17.000000000", + "2019-01-04T10:31:25.000000000", + "2019-01-04T10:32:16.000000000", + "2019-01-04T10:32:52.000000000", + "2019-01-04T10:34:12.000000000", + "2019-01-04T10:35:25.000000000", + "2019-01-04T10:36:09.000000000", + "2019-01-04T10:36:44.000000000", + "2019-01-04T10:40:03.000000000", + "2019-01-04T10:40:05.000000000", + "2019-01-04T10:40:28.000000000", + "2019-01-04T10:40:32.000000000", + "2019-01-04T10:43:46.000000000", + "2019-01-04T10:43:57.000000000", + "2019-01-04T10:46:06.000000000", + "2019-01-04T10:47:07.000000000", + "2019-01-04T10:48:17.000000000", + "2019-01-04T10:48:51.000000000", + "2019-01-04T10:48:58.000000000", + "2019-01-04T10:50:26.000000000", + "2019-01-04T10:50:46.000000000", + "2019-01-04T10:51:36.000000000", + "2019-01-04T10:52:36.000000000", + "2019-01-04T10:53:25.000000000", + "2019-01-04T10:53:26.000000000", + "2019-01-04T10:54:38.000000000", + "2019-01-04T10:55:50.000000000", + "2019-01-04T10:59:27.000000000", + "2019-01-04T10:59:35.000000000", + "2019-01-04T11:01:17.000000000", + "2019-01-04T11:02:46.000000000", + "2019-01-04T11:03:22.000000000", + "2019-01-04T11:03:37.000000000", + "2019-01-04T11:04:31.000000000", + "2019-01-04T11:06:11.000000000", + "2019-01-04T11:07:32.000000000", + "2019-01-04T11:07:48.000000000", + "2019-01-04T11:08:13.000000000", + "2019-01-04T11:09:38.000000000", + "2019-01-04T11:11:40.000000000", + "2019-01-04T11:13:27.000000000", + "2019-01-04T11:14:25.000000000", + "2019-01-04T11:18:54.000000000", + "2019-01-04T11:19:10.000000000", + "2019-01-04T11:19:18.000000000", + "2019-01-04T11:20:04.000000000", + "2019-01-04T11:20:33.000000000", + "2019-01-04T11:20:52.000000000", + "2019-01-04T11:22:41.000000000", + "2019-01-04T11:23:00.000000000", + "2019-01-04T11:25:49.000000000", + "2019-01-04T11:27:37.000000000", + "2019-01-04T11:28:12.000000000", + "2019-01-04T11:28:32.000000000", + "2019-01-04T11:31:37.000000000", + "2019-01-04T11:33:08.000000000", + "2019-01-04T11:33:12.000000000", + "2019-01-04T11:33:17.000000000", + "2019-01-04T11:33:39.000000000", + "2019-01-04T11:34:08.000000000", + "2019-01-04T11:34:20.000000000", + "2019-01-04T11:36:32.000000000", + "2019-01-04T11:38:07.000000000", + "2019-01-04T11:39:37.000000000", + "2019-01-04T11:40:14.000000000", + "2019-01-04T11:41:20.000000000", + "2019-01-04T11:42:11.000000000", + "2019-01-04T11:42:38.000000000", + "2019-01-04T11:44:04.000000000", + "2019-01-04T11:45:45.000000000", + "2019-01-04T11:46:17.000000000", + "2019-01-04T11:46:23.000000000", + "2019-01-04T11:47:48.000000000", + "2019-01-04T11:53:19.000000000", + "2019-01-04T11:53:40.000000000", + "2019-01-04T11:53:46.000000000", + "2019-01-04T11:54:11.000000000", + "2019-01-04T11:54:14.000000000", + "2019-01-04T11:54:52.000000000", + "2019-01-04T11:56:21.000000000", + "2019-01-04T11:57:06.000000000", + "2019-01-04T11:57:33.000000000", + "2019-01-04T11:57:39.000000000", + "2019-01-04T11:58:30.000000000", + "2019-01-04T11:58:40.000000000", + "2019-01-04T11:58:53.000000000", + "2019-01-04T12:01:03.000000000", + "2019-01-04T12:03:12.000000000", + "2019-01-04T12:03:16.000000000", + "2019-01-04T12:03:21.000000000", + "2019-01-04T12:05:03.000000000", + "2019-01-04T12:05:47.000000000", + "2019-01-04T12:06:56.000000000", + "2019-01-04T12:07:45.000000000", + "2019-01-04T12:08:08.000000000", + "2019-01-04T12:08:32.000000000", + "2019-01-04T12:08:45.000000000", + "2019-01-04T12:08:54.000000000", + "2019-01-04T12:11:37.000000000", + "2019-01-04T12:12:08.000000000", + "2019-01-04T12:13:20.000000000", + "2019-01-04T12:13:21.000000000", + "2019-01-04T12:14:53.000000000", + "2019-01-04T12:15:23.000000000", + "2019-01-04T12:18:06.000000000", + "2019-01-04T12:18:11.000000000", + "2019-01-04T12:18:40.000000000", + "2019-01-04T12:18:41.000000000", + "2019-01-04T12:18:47.000000000", + "2019-01-04T12:19:07.000000000", + "2019-01-04T12:20:51.000000000", + "2019-01-04T12:22:20.000000000", + "2019-01-04T12:23:47.000000000", + "2019-01-04T12:24:08.000000000", + "2019-01-04T12:26:18.000000000", + "2019-01-04T12:27:13.000000000", + "2019-01-04T12:28:54.000000000", + "2019-01-04T12:29:00.000000000", + "2019-01-04T12:30:05.000000000", + "2019-01-04T12:30:18.000000000", + "2019-01-04T12:33:26.000000000", + "2019-01-04T12:34:30.000000000", + "2019-01-04T12:34:42.000000000", + "2019-01-04T12:36:17.000000000", + "2019-01-04T12:39:29.000000000", + "2019-01-04T12:40:04.000000000", + "2019-01-04T12:41:43.000000000", + "2019-01-04T12:44:41.000000000", + "2019-01-04T12:45:50.000000000", + "2019-01-04T12:45:54.000000000", + "2019-01-04T12:46:28.000000000", + "2019-01-04T12:46:40.000000000", + "2019-01-04T12:52:31.000000000", + "2019-01-04T12:55:18.000000000", + "2019-01-04T12:55:22.000000000", + "2019-01-04T12:58:23.000000000", + "2019-01-04T12:58:54.000000000", + "2019-01-04T12:59:03.000000000", + "2019-01-04T12:59:09.000000000", + "2019-01-04T12:59:29.000000000", + "2019-01-04T12:59:33.000000000", + "2019-01-04T12:59:40.000000000", + "2019-01-04T13:02:35.000000000", + "2019-01-04T13:03:05.000000000", + "2019-01-04T13:03:26.000000000", + "2019-01-04T13:03:37.000000000", + "2019-01-04T13:03:52.000000000", + "2019-01-04T13:03:58.000000000", + "2019-01-04T13:04:06.000000000", + "2019-01-04T13:06:19.000000000", + "2019-01-04T13:06:39.000000000", + "2019-01-04T13:09:34.000000000", + "2019-01-04T13:09:54.000000000", + "2019-01-04T13:11:08.000000000", + "2019-01-04T13:11:16.000000000", + "2019-01-04T13:12:40.000000000", + "2019-01-04T13:13:32.000000000", + "2019-01-04T13:14:59.000000000", + "2019-01-04T13:17:40.000000000", + "2019-01-04T13:17:51.000000000", + "2019-01-04T13:17:59.000000000", + "2019-01-04T13:18:24.000000000", + "2019-01-04T13:18:45.000000000", + "2019-01-04T13:20:04.000000000", + "2019-01-04T13:20:38.000000000", + "2019-01-04T13:23:05.000000000", + "2019-01-04T13:23:32.000000000", + "2019-01-04T13:24:39.000000000", + "2019-01-04T13:25:52.000000000", + "2019-01-04T13:26:41.000000000", + "2019-01-04T13:26:46.000000000", + "2019-01-04T13:26:56.000000000", + "2019-01-04T13:29:46.000000000", + "2019-01-04T13:30:03.000000000", + "2019-01-04T13:31:07.000000000", + "2019-01-04T13:31:26.000000000", + "2019-01-04T13:38:50.000000000", + "2019-01-04T13:38:57.000000000", + "2019-01-04T13:39:17.000000000", + "2019-01-04T13:39:50.000000000", + "2019-01-04T13:41:08.000000000", + "2019-01-04T13:42:08.000000000", + "2019-01-04T13:42:23.000000000", + "2019-01-04T13:42:39.000000000", + "2019-01-04T13:42:49.000000000", + "2019-01-04T13:43:29.000000000", + "2019-01-04T13:43:45.000000000", + "2019-01-04T13:44:05.000000000", + "2019-01-04T13:47:42.000000000", + "2019-01-04T13:48:08.000000000", + "2019-01-04T13:49:17.000000000", + "2019-01-04T13:49:57.000000000", + "2019-01-04T13:50:26.000000000", + "2019-01-04T13:50:52.000000000", + "2019-01-04T13:51:00.000000000", + "2019-01-04T13:52:33.000000000", + "2019-01-04T13:53:26.000000000", + "2019-01-04T13:54:44.000000000", + "2019-01-04T13:56:02.000000000", + "2019-01-04T13:56:46.000000000", + "2019-01-04T14:00:07.000000000", + "2019-01-04T14:00:23.000000000", + "2019-01-04T14:00:35.000000000", + "2019-01-04T14:00:57.000000000", + "2019-01-04T14:01:06.000000000", + "2019-01-04T14:02:08.000000000", + "2019-01-04T14:02:52.000000000", + "2019-01-04T14:03:33.000000000", + "2019-01-04T14:05:21.000000000", + "2019-01-04T14:09:19.000000000", + "2019-01-04T14:11:16.000000000", + "2019-01-04T14:11:26.000000000", + "2019-01-04T14:11:42.000000000", + "2019-01-04T14:11:44.000000000", + "2019-01-04T14:11:56.000000000", + "2019-01-04T14:13:02.000000000", + "2019-01-04T14:13:35.000000000", + "2019-01-04T14:14:11.000000000", + "2019-01-04T14:14:57.000000000", + "2019-01-04T14:15:21.000000000", + "2019-01-04T14:15:41.000000000", + "2019-01-04T14:16:51.000000000", + "2019-01-04T14:17:58.000000000", + "2019-01-04T14:22:25.000000000", + "2019-01-04T14:22:26.000000000", + "2019-01-04T14:22:45.000000000", + "2019-01-04T14:24:17.000000000", + "2019-01-04T14:25:46.000000000", + "2019-01-04T14:26:18.000000000", + "2019-01-04T14:26:51.000000000", + "2019-01-04T14:27:09.000000000", + "2019-01-04T14:27:47.000000000", + "2019-01-04T14:28:01.000000000", + "2019-01-04T14:28:18.000000000", + "2019-01-04T14:28:40.000000000", + "2019-01-04T14:29:49.000000000", + "2019-01-04T14:29:51.000000000", + "2019-01-04T14:30:28.000000000", + "2019-01-04T14:31:01.000000000", + "2019-01-04T14:31:24.000000000", + "2019-01-04T14:32:11.000000000", + "2019-01-04T14:32:19.000000000", + "2019-01-04T14:32:57.000000000", + "2019-01-04T14:33:06.000000000", + "2019-01-04T14:33:47.000000000", + "2019-01-04T14:35:56.000000000", + "2019-01-04T14:36:05.000000000", + "2019-01-04T14:37:17.000000000", + "2019-01-04T14:37:19.000000000", + "2019-01-04T14:38:30.000000000", + "2019-01-04T14:38:40.000000000", + "2019-01-04T14:40:29.000000000", + "2019-01-04T14:40:39.000000000", + "2019-01-04T14:41:34.000000000", + "2019-01-04T14:42:04.000000000", + "2019-01-04T14:42:25.000000000", + "2019-01-04T14:44:46.000000000", + "2019-01-04T14:45:23.000000000", + "2019-01-04T14:45:48.000000000", + "2019-01-04T14:48:45.000000000", + "2019-01-04T14:48:56.000000000", + "2019-01-04T14:49:24.000000000", + "2019-01-04T14:52:37.000000000", + "2019-01-04T14:54:15.000000000", + "2019-01-04T14:54:20.000000000", + "2019-01-04T14:54:31.000000000", + "2019-01-04T14:59:06.000000000", + "2019-01-04T14:59:11.000000000", + "2019-01-04T15:00:53.000000000", + "2019-01-04T15:03:34.000000000", + "2019-01-04T15:04:49.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:04:59.000000000", + "2019-01-04T15:05:47.000000000", + "2019-01-04T15:05:54.000000000", + "2019-01-04T15:05:57.000000000", + "2019-01-04T15:06:31.000000000", + "2019-01-04T15:06:35.000000000", + "2019-01-04T15:07:04.000000000", + "2019-01-04T15:07:05.000000000", + "2019-01-04T15:07:39.000000000", + "2019-01-04T15:08:00.000000000", + "2019-01-04T15:08:25.000000000", + "2019-01-04T15:09:24.000000000", + "2019-01-04T15:09:31.000000000", + "2019-01-04T15:13:24.000000000", + "2019-01-04T15:13:30.000000000", + "2019-01-04T15:13:42.000000000", + "2019-01-04T15:13:43.000000000", + "2019-01-04T15:17:09.000000000", + "2019-01-04T15:17:20.000000000", + "2019-01-04T15:20:43.000000000", + "2019-01-04T15:22:09.000000000", + "2019-01-04T15:22:14.000000000", + "2019-01-04T15:22:41.000000000", + "2019-01-04T15:23:34.000000000", + "2019-01-04T15:24:54.000000000", + "2019-01-04T15:25:21.000000000", + "2019-01-04T15:26:24.000000000", + "2019-01-04T15:27:49.000000000", + "2019-01-04T15:31:25.000000000", + "2019-01-04T15:31:38.000000000", + "2019-01-04T15:32:40.000000000", + "2019-01-04T15:35:08.000000000", + "2019-01-04T15:36:00.000000000", + "2019-01-04T15:36:34.000000000", + "2019-01-04T15:37:30.000000000", + "2019-01-04T15:40:01.000000000", + "2019-01-04T15:40:05.000000000", + "2019-01-04T15:40:49.000000000", + "2019-01-04T15:42:58.000000000", + "2019-01-04T15:43:21.000000000", + "2019-01-04T15:43:25.000000000", + "2019-01-04T15:44:21.000000000", + "2019-01-04T15:45:01.000000000", + "2019-01-04T15:46:20.000000000", + "2019-01-04T15:46:45.000000000", + "2019-01-04T15:49:06.000000000", + "2019-01-04T15:49:58.000000000", + "2019-01-04T15:49:59.000000000", + "2019-01-04T15:50:22.000000000", + "2019-01-04T15:52:38.000000000", + "2019-01-04T15:56:10.000000000", + "2019-01-04T15:57:12.000000000", + "2019-01-04T15:57:50.000000000", + "2019-01-04T15:58:54.000000000", + "2019-01-04T16:00:37.000000000", + "2019-01-04T16:01:13.000000000", + "2019-01-04T16:01:45.000000000", + "2019-01-04T16:03:11.000000000", + "2019-01-04T16:04:07.000000000", + "2019-01-04T16:05:16.000000000", + "2019-01-04T16:05:50.000000000", + "2019-01-04T16:07:19.000000000", + "2019-01-04T16:09:39.000000000", + "2019-01-04T16:10:10.000000000", + "2019-01-04T16:10:48.000000000", + "2019-01-04T16:11:00.000000000", + "2019-01-04T16:11:20.000000000", + "2019-01-04T16:13:06.000000000", + "2019-01-04T16:13:30.000000000", + "2019-01-04T16:13:44.000000000", + "2019-01-04T16:14:53.000000000", + "2019-01-04T16:15:11.000000000", + "2019-01-04T16:15:55.000000000", + "2019-01-04T16:23:00.000000000", + "2019-01-04T16:23:47.000000000", + "2019-01-04T16:24:32.000000000", + "2019-01-04T16:24:56.000000000", + "2019-01-04T16:25:54.000000000", + "2019-01-04T16:25:58.000000000", + "2019-01-04T16:27:32.000000000", + "2019-01-04T16:27:48.000000000", + "2019-01-04T16:28:54.000000000", + "2019-01-04T16:29:50.000000000", + "2019-01-04T16:30:51.000000000", + "2019-01-04T16:32:01.000000000", + "2019-01-04T16:33:21.000000000", + "2019-01-04T16:34:45.000000000", + "2019-01-04T16:38:39.000000000", + "2019-01-04T16:39:09.000000000", + "2019-01-04T16:39:21.000000000", + "2019-01-04T16:40:15.000000000", + "2019-01-04T16:47:30.000000000", + "2019-01-04T16:48:19.000000000", + "2019-01-04T16:48:38.000000000", + "2019-01-04T16:49:04.000000000", + "2019-01-04T16:49:11.000000000", + "2019-01-04T16:50:06.000000000", + "2019-01-04T16:51:28.000000000", + "2019-01-04T16:51:31.000000000", + "2019-01-04T16:51:55.000000000", + "2019-01-04T16:52:20.000000000", + "2019-01-04T16:53:33.000000000", + "2019-01-04T16:53:54.000000000", + "2019-01-04T16:54:13.000000000", + "2019-01-04T16:54:51.000000000", + "2019-01-04T16:55:46.000000000", + "2019-01-04T16:57:08.000000000", + "2019-01-04T16:57:11.000000000", + "2019-01-04T16:57:17.000000000", + "2019-01-04T16:58:15.000000000", + "2019-01-04T16:58:39.000000000", + "2019-01-04T16:58:47.000000000", + "2019-01-04T17:00:16.000000000", + "2019-01-04T17:00:32.000000000", + "2019-01-04T17:00:36.000000000", + "2019-01-04T17:01:57.000000000", + "2019-01-04T17:03:33.000000000", + "2019-01-04T17:04:16.000000000", + "2019-01-04T17:05:58.000000000", + "2019-01-04T17:10:58.000000000", + "2019-01-04T17:11:25.000000000", + "2019-01-04T17:13:03.000000000", + "2019-01-04T17:13:59.000000000", + "2019-01-04T17:14:43.000000000", + "2019-01-04T17:16:46.000000000", + "2019-01-04T17:17:16.000000000", + "2019-01-04T17:20:50.000000000", + "2019-01-04T17:21:03.000000000", + "2019-01-04T17:21:49.000000000", + "2019-01-04T17:21:58.000000000", + "2019-01-04T17:24:18.000000000", + "2019-01-04T17:24:36.000000000", + "2019-01-04T17:24:37.000000000", + "2019-01-04T17:27:12.000000000", + "2019-01-04T17:27:18.000000000", + "2019-01-04T17:29:03.000000000", + "2019-01-04T17:30:12.000000000", + "2019-01-04T17:30:22.000000000", + "2019-01-04T17:31:18.000000000", + "2019-01-04T17:31:42.000000000", + "2019-01-04T17:31:46.000000000", + "2019-01-04T17:32:47.000000000", + "2019-01-04T17:34:44.000000000", + "2019-01-04T17:34:59.000000000", + "2019-01-04T17:35:17.000000000", + "2019-01-04T17:35:34.000000000", + "2019-01-04T17:36:37.000000000", + "2019-01-04T17:38:17.000000000", + "2019-01-04T17:38:48.000000000", + "2019-01-04T17:39:15.000000000", + "2019-01-04T17:43:11.000000000", + "2019-01-04T17:43:17.000000000", + "2019-01-04T17:44:42.000000000", + "2019-01-04T17:44:57.000000000", + "2019-01-04T17:45:38.000000000", + "2019-01-04T17:47:14.000000000", + "2019-01-04T17:47:40.000000000", + "2019-01-04T17:48:27.000000000", + "2019-01-04T17:49:08.000000000", + "2019-01-04T17:50:40.000000000", + "2019-01-04T17:51:31.000000000", + "2019-01-04T17:52:29.000000000", + "2019-01-04T17:58:07.000000000", + "2019-01-04T17:58:20.000000000", + "2019-01-04T17:58:31.000000000", + "2019-01-04T17:59:36.000000000", + "2019-01-04T18:00:01.000000000", + "2019-01-04T18:00:07.000000000", + "2019-01-04T18:00:55.000000000", + "2019-01-04T18:01:56.000000000", + "2019-01-04T18:04:48.000000000", + "2019-01-04T18:04:59.000000000", + "2019-01-04T18:07:34.000000000", + "2019-01-04T18:08:27.000000000", + "2019-01-04T18:09:34.000000000", + "2019-01-04T18:10:59.000000000", + "2019-01-04T18:11:19.000000000", + "2019-01-04T18:14:42.000000000", + "2019-01-04T18:14:54.000000000", + "2019-01-04T18:15:51.000000000", + "2019-01-04T18:17:24.000000000", + "2019-01-04T18:17:54.000000000", + "2019-01-04T18:18:06.000000000", + "2019-01-04T18:18:34.000000000", + "2019-01-04T18:20:25.000000000", + "2019-01-04T18:21:36.000000000", + "2019-01-04T18:24:51.000000000", + "2019-01-04T18:25:04.000000000", + "2019-01-04T18:27:19.000000000", + "2019-01-04T18:28:36.000000000", + "2019-01-04T18:29:32.000000000", + "2019-01-04T18:29:49.000000000", + "2019-01-04T18:30:01.000000000", + "2019-01-04T18:32:38.000000000", + "2019-01-04T18:32:54.000000000", + "2019-01-04T18:33:37.000000000", + "2019-01-04T18:35:45.000000000", + "2019-01-04T18:37:06.000000000", + "2019-01-04T18:40:39.000000000", + "2019-01-04T18:41:36.000000000", + "2019-01-04T18:41:37.000000000", + "2019-01-04T18:42:15.000000000", + "2019-01-04T18:44:09.000000000", + "2019-01-04T18:44:55.000000000", + "2019-01-04T18:45:50.000000000", + "2019-01-04T18:46:26.000000000", + "2019-01-04T18:46:58.000000000", + "2019-01-04T18:47:09.000000000", + "2019-01-04T18:47:47.000000000", + "2019-01-04T18:48:15.000000000", + "2019-01-04T18:48:30.000000000", + "2019-01-04T18:49:31.000000000", + "2019-01-04T18:52:38.000000000", + "2019-01-04T18:52:41.000000000", + "2019-01-04T18:53:30.000000000", + "2019-01-04T18:55:14.000000000", + "2019-01-04T18:55:43.000000000", + "2019-01-04T18:55:50.000000000", + "2019-01-04T18:56:22.000000000", + "2019-01-04T18:57:03.000000000", + "2019-01-04T18:59:42.000000000", + "2019-01-04T19:03:52.000000000", + "2019-01-04T19:04:54.000000000", + "2019-01-04T19:06:46.000000000", + "2019-01-04T19:07:20.000000000", + "2019-01-04T19:08:16.000000000", + "2019-01-04T19:13:51.000000000", + "2019-01-04T19:14:34.000000000", + "2019-01-04T19:15:41.000000000", + "2019-01-04T19:16:12.000000000", + "2019-01-04T19:17:07.000000000", + "2019-01-04T19:17:41.000000000", + "2019-01-04T19:19:09.000000000", + "2019-01-04T19:19:23.000000000", + "2019-01-04T19:19:41.000000000", + "2019-01-04T19:20:16.000000000", + "2019-01-04T19:21:15.000000000", + "2019-01-04T19:21:30.000000000", + "2019-01-04T19:22:23.000000000", + "2019-01-04T19:24:55.000000000", + "2019-01-04T19:25:06.000000000", + "2019-01-04T19:25:11.000000000", + "2019-01-04T19:32:30.000000000", + "2019-01-04T19:34:43.000000000", + "2019-01-04T19:34:53.000000000", + "2019-01-04T19:35:15.000000000", + "2019-01-04T19:36:14.000000000", + "2019-01-04T19:38:49.000000000", + "2019-01-04T19:39:21.000000000", + "2019-01-04T19:41:29.000000000", + "2019-01-04T19:41:43.000000000", + "2019-01-04T19:41:46.000000000", + "2019-01-04T19:46:15.000000000", + "2019-01-04T19:47:35.000000000", + "2019-01-04T19:48:23.000000000", + "2019-01-04T19:48:41.000000000", + "2019-01-04T19:49:38.000000000", + "2019-01-04T19:49:56.000000000", + "2019-01-04T19:50:06.000000000", + "2019-01-04T19:50:08.000000000", + "2019-01-04T19:51:17.000000000", + "2019-01-04T19:52:23.000000000", + "2019-01-04T19:52:49.000000000", + "2019-01-04T19:53:04.000000000", + "2019-01-04T19:53:14.000000000", + "2019-01-04T19:53:24.000000000", + "2019-01-04T19:53:46.000000000", + "2019-01-04T19:53:51.000000000", + "2019-01-04T19:53:59.000000000", + "2019-01-04T19:55:00.000000000", + "2019-01-04T19:55:05.000000000", + "2019-01-04T19:55:43.000000000", + "2019-01-04T19:56:07.000000000", + "2019-01-04T19:56:34.000000000", + "2019-01-04T19:56:46.000000000", + "2019-01-04T19:57:16.000000000", + "2019-01-04T19:57:22.000000000", + "2019-01-04T19:58:12.000000000", + "2019-01-04T19:58:26.000000000", + "2019-01-04T20:01:10.000000000", + "2019-01-04T20:01:16.000000000", + "2019-01-04T20:02:18.000000000", + "2019-01-04T20:02:45.000000000", + "2019-01-04T20:03:02.000000000", + "2019-01-04T20:03:10.000000000", + "2019-01-04T20:04:09.000000000", + "2019-01-04T20:05:05.000000000", + "2019-01-04T20:05:56.000000000", + "2019-01-04T20:06:32.000000000", + "2019-01-04T20:07:19.000000000", + "2019-01-04T20:07:25.000000000", + "2019-01-04T20:08:25.000000000", + "2019-01-04T20:08:56.000000000", + "2019-01-04T20:09:35.000000000", + "2019-01-04T20:10:13.000000000", + "2019-01-04T20:10:49.000000000", + "2019-01-04T20:11:21.000000000", + "2019-01-04T20:11:45.000000000", + "2019-01-04T20:13:34.000000000", + "2019-01-04T20:14:07.000000000", + "2019-01-04T20:14:12.000000000", + "2019-01-04T20:16:03.000000000", + "2019-01-04T20:18:55.000000000", + "2019-01-04T20:21:07.000000000", + "2019-01-04T20:21:15.000000000", + "2019-01-04T20:21:27.000000000", + "2019-01-04T20:23:27.000000000", + "2019-01-04T20:28:30.000000000", + "2019-01-04T20:30:34.000000000", + "2019-01-04T20:31:22.000000000", + "2019-01-04T20:32:31.000000000", + "2019-01-04T20:33:30.000000000", + "2019-01-04T20:34:04.000000000", + "2019-01-04T20:36:09.000000000", + "2019-01-04T20:36:24.000000000", + "2019-01-04T20:37:45.000000000", + "2019-01-04T20:37:47.000000000", + "2019-01-04T20:38:01.000000000", + "2019-01-04T20:38:33.000000000", + "2019-01-04T20:38:47.000000000", + "2019-01-04T20:40:05.000000000", + "2019-01-04T20:40:12.000000000", + "2019-01-04T20:40:36.000000000", + "2019-01-04T20:42:33.000000000", + "2019-01-04T20:43:59.000000000", + "2019-01-04T20:44:03.000000000", + "2019-01-04T20:44:33.000000000", + "2019-01-04T20:45:58.000000000", + "2019-01-04T20:46:13.000000000", + "2019-01-04T20:46:16.000000000", + "2019-01-04T20:48:18.000000000", + "2019-01-04T20:48:46.000000000", + "2019-01-04T20:49:01.000000000", + "2019-01-04T20:49:11.000000000", + "2019-01-04T20:49:38.000000000", + "2019-01-04T20:49:52.000000000", + "2019-01-04T20:51:41.000000000", + "2019-01-04T20:52:54.000000000", + "2019-01-04T20:53:24.000000000", + "2019-01-04T20:57:31.000000000", + "2019-01-04T20:58:38.000000000", + "2019-01-04T20:59:37.000000000", + "2019-01-04T20:59:44.000000000", + "2019-01-04T20:59:49.000000000", + "2019-01-04T21:00:05.000000000", + "2019-01-04T21:01:23.000000000", + "2019-01-04T21:02:16.000000000", + "2019-01-04T21:06:34.000000000", + "2019-01-04T21:07:04.000000000", + "2019-01-04T21:07:49.000000000", + "2019-01-04T21:09:05.000000000", + "2019-01-04T21:09:29.000000000", + "2019-01-04T21:09:58.000000000", + "2019-01-04T21:10:28.000000000", + "2019-01-04T21:11:09.000000000", + "2019-01-04T21:11:27.000000000", + "2019-01-04T21:11:37.000000000", + "2019-01-04T21:11:40.000000000", + "2019-01-04T21:15:38.000000000", + "2019-01-04T21:18:16.000000000", + "2019-01-04T21:18:17.000000000", + "2019-01-04T21:18:28.000000000", + "2019-01-04T21:20:42.000000000", + "2019-01-04T21:21:03.000000000", + "2019-01-04T21:22:05.000000000", + "2019-01-04T21:22:18.000000000", + "2019-01-04T21:23:06.000000000", + "2019-01-04T21:23:45.000000000", + "2019-01-04T21:27:02.000000000", + "2019-01-04T21:27:19.000000000", + "2019-01-04T21:30:21.000000000", + "2019-01-04T21:30:24.000000000", + "2019-01-04T21:30:45.000000000", + "2019-01-04T21:31:45.000000000", + "2019-01-04T21:31:54.000000000", + "2019-01-04T21:34:02.000000000", + "2019-01-04T21:34:36.000000000", + "2019-01-04T21:35:04.000000000", + "2019-01-04T21:35:58.000000000", + "2019-01-04T21:37:01.000000000", + "2019-01-04T21:37:14.000000000", + "2019-01-04T21:37:16.000000000", + "2019-01-04T21:37:48.000000000", + "2019-01-04T21:39:02.000000000", + "2019-01-04T21:39:45.000000000", + "2019-01-04T21:40:41.000000000", + "2019-01-04T21:43:15.000000000", + "2019-01-04T21:43:20.000000000", + "2019-01-04T21:44:20.000000000", + "2019-01-04T21:45:17.000000000", + "2019-01-04T21:46:01.000000000", + "2019-01-04T21:46:12.000000000", + "2019-01-04T21:46:14.000000000", + "2019-01-04T21:46:48.000000000", + "2019-01-04T21:47:52.000000000", + "2019-01-04T21:48:22.000000000", + "2019-01-04T21:48:38.000000000", + "2019-01-04T21:48:51.000000000", + "2019-01-04T21:48:59.000000000", + "2019-01-04T21:49:26.000000000", + "2019-01-04T21:50:34.000000000", + "2019-01-04T21:51:11.000000000", + "2019-01-04T21:53:57.000000000", + "2019-01-04T21:55:42.000000000", + "2019-01-04T21:55:52.000000000", + "2019-01-04T22:00:36.000000000", + "2019-01-04T22:00:45.000000000", + "2019-01-04T22:02:02.000000000", + "2019-01-04T22:02:04.000000000", + "2019-01-04T22:03:08.000000000", + "2019-01-04T22:03:21.000000000", + "2019-01-04T22:03:53.000000000", + "2019-01-04T22:04:05.000000000", + "2019-01-04T22:05:12.000000000", + "2019-01-04T22:05:54.000000000", + "2019-01-04T22:08:48.000000000", + "2019-01-04T22:10:13.000000000", + "2019-01-04T22:10:37.000000000", + "2019-01-04T22:11:10.000000000", + "2019-01-04T22:11:13.000000000", + "2019-01-04T22:13:43.000000000", + "2019-01-04T22:15:01.000000000", + "2019-01-04T22:15:14.000000000", + "2019-01-04T22:15:53.000000000", + "2019-01-04T22:17:49.000000000", + "2019-01-04T22:18:40.000000000", + "2019-01-04T22:20:02.000000000", + "2019-01-04T22:20:38.000000000", + "2019-01-04T22:22:18.000000000", + "2019-01-04T22:23:17.000000000", + "2019-01-04T22:23:48.000000000", + "2019-01-04T22:24:46.000000000", + "2019-01-04T22:28:22.000000000", + "2019-01-04T22:29:17.000000000", + "2019-01-04T22:29:31.000000000", + "2019-01-04T22:30:00.000000000", + "2019-01-04T22:30:35.000000000", + "2019-01-04T22:31:58.000000000", + "2019-01-04T22:32:08.000000000", + "2019-01-04T22:33:30.000000000", + "2019-01-04T22:33:38.000000000", + "2019-01-04T22:35:49.000000000", + "2019-01-04T22:35:51.000000000", + "2019-01-04T22:36:45.000000000", + "2019-01-04T22:36:47.000000000", + "2019-01-04T22:37:06.000000000", + "2019-01-04T22:38:20.000000000", + "2019-01-04T22:39:45.000000000", + "2019-01-04T22:40:47.000000000", + "2019-01-04T22:41:56.000000000", + "2019-01-04T22:42:00.000000000", + "2019-01-04T22:42:07.000000000", + "2019-01-04T22:43:31.000000000", + "2019-01-04T22:44:16.000000000", + "2019-01-04T22:44:49.000000000", + "2019-01-04T22:45:15.000000000", + "2019-01-04T22:45:29.000000000", + "2019-01-04T22:50:07.000000000", + "2019-01-04T22:50:15.000000000", + "2019-01-04T22:51:52.000000000", + "2019-01-04T22:52:37.000000000", + "2019-01-04T22:54:15.000000000", + "2019-01-04T22:54:54.000000000", + "2019-01-04T22:55:18.000000000", + "2019-01-04T22:55:48.000000000", + "2019-01-04T22:56:47.000000000", + "2019-01-04T22:57:06.000000000", + "2019-01-04T22:57:51.000000000", + "2019-01-04T22:57:57.000000000", + "2019-01-04T22:58:30.000000000", + "2019-01-04T22:59:50.000000000", + "2019-01-04T23:00:15.000000000", + "2019-01-04T23:00:39.000000000", + "2019-01-04T23:01:32.000000000", + "2019-01-04T23:01:40.000000000", + "2019-01-04T23:02:23.000000000", + "2019-01-04T23:02:46.000000000", + "2019-01-04T23:03:46.000000000", + "2019-01-04T23:04:18.000000000", + "2019-01-04T23:07:42.000000000", + "2019-01-04T23:08:41.000000000", + "2019-01-04T23:13:03.000000000", + "2019-01-04T23:15:01.000000000", + "2019-01-04T23:15:18.000000000", + "2019-01-04T23:15:21.000000000", + "2019-01-04T23:15:44.000000000", + "2019-01-04T23:15:49.000000000", + "2019-01-04T23:17:12.000000000", + "2019-01-04T23:17:44.000000000", + "2019-01-04T23:19:08.000000000", + "2019-01-04T23:19:45.000000000", + "2019-01-04T23:20:11.000000000", + "2019-01-04T23:20:18.000000000", + "2019-01-04T23:21:00.000000000", + "2019-01-04T23:22:27.000000000", + "2019-01-04T23:22:47.000000000", + "2019-01-04T23:23:22.000000000", + "2019-01-04T23:24:59.000000000", + "2019-01-04T23:27:07.000000000", + "2019-01-04T23:29:00.000000000", + "2019-01-04T23:31:00.000000000", + "2019-01-04T23:31:10.000000000", + "2019-01-04T23:31:40.000000000", + "2019-01-04T23:38:29.000000000", + "2019-01-04T23:38:47.000000000", + "2019-01-04T23:39:18.000000000", + "2019-01-04T23:40:27.000000000", + "2019-01-04T23:41:08.000000000", + "2019-01-04T23:41:18.000000000", + "2019-01-04T23:42:36.000000000", + "2019-01-04T23:44:33.000000000", + "2019-01-04T23:45:16.000000000", + "2019-01-04T23:46:11.000000000", + "2019-01-04T23:46:54.000000000", + "2019-01-04T23:47:09.000000000", + "2019-01-04T23:48:28.000000000", + "2019-01-04T23:49:09.000000000", + "2019-01-04T23:51:20.000000000", + "2019-01-04T23:51:24.000000000", + "2019-01-04T23:53:41.000000000", + "2019-01-04T23:54:39.000000000", + "2019-01-04T23:54:53.000000000", + "2019-01-04T23:55:44.000000000", + "2019-01-04T23:56:31.000000000", + "2019-01-04T23:56:33.000000000", + "2019-01-04T23:57:00.000000000", + "2019-01-04T23:57:07.000000000", + "2019-01-04T23:58:15.000000000", + "2019-01-04T23:59:00.000000000", + "2019-01-05T00:00:15.000000000", + "2019-01-05T00:01:15.000000000", + "2019-01-05T00:02:10.000000000", + "2019-01-05T00:03:31.000000000", + "2019-01-05T00:03:49.000000000", + "2019-01-05T00:03:52.000000000", + "2019-01-05T00:04:10.000000000", + "2019-01-05T00:05:31.000000000", + "2019-01-05T00:05:36.000000000", + "2019-01-05T00:07:06.000000000", + "2019-01-05T00:07:19.000000000", + "2019-01-05T00:11:15.000000000", + "2019-01-05T00:12:27.000000000", + "2019-01-05T00:13:02.000000000", + "2019-01-05T00:13:55.000000000", + "2019-01-05T00:16:09.000000000", + "2019-01-05T00:16:37.000000000", + "2019-01-05T00:16:46.000000000", + "2019-01-05T00:18:26.000000000", + "2019-01-05T00:19:09.000000000", + "2019-01-05T00:19:31.000000000", + "2019-01-05T00:19:45.000000000", + "2019-01-05T00:20:21.000000000", + "2019-01-05T00:21:42.000000000", + "2019-01-05T00:25:08.000000000", + "2019-01-05T00:25:23.000000000", + "2019-01-05T00:25:40.000000000", + "2019-01-05T00:26:35.000000000", + "2019-01-05T00:26:53.000000000", + "2019-01-05T00:27:58.000000000", + "2019-01-05T00:28:22.000000000", + "2019-01-05T00:28:27.000000000", + "2019-01-05T00:29:20.000000000", + "2019-01-05T00:29:56.000000000", + "2019-01-05T00:31:32.000000000", + "2019-01-05T00:32:03.000000000", + "2019-01-05T00:32:30.000000000", + "2019-01-05T00:33:20.000000000", + "2019-01-05T00:35:36.000000000", + "2019-01-05T00:38:57.000000000", + "2019-01-05T00:39:00.000000000", + "2019-01-05T00:39:45.000000000", + "2019-01-05T00:40:59.000000000", + "2019-01-05T00:41:08.000000000", + "2019-01-05T00:42:45.000000000", + "2019-01-05T00:45:27.000000000", + "2019-01-05T00:48:38.000000000", + "2019-01-05T00:49:55.000000000", + "2019-01-05T00:50:41.000000000", + "2019-01-05T00:50:51.000000000", + "2019-01-05T00:51:05.000000000", + "2019-01-05T00:52:26.000000000", + "2019-01-05T00:52:44.000000000", + "2019-01-05T00:54:06.000000000", + "2019-01-05T00:55:17.000000000", + "2019-01-05T00:56:31.000000000", + "2019-01-05T00:57:32.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:00:24.000000000", + "2019-01-05T01:02:30.000000000", + "2019-01-05T01:05:15.000000000", + "2019-01-05T01:07:33.000000000", + "2019-01-05T01:10:52.000000000", + "2019-01-05T01:11:56.000000000", + "2019-01-05T01:12:40.000000000", + "2019-01-05T01:13:44.000000000", + "2019-01-05T01:13:50.000000000", + "2019-01-05T01:14:25.000000000", + "2019-01-05T01:16:03.000000000", + "2019-01-05T01:16:36.000000000", + "2019-01-05T01:17:06.000000000", + "2019-01-05T01:17:50.000000000", + "2019-01-05T01:19:48.000000000", + "2019-01-05T01:19:53.000000000", + "2019-01-05T01:20:21.000000000", + "2019-01-05T01:21:11.000000000", + "2019-01-05T01:23:39.000000000", + "2019-01-05T01:25:33.000000000", + "2019-01-05T01:25:50.000000000", + "2019-01-05T01:26:40.000000000", + "2019-01-05T01:26:53.000000000", + "2019-01-05T01:27:28.000000000", + "2019-01-05T01:27:56.000000000", + "2019-01-05T01:28:02.000000000", + "2019-01-05T01:29:37.000000000", + "2019-01-05T01:29:49.000000000", + "2019-01-05T01:31:31.000000000", + "2019-01-05T01:34:01.000000000", + "2019-01-05T01:34:37.000000000", + "2019-01-05T01:35:11.000000000", + "2019-01-05T01:35:28.000000000", + "2019-01-05T01:38:11.000000000", + "2019-01-05T01:38:18.000000000", + "2019-01-05T01:38:45.000000000", + "2019-01-05T01:40:34.000000000", + "2019-01-05T01:41:05.000000000", + "2019-01-05T01:43:38.000000000", + "2019-01-05T01:45:52.000000000", + "2019-01-05T01:47:11.000000000", + "2019-01-05T01:47:28.000000000", + "2019-01-05T01:48:45.000000000", + "2019-01-05T01:48:50.000000000", + "2019-01-05T01:50:55.000000000", + "2019-01-05T01:51:56.000000000", + "2019-01-05T01:52:02.000000000", + "2019-01-05T01:52:22.000000000", + "2019-01-05T01:52:56.000000000", + "2019-01-05T01:55:13.000000000", + "2019-01-05T01:55:52.000000000", + "2019-01-05T01:56:36.000000000", + "2019-01-05T01:56:51.000000000", + "2019-01-05T01:58:59.000000000", + "2019-01-05T01:59:01.000000000", + "2019-01-05T01:59:51.000000000", + "2019-01-05T02:01:29.000000000", + "2019-01-05T02:02:00.000000000", + "2019-01-05T02:02:09.000000000", + "2019-01-05T02:02:14.000000000", + "2019-01-05T02:03:34.000000000", + "2019-01-05T02:04:27.000000000", + "2019-01-05T02:05:08.000000000", + "2019-01-05T02:06:12.000000000", + "2019-01-05T02:06:34.000000000", + "2019-01-05T02:07:05.000000000", + "2019-01-05T02:07:25.000000000", + "2019-01-05T02:08:21.000000000", + "2019-01-05T02:09:22.000000000", + "2019-01-05T02:11:00.000000000", + "2019-01-05T02:11:14.000000000", + "2019-01-05T02:11:28.000000000", + "2019-01-05T02:12:55.000000000", + "2019-01-05T02:14:08.000000000", + "2019-01-05T02:16:23.000000000", + "2019-01-05T02:17:10.000000000", + "2019-01-05T02:17:15.000000000", + "2019-01-05T02:17:54.000000000", + "2019-01-05T02:18:51.000000000", + "2019-01-05T02:19:10.000000000", + "2019-01-05T02:19:34.000000000", + "2019-01-05T02:22:34.000000000", + "2019-01-05T02:24:11.000000000", + "2019-01-05T02:24:14.000000000", + "2019-01-05T02:25:16.000000000", + "2019-01-05T02:26:13.000000000", + "2019-01-05T02:29:46.000000000", + "2019-01-05T02:31:43.000000000", + "2019-01-05T02:32:26.000000000", + "2019-01-05T02:32:57.000000000", + "2019-01-05T02:33:00.000000000", + "2019-01-05T02:33:22.000000000", + "2019-01-05T02:34:03.000000000", + "2019-01-05T02:34:32.000000000", + "2019-01-05T02:35:09.000000000", + "2019-01-05T02:37:05.000000000", + "2019-01-05T02:37:22.000000000", + "2019-01-05T02:37:24.000000000", + "2019-01-05T02:38:10.000000000", + "2019-01-05T02:38:39.000000000", + "2019-01-05T02:39:22.000000000", + "2019-01-05T02:43:06.000000000", + "2019-01-05T02:43:40.000000000", + "2019-01-05T02:44:28.000000000", + "2019-01-05T02:46:37.000000000", + "2019-01-05T02:49:10.000000000", + "2019-01-05T02:50:02.000000000", + "2019-01-05T02:50:13.000000000", + "2019-01-05T02:50:25.000000000", + "2019-01-05T02:51:12.000000000", + "2019-01-05T02:51:53.000000000", + "2019-01-05T02:52:51.000000000", + "2019-01-05T02:53:44.000000000", + "2019-01-05T02:55:38.000000000", + "2019-01-05T02:57:47.000000000", + "2019-01-05T02:59:21.000000000", + "2019-01-05T03:00:00.000000000", + "2019-01-05T03:00:12.000000000", + "2019-01-05T03:01:43.000000000", + "2019-01-05T03:01:51.000000000", + "2019-01-05T03:02:55.000000000", + "2019-01-05T03:03:59.000000000", + "2019-01-05T03:04:15.000000000", + "2019-01-05T03:05:33.000000000", + "2019-01-05T03:11:54.000000000", + "2019-01-05T03:12:33.000000000", + "2019-01-05T03:13:50.000000000", + "2019-01-05T03:15:30.000000000", + "2019-01-05T03:15:48.000000000", + "2019-01-05T03:16:00.000000000", + "2019-01-05T03:19:01.000000000", + "2019-01-05T03:20:40.000000000", + "2019-01-05T03:21:19.000000000", + "2019-01-05T03:21:31.000000000", + "2019-01-05T03:21:35.000000000", + "2019-01-05T03:22:48.000000000", + "2019-01-05T03:25:14.000000000", + "2019-01-05T03:25:22.000000000", + "2019-01-05T03:25:27.000000000", + "2019-01-05T03:26:09.000000000", + "2019-01-05T03:26:35.000000000", + "2019-01-05T03:28:23.000000000", + "2019-01-05T03:29:45.000000000", + "2019-01-05T03:29:57.000000000", + "2019-01-05T03:30:11.000000000", + "2019-01-05T03:30:21.000000000", + "2019-01-05T03:31:54.000000000", + "2019-01-05T03:32:10.000000000", + "2019-01-05T03:32:44.000000000", + "2019-01-05T03:34:33.000000000", + "2019-01-05T03:35:03.000000000", + "2019-01-05T03:35:19.000000000", + "2019-01-05T03:35:21.000000000", + "2019-01-05T03:35:36.000000000", + "2019-01-05T03:36:29.000000000", + "2019-01-05T03:38:41.000000000", + "2019-01-05T03:40:31.000000000", + "2019-01-05T03:41:28.000000000", + "2019-01-05T03:42:31.000000000", + "2019-01-05T03:44:17.000000000", + "2019-01-05T03:46:10.000000000", + "2019-01-05T03:48:37.000000000", + "2019-01-05T03:51:41.000000000", + "2019-01-05T03:52:32.000000000", + "2019-01-05T03:55:41.000000000", + "2019-01-05T03:55:53.000000000", + "2019-01-05T03:56:17.000000000", + "2019-01-05T03:56:34.000000000", + "2019-01-05T03:58:01.000000000", + "2019-01-05T03:58:10.000000000", + "2019-01-05T03:58:31.000000000", + "2019-01-05T03:59:32.000000000", + "2019-01-05T04:00:30.000000000", + "2019-01-05T04:00:37.000000000", + "2019-01-05T04:00:57.000000000", + "2019-01-05T04:01:03.000000000", + "2019-01-05T04:02:00.000000000", + "2019-01-05T04:04:27.000000000", + "2019-01-05T04:09:51.000000000", + "2019-01-05T04:10:05.000000000", + "2019-01-05T04:10:19.000000000", + "2019-01-05T04:10:20.000000000", + "2019-01-05T04:10:34.000000000", + "2019-01-05T04:10:37.000000000", + "2019-01-05T04:12:33.000000000", + "2019-01-05T04:13:21.000000000", + "2019-01-05T04:15:28.000000000", + "2019-01-05T04:15:48.000000000", + "2019-01-05T04:17:31.000000000", + "2019-01-05T04:17:49.000000000", + "2019-01-05T04:18:49.000000000", + "2019-01-05T04:20:00.000000000", + "2019-01-05T04:20:53.000000000", + "2019-01-05T04:22:16.000000000", + "2019-01-05T04:22:40.000000000", + "2019-01-05T04:22:55.000000000", + "2019-01-05T04:24:00.000000000", + "2019-01-05T04:24:15.000000000", + "2019-01-05T04:25:34.000000000", + "2019-01-05T04:26:31.000000000", + "2019-01-05T04:26:52.000000000", + "2019-01-05T04:27:54.000000000", + "2019-01-05T04:28:58.000000000", + "2019-01-05T04:29:17.000000000", + "2019-01-05T04:31:29.000000000", + "2019-01-05T04:31:57.000000000", + "2019-01-05T04:32:24.000000000", + "2019-01-05T04:34:53.000000000", + "2019-01-05T04:34:54.000000000", + "2019-01-05T04:35:11.000000000", + "2019-01-05T04:36:36.000000000", + "2019-01-05T04:36:50.000000000", + "2019-01-05T04:39:16.000000000", + "2019-01-05T04:39:42.000000000", + "2019-01-05T04:39:51.000000000", + "2019-01-05T04:40:44.000000000", + "2019-01-05T04:40:50.000000000", + "2019-01-05T04:42:09.000000000", + "2019-01-05T04:42:36.000000000", + "2019-01-05T04:42:45.000000000", + "2019-01-05T04:43:34.000000000", + "2019-01-05T04:45:15.000000000", + "2019-01-05T04:46:29.000000000", + "2019-01-05T04:47:12.000000000", + "2019-01-05T04:47:24.000000000", + "2019-01-05T04:48:22.000000000", + "2019-01-05T04:50:14.000000000", + "2019-01-05T04:50:15.000000000", + "2019-01-05T04:51:16.000000000", + "2019-01-05T04:52:16.000000000", + "2019-01-05T04:52:19.000000000", + "2019-01-05T04:54:09.000000000", + "2019-01-05T04:55:15.000000000", + "2019-01-05T04:55:48.000000000", + "2019-01-05T04:56:50.000000000", + "2019-01-05T05:00:02.000000000", + "2019-01-05T05:00:47.000000000", + "2019-01-05T05:01:17.000000000", + "2019-01-05T05:01:24.000000000", + "2019-01-05T05:03:20.000000000", + "2019-01-05T05:04:03.000000000", + "2019-01-05T05:04:53.000000000", + "2019-01-05T05:05:16.000000000", + "2019-01-05T05:05:51.000000000", + "2019-01-05T05:09:11.000000000", + "2019-01-05T05:09:26.000000000", + "2019-01-05T05:10:00.000000000", + "2019-01-05T05:11:40.000000000", + "2019-01-05T05:12:04.000000000", + "2019-01-05T05:13:02.000000000", + "2019-01-05T05:14:08.000000000", + "2019-01-05T05:14:28.000000000", + "2019-01-05T05:14:45.000000000", + "2019-01-05T05:15:40.000000000", + "2019-01-05T05:17:11.000000000", + "2019-01-05T05:20:29.000000000", + "2019-01-05T05:22:57.000000000", + "2019-01-05T05:23:16.000000000", + "2019-01-05T05:24:38.000000000", + "2019-01-05T05:24:42.000000000", + "2019-01-05T05:24:43.000000000", + "2019-01-05T05:26:13.000000000", + "2019-01-05T05:26:16.000000000", + "2019-01-05T05:26:22.000000000", + "2019-01-05T05:26:52.000000000", + "2019-01-05T05:26:57.000000000", + "2019-01-05T05:27:51.000000000", + "2019-01-05T05:28:33.000000000", + "2019-01-05T05:28:46.000000000", + "2019-01-05T05:28:58.000000000", + "2019-01-05T05:29:22.000000000", + "2019-01-05T05:29:32.000000000", + "2019-01-05T05:29:55.000000000", + "2019-01-05T05:30:25.000000000", + "2019-01-05T05:30:38.000000000", + "2019-01-05T05:31:38.000000000", + "2019-01-05T05:32:49.000000000", + "2019-01-05T05:33:35.000000000", + "2019-01-05T05:34:25.000000000", + "2019-01-05T05:35:27.000000000", + "2019-01-05T05:35:40.000000000", + "2019-01-05T05:37:11.000000000", + "2019-01-05T05:37:32.000000000", + "2019-01-05T05:37:51.000000000", + "2019-01-05T05:37:57.000000000", + "2019-01-05T05:41:00.000000000", + "2019-01-05T05:42:17.000000000", + "2019-01-05T05:42:31.000000000", + "2019-01-05T05:44:39.000000000", + "2019-01-05T05:46:52.000000000", + "2019-01-05T05:48:03.000000000", + "2019-01-05T05:48:40.000000000", + "2019-01-05T05:52:28.000000000", + "2019-01-05T05:53:13.000000000", + "2019-01-05T05:56:56.000000000", + "2019-01-05T05:58:57.000000000", + "2019-01-05T05:59:04.000000000", + "2019-01-05T05:59:53.000000000", + "2019-01-05T06:00:17.000000000", + "2019-01-05T06:01:29.000000000", + "2019-01-05T06:01:49.000000000", + "2019-01-05T06:03:12.000000000", + "2019-01-05T06:04:49.000000000", + "2019-01-05T06:04:56.000000000", + "2019-01-05T06:05:27.000000000", + "2019-01-05T06:05:42.000000000", + "2019-01-05T06:06:00.000000000", + "2019-01-05T06:06:02.000000000", + "2019-01-05T06:06:08.000000000", + "2019-01-05T06:07:49.000000000", + "2019-01-05T06:08:03.000000000", + "2019-01-05T06:08:05.000000000", + "2019-01-05T06:08:35.000000000", + "2019-01-05T06:08:39.000000000", + "2019-01-05T06:08:56.000000000", + "2019-01-05T06:09:55.000000000", + "2019-01-05T06:10:24.000000000", + "2019-01-05T06:12:06.000000000", + "2019-01-05T06:12:14.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:25.000000000", + "2019-01-05T06:13:27.000000000", + "2019-01-05T06:13:45.000000000", + "2019-01-05T06:13:50.000000000", + "2019-01-05T06:13:53.000000000", + "2019-01-05T06:14:52.000000000", + "2019-01-05T06:15:27.000000000", + "2019-01-05T06:18:29.000000000", + "2019-01-05T06:18:30.000000000", + "2019-01-05T06:18:47.000000000", + "2019-01-05T06:19:20.000000000", + "2019-01-05T06:20:11.000000000", + "2019-01-05T06:22:49.000000000", + "2019-01-05T06:23:19.000000000", + "2019-01-05T06:27:07.000000000", + "2019-01-05T06:31:26.000000000", + "2019-01-05T06:31:49.000000000", + "2019-01-05T06:32:17.000000000", + "2019-01-05T06:34:29.000000000", + "2019-01-05T06:34:31.000000000", + "2019-01-05T06:34:32.000000000", + "2019-01-05T06:36:45.000000000", + "2019-01-05T06:38:06.000000000", + "2019-01-05T06:39:46.000000000", + "2019-01-05T06:40:46.000000000", + "2019-01-05T06:42:00.000000000", + "2019-01-05T06:42:07.000000000", + "2019-01-05T06:42:55.000000000", + "2019-01-05T06:44:59.000000000", + "2019-01-05T06:46:17.000000000", + "2019-01-05T06:46:43.000000000", + "2019-01-05T06:47:01.000000000", + "2019-01-05T06:47:02.000000000", + "2019-01-05T06:48:46.000000000", + "2019-01-05T06:52:19.000000000", + "2019-01-05T06:53:16.000000000", + "2019-01-05T06:54:33.000000000", + "2019-01-05T06:55:37.000000000", + "2019-01-05T06:58:09.000000000", + "2019-01-05T06:58:41.000000000", + "2019-01-05T06:58:56.000000000", + "2019-01-05T06:59:50.000000000", + "2019-01-05T07:00:23.000000000", + "2019-01-05T07:00:41.000000000", + "2019-01-05T07:01:36.000000000", + "2019-01-05T07:02:14.000000000", + "2019-01-05T07:02:47.000000000", + "2019-01-05T07:03:31.000000000", + "2019-01-05T07:05:04.000000000", + "2019-01-05T07:05:23.000000000", + "2019-01-05T07:06:00.000000000", + "2019-01-05T07:06:55.000000000", + "2019-01-05T07:07:05.000000000", + "2019-01-05T07:07:33.000000000", + "2019-01-05T07:09:43.000000000", + "2019-01-05T07:10:03.000000000", + "2019-01-05T07:11:16.000000000", + "2019-01-05T07:12:00.000000000", + "2019-01-05T07:16:06.000000000", + "2019-01-05T07:16:08.000000000", + "2019-01-05T07:16:21.000000000", + "2019-01-05T07:16:33.000000000", + "2019-01-05T07:17:29.000000000", + "2019-01-05T07:18:16.000000000", + "2019-01-05T07:18:46.000000000", + "2019-01-05T07:19:23.000000000", + "2019-01-05T07:19:33.000000000", + "2019-01-05T07:19:38.000000000", + "2019-01-05T07:24:43.000000000", + "2019-01-05T07:26:05.000000000", + "2019-01-05T07:26:44.000000000", + "2019-01-05T07:28:40.000000000", + "2019-01-05T07:30:07.000000000", + "2019-01-05T07:30:52.000000000", + "2019-01-05T07:30:54.000000000", + "2019-01-05T07:31:25.000000000", + "2019-01-05T07:33:24.000000000", + "2019-01-05T07:33:28.000000000", + "2019-01-05T07:35:08.000000000", + "2019-01-05T07:35:11.000000000", + "2019-01-05T07:36:27.000000000", + "2019-01-05T07:40:03.000000000", + "2019-01-05T07:41:28.000000000", + "2019-01-05T07:43:13.000000000", + "2019-01-05T07:43:17.000000000", + "2019-01-05T07:44:12.000000000", + "2019-01-05T07:44:27.000000000", + "2019-01-05T07:44:29.000000000", + "2019-01-05T07:45:27.000000000", + "2019-01-05T07:47:05.000000000", + "2019-01-05T07:48:07.000000000", + "2019-01-05T07:48:38.000000000", + "2019-01-05T07:50:33.000000000", + "2019-01-05T07:50:54.000000000", + "2019-01-05T07:51:23.000000000", + "2019-01-05T07:52:54.000000000", + "2019-01-05T07:54:56.000000000", + "2019-01-05T07:56:05.000000000", + "2019-01-05T07:58:29.000000000", + "2019-01-05T08:02:46.000000000", + "2019-01-05T08:03:24.000000000", + "2019-01-05T08:05:15.000000000", + "2019-01-05T08:05:23.000000000", + "2019-01-05T08:05:40.000000000", + "2019-01-05T08:09:18.000000000", + "2019-01-05T08:09:51.000000000", + "2019-01-05T08:10:01.000000000", + "2019-01-05T08:10:54.000000000", + "2019-01-05T08:11:45.000000000", + "2019-01-05T08:12:13.000000000", + "2019-01-05T08:19:00.000000000", + "2019-01-05T08:20:14.000000000", + "2019-01-05T08:21:28.000000000", + "2019-01-05T08:21:42.000000000", + "2019-01-05T08:23:14.000000000", + "2019-01-05T08:23:18.000000000", + "2019-01-05T08:23:49.000000000", + "2019-01-05T08:23:54.000000000", + "2019-01-05T08:24:43.000000000", + "2019-01-05T08:26:36.000000000", + "2019-01-05T08:26:59.000000000", + "2019-01-05T08:29:43.000000000", + "2019-01-05T08:30:11.000000000", + "2019-01-05T08:30:32.000000000", + "2019-01-05T08:30:59.000000000", + "2019-01-05T08:31:48.000000000", + "2019-01-05T08:32:44.000000000", + "2019-01-05T08:33:29.000000000", + "2019-01-05T08:34:33.000000000", + "2019-01-05T08:39:10.000000000", + "2019-01-05T08:39:12.000000000", + "2019-01-05T08:41:13.000000000", + "2019-01-05T08:42:59.000000000", + "2019-01-05T08:44:04.000000000", + "2019-01-05T08:45:03.000000000", + "2019-01-05T08:45:35.000000000", + "2019-01-05T08:45:50.000000000", + "2019-01-05T08:45:58.000000000", + "2019-01-05T08:46:39.000000000", + "2019-01-05T08:48:02.000000000", + "2019-01-05T08:50:02.000000000", + "2019-01-05T08:50:41.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:18.000000000", + "2019-01-05T08:51:32.000000000", + "2019-01-05T08:51:40.000000000", + "2019-01-05T08:51:44.000000000", + "2019-01-05T08:51:48.000000000", + "2019-01-05T08:52:16.000000000", + "2019-01-05T08:54:00.000000000", + "2019-01-05T08:54:01.000000000", + "2019-01-05T08:54:16.000000000", + "2019-01-05T08:55:01.000000000", + "2019-01-05T08:56:43.000000000", + "2019-01-05T08:59:31.000000000", + "2019-01-05T09:00:01.000000000", + "2019-01-05T09:00:14.000000000", + "2019-01-05T09:00:39.000000000", + "2019-01-05T09:00:44.000000000", + "2019-01-05T09:01:34.000000000", + "2019-01-05T09:02:23.000000000", + "2019-01-05T09:02:51.000000000", + "2019-01-05T09:03:01.000000000", + "2019-01-05T09:03:28.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:04:59.000000000", + "2019-01-05T09:06:21.000000000", + "2019-01-05T09:07:52.000000000", + "2019-01-05T09:09:37.000000000", + "2019-01-05T09:10:12.000000000", + "2019-01-05T09:10:13.000000000", + "2019-01-05T09:10:48.000000000", + "2019-01-05T09:11:06.000000000", + "2019-01-05T09:11:13.000000000", + "2019-01-05T09:11:44.000000000", + "2019-01-05T09:14:18.000000000", + "2019-01-05T09:14:45.000000000", + "2019-01-05T09:15:15.000000000", + "2019-01-05T09:16:09.000000000", + "2019-01-05T09:16:33.000000000", + "2019-01-05T09:18:54.000000000", + "2019-01-05T09:21:45.000000000", + "2019-01-05T09:21:46.000000000", + "2019-01-05T09:26:32.000000000", + "2019-01-05T09:27:01.000000000", + "2019-01-05T09:27:04.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:22.000000000", + "2019-01-05T09:27:54.000000000", + "2019-01-05T09:31:27.000000000", + "2019-01-05T09:31:47.000000000", + "2019-01-05T09:32:29.000000000", + "2019-01-05T09:36:18.000000000", + "2019-01-05T09:38:59.000000000", + "2019-01-05T09:39:59.000000000", + "2019-01-05T09:40:16.000000000", + "2019-01-05T09:41:01.000000000", + "2019-01-05T09:41:12.000000000", + "2019-01-05T09:41:21.000000000", + "2019-01-05T09:43:09.000000000", + "2019-01-05T09:43:11.000000000", + "2019-01-05T09:43:21.000000000", + "2019-01-05T09:45:42.000000000", + "2019-01-05T09:45:44.000000000", + "2019-01-05T09:46:38.000000000", + "2019-01-05T09:47:12.000000000", + "2019-01-05T09:47:49.000000000", + "2019-01-05T09:49:35.000000000", + "2019-01-05T09:51:37.000000000", + "2019-01-05T09:52:25.000000000", + "2019-01-05T09:52:35.000000000", + "2019-01-05T09:52:46.000000000", + "2019-01-05T09:55:58.000000000", + "2019-01-05T09:56:50.000000000", + "2019-01-05T09:57:50.000000000", + "2019-01-05T09:58:32.000000000", + "2019-01-05T10:00:49.000000000", + "2019-01-05T10:01:57.000000000", + "2019-01-05T10:03:00.000000000", + "2019-01-05T10:03:58.000000000", + "2019-01-05T10:04:18.000000000", + "2019-01-05T10:04:20.000000000", + "2019-01-05T10:04:40.000000000", + "2019-01-05T10:04:46.000000000", + "2019-01-05T10:05:09.000000000", + "2019-01-05T10:07:15.000000000", + "2019-01-05T10:08:40.000000000", + "2019-01-05T10:09:25.000000000", + "2019-01-05T10:10:13.000000000", + "2019-01-05T10:10:38.000000000", + "2019-01-05T10:10:47.000000000", + "2019-01-05T10:13:11.000000000", + "2019-01-05T10:14:09.000000000", + "2019-01-05T10:14:55.000000000", + "2019-01-05T10:15:50.000000000", + "2019-01-05T10:15:59.000000000", + "2019-01-05T10:17:41.000000000", + "2019-01-05T10:19:48.000000000", + "2019-01-05T10:20:54.000000000", + "2019-01-05T10:23:50.000000000", + "2019-01-05T10:24:04.000000000", + "2019-01-05T10:24:19.000000000", + "2019-01-05T10:24:55.000000000", + "2019-01-05T10:25:19.000000000", + "2019-01-05T10:25:48.000000000", + "2019-01-05T10:26:03.000000000", + "2019-01-05T10:26:50.000000000", + "2019-01-05T10:27:49.000000000", + "2019-01-05T10:27:50.000000000", + "2019-01-05T10:27:59.000000000", + "2019-01-05T10:29:53.000000000", + "2019-01-05T10:30:33.000000000", + "2019-01-05T10:30:39.000000000", + "2019-01-05T10:31:36.000000000", + "2019-01-05T10:32:28.000000000", + "2019-01-05T10:34:24.000000000", + "2019-01-05T10:36:04.000000000", + "2019-01-05T10:36:19.000000000", + "2019-01-05T10:37:25.000000000", + "2019-01-05T10:42:07.000000000", + "2019-01-05T10:42:41.000000000", + "2019-01-05T10:43:19.000000000", + "2019-01-05T10:46:38.000000000", + "2019-01-05T10:47:14.000000000", + "2019-01-05T10:47:58.000000000", + "2019-01-05T10:48:45.000000000", + "2019-01-05T10:49:17.000000000", + "2019-01-05T10:49:23.000000000", + "2019-01-05T10:49:31.000000000", + "2019-01-05T10:50:36.000000000", + "2019-01-05T10:52:18.000000000", + "2019-01-05T10:52:25.000000000", + "2019-01-05T10:53:13.000000000", + "2019-01-05T10:53:23.000000000", + "2019-01-05T10:55:48.000000000", + "2019-01-05T10:56:07.000000000", + "2019-01-05T10:58:09.000000000", + "2019-01-05T10:59:42.000000000", + "2019-01-05T11:01:20.000000000", + "2019-01-05T11:04:04.000000000", + "2019-01-05T11:04:36.000000000", + "2019-01-05T11:05:42.000000000", + "2019-01-05T11:06:45.000000000", + "2019-01-05T11:08:54.000000000", + "2019-01-05T11:10:42.000000000", + "2019-01-05T11:11:29.000000000", + "2019-01-05T11:11:47.000000000", + "2019-01-05T11:12:32.000000000", + "2019-01-05T11:13:37.000000000", + "2019-01-05T11:13:56.000000000", + "2019-01-05T11:14:17.000000000", + "2019-01-05T11:15:40.000000000", + "2019-01-05T11:16:35.000000000", + "2019-01-05T11:16:58.000000000", + "2019-01-05T11:16:59.000000000", + "2019-01-05T11:18:05.000000000", + "2019-01-05T11:19:34.000000000", + "2019-01-05T11:20:17.000000000", + "2019-01-05T11:21:28.000000000", + "2019-01-05T11:21:45.000000000", + "2019-01-05T11:22:02.000000000", + "2019-01-05T11:23:01.000000000", + "2019-01-05T11:25:51.000000000", + "2019-01-05T11:26:36.000000000", + "2019-01-05T11:27:34.000000000", + "2019-01-05T11:28:52.000000000", + "2019-01-05T11:29:44.000000000", + "2019-01-05T11:31:11.000000000", + "2019-01-05T11:31:23.000000000", + "2019-01-05T11:34:17.000000000", + "2019-01-05T11:37:04.000000000", + "2019-01-05T11:37:41.000000000", + "2019-01-05T11:38:55.000000000", + "2019-01-05T11:40:47.000000000", + "2019-01-05T11:43:38.000000000", + "2019-01-05T11:45:00.000000000", + "2019-01-05T11:45:16.000000000", + "2019-01-05T11:45:39.000000000", + "2019-01-05T11:46:08.000000000", + "2019-01-05T11:50:09.000000000", + "2019-01-05T11:51:21.000000000", + "2019-01-05T11:51:32.000000000", + "2019-01-05T11:52:21.000000000", + "2019-01-05T11:53:21.000000000", + "2019-01-05T11:53:36.000000000", + "2019-01-05T11:54:24.000000000", + "2019-01-05T11:55:37.000000000", + "2019-01-05T11:56:07.000000000", + "2019-01-05T11:56:20.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:22.000000000", + "2019-01-05T11:56:30.000000000", + "2019-01-05T11:57:28.000000000", + "2019-01-05T11:57:45.000000000", + "2019-01-05T12:00:06.000000000", + "2019-01-05T12:01:10.000000000", + "2019-01-05T12:01:19.000000000", + "2019-01-05T12:01:30.000000000", + "2019-01-05T12:02:11.000000000", + "2019-01-05T12:02:35.000000000", + "2019-01-05T12:03:42.000000000", + "2019-01-05T12:04:12.000000000", + "2019-01-05T12:05:14.000000000", + "2019-01-05T12:06:52.000000000", + "2019-01-05T12:07:21.000000000", + "2019-01-05T12:07:45.000000000", + "2019-01-05T12:08:20.000000000", + "2019-01-05T12:08:37.000000000", + "2019-01-05T12:11:11.000000000", + "2019-01-05T12:12:31.000000000", + "2019-01-05T12:12:52.000000000", + "2019-01-05T12:12:59.000000000", + "2019-01-05T12:14:52.000000000", + "2019-01-05T12:15:15.000000000", + "2019-01-05T12:16:40.000000000", + "2019-01-05T12:17:14.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:17:55.000000000", + "2019-01-05T12:18:22.000000000", + "2019-01-05T12:18:59.000000000", + "2019-01-05T12:19:47.000000000", + "2019-01-05T12:20:16.000000000", + "2019-01-05T12:20:42.000000000", + "2019-01-05T12:22:24.000000000", + "2019-01-05T12:23:31.000000000", + "2019-01-05T12:26:54.000000000", + "2019-01-05T12:27:01.000000000", + "2019-01-05T12:28:06.000000000", + "2019-01-05T12:29:46.000000000", + "2019-01-05T12:30:26.000000000", + "2019-01-05T12:30:50.000000000", + "2019-01-05T12:31:50.000000000", + "2019-01-05T12:32:21.000000000", + "2019-01-05T12:32:44.000000000", + "2019-01-05T12:32:48.000000000", + "2019-01-05T12:34:51.000000000", + "2019-01-05T12:35:28.000000000", + "2019-01-05T12:35:31.000000000", + "2019-01-05T12:38:55.000000000", + "2019-01-05T12:40:00.000000000", + "2019-01-05T12:40:12.000000000", + "2019-01-05T12:40:50.000000000", + "2019-01-05T12:41:47.000000000", + "2019-01-05T12:42:16.000000000", + "2019-01-05T12:43:49.000000000", + "2019-01-05T12:44:11.000000000", + "2019-01-05T12:47:57.000000000", + "2019-01-05T12:48:09.000000000", + "2019-01-05T12:48:17.000000000", + "2019-01-05T12:49:23.000000000", + "2019-01-05T12:49:30.000000000", + "2019-01-05T12:49:43.000000000", + "2019-01-05T12:50:08.000000000", + "2019-01-05T12:54:28.000000000", + "2019-01-05T12:56:26.000000000", + "2019-01-05T12:58:43.000000000", + "2019-01-05T12:58:49.000000000", + "2019-01-05T12:59:48.000000000", + "2019-01-05T13:02:39.000000000", + "2019-01-05T13:02:45.000000000", + "2019-01-05T13:03:29.000000000", + "2019-01-05T13:03:44.000000000", + "2019-01-05T13:03:55.000000000", + "2019-01-05T13:05:06.000000000", + "2019-01-05T13:05:38.000000000", + "2019-01-05T13:06:16.000000000", + "2019-01-05T13:07:54.000000000", + "2019-01-05T13:08:00.000000000", + "2019-01-05T13:08:21.000000000", + "2019-01-05T13:10:46.000000000", + "2019-01-05T13:12:20.000000000", + "2019-01-05T13:13:00.000000000", + "2019-01-05T13:13:51.000000000", + "2019-01-05T13:15:10.000000000", + "2019-01-05T13:15:16.000000000", + "2019-01-05T13:15:30.000000000", + "2019-01-05T13:16:29.000000000", + "2019-01-05T13:16:46.000000000", + "2019-01-05T13:17:04.000000000", + "2019-01-05T13:18:59.000000000", + "2019-01-05T13:19:49.000000000", + "2019-01-05T13:22:00.000000000", + "2019-01-05T13:22:09.000000000", + "2019-01-05T13:23:00.000000000", + "2019-01-05T13:23:57.000000000", + "2019-01-05T13:24:00.000000000", + "2019-01-05T13:24:16.000000000", + "2019-01-05T13:24:33.000000000", + "2019-01-05T13:26:24.000000000", + "2019-01-05T13:26:28.000000000", + "2019-01-05T13:27:27.000000000", + "2019-01-05T13:27:35.000000000", + "2019-01-05T13:29:55.000000000", + "2019-01-05T13:30:34.000000000", + "2019-01-05T13:30:36.000000000", + "2019-01-05T13:32:15.000000000", + "2019-01-05T13:32:47.000000000", + "2019-01-05T13:32:58.000000000", + "2019-01-05T13:33:02.000000000", + "2019-01-05T13:33:28.000000000", + "2019-01-05T13:34:33.000000000", + "2019-01-05T13:35:35.000000000", + "2019-01-05T13:35:38.000000000", + "2019-01-05T13:35:39.000000000", + "2019-01-05T13:35:45.000000000", + "2019-01-05T13:37:07.000000000", + "2019-01-05T13:38:28.000000000", + "2019-01-05T13:39:11.000000000", + "2019-01-05T13:39:57.000000000", + "2019-01-05T13:40:28.000000000", + "2019-01-05T13:40:56.000000000", + "2019-01-05T13:41:23.000000000", + "2019-01-05T13:41:52.000000000", + "2019-01-05T13:42:37.000000000", + "2019-01-05T13:43:23.000000000", + "2019-01-05T13:43:29.000000000", + "2019-01-05T13:46:38.000000000", + "2019-01-05T13:47:29.000000000", + "2019-01-05T13:47:45.000000000", + "2019-01-05T13:48:57.000000000", + "2019-01-05T13:51:05.000000000", + "2019-01-05T13:51:50.000000000", + "2019-01-05T13:51:53.000000000", + "2019-01-05T13:52:09.000000000", + "2019-01-05T13:52:22.000000000", + "2019-01-05T13:52:50.000000000", + "2019-01-05T13:54:07.000000000", + "2019-01-05T13:54:16.000000000", + "2019-01-05T13:54:22.000000000", + "2019-01-05T13:54:37.000000000", + "2019-01-05T13:55:18.000000000", + "2019-01-05T13:55:20.000000000", + "2019-01-05T13:56:15.000000000", + "2019-01-05T13:57:26.000000000", + "2019-01-05T13:57:50.000000000", + "2019-01-05T13:58:19.000000000", + "2019-01-05T13:58:51.000000000", + "2019-01-05T14:03:07.000000000", + "2019-01-05T14:04:36.000000000", + "2019-01-05T14:05:43.000000000", + "2019-01-05T14:06:06.000000000", + "2019-01-05T14:06:35.000000000", + "2019-01-05T14:08:23.000000000", + "2019-01-05T14:10:11.000000000", + "2019-01-05T14:11:16.000000000", + "2019-01-05T14:12:36.000000000", + "2019-01-05T14:15:12.000000000", + "2019-01-05T14:17:14.000000000", + "2019-01-05T14:18:08.000000000", + "2019-01-05T14:19:49.000000000", + "2019-01-05T14:20:48.000000000", + "2019-01-05T14:21:20.000000000", + "2019-01-05T14:21:46.000000000", + "2019-01-05T14:22:46.000000000", + "2019-01-05T14:23:12.000000000", + "2019-01-05T14:24:26.000000000", + "2019-01-05T14:25:24.000000000", + "2019-01-05T14:28:45.000000000", + "2019-01-05T14:30:34.000000000", + "2019-01-05T14:33:48.000000000", + "2019-01-05T14:33:52.000000000", + "2019-01-05T14:34:18.000000000", + "2019-01-05T14:34:34.000000000", + "2019-01-05T14:35:38.000000000", + "2019-01-05T14:37:31.000000000", + "2019-01-05T14:39:14.000000000", + "2019-01-05T14:39:49.000000000", + "2019-01-05T14:42:43.000000000", + "2019-01-05T14:43:16.000000000", + "2019-01-05T14:44:08.000000000", + "2019-01-05T14:44:53.000000000", + "2019-01-05T14:45:32.000000000", + "2019-01-05T14:45:46.000000000", + "2019-01-05T14:45:57.000000000", + "2019-01-05T14:47:23.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:50:24.000000000", + "2019-01-05T14:52:38.000000000", + "2019-01-05T14:54:17.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:54:54.000000000", + "2019-01-05T14:56:35.000000000", + "2019-01-05T14:57:01.000000000", + "2019-01-05T14:57:15.000000000", + "2019-01-05T14:57:51.000000000", + "2019-01-05T14:58:46.000000000", + "2019-01-05T15:00:29.000000000", + "2019-01-05T15:01:48.000000000", + "2019-01-05T15:06:00.000000000", + "2019-01-05T15:06:24.000000000", + "2019-01-05T15:07:10.000000000", + "2019-01-05T15:08:27.000000000", + "2019-01-05T15:08:30.000000000", + "2019-01-05T15:09:55.000000000", + "2019-01-05T15:11:17.000000000", + "2019-01-05T15:11:22.000000000", + "2019-01-05T15:11:34.000000000", + "2019-01-05T15:12:06.000000000", + "2019-01-05T15:14:40.000000000", + "2019-01-05T15:15:51.000000000", + "2019-01-05T15:18:48.000000000", + "2019-01-05T15:18:57.000000000", + "2019-01-05T15:21:47.000000000", + "2019-01-05T15:22:34.000000000", + "2019-01-05T15:23:18.000000000", + "2019-01-05T15:23:33.000000000", + "2019-01-05T15:24:51.000000000", + "2019-01-05T15:25:11.000000000", + "2019-01-05T15:25:13.000000000", + "2019-01-05T15:26:21.000000000", + "2019-01-05T15:27:38.000000000", + "2019-01-05T15:29:24.000000000", + "2019-01-05T15:30:13.000000000", + "2019-01-05T15:32:27.000000000", + "2019-01-05T15:32:44.000000000", + "2019-01-05T15:33:02.000000000", + "2019-01-05T15:33:04.000000000", + "2019-01-05T15:34:20.000000000", + "2019-01-05T15:36:13.000000000", + "2019-01-05T15:36:35.000000000", + "2019-01-05T15:37:06.000000000", + "2019-01-05T15:39:03.000000000", + "2019-01-05T15:40:03.000000000", + "2019-01-05T15:41:29.000000000", + "2019-01-05T15:41:46.000000000", + "2019-01-05T15:42:17.000000000", + "2019-01-05T15:43:02.000000000", + "2019-01-05T15:43:13.000000000", + "2019-01-05T15:44:14.000000000", + "2019-01-05T15:44:58.000000000", + "2019-01-05T15:46:11.000000000", + "2019-01-05T15:47:11.000000000", + "2019-01-05T15:49:20.000000000", + "2019-01-05T15:50:09.000000000", + "2019-01-05T15:53:01.000000000", + "2019-01-05T15:54:28.000000000", + "2019-01-05T15:54:41.000000000", + "2019-01-05T15:56:30.000000000", + "2019-01-05T15:56:32.000000000", + "2019-01-05T15:58:40.000000000", + "2019-01-05T15:58:41.000000000", + "2019-01-05T15:58:53.000000000", + "2019-01-05T16:01:23.000000000", + "2019-01-05T16:01:54.000000000", + "2019-01-05T16:01:57.000000000", + "2019-01-05T16:03:09.000000000", + "2019-01-05T16:04:24.000000000", + "2019-01-05T16:05:37.000000000", + "2019-01-05T16:05:46.000000000", + "2019-01-05T16:06:14.000000000", + "2019-01-05T16:07:23.000000000", + "2019-01-05T16:09:09.000000000", + "2019-01-05T16:11:02.000000000", + "2019-01-05T16:12:16.000000000", + "2019-01-05T16:12:45.000000000", + "2019-01-05T16:13:04.000000000", + "2019-01-05T16:14:43.000000000", + "2019-01-05T16:15:12.000000000", + "2019-01-05T16:15:22.000000000", + "2019-01-05T16:16:39.000000000", + "2019-01-05T16:16:46.000000000", + "2019-01-05T16:17:36.000000000", + "2019-01-05T16:18:52.000000000", + "2019-01-05T16:19:34.000000000", + "2019-01-05T16:19:37.000000000", + "2019-01-05T16:20:47.000000000", + "2019-01-05T16:21:30.000000000", + "2019-01-05T16:22:05.000000000", + "2019-01-05T16:22:45.000000000", + "2019-01-05T16:22:56.000000000", + "2019-01-05T16:23:10.000000000", + "2019-01-05T16:23:17.000000000", + "2019-01-05T16:25:00.000000000", + "2019-01-05T16:27:05.000000000", + "2019-01-05T16:28:48.000000000", + "2019-01-05T16:29:09.000000000", + "2019-01-05T16:31:14.000000000", + "2019-01-05T16:31:42.000000000", + "2019-01-05T16:32:38.000000000", + "2019-01-05T16:33:22.000000000", + "2019-01-05T16:36:05.000000000", + "2019-01-05T16:36:20.000000000", + "2019-01-05T16:39:53.000000000", + "2019-01-05T16:40:01.000000000", + "2019-01-05T16:40:06.000000000", + "2019-01-05T16:40:57.000000000", + "2019-01-05T16:41:59.000000000", + "2019-01-05T16:44:01.000000000", + "2019-01-05T16:45:06.000000000", + "2019-01-05T16:46:00.000000000", + "2019-01-05T16:46:01.000000000", + "2019-01-05T16:46:09.000000000", + "2019-01-05T16:46:35.000000000", + "2019-01-05T16:47:04.000000000", + "2019-01-05T16:47:22.000000000", + "2019-01-05T16:47:24.000000000", + "2019-01-05T16:48:32.000000000", + "2019-01-05T16:49:31.000000000", + "2019-01-05T16:50:36.000000000", + "2019-01-05T16:51:44.000000000", + "2019-01-05T16:52:17.000000000", + "2019-01-05T16:52:55.000000000", + "2019-01-05T16:53:22.000000000", + "2019-01-05T16:54:32.000000000", + "2019-01-05T16:55:41.000000000", + "2019-01-05T16:56:15.000000000", + "2019-01-05T16:57:32.000000000", + "2019-01-05T16:59:21.000000000", + "2019-01-05T16:59:53.000000000", + "2019-01-05T17:00:55.000000000", + "2019-01-05T17:01:11.000000000", + "2019-01-05T17:03:43.000000000", + "2019-01-05T17:04:31.000000000", + "2019-01-05T17:04:40.000000000", + "2019-01-05T17:05:41.000000000", + "2019-01-05T17:07:05.000000000", + "2019-01-05T17:07:23.000000000", + "2019-01-05T17:08:16.000000000", + "2019-01-05T17:08:59.000000000", + "2019-01-05T17:11:17.000000000", + "2019-01-05T17:12:56.000000000", + "2019-01-05T17:16:29.000000000", + "2019-01-05T17:17:06.000000000", + "2019-01-05T17:17:08.000000000", + "2019-01-05T17:17:26.000000000", + "2019-01-05T17:19:10.000000000", + "2019-01-05T17:19:12.000000000", + "2019-01-05T17:19:26.000000000", + "2019-01-05T17:19:45.000000000", + "2019-01-05T17:21:21.000000000", + "2019-01-05T17:23:08.000000000", + "2019-01-05T17:24:00.000000000", + "2019-01-05T17:24:34.000000000", + "2019-01-05T17:25:01.000000000", + "2019-01-05T17:27:55.000000000", + "2019-01-05T17:28:23.000000000", + "2019-01-05T17:30:30.000000000", + "2019-01-05T17:31:00.000000000", + "2019-01-05T17:32:53.000000000", + "2019-01-05T17:33:05.000000000", + "2019-01-05T17:33:15.000000000", + "2019-01-05T17:33:25.000000000", + "2019-01-05T17:33:27.000000000", + "2019-01-05T17:36:05.000000000", + "2019-01-05T17:36:54.000000000", + "2019-01-05T17:37:39.000000000", + "2019-01-05T17:38:10.000000000", + "2019-01-05T17:38:20.000000000", + "2019-01-05T17:38:50.000000000", + "2019-01-05T17:40:43.000000000", + "2019-01-05T17:40:47.000000000", + "2019-01-05T17:41:25.000000000", + "2019-01-05T17:41:38.000000000", + "2019-01-05T17:41:46.000000000", + "2019-01-05T17:42:08.000000000", + "2019-01-05T17:43:30.000000000", + "2019-01-05T17:44:27.000000000", + "2019-01-05T17:45:29.000000000", + "2019-01-05T17:45:43.000000000", + "2019-01-05T17:46:17.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:47:44.000000000", + "2019-01-05T17:49:40.000000000", + "2019-01-05T17:51:06.000000000", + "2019-01-05T17:51:50.000000000", + "2019-01-05T17:52:35.000000000", + "2019-01-05T17:52:53.000000000", + "2019-01-05T17:53:08.000000000", + "2019-01-05T17:53:29.000000000", + "2019-01-05T17:53:37.000000000", + "2019-01-05T17:53:38.000000000", + "2019-01-05T17:54:09.000000000", + "2019-01-05T17:54:32.000000000", + "2019-01-05T17:54:45.000000000", + "2019-01-05T17:55:01.000000000", + "2019-01-05T17:56:32.000000000", + "2019-01-05T17:57:38.000000000", + "2019-01-05T17:58:57.000000000", + "2019-01-05T17:59:19.000000000", + "2019-01-05T18:00:43.000000000", + "2019-01-05T18:01:47.000000000", + "2019-01-05T18:03:03.000000000", + "2019-01-05T18:04:05.000000000", + "2019-01-05T18:05:10.000000000", + "2019-01-05T18:06:06.000000000", + "2019-01-05T18:06:13.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:20.000000000", + "2019-01-05T18:06:24.000000000", + "2019-01-05T18:06:48.000000000", + "2019-01-05T18:07:16.000000000", + "2019-01-05T18:10:41.000000000", + "2019-01-05T18:12:52.000000000", + "2019-01-05T18:13:29.000000000", + "2019-01-05T18:13:40.000000000", + "2019-01-05T18:14:58.000000000", + "2019-01-05T18:15:26.000000000", + "2019-01-05T18:16:15.000000000", + "2019-01-05T18:19:02.000000000", + "2019-01-05T18:21:11.000000000", + "2019-01-05T18:25:41.000000000", + "2019-01-05T18:25:43.000000000", + "2019-01-05T18:27:56.000000000", + "2019-01-05T18:28:23.000000000", + "2019-01-05T18:30:09.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:30:32.000000000", + "2019-01-05T18:31:26.000000000", + "2019-01-05T18:31:53.000000000", + "2019-01-05T18:32:24.000000000", + "2019-01-05T18:36:09.000000000", + "2019-01-05T18:37:29.000000000", + "2019-01-05T18:37:34.000000000", + "2019-01-05T18:37:59.000000000", + "2019-01-05T18:39:19.000000000", + "2019-01-05T18:41:42.000000000", + "2019-01-05T18:42:17.000000000", + "2019-01-05T18:42:30.000000000", + "2019-01-05T18:43:12.000000000", + "2019-01-05T18:45:40.000000000", + "2019-01-05T18:46:48.000000000", + "2019-01-05T18:47:14.000000000", + "2019-01-05T18:48:27.000000000", + "2019-01-05T18:48:54.000000000", + "2019-01-05T18:50:27.000000000", + "2019-01-05T18:50:50.000000000", + "2019-01-05T18:51:55.000000000", + "2019-01-05T18:52:29.000000000", + "2019-01-05T18:53:24.000000000", + "2019-01-05T18:53:41.000000000", + "2019-01-05T18:54:59.000000000", + "2019-01-05T18:55:47.000000000", + "2019-01-05T18:57:05.000000000", + "2019-01-05T18:57:42.000000000", + "2019-01-05T18:57:54.000000000", + "2019-01-05T18:59:01.000000000", + "2019-01-05T18:59:18.000000000", + "2019-01-05T19:00:48.000000000", + "2019-01-05T19:01:32.000000000", + "2019-01-05T19:01:36.000000000", + "2019-01-05T19:03:43.000000000", + "2019-01-05T19:04:14.000000000", + "2019-01-05T19:04:40.000000000", + "2019-01-05T19:05:13.000000000", + "2019-01-05T19:07:24.000000000", + "2019-01-05T19:08:11.000000000", + "2019-01-05T19:10:10.000000000", + "2019-01-05T19:11:20.000000000", + "2019-01-05T19:11:46.000000000", + "2019-01-05T19:12:15.000000000", + "2019-01-05T19:12:28.000000000", + "2019-01-05T19:13:06.000000000", + "2019-01-05T19:17:13.000000000", + "2019-01-05T19:19:01.000000000", + "2019-01-05T19:19:47.000000000", + "2019-01-05T19:20:43.000000000", + "2019-01-05T19:21:31.000000000", + "2019-01-05T19:21:53.000000000", + "2019-01-05T19:21:59.000000000", + "2019-01-05T19:22:11.000000000", + "2019-01-05T19:22:25.000000000", + "2019-01-05T19:22:30.000000000", + "2019-01-05T19:23:48.000000000", + "2019-01-05T19:25:52.000000000", + "2019-01-05T19:26:13.000000000", + "2019-01-05T19:26:18.000000000", + "2019-01-05T19:26:58.000000000", + "2019-01-05T19:28:20.000000000", + "2019-01-05T19:28:43.000000000", + "2019-01-05T19:29:16.000000000", + "2019-01-05T19:30:16.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:29.000000000", + "2019-01-05T19:30:45.000000000", + "2019-01-05T19:30:48.000000000", + "2019-01-05T19:32:05.000000000", + "2019-01-05T19:32:13.000000000", + "2019-01-05T19:32:33.000000000", + "2019-01-05T19:33:00.000000000", + "2019-01-05T19:33:13.000000000", + "2019-01-05T19:34:00.000000000", + "2019-01-05T19:34:38.000000000", + "2019-01-05T19:36:26.000000000", + "2019-01-05T19:39:27.000000000", + "2019-01-05T19:39:43.000000000", + "2019-01-05T19:40:04.000000000", + "2019-01-05T19:40:32.000000000", + "2019-01-05T19:41:15.000000000", + "2019-01-05T19:42:03.000000000", + "2019-01-05T19:46:04.000000000", + "2019-01-05T19:46:32.000000000", + "2019-01-05T19:46:48.000000000", + "2019-01-05T19:47:57.000000000", + "2019-01-05T19:48:20.000000000", + "2019-01-05T19:49:19.000000000", + "2019-01-05T19:49:28.000000000", + "2019-01-05T19:51:03.000000000", + "2019-01-05T19:52:16.000000000", + "2019-01-05T19:52:43.000000000", + "2019-01-05T19:55:23.000000000", + "2019-01-05T19:55:24.000000000", + "2019-01-05T19:55:28.000000000", + "2019-01-05T19:56:55.000000000", + "2019-01-05T19:57:00.000000000", + "2019-01-05T19:58:34.000000000", + "2019-01-05T19:59:58.000000000", + "2019-01-05T20:00:10.000000000", + "2019-01-05T20:01:00.000000000", + "2019-01-05T20:01:08.000000000", + "2019-01-05T20:01:28.000000000", + "2019-01-05T20:05:11.000000000", + "2019-01-05T20:05:37.000000000", + "2019-01-05T20:05:42.000000000", + "2019-01-05T20:08:15.000000000", + "2019-01-05T20:09:50.000000000", + "2019-01-05T20:11:06.000000000", + "2019-01-05T20:13:14.000000000", + "2019-01-05T20:14:24.000000000", + "2019-01-05T20:16:12.000000000", + "2019-01-05T20:16:17.000000000", + "2019-01-05T20:16:29.000000000", + "2019-01-05T20:16:41.000000000", + "2019-01-05T20:17:49.000000000", + "2019-01-05T20:20:04.000000000", + "2019-01-05T20:22:07.000000000", + "2019-01-05T20:22:47.000000000", + "2019-01-05T20:29:17.000000000", + "2019-01-05T20:30:06.000000000", + "2019-01-05T20:30:32.000000000", + "2019-01-05T20:32:58.000000000", + "2019-01-05T20:34:04.000000000", + "2019-01-05T20:34:32.000000000", + "2019-01-05T20:35:13.000000000", + "2019-01-05T20:35:23.000000000", + "2019-01-05T20:36:48.000000000", + "2019-01-05T20:38:42.000000000", + "2019-01-05T20:39:36.000000000", + "2019-01-05T20:40:10.000000000", + "2019-01-05T20:40:25.000000000", + "2019-01-05T20:42:48.000000000", + "2019-01-05T20:43:54.000000000", + "2019-01-05T20:44:07.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:44:48.000000000", + "2019-01-05T20:45:45.000000000", + "2019-01-05T20:47:22.000000000", + "2019-01-05T20:50:38.000000000", + "2019-01-05T20:50:43.000000000", + "2019-01-05T20:53:04.000000000", + "2019-01-05T20:53:13.000000000", + "2019-01-05T20:53:52.000000000", + "2019-01-05T20:54:18.000000000", + "2019-01-05T20:55:30.000000000", + "2019-01-05T20:55:41.000000000", + "2019-01-05T20:55:44.000000000", + "2019-01-05T20:56:31.000000000", + "2019-01-05T20:58:14.000000000", + "2019-01-05T20:59:14.000000000", + "2019-01-05T20:59:32.000000000", + "2019-01-05T21:00:27.000000000", + "2019-01-05T21:00:58.000000000", + "2019-01-05T21:02:10.000000000", + "2019-01-05T21:02:54.000000000", + "2019-01-05T21:03:21.000000000", + "2019-01-05T21:03:32.000000000", + "2019-01-05T21:04:40.000000000", + "2019-01-05T21:05:02.000000000", + "2019-01-05T21:05:50.000000000", + "2019-01-05T21:06:37.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:09:19.000000000", + "2019-01-05T21:10:43.000000000", + "2019-01-05T21:11:34.000000000", + "2019-01-05T21:11:45.000000000", + "2019-01-05T21:13:02.000000000", + "2019-01-05T21:17:18.000000000", + "2019-01-05T21:18:23.000000000", + "2019-01-05T21:18:41.000000000", + "2019-01-05T21:20:50.000000000", + "2019-01-05T21:21:30.000000000", + "2019-01-05T21:22:38.000000000", + "2019-01-05T21:23:26.000000000", + "2019-01-05T21:24:39.000000000", + "2019-01-05T21:25:11.000000000", + "2019-01-05T21:26:13.000000000", + "2019-01-05T21:26:14.000000000", + "2019-01-05T21:27:12.000000000", + "2019-01-05T21:27:30.000000000", + "2019-01-05T21:27:34.000000000", + "2019-01-05T21:27:39.000000000", + "2019-01-05T21:27:53.000000000", + "2019-01-05T21:32:01.000000000", + "2019-01-05T21:32:19.000000000", + "2019-01-05T21:33:29.000000000", + "2019-01-05T21:34:30.000000000", + "2019-01-05T21:36:00.000000000", + "2019-01-05T21:36:56.000000000", + "2019-01-05T21:40:36.000000000", + "2019-01-05T21:43:36.000000000", + "2019-01-05T21:43:41.000000000", + "2019-01-05T21:45:29.000000000", + "2019-01-05T21:46:40.000000000", + "2019-01-05T21:47:28.000000000", + "2019-01-05T21:48:42.000000000", + "2019-01-05T21:49:24.000000000", + "2019-01-05T21:49:44.000000000", + "2019-01-05T21:51:35.000000000", + "2019-01-05T21:52:47.000000000", + "2019-01-05T21:53:08.000000000", + "2019-01-05T21:53:55.000000000", + "2019-01-05T21:58:22.000000000", + "2019-01-05T22:01:13.000000000", + "2019-01-05T22:01:39.000000000", + "2019-01-05T22:01:44.000000000", + "2019-01-05T22:02:40.000000000", + "2019-01-05T22:03:47.000000000", + "2019-01-05T22:04:06.000000000", + "2019-01-05T22:04:57.000000000", + "2019-01-05T22:06:30.000000000", + "2019-01-05T22:06:42.000000000", + "2019-01-05T22:06:59.000000000", + "2019-01-05T22:07:10.000000000", + "2019-01-05T22:07:35.000000000", + "2019-01-05T22:07:40.000000000", + "2019-01-05T22:08:20.000000000", + "2019-01-05T22:08:58.000000000", + "2019-01-05T22:09:18.000000000", + "2019-01-05T22:12:20.000000000", + "2019-01-05T22:14:19.000000000", + "2019-01-05T22:14:58.000000000", + "2019-01-05T22:16:38.000000000", + "2019-01-05T22:16:45.000000000", + "2019-01-05T22:18:17.000000000", + "2019-01-05T22:18:45.000000000", + "2019-01-05T22:19:30.000000000", + "2019-01-05T22:20:15.000000000", + "2019-01-05T22:20:45.000000000", + "2019-01-05T22:21:56.000000000", + "2019-01-05T22:22:20.000000000", + "2019-01-05T22:23:51.000000000", + "2019-01-05T22:24:13.000000000", + "2019-01-05T22:24:23.000000000", + "2019-01-05T22:24:35.000000000", + "2019-01-05T22:25:22.000000000", + "2019-01-05T22:26:00.000000000", + "2019-01-05T22:28:19.000000000", + "2019-01-05T22:29:12.000000000", + "2019-01-05T22:31:01.000000000", + "2019-01-05T22:33:48.000000000", + "2019-01-05T22:33:59.000000000", + "2019-01-05T22:35:28.000000000", + "2019-01-05T22:36:06.000000000", + "2019-01-05T22:37:19.000000000", + "2019-01-05T22:39:01.000000000", + "2019-01-05T22:39:38.000000000", + "2019-01-05T22:40:51.000000000", + "2019-01-05T22:41:18.000000000", + "2019-01-05T22:44:40.000000000", + "2019-01-05T22:45:43.000000000", + "2019-01-05T22:46:17.000000000", + "2019-01-05T22:47:06.000000000", + "2019-01-05T22:47:20.000000000", + "2019-01-05T22:47:37.000000000", + "2019-01-05T22:48:47.000000000", + "2019-01-05T22:51:38.000000000", + "2019-01-05T22:51:44.000000000", + "2019-01-05T22:51:47.000000000", + "2019-01-05T22:52:12.000000000", + "2019-01-05T22:53:12.000000000", + "2019-01-05T22:54:01.000000000", + "2019-01-05T22:54:38.000000000", + "2019-01-05T22:55:26.000000000", + "2019-01-05T22:56:09.000000000", + "2019-01-05T22:56:58.000000000", + "2019-01-05T23:00:25.000000000", + "2019-01-05T23:00:32.000000000", + "2019-01-05T23:00:45.000000000", + "2019-01-05T23:03:01.000000000", + "2019-01-05T23:04:36.000000000", + "2019-01-05T23:04:43.000000000", + "2019-01-05T23:05:07.000000000", + "2019-01-05T23:05:11.000000000", + "2019-01-05T23:05:50.000000000", + "2019-01-05T23:06:53.000000000", + "2019-01-05T23:12:28.000000000", + "2019-01-05T23:12:32.000000000", + "2019-01-05T23:13:17.000000000", + "2019-01-05T23:13:59.000000000", + "2019-01-05T23:18:13.000000000", + "2019-01-05T23:20:37.000000000", + "2019-01-05T23:20:43.000000000", + "2019-01-05T23:22:35.000000000", + "2019-01-05T23:23:02.000000000", + "2019-01-05T23:25:44.000000000", + "2019-01-05T23:26:21.000000000", + "2019-01-05T23:26:47.000000000", + "2019-01-05T23:28:32.000000000", + "2019-01-05T23:29:31.000000000", + "2019-01-05T23:30:07.000000000", + "2019-01-05T23:30:23.000000000", + "2019-01-05T23:33:50.000000000", + "2019-01-05T23:34:00.000000000", + "2019-01-05T23:34:06.000000000", + "2019-01-05T23:34:16.000000000", + "2019-01-05T23:35:16.000000000", + "2019-01-05T23:35:45.000000000", + "2019-01-05T23:35:58.000000000", + "2019-01-05T23:37:18.000000000", + "2019-01-05T23:37:26.000000000", + "2019-01-05T23:37:51.000000000", + "2019-01-05T23:38:29.000000000", + "2019-01-05T23:38:46.000000000", + "2019-01-05T23:38:54.000000000", + "2019-01-05T23:43:02.000000000", + "2019-01-05T23:44:12.000000000", + "2019-01-05T23:46:08.000000000", + "2019-01-05T23:46:26.000000000", + "2019-01-05T23:47:00.000000000", + "2019-01-05T23:47:30.000000000", + "2019-01-05T23:49:51.000000000", + "2019-01-05T23:50:12.000000000", + "2019-01-05T23:51:36.000000000", + "2019-01-05T23:51:45.000000000", + "2019-01-05T23:52:48.000000000", + "2019-01-05T23:53:02.000000000", + "2019-01-05T23:53:06.000000000", + "2019-01-05T23:53:58.000000000", + "2019-01-05T23:55:21.000000000", + "2019-01-05T23:55:42.000000000", + "2019-01-05T23:56:06.000000000", + "2019-01-05T23:56:31.000000000", + "2019-01-05T23:56:32.000000000", + "2019-01-05T23:57:49.000000000", + "2019-01-05T23:58:27.000000000", + "2019-01-06T00:00:34.000000000", + "2019-01-06T00:01:21.000000000", + "2019-01-06T00:02:09.000000000", + "2019-01-06T00:03:25.000000000", + "2019-01-06T00:03:29.000000000", + "2019-01-06T00:03:40.000000000", + "2019-01-06T00:03:48.000000000", + "2019-01-06T00:04:32.000000000", + "2019-01-06T00:06:14.000000000", + "2019-01-06T00:06:25.000000000", + "2019-01-06T00:06:51.000000000", + "2019-01-06T00:07:13.000000000", + "2019-01-06T00:09:22.000000000", + "2019-01-06T00:09:27.000000000", + "2019-01-06T00:09:50.000000000", + "2019-01-06T00:11:12.000000000", + "2019-01-06T00:12:35.000000000", + "2019-01-06T00:12:47.000000000", + "2019-01-06T00:13:20.000000000", + "2019-01-06T00:13:50.000000000", + "2019-01-06T00:15:37.000000000", + "2019-01-06T00:16:59.000000000", + "2019-01-06T00:17:00.000000000", + "2019-01-06T00:17:53.000000000", + "2019-01-06T00:18:47.000000000", + "2019-01-06T00:19:20.000000000", + "2019-01-06T00:23:06.000000000", + "2019-01-06T00:23:32.000000000", + "2019-01-06T00:23:49.000000000", + "2019-01-06T00:24:26.000000000", + "2019-01-06T00:24:47.000000000", + "2019-01-06T00:25:00.000000000", + "2019-01-06T00:25:32.000000000", + "2019-01-06T00:25:48.000000000", + "2019-01-06T00:26:10.000000000", + "2019-01-06T00:27:22.000000000", + "2019-01-06T00:28:27.000000000", + "2019-01-06T00:28:41.000000000", + "2019-01-06T00:28:45.000000000", + "2019-01-06T00:30:29.000000000", + "2019-01-06T00:30:43.000000000", + "2019-01-06T00:30:55.000000000", + "2019-01-06T00:31:25.000000000", + "2019-01-06T00:31:27.000000000", + "2019-01-06T00:32:39.000000000", + "2019-01-06T00:33:27.000000000", + "2019-01-06T00:35:40.000000000", + "2019-01-06T00:35:44.000000000", + "2019-01-06T00:37:48.000000000", + "2019-01-06T00:38:14.000000000", + "2019-01-06T00:39:23.000000000", + "2019-01-06T00:41:14.000000000", + "2019-01-06T00:42:34.000000000", + "2019-01-06T00:43:23.000000000", + "2019-01-06T00:43:33.000000000", + "2019-01-06T00:43:54.000000000", + "2019-01-06T00:43:55.000000000", + "2019-01-06T00:44:42.000000000", + "2019-01-06T00:46:13.000000000", + "2019-01-06T00:47:54.000000000", + "2019-01-06T00:48:28.000000000", + "2019-01-06T00:49:05.000000000", + "2019-01-06T00:50:08.000000000", + "2019-01-06T00:50:11.000000000", + "2019-01-06T00:50:49.000000000", + "2019-01-06T00:51:55.000000000", + "2019-01-06T00:53:08.000000000", + "2019-01-06T00:56:15.000000000", + "2019-01-06T00:56:26.000000000", + "2019-01-06T00:56:46.000000000", + "2019-01-06T01:01:57.000000000", + "2019-01-06T01:03:17.000000000", + "2019-01-06T01:03:23.000000000", + "2019-01-06T01:04:27.000000000", + "2019-01-06T01:04:36.000000000", + "2019-01-06T01:07:59.000000000", + "2019-01-06T01:08:12.000000000", + "2019-01-06T01:09:21.000000000", + "2019-01-06T01:09:31.000000000", + "2019-01-06T01:10:14.000000000", + "2019-01-06T01:10:17.000000000", + "2019-01-06T01:10:31.000000000", + "2019-01-06T01:11:36.000000000", + "2019-01-06T01:11:46.000000000", + "2019-01-06T01:13:27.000000000", + "2019-01-06T01:13:31.000000000", + "2019-01-06T01:15:01.000000000", + "2019-01-06T01:15:08.000000000", + "2019-01-06T01:15:26.000000000", + "2019-01-06T01:16:00.000000000", + "2019-01-06T01:16:20.000000000", + "2019-01-06T01:17:48.000000000", + "2019-01-06T01:18:03.000000000", + "2019-01-06T01:20:11.000000000", + "2019-01-06T01:21:08.000000000", + "2019-01-06T01:21:32.000000000", + "2019-01-06T01:22:04.000000000", + "2019-01-06T01:22:21.000000000", + "2019-01-06T01:22:53.000000000", + "2019-01-06T01:24:16.000000000", + "2019-01-06T01:25:09.000000000", + "2019-01-06T01:27:47.000000000", + "2019-01-06T01:28:41.000000000", + "2019-01-06T01:29:26.000000000", + "2019-01-06T01:29:45.000000000", + "2019-01-06T01:30:37.000000000", + "2019-01-06T01:33:37.000000000", + "2019-01-06T01:34:43.000000000", + "2019-01-06T01:35:38.000000000", + "2019-01-06T01:37:19.000000000", + "2019-01-06T01:37:55.000000000", + "2019-01-06T01:38:10.000000000", + "2019-01-06T01:39:50.000000000", + "2019-01-06T01:39:58.000000000", + "2019-01-06T01:40:26.000000000", + "2019-01-06T01:40:54.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:42:00.000000000", + "2019-01-06T01:44:13.000000000", + "2019-01-06T01:47:30.000000000", + "2019-01-06T01:48:09.000000000", + "2019-01-06T01:48:17.000000000", + "2019-01-06T01:48:57.000000000", + "2019-01-06T01:50:06.000000000", + "2019-01-06T01:50:54.000000000", + "2019-01-06T01:50:56.000000000", + "2019-01-06T01:51:09.000000000", + "2019-01-06T01:52:22.000000000", + "2019-01-06T01:52:33.000000000", + "2019-01-06T01:53:59.000000000", + "2019-01-06T01:55:03.000000000", + "2019-01-06T01:56:15.000000000", + "2019-01-06T01:56:39.000000000", + "2019-01-06T01:59:24.000000000", + "2019-01-06T02:01:57.000000000", + "2019-01-06T02:04:00.000000000", + "2019-01-06T02:04:01.000000000", + "2019-01-06T02:08:57.000000000", + "2019-01-06T02:10:03.000000000", + "2019-01-06T02:11:26.000000000", + "2019-01-06T02:12:35.000000000", + "2019-01-06T02:12:44.000000000", + "2019-01-06T02:13:49.000000000", + "2019-01-06T02:16:02.000000000", + "2019-01-06T02:16:14.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:16:29.000000000", + "2019-01-06T02:17:07.000000000", + "2019-01-06T02:17:08.000000000", + "2019-01-06T02:18:47.000000000", + "2019-01-06T02:20:53.000000000", + "2019-01-06T02:23:43.000000000", + "2019-01-06T02:26:07.000000000", + "2019-01-06T02:27:09.000000000", + "2019-01-06T02:28:36.000000000", + "2019-01-06T02:28:55.000000000", + "2019-01-06T02:30:10.000000000", + "2019-01-06T02:31:22.000000000", + "2019-01-06T02:33:14.000000000", + "2019-01-06T02:33:57.000000000", + "2019-01-06T02:35:31.000000000", + "2019-01-06T02:35:37.000000000", + "2019-01-06T02:36:52.000000000", + "2019-01-06T02:36:55.000000000", + "2019-01-06T02:37:09.000000000", + "2019-01-06T02:37:17.000000000", + "2019-01-06T02:38:06.000000000", + "2019-01-06T02:38:57.000000000", + "2019-01-06T02:40:03.000000000", + "2019-01-06T02:41:25.000000000", + "2019-01-06T02:42:02.000000000", + "2019-01-06T02:43:24.000000000", + "2019-01-06T02:43:42.000000000", + "2019-01-06T02:43:43.000000000", + "2019-01-06T02:44:05.000000000", + "2019-01-06T02:49:56.000000000", + "2019-01-06T02:52:20.000000000", + "2019-01-06T02:54:17.000000000", + "2019-01-06T02:56:03.000000000", + "2019-01-06T02:59:45.000000000", + "2019-01-06T03:00:42.000000000", + "2019-01-06T03:01:05.000000000", + "2019-01-06T03:02:26.000000000", + "2019-01-06T03:03:03.000000000", + "2019-01-06T03:05:28.000000000", + "2019-01-06T03:08:35.000000000", + "2019-01-06T03:09:25.000000000", + "2019-01-06T03:10:20.000000000", + "2019-01-06T03:11:00.000000000", + "2019-01-06T03:11:43.000000000", + "2019-01-06T03:13:29.000000000", + "2019-01-06T03:16:48.000000000", + "2019-01-06T03:16:49.000000000", + "2019-01-06T03:17:37.000000000", + "2019-01-06T03:17:39.000000000", + "2019-01-06T03:18:39.000000000", + "2019-01-06T03:18:46.000000000", + "2019-01-06T03:19:52.000000000", + "2019-01-06T03:20:08.000000000", + "2019-01-06T03:20:39.000000000", + "2019-01-06T03:20:56.000000000", + "2019-01-06T03:21:46.000000000", + "2019-01-06T03:22:48.000000000", + "2019-01-06T03:23:03.000000000", + "2019-01-06T03:24:16.000000000", + "2019-01-06T03:32:38.000000000", + "2019-01-06T03:34:06.000000000", + "2019-01-06T03:34:12.000000000", + "2019-01-06T03:34:25.000000000", + "2019-01-06T03:34:57.000000000", + "2019-01-06T03:37:39.000000000", + "2019-01-06T03:38:47.000000000", + "2019-01-06T03:39:10.000000000", + "2019-01-06T03:40:52.000000000", + "2019-01-06T03:43:35.000000000", + "2019-01-06T03:43:36.000000000", + "2019-01-06T03:44:20.000000000", + "2019-01-06T03:45:40.000000000", + "2019-01-06T03:47:29.000000000", + "2019-01-06T03:49:45.000000000", + "2019-01-06T03:50:32.000000000", + "2019-01-06T03:50:35.000000000", + "2019-01-06T03:51:56.000000000", + "2019-01-06T03:52:34.000000000", + "2019-01-06T03:54:05.000000000", + "2019-01-06T03:54:51.000000000", + "2019-01-06T03:55:31.000000000", + "2019-01-06T03:55:36.000000000", + "2019-01-06T03:58:55.000000000", + "2019-01-06T04:00:23.000000000", + "2019-01-06T04:00:33.000000000", + "2019-01-06T04:02:31.000000000", + "2019-01-06T04:02:40.000000000", + "2019-01-06T04:02:46.000000000", + "2019-01-06T04:03:30.000000000", + "2019-01-06T04:04:56.000000000", + "2019-01-06T04:06:19.000000000", + "2019-01-06T04:07:51.000000000", + "2019-01-06T04:08:22.000000000", + "2019-01-06T04:09:23.000000000", + "2019-01-06T04:10:00.000000000", + "2019-01-06T04:10:49.000000000", + "2019-01-06T04:10:57.000000000", + "2019-01-06T04:11:44.000000000", + "2019-01-06T04:11:58.000000000", + "2019-01-06T04:13:30.000000000", + "2019-01-06T04:13:37.000000000", + "2019-01-06T04:15:40.000000000", + "2019-01-06T04:17:24.000000000", + "2019-01-06T04:18:40.000000000", + "2019-01-06T04:19:16.000000000", + "2019-01-06T04:19:24.000000000", + "2019-01-06T04:20:18.000000000", + "2019-01-06T04:21:05.000000000", + "2019-01-06T04:21:06.000000000", + "2019-01-06T04:21:50.000000000", + "2019-01-06T04:22:21.000000000", + "2019-01-06T04:23:48.000000000", + "2019-01-06T04:25:23.000000000", + "2019-01-06T04:26:13.000000000", + "2019-01-06T04:27:00.000000000", + "2019-01-06T04:30:07.000000000", + "2019-01-06T04:30:48.000000000", + "2019-01-06T04:31:13.000000000", + "2019-01-06T04:32:47.000000000", + "2019-01-06T04:34:28.000000000", + "2019-01-06T04:34:29.000000000", + "2019-01-06T04:34:32.000000000", + "2019-01-06T04:35:00.000000000", + "2019-01-06T04:35:11.000000000", + "2019-01-06T04:36:03.000000000", + "2019-01-06T04:39:15.000000000", + "2019-01-06T04:41:29.000000000", + "2019-01-06T04:43:03.000000000", + "2019-01-06T04:43:25.000000000", + "2019-01-06T04:43:29.000000000", + "2019-01-06T04:43:36.000000000", + "2019-01-06T04:44:27.000000000", + "2019-01-06T04:45:27.000000000", + "2019-01-06T04:46:09.000000000", + "2019-01-06T04:49:21.000000000", + "2019-01-06T04:49:25.000000000", + "2019-01-06T04:53:14.000000000", + "2019-01-06T04:54:54.000000000", + "2019-01-06T04:55:02.000000000", + "2019-01-06T04:55:47.000000000", + "2019-01-06T04:55:57.000000000", + "2019-01-06T04:56:32.000000000", + "2019-01-06T04:57:26.000000000", + "2019-01-06T04:57:41.000000000", + "2019-01-06T04:58:06.000000000", + "2019-01-06T04:58:47.000000000", + "2019-01-06T04:59:15.000000000", + "2019-01-06T05:01:51.000000000", + "2019-01-06T05:01:52.000000000", + "2019-01-06T05:01:57.000000000", + "2019-01-06T05:02:36.000000000", + "2019-01-06T05:03:13.000000000", + "2019-01-06T05:05:18.000000000", + "2019-01-06T05:06:03.000000000", + "2019-01-06T05:07:09.000000000", + "2019-01-06T05:07:32.000000000", + "2019-01-06T05:08:38.000000000", + "2019-01-06T05:10:55.000000000", + "2019-01-06T05:11:02.000000000", + "2019-01-06T05:13:18.000000000", + "2019-01-06T05:15:21.000000000", + "2019-01-06T05:16:16.000000000", + "2019-01-06T05:17:42.000000000", + "2019-01-06T05:18:03.000000000", + "2019-01-06T05:18:39.000000000", + "2019-01-06T05:18:47.000000000", + "2019-01-06T05:23:03.000000000", + "2019-01-06T05:23:12.000000000", + "2019-01-06T05:23:29.000000000", + "2019-01-06T05:25:26.000000000", + "2019-01-06T05:25:38.000000000", + "2019-01-06T05:25:40.000000000", + "2019-01-06T05:26:42.000000000", + "2019-01-06T05:27:42.000000000", + "2019-01-06T05:28:12.000000000", + "2019-01-06T05:28:32.000000000", + "2019-01-06T05:28:37.000000000", + "2019-01-06T05:29:29.000000000", + "2019-01-06T05:31:31.000000000", + "2019-01-06T05:32:21.000000000", + "2019-01-06T05:32:33.000000000", + "2019-01-06T05:33:02.000000000", + "2019-01-06T05:33:29.000000000", + "2019-01-06T05:34:44.000000000", + "2019-01-06T05:36:11.000000000", + "2019-01-06T05:36:19.000000000", + "2019-01-06T05:38:07.000000000", + "2019-01-06T05:39:14.000000000", + "2019-01-06T05:40:21.000000000", + "2019-01-06T05:40:43.000000000", + "2019-01-06T05:41:01.000000000", + "2019-01-06T05:41:07.000000000", + "2019-01-06T05:42:16.000000000", + "2019-01-06T05:42:21.000000000", + "2019-01-06T05:42:24.000000000", + "2019-01-06T05:44:07.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:44:42.000000000", + "2019-01-06T05:45:51.000000000", + "2019-01-06T05:45:55.000000000", + "2019-01-06T05:46:03.000000000", + "2019-01-06T05:46:34.000000000", + "2019-01-06T05:48:18.000000000", + "2019-01-06T05:51:32.000000000", + "2019-01-06T05:51:38.000000000", + "2019-01-06T05:52:56.000000000", + "2019-01-06T05:52:57.000000000", + "2019-01-06T05:58:10.000000000", + "2019-01-06T06:00:07.000000000", + "2019-01-06T06:00:23.000000000", + "2019-01-06T06:01:43.000000000", + "2019-01-06T06:03:13.000000000", + "2019-01-06T06:04:27.000000000", + "2019-01-06T06:04:48.000000000", + "2019-01-06T06:06:53.000000000", + "2019-01-06T06:06:59.000000000", + "2019-01-06T06:09:01.000000000", + "2019-01-06T06:09:08.000000000", + "2019-01-06T06:09:36.000000000", + "2019-01-06T06:09:57.000000000", + "2019-01-06T06:10:15.000000000", + "2019-01-06T06:10:55.000000000", + "2019-01-06T06:11:50.000000000", + "2019-01-06T06:11:51.000000000", + "2019-01-06T06:13:35.000000000", + "2019-01-06T06:14:18.000000000", + "2019-01-06T06:14:31.000000000", + "2019-01-06T06:15:52.000000000", + "2019-01-06T06:16:01.000000000", + "2019-01-06T06:16:45.000000000", + "2019-01-06T06:16:46.000000000", + "2019-01-06T06:18:12.000000000", + "2019-01-06T06:20:38.000000000", + "2019-01-06T06:20:40.000000000", + "2019-01-06T06:23:10.000000000", + "2019-01-06T06:23:47.000000000", + "2019-01-06T06:26:26.000000000", + "2019-01-06T06:28:01.000000000", + "2019-01-06T06:28:31.000000000", + "2019-01-06T06:28:51.000000000", + "2019-01-06T06:33:35.000000000", + "2019-01-06T06:34:39.000000000", + "2019-01-06T06:36:56.000000000", + "2019-01-06T06:37:47.000000000", + "2019-01-06T06:39:50.000000000", + "2019-01-06T06:40:14.000000000", + "2019-01-06T06:40:42.000000000", + "2019-01-06T06:41:01.000000000", + "2019-01-06T06:41:11.000000000", + "2019-01-06T06:41:20.000000000", + "2019-01-06T06:41:21.000000000", + "2019-01-06T06:41:32.000000000", + "2019-01-06T06:41:47.000000000", + "2019-01-06T06:42:03.000000000", + "2019-01-06T06:42:12.000000000", + "2019-01-06T06:45:14.000000000", + "2019-01-06T06:48:30.000000000", + "2019-01-06T06:49:57.000000000", + "2019-01-06T06:53:02.000000000", + "2019-01-06T06:53:28.000000000", + "2019-01-06T06:54:04.000000000", + "2019-01-06T06:54:16.000000000", + "2019-01-06T06:54:20.000000000", + "2019-01-06T06:57:05.000000000", + "2019-01-06T06:57:27.000000000", + "2019-01-06T06:58:31.000000000", + "2019-01-06T06:59:07.000000000", + "2019-01-06T06:59:41.000000000", + "2019-01-06T06:59:48.000000000", + "2019-01-06T07:01:23.000000000", + "2019-01-06T07:01:40.000000000", + "2019-01-06T07:01:51.000000000", + "2019-01-06T07:04:27.000000000", + "2019-01-06T07:04:57.000000000", + "2019-01-06T07:05:29.000000000", + "2019-01-06T07:05:41.000000000", + "2019-01-06T07:06:51.000000000", + "2019-01-06T07:07:57.000000000", + "2019-01-06T07:10:19.000000000", + "2019-01-06T07:12:05.000000000", + "2019-01-06T07:13:26.000000000", + "2019-01-06T07:14:30.000000000", + "2019-01-06T07:15:16.000000000", + "2019-01-06T07:15:53.000000000", + "2019-01-06T07:21:29.000000000", + "2019-01-06T07:22:36.000000000", + "2019-01-06T07:22:43.000000000", + "2019-01-06T07:23:03.000000000", + "2019-01-06T07:24:49.000000000", + "2019-01-06T07:24:59.000000000", + "2019-01-06T07:25:01.000000000", + "2019-01-06T07:25:23.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:26:51.000000000", + "2019-01-06T07:27:30.000000000", + "2019-01-06T07:27:33.000000000", + "2019-01-06T07:27:54.000000000", + "2019-01-06T07:28:11.000000000", + "2019-01-06T07:28:48.000000000", + "2019-01-06T07:29:59.000000000", + "2019-01-06T07:30:10.000000000", + "2019-01-06T07:30:16.000000000", + "2019-01-06T07:30:29.000000000", + "2019-01-06T07:32:12.000000000", + "2019-01-06T07:34:01.000000000", + "2019-01-06T07:37:25.000000000", + "2019-01-06T07:39:11.000000000", + "2019-01-06T07:40:38.000000000", + "2019-01-06T07:40:44.000000000", + "2019-01-06T07:43:16.000000000", + "2019-01-06T07:45:34.000000000", + "2019-01-06T07:46:29.000000000", + "2019-01-06T07:47:04.000000000", + "2019-01-06T07:47:06.000000000", + "2019-01-06T07:48:21.000000000", + "2019-01-06T07:49:06.000000000", + "2019-01-06T07:50:03.000000000", + "2019-01-06T07:51:08.000000000", + "2019-01-06T07:53:50.000000000", + "2019-01-06T07:53:51.000000000", + "2019-01-06T07:54:20.000000000", + "2019-01-06T07:54:23.000000000", + "2019-01-06T07:54:37.000000000", + "2019-01-06T07:56:28.000000000", + "2019-01-06T07:57:27.000000000", + "2019-01-06T07:57:51.000000000", + "2019-01-06T07:59:36.000000000", + "2019-01-06T08:02:08.000000000", + "2019-01-06T08:02:22.000000000", + "2019-01-06T08:02:50.000000000", + "2019-01-06T08:03:16.000000000", + "2019-01-06T08:04:29.000000000", + "2019-01-06T08:05:26.000000000", + "2019-01-06T08:05:27.000000000", + "2019-01-06T08:06:43.000000000", + "2019-01-06T08:08:05.000000000", + "2019-01-06T08:10:14.000000000", + "2019-01-06T08:10:31.000000000", + "2019-01-06T08:11:11.000000000", + "2019-01-06T08:11:17.000000000", + "2019-01-06T08:12:55.000000000", + "2019-01-06T08:12:57.000000000", + "2019-01-06T08:14:17.000000000", + "2019-01-06T08:15:24.000000000", + "2019-01-06T08:16:43.000000000", + "2019-01-06T08:16:45.000000000", + "2019-01-06T08:17:14.000000000", + "2019-01-06T08:18:21.000000000", + "2019-01-06T08:20:02.000000000", + "2019-01-06T08:21:40.000000000", + "2019-01-06T08:22:10.000000000", + "2019-01-06T08:23:24.000000000", + "2019-01-06T08:23:30.000000000", + "2019-01-06T08:26:43.000000000", + "2019-01-06T08:27:56.000000000", + "2019-01-06T08:28:26.000000000", + "2019-01-06T08:28:58.000000000", + "2019-01-06T08:30:57.000000000", + "2019-01-06T08:32:27.000000000", + "2019-01-06T08:33:59.000000000", + "2019-01-06T08:34:03.000000000", + "2019-01-06T08:35:05.000000000", + "2019-01-06T08:35:57.000000000", + "2019-01-06T08:36:06.000000000", + "2019-01-06T08:36:51.000000000", + "2019-01-06T08:36:59.000000000", + "2019-01-06T08:37:16.000000000", + "2019-01-06T08:37:35.000000000", + "2019-01-06T08:37:39.000000000", + "2019-01-06T08:40:10.000000000", + "2019-01-06T08:40:30.000000000", + "2019-01-06T08:40:40.000000000", + "2019-01-06T08:41:25.000000000", + "2019-01-06T08:41:54.000000000", + "2019-01-06T08:42:44.000000000", + "2019-01-06T08:43:44.000000000", + "2019-01-06T08:44:43.000000000", + "2019-01-06T08:45:59.000000000", + "2019-01-06T08:47:29.000000000", + "2019-01-06T08:47:30.000000000", + "2019-01-06T08:48:07.000000000", + "2019-01-06T08:48:41.000000000", + "2019-01-06T08:51:35.000000000", + "2019-01-06T08:52:37.000000000", + "2019-01-06T08:52:49.000000000", + "2019-01-06T08:53:43.000000000", + "2019-01-06T08:55:13.000000000", + "2019-01-06T08:58:04.000000000", + "2019-01-06T08:58:07.000000000", + "2019-01-06T08:58:20.000000000", + "2019-01-06T09:00:14.000000000", + "2019-01-06T09:00:29.000000000", + "2019-01-06T09:03:40.000000000", + "2019-01-06T09:04:17.000000000", + "2019-01-06T09:04:20.000000000", + "2019-01-06T09:05:51.000000000", + "2019-01-06T09:10:38.000000000", + "2019-01-06T09:10:53.000000000", + "2019-01-06T09:13:27.000000000", + "2019-01-06T09:14:55.000000000", + "2019-01-06T09:15:33.000000000", + "2019-01-06T09:15:49.000000000", + "2019-01-06T09:16:05.000000000", + "2019-01-06T09:17:03.000000000", + "2019-01-06T09:17:13.000000000", + "2019-01-06T09:18:30.000000000", + "2019-01-06T09:18:38.000000000", + "2019-01-06T09:19:58.000000000", + "2019-01-06T09:21:05.000000000", + "2019-01-06T09:21:20.000000000", + "2019-01-06T09:22:09.000000000", + "2019-01-06T09:24:15.000000000", + "2019-01-06T09:25:13.000000000", + "2019-01-06T09:25:15.000000000", + "2019-01-06T09:25:42.000000000", + "2019-01-06T09:27:01.000000000", + "2019-01-06T09:28:04.000000000", + "2019-01-06T09:28:47.000000000", + "2019-01-06T09:29:14.000000000", + "2019-01-06T09:31:17.000000000", + "2019-01-06T09:31:49.000000000", + "2019-01-06T09:32:17.000000000", + "2019-01-06T09:32:26.000000000", + "2019-01-06T09:32:51.000000000", + "2019-01-06T09:33:00.000000000", + "2019-01-06T09:34:14.000000000", + "2019-01-06T09:36:00.000000000", + "2019-01-06T09:36:03.000000000", + "2019-01-06T09:36:09.000000000", + "2019-01-06T09:36:58.000000000", + "2019-01-06T09:37:11.000000000", + "2019-01-06T09:39:53.000000000", + "2019-01-06T09:40:16.000000000", + "2019-01-06T09:44:35.000000000", + "2019-01-06T09:46:10.000000000", + "2019-01-06T09:46:57.000000000", + "2019-01-06T09:47:47.000000000", + "2019-01-06T09:48:41.000000000", + "2019-01-06T09:49:27.000000000", + "2019-01-06T09:50:52.000000000", + "2019-01-06T09:51:49.000000000", + "2019-01-06T09:53:50.000000000", + "2019-01-06T09:54:07.000000000", + "2019-01-06T09:55:47.000000000", + "2019-01-06T09:55:55.000000000", + "2019-01-06T09:55:56.000000000", + "2019-01-06T09:57:10.000000000", + "2019-01-06T09:57:34.000000000", + "2019-01-06T09:59:24.000000000", + "2019-01-06T10:01:45.000000000", + "2019-01-06T10:04:47.000000000", + "2019-01-06T10:04:57.000000000", + "2019-01-06T10:05:07.000000000", + "2019-01-06T10:05:49.000000000", + "2019-01-06T10:08:40.000000000", + "2019-01-06T10:10:03.000000000", + "2019-01-06T10:10:56.000000000", + "2019-01-06T10:14:24.000000000", + "2019-01-06T10:14:38.000000000", + "2019-01-06T10:14:58.000000000", + "2019-01-06T10:16:39.000000000", + "2019-01-06T10:16:51.000000000", + "2019-01-06T10:17:36.000000000", + "2019-01-06T10:18:26.000000000", + "2019-01-06T10:19:34.000000000", + "2019-01-06T10:21:41.000000000", + "2019-01-06T10:22:49.000000000", + "2019-01-06T10:23:12.000000000", + "2019-01-06T10:28:55.000000000", + "2019-01-06T10:29:10.000000000", + "2019-01-06T10:29:15.000000000", + "2019-01-06T10:29:36.000000000", + "2019-01-06T10:30:03.000000000", + "2019-01-06T10:31:19.000000000", + "2019-01-06T10:31:20.000000000", + "2019-01-06T10:31:49.000000000", + "2019-01-06T10:32:32.000000000", + "2019-01-06T10:32:42.000000000", + "2019-01-06T10:33:32.000000000", + "2019-01-06T10:34:07.000000000", + "2019-01-06T10:37:25.000000000", + "2019-01-06T10:39:40.000000000", + "2019-01-06T10:41:24.000000000", + "2019-01-06T10:41:31.000000000", + "2019-01-06T10:41:35.000000000", + "2019-01-06T10:42:56.000000000", + "2019-01-06T10:43:06.000000000", + "2019-01-06T10:43:09.000000000", + "2019-01-06T10:43:28.000000000", + "2019-01-06T10:45:19.000000000", + "2019-01-06T10:45:59.000000000", + "2019-01-06T10:46:08.000000000", + "2019-01-06T10:47:43.000000000", + "2019-01-06T10:48:19.000000000", + "2019-01-06T10:48:23.000000000", + "2019-01-06T10:48:25.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:48:44.000000000", + "2019-01-06T10:49:31.000000000", + "2019-01-06T10:49:53.000000000", + "2019-01-06T10:50:38.000000000", + "2019-01-06T10:52:14.000000000", + "2019-01-06T10:53:35.000000000", + "2019-01-06T10:54:07.000000000", + "2019-01-06T10:55:18.000000000", + "2019-01-06T10:55:47.000000000", + "2019-01-06T10:57:33.000000000", + "2019-01-06T10:59:23.000000000", + "2019-01-06T11:01:11.000000000", + "2019-01-06T11:01:52.000000000", + "2019-01-06T11:02:00.000000000", + "2019-01-06T11:04:19.000000000", + "2019-01-06T11:04:25.000000000", + "2019-01-06T11:05:40.000000000", + "2019-01-06T11:06:23.000000000", + "2019-01-06T11:06:29.000000000", + "2019-01-06T11:07:45.000000000", + "2019-01-06T11:08:38.000000000", + "2019-01-06T11:08:51.000000000", + "2019-01-06T11:08:57.000000000", + "2019-01-06T11:09:34.000000000", + "2019-01-06T11:09:58.000000000", + "2019-01-06T11:10:29.000000000", + "2019-01-06T11:11:08.000000000", + "2019-01-06T11:11:48.000000000", + "2019-01-06T11:13:56.000000000", + "2019-01-06T11:14:15.000000000", + "2019-01-06T11:15:11.000000000", + "2019-01-06T11:15:35.000000000", + "2019-01-06T11:16:16.000000000", + "2019-01-06T11:16:45.000000000", + "2019-01-06T11:16:57.000000000", + "2019-01-06T11:20:00.000000000", + "2019-01-06T11:22:47.000000000", + "2019-01-06T11:23:37.000000000", + "2019-01-06T11:26:02.000000000", + "2019-01-06T11:27:31.000000000", + "2019-01-06T11:27:40.000000000", + "2019-01-06T11:28:40.000000000", + "2019-01-06T11:29:47.000000000", + "2019-01-06T11:30:38.000000000", + "2019-01-06T11:32:02.000000000", + "2019-01-06T11:32:46.000000000", + "2019-01-06T11:33:28.000000000", + "2019-01-06T11:35:03.000000000", + "2019-01-06T11:35:53.000000000", + "2019-01-06T11:36:38.000000000", + "2019-01-06T11:37:47.000000000", + "2019-01-06T11:37:56.000000000", + "2019-01-06T11:39:06.000000000", + "2019-01-06T11:39:18.000000000", + "2019-01-06T11:39:19.000000000", + "2019-01-06T11:40:56.000000000", + "2019-01-06T11:42:24.000000000", + "2019-01-06T11:42:26.000000000", + "2019-01-06T11:44:20.000000000", + "2019-01-06T11:44:43.000000000", + "2019-01-06T11:45:30.000000000", + "2019-01-06T11:45:39.000000000", + "2019-01-06T11:46:23.000000000", + "2019-01-06T11:49:02.000000000", + "2019-01-06T11:49:24.000000000", + "2019-01-06T11:49:43.000000000", + "2019-01-06T11:50:36.000000000", + "2019-01-06T11:50:46.000000000", + "2019-01-06T11:50:57.000000000", + "2019-01-06T11:52:50.000000000", + "2019-01-06T11:55:45.000000000", + "2019-01-06T11:55:47.000000000", + "2019-01-06T11:56:22.000000000", + "2019-01-06T11:57:22.000000000", + "2019-01-06T11:58:31.000000000", + "2019-01-06T11:59:05.000000000", + "2019-01-06T11:59:07.000000000", + "2019-01-06T12:00:05.000000000", + "2019-01-06T12:04:08.000000000", + "2019-01-06T12:04:16.000000000", + "2019-01-06T12:06:13.000000000", + "2019-01-06T12:06:59.000000000", + "2019-01-06T12:08:28.000000000", + "2019-01-06T12:08:47.000000000", + "2019-01-06T12:09:29.000000000", + "2019-01-06T12:14:58.000000000", + "2019-01-06T12:16:33.000000000", + "2019-01-06T12:16:42.000000000", + "2019-01-06T12:16:43.000000000", + "2019-01-06T12:19:03.000000000", + "2019-01-06T12:21:35.000000000", + "2019-01-06T12:21:58.000000000", + "2019-01-06T12:22:55.000000000", + "2019-01-06T12:24:43.000000000", + "2019-01-06T12:25:39.000000000", + "2019-01-06T12:25:50.000000000", + "2019-01-06T12:26:55.000000000", + "2019-01-06T12:27:15.000000000", + "2019-01-06T12:30:08.000000000", + "2019-01-06T12:30:18.000000000", + "2019-01-06T12:30:45.000000000", + "2019-01-06T12:31:47.000000000", + "2019-01-06T12:32:01.000000000", + "2019-01-06T12:33:11.000000000", + "2019-01-06T12:36:11.000000000", + "2019-01-06T12:38:51.000000000", + "2019-01-06T12:39:45.000000000", + "2019-01-06T12:42:47.000000000", + "2019-01-06T12:43:10.000000000", + "2019-01-06T12:46:58.000000000", + "2019-01-06T12:47:05.000000000", + "2019-01-06T12:48:22.000000000", + "2019-01-06T12:48:24.000000000", + "2019-01-06T12:49:18.000000000", + "2019-01-06T12:49:39.000000000", + "2019-01-06T12:50:34.000000000", + "2019-01-06T12:50:39.000000000", + "2019-01-06T12:50:44.000000000", + "2019-01-06T12:50:52.000000000", + "2019-01-06T12:51:49.000000000", + "2019-01-06T12:55:18.000000000", + "2019-01-06T12:55:46.000000000", + "2019-01-06T12:57:08.000000000", + "2019-01-06T12:57:40.000000000", + "2019-01-06T12:59:34.000000000", + "2019-01-06T13:00:51.000000000", + "2019-01-06T13:01:27.000000000", + "2019-01-06T13:01:29.000000000", + "2019-01-06T13:03:22.000000000", + "2019-01-06T13:04:14.000000000", + "2019-01-06T13:04:36.000000000", + "2019-01-06T13:04:44.000000000", + "2019-01-06T13:04:52.000000000", + "2019-01-06T13:06:42.000000000", + "2019-01-06T13:07:07.000000000", + "2019-01-06T13:07:54.000000000", + "2019-01-06T13:11:23.000000000", + "2019-01-06T13:12:08.000000000", + "2019-01-06T13:12:16.000000000", + "2019-01-06T13:16:26.000000000", + "2019-01-06T13:16:54.000000000", + "2019-01-06T13:19:22.000000000", + "2019-01-06T13:19:56.000000000", + "2019-01-06T13:20:46.000000000", + "2019-01-06T13:21:18.000000000", + "2019-01-06T13:21:43.000000000", + "2019-01-06T13:23:13.000000000", + "2019-01-06T13:24:21.000000000", + "2019-01-06T13:27:12.000000000", + "2019-01-06T13:28:24.000000000", + "2019-01-06T13:29:14.000000000", + "2019-01-06T13:32:22.000000000", + "2019-01-06T13:32:57.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:33:10.000000000", + "2019-01-06T13:34:04.000000000", + "2019-01-06T13:34:50.000000000", + "2019-01-06T13:36:48.000000000", + "2019-01-06T13:36:59.000000000", + "2019-01-06T13:39:07.000000000", + "2019-01-06T13:39:15.000000000", + "2019-01-06T13:40:00.000000000", + "2019-01-06T13:40:06.000000000", + "2019-01-06T13:41:45.000000000", + "2019-01-06T13:44:04.000000000", + "2019-01-06T13:44:18.000000000", + "2019-01-06T13:44:32.000000000", + "2019-01-06T13:47:32.000000000", + "2019-01-06T13:48:08.000000000", + "2019-01-06T13:49:21.000000000", + "2019-01-06T13:50:23.000000000", + "2019-01-06T13:53:42.000000000", + "2019-01-06T13:54:29.000000000", + "2019-01-06T13:54:55.000000000", + "2019-01-06T13:55:57.000000000", + "2019-01-06T13:58:20.000000000", + "2019-01-06T13:58:55.000000000", + "2019-01-06T13:58:57.000000000", + "2019-01-06T13:59:54.000000000", + "2019-01-06T13:59:57.000000000", + "2019-01-06T13:59:58.000000000", + "2019-01-06T14:00:22.000000000", + "2019-01-06T14:01:20.000000000", + "2019-01-06T14:02:32.000000000", + "2019-01-06T14:03:52.000000000", + "2019-01-06T14:04:38.000000000", + "2019-01-06T14:05:46.000000000", + "2019-01-06T14:06:29.000000000", + "2019-01-06T14:07:14.000000000", + "2019-01-06T14:08:17.000000000", + "2019-01-06T14:08:25.000000000", + "2019-01-06T14:09:00.000000000", + "2019-01-06T14:11:10.000000000", + "2019-01-06T14:11:30.000000000", + "2019-01-06T14:11:54.000000000", + "2019-01-06T14:13:08.000000000", + "2019-01-06T14:13:11.000000000", + "2019-01-06T14:14:12.000000000", + "2019-01-06T14:14:48.000000000", + "2019-01-06T14:15:30.000000000", + "2019-01-06T14:16:08.000000000", + "2019-01-06T14:16:46.000000000", + "2019-01-06T14:16:49.000000000", + "2019-01-06T14:17:19.000000000", + "2019-01-06T14:17:48.000000000", + "2019-01-06T14:18:44.000000000", + "2019-01-06T14:18:49.000000000", + "2019-01-06T14:21:20.000000000", + "2019-01-06T14:23:29.000000000", + "2019-01-06T14:23:55.000000000", + "2019-01-06T14:24:00.000000000", + "2019-01-06T14:24:12.000000000", + "2019-01-06T14:24:24.000000000", + "2019-01-06T14:25:34.000000000", + "2019-01-06T14:26:51.000000000", + "2019-01-06T14:30:03.000000000", + "2019-01-06T14:30:32.000000000", + "2019-01-06T14:31:10.000000000", + "2019-01-06T14:31:18.000000000", + "2019-01-06T14:32:35.000000000", + "2019-01-06T14:32:46.000000000", + "2019-01-06T14:34:58.000000000", + "2019-01-06T14:36:31.000000000", + "2019-01-06T14:37:32.000000000", + "2019-01-06T14:38:10.000000000", + "2019-01-06T14:39:15.000000000", + "2019-01-06T14:39:57.000000000", + "2019-01-06T14:40:38.000000000", + "2019-01-06T14:41:09.000000000", + "2019-01-06T14:41:16.000000000", + "2019-01-06T14:42:20.000000000", + "2019-01-06T14:42:33.000000000", + "2019-01-06T14:43:02.000000000", + "2019-01-06T14:43:03.000000000", + "2019-01-06T14:43:07.000000000", + "2019-01-06T14:43:15.000000000", + "2019-01-06T14:44:04.000000000", + "2019-01-06T14:44:23.000000000", + "2019-01-06T14:44:42.000000000", + "2019-01-06T14:45:35.000000000", + "2019-01-06T14:45:39.000000000", + "2019-01-06T14:48:22.000000000", + "2019-01-06T14:48:49.000000000", + "2019-01-06T14:49:09.000000000", + "2019-01-06T14:50:16.000000000", + "2019-01-06T14:50:37.000000000", + "2019-01-06T14:52:00.000000000", + "2019-01-06T14:55:19.000000000", + "2019-01-06T14:57:04.000000000", + "2019-01-06T14:57:10.000000000", + "2019-01-06T14:57:18.000000000", + "2019-01-06T14:57:21.000000000", + "2019-01-06T14:57:30.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:01.000000000", + "2019-01-06T14:58:16.000000000", + "2019-01-06T14:58:27.000000000", + "2019-01-06T14:59:58.000000000", + "2019-01-06T15:00:04.000000000", + "2019-01-06T15:00:53.000000000", + "2019-01-06T15:01:33.000000000", + "2019-01-06T15:01:48.000000000", + "2019-01-06T15:02:30.000000000", + "2019-01-06T15:04:10.000000000", + "2019-01-06T15:04:36.000000000", + "2019-01-06T15:06:16.000000000", + "2019-01-06T15:07:47.000000000", + "2019-01-06T15:09:11.000000000", + "2019-01-06T15:09:26.000000000", + "2019-01-06T15:10:14.000000000", + "2019-01-06T15:10:38.000000000", + "2019-01-06T15:10:42.000000000", + "2019-01-06T15:12:02.000000000", + "2019-01-06T15:13:23.000000000", + "2019-01-06T15:13:38.000000000", + "2019-01-06T15:13:44.000000000", + "2019-01-06T15:14:43.000000000", + "2019-01-06T15:19:07.000000000", + "2019-01-06T15:19:36.000000000", + "2019-01-06T15:19:52.000000000", + "2019-01-06T15:20:29.000000000", + "2019-01-06T15:20:44.000000000", + "2019-01-06T15:22:27.000000000", + "2019-01-06T15:23:21.000000000", + "2019-01-06T15:23:46.000000000", + "2019-01-06T15:23:50.000000000", + "2019-01-06T15:25:37.000000000", + "2019-01-06T15:27:17.000000000", + "2019-01-06T15:27:33.000000000", + "2019-01-06T15:27:55.000000000", + "2019-01-06T15:29:07.000000000", + "2019-01-06T15:29:37.000000000", + "2019-01-06T15:29:45.000000000", + "2019-01-06T15:31:25.000000000", + "2019-01-06T15:32:07.000000000", + "2019-01-06T15:32:17.000000000", + "2019-01-06T15:33:24.000000000", + "2019-01-06T15:33:55.000000000", + "2019-01-06T15:35:15.000000000", + "2019-01-06T15:36:01.000000000", + "2019-01-06T15:37:20.000000000", + "2019-01-06T15:38:09.000000000", + "2019-01-06T15:40:53.000000000", + "2019-01-06T15:43:12.000000000", + "2019-01-06T15:44:40.000000000", + "2019-01-06T15:45:36.000000000", + "2019-01-06T15:45:57.000000000", + "2019-01-06T15:46:25.000000000", + "2019-01-06T15:46:44.000000000", + "2019-01-06T15:51:41.000000000", + "2019-01-06T15:53:26.000000000", + "2019-01-06T15:54:02.000000000", + "2019-01-06T15:55:59.000000000", + "2019-01-06T15:59:08.000000000", + "2019-01-06T16:01:01.000000000", + "2019-01-06T16:01:25.000000000", + "2019-01-06T16:01:37.000000000", + "2019-01-06T16:01:50.000000000", + "2019-01-06T16:02:36.000000000", + "2019-01-06T16:03:13.000000000", + "2019-01-06T16:03:25.000000000", + "2019-01-06T16:04:05.000000000", + "2019-01-06T16:05:39.000000000", + "2019-01-06T16:05:56.000000000", + "2019-01-06T16:07:49.000000000", + "2019-01-06T16:08:16.000000000", + "2019-01-06T16:09:31.000000000", + "2019-01-06T16:09:36.000000000", + "2019-01-06T16:09:49.000000000", + "2019-01-06T16:12:34.000000000", + "2019-01-06T16:13:38.000000000", + "2019-01-06T16:13:57.000000000", + "2019-01-06T16:17:21.000000000", + "2019-01-06T16:18:07.000000000", + "2019-01-06T16:18:27.000000000", + "2019-01-06T16:21:14.000000000", + "2019-01-06T16:22:43.000000000", + "2019-01-06T16:22:52.000000000", + "2019-01-06T16:23:18.000000000", + "2019-01-06T16:26:36.000000000", + "2019-01-06T16:26:45.000000000", + "2019-01-06T16:27:26.000000000", + "2019-01-06T16:27:34.000000000", + "2019-01-06T16:27:43.000000000", + "2019-01-06T16:29:06.000000000", + "2019-01-06T16:31:33.000000000", + "2019-01-06T16:31:34.000000000", + "2019-01-06T16:32:58.000000000", + "2019-01-06T16:33:43.000000000", + "2019-01-06T16:35:02.000000000", + "2019-01-06T16:35:13.000000000", + "2019-01-06T16:35:55.000000000", + "2019-01-06T16:40:13.000000000", + "2019-01-06T16:40:19.000000000", + "2019-01-06T16:41:38.000000000", + "2019-01-06T16:44:18.000000000", + "2019-01-06T16:44:20.000000000", + "2019-01-06T16:45:49.000000000", + "2019-01-06T16:46:28.000000000", + "2019-01-06T16:46:58.000000000", + "2019-01-06T16:48:43.000000000", + "2019-01-06T16:48:56.000000000", + "2019-01-06T16:49:00.000000000", + "2019-01-06T16:51:03.000000000", + "2019-01-06T16:52:19.000000000", + "2019-01-06T16:53:26.000000000", + "2019-01-06T16:56:38.000000000", + "2019-01-06T16:57:17.000000000", + "2019-01-06T16:58:00.000000000", + "2019-01-06T16:58:54.000000000", + "2019-01-06T16:59:33.000000000", + "2019-01-06T17:00:12.000000000", + "2019-01-06T17:00:46.000000000", + "2019-01-06T17:02:01.000000000", + "2019-01-06T17:04:00.000000000", + "2019-01-06T17:04:02.000000000", + "2019-01-06T17:08:10.000000000", + "2019-01-06T17:08:48.000000000", + "2019-01-06T17:08:56.000000000", + "2019-01-06T17:10:38.000000000", + "2019-01-06T17:10:43.000000000", + "2019-01-06T17:11:52.000000000", + "2019-01-06T17:15:14.000000000", + "2019-01-06T17:15:22.000000000", + "2019-01-06T17:17:34.000000000", + "2019-01-06T17:21:05.000000000", + "2019-01-06T17:21:29.000000000", + "2019-01-06T17:21:38.000000000", + "2019-01-06T17:22:02.000000000", + "2019-01-06T17:26:16.000000000", + "2019-01-06T17:27:19.000000000", + "2019-01-06T17:28:44.000000000", + "2019-01-06T17:29:20.000000000", + "2019-01-06T17:29:34.000000000", + "2019-01-06T17:30:44.000000000", + "2019-01-06T17:32:54.000000000", + "2019-01-06T17:33:03.000000000", + "2019-01-06T17:33:38.000000000", + "2019-01-06T17:34:38.000000000", + "2019-01-06T17:34:57.000000000", + "2019-01-06T17:35:06.000000000", + "2019-01-06T17:35:25.000000000", + "2019-01-06T17:36:19.000000000", + "2019-01-06T17:38:48.000000000", + "2019-01-06T17:40:49.000000000", + "2019-01-06T17:43:31.000000000", + "2019-01-06T17:44:13.000000000", + "2019-01-06T17:45:53.000000000", + "2019-01-06T17:45:55.000000000", + "2019-01-06T17:45:59.000000000", + "2019-01-06T17:46:30.000000000", + "2019-01-06T17:48:13.000000000", + "2019-01-06T17:48:25.000000000", + "2019-01-06T17:48:59.000000000", + "2019-01-06T17:50:38.000000000", + "2019-01-06T17:51:05.000000000", + "2019-01-06T17:52:31.000000000", + "2019-01-06T17:54:52.000000000", + "2019-01-06T17:55:26.000000000", + "2019-01-06T17:55:30.000000000", + "2019-01-06T17:55:36.000000000", + "2019-01-06T17:56:34.000000000", + "2019-01-06T17:57:40.000000000", + "2019-01-06T17:59:30.000000000", + "2019-01-06T18:03:15.000000000", + "2019-01-06T18:03:18.000000000", + "2019-01-06T18:03:57.000000000", + "2019-01-06T18:04:04.000000000", + "2019-01-06T18:04:34.000000000", + "2019-01-06T18:04:45.000000000", + "2019-01-06T18:05:17.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:05:25.000000000", + "2019-01-06T18:07:37.000000000", + "2019-01-06T18:08:10.000000000", + "2019-01-06T18:11:09.000000000", + "2019-01-06T18:11:23.000000000", + "2019-01-06T18:11:29.000000000", + "2019-01-06T18:13:50.000000000", + "2019-01-06T18:14:05.000000000", + "2019-01-06T18:14:48.000000000", + "2019-01-06T18:14:58.000000000", + "2019-01-06T18:15:08.000000000", + "2019-01-06T18:15:34.000000000", + "2019-01-06T18:15:38.000000000", + "2019-01-06T18:16:37.000000000", + "2019-01-06T18:17:11.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:18:01.000000000", + "2019-01-06T18:19:12.000000000", + "2019-01-06T18:19:50.000000000", + "2019-01-06T18:20:33.000000000", + "2019-01-06T18:21:23.000000000", + "2019-01-06T18:23:26.000000000", + "2019-01-06T18:23:29.000000000", + "2019-01-06T18:23:37.000000000", + "2019-01-06T18:25:51.000000000", + "2019-01-06T18:28:01.000000000", + "2019-01-06T18:29:35.000000000", + "2019-01-06T18:30:06.000000000", + "2019-01-06T18:30:36.000000000", + "2019-01-06T18:31:39.000000000", + "2019-01-06T18:32:48.000000000", + "2019-01-06T18:34:10.000000000", + "2019-01-06T18:35:26.000000000", + "2019-01-06T18:36:59.000000000", + "2019-01-06T18:37:00.000000000", + "2019-01-06T18:39:00.000000000", + "2019-01-06T18:41:01.000000000", + "2019-01-06T18:41:44.000000000", + "2019-01-06T18:42:46.000000000", + "2019-01-06T18:44:52.000000000", + "2019-01-06T18:45:28.000000000", + "2019-01-06T18:46:09.000000000", + "2019-01-06T18:47:11.000000000", + "2019-01-06T18:47:15.000000000", + "2019-01-06T18:48:31.000000000", + "2019-01-06T18:49:22.000000000", + "2019-01-06T18:50:29.000000000", + "2019-01-06T18:50:32.000000000", + "2019-01-06T18:50:33.000000000", + "2019-01-06T18:51:28.000000000", + "2019-01-06T18:51:46.000000000", + "2019-01-06T18:55:10.000000000", + "2019-01-06T18:55:21.000000000", + "2019-01-06T18:56:20.000000000", + "2019-01-06T18:58:42.000000000", + "2019-01-06T19:00:25.000000000", + "2019-01-06T19:00:58.000000000", + "2019-01-06T19:01:05.000000000", + "2019-01-06T19:01:26.000000000", + "2019-01-06T19:03:41.000000000", + "2019-01-06T19:04:36.000000000", + "2019-01-06T19:05:19.000000000", + "2019-01-06T19:05:24.000000000", + "2019-01-06T19:06:36.000000000", + "2019-01-06T19:07:25.000000000", + "2019-01-06T19:07:35.000000000", + "2019-01-06T19:08:23.000000000", + "2019-01-06T19:09:51.000000000", + "2019-01-06T19:11:40.000000000", + "2019-01-06T19:15:59.000000000", + "2019-01-06T19:17:00.000000000", + "2019-01-06T19:17:05.000000000", + "2019-01-06T19:17:19.000000000", + "2019-01-06T19:17:20.000000000", + "2019-01-06T19:17:25.000000000", + "2019-01-06T19:17:34.000000000", + "2019-01-06T19:17:43.000000000", + "2019-01-06T19:18:25.000000000", + "2019-01-06T19:18:27.000000000", + "2019-01-06T19:20:32.000000000", + "2019-01-06T19:21:50.000000000", + "2019-01-06T19:22:09.000000000", + "2019-01-06T19:22:21.000000000", + "2019-01-06T19:24:26.000000000", + "2019-01-06T19:24:48.000000000", + "2019-01-06T19:25:29.000000000", + "2019-01-06T19:26:16.000000000", + "2019-01-06T19:26:29.000000000", + "2019-01-06T19:26:44.000000000", + "2019-01-06T19:30:14.000000000", + "2019-01-06T19:33:15.000000000", + "2019-01-06T19:33:17.000000000", + "2019-01-06T19:33:46.000000000", + "2019-01-06T19:35:12.000000000", + "2019-01-06T19:35:42.000000000", + "2019-01-06T19:36:06.000000000", + "2019-01-06T19:36:55.000000000", + "2019-01-06T19:38:01.000000000", + "2019-01-06T19:39:00.000000000", + "2019-01-06T19:39:12.000000000", + "2019-01-06T19:39:56.000000000", + "2019-01-06T19:41:34.000000000", + "2019-01-06T19:41:51.000000000", + "2019-01-06T19:42:52.000000000", + "2019-01-06T19:43:28.000000000", + "2019-01-06T19:44:02.000000000", + "2019-01-06T19:44:20.000000000", + "2019-01-06T19:47:22.000000000", + "2019-01-06T19:49:10.000000000", + "2019-01-06T19:50:33.000000000", + "2019-01-06T19:51:13.000000000", + "2019-01-06T19:51:23.000000000", + "2019-01-06T19:55:40.000000000", + "2019-01-06T19:56:04.000000000", + "2019-01-06T19:57:47.000000000", + "2019-01-06T19:58:05.000000000", + "2019-01-06T19:59:26.000000000", + "2019-01-06T20:01:38.000000000", + "2019-01-06T20:01:54.000000000", + "2019-01-06T20:02:08.000000000", + "2019-01-06T20:03:34.000000000", + "2019-01-06T20:04:56.000000000", + "2019-01-06T20:11:24.000000000", + "2019-01-06T20:12:20.000000000", + "2019-01-06T20:14:50.000000000", + "2019-01-06T20:15:34.000000000", + "2019-01-06T20:16:06.000000000", + "2019-01-06T20:16:46.000000000", + "2019-01-06T20:17:04.000000000", + "2019-01-06T20:17:30.000000000", + "2019-01-06T20:17:49.000000000", + "2019-01-06T20:18:08.000000000", + "2019-01-06T20:19:06.000000000", + "2019-01-06T20:19:39.000000000", + "2019-01-06T20:19:42.000000000", + "2019-01-06T20:21:27.000000000", + "2019-01-06T20:22:03.000000000", + "2019-01-06T20:22:58.000000000", + "2019-01-06T20:23:03.000000000", + "2019-01-06T20:24:44.000000000", + "2019-01-06T20:25:06.000000000", + "2019-01-06T20:26:33.000000000", + "2019-01-06T20:27:16.000000000", + "2019-01-06T20:27:23.000000000", + "2019-01-06T20:28:19.000000000", + "2019-01-06T20:29:45.000000000", + "2019-01-06T20:29:53.000000000", + "2019-01-06T20:30:05.000000000", + "2019-01-06T20:31:57.000000000", + "2019-01-06T20:32:51.000000000", + "2019-01-06T20:33:50.000000000", + "2019-01-06T20:34:48.000000000", + "2019-01-06T20:35:47.000000000", + "2019-01-06T20:38:32.000000000", + "2019-01-06T20:38:46.000000000", + "2019-01-06T20:40:34.000000000", + "2019-01-06T20:40:59.000000000", + "2019-01-06T20:41:53.000000000", + "2019-01-06T20:43:29.000000000", + "2019-01-06T20:43:45.000000000", + "2019-01-06T20:43:48.000000000", + "2019-01-06T20:44:25.000000000", + "2019-01-06T20:46:54.000000000", + "2019-01-06T20:47:09.000000000", + "2019-01-06T20:48:15.000000000", + "2019-01-06T20:48:45.000000000", + "2019-01-06T20:49:44.000000000", + "2019-01-06T20:51:52.000000000", + "2019-01-06T20:52:39.000000000", + "2019-01-06T20:55:56.000000000", + "2019-01-06T20:56:19.000000000", + "2019-01-06T20:56:51.000000000", + "2019-01-06T20:59:21.000000000", + "2019-01-06T21:01:16.000000000", + "2019-01-06T21:02:45.000000000", + "2019-01-06T21:06:53.000000000", + "2019-01-06T21:11:34.000000000", + "2019-01-06T21:11:54.000000000", + "2019-01-06T21:13:09.000000000", + "2019-01-06T21:13:48.000000000", + "2019-01-06T21:18:29.000000000", + "2019-01-06T21:19:36.000000000", + "2019-01-06T21:19:52.000000000", + "2019-01-06T21:20:07.000000000", + "2019-01-06T21:20:54.000000000", + "2019-01-06T21:22:47.000000000", + "2019-01-06T21:23:35.000000000", + "2019-01-06T21:23:52.000000000", + "2019-01-06T21:25:06.000000000", + "2019-01-06T21:25:58.000000000", + "2019-01-06T21:26:29.000000000", + "2019-01-06T21:27:18.000000000", + "2019-01-06T21:28:23.000000000", + "2019-01-06T21:30:56.000000000", + "2019-01-06T21:32:20.000000000", + "2019-01-06T21:33:03.000000000", + "2019-01-06T21:34:15.000000000", + "2019-01-06T21:34:31.000000000", + "2019-01-06T21:34:44.000000000", + "2019-01-06T21:34:47.000000000", + "2019-01-06T21:35:06.000000000", + "2019-01-06T21:36:08.000000000", + "2019-01-06T21:37:02.000000000", + "2019-01-06T21:38:06.000000000", + "2019-01-06T21:38:09.000000000", + "2019-01-06T21:38:50.000000000", + "2019-01-06T21:39:55.000000000", + "2019-01-06T21:40:41.000000000", + "2019-01-06T21:41:16.000000000", + "2019-01-06T21:42:13.000000000", + "2019-01-06T21:42:28.000000000", + "2019-01-06T21:42:40.000000000", + "2019-01-06T21:42:47.000000000", + "2019-01-06T21:43:03.000000000", + "2019-01-06T21:44:43.000000000", + "2019-01-06T21:45:39.000000000", + "2019-01-06T21:47:32.000000000", + "2019-01-06T21:49:22.000000000", + "2019-01-06T21:50:02.000000000", + "2019-01-06T21:52:14.000000000", + "2019-01-06T21:53:39.000000000", + "2019-01-06T21:55:09.000000000", + "2019-01-06T21:55:37.000000000", + "2019-01-06T21:56:40.000000000", + "2019-01-06T21:57:08.000000000", + "2019-01-06T21:58:17.000000000", + "2019-01-06T21:59:01.000000000", + "2019-01-06T21:59:02.000000000", + "2019-01-06T21:59:46.000000000", + "2019-01-06T22:00:59.000000000", + "2019-01-06T22:01:10.000000000", + "2019-01-06T22:02:38.000000000", + "2019-01-06T22:04:17.000000000", + "2019-01-06T22:05:13.000000000", + "2019-01-06T22:06:24.000000000", + "2019-01-06T22:06:55.000000000", + "2019-01-06T22:08:40.000000000", + "2019-01-06T22:09:17.000000000", + "2019-01-06T22:09:57.000000000", + "2019-01-06T22:12:04.000000000", + "2019-01-06T22:13:45.000000000", + "2019-01-06T22:15:55.000000000", + "2019-01-06T22:16:00.000000000", + "2019-01-06T22:18:42.000000000", + "2019-01-06T22:21:08.000000000", + "2019-01-06T22:21:33.000000000", + "2019-01-06T22:22:15.000000000", + "2019-01-06T22:22:17.000000000", + "2019-01-06T22:22:34.000000000", + "2019-01-06T22:22:50.000000000", + "2019-01-06T22:24:03.000000000", + "2019-01-06T22:24:07.000000000", + "2019-01-06T22:24:20.000000000", + "2019-01-06T22:26:22.000000000", + "2019-01-06T22:27:07.000000000", + "2019-01-06T22:28:08.000000000", + "2019-01-06T22:28:43.000000000", + "2019-01-06T22:29:04.000000000", + "2019-01-06T22:29:34.000000000", + "2019-01-06T22:29:51.000000000", + "2019-01-06T22:30:43.000000000", + "2019-01-06T22:31:07.000000000", + "2019-01-06T22:31:30.000000000", + "2019-01-06T22:32:12.000000000", + "2019-01-06T22:32:27.000000000", + "2019-01-06T22:34:42.000000000", + "2019-01-06T22:35:00.000000000", + "2019-01-06T22:36:09.000000000", + "2019-01-06T22:36:24.000000000", + "2019-01-06T22:37:22.000000000", + "2019-01-06T22:37:57.000000000", + "2019-01-06T22:38:56.000000000", + "2019-01-06T22:39:37.000000000", + "2019-01-06T22:41:57.000000000", + "2019-01-06T22:44:31.000000000", + "2019-01-06T22:44:42.000000000", + "2019-01-06T22:48:29.000000000", + "2019-01-06T22:50:27.000000000", + "2019-01-06T22:51:09.000000000", + "2019-01-06T22:52:57.000000000", + "2019-01-06T22:54:45.000000000", + "2019-01-06T22:54:54.000000000", + "2019-01-06T22:55:28.000000000", + "2019-01-06T22:55:56.000000000", + "2019-01-06T22:56:32.000000000", + "2019-01-06T22:56:56.000000000", + "2019-01-06T22:57:34.000000000", + "2019-01-06T22:59:55.000000000", + "2019-01-06T23:01:11.000000000", + "2019-01-06T23:01:23.000000000", + "2019-01-06T23:02:02.000000000", + "2019-01-06T23:02:17.000000000", + "2019-01-06T23:04:11.000000000", + "2019-01-06T23:04:28.000000000", + "2019-01-06T23:04:57.000000000", + "2019-01-06T23:05:23.000000000", + "2019-01-06T23:06:34.000000000", + "2019-01-06T23:07:04.000000000", + "2019-01-06T23:08:23.000000000", + "2019-01-06T23:08:27.000000000", + "2019-01-06T23:09:16.000000000", + "2019-01-06T23:09:32.000000000", + "2019-01-06T23:11:09.000000000", + "2019-01-06T23:12:58.000000000", + "2019-01-06T23:12:59.000000000", + "2019-01-06T23:13:05.000000000", + "2019-01-06T23:13:53.000000000", + "2019-01-06T23:15:54.000000000", + "2019-01-06T23:17:45.000000000", + "2019-01-06T23:18:55.000000000", + "2019-01-06T23:20:29.000000000", + "2019-01-06T23:23:01.000000000", + "2019-01-06T23:25:19.000000000", + "2019-01-06T23:26:28.000000000", + "2019-01-06T23:28:20.000000000", + "2019-01-06T23:28:27.000000000", + "2019-01-06T23:28:38.000000000", + "2019-01-06T23:28:50.000000000", + "2019-01-06T23:30:11.000000000", + "2019-01-06T23:31:06.000000000", + "2019-01-06T23:31:25.000000000", + "2019-01-06T23:32:31.000000000", + "2019-01-06T23:32:58.000000000", + "2019-01-06T23:33:56.000000000", + "2019-01-06T23:35:13.000000000", + "2019-01-06T23:35:31.000000000", + "2019-01-06T23:35:49.000000000", + "2019-01-06T23:36:59.000000000", + "2019-01-06T23:38:05.000000000", + "2019-01-06T23:39:43.000000000", + "2019-01-06T23:41:28.000000000", + "2019-01-06T23:43:06.000000000", + "2019-01-06T23:43:20.000000000", + "2019-01-06T23:43:50.000000000", + "2019-01-06T23:46:45.000000000", + "2019-01-06T23:46:47.000000000", + "2019-01-06T23:48:15.000000000", + "2019-01-06T23:49:03.000000000", + "2019-01-06T23:50:08.000000000", + "2019-01-06T23:50:26.000000000", + "2019-01-06T23:50:53.000000000", + "2019-01-06T23:51:33.000000000", + "2019-01-06T23:53:35.000000000", + "2019-01-06T23:54:51.000000000", + "2019-01-06T23:55:28.000000000", + "2019-01-06T23:55:42.000000000", + "2019-01-06T23:58:24.000000000", + "2019-01-06T23:58:46.000000000", + "2019-01-06T23:59:45.000000000", + "2019-01-07T00:01:51.000000000", + "2019-01-07T00:01:54.000000000", + "2019-01-07T00:03:49.000000000", + "2019-01-07T00:04:12.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:03.000000000", + "2019-01-07T00:05:43.000000000", + "2019-01-07T00:07:29.000000000", + "2019-01-07T00:08:58.000000000", + "2019-01-07T00:12:21.000000000", + "2019-01-07T00:13:34.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:13:45.000000000", + "2019-01-07T00:14:20.000000000", + "2019-01-07T00:14:37.000000000", + "2019-01-07T00:18:44.000000000", + "2019-01-07T00:20:52.000000000", + "2019-01-07T00:21:09.000000000", + "2019-01-07T00:21:30.000000000", + "2019-01-07T00:22:11.000000000", + "2019-01-07T00:22:13.000000000", + "2019-01-07T00:24:17.000000000", + "2019-01-07T00:25:17.000000000", + "2019-01-07T00:25:39.000000000", + "2019-01-07T00:25:53.000000000", + "2019-01-07T00:26:28.000000000", + "2019-01-07T00:27:50.000000000", + "2019-01-07T00:28:13.000000000", + "2019-01-07T00:28:51.000000000", + "2019-01-07T00:29:13.000000000", + "2019-01-07T00:29:21.000000000", + "2019-01-07T00:29:29.000000000", + "2019-01-07T00:29:55.000000000", + "2019-01-07T00:29:56.000000000", + "2019-01-07T00:30:23.000000000", + "2019-01-07T00:31:03.000000000", + "2019-01-07T00:32:14.000000000", + "2019-01-07T00:33:49.000000000", + "2019-01-07T00:34:07.000000000", + "2019-01-07T00:34:32.000000000", + "2019-01-07T00:34:59.000000000", + "2019-01-07T00:38:57.000000000", + "2019-01-07T00:40:52.000000000", + "2019-01-07T00:42:08.000000000", + "2019-01-07T00:42:20.000000000", + "2019-01-07T00:42:25.000000000", + "2019-01-07T00:43:03.000000000", + "2019-01-07T00:44:29.000000000", + "2019-01-07T00:45:00.000000000", + "2019-01-07T00:45:52.000000000", + "2019-01-07T00:46:49.000000000", + "2019-01-07T00:48:31.000000000", + "2019-01-07T00:48:53.000000000", + "2019-01-07T00:52:13.000000000", + "2019-01-07T00:52:29.000000000", + "2019-01-07T00:54:10.000000000", + "2019-01-07T00:54:39.000000000", + "2019-01-07T00:54:53.000000000", + "2019-01-07T00:56:29.000000000", + "2019-01-07T00:56:55.000000000", + "2019-01-07T00:57:56.000000000", + "2019-01-07T00:58:21.000000000", + "2019-01-07T00:58:31.000000000", + "2019-01-07T00:58:56.000000000", + "2019-01-07T00:59:39.000000000", + "2019-01-07T01:00:32.000000000", + "2019-01-07T01:03:03.000000000", + "2019-01-07T01:03:40.000000000", + "2019-01-07T01:03:45.000000000", + "2019-01-07T01:04:14.000000000", + "2019-01-07T01:07:12.000000000", + "2019-01-07T01:08:31.000000000", + "2019-01-07T01:10:11.000000000", + "2019-01-07T01:10:14.000000000", + "2019-01-07T01:10:33.000000000", + "2019-01-07T01:11:06.000000000", + "2019-01-07T01:12:25.000000000", + "2019-01-07T01:12:42.000000000", + "2019-01-07T01:16:41.000000000", + "2019-01-07T01:18:09.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:19:58.000000000", + "2019-01-07T01:20:24.000000000", + "2019-01-07T01:24:39.000000000", + "2019-01-07T01:24:43.000000000", + "2019-01-07T01:28:14.000000000", + "2019-01-07T01:28:40.000000000", + "2019-01-07T01:30:20.000000000", + "2019-01-07T01:30:39.000000000", + "2019-01-07T01:30:40.000000000", + "2019-01-07T01:31:12.000000000", + "2019-01-07T01:32:06.000000000", + "2019-01-07T01:32:09.000000000", + "2019-01-07T01:32:39.000000000", + "2019-01-07T01:33:45.000000000", + "2019-01-07T01:35:11.000000000", + "2019-01-07T01:35:54.000000000", + "2019-01-07T01:37:33.000000000", + "2019-01-07T01:38:35.000000000", + "2019-01-07T01:38:56.000000000", + "2019-01-07T01:43:49.000000000", + "2019-01-07T01:44:27.000000000", + "2019-01-07T01:46:50.000000000", + "2019-01-07T01:47:17.000000000", + "2019-01-07T01:48:42.000000000", + "2019-01-07T01:48:53.000000000", + "2019-01-07T01:51:40.000000000", + "2019-01-07T01:51:49.000000000", + "2019-01-07T01:52:58.000000000", + "2019-01-07T01:53:33.000000000", + "2019-01-07T01:54:08.000000000", + "2019-01-07T01:54:39.000000000", + "2019-01-07T01:54:43.000000000", + "2019-01-07T01:54:55.000000000", + "2019-01-07T01:57:39.000000000", + "2019-01-07T01:58:15.000000000", + "2019-01-07T02:00:42.000000000", + "2019-01-07T02:00:49.000000000", + "2019-01-07T02:01:51.000000000", + "2019-01-07T02:04:04.000000000", + "2019-01-07T02:05:19.000000000", + "2019-01-07T02:06:34.000000000", + "2019-01-07T02:07:12.000000000", + "2019-01-07T02:07:37.000000000", + "2019-01-07T02:08:53.000000000", + "2019-01-07T02:11:13.000000000", + "2019-01-07T02:11:41.000000000", + "2019-01-07T02:11:53.000000000", + "2019-01-07T02:12:03.000000000", + "2019-01-07T02:12:16.000000000", + "2019-01-07T02:12:27.000000000", + "2019-01-07T02:13:23.000000000", + "2019-01-07T02:13:33.000000000", + "2019-01-07T02:13:55.000000000", + "2019-01-07T02:15:28.000000000", + "2019-01-07T02:16:19.000000000", + "2019-01-07T02:16:24.000000000", + "2019-01-07T02:17:03.000000000", + "2019-01-07T02:21:42.000000000", + "2019-01-07T02:21:54.000000000", + "2019-01-07T02:23:06.000000000", + "2019-01-07T02:23:18.000000000", + "2019-01-07T02:24:02.000000000", + "2019-01-07T02:24:39.000000000", + "2019-01-07T02:25:12.000000000", + "2019-01-07T02:25:28.000000000", + "2019-01-07T02:25:36.000000000", + "2019-01-07T02:26:34.000000000", + "2019-01-07T02:27:29.000000000", + "2019-01-07T02:27:30.000000000", + "2019-01-07T02:28:02.000000000", + "2019-01-07T02:28:32.000000000", + "2019-01-07T02:28:55.000000000", + "2019-01-07T02:29:00.000000000", + "2019-01-07T02:29:10.000000000", + "2019-01-07T02:30:18.000000000", + "2019-01-07T02:31:06.000000000", + "2019-01-07T02:34:29.000000000", + "2019-01-07T02:35:01.000000000", + "2019-01-07T02:35:51.000000000", + "2019-01-07T02:36:10.000000000", + "2019-01-07T02:36:55.000000000", + "2019-01-07T02:37:48.000000000", + "2019-01-07T02:38:13.000000000", + "2019-01-07T02:38:50.000000000", + "2019-01-07T02:39:21.000000000", + "2019-01-07T02:40:55.000000000", + "2019-01-07T02:41:09.000000000", + "2019-01-07T02:41:45.000000000", + "2019-01-07T02:42:06.000000000", + "2019-01-07T02:42:34.000000000", + "2019-01-07T02:43:03.000000000", + "2019-01-07T02:44:15.000000000", + "2019-01-07T02:45:15.000000000", + "2019-01-07T02:45:35.000000000", + "2019-01-07T02:45:37.000000000", + "2019-01-07T02:47:10.000000000", + "2019-01-07T02:52:09.000000000", + "2019-01-07T02:52:49.000000000", + "2019-01-07T02:55:14.000000000", + "2019-01-07T02:57:10.000000000", + "2019-01-07T02:58:26.000000000", + "2019-01-07T02:58:40.000000000", + "2019-01-07T03:00:43.000000000", + "2019-01-07T03:02:44.000000000", + "2019-01-07T03:02:57.000000000", + "2019-01-07T03:03:03.000000000", + "2019-01-07T03:03:41.000000000", + "2019-01-07T03:05:27.000000000", + "2019-01-07T03:05:51.000000000", + "2019-01-07T03:06:00.000000000", + "2019-01-07T03:06:51.000000000", + "2019-01-07T03:08:20.000000000", + "2019-01-07T03:08:55.000000000", + "2019-01-07T03:09:32.000000000", + "2019-01-07T03:11:33.000000000", + "2019-01-07T03:12:35.000000000", + "2019-01-07T03:13:24.000000000", + "2019-01-07T03:13:43.000000000", + "2019-01-07T03:16:48.000000000", + "2019-01-07T03:18:41.000000000", + "2019-01-07T03:18:43.000000000", + "2019-01-07T03:22:31.000000000", + "2019-01-07T03:23:53.000000000", + "2019-01-07T03:26:29.000000000", + "2019-01-07T03:26:34.000000000", + "2019-01-07T03:26:50.000000000", + "2019-01-07T03:27:20.000000000", + "2019-01-07T03:28:53.000000000", + "2019-01-07T03:30:12.000000000", + "2019-01-07T03:33:26.000000000", + "2019-01-07T03:33:51.000000000", + "2019-01-07T03:34:17.000000000", + "2019-01-07T03:34:32.000000000", + "2019-01-07T03:34:46.000000000", + "2019-01-07T03:35:10.000000000", + "2019-01-07T03:35:15.000000000", + "2019-01-07T03:36:25.000000000", + "2019-01-07T03:38:12.000000000", + "2019-01-07T03:42:38.000000000", + "2019-01-07T03:44:11.000000000", + "2019-01-07T03:45:09.000000000", + "2019-01-07T03:46:10.000000000", + "2019-01-07T03:46:38.000000000", + "2019-01-07T03:47:32.000000000", + "2019-01-07T03:48:02.000000000", + "2019-01-07T03:50:59.000000000", + "2019-01-07T03:51:10.000000000", + "2019-01-07T03:51:35.000000000", + "2019-01-07T03:52:27.000000000", + "2019-01-07T03:52:50.000000000", + "2019-01-07T03:54:07.000000000", + "2019-01-07T03:55:07.000000000", + "2019-01-07T03:55:44.000000000", + "2019-01-07T03:56:06.000000000", + "2019-01-07T03:56:07.000000000", + "2019-01-07T03:56:52.000000000", + "2019-01-07T03:57:45.000000000", + "2019-01-07T03:59:56.000000000", + "2019-01-07T04:00:21.000000000", + "2019-01-07T04:03:49.000000000", + "2019-01-07T04:04:05.000000000", + "2019-01-07T04:05:57.000000000", + "2019-01-07T04:07:17.000000000", + "2019-01-07T04:08:30.000000000", + "2019-01-07T04:10:43.000000000", + "2019-01-07T04:11:28.000000000", + "2019-01-07T04:12:12.000000000", + "2019-01-07T04:12:18.000000000", + "2019-01-07T04:12:37.000000000", + "2019-01-07T04:13:57.000000000", + "2019-01-07T04:16:21.000000000", + "2019-01-07T04:18:14.000000000", + "2019-01-07T04:19:00.000000000", + "2019-01-07T04:19:12.000000000", + "2019-01-07T04:24:10.000000000", + "2019-01-07T04:25:04.000000000", + "2019-01-07T04:26:42.000000000", + "2019-01-07T04:28:03.000000000", + "2019-01-07T04:31:09.000000000", + "2019-01-07T04:34:55.000000000", + "2019-01-07T04:35:19.000000000", + "2019-01-07T04:36:03.000000000", + "2019-01-07T04:36:48.000000000", + "2019-01-07T04:38:43.000000000", + "2019-01-07T04:41:25.000000000", + "2019-01-07T04:41:47.000000000", + "2019-01-07T04:41:55.000000000", + "2019-01-07T04:42:22.000000000", + "2019-01-07T04:42:24.000000000", + "2019-01-07T04:42:41.000000000", + "2019-01-07T04:44:16.000000000", + "2019-01-07T04:44:29.000000000", + "2019-01-07T04:45:01.000000000", + "2019-01-07T04:45:43.000000000", + "2019-01-07T04:46:07.000000000", + "2019-01-07T04:46:27.000000000", + "2019-01-07T04:46:36.000000000", + "2019-01-07T04:50:55.000000000", + "2019-01-07T04:52:06.000000000", + "2019-01-07T04:53:14.000000000", + "2019-01-07T04:53:23.000000000", + "2019-01-07T04:53:40.000000000", + "2019-01-07T04:54:49.000000000", + "2019-01-07T04:56:04.000000000", + "2019-01-07T04:56:59.000000000", + "2019-01-07T05:01:21.000000000", + "2019-01-07T05:01:22.000000000", + "2019-01-07T05:03:16.000000000", + "2019-01-07T05:03:17.000000000", + "2019-01-07T05:04:23.000000000", + "2019-01-07T05:06:16.000000000", + "2019-01-07T05:07:51.000000000", + "2019-01-07T05:08:32.000000000", + "2019-01-07T05:10:21.000000000", + "2019-01-07T05:11:07.000000000", + "2019-01-07T05:11:22.000000000", + "2019-01-07T05:17:10.000000000", + "2019-01-07T05:18:20.000000000", + "2019-01-07T05:20:47.000000000", + "2019-01-07T05:20:51.000000000", + "2019-01-07T05:20:57.000000000", + "2019-01-07T05:20:58.000000000", + "2019-01-07T05:22:02.000000000", + "2019-01-07T05:22:04.000000000", + "2019-01-07T05:23:33.000000000", + "2019-01-07T05:24:31.000000000", + "2019-01-07T05:25:16.000000000", + "2019-01-07T05:25:53.000000000", + "2019-01-07T05:26:47.000000000", + "2019-01-07T05:27:11.000000000", + "2019-01-07T05:28:05.000000000", + "2019-01-07T05:28:18.000000000", + "2019-01-07T05:29:11.000000000", + "2019-01-07T05:29:30.000000000", + "2019-01-07T05:30:08.000000000", + "2019-01-07T05:31:20.000000000", + "2019-01-07T05:33:44.000000000", + "2019-01-07T05:34:00.000000000", + "2019-01-07T05:34:01.000000000", + "2019-01-07T05:35:17.000000000", + "2019-01-07T05:35:19.000000000", + "2019-01-07T05:35:48.000000000", + "2019-01-07T05:36:34.000000000", + "2019-01-07T05:39:22.000000000", + "2019-01-07T05:39:50.000000000", + "2019-01-07T05:40:26.000000000", + "2019-01-07T05:41:40.000000000", + "2019-01-07T05:42:43.000000000", + "2019-01-07T05:42:49.000000000", + "2019-01-07T05:42:54.000000000", + "2019-01-07T05:43:23.000000000", + "2019-01-07T05:48:37.000000000", + "2019-01-07T05:49:06.000000000", + "2019-01-07T05:56:56.000000000", + "2019-01-07T05:56:57.000000000", + "2019-01-07T05:57:24.000000000", + "2019-01-07T05:58:15.000000000", + "2019-01-07T05:58:50.000000000", + "2019-01-07T05:59:24.000000000", + "2019-01-07T06:00:29.000000000", + "2019-01-07T06:01:26.000000000", + "2019-01-07T06:01:45.000000000", + "2019-01-07T06:02:11.000000000", + "2019-01-07T06:02:16.000000000", + "2019-01-07T06:07:32.000000000", + "2019-01-07T06:08:18.000000000", + "2019-01-07T06:09:25.000000000", + "2019-01-07T06:10:05.000000000", + "2019-01-07T06:10:51.000000000", + "2019-01-07T06:11:02.000000000", + "2019-01-07T06:11:55.000000000", + "2019-01-07T06:13:52.000000000", + "2019-01-07T06:16:34.000000000", + "2019-01-07T06:16:41.000000000", + "2019-01-07T06:17:23.000000000", + "2019-01-07T06:18:17.000000000", + "2019-01-07T06:19:03.000000000", + "2019-01-07T06:22:08.000000000", + "2019-01-07T06:23:14.000000000", + "2019-01-07T06:23:29.000000000", + "2019-01-07T06:24:47.000000000", + "2019-01-07T06:27:30.000000000", + "2019-01-07T06:27:43.000000000", + "2019-01-07T06:28:29.000000000", + "2019-01-07T06:29:41.000000000", + "2019-01-07T06:30:46.000000000", + "2019-01-07T06:31:24.000000000", + "2019-01-07T06:33:41.000000000", + "2019-01-07T06:35:58.000000000", + "2019-01-07T06:37:37.000000000", + "2019-01-07T06:37:42.000000000", + "2019-01-07T06:38:24.000000000", + "2019-01-07T06:39:12.000000000", + "2019-01-07T06:42:17.000000000", + "2019-01-07T06:42:24.000000000", + "2019-01-07T06:44:52.000000000", + "2019-01-07T06:45:17.000000000", + "2019-01-07T06:46:21.000000000", + "2019-01-07T06:48:06.000000000", + "2019-01-07T06:48:10.000000000", + "2019-01-07T06:48:11.000000000", + "2019-01-07T06:48:36.000000000", + "2019-01-07T06:50:04.000000000", + "2019-01-07T06:50:48.000000000", + "2019-01-07T06:52:46.000000000", + "2019-01-07T06:52:51.000000000", + "2019-01-07T06:52:59.000000000", + "2019-01-07T06:54:19.000000000", + "2019-01-07T06:55:09.000000000", + "2019-01-07T06:56:21.000000000", + "2019-01-07T06:57:13.000000000", + "2019-01-07T06:59:08.000000000", + "2019-01-07T06:59:34.000000000", + "2019-01-07T07:00:16.000000000", + "2019-01-07T07:00:39.000000000", + "2019-01-07T07:01:19.000000000", + "2019-01-07T07:01:57.000000000", + "2019-01-07T07:02:31.000000000", + "2019-01-07T07:02:34.000000000", + "2019-01-07T07:02:46.000000000", + "2019-01-07T07:02:53.000000000", + "2019-01-07T07:03:22.000000000", + "2019-01-07T07:04:06.000000000", + "2019-01-07T07:04:32.000000000", + "2019-01-07T07:05:15.000000000", + "2019-01-07T07:05:45.000000000", + "2019-01-07T07:06:36.000000000", + "2019-01-07T07:07:33.000000000", + "2019-01-07T07:07:55.000000000", + "2019-01-07T07:08:28.000000000", + "2019-01-07T07:08:56.000000000", + "2019-01-07T07:09:12.000000000", + "2019-01-07T07:10:29.000000000", + "2019-01-07T07:13:26.000000000", + "2019-01-07T07:13:40.000000000", + "2019-01-07T07:15:15.000000000", + "2019-01-07T07:15:42.000000000", + "2019-01-07T07:17:27.000000000", + "2019-01-07T07:17:42.000000000", + "2019-01-07T07:17:52.000000000", + "2019-01-07T07:17:57.000000000", + "2019-01-07T07:18:46.000000000", + "2019-01-07T07:19:00.000000000", + "2019-01-07T07:19:18.000000000", + "2019-01-07T07:19:50.000000000", + "2019-01-07T07:19:54.000000000", + "2019-01-07T07:19:59.000000000", + "2019-01-07T07:21:27.000000000", + "2019-01-07T07:22:13.000000000", + "2019-01-07T07:23:19.000000000", + "2019-01-07T07:23:45.000000000", + "2019-01-07T07:24:41.000000000", + "2019-01-07T07:25:00.000000000", + "2019-01-07T07:25:29.000000000", + "2019-01-07T07:28:08.000000000", + "2019-01-07T07:29:08.000000000", + "2019-01-07T07:29:18.000000000", + "2019-01-07T07:30:06.000000000", + "2019-01-07T07:30:28.000000000", + "2019-01-07T07:32:45.000000000", + "2019-01-07T07:33:21.000000000", + "2019-01-07T07:33:56.000000000", + "2019-01-07T07:34:20.000000000", + "2019-01-07T07:34:22.000000000", + "2019-01-07T07:34:43.000000000", + "2019-01-07T07:35:34.000000000", + "2019-01-07T07:39:25.000000000", + "2019-01-07T07:39:32.000000000", + "2019-01-07T07:40:17.000000000", + "2019-01-07T07:42:39.000000000", + "2019-01-07T07:44:54.000000000", + "2019-01-07T07:45:03.000000000", + "2019-01-07T07:49:30.000000000", + "2019-01-07T07:50:23.000000000", + "2019-01-07T07:51:10.000000000", + "2019-01-07T07:53:41.000000000", + "2019-01-07T07:54:52.000000000", + "2019-01-07T07:54:57.000000000", + "2019-01-07T07:57:42.000000000", + "2019-01-07T07:58:18.000000000", + "2019-01-07T07:58:31.000000000", + "2019-01-07T07:58:59.000000000", + "2019-01-07T08:01:03.000000000", + "2019-01-07T08:03:52.000000000", + "2019-01-07T08:04:40.000000000", + "2019-01-07T08:05:01.000000000", + "2019-01-07T08:05:51.000000000", + "2019-01-07T08:06:44.000000000", + "2019-01-07T08:07:09.000000000", + "2019-01-07T08:09:43.000000000", + "2019-01-07T08:09:58.000000000", + "2019-01-07T08:11:19.000000000", + "2019-01-07T08:11:48.000000000", + "2019-01-07T08:13:02.000000000", + "2019-01-07T08:15:25.000000000", + "2019-01-07T08:15:27.000000000", + "2019-01-07T08:15:33.000000000", + "2019-01-07T08:16:56.000000000", + "2019-01-07T08:17:29.000000000", + "2019-01-07T08:17:59.000000000", + "2019-01-07T08:19:06.000000000", + "2019-01-07T08:20:05.000000000", + "2019-01-07T08:21:58.000000000", + "2019-01-07T08:22:41.000000000", + "2019-01-07T08:26:02.000000000", + "2019-01-07T08:28:37.000000000", + "2019-01-07T08:29:42.000000000", + "2019-01-07T08:30:15.000000000", + "2019-01-07T08:31:13.000000000", + "2019-01-07T08:31:30.000000000", + "2019-01-07T08:31:45.000000000", + "2019-01-07T08:34:08.000000000", + "2019-01-07T08:34:49.000000000", + "2019-01-07T08:34:58.000000000", + "2019-01-07T08:35:29.000000000", + "2019-01-07T08:36:29.000000000", + "2019-01-07T08:37:00.000000000", + "2019-01-07T08:39:30.000000000", + "2019-01-07T08:41:16.000000000", + "2019-01-07T08:41:23.000000000", + "2019-01-07T08:42:37.000000000", + "2019-01-07T08:43:20.000000000", + "2019-01-07T08:43:26.000000000", + "2019-01-07T08:43:50.000000000", + "2019-01-07T08:45:21.000000000", + "2019-01-07T08:46:58.000000000", + "2019-01-07T08:47:59.000000000", + "2019-01-07T08:48:33.000000000", + "2019-01-07T08:49:40.000000000", + "2019-01-07T08:54:16.000000000", + "2019-01-07T08:54:37.000000000", + "2019-01-07T08:56:09.000000000", + "2019-01-07T08:56:12.000000000", + "2019-01-07T09:00:08.000000000", + "2019-01-07T09:00:34.000000000", + "2019-01-07T09:00:48.000000000", + "2019-01-07T09:00:57.000000000", + "2019-01-07T09:01:08.000000000", + "2019-01-07T09:01:30.000000000", + "2019-01-07T09:01:46.000000000", + "2019-01-07T09:01:59.000000000", + "2019-01-07T09:02:06.000000000", + "2019-01-07T09:02:46.000000000", + "2019-01-07T09:02:52.000000000", + "2019-01-07T09:03:11.000000000", + "2019-01-07T09:04:24.000000000", + "2019-01-07T09:04:44.000000000", + "2019-01-07T09:06:08.000000000", + "2019-01-07T09:06:16.000000000", + "2019-01-07T09:06:54.000000000", + "2019-01-07T09:09:28.000000000", + "2019-01-07T09:09:58.000000000", + "2019-01-07T09:10:21.000000000", + "2019-01-07T09:10:59.000000000", + "2019-01-07T09:12:27.000000000", + "2019-01-07T09:12:50.000000000", + "2019-01-07T09:13:04.000000000", + "2019-01-07T09:14:27.000000000", + "2019-01-07T09:14:34.000000000", + "2019-01-07T09:17:02.000000000", + "2019-01-07T09:17:30.000000000", + "2019-01-07T09:18:30.000000000", + "2019-01-07T09:18:37.000000000", + "2019-01-07T09:20:12.000000000", + "2019-01-07T09:20:25.000000000", + "2019-01-07T09:20:46.000000000", + "2019-01-07T09:22:10.000000000", + "2019-01-07T09:22:22.000000000", + "2019-01-07T09:23:10.000000000", + "2019-01-07T09:25:17.000000000", + "2019-01-07T09:25:29.000000000", + "2019-01-07T09:25:34.000000000", + "2019-01-07T09:26:24.000000000", + "2019-01-07T09:27:29.000000000", + "2019-01-07T09:28:32.000000000", + "2019-01-07T09:29:52.000000000", + "2019-01-07T09:30:51.000000000", + "2019-01-07T09:32:08.000000000", + "2019-01-07T09:33:07.000000000", + "2019-01-07T09:33:49.000000000", + "2019-01-07T09:33:55.000000000", + "2019-01-07T09:34:31.000000000", + "2019-01-07T09:36:46.000000000", + "2019-01-07T09:37:08.000000000", + "2019-01-07T09:37:18.000000000", + "2019-01-07T09:41:47.000000000", + "2019-01-07T09:44:14.000000000", + "2019-01-07T09:44:35.000000000", + "2019-01-07T09:45:29.000000000", + "2019-01-07T09:46:47.000000000", + "2019-01-07T09:47:55.000000000", + "2019-01-07T09:48:36.000000000", + "2019-01-07T09:49:57.000000000", + "2019-01-07T09:50:43.000000000", + "2019-01-07T09:55:13.000000000", + "2019-01-07T09:55:41.000000000", + "2019-01-07T09:56:33.000000000", + "2019-01-07T09:56:39.000000000", + "2019-01-07T09:56:48.000000000", + "2019-01-07T09:58:14.000000000", + "2019-01-07T09:58:28.000000000", + "2019-01-07T09:59:38.000000000", + "2019-01-07T10:01:23.000000000", + "2019-01-07T10:01:38.000000000", + "2019-01-07T10:01:48.000000000", + "2019-01-07T10:05:22.000000000", + "2019-01-07T10:07:15.000000000", + "2019-01-07T10:07:21.000000000", + "2019-01-07T10:12:37.000000000", + "2019-01-07T10:15:16.000000000", + "2019-01-07T10:15:50.000000000", + "2019-01-07T10:15:52.000000000", + "2019-01-07T10:16:52.000000000", + "2019-01-07T10:18:25.000000000", + "2019-01-07T10:19:32.000000000", + "2019-01-07T10:20:13.000000000", + "2019-01-07T10:23:19.000000000", + "2019-01-07T10:23:38.000000000", + "2019-01-07T10:24:50.000000000", + "2019-01-07T10:25:41.000000000", + "2019-01-07T10:26:32.000000000", + "2019-01-07T10:28:06.000000000", + "2019-01-07T10:28:11.000000000", + "2019-01-07T10:29:17.000000000", + "2019-01-07T10:30:03.000000000", + "2019-01-07T10:30:26.000000000", + "2019-01-07T10:30:36.000000000", + "2019-01-07T10:31:30.000000000", + "2019-01-07T10:31:52.000000000", + "2019-01-07T10:31:53.000000000", + "2019-01-07T10:32:08.000000000", + "2019-01-07T10:33:34.000000000", + "2019-01-07T10:35:15.000000000", + "2019-01-07T10:35:53.000000000", + "2019-01-07T10:36:00.000000000", + "2019-01-07T10:36:46.000000000", + "2019-01-07T10:36:58.000000000", + "2019-01-07T10:38:52.000000000", + "2019-01-07T10:40:07.000000000", + "2019-01-07T10:43:12.000000000", + "2019-01-07T10:43:13.000000000", + "2019-01-07T10:45:07.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:45:18.000000000", + "2019-01-07T10:46:47.000000000", + "2019-01-07T10:47:43.000000000", + "2019-01-07T10:47:46.000000000", + "2019-01-07T10:49:28.000000000", + "2019-01-07T10:49:39.000000000", + "2019-01-07T10:50:58.000000000", + "2019-01-07T10:52:57.000000000", + "2019-01-07T10:53:15.000000000", + "2019-01-07T10:54:23.000000000", + "2019-01-07T10:54:30.000000000", + "2019-01-07T10:54:56.000000000", + "2019-01-07T10:54:59.000000000", + "2019-01-07T10:56:17.000000000", + "2019-01-07T10:56:40.000000000", + "2019-01-07T10:57:41.000000000", + "2019-01-07T10:58:07.000000000", + "2019-01-07T10:58:09.000000000", + "2019-01-07T10:58:17.000000000", + "2019-01-07T10:58:29.000000000", + "2019-01-07T11:00:31.000000000", + "2019-01-07T11:02:52.000000000", + "2019-01-07T11:03:56.000000000", + "2019-01-07T11:04:09.000000000", + "2019-01-07T11:04:15.000000000", + "2019-01-07T11:04:28.000000000", + "2019-01-07T11:06:37.000000000", + "2019-01-07T11:07:31.000000000", + "2019-01-07T11:11:05.000000000", + "2019-01-07T11:11:37.000000000", + "2019-01-07T11:13:27.000000000", + "2019-01-07T11:13:40.000000000", + "2019-01-07T11:13:54.000000000", + "2019-01-07T11:14:59.000000000", + "2019-01-07T11:16:48.000000000", + "2019-01-07T11:18:00.000000000", + "2019-01-07T11:18:20.000000000", + "2019-01-07T11:19:27.000000000", + "2019-01-07T11:20:11.000000000", + "2019-01-07T11:20:18.000000000", + "2019-01-07T11:22:19.000000000", + "2019-01-07T11:22:24.000000000", + "2019-01-07T11:22:46.000000000", + "2019-01-07T11:23:28.000000000", + "2019-01-07T11:23:30.000000000", + "2019-01-07T11:25:02.000000000", + "2019-01-07T11:25:36.000000000", + "2019-01-07T11:26:23.000000000", + "2019-01-07T11:27:52.000000000", + "2019-01-07T11:28:15.000000000", + "2019-01-07T11:30:02.000000000", + "2019-01-07T11:30:06.000000000", + "2019-01-07T11:30:28.000000000", + "2019-01-07T11:30:45.000000000", + "2019-01-07T11:30:55.000000000", + "2019-01-07T11:32:28.000000000", + "2019-01-07T11:32:45.000000000", + "2019-01-07T11:33:31.000000000", + "2019-01-07T11:36:10.000000000", + "2019-01-07T11:36:16.000000000", + "2019-01-07T11:37:20.000000000", + "2019-01-07T11:38:17.000000000", + "2019-01-07T11:40:25.000000000", + "2019-01-07T11:40:42.000000000", + "2019-01-07T11:43:30.000000000", + "2019-01-07T11:43:51.000000000", + "2019-01-07T11:45:09.000000000", + "2019-01-07T11:45:58.000000000", + "2019-01-07T11:46:13.000000000", + "2019-01-07T11:46:58.000000000", + "2019-01-07T11:47:05.000000000", + "2019-01-07T11:47:59.000000000", + "2019-01-07T11:48:13.000000000", + "2019-01-07T11:48:19.000000000", + "2019-01-07T11:49:55.000000000", + "2019-01-07T11:51:45.000000000", + "2019-01-07T11:52:39.000000000", + "2019-01-07T11:53:10.000000000", + "2019-01-07T11:53:20.000000000", + "2019-01-07T11:54:12.000000000", + "2019-01-07T11:55:35.000000000", + "2019-01-07T11:56:47.000000000", + "2019-01-07T11:57:09.000000000", + "2019-01-07T11:57:44.000000000", + "2019-01-07T11:58:36.000000000", + "2019-01-07T11:59:21.000000000", + "2019-01-07T12:02:52.000000000", + "2019-01-07T12:03:19.000000000", + "2019-01-07T12:04:02.000000000", + "2019-01-07T12:04:20.000000000", + "2019-01-07T12:04:34.000000000", + "2019-01-07T12:06:42.000000000", + "2019-01-07T12:07:19.000000000", + "2019-01-07T12:08:44.000000000", + "2019-01-07T12:09:18.000000000", + "2019-01-07T12:09:21.000000000", + "2019-01-07T12:09:39.000000000", + "2019-01-07T12:11:29.000000000", + "2019-01-07T12:12:21.000000000", + "2019-01-07T12:13:07.000000000", + "2019-01-07T12:13:30.000000000", + "2019-01-07T12:13:33.000000000", + "2019-01-07T12:14:13.000000000", + "2019-01-07T12:15:12.000000000", + "2019-01-07T12:16:37.000000000", + "2019-01-07T12:16:49.000000000", + "2019-01-07T12:18:00.000000000", + "2019-01-07T12:19:40.000000000", + "2019-01-07T12:20:23.000000000", + "2019-01-07T12:21:48.000000000", + "2019-01-07T12:22:11.000000000", + "2019-01-07T12:24:40.000000000", + "2019-01-07T12:25:00.000000000", + "2019-01-07T12:26:26.000000000", + "2019-01-07T12:26:59.000000000", + "2019-01-07T12:28:26.000000000", + "2019-01-07T12:28:50.000000000", + "2019-01-07T12:28:52.000000000", + "2019-01-07T12:29:23.000000000", + "2019-01-07T12:29:33.000000000", + "2019-01-07T12:30:17.000000000", + "2019-01-07T12:31:21.000000000", + "2019-01-07T12:32:40.000000000", + "2019-01-07T12:34:21.000000000", + "2019-01-07T12:34:38.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:35:17.000000000", + "2019-01-07T12:37:16.000000000", + "2019-01-07T12:37:20.000000000", + "2019-01-07T12:37:23.000000000", + "2019-01-07T12:38:07.000000000", + "2019-01-07T12:39:48.000000000", + "2019-01-07T12:40:26.000000000", + "2019-01-07T12:41:30.000000000", + "2019-01-07T12:41:39.000000000", + "2019-01-07T12:41:43.000000000", + "2019-01-07T12:41:53.000000000", + "2019-01-07T12:43:40.000000000", + "2019-01-07T12:46:37.000000000", + "2019-01-07T12:48:30.000000000", + "2019-01-07T12:49:43.000000000", + "2019-01-07T12:51:14.000000000", + "2019-01-07T12:53:05.000000000", + "2019-01-07T12:53:14.000000000", + "2019-01-07T12:53:21.000000000", + "2019-01-07T12:53:37.000000000", + "2019-01-07T12:54:18.000000000", + "2019-01-07T12:54:56.000000000", + "2019-01-07T12:55:43.000000000", + "2019-01-07T12:56:47.000000000", + "2019-01-07T12:57:02.000000000", + "2019-01-07T12:57:17.000000000", + "2019-01-07T12:57:29.000000000", + "2019-01-07T12:57:36.000000000", + "2019-01-07T12:57:49.000000000", + "2019-01-07T12:58:38.000000000", + "2019-01-07T12:58:54.000000000", + "2019-01-07T13:00:51.000000000", + "2019-01-07T13:04:20.000000000", + "2019-01-07T13:05:15.000000000", + "2019-01-07T13:05:17.000000000", + "2019-01-07T13:05:41.000000000", + "2019-01-07T13:07:49.000000000", + "2019-01-07T13:08:20.000000000", + "2019-01-07T13:10:13.000000000", + "2019-01-07T13:11:02.000000000", + "2019-01-07T13:11:53.000000000", + "2019-01-07T13:14:17.000000000", + "2019-01-07T13:15:10.000000000", + "2019-01-07T13:15:17.000000000", + "2019-01-07T13:17:04.000000000", + "2019-01-07T13:18:12.000000000", + "2019-01-07T13:19:34.000000000", + "2019-01-07T13:20:59.000000000", + "2019-01-07T13:22:38.000000000", + "2019-01-07T13:23:31.000000000", + "2019-01-07T13:25:14.000000000", + "2019-01-07T13:25:58.000000000", + "2019-01-07T13:26:10.000000000", + "2019-01-07T13:26:49.000000000", + "2019-01-07T13:28:35.000000000", + "2019-01-07T13:28:46.000000000", + "2019-01-07T13:28:48.000000000", + "2019-01-07T13:30:18.000000000", + "2019-01-07T13:31:46.000000000", + "2019-01-07T13:32:06.000000000", + "2019-01-07T13:32:10.000000000", + "2019-01-07T13:32:12.000000000", + "2019-01-07T13:32:17.000000000", + "2019-01-07T13:34:46.000000000", + "2019-01-07T13:36:02.000000000", + "2019-01-07T13:36:48.000000000", + "2019-01-07T13:37:05.000000000", + "2019-01-07T13:38:07.000000000", + "2019-01-07T13:38:38.000000000", + "2019-01-07T13:40:21.000000000", + "2019-01-07T13:40:28.000000000", + "2019-01-07T13:42:11.000000000", + "2019-01-07T13:42:59.000000000", + "2019-01-07T13:46:11.000000000", + "2019-01-07T13:47:46.000000000", + "2019-01-07T13:47:49.000000000", + "2019-01-07T13:48:38.000000000", + "2019-01-07T13:49:23.000000000", + "2019-01-07T13:50:32.000000000", + "2019-01-07T13:50:36.000000000", + "2019-01-07T13:53:32.000000000", + "2019-01-07T13:55:19.000000000", + "2019-01-07T13:58:09.000000000", + "2019-01-07T14:03:02.000000000", + "2019-01-07T14:04:28.000000000", + "2019-01-07T14:05:13.000000000", + "2019-01-07T14:07:51.000000000", + "2019-01-07T14:10:12.000000000", + "2019-01-07T14:14:28.000000000", + "2019-01-07T14:16:06.000000000", + "2019-01-07T14:17:54.000000000", + "2019-01-07T14:18:35.000000000", + "2019-01-07T14:19:19.000000000", + "2019-01-07T14:20:22.000000000", + "2019-01-07T14:20:31.000000000", + "2019-01-07T14:21:09.000000000", + "2019-01-07T14:21:41.000000000", + "2019-01-07T14:22:49.000000000", + "2019-01-07T14:22:55.000000000", + "2019-01-07T14:23:06.000000000", + "2019-01-07T14:23:50.000000000", + "2019-01-07T14:25:47.000000000", + "2019-01-07T14:26:25.000000000", + "2019-01-07T14:26:31.000000000", + "2019-01-07T14:28:13.000000000", + "2019-01-07T14:29:32.000000000", + "2019-01-07T14:29:59.000000000", + "2019-01-07T14:30:03.000000000", + "2019-01-07T14:30:52.000000000", + "2019-01-07T14:31:01.000000000", + "2019-01-07T14:31:52.000000000", + "2019-01-07T14:32:53.000000000", + "2019-01-07T14:35:39.000000000", + "2019-01-07T14:36:39.000000000", + "2019-01-07T14:37:06.000000000", + "2019-01-07T14:38:05.000000000", + "2019-01-07T14:39:51.000000000", + "2019-01-07T14:40:37.000000000", + "2019-01-07T14:41:41.000000000", + "2019-01-07T14:43:55.000000000", + "2019-01-07T14:45:19.000000000", + "2019-01-07T14:45:42.000000000", + "2019-01-07T14:46:40.000000000", + "2019-01-07T14:51:08.000000000", + "2019-01-07T14:52:27.000000000", + "2019-01-07T14:52:46.000000000", + "2019-01-07T14:54:51.000000000", + "2019-01-07T14:56:59.000000000", + "2019-01-07T14:57:06.000000000", + "2019-01-07T14:59:46.000000000", + "2019-01-07T15:02:39.000000000", + "2019-01-07T15:02:40.000000000", + "2019-01-07T15:03:24.000000000", + "2019-01-07T15:06:10.000000000", + "2019-01-07T15:07:31.000000000", + "2019-01-07T15:07:47.000000000", + "2019-01-07T15:08:46.000000000", + "2019-01-07T15:08:51.000000000", + "2019-01-07T15:09:09.000000000", + "2019-01-07T15:10:13.000000000", + "2019-01-07T15:10:20.000000000", + "2019-01-07T15:10:47.000000000", + "2019-01-07T15:12:36.000000000", + "2019-01-07T15:12:54.000000000", + "2019-01-07T15:13:44.000000000", + "2019-01-07T15:13:50.000000000", + "2019-01-07T15:16:59.000000000", + "2019-01-07T15:17:20.000000000", + "2019-01-07T15:17:33.000000000", + "2019-01-07T15:17:53.000000000", + "2019-01-07T15:18:33.000000000", + "2019-01-07T15:18:47.000000000", + "2019-01-07T15:19:37.000000000", + "2019-01-07T15:19:56.000000000", + "2019-01-07T15:20:14.000000000", + "2019-01-07T15:20:47.000000000", + "2019-01-07T15:21:32.000000000", + "2019-01-07T15:22:29.000000000", + "2019-01-07T15:22:31.000000000", + "2019-01-07T15:23:04.000000000", + "2019-01-07T15:23:06.000000000", + "2019-01-07T15:23:10.000000000", + "2019-01-07T15:23:38.000000000", + "2019-01-07T15:24:16.000000000", + "2019-01-07T15:25:52.000000000", + "2019-01-07T15:26:26.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:10.000000000", + "2019-01-07T15:27:18.000000000", + "2019-01-07T15:27:29.000000000", + "2019-01-07T15:28:42.000000000", + "2019-01-07T15:28:52.000000000", + "2019-01-07T15:29:37.000000000", + "2019-01-07T15:29:42.000000000", + "2019-01-07T15:30:09.000000000", + "2019-01-07T15:30:54.000000000", + "2019-01-07T15:32:15.000000000", + "2019-01-07T15:32:21.000000000", + "2019-01-07T15:32:24.000000000", + "2019-01-07T15:32:48.000000000", + "2019-01-07T15:33:31.000000000", + "2019-01-07T15:34:32.000000000", + "2019-01-07T15:34:36.000000000", + "2019-01-07T15:34:50.000000000", + "2019-01-07T15:35:15.000000000", + "2019-01-07T15:35:46.000000000", + "2019-01-07T15:36:18.000000000", + "2019-01-07T15:38:40.000000000", + "2019-01-07T15:39:20.000000000", + "2019-01-07T15:40:42.000000000", + "2019-01-07T15:42:50.000000000", + "2019-01-07T15:43:02.000000000", + "2019-01-07T15:43:58.000000000", + "2019-01-07T15:45:34.000000000", + "2019-01-07T15:48:03.000000000", + "2019-01-07T15:49:01.000000000", + "2019-01-07T15:50:21.000000000", + "2019-01-07T15:51:06.000000000", + "2019-01-07T15:52:46.000000000", + "2019-01-07T15:52:56.000000000", + "2019-01-07T15:54:29.000000000", + "2019-01-07T15:54:44.000000000", + "2019-01-07T15:56:34.000000000", + "2019-01-07T15:56:40.000000000", + "2019-01-07T15:59:16.000000000", + "2019-01-07T15:59:59.000000000", + "2019-01-07T16:01:15.000000000", + "2019-01-07T16:02:34.000000000", + "2019-01-07T16:03:19.000000000", + "2019-01-07T16:03:56.000000000", + "2019-01-07T16:04:48.000000000", + "2019-01-07T16:06:47.000000000", + "2019-01-07T16:07:23.000000000", + "2019-01-07T16:09:10.000000000", + "2019-01-07T16:10:30.000000000", + "2019-01-07T16:10:45.000000000", + "2019-01-07T16:10:52.000000000", + "2019-01-07T16:10:58.000000000", + "2019-01-07T16:11:16.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:55.000000000", + "2019-01-07T16:11:58.000000000", + "2019-01-07T16:12:14.000000000", + "2019-01-07T16:13:08.000000000", + "2019-01-07T16:14:47.000000000", + "2019-01-07T16:15:50.000000000", + "2019-01-07T16:15:55.000000000", + "2019-01-07T16:17:00.000000000", + "2019-01-07T16:17:27.000000000", + "2019-01-07T16:17:41.000000000", + "2019-01-07T16:17:46.000000000", + "2019-01-07T16:18:09.000000000", + "2019-01-07T16:18:42.000000000", + "2019-01-07T16:19:22.000000000", + "2019-01-07T16:20:53.000000000", + "2019-01-07T16:21:32.000000000", + "2019-01-07T16:26:22.000000000", + "2019-01-07T16:26:40.000000000", + "2019-01-07T16:27:28.000000000", + "2019-01-07T16:27:32.000000000", + "2019-01-07T16:29:07.000000000", + "2019-01-07T16:29:40.000000000", + "2019-01-07T16:29:56.000000000", + "2019-01-07T16:31:08.000000000", + "2019-01-07T16:31:10.000000000", + "2019-01-07T16:31:24.000000000", + "2019-01-07T16:31:55.000000000", + "2019-01-07T16:32:27.000000000", + "2019-01-07T16:33:15.000000000", + "2019-01-07T16:34:54.000000000", + "2019-01-07T16:35:06.000000000", + "2019-01-07T16:35:13.000000000", + "2019-01-07T16:36:21.000000000", + "2019-01-07T16:40:15.000000000", + "2019-01-07T16:40:27.000000000", + "2019-01-07T16:40:50.000000000", + "2019-01-07T16:42:41.000000000", + "2019-01-07T16:43:06.000000000", + "2019-01-07T16:44:00.000000000", + "2019-01-07T16:44:05.000000000", + "2019-01-07T16:44:17.000000000", + "2019-01-07T16:45:43.000000000", + "2019-01-07T16:47:00.000000000", + "2019-01-07T16:47:48.000000000", + "2019-01-07T16:47:54.000000000", + "2019-01-07T16:48:14.000000000", + "2019-01-07T16:48:28.000000000", + "2019-01-07T16:48:39.000000000", + "2019-01-07T16:51:00.000000000", + "2019-01-07T16:53:11.000000000", + "2019-01-07T16:53:36.000000000", + "2019-01-07T16:58:40.000000000", + "2019-01-07T16:59:33.000000000", + "2019-01-07T17:00:56.000000000", + "2019-01-07T17:01:11.000000000", + "2019-01-07T17:02:04.000000000", + "2019-01-07T17:02:06.000000000", + "2019-01-07T17:02:12.000000000", + "2019-01-07T17:03:04.000000000", + "2019-01-07T17:03:36.000000000", + "2019-01-07T17:03:40.000000000", + "2019-01-07T17:04:04.000000000", + "2019-01-07T17:05:10.000000000", + "2019-01-07T17:06:20.000000000", + "2019-01-07T17:08:10.000000000", + "2019-01-07T17:10:31.000000000", + "2019-01-07T17:11:38.000000000", + "2019-01-07T17:12:00.000000000", + "2019-01-07T17:12:08.000000000", + "2019-01-07T17:13:10.000000000", + "2019-01-07T17:13:53.000000000", + "2019-01-07T17:14:00.000000000", + "2019-01-07T17:14:19.000000000", + "2019-01-07T17:14:37.000000000", + "2019-01-07T17:15:38.000000000", + "2019-01-07T17:18:17.000000000", + "2019-01-07T17:18:55.000000000", + "2019-01-07T17:19:01.000000000", + "2019-01-07T17:19:48.000000000", + "2019-01-07T17:21:56.000000000", + "2019-01-07T17:22:58.000000000", + "2019-01-07T17:24:43.000000000", + "2019-01-07T17:24:44.000000000", + "2019-01-07T17:26:03.000000000", + "2019-01-07T17:26:33.000000000", + "2019-01-07T17:27:46.000000000", + "2019-01-07T17:28:15.000000000", + "2019-01-07T17:29:33.000000000", + "2019-01-07T17:29:57.000000000", + "2019-01-07T17:30:37.000000000", + "2019-01-07T17:30:58.000000000", + "2019-01-07T17:33:50.000000000", + "2019-01-07T17:36:31.000000000", + "2019-01-07T17:40:25.000000000", + "2019-01-07T17:40:56.000000000", + "2019-01-07T17:40:57.000000000", + "2019-01-07T17:41:05.000000000", + "2019-01-07T17:41:40.000000000", + "2019-01-07T17:41:49.000000000", + "2019-01-07T17:42:45.000000000", + "2019-01-07T17:44:43.000000000", + "2019-01-07T17:44:48.000000000", + "2019-01-07T17:45:13.000000000", + "2019-01-07T17:46:37.000000000", + "2019-01-07T17:47:49.000000000", + "2019-01-07T17:47:56.000000000", + "2019-01-07T17:48:21.000000000", + "2019-01-07T17:48:56.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:52:22.000000000", + "2019-01-07T17:55:15.000000000", + "2019-01-07T17:58:33.000000000", + "2019-01-07T18:00:20.000000000", + "2019-01-07T18:01:10.000000000", + "2019-01-07T18:01:29.000000000", + "2019-01-07T18:01:43.000000000", + "2019-01-07T18:02:13.000000000", + "2019-01-07T18:03:47.000000000", + "2019-01-07T18:07:28.000000000", + "2019-01-07T18:09:09.000000000", + "2019-01-07T18:10:29.000000000", + "2019-01-07T18:11:04.000000000", + "2019-01-07T18:13:44.000000000", + "2019-01-07T18:14:41.000000000", + "2019-01-07T18:14:59.000000000", + "2019-01-07T18:15:36.000000000", + "2019-01-07T18:16:30.000000000", + "2019-01-07T18:16:44.000000000", + "2019-01-07T18:16:46.000000000", + "2019-01-07T18:18:01.000000000", + "2019-01-07T18:19:02.000000000", + "2019-01-07T18:19:05.000000000", + "2019-01-07T18:20:15.000000000", + "2019-01-07T18:20:24.000000000", + "2019-01-07T18:21:23.000000000", + "2019-01-07T18:21:48.000000000", + "2019-01-07T18:22:13.000000000", + "2019-01-07T18:22:19.000000000", + "2019-01-07T18:22:38.000000000", + "2019-01-07T18:23:29.000000000", + "2019-01-07T18:25:47.000000000", + "2019-01-07T18:26:12.000000000", + "2019-01-07T18:26:52.000000000", + "2019-01-07T18:27:09.000000000", + "2019-01-07T18:27:25.000000000", + "2019-01-07T18:28:31.000000000", + "2019-01-07T18:29:57.000000000", + "2019-01-07T18:30:04.000000000", + "2019-01-07T18:32:16.000000000", + "2019-01-07T18:32:53.000000000", + "2019-01-07T18:33:48.000000000", + "2019-01-07T18:33:58.000000000", + "2019-01-07T18:35:25.000000000", + "2019-01-07T18:36:00.000000000", + "2019-01-07T18:36:08.000000000", + "2019-01-07T18:37:32.000000000", + "2019-01-07T18:38:49.000000000", + "2019-01-07T18:42:37.000000000", + "2019-01-07T18:44:55.000000000", + "2019-01-07T18:44:56.000000000", + "2019-01-07T18:45:08.000000000", + "2019-01-07T18:46:10.000000000", + "2019-01-07T18:49:40.000000000", + "2019-01-07T18:51:24.000000000", + "2019-01-07T18:51:53.000000000", + "2019-01-07T18:52:01.000000000", + "2019-01-07T18:52:35.000000000", + "2019-01-07T18:53:48.000000000", + "2019-01-07T18:54:13.000000000", + "2019-01-07T18:56:21.000000000", + "2019-01-07T18:56:58.000000000", + "2019-01-07T18:57:42.000000000", + "2019-01-07T18:58:49.000000000", + "2019-01-07T19:00:22.000000000", + "2019-01-07T19:02:06.000000000", + "2019-01-07T19:02:13.000000000", + "2019-01-07T19:02:15.000000000", + "2019-01-07T19:03:39.000000000", + "2019-01-07T19:03:44.000000000", + "2019-01-07T19:06:11.000000000", + "2019-01-07T19:06:22.000000000", + "2019-01-07T19:08:05.000000000", + "2019-01-07T19:08:45.000000000", + "2019-01-07T19:11:28.000000000", + "2019-01-07T19:12:51.000000000", + "2019-01-07T19:13:41.000000000", + "2019-01-07T19:13:44.000000000", + "2019-01-07T19:14:56.000000000", + "2019-01-07T19:15:14.000000000", + "2019-01-07T19:16:24.000000000", + "2019-01-07T19:16:34.000000000", + "2019-01-07T19:17:20.000000000", + "2019-01-07T19:18:21.000000000", + "2019-01-07T19:19:07.000000000", + "2019-01-07T19:19:33.000000000", + "2019-01-07T19:20:53.000000000", + "2019-01-07T19:21:16.000000000", + "2019-01-07T19:22:43.000000000", + "2019-01-07T19:22:58.000000000", + "2019-01-07T19:26:05.000000000", + "2019-01-07T19:26:07.000000000", + "2019-01-07T19:26:13.000000000", + "2019-01-07T19:27:23.000000000", + "2019-01-07T19:28:01.000000000", + "2019-01-07T19:29:41.000000000", + "2019-01-07T19:30:16.000000000", + "2019-01-07T19:30:22.000000000", + "2019-01-07T19:30:25.000000000", + "2019-01-07T19:30:47.000000000", + "2019-01-07T19:32:59.000000000", + "2019-01-07T19:33:36.000000000", + "2019-01-07T19:34:10.000000000", + "2019-01-07T19:34:52.000000000", + "2019-01-07T19:35:23.000000000", + "2019-01-07T19:38:16.000000000", + "2019-01-07T19:38:18.000000000", + "2019-01-07T19:38:47.000000000", + "2019-01-07T19:39:45.000000000", + "2019-01-07T19:39:50.000000000", + "2019-01-07T19:40:48.000000000", + "2019-01-07T19:41:16.000000000", + "2019-01-07T19:42:24.000000000", + "2019-01-07T19:43:09.000000000", + "2019-01-07T19:44:07.000000000", + "2019-01-07T19:44:22.000000000", + "2019-01-07T19:44:42.000000000", + "2019-01-07T19:47:22.000000000", + "2019-01-07T19:48:07.000000000", + "2019-01-07T19:48:23.000000000", + "2019-01-07T19:49:53.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:51:25.000000000", + "2019-01-07T19:52:28.000000000", + "2019-01-07T19:52:45.000000000", + "2019-01-07T19:52:52.000000000", + "2019-01-07T19:56:35.000000000", + "2019-01-07T19:59:05.000000000", + "2019-01-07T20:00:25.000000000", + "2019-01-07T20:01:14.000000000", + "2019-01-07T20:01:20.000000000", + "2019-01-07T20:01:46.000000000", + "2019-01-07T20:01:47.000000000", + "2019-01-07T20:04:02.000000000", + "2019-01-07T20:04:14.000000000", + "2019-01-07T20:07:00.000000000", + "2019-01-07T20:08:32.000000000", + "2019-01-07T20:11:29.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:12:23.000000000", + "2019-01-07T20:13:41.000000000", + "2019-01-07T20:16:22.000000000", + "2019-01-07T20:18:24.000000000", + "2019-01-07T20:18:39.000000000", + "2019-01-07T20:19:22.000000000", + "2019-01-07T20:20:35.000000000", + "2019-01-07T20:21:25.000000000", + "2019-01-07T20:22:52.000000000", + "2019-01-07T20:23:41.000000000", + "2019-01-07T20:32:51.000000000", + "2019-01-07T20:33:56.000000000", + "2019-01-07T20:34:52.000000000", + "2019-01-07T20:35:25.000000000", + "2019-01-07T20:36:27.000000000", + "2019-01-07T20:39:11.000000000", + "2019-01-07T20:42:25.000000000", + "2019-01-07T20:43:18.000000000", + "2019-01-07T20:43:28.000000000", + "2019-01-07T20:45:30.000000000", + "2019-01-07T20:45:45.000000000", + "2019-01-07T20:46:10.000000000", + "2019-01-07T20:47:16.000000000", + "2019-01-07T20:47:20.000000000", + "2019-01-07T20:47:26.000000000", + "2019-01-07T20:48:38.000000000", + "2019-01-07T20:49:33.000000000", + "2019-01-07T20:49:43.000000000", + "2019-01-07T20:51:31.000000000", + "2019-01-07T20:52:22.000000000", + "2019-01-07T20:53:33.000000000", + "2019-01-07T20:54:04.000000000", + "2019-01-07T20:55:24.000000000", + "2019-01-07T20:56:08.000000000", + "2019-01-07T20:57:22.000000000", + "2019-01-07T20:57:30.000000000", + "2019-01-07T20:58:00.000000000", + "2019-01-07T20:59:33.000000000", + "2019-01-07T21:01:06.000000000", + "2019-01-07T21:01:19.000000000", + "2019-01-07T21:01:43.000000000", + "2019-01-07T21:03:37.000000000", + "2019-01-07T21:03:45.000000000", + "2019-01-07T21:04:37.000000000", + "2019-01-07T21:06:54.000000000", + "2019-01-07T21:07:33.000000000", + "2019-01-07T21:07:41.000000000", + "2019-01-07T21:09:00.000000000", + "2019-01-07T21:11:30.000000000", + "2019-01-07T21:12:41.000000000", + "2019-01-07T21:14:34.000000000", + "2019-01-07T21:14:42.000000000", + "2019-01-07T21:15:47.000000000", + "2019-01-07T21:15:49.000000000", + "2019-01-07T21:16:53.000000000", + "2019-01-07T21:18:39.000000000", + "2019-01-07T21:19:04.000000000", + "2019-01-07T21:20:05.000000000", + "2019-01-07T21:20:29.000000000", + "2019-01-07T21:20:50.000000000", + "2019-01-07T21:21:28.000000000", + "2019-01-07T21:23:26.000000000", + "2019-01-07T21:23:31.000000000", + "2019-01-07T21:24:18.000000000", + "2019-01-07T21:25:49.000000000", + "2019-01-07T21:26:42.000000000", + "2019-01-07T21:27:30.000000000", + "2019-01-07T21:27:42.000000000", + "2019-01-07T21:28:10.000000000", + "2019-01-07T21:30:39.000000000", + "2019-01-07T21:32:14.000000000", + "2019-01-07T21:32:27.000000000", + "2019-01-07T21:35:11.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:22.000000000", + "2019-01-07T21:35:30.000000000", + "2019-01-07T21:37:19.000000000", + "2019-01-07T21:38:08.000000000", + "2019-01-07T21:38:11.000000000", + "2019-01-07T21:38:33.000000000", + "2019-01-07T21:39:03.000000000", + "2019-01-07T21:40:51.000000000", + "2019-01-07T21:41:21.000000000", + "2019-01-07T21:42:55.000000000", + "2019-01-07T21:43:30.000000000", + "2019-01-07T21:43:59.000000000", + "2019-01-07T21:44:51.000000000", + "2019-01-07T21:45:42.000000000", + "2019-01-07T21:48:22.000000000", + "2019-01-07T21:48:57.000000000", + "2019-01-07T21:49:42.000000000", + "2019-01-07T21:50:48.000000000", + "2019-01-07T21:51:14.000000000", + "2019-01-07T21:51:41.000000000", + "2019-01-07T21:51:46.000000000", + "2019-01-07T21:52:38.000000000", + "2019-01-07T21:53:55.000000000", + "2019-01-07T21:53:57.000000000", + "2019-01-07T21:54:15.000000000", + "2019-01-07T21:56:30.000000000", + "2019-01-07T21:57:11.000000000", + "2019-01-07T21:57:15.000000000", + "2019-01-07T21:57:41.000000000", + "2019-01-07T21:59:05.000000000", + "2019-01-07T21:59:13.000000000", + "2019-01-07T22:01:26.000000000", + "2019-01-07T22:05:14.000000000", + "2019-01-07T22:05:55.000000000", + "2019-01-07T22:06:48.000000000", + "2019-01-07T22:07:49.000000000", + "2019-01-07T22:08:37.000000000", + "2019-01-07T22:12:30.000000000", + "2019-01-07T22:12:58.000000000", + "2019-01-07T22:13:10.000000000", + "2019-01-07T22:14:17.000000000", + "2019-01-07T22:14:32.000000000", + "2019-01-07T22:14:58.000000000", + "2019-01-07T22:15:10.000000000", + "2019-01-07T22:15:30.000000000", + "2019-01-07T22:16:40.000000000", + "2019-01-07T22:17:11.000000000", + "2019-01-07T22:18:02.000000000", + "2019-01-07T22:20:17.000000000", + "2019-01-07T22:20:40.000000000", + "2019-01-07T22:21:51.000000000", + "2019-01-07T22:22:10.000000000", + "2019-01-07T22:22:26.000000000", + "2019-01-07T22:24:52.000000000", + "2019-01-07T22:24:59.000000000", + "2019-01-07T22:25:26.000000000", + "2019-01-07T22:26:45.000000000", + "2019-01-07T22:26:58.000000000", + "2019-01-07T22:28:48.000000000", + "2019-01-07T22:30:42.000000000", + "2019-01-07T22:31:17.000000000", + "2019-01-07T22:31:20.000000000", + "2019-01-07T22:31:38.000000000", + "2019-01-07T22:31:46.000000000", + "2019-01-07T22:32:47.000000000", + "2019-01-07T22:33:28.000000000", + "2019-01-07T22:34:16.000000000", + "2019-01-07T22:34:20.000000000", + "2019-01-07T22:34:36.000000000", + "2019-01-07T22:35:41.000000000", + "2019-01-07T22:37:25.000000000", + "2019-01-07T22:37:27.000000000", + "2019-01-07T22:38:05.000000000", + "2019-01-07T22:39:10.000000000", + "2019-01-07T22:39:21.000000000", + "2019-01-07T22:40:05.000000000", + "2019-01-07T22:40:25.000000000", + "2019-01-07T22:40:49.000000000", + "2019-01-07T22:41:31.000000000", + "2019-01-07T22:42:13.000000000", + "2019-01-07T22:42:27.000000000", + "2019-01-07T22:42:40.000000000", + "2019-01-07T22:43:33.000000000", + "2019-01-07T22:44:48.000000000", + "2019-01-07T22:45:51.000000000", + "2019-01-07T22:47:41.000000000", + "2019-01-07T22:47:55.000000000", + "2019-01-07T22:48:03.000000000", + "2019-01-07T22:49:30.000000000", + "2019-01-07T22:51:00.000000000", + "2019-01-07T22:52:44.000000000", + "2019-01-07T22:53:35.000000000", + "2019-01-07T22:53:53.000000000", + "2019-01-07T22:56:35.000000000", + "2019-01-07T22:58:50.000000000", + "2019-01-07T22:59:07.000000000", + "2019-01-07T23:00:06.000000000", + "2019-01-07T23:08:30.000000000", + "2019-01-07T23:09:38.000000000", + "2019-01-07T23:10:21.000000000", + "2019-01-07T23:10:40.000000000", + "2019-01-07T23:11:05.000000000", + "2019-01-07T23:14:01.000000000", + "2019-01-07T23:14:39.000000000", + "2019-01-07T23:14:44.000000000", + "2019-01-07T23:16:26.000000000", + "2019-01-07T23:19:06.000000000", + "2019-01-07T23:19:58.000000000", + "2019-01-07T23:20:46.000000000", + "2019-01-07T23:20:49.000000000", + "2019-01-07T23:21:58.000000000", + "2019-01-07T23:23:04.000000000", + "2019-01-07T23:25:11.000000000", + "2019-01-07T23:26:26.000000000", + "2019-01-07T23:27:14.000000000", + "2019-01-07T23:27:21.000000000", + "2019-01-07T23:28:16.000000000", + "2019-01-07T23:29:24.000000000", + "2019-01-07T23:30:44.000000000", + "2019-01-07T23:32:09.000000000", + "2019-01-07T23:33:08.000000000", + "2019-01-07T23:33:20.000000000", + "2019-01-07T23:34:52.000000000", + "2019-01-07T23:34:56.000000000", + "2019-01-07T23:35:31.000000000", + "2019-01-07T23:35:59.000000000", + "2019-01-07T23:38:21.000000000", + "2019-01-07T23:38:55.000000000", + "2019-01-07T23:42:27.000000000", + "2019-01-07T23:43:23.000000000", + "2019-01-07T23:43:40.000000000", + "2019-01-07T23:45:29.000000000", + "2019-01-07T23:47:01.000000000", + "2019-01-07T23:47:15.000000000", + "2019-01-07T23:47:55.000000000", + "2019-01-07T23:48:12.000000000", + "2019-01-07T23:49:23.000000000", + "2019-01-07T23:49:45.000000000", + "2019-01-07T23:50:07.000000000", + "2019-01-07T23:51:07.000000000", + "2019-01-07T23:51:52.000000000", + "2019-01-07T23:53:18.000000000", + "2019-01-07T23:53:19.000000000", + "2019-01-07T23:53:56.000000000", + "2019-01-07T23:55:56.000000000" + ], + "y": [ + 2.658715579535068, + 2.739076934414142, + 2.7454757342067593, + 2.710543239840633, + 2.788330786121294, + 2.7323954599748097, + 2.751928293785356, + 2.7479043297696237, + 2.724324846845603, + 2.7861636933966967, + 2.7985686767618483, + 2.920669966937796, + 2.931830770033722, + 2.9025283725849333, + 3.0004221227676995, + 2.8955423109631697, + 3.065039514432886, + 2.9767956076753133, + 3.0008721292528415, + 3.0271770658147807, + 3.0589889445372362, + 3.0185128362491565, + 3.0792063836718695, + 3.156638459867962, + 3.0477604097248125, + 3.1197891579157813, + 3.172803960926571, + 3.163605714954814, + 3.2513226921146634, + 3.1474473721507246, + 3.2679716370764984, + 3.2334569756781466, + 3.341360617652321, + 3.2922860956375026, + 3.3868763835190547, + 3.4056135435223904, + 3.315520705822637, + 3.413229917116371, + 3.337541461759259, + 3.3451012940503007, + 3.475280349492969, + 3.507647816317972, + 3.454857867481697, + 3.4657521132625937, + 3.526716147941957, + 3.5155421269076967, + 3.5504239376422206, + 3.5277271415542244, + 3.67395784322363, + 3.6128876052817556, + 3.677465368665376, + 3.704551307976476, + 3.680884241257162, + 3.757736653693133, + 3.709921623640636, + 3.7449340932794097, + 3.8373810407271587, + 3.848907607701545, + 3.8586258704641834, + 3.842152333899866, + 3.8713784798981656, + 3.8886491476578326, + 3.8773085214003635, + 3.933091616470601, + 4.095352149378051, + 3.9946060013396893, + 4.06966642298414, + 4.019467685609611, + 3.9516214212782734, + 4.081199766283185, + 4.18469811477652, + 4.142864003365535, + 4.254894985745608, + 4.231590818804145, + 4.3807649457557725, + 4.259356319794664, + 4.281714573692311, + 4.331651724237117, + 4.385379964883334, + 4.2755826731635675, + 4.498098370396296, + 4.480521377705368, + 4.420344845341261, + 4.523554317195243, + 4.482899772192646, + 4.477024007667223, + 4.558004579446713, + 4.616372209628189, + 4.583495494800891, + 4.603795167961112, + 4.625453168412986, + 4.671689673682468, + 4.747799133202506, + 4.781618802813597, + 4.770169406619321, + 4.800300279000248, + 4.799084710347166, + 4.882174722939419, + 4.6730911289974895, + 4.878977038628382, + 4.988612181203562, + 4.957274901991995, + 4.939279339561035, + 4.976371571447716, + 5.044904256925577, + 4.962730198715455, + 5.056396556651824, + 5.1037716589667905, + 5.1896024617430045, + 5.191311765661259, + 5.182756156122784, + 5.224945051710498, + 5.192176603900526, + 5.274228609458551, + 5.3203461056857995, + 5.219143369111616, + 5.2563072853493455, + 5.343043648395024, + 5.340558679934658, + 5.401564983556393, + 5.499880869024929, + 5.486836137656711, + 5.536888987880933, + 5.486983366774857, + 5.5236183225588364, + 5.590801886927703, + 5.692551247196493, + 5.677393522453967, + 5.713430836936082, + 5.6217238123154765, + 5.690758607688198, + 5.78412398625731, + 5.839826984625181, + 5.939858883673381, + 5.891755517083775, + 5.897336107996632, + 5.918130420759171, + 5.936815411624635, + 5.991016549503366, + 5.917692259794817, + 5.952439357899299, + 5.978894719333138, + 6.0956751701344345, + 6.058157000058887, + 6.0281458308060705, + 6.16535357130481, + 6.140250773845033, + 6.195567643839167, + 6.169020730122257, + 6.281673295219558, + 6.333117004133728, + 6.313823336337856, + 6.318804514085917, + 6.416468631886627, + 6.326737597055945, + 6.454839327225073, + 6.45513611466366, + 6.482782299950836, + 6.5022315727377356, + 6.536419952302568, + 6.676592300348122, + 6.610851513470432, + 6.697672311005645, + 6.662087741330778, + 6.677439738784177, + 6.781617950236038, + 6.781426499694114, + 6.835086139151434, + 6.763760790756797, + 6.937843740397072, + 6.944461714871716, + 6.9449891927058625, + 6.896709245530682, + 6.983441669254836, + 7.0204425176001894, + 6.9511682363998535, + 7.047900597119701, + 7.235139913331753, + 7.087610399043471, + 7.104977459797106, + 7.1990687632052275, + 7.207026049512182, + 7.23004832816283, + 7.206940770573231, + 7.310201640852586, + 7.250314648211952, + 7.342284063659534, + 7.406640045840895, + 7.4204536058964115, + 7.443142947643237, + 7.476528044176055, + 7.524044811011993, + 7.546643173411637, + 7.6185533536096965, + 7.655513899692838, + 7.708621697134041, + 7.648630573097751, + 7.747096957647192, + 7.711538480936006, + 7.697085339516195, + 7.853874812592719, + 7.900856981754169, + 7.81061608746047, + 7.9553380087124115, + 7.8837183029408076, + 7.944754026925375, + 8.019824239537519, + 8.06162509042404, + 7.97528353544556, + 8.0131142456932, + 8.01208426916423, + 8.139393442329034, + 8.111944249797535, + 8.176537152694447, + 8.267102674659977, + 8.211609619310781, + 8.260812877632501, + 8.334424385396249, + 8.373370452768278, + 8.377236946612479, + 8.507190964395804, + 8.51021228535302, + 8.411712852746623, + 8.43104473835026, + 8.528701919084497, + 8.538523188792126, + 8.519334428816196, + 8.624373350941488, + 8.570999210894277, + 8.616947845558027, + 8.756813559784073, + 8.757577438268731, + 8.691043363388737, + 8.774150951361342, + 8.788418827364806, + 8.805517553612368, + 8.911974086704278, + 8.914191818168739, + 8.894215588318124, + 9.036494922898415, + 9.130929517198188, + 8.982866328339997, + 9.044925108604815, + 9.049315153088191, + 9.071047719767135, + 9.148844172616256, + 9.226500343248503, + 9.188319801550026, + 9.260477504149605, + 9.283821560778168, + 9.328303772505468, + 9.358754249788486, + 9.29321768710325, + 9.420063856026491, + 9.40725022212301, + 9.4063912620516, + 9.4596091089889, + 9.519621855545703, + 9.589079527149293, + 9.621895022072154, + 9.647801568050316, + 9.722927755162164, + 9.652510557373704, + 9.724535025382094, + 9.74723004255879, + 9.799538304068625, + 9.76008895145456, + 9.810655225921513, + 9.822264480735736, + 9.896903333224698, + 9.973221823759802, + 9.91308506568031, + 10.000152882198016, + 9.99113738003937, + 10.060643956580183, + 9.972631003522473, + 9.9971610781056, + 10.111752880718683, + 10.09802587915434, + 10.193191636302933, + 10.268690318263229, + 10.29335879164018, + 10.347491257229068, + 10.212228038298097, + 10.309105593125006, + 10.310175275348078, + 10.467900317381616, + 10.41092219335461, + 10.45999792761157, + 10.391433821145231, + 10.508307664529493, + 10.577872411498056, + 10.570405489537116, + 10.548470127796294, + 10.542900539277037, + 10.647417400274671, + 10.662214772817553, + 10.61242256526359, + 10.672149424269715, + 10.715497537969373, + 10.702318616792395, + 10.791167498199929, + 10.895113018928727, + 10.960993570616822, + 10.948313619117428, + 11.019324833533016, + 11.01790274855159, + 11.029912598159251, + 10.975847389786411, + 11.027459795980018, + 11.070779054430913, + 11.216346945155987, + 11.093181680012414, + 11.295647304449512, + 11.23798088350977, + 11.25042296651107, + 11.186228389248994, + 11.28672981128792, + 11.291070045249084, + 11.279044606658, + 11.355179491604371, + 11.48320736517879, + 11.387909832673836, + 11.460920568346474, + 11.40504233023204, + 11.543914101535913, + 11.574140655143127, + 11.600664488485014, + 11.529134183367605, + 11.594248771475048, + 11.706489745156425, + 11.675196157009328, + 11.624475250417614, + 11.66727486669159, + 11.759300830788241, + 11.780767811128346, + 11.698857795746733, + 11.807231290109861, + 11.804505971726627, + 11.921081227451904, + 11.94159884842117, + 11.945297898919286, + 11.970691202144907, + 11.868786771646398, + 11.878546054872638, + 11.981726528705394, + 12.072830260964745, + 12.039407300601512, + 12.121296550660878, + 12.09407284051806, + 12.15355592592257, + 12.141310792979171, + 12.153005296612783, + 12.270775342883985, + 12.220311933886205, + 12.227182003330899, + 12.365983812170699, + 12.343163518345055, + 12.381331671088137, + 12.337062998221262, + 12.404015295964683, + 12.486900583817734, + 12.495913157317663, + 12.552984558785184, + 12.504529175048578, + 12.635456928140078, + 12.472549762681659, + 12.575941877656271, + 12.62350541004397, + 12.58313496357006, + 12.696640505251473, + 12.673733364482587, + 12.663335665799208, + 12.712148869632507, + 12.713266593244766, + 12.782282554247656, + 12.851988425287498, + 12.839560518632378, + 12.829349507919732, + 12.769461430931354, + 12.895850427571096, + 12.906468195012366, + 12.940971579386163, + 12.990954026465182, + 13.088536615661768, + 12.997580145950783, + 13.061657235093403, + 13.037442211957282, + 13.073719193798714, + 13.037305538243599, + 13.20477769499787, + 13.14988450393174, + 13.180759049547552, + 13.136200602060182, + 13.282070262680794, + 13.313668609901033, + 13.233576662244017, + 13.33639576305172, + 13.275798660217465, + 13.33033078082017, + 13.398648455536943, + 13.422290105798643, + 13.47413775338705, + 13.426539859062222, + 13.479181129140198, + 13.43062202347891, + 13.530533136556606, + 13.450172462683328, + 13.54553273162581, + 13.570885345097254, + 13.596049248429324, + 13.497287840763201, + 13.599061819612052, + 13.54755531443495, + 13.718051244579081, + 13.668194769481092, + 13.62549066166613, + 13.774932447451636, + 13.687026385678505, + 13.746454827948178, + 13.75524855528691, + 13.77075908484657, + 13.849712799653876, + 13.803568814151724, + 13.793055776445094, + 13.841146429312854, + 13.94613679588834, + 13.918236676898065, + 13.916020631483043, + 13.9226962242142, + 14.007628316000266, + 13.912864348752889, + 13.956448117768307, + 13.961114318807269, + 14.136545651587074, + 14.06697722963732, + 14.095761194931203, + 14.083932394898556, + 14.071741702725518, + 14.157094081368124, + 14.156289046120671, + 14.175321037198248, + 14.095571966349402, + 14.091172851921549, + 14.116314653265972, + 14.22885966637875, + 14.274847219319314, + 14.160603666511534, + 14.202895112318396, + 14.161945464647925, + 14.27123784705797, + 14.348379774391605, + 14.2886483681069, + 14.33108981728394, + 14.393932040671347, + 14.395593490361756, + 14.436114281909328, + 14.40885429181239, + 14.430013003954562, + 14.458996310370718, + 14.43905447054201, + 14.489151518810173, + 14.515152775886476, + 14.52105021139371, + 14.571088368653294, + 14.564295907947836, + 14.624941775829056, + 14.540006438917256, + 14.546998216185136, + 14.680974547160371, + 14.600131596877437, + 14.677179901663107, + 14.612049491973778, + 14.639979490458023, + 14.670159401028105, + 14.630885087078177, + 14.811164627067898, + 14.696853036734412, + 14.73126082819364, + 14.74807930939939, + 14.735832958567268, + 14.806303830357937, + 14.798092153915087, + 14.768285242496745, + 14.794600421466413, + 14.785070054820473, + 14.855994082099455, + 14.797707163238291, + 14.901643359492663, + 14.862980155196292, + 14.941470727770017, + 14.860198103498847, + 14.848925507667627, + 14.924397986744829, + 14.976186537607783, + 14.914782757584447, + 14.97221566224144, + 14.994743388457126, + 14.982740722970748, + 14.917378213414457, + 15.02821098673838, + 14.987096511206119, + 14.991591409459119, + 14.932838913707798, + 15.001124359930417, + 14.992398692999691, + 15.115348168973563, + 15.094052130916541, + 15.016718262270228, + 15.06760874119045, + 15.08733846283786, + 15.110121755962554, + 15.051298772059829, + 15.107730627281382, + 15.129084394991077, + 15.149297779248311, + 15.154645392409272, + 15.11318225560021, + 15.16335054786622, + 15.11177808655726, + 15.144300709695539, + 15.13025309224599, + 15.209581530092574, + 15.180090480457846, + 15.173043795384034, + 15.16062004223881, + 15.18842199876241, + 15.12733064515834, + 15.212331816875123, + 15.271485277780442, + 15.209262057762094, + 15.163620602503954, + 15.224846877340363, + 15.201278115608156, + 15.211656511007316, + 15.28436587560152, + 15.234400493076706, + 15.330365887034148, + 15.303964077793033, + 15.209217841448936, + 15.320358890726675, + 15.362378388629558, + 15.326430180377933, + 15.342355623390764, + 15.357313597548613, + 15.328672911375413, + 15.320943654391256, + 15.392423999463293, + 15.343580142359615, + 15.343335730065105, + 15.428339693975609, + 15.386647329038379, + 15.349196344645044, + 15.294955655525026, + 15.328346654969087, + 15.33872251934443, + 15.319425544298133, + 15.32649743318318, + 15.352939951472028, + 15.334885612611277, + 15.380678964109203, + 15.40049825809622, + 15.4387042482675, + 15.410526426499084, + 15.424248931913588, + 15.412115375406625, + 15.345502688516872, + 15.329482616056977, + 15.43379483451145, + 15.354460498060153, + 15.394100532684483, + 15.36744431036402, + 15.406699112653982, + 15.337738653222248, + 15.302202206601729, + 15.44047420834836, + 15.387232988912613, + 15.421237882920304, + 15.40658604237511, + 15.41437899120314, + 15.384320196201939, + 15.39839661659708, + 15.30548889073897, + 15.43703503148428, + 15.414685499107815, + 15.405781121162539, + 15.431767963839832, + 15.405732388042784, + 15.465346050240976, + 15.413006591495359, + 15.37979018634622, + 15.45167094111154, + 15.38518240907875, + 15.351671905997797, + 15.4597433664928, + 15.388370979079667, + 15.361548569474998, + 15.422085385121493, + 15.424594975009066, + 15.384306994762477, + 15.460954894932879, + 15.447548072611873, + 15.468912758229001, + 15.415780414845761, + 15.353977314390256, + 15.520722953499645, + 15.478541768139479, + 15.33373025930925, + 15.308958012642456, + 15.388849165025265, + 15.39729983531569, + 15.328509279852398, + 15.378117962565275, + 15.379897673958157, + 15.287295188739394, + 15.36176683365919, + 15.28130635572321, + 15.246648595130143, + 15.33421529457246, + 15.43070473506929, + 15.280683080497116, + 15.25587809225891, + 15.303427986394135, + 15.237668776130992, + 15.257936053219858, + 15.234459150333272, + 15.184532433690736, + 15.225427325997995, + 15.252914195581097, + 15.21941976479071, + 15.198397424477845, + 15.210457284943644, + 15.199082247414017, + 15.266249896122773, + 15.214466730293701, + 15.218235225373212, + 15.131591341678057, + 15.15747795050369, + 15.18897612913432, + 15.075492528237671, + 15.2122250011846, + 15.01034688286857, + 15.116466405318869, + 15.101855344732211, + 15.129863986107814, + 15.052095765585184, + 15.131040532785244, + 15.152787563611078, + 15.137397601439893, + 15.048441633989766, + 15.053798419234592, + 15.05339846787211, + 15.0343810075321, + 15.115283778166576, + 15.06767665827247, + 14.978795393616336, + 15.08457450751126, + 15.044111008346045, + 15.030040269397507, + 15.04263824611655, + 14.91980768749105, + 14.95968123602268, + 14.918721863823256, + 14.937559325494295, + 14.845698774849957, + 14.963877057017136, + 14.974223305941868, + 14.927111811704414, + 14.931053523149007, + 14.968955582478701, + 14.856501154469568, + 14.813452407510278, + 14.844248900942294, + 14.809893546831006, + 14.822729074478662, + 14.772720684641477, + 14.760799576396419, + 14.808454043877118, + 14.868123897740622, + 14.700033114433621, + 14.659455030248255, + 14.758475686612066, + 14.707782275732052, + 14.63884677315473, + 14.671313440329419, + 14.733919858658423, + 14.656653893831862, + 14.58676843160351, + 14.589799309581874, + 14.561497200885732, + 14.660831145121616, + 14.529073952845485, + 14.528080609609257, + 14.490551387554383, + 14.453947911771992, + 14.570467400167407, + 14.529224641585026, + 14.474077148487439, + 14.391958856826728, + 14.564523814868341, + 14.461638972316821, + 14.491073243197796, + 14.467797886412377, + 14.396563391480921, + 14.34881681458638, + 14.454038392621028, + 14.388227647686003, + 14.320213835952412, + 14.324994028145698, + 14.306668042305645, + 14.324240691476572, + 14.374687786170044, + 14.251467818908758, + 14.212178081328338, + 14.266455882804005, + 14.185534922838896, + 14.205004327159928, + 14.169075979627584, + 14.220483700045769, + 14.133861012710014, + 14.129475567497005, + 14.036528319763931, + 14.097618906357003, + 14.054583025080856, + 14.042344523741628, + 14.104516256359009, + 14.134957903422091, + 14.125891247881038, + 13.994069971416616, + 13.992201604600243, + 13.8944385854915, + 13.981109144633114, + 13.916052127834105, + 13.881828922317318, + 13.920451650413176, + 13.908905316384224, + 13.833116785201668, + 13.901183461105491, + 13.763331552314437, + 13.83014372926829, + 13.81981067363701, + 13.699633464791438, + 13.761110397079797, + 13.788050206001495, + 13.638758284198758, + 13.682823553886104, + 13.61429773469036, + 13.686159121851377, + 13.662245948683584, + 13.489735664113846, + 13.613926861748865, + 13.621476546315607, + 13.57413777320558, + 13.474270674642066, + 13.452298180079323, + 13.474734679269217, + 13.46697922726555, + 13.557254405168477, + 13.301344684623963, + 13.387331323138694, + 13.414080854629823, + 13.252522265321495, + 13.32201333234687, + 13.267643526335641, + 13.219581890663408, + 13.26098790649427, + 13.293235868792273, + 13.215530149213757, + 13.168249578861344, + 13.119932627312746, + 13.143660689749117, + 13.105785482848862, + 13.118854451567335, + 13.058354352314817, + 13.060749231423104, + 13.077538155199854, + 13.005211233902097, + 12.996310743492879, + 12.945040389782237, + 12.908836009711319, + 12.85130298268044, + 12.785922508285296, + 12.89558513372554, + 12.859726853789272, + 12.774561614853837, + 12.770665554979542, + 12.757410216304558, + 12.694567291906262, + 12.732253977797662, + 12.639005217176464, + 12.645941171806534, + 12.642816309446602, + 12.57947422368073, + 12.550273374529011, + 12.490069245602214, + 12.462609634681874, + 12.420110582772631, + 12.52428876824412, + 12.455881642242565, + 12.39363520956475, + 12.42413797336672, + 12.417774914490709, + 12.406851192831423, + 12.353750527234066, + 12.359812193316369, + 12.347301626751285, + 12.287342338463743, + 12.300877919658737, + 12.245968870081116, + 12.200707264145015, + 12.268213731958344, + 12.184237534259665, + 12.012359424262451, + 12.059446582279575, + 12.063682224519415, + 11.985530287437385, + 12.0161842260913, + 11.989882916211776, + 11.89480785638434, + 11.89804044170905, + 11.999681626331355, + 11.937464251175799, + 11.952330283773163, + 11.836274313788532, + 11.720185720821366, + 11.742055765108828, + 11.781537515236808, + 11.72225601820542, + 11.691833646872508, + 11.592293464077537, + 11.663587840388061, + 11.602030780618504, + 11.617374782742555, + 11.46230366472839, + 11.545470765940603, + 11.482191329757617, + 11.385035810110361, + 11.452870079557158, + 11.415977254371859, + 11.447121917186736, + 11.345351147556492, + 11.276466689058381, + 11.35651890094817, + 11.227392637124854, + 11.307281357102989, + 11.138311316122856, + 11.113157440358224, + 11.149921730573643, + 11.064450274359896, + 11.036033995057544, + 11.148279745369734, + 11.072756256510282, + 10.995886524395036, + 11.075000712335077, + 10.935417919013673, + 10.907923172604836, + 10.851922107412602, + 10.780310973181304, + 10.862933161219553, + 10.781138982248942, + 10.745841909297939, + 10.831972072855647, + 10.79241262681278, + 10.698153096672238, + 10.715641768271094, + 10.646731885029777, + 10.575621823677764, + 10.65671186632854, + 10.570870738931045, + 10.647611017704273, + 10.447030250803017, + 10.578084047128748, + 10.423511174500252, + 10.348036863248206, + 10.378210288412653, + 10.382388664581985, + 10.333529071516203, + 10.34340083073414, + 10.214400252654197, + 10.218946793809687, + 10.247955053954058, + 10.143802321912865, + 10.095804177969619, + 10.076074965081961, + 10.126445463969516, + 10.064260136386299, + 9.95234949805721, + 10.049959643656557, + 9.925004961542967, + 9.90596806987158, + 9.88918488921904, + 9.811559991278974, + 9.899168585255829, + 9.821174396928134, + 9.745228553397261, + 9.73069935038739, + 9.60573084408207, + 9.78387705910891, + 9.635005260379753, + 9.6319534924962, + 9.596105867647198, + 9.588450364497232, + 9.584373378455137, + 9.509425075547025, + 9.5152725499603, + 9.426367393425675, + 9.302899714693265, + 9.348462774085682, + 9.43852710537526, + 9.255822866048494, + 9.298079821267383, + 9.337867445976778, + 9.344070680602826, + 9.228798892672241, + 9.248617286165638, + 9.13787563663948, + 9.154713779756513, + 9.145531701767128, + 9.101670541187838, + 8.976281543930655, + 8.96641025567316, + 9.017572032614511, + 8.98334713918077, + 8.918952589507436, + 8.817512585896239, + 8.873874824597065, + 8.787068573517868, + 8.80212679460136, + 8.796739931745028, + 8.726161066090441, + 8.69292985764977, + 8.598699729354978, + 8.589325504754694, + 8.570473139733783, + 8.64106577610235, + 8.47633550139419, + 8.50003608203443, + 8.46680842963467, + 8.421344878845872, + 8.341985430182083, + 8.386303738555908, + 8.322137630868232, + 8.307570683376248, + 8.344483955359557, + 8.287721473112459, + 8.348923453746076, + 8.349575403490341, + 8.161360679949935, + 8.06714537801986, + 8.175112466680103, + 8.105781865764818, + 8.05451438333612, + 7.968021589645713, + 8.060819070854288, + 7.975540413103721, + 7.91852995159767, + 7.998624361119044, + 7.948297190608027, + 7.799342232018168, + 7.844327353171561, + 7.866441337612542, + 7.774758868817135, + 7.727673164730075, + 7.6862539091546065, + 7.639530636606753, + 7.702043443298603, + 7.629638995400442, + 7.541459218782063, + 7.580973314630069, + 7.553424022012793, + 7.482528059990509, + 7.517189444414837, + 7.473291226504984, + 7.371745080056588, + 7.414290295560254, + 7.348426664236934, + 7.223843668802856, + 7.356385801939967, + 7.240947337673275, + 7.1968490823171845, + 7.235871981292731, + 7.192170886285793, + 7.134939954295362, + 7.168188965158533, + 7.032990089423909, + 7.146102420345332, + 6.9928622778527325, + 6.939373047048965, + 6.9730186505068055, + 6.961544878018233, + 6.884246281106529, + 6.938901654850183, + 6.8507533251991894, + 6.833848517674035, + 6.71262656374066, + 6.666715873415956, + 6.754896501462175, + 6.637392350380597, + 6.707474025488731, + 6.561961133737569, + 6.5383095121140755, + 6.585899843884829, + 6.500638475444508, + 6.477764140870513, + 6.4125508713338535, + 6.49556112164406, + 6.300778655926668, + 6.36594727609778, + 6.3324616255573005, + 6.333290409922949, + 6.261344109381679, + 6.25592619629389, + 6.212714793711207, + 6.16935638234756, + 6.230586647564276, + 6.118031146725361, + 6.179582698032832, + 6.082061976994761, + 6.176288034123914, + 6.0269481102657405, + 6.056417423764294, + 5.984674811967396, + 5.986307453104129, + 5.8854588397630065, + 5.976258603278034, + 5.832647538146451, + 5.838392648978558, + 5.817680768059245, + 5.816161382805878, + 5.71888228497476, + 5.715593508299506, + 5.673622154128143, + 5.734894896910607, + 5.58286816403954, + 5.546793710153719, + 5.549235051467301, + 5.557421300284037, + 5.547648707519005, + 5.476073874858493, + 5.5249727367345445, + 5.395479810637913, + 5.474384658581113, + 5.37544911321294, + 5.257894573948501, + 5.310235882241059, + 5.336481838913194, + 5.2638614184115005, + 5.235426513173771, + 5.27861062980838, + 5.262291742468413, + 5.041042708865886, + 5.156942313103285, + 5.100024756338782, + 5.118022689931967, + 4.994083313874742, + 5.051991404614618, + 5.011382744850913, + 4.984624407158783, + 5.0417346438260555, + 4.964624563412338, + 4.854500735814472, + 4.921026358422687, + 4.907395521223637, + 4.916264403291465, + 4.79056331079678, + 4.77080476876534, + 4.788048891889662, + 4.721389642150866, + 4.704077050462174, + 4.700384036780947, + 4.623880759100329, + 4.612036303306528, + 4.617483221441973, + 4.5695883262322745, + 4.5008009208089605, + 4.5300720047063665, + 4.417290998074258, + 4.381729207869474, + 4.401547037750789, + 4.431165767013381, + 4.339150405104924, + 4.340289180348855, + 4.413008164099306, + 4.230816091865114, + 4.299223394683174, + 4.183826168550022, + 4.277598861238782, + 4.2501109130637476, + 4.1821686033398535, + 4.273754952057884, + 4.192569898448905, + 4.183075608210291, + 4.097675522702487, + 4.04284764212882, + 3.9904973031151467, + 3.9350651583320126, + 3.9989233222048086, + 3.8955107585862794, + 4.036018214142875, + 3.971641370962075, + 3.848896191905198, + 3.937332215594198, + 3.9363818544020224, + 3.814343529732479, + 3.889547671266725, + 3.7528068075511434, + 3.7311150449507253, + 3.84155941869019, + 3.749878157092809, + 3.5718198057854416, + 3.643273976259122, + 3.58526596574059, + 3.7553767437571364, + 3.7073642987002344, + 3.7212046746330167, + 3.5634835492062034, + 3.491615994531875, + 3.4937489265262833, + 3.464549702282061, + 3.5279759604778467, + 3.4400046816678396, + 3.454291486731662, + 3.4334135387548055, + 3.3368507295182557, + 3.416829595796687, + 3.299333039129662, + 3.3751138863403622, + 3.235762759968201, + 3.301547652348113, + 3.365304319697062, + 3.306117551140927, + 3.249988669694078, + 3.2039968272197057, + 3.1812906829708902, + 3.153616582995778, + 3.1163585593664838, + 3.136115361144285, + 3.1630646770741286, + 3.0631382903107127, + 3.069475561810018, + 3.0420068711877146, + 3.0187362827776334, + 3.1519571718585295, + 3.013524787888014, + 2.96757981785315, + 2.876329263751352, + 2.971507281412899, + 2.9201160994512136, + 2.89639506148163, + 2.883169106816096, + 2.799429345550563, + 2.7927748355889266, + 2.8273315392712983, + 2.7769549667762607, + 2.7810861253054666, + 2.7611983062547254, + 2.60972166500485, + 2.708987225589983, + 2.765403772025762, + 2.739641229381629, + 2.7176622120986322, + 2.6973651292804135, + 2.7111623368421114, + 2.6043652178469068, + 2.6014871459238433, + 2.5819076351402996, + 2.6660648870568515, + 2.4912958232797306, + 2.5817850599094605, + 2.460213961496983, + 2.5293274805292207, + 2.4731830958392744, + 2.392425052458707, + 2.5053649475997997, + 2.439392704622837, + 2.40902525909333, + 2.3973393303488297, + 2.380194378702091, + 2.3989557800790453, + 2.364790410143164, + 2.3091969917098734, + 2.326905312314915, + 2.277954497966115, + 2.2865097829573413, + 2.356833215848901, + 2.2815415755496047, + 2.287393271255699, + 2.2958973374645804, + 2.2061921100858863, + 2.1733012348683793, + 2.1982749544770135, + 2.195335934481806, + 2.1285416031862585, + 2.085161528694788, + 2.1560185588476495, + 2.13358455228372, + 2.099294593467203, + 2.0482337995526207, + 2.1429579432950043, + 2.050842442598343, + 2.025285401420296, + 2.0449931866515034, + 2.1670291931030725, + 1.9027800789341258, + 1.8954067562844965, + 1.9310411604760096, + 2.0283600438692915, + 2.077078254944903, + 1.9399502583482593, + 1.9040841354224978, + 1.9598196936722665, + 2.01938036464899, + 1.9493521504975513, + 1.902013225010383, + 1.9134265046374956, + 1.9459968625195028, + 1.845896215867077, + 1.836876531333778, + 1.8899801624947543, + 1.793437283646801, + 1.8800557064808872, + 1.8106226645994759, + 1.8198962807095118, + 1.7672394404347638, + 1.7096497859178617, + 1.8155729162922996, + 1.8169413290408611, + 1.7248462261519144, + 1.8336991526292035, + 1.7736250599263477, + 1.7851575320825046, + 1.7511737291236278, + 1.7311399416397792, + 1.6522209237000047, + 1.774547038421692, + 1.645486840869487, + 1.6934039738236997, + 1.72889480306082, + 1.5675972721975284, + 1.594264093535647, + 1.6550265144360818, + 1.5973119659329338, + 1.622577676076505, + 1.6363096060374889, + 1.6299711363687617, + 1.5862041957872821, + 1.5208530635977926, + 1.611206526940167, + 1.6312274290736177, + 1.6278804645567018, + 1.4995908433880867, + 1.506955419519465, + 1.5399692732956463, + 1.558112221567569, + 1.5952057459676343, + 1.4924732755244234, + 1.4796988885670788, + 1.5925270246634189, + 1.5166675475883604, + 1.5407004964089457, + 1.5852939994842248, + 1.5740015950568917, + 1.4820782455454542, + 1.45407443824919, + 1.455652068715724, + 1.455955114968084, + 1.5122050772035254, + 1.4651370608483245, + 1.4154867805398048, + 1.4813175545451713, + 1.5204607405880737, + 1.4405165483454059, + 1.4811755757000058, + 1.4843391381157738, + 1.4322993947913654, + 1.4718923556975294, + 1.4272074530704837, + 1.374125737134815, + 1.3774353848818812, + 1.357578529635784, + 1.4910611112684637, + 1.4217632987819606, + 1.4555284483554851, + 1.344958673079006, + 1.3834808403636643, + 1.4346583891043616, + 1.4504041111959363, + 1.365539247167242, + 1.3947345705427072, + 1.4155476657389645, + 1.3898811152070787, + 1.3992883245795147, + 1.4063836887773273, + 1.3970727767108864, + 1.3478910856560395, + 1.3671660559362826, + 1.4623106417669298, + 1.4329840404654863, + 1.5014587217829123, + 1.3715891742400101, + 1.3632920175242063, + 1.298452142288266, + 1.4408625064657825, + 1.3701754124795538, + 1.420362955185405, + 1.479285703893482, + 1.3727636606584013, + 1.3103655502725609, + 1.4179725970028048, + 1.4082192213942648, + 1.4522212298077557, + 1.391392786053215, + 1.483928056714176, + 1.3276038189287556, + 1.419032029739918, + 1.3998138610320126, + 1.4598825314929296, + 1.4384306387797337, + 1.4712164538438859, + 1.3847996443792392, + 1.4011719146527932, + 1.439606971070695, + 1.4404706414273043, + 1.4356516446389127, + 1.412961868294762, + 1.4554541441093294, + 1.457581940257794, + 1.4949372345163974, + 1.4432703852227915, + 1.3710918170290076, + 1.5491487207542467, + 1.4652232360474222, + 1.407039670146995, + 1.4114777244564873, + 1.4848366276651355, + 1.527288566073905, + 1.4305364251780852, + 1.595715193995163, + 1.4572836360271972, + 1.4853240666495782, + 1.4174789429084418, + 1.454042807587932, + 1.4381473359623294, + 1.6904599733821475, + 1.5451583544972167, + 1.5055661624338803, + 1.638381460397006, + 1.5065629813048445, + 1.5564937867356377, + 1.5585311121652858, + 1.6031243109060938, + 1.552966674903881, + 1.540484016935957, + 1.5828511899737678, + 1.7142483191698008, + 1.6419529529647565, + 1.634120141559839, + 1.53725232466887, + 1.6046024797331098, + 1.6839132560424854, + 1.6439280251000845, + 1.6164043282217948, + 1.6485731109377315, + 1.733309096793731, + 1.647067380148871, + 1.6650820939256774, + 1.6403710088100876, + 1.650045194532021, + 1.6451244881565346, + 1.693727856631428, + 1.7200077475694768, + 1.7333950648001326, + 1.7436116603137783, + 1.6833007520170038, + 1.8122648766375093, + 1.7632254500092919, + 1.7913970348088333, + 1.8976271693651645, + 1.7662519205744662, + 1.7973246594603243, + 1.8572636961550333, + 1.8643323421064542, + 1.8271951090363143, + 1.8618519389546881, + 1.8958025198585358, + 1.8236885709951947, + 1.8168059906349678, + 1.895472337180889, + 1.859690964011671, + 1.9722668534088583, + 1.827628655564592, + 1.9169272865571398, + 1.9672043436997286, + 1.9264742710263967, + 1.9970777363090044, + 2.041079464578108, + 2.0225242759435886, + 2.0179618959655223, + 2.040964494901208, + 2.0467231003493467, + 2.0850954214346404, + 2.114216150873884, + 2.0766860394116526, + 2.082116008708378, + 2.1373315609013277, + 2.142497286201275, + 2.2232564692552597, + 2.1936061712227732, + 2.2354891320865793, + 2.134846064862465, + 2.1498678205717483, + 2.2175101385080636, + 2.1906235518339336, + 2.2424966325683924, + 2.2747662013818553, + 2.252917738707545, + 2.374441829952224, + 2.2241542067163285, + 2.4196333241750727, + 2.330504356328225, + 2.334557186748623, + 2.278190870025871, + 2.369371049966068, + 2.3657037292556624, + 2.412158303596371, + 2.4913493608096875, + 2.495547363777433, + 2.4012747972874546, + 2.4589276319059983, + 2.4163014826466593, + 2.408186840032398, + 2.409279963660749, + 2.607942748306746, + 2.5404905290791797, + 2.527845115257851, + 2.5799393256024192, + 2.590697970358613, + 2.5048145602606526, + 2.593348115906133, + 2.593679968339323, + 2.6418685980415524, + 2.655877359929272, + 2.7053477313522345, + 2.7122096211103357, + 2.7137489238348076, + 2.763678718569516, + 2.7526828557912126, + 2.732109728089246, + 2.8457452646167365, + 2.8942197245332535, + 2.8915952976136317, + 2.8272589443427147, + 2.915480624048754, + 2.8576583319480933, + 2.861020410130373, + 2.9409158065756205, + 2.9204218401339768, + 2.985284563956412, + 2.984996743484518, + 2.947823349909323, + 3.0007454462216345, + 3.072302713646446, + 3.0148314422773255, + 3.0540297906926512, + 3.02477071213125, + 3.158475578857061, + 3.1618210798503195, + 3.238904383817267, + 3.1372140545936937, + 3.277835618563131, + 3.2661117957978285, + 3.217421071557447, + 3.27969010801522, + 3.2602457730935295, + 3.2516416480847297, + 3.3898916532884646, + 3.2787315161257142, + 3.418554703909129, + 3.438058746017533, + 3.478986810655161, + 3.448052033308509, + 3.4673687056144504, + 3.5376060104137155, + 3.504402878615343, + 3.4863190403741866, + 3.5383730040326102, + 3.4926852663398855, + 3.599537456675927, + 3.5958574176458953, + 3.6204623133568044, + 3.679835143084698, + 3.700522000550261, + 3.6393045014625094, + 3.7812289447984107, + 3.746659913542504, + 3.75868736731258, + 3.7756352309948635, + 3.799508611599113, + 3.858188191724105, + 3.9418337838675654, + 3.959860095001116, + 3.966657269078445, + 3.9341107990834647, + 3.966258675537237, + 4.023292168170867, + 3.9072894463603345, + 4.022502879151333, + 4.133672699321215, + 4.086464654892479, + 4.175574973787481, + 4.09201009242591, + 4.0969952879298805, + 4.201284909756235, + 4.259787646101338, + 4.175380691511063, + 4.2528776686026495, + 4.265744845442124, + 4.290407207879074, + 4.352432487669675, + 4.292134753687166, + 4.370315252719878, + 4.384039476686556, + 4.41361288212926, + 4.459476049680492, + 4.472350488545071, + 4.585415954468914, + 4.482562485832531, + 4.542534606828294, + 4.604773698925363, + 4.610439225389872, + 4.590876843161091, + 4.635618811761201, + 4.6808682090719245, + 4.641621902698285, + 4.77759441929128, + 4.675508158449676, + 4.838976123330602, + 4.8356420942155545, + 4.909419490967355, + 4.903791524997623, + 4.872741817649814, + 4.967047493443767, + 4.938736124871798, + 5.087383844435212, + 4.970390149001152, + 5.032832996642218, + 5.154948529659976, + 5.1364419033221775, + 5.051339784972474, + 5.0837390838152485, + 5.212717684867517, + 5.243528325454471, + 5.258746762515917, + 5.243550428440335, + 5.332297973815191, + 5.271411445830455, + 5.379672661526384, + 5.331422844669578, + 5.414864833755075, + 5.406470700540884, + 5.42593503826125, + 5.483142021470975, + 5.463870681346534, + 5.550581077777157, + 5.545401002855289, + 5.532411699556634, + 5.6762113389823705, + 5.70441781830247, + 5.633179682261649, + 5.715377432875455, + 5.745797483370399, + 5.793027305092408, + 5.831228228496306, + 5.753772559717962, + 5.853057909882585, + 5.7943175523387085, + 5.921065908674502, + 5.961144181190479, + 5.957284258454784, + 6.008146507346079, + 5.975079179876144, + 6.059500987416875, + 6.093322219931003, + 6.0523819894963555, + 6.100691537671038, + 6.122228132012919, + 6.131719045723101, + 6.169530718899456, + 6.202160766749669, + 6.30679803549738, + 6.276750091368102, + 6.2557729365307475, + 6.356319071767134, + 6.389695841198824, + 6.3181703874071475, + 6.4628873370202005, + 6.417675895167855, + 6.525791210420009, + 6.599436664104107, + 6.505796225941895, + 6.559462730831996, + 6.63131098499924, + 6.708077272826879, + 6.670243470757976, + 6.754609182292364, + 6.717420736737793, + 6.833779436397436, + 6.728575216118142, + 6.841159175280116, + 6.7183858996793875, + 6.8558126042844485, + 6.888147696219425, + 6.962599524400239, + 6.9143415317565875, + 6.99756475477453, + 6.9717566668414435, + 7.096643608074682, + 7.084521262110311, + 7.13546051088516, + 7.1767241182557715, + 7.106042578341267, + 7.207393415714293, + 7.233545932938262, + 7.298511505063208, + 7.273764114984038, + 7.338139184053054, + 7.3505161817649585, + 7.378298529792922, + 7.356878750056015, + 7.4453215339880945, + 7.538464127148584, + 7.435621522298311, + 7.526421654523371, + 7.5204392834862395, + 7.5889683032793185, + 7.747070391072398, + 7.631268753926653, + 7.734841966357198, + 7.781932834458491, + 7.754548284829355, + 7.7534908205004225, + 7.797789581350822, + 7.883598938481482, + 7.851910193304022, + 7.939751641601794, + 7.954175735205713, + 7.911792281356675, + 7.922032845720032, + 8.04205368820216, + 8.050971820599635, + 8.07712075355534, + 8.104382158294017, + 8.136569246653035, + 8.11705647051896, + 8.192465575803979, + 8.292740591476397, + 8.228598173541444, + 8.20752488006984, + 8.385456048710601, + 8.286769942499246, + 8.369201053760554, + 8.440136981714117, + 8.47697473466652, + 8.463984383736214, + 8.510369888889578, + 8.486645415890708, + 8.546424300008422, + 8.7289516586634, + 8.609424161551775, + 8.714839259811908, + 8.738423640707076, + 8.794702232042455, + 8.782321799278218, + 8.826051610144729, + 8.798239064543129, + 8.87122798379241, + 8.911050364908675, + 8.979827348136169, + 8.986070962494251, + 9.026960547047285, + 8.972123031838917, + 9.05584961230704, + 9.081517322432225, + 9.109026732890916, + 9.102756798586334, + 9.168817325794805, + 9.242888088132592, + 9.264819377830895, + 9.233382823836696, + 9.208767241504658, + 9.351996221283747, + 9.277822397298428, + 9.43356158302511, + 9.382473354999444, + 9.476217504303587, + 9.502838370390569, + 9.501691399134133, + 9.495453706898008, + 9.506392346988255, + 9.582411894565453, + 9.652164065514366, + 9.677348728731296, + 9.57775569886026, + 9.7055816144194, + 9.732284766549432, + 9.700788099327713, + 9.787214006357077, + 9.758350721306526, + 9.920204949424509, + 9.796845947900078, + 9.9816416428158, + 10.013489736232563, + 9.903061149126035, + 9.906624676926624, + 10.033705626820346, + 10.064471569246178, + 10.102143535048242, + 10.194183153505415, + 10.153501100682009, + 10.17233183114577, + 10.196001676618073, + 10.180870736611208, + 10.208821113471094, + 10.336357806314721, + 10.292923607198793, + 10.34560383361306, + 10.378231579143812, + 10.409956368400392, + 10.444448872125152, + 10.456536348253932, + 10.526555957148423, + 10.613472818846935, + 10.59547297120713, + 10.643189703643138, + 10.568617153046755, + 10.717558821330181, + 10.624880761311688, + 10.684082339850109, + 10.690363260430715, + 10.715381126298528, + 10.738857191526503, + 10.813183404475716, + 10.876479545747216, + 10.856482706630551, + 10.963566411673854, + 10.852630867283779, + 10.981455159513388, + 10.942761329962416, + 11.023796487382327, + 11.053926070165545, + 11.075770140036648, + 11.21359121848136, + 11.175880783991868, + 11.19233296360417, + 11.22952203582338, + 11.22946197971842, + 11.351211962002743, + 11.246704797109569, + 11.39428622323336, + 11.249609063316756, + 11.272013957173511, + 11.349844746446525, + 11.451296339789582, + 11.484507580299079, + 11.449509627254772, + 11.45238710500169, + 11.553038177690759, + 11.527407528102021, + 11.623371939652218, + 11.570263744188834, + 11.581115448041558, + 11.673413410263386, + 11.724658834052063, + 11.703122901431842, + 11.776266439797158, + 11.804527585010163, + 11.818590902366621, + 11.785183861182327, + 11.937054874170933, + 11.973453641788339, + 11.990818433831652, + 11.956014786886438, + 11.97933629916027, + 11.986924024669115, + 12.002108500654888, + 12.028432484286798, + 12.028295957322452, + 12.04003410572297, + 12.117982017321127, + 12.059370245778313, + 12.110519638746505, + 12.181460945575047, + 12.260964574455695, + 12.141292468520861, + 12.260990497667066, + 12.207483222559919, + 12.329465592335886, + 12.278548058893401, + 12.33419883008368, + 12.36369978121028, + 12.445243492993615, + 12.445870616270081, + 12.351235569087747, + 12.555755810630327, + 12.564877311002482, + 12.6528247182608, + 12.562011578735602, + 12.554766043527113, + 12.659831517908051, + 12.652561312063396, + 12.595868098298135, + 12.630424453568173, + 12.735607885511312, + 12.828623040065454, + 12.783088730354583, + 12.70096061657994, + 12.761662787460159, + 12.818989190566372, + 12.851449825787018, + 12.848078728072936, + 12.885233680674038, + 12.890558058709393, + 12.93766133004571, + 12.915766901381268, + 12.89738824910804, + 13.147872396107585, + 13.041184046407626, + 13.021568285679997, + 13.131201964603248, + 13.181289350210315, + 13.090227679451015, + 13.13262999591983, + 13.199754700360657, + 13.1917509597419, + 13.103068044699882, + 13.192635438732648, + 13.309580578863379, + 13.269903184604777, + 13.327592082049192, + 13.384891627224063, + 13.26918005456968, + 13.328768583883058, + 13.325781518881692, + 13.439254137291718, + 13.459457915823956, + 13.437642070701605, + 13.441206345584083, + 13.471901273685292, + 13.490180943800418, + 13.540055219357692, + 13.487826642760911, + 13.527091212110719, + 13.543350426002332, + 13.607796519095459, + 13.574723228903462, + 13.631295572464788, + 13.671210152000155, + 13.631258023254771, + 13.613469767439444, + 13.71967118026216, + 13.803171662717718, + 13.800367164041946, + 13.90392832886588, + 13.803838623481141, + 13.793221277404994, + 13.848739469206986, + 13.869232668255039, + 13.859443232825864, + 13.89051141414494, + 13.925135366699251, + 13.92806967903233, + 13.987761297480594, + 14.07405605642542, + 14.027594607694136, + 14.014360112175558, + 13.988834931086926, + 14.101688722817938, + 14.053354955196092, + 14.124981543155737, + 14.080662374751808, + 14.171704621571543, + 14.06352195724585, + 14.281360116154868, + 14.159251251790936, + 14.232934911476887, + 14.227940355698047, + 14.157976483072979, + 14.200068592473334, + 14.274317302883238, + 14.332936156323322, + 14.339911876370165, + 14.306336692762443, + 14.409414605506365, + 14.271813436129046, + 14.30738354762738, + 14.421212618160855, + 14.386299806770154, + 14.51461024650133, + 14.363264595305521, + 14.355893328054503, + 14.484172611177883, + 14.448002274924114, + 14.438795123038693, + 14.596355312382764, + 14.476101201410366, + 14.556289620590494, + 14.478143150595685, + 14.671262366066912, + 14.460917138460923, + 14.516634031183594, + 14.579042498545672, + 14.640764850724569, + 14.575907767730687, + 14.565722267651562, + 14.607525680341384, + 14.6941136283664, + 14.677396346748923, + 14.680239659858307, + 14.70975226617517, + 14.720524558509595, + 14.680808298928754, + 14.734100417361892, + 14.76867628441012, + 14.874926520432043, + 14.858566651769014, + 14.961496247227265, + 14.726518467460586, + 14.856701431796212, + 14.892790871979594, + 14.84321176928493, + 14.866741381670325, + 14.89226745910116, + 14.819641616750921, + 14.922698798522694, + 14.84271279786551, + 14.861590080593778, + 14.987387678938303, + 14.976019284696957, + 14.96606430998297, + 15.001423649234585, + 14.965334116723232, + 15.019610642764517, + 15.033911726496278, + 15.032592851297926, + 15.119737775192661, + 15.126606604866723, + 14.984247422862618, + 15.094337068982954, + 15.043428708043574, + 15.055133058575757, + 15.045192346659508, + 15.113831123884257, + 15.040275354254774, + 15.168626878304043, + 15.148481819141116, + 15.160399418689247, + 15.130964513248081, + 15.109828422951816, + 15.207517802368248, + 15.211825253927959, + 15.192247828547679, + 15.233222612580922, + 15.149228674601078, + 15.17671635167634, + 15.171211023090722, + 15.191891932900345, + 15.196925361292923, + 15.236120966819444, + 15.228090620287588, + 15.152868841889202, + 15.192904823339425, + 15.22385869045782, + 15.311970124417472, + 15.216202042048524, + 15.204895285430739, + 15.087017657314345, + 15.304111485244016, + 15.356381180277952, + 15.368244253356613, + 15.23220326432244, + 15.279691821086574, + 15.24153905893773, + 15.320204992534045, + 15.219240042752055, + 15.325455485114055, + 15.312613854869479, + 15.257868897448585, + 15.275319238075033, + 15.302175620713856, + 15.4397899679807, + 15.331228621659445, + 15.298247734393977, + 15.432817911528362, + 15.318892756067907, + 15.391644503772866, + 15.381140313271015, + 15.375489425510457, + 15.35614247286221, + 15.397961530411026, + 15.360587971282053, + 15.406800402906395, + 15.410831688812445, + 15.348377241505647, + 15.4058887214299, + 15.399072295120943, + 15.43012189136747, + 15.400545545776518, + 15.323191884854474, + 15.394201920062693, + 15.391251288611674, + 15.458206102072253, + 15.40907057759976, + 15.36437310489758, + 15.317922278024902, + 15.444252885756802, + 15.463355790171136, + 15.356742842451958, + 15.339133611279525, + 15.323288530211782, + 15.356561715135117, + 15.41047133211345, + 15.466583345382418, + 15.431555840304744, + 15.401270030301221, + 15.48664396753877, + 15.339893860463686, + 15.383917481144252, + 15.384230677473882, + 15.375149321652827, + 15.338744496350909, + 15.35749249023484, + 15.48637853444388, + 15.33281106307397, + 15.320512256649113, + 15.365677347805569, + 15.24163503157683, + 15.287744353392783, + 15.370608922418425, + 15.347523200947553, + 15.414162840009501, + 15.32983941096334, + 15.285691219102421, + 15.442149360419105, + 15.495543752153926, + 15.253692163782798, + 15.381321394548882, + 15.321834780827938, + 15.364858689248713, + 15.400673608126937, + 15.306978404123344, + 15.325102109662348, + 15.366119642810252, + 15.361746858794083, + 15.355664342000209, + 15.206924036856105, + 15.354333098981554, + 15.335440933104266, + 15.415824734790238, + 15.27886402887588, + 15.289685384626768, + 15.279121892679472, + 15.332402021487006, + 15.358424202488884, + 15.334285046662343, + 15.264865944158226, + 15.225968750225954, + 15.240201942460075, + 15.236404705948535, + 15.228751366027327, + 15.211086877357626, + 15.244938488496619, + 15.243572227397761, + 15.237304197660174, + 15.101441488489195, + 15.190869430613258, + 15.220874057998149, + 15.170300025187078, + 15.145605088531807, + 15.158836638460304, + 15.198986667460717, + 15.169235455530742, + 15.243685166916956, + 15.183930111343313, + 15.153688768161745, + 15.10881558288912, + 15.06713851746131, + 15.14860289979145, + 15.024430581502816, + 15.007417559358656, + 15.11758705948731, + 15.046529763923141, + 15.045164132386237, + 15.01611147416522, + 15.063304175953531, + 15.01588085516318, + 15.060809283729046, + 15.164929253406013, + 15.088895623621868, + 14.963628380071015, + 14.933170015565597, + 14.989914510866132, + 14.883469072553893, + 14.929405735454802, + 14.926625766751714, + 14.990262461627994, + 14.79146682044618, + 14.854499832484912, + 14.91550443626754, + 14.945086700488412, + 14.891880047122902, + 14.830786537282053, + 14.906362395154588, + 14.844095202323349, + 14.789502464696241, + 14.777301341881817, + 14.83516856108646, + 14.747617373819539, + 14.803445362800229, + 14.820633156426306, + 14.654493486818852, + 14.760056328085797, + 14.7654940802955, + 14.679572947871266, + 14.665419473470303, + 14.69624153976321, + 14.706160075382078, + 14.605843582161276, + 14.735821516230335, + 14.680272289864764, + 14.585963785867722, + 14.643198028430765, + 14.569140818680847, + 14.460166907224941, + 14.608694960084055, + 14.57558675528502, + 14.530315172616556, + 14.526892670938516, + 14.529696162509506, + 14.451587907063233, + 14.537918295346383, + 14.495818408658801, + 14.425576845127349, + 14.380152953048528, + 14.435999633446336, + 14.519101358934284, + 14.375937701695182, + 14.36837399719393, + 14.38148727731087, + 14.328733100280102, + 14.311895673164193, + 14.297409445363458, + 14.25252698401394, + 14.28585268831528, + 14.242579650031763, + 14.179479168382324, + 14.206779390705261, + 14.188690982082877, + 14.156540904124101, + 14.224676390225515, + 14.134145846282106, + 14.199532648616229, + 14.115907293471677, + 14.219438924320123, + 14.082077732871257, + 14.024200267317767, + 13.952675396714994, + 14.0251401941819, + 14.055230926245821, + 14.09242407096498, + 14.045891406825733, + 13.912281095673029, + 13.950108774431149, + 13.85690451132951, + 13.877534701847456, + 13.742414343496945, + 13.843492631801313, + 13.845567087799383, + 13.82389746475067, + 13.821780333768052, + 13.683067833413302, + 13.805190027918568, + 13.688250253916152, + 13.674608673492585, + 13.606852314155333, + 13.755139200648262, + 13.696867473579069, + 13.683855923006362, + 13.622626690769575, + 13.520499338261207, + 13.640078102768255, + 13.520528676068688, + 13.52928513233762, + 13.474497507988271, + 13.498333780725792, + 13.599912593631185, + 13.437429285949046, + 13.503188389802386, + 13.414514750078473, + 13.37166475322526, + 13.45046751655068, + 13.338976478926243, + 13.261893443643892, + 13.283306378043422, + 13.333291904199802, + 13.25451693001319, + 13.214866636426084, + 13.214392097817637, + 13.22696156294928, + 13.252306175502222, + 13.192687493726996, + 13.189538585384009, + 13.14585824939973, + 13.164705598699538, + 13.141070811017986, + 12.939777270469435, + 12.972399591037645, + 12.921907182001336, + 12.943884428036165, + 12.988798473368767, + 12.884019453590346, + 12.906932087703545, + 12.820094038018746, + 12.875651945702234, + 12.797407017524149, + 12.786754827019488, + 12.721598014269254, + 12.746006025087029, + 12.730872500640755, + 12.794488931278156, + 12.67607073187499, + 12.654644855752968, + 12.598019707641027, + 12.61268753268319, + 12.569049362833082, + 12.574305749046125, + 12.508921077771667, + 12.486919247520646, + 12.49310073076597, + 12.418387263203547, + 12.433874235787385, + 12.466245498850862, + 12.393554411558888, + 12.443548097044292, + 12.299303903424413, + 12.322447163072889, + 12.221825848820949, + 12.290052654250895, + 12.095743977701723, + 12.229652608871634, + 12.213490572661218, + 12.155667864689226, + 12.16197412413123, + 12.128846373265448, + 12.129676946606653, + 12.055915046690304, + 12.024614432400124, + 12.008385295741235, + 12.05721117230948, + 11.977373769438564, + 12.044814128263884, + 11.825869987951245, + 11.926955849492755, + 11.813711054482948, + 11.922237723157624, + 11.853261761399288, + 11.75232603249968, + 11.73845595272552, + 11.77820621682739, + 11.669195687631523, + 11.649641167157176, + 11.646618008182775, + 11.633753881735817, + 11.596872869014929, + 11.628808692138962, + 11.443997408648942, + 11.542769170070713, + 11.485902871494131, + 11.442799032401522, + 11.441193792839591, + 11.326635400021628, + 11.362605651503447, + 11.293882118795322, + 11.316457367587677, + 11.15234498873066, + 11.21565327693973, + 11.197605750510448, + 11.150498187082471, + 11.22805283255964, + 11.114407755147763, + 11.176110057382914, + 11.158335243326459, + 11.040301814292667, + 11.007893485880393, + 10.91404889379726, + 10.90020104309666, + 10.884225650449745, + 10.868692746958171, + 10.8909579581975, + 10.834117890759373, + 10.791772596569478, + 10.826634339871292, + 10.734215595073444, + 10.78120452661643, + 10.772695682718274, + 10.69898876094501, + 10.591584205115257, + 10.570950425399023, + 10.69323009994515, + 10.49483196496705, + 10.546621227758436, + 10.51191999767918, + 10.48459061885628, + 10.459637713601754, + 10.418874054102805, + 10.30217328186383, + 10.348675302059258, + 10.302122041209849, + 10.313612106410194, + 10.28812385975816, + 10.275328739004639, + 10.231291667794016, + 10.101577655317033, + 10.115712629216919, + 10.089166186965679, + 10.190661225296452, + 10.11671871541002, + 10.016209814543938, + 10.055244764090746, + 10.028807944659476, + 9.924178999825875, + 9.854404199440298, + 9.87902865125492, + 9.894270422184418, + 9.861266683405503, + 9.839464056926163, + 9.719758227900693, + 9.68207719939881, + 9.747761140095527, + 9.625901733998266, + 9.703390253350223, + 9.588304109517733, + 9.667719665376282, + 9.452423482867635, + 9.46859959015993, + 9.458355319386525, + 9.46576904731611, + 9.42078069321907, + 9.401060586244885, + 9.45742419990894, + 9.315887221560766, + 9.337684553993684, + 9.310932441546003, + 9.271686070438037, + 9.168318109962652, + 9.175818492009649, + 9.149631733234726, + 9.135815464802983, + 9.05019832546136, + 8.974069799699766, + 9.019690484372472, + 9.026291675305846, + 9.031932431142614, + 8.943511671379893, + 8.852627496791117, + 8.829080163349929, + 8.809316609216891, + 8.866809265495018, + 8.798989681440906, + 8.717125355141686, + 8.770974050357548, + 8.781757173532654, + 8.647973368772469, + 8.669946370412173, + 8.517031186122038, + 8.521431068890653, + 8.577496269439118, + 8.588068324975245, + 8.509236548246761, + 8.394566700249836, + 8.410157727140712, + 8.378290741776068, + 8.32393897382266, + 8.400389079160476, + 8.328321391142977, + 8.323317984162387, + 8.288500880901175, + 8.255439946745328, + 8.22683596434766, + 8.123676237502714, + 8.067551661381355, + 8.1012383170803, + 7.982644607517387, + 8.04287063592892, + 7.9372762608154614, + 8.041995894843806, + 8.003500136129809, + 7.893386580610096, + 7.972676272577992, + 7.736081793121383, + 7.892678617584332, + 7.744567478200196, + 7.913537039646902, + 7.756761877469303, + 7.691547883744521, + 7.723713138082458, + 7.671891645911407, + 7.673819113468307, + 7.557106297871403, + 7.564428144108095, + 7.420108541278147, + 7.421679156804661, + 7.412619468487641, + 7.423206714393662, + 7.325478794004575, + 7.266529081961771, + 7.269088960548082, + 7.2698824114626035, + 7.308383282577069, + 7.265488392955989, + 7.146622789895351, + 7.158718487114734, + 7.129580779494931, + 7.1814524949896, + 7.083860597845772, + 7.081737055533588, + 7.0252458653505165, + 6.946040709909678, + 7.027508500883247, + 6.789809379077578, + 6.878851928585609, + 6.846916071090572, + 6.7807450098048445, + 6.7753612006159685, + 6.721205745735531, + 6.73955126633298, + 6.810927282784144, + 6.731411911741799, + 6.601938321763356, + 6.651220453058011, + 6.6239394857273055, + 6.653544384329118, + 6.523314384246507, + 6.520556573879235, + 6.505537371264053, + 6.38693094102219, + 6.431390650467466, + 6.430626186412157, + 6.28146317113687, + 6.323863088734196, + 6.45321798083444, + 6.3037994438456115, + 6.321722292553042, + 6.2849402443890305, + 6.17404529961922, + 6.162967193238248, + 6.1620969201893425, + 6.1902378137917395, + 6.0588467427027375, + 6.090055030435355, + 6.077056021917689, + 5.910161028972493, + 5.987125827614871, + 6.104122975607631, + 5.886484811728374, + 5.843321769335032, + 5.8111582112094515, + 5.881382054759372, + 5.806173167001429, + 5.852814209566159, + 5.752168688310728, + 5.712036837321069, + 5.674252562151693, + 5.661372933196639, + 5.5877387741087245, + 5.599851830511312, + 5.510180259300391, + 5.612349271885332, + 5.486010242547043, + 5.457303166325376, + 5.50922882708171, + 5.392283187525756, + 5.398447900975731, + 5.482693291160155, + 5.402656466217904, + 5.347009279044914, + 5.263863993521661, + 5.323876797075337, + 5.228674356709489, + 5.209016345018817, + 5.231225509834205, + 5.11656227077063, + 5.043539655960352, + 5.1616810051254145, + 5.139572478342559, + 5.0448832226566855, + 5.125264465639614, + 4.999554450925034, + 4.947887884216866, + 4.976216408586345, + 4.925044049777965, + 4.898262680734874, + 4.813984820703792, + 4.832862384601059, + 4.862218020695607, + 4.809700677459393, + 4.67148353755388, + 4.760936316581925, + 4.808162987148771, + 4.759519630314542, + 4.718020419910582, + 4.6548477586975885, + 4.576966184758862, + 4.604962062096913, + 4.486981681925785, + 4.516242207684289, + 4.5124567348343065, + 4.421746920675373, + 4.492613928858396, + 4.494426807168048, + 4.329403401510799, + 4.43093776703597, + 4.2886253403852805, + 4.363523564469269, + 4.2629460085571775, + 4.306737795632447, + 4.199262769269119, + 4.307727829973608, + 4.203930842654251, + 4.228585642770174, + 4.176471777838347, + 4.165178701536316, + 4.100566189114119, + 4.0606455395705074, + 4.117448252237978, + 4.078050314162782, + 3.9440836416241782, + 3.9708839302415746, + 3.9566059785020062, + 3.9905022660659117, + 3.884996466223652, + 3.848385203247689, + 3.8946202981852953, + 3.7984228891009453, + 3.8372046927107353, + 3.800749919256276, + 3.8144185548944303, + 3.8096547470179267, + 3.7193496308016454, + 3.6920110661380083, + 3.7280880566955092, + 3.6535790656809746, + 3.6366346674414034, + 3.593758561799469, + 3.648281071040202, + 3.5567982445941717, + 3.5748502963557964, + 3.477393393399241, + 3.538665468000788, + 3.4903470504519225, + 3.3510279738481845, + 3.4489858811202185, + 3.4445208850889695, + 3.443943242635953, + 3.3365863801884803, + 3.4031391871820666, + 3.3086041525501315, + 3.314818683844156, + 3.328239426730552, + 3.2245251413579687, + 3.27197894799713, + 3.1878079878985677, + 3.2650863026618326, + 3.166357049831909, + 3.1171040003934154, + 3.1135456531840022, + 3.061009399733622, + 3.103134970810405, + 3.102083851485968, + 3.051396426787932, + 2.9830482296700587, + 3.032359985881465, + 3.040111468152185, + 3.054738063841652, + 3.0356907262282498, + 2.99884654748932, + 2.9449570470352198, + 2.936625437324978, + 2.8995260075417155, + 2.8706743549132523, + 2.8468893576824494, + 2.8234638809120143, + 2.755233765769257, + 2.877293795131273, + 2.8666046597909864, + 2.7551221203843577, + 2.731696590237164, + 2.7104377345561526, + 2.69585388337046, + 2.788547954191376, + 2.671583580369555, + 2.6723167167065225, + 2.58878932636199, + 2.644929646133632, + 2.6242552336431055, + 2.5835809820180247, + 2.568560205933042, + 2.485334042939317, + 2.5470502423651897, + 2.4974423532637027, + 2.5135492706797398, + 2.5128708075587576, + 2.409343332077584, + 2.482064804092302, + 2.3853158317140797, + 2.3914535204397263, + 2.426380431271793, + 2.426647808986924, + 2.3868524405764, + 2.3671416432417596, + 2.3760493585960893, + 2.322658297006336, + 2.3653972857223344, + 2.264303808488719, + 2.3184576655384426, + 2.2641947626692227, + 2.247125348351507, + 2.3158190955098243, + 2.1052214859822285, + 2.2406099379884203, + 2.2128494129240455, + 2.1713760646308353, + 2.267007794044118, + 2.210299707662033, + 2.176426389868021, + 2.189163739417257, + 2.0282407489837277, + 2.0209686232531117, + 2.139625175448079, + 2.0553100664947506, + 1.994117364698297, + 2.044528649895758, + 2.0774539888065, + 2.0379055752997317, + 1.9351230217967836, + 2.0720107800934873, + 1.8982078272642438, + 1.946372067576204, + 1.9452359563801855, + 1.9391038099943676, + 1.9157645613509584, + 1.9736822880023996, + 1.95943685290617, + 1.9692131703098454, + 1.925910715223798, + 1.8062113200831968, + 1.9231226486401065, + 1.8460233107719328, + 1.9168434878300946, + 1.8617982735826766, + 1.7600082937534274, + 1.8615942249926383, + 1.8308892519059374, + 1.7520711010247096, + 1.8080481984982353, + 1.8233838794115413, + 1.7924039550737971, + 1.761408845591971, + 1.830430010833953, + 1.7519419412333075, + 1.7564882623303852, + 1.68951687774953, + 1.764799180425568, + 1.6711315793373247, + 1.6278256588246696, + 1.723348212912334, + 1.7449825332866946, + 1.643416955341966, + 1.6195915834281969, + 1.5987681912887295, + 1.6682685637812695, + 1.6518115737110148, + 1.602364799265722, + 1.5526775143335798, + 1.6245404136840207, + 1.7129483373886374, + 1.6822933646585485, + 1.5522846051072847, + 1.5387708553859636, + 1.6179488051720365, + 1.5379505838861824, + 1.5675341297349852, + 1.6097617650813687, + 1.488332595524489, + 1.5253091688053793, + 1.5460202684325093, + 1.5262965901250065, + 1.5374725603401649, + 1.5504536406731166, + 1.4669103599453406, + 1.6123999377709957, + 1.5537101725037268, + 1.5267304515649838, + 1.382746227421347, + 1.468572253950705, + 1.5501158938245991, + 1.4511816155359194, + 1.3958727773927027, + 1.4185144647303447, + 1.5213065141700501, + 1.4335720443968825, + 1.4756372201313301, + 1.4488460512986765, + 1.5416128015479806, + 1.4602071283025184, + 1.4401330098435572, + 1.4372352531936243, + 1.3832672623819149, + 1.4486450041177765, + 1.3834090765952531, + 1.3992924430665878, + 1.4614162929450876, + 1.4565042381424436, + 1.405003600876155, + 1.4333012991933796, + 1.454704606332336, + 1.4103361288149932, + 1.457192242433398, + 1.4588878886231131, + 1.3915553059280281, + 1.554667613495123, + 1.3834411582303443, + 1.404522016500921, + 1.3368097545533466, + 1.3955742914568314, + 1.3628169505776155, + 1.2981332602988733, + 1.506197521168326, + 1.3427818706190284, + 1.379028160655407, + 1.4372656443340548, + 1.36326120433978, + 1.393807450814657, + 1.3661123103143382, + 1.4333367120520666, + 1.5016921199144517, + 1.3357338342811638, + 1.4630951438013307, + 1.4139753261518875, + 1.4288448771867839, + 1.4293794203493566, + 1.4740181716850294, + 1.4311510698813026, + 1.344243939685005, + 1.3658761434537559, + 1.4083230676214182, + 1.3997758726754475, + 1.3931801613172572, + 1.5054767903683473, + 1.4638602168658215, + 1.3911272599206002, + 1.4243361122665041, + 1.5663798652004415, + 1.4069599455250565, + 1.477408897148108, + 1.48603157678044, + 1.3899375540045285, + 1.5110078148751938, + 1.497480061313415, + 1.475083117324097, + 1.4682924377401825, + 1.4466157148574619, + 1.5559723460478223, + 1.590745390378662, + 1.4343462402009735, + 1.4494607196325149, + 1.4530204290737534, + 1.5645186282487509, + 1.4685526580571069, + 1.440890812496818, + 1.4786696402857435, + 1.582994727579595, + 1.5417373217583838, + 1.5399534771206433, + 1.5396651374696058, + 1.495928794866324, + 1.5163635892805594, + 1.6097520417192357, + 1.4913987193084823, + 1.5386147337575504, + 1.5393266169534627, + 1.563499933542068, + 1.6000230809869094, + 1.6281262360805446, + 1.6367624805945813, + 1.645696618836373, + 1.5583868901291946, + 1.6000140152643352, + 1.697354730369147, + 1.5951613173218142, + 1.728575261910343, + 1.5557048508673423, + 1.572286844543919, + 1.625530174890907, + 1.6071350118271763, + 1.6360796744819106, + 1.6744484620655575, + 1.6609069546558395, + 1.6883374422099082, + 1.7683954427973796, + 1.6700455949692692, + 1.7383693234374136, + 1.7155103067646023, + 1.8523095547401813, + 1.7010649774969884, + 1.7533238856171183, + 1.7611526256548753, + 1.6862180420837396, + 1.7572310696767004, + 1.8105636013317798, + 1.8080647601920046, + 1.8164388144184667, + 1.7266045892547848, + 1.834265517330982, + 1.8228222402648344, + 1.8850514826125684, + 1.8886378003670636, + 1.8866815286177046, + 1.9270758348424417, + 1.8411808446883362, + 1.925685437677718, + 1.9157428385520183, + 1.97997353571395, + 1.9034927474634937, + 1.885763257679896, + 2.0292196314019195, + 1.992424309202766, + 2.0512216026778516, + 1.9689050592401436, + 2.0682264792590264, + 1.9282838099393682, + 2.08255732738064, + 2.1115431583929523, + 2.0527884606504294, + 2.076552023445518, + 2.133660990279381, + 2.1329877210648496, + 2.0519457591311654, + 2.1406991163687583, + 2.1809354528702625, + 2.22451806729298, + 2.2144237435013596, + 2.213634452965612, + 2.2484704319464464, + 2.2043662878321495, + 2.1700589545586975, + 2.237688943678449, + 2.2714271714975114, + 2.2407620544590396, + 2.285514731287132, + 2.2305390466934174, + 2.394269381580089, + 2.2985211448746643, + 2.339844595272466, + 2.338753449441996, + 2.4354737780238835, + 2.482093712252508, + 2.4748012581311554, + 2.5050959890075246, + 2.5369375059930754, + 2.565142543968227, + 2.467030976936795, + 2.4789006983062887, + 2.5703295775673007, + 2.515365749555512, + 2.501059266503808, + 2.555358674428772, + 2.5881389316024914, + 2.605169790364957, + 2.6119545284638495, + 2.6738103237757773, + 2.6756277323457454, + 2.6925053935490557, + 2.6489399634406254, + 2.710946707173348, + 2.7590090147292416, + 2.78875790374206, + 2.7514001471979355, + 2.823756940206998, + 2.786016777712862, + 2.8025305601474138, + 2.846179817373677, + 2.864709144127161, + 2.887760535200091, + 2.997107921154164, + 2.9345550467670822, + 3.010916315980128, + 3.011752533417662, + 3.034322349360277, + 2.959415451038305, + 3.0160037589255886, + 3.0650140570942472, + 3.0657757601427096, + 3.1952110416701447, + 3.1462499390278222, + 3.104826823051975, + 3.0598592695569624, + 3.184933610534869, + 3.1735968069075806, + 3.2304380088321087, + 3.2732441378882036, + 3.2384750568392695, + 3.276273364605066, + 3.2887421242033335, + 3.2460451465928872, + 3.303447443006933, + 3.314073153190247, + 3.3054725771011433, + 3.3977526500548296, + 3.4384473696489364, + 3.3813854736108513, + 3.5311944954798733, + 3.5631560804688087, + 3.4946359993339176, + 3.431915854736512, + 3.5072749878805887, + 3.5776340311602945, + 3.6138441092872378, + 3.5133974718229686, + 3.5794657688000706, + 3.6553082695882253, + 3.641958387390453, + 3.699229070900459, + 3.7648181145170336, + 3.738507121555762, + 3.6909913052147454, + 3.7819611326608777, + 3.756166333972048, + 3.849380760177597, + 3.8956254258311196, + 3.9092205075744446, + 3.829466547915654, + 3.970769736379799, + 4.00279700350475, + 3.9945925770441395, + 4.039468291793224, + 4.068608081846413, + 4.076561835430416, + 4.053546026771938, + 4.071592715588067, + 4.02879909375766, + 4.070941118625086, + 4.124523390272631, + 4.186579815454166, + 4.239275887786259, + 4.24685662761536, + 4.186030467830124, + 4.32570372486611, + 4.341944317457651, + 4.288974618551564, + 4.414641224087525, + 4.419907078126452, + 4.372712143165112, + 4.448616803062128, + 4.393237509038148, + 4.567548298427718, + 4.539857433328159, + 4.536761028370462, + 4.466479417042807, + 4.607960804321992, + 4.605129151365029, + 4.6750669605677855, + 4.7148028040735275, + 4.643416155721706, + 4.787544086431421, + 4.756948488231597, + 4.764857069374102, + 4.80981023618192, + 4.88268810473441, + 4.849924623350211, + 4.874171467256068, + 4.841888173224005, + 4.936766900972215, + 4.955225538868506, + 5.006825985286446, + 5.076474108096322, + 5.028984192379735, + 5.046087373340895, + 5.0692144607744725, + 5.126307588671593, + 5.132189187485581, + 5.162031584614196, + 5.162549829121152, + 5.318665453818783, + 5.2513024146367995, + 5.286544109858711, + 5.390705187833413, + 5.291005069658835, + 5.487806616777562, + 5.373308276819928, + 5.409212310239635, + 5.479347159848103, + 5.5323752528553705, + 5.553550570357017, + 5.499919824917596, + 5.525224331305122, + 5.640324607272725, + 5.56133575554204, + 5.700685412600498, + 5.745162925777116, + 5.67004274741357, + 5.6838999862947555, + 5.740054987590578, + 5.752161966139627, + 5.810910765969018, + 5.8773152872287, + 5.811419225460541, + 5.83013196809214, + 5.970434977285385, + 6.0322122868688535, + 6.002417008321892, + 6.053573744473404, + 6.120471404305437, + 6.066069624406801, + 6.147310114206672, + 6.124241980982361, + 6.235414587184094, + 6.158429635183958, + 6.172982875791758, + 6.1945174564848635, + 6.182142532289729, + 6.277903902568709, + 6.287133610088775, + 6.446211561736086, + 6.373875817174115, + 6.3914430392491886, + 6.496266932912863, + 6.560173297531607, + 6.484360817385924, + 6.566223040746167, + 6.586326925910614, + 6.58272420058796, + 6.647081276743531, + 6.62542131183766, + 6.631861023335464, + 6.696198259197127, + 6.758187351091755, + 6.7919684553779724, + 6.791479565035192, + 6.852756398352211, + 6.900696157005154, + 6.860958003117804, + 6.867371975284536, + 6.861454168801236, + 6.99650936335377, + 7.007527121176712, + 6.995845545246324, + 7.131569200170056, + 7.1650100936796015, + 7.0833073574255785, + 7.1837388772262365, + 7.180172208404799, + 7.223208016395586, + 7.32365581117123, + 7.375665168076224, + 7.227805554575169, + 7.3699689599860605, + 7.308138348991623, + 7.390616084853759, + 7.346401069747203, + 7.421887257242392, + 7.497281996622123, + 7.5374534277057315, + 7.608280674815337, + 7.544577386533265, + 7.5225555975683145, + 7.605312183772842, + 7.593266557138829, + 7.741952861283782, + 7.673155902059231, + 7.764891271239479, + 7.78268334989473, + 7.733719122922562, + 7.855969299267773, + 7.803208254512419, + 7.868186344843409, + 7.975661262034712, + 7.9917497707650265, + 8.019767622502536, + 7.976949577483112, + 8.054540838632814, + 8.19062685208766, + 8.113623277486962, + 8.10881464790883, + 8.252617387172304, + 8.252260579671194, + 8.26333222799967, + 8.301133836655051, + 8.27340985439555, + 8.359188280508919, + 8.35969199099002, + 8.36170419153346, + 8.43655536428377, + 8.379900175990867, + 8.393428911501418, + 8.468400114024112, + 8.570385784760616, + 8.646702172651, + 8.620872865352212, + 8.635826975941015, + 8.772717541483981, + 8.712637190130323, + 8.715525513987327, + 8.764410877146686, + 8.79460458723016, + 8.847485050904998, + 8.955911789341316, + 8.87248885360272, + 8.936376230352858, + 8.843498616964535, + 8.92891622775062, + 9.047595462042352, + 9.025782992624977, + 9.097550753306415, + 9.072849378587737, + 9.182416624652904, + 9.126673935644385, + 9.204258452541065, + 9.187914776167734, + 9.24882979421275, + 9.320199935423647, + 9.291747971383709, + 9.367674179451745, + 9.364947103959071, + 9.448686393457185, + 9.426979502660679, + 9.42016158650094, + 9.435735656341212, + 9.46062985901667, + 9.520819138057695, + 9.508903363016987, + 9.623534959915231, + 9.582270419276261, + 9.72427376157373, + 9.61984254771247, + 9.72148079350728, + 9.784847873366177, + 9.871896668602073, + 9.736806899670723, + 9.80873968375774, + 9.894930422211907, + 9.893425660937611, + 9.986404041229283, + 9.875302271301578, + 9.944907131050114, + 10.01142698128579, + 10.027877696474558, + 10.106005522089182, + 10.09612132071092, + 10.155856988640398, + 10.194135044960246, + 10.219455447978778, + 10.203142696607957, + 10.185519974901158, + 10.273859516634655, + 10.36849157660988, + 10.342400434430584, + 10.496049877449025, + 10.410292948918972, + 10.465794775034151, + 10.428947842923542, + 10.560156992499088, + 10.466860323067808, + 10.610125692911065, + 10.60769713155487, + 10.580874553602358, + 10.659565732437214, + 10.67683476731719, + 10.824393927451037, + 10.581492182471978, + 10.648410875853836, + 10.837000865074815, + 10.817496082252658, + 10.898005959416011, + 10.905394784672897, + 10.930771998198995, + 10.980291336462754, + 10.982924970494356, + 11.002246858412626, + 10.974440003992832, + 11.073947986418428, + 11.213461227608295, + 11.149523505437472, + 11.10264237704467, + 11.127518894458492, + 11.177596180004413, + 11.26863278668988, + 11.27829800691873, + 11.296584296428762, + 11.316682431020853, + 11.333447108452306, + 11.352628191165024, + 11.419466467230581, + 11.374328058207322, + 11.406747640594505, + 11.480844051442402, + 11.485295293624471, + 11.54326291181445, + 11.519464004933061, + 11.646501520923628, + 11.560926179505135, + 11.635440447033877, + 11.707574229407266, + 11.66999840312027, + 11.7496322477564, + 11.649171623399388, + 11.849987333214266, + 11.813202804048888, + 11.861186136104964, + 11.833703972311906, + 11.930064673512316, + 11.841136560034483, + 11.89973670343077, + 11.938738648195942, + 12.005177537561666, + 12.01060115048642, + 11.973602958945717, + 12.029645825210814, + 12.084045735796055, + 12.025178682909472, + 12.142048526902807, + 12.132702996511943, + 12.185897476926634, + 12.199731241401054, + 12.282422787351038, + 12.218022918435375, + 12.341133338971117, + 12.305880808857713, + 12.336828834631184, + 12.343937710380914, + 12.394873080879913, + 12.373863472596993, + 12.499305744315004, + 12.421693483877982, + 12.396230194374416, + 12.552851149712772, + 12.572577763185055, + 12.397043480057526, + 12.53492389533179, + 12.578913460416821, + 12.645276074201004, + 12.678734450913643, + 12.689909389285772, + 12.67303218896427, + 12.737127211411373, + 12.715442397741793, + 12.78531650750793, + 12.788201508782036, + 12.695051538690628, + 12.902118259504162, + 12.875050918391237, + 12.872693562413797, + 12.910861894210655, + 12.953981137454745, + 12.939478711933267, + 12.878503056134564, + 12.99094167799831, + 12.981999759558525, + 13.06403014072536, + 13.064713712890256, + 13.127248489817594, + 13.111045500501385, + 13.134827213638854, + 13.124972825795622, + 13.256886424525746, + 13.183283817692537, + 13.181907203070784, + 13.226852985768438, + 13.290228618644297, + 13.364953591443125, + 13.323310676190804, + 13.345181113163193, + 13.402673332876656, + 13.387344629260006, + 13.391790134623784, + 13.480951500543426, + 13.506497184686058, + 13.441340994561019, + 13.518828910311566, + 13.458526517410396, + 13.635434850277838, + 13.593352766108946, + 13.514455909284711, + 13.643366135077471, + 13.601169806200927, + 13.651080407078386, + 13.644440440766221, + 13.636916137729852, + 13.725441861709994, + 13.642651351153814, + 13.797050069950737, + 13.735991013998204, + 13.66710308197852, + 13.80252331840245, + 13.873114939858867, + 13.813232973941174, + 13.869043029240636, + 13.901685864322255, + 13.839490684779925, + 13.90999235046631, + 13.980843227237965, + 14.053363678491495, + 13.96142111705926, + 13.993706561514502, + 14.028348588514044, + 14.029834618924761, + 14.053807562817859, + 14.046988434552956, + 14.179219242076595, + 14.169467438856197, + 14.078397523618783, + 14.068087468850424, + 14.15423087855813, + 14.165179054109542, + 14.21352801099733, + 14.218318792971495, + 14.186689015167076, + 14.206162041881257, + 14.194055954146757, + 14.317069660189023, + 14.305012711100117, + 14.241044699988263, + 14.347426557727365, + 14.329960524798832, + 14.370412668114044, + 14.33923043373044, + 14.362727168395203, + 14.402339541642936, + 14.343507233920318, + 14.497722478715948, + 14.391596500800478, + 14.4230470885237, + 14.447639517136608, + 14.543387957499961, + 14.52293600352358, + 14.414022545595733, + 14.603119242775714, + 14.558733761235562, + 14.484790274700947, + 14.631085623402381, + 14.714479817238981, + 14.59468567002997, + 14.695394696194317, + 14.671552707437534, + 14.652384082439381, + 14.675357655443054, + 14.658710670997024, + 14.717757994144003, + 14.714464399538638, + 14.691111969677989, + 14.714065626326851, + 14.676973752243923, + 14.777187326268633, + 14.713939488793415, + 14.8107012808824, + 14.789804971648271, + 14.839175192268238, + 14.831067554700008, + 14.826323252458492, + 14.882678223959907, + 14.854841657229956, + 14.796137137266959, + 14.873004305841471, + 14.869868123185613, + 14.876528113927098, + 14.937467268373705, + 14.92160459003471, + 14.905325467655977, + 15.028105002635918, + 14.967344858353242, + 15.0250402185843, + 14.923746755455078, + 14.979221879536977, + 15.0300888626612, + 14.964996832080045, + 15.018552256054855, + 14.94292248208525, + 15.05298455734767, + 15.0626978285223, + 15.15829428544907, + 15.187852762188758, + 15.188133837279329, + 15.133952396259316, + 15.12225557903833, + 15.044651201023028, + 15.170859320243318, + 15.136889115250215, + 15.165175116398204, + 15.186011185882995, + 15.109955258645833, + 15.188822351817155, + 15.242470038603518, + 15.211111269131738, + 15.271238789164293, + 15.285873586068874, + 15.167743991664548, + 15.099808240573376, + 15.252134566761216, + 15.214113466307337, + 15.245121665095331, + 15.2284403319874, + 15.211218864461992, + 15.25354215441497, + 15.345197231122379, + 15.346534487475775, + 15.229042571744232, + 15.247045355833732, + 15.283753476990945, + 15.32000841615602, + 15.287062537339743, + 15.342332283274942, + 15.276118152653785, + 15.296883724729772, + 15.308410185041728, + 15.318491162207524, + 15.232114923907064, + 15.324961573029961, + 15.332462094917206, + 15.330219627940787, + 15.417981357932575, + 15.340015961902376, + 15.330181577206405, + 15.353289609040122, + 15.359631623441622, + 15.261117292127345, + 15.386800644963644, + 15.396733844333495, + 15.449642680031163, + 15.370904306524768, + 15.480728750338294, + 15.389943129618901, + 15.317826977335606, + 15.3712057508947, + 15.443193713725469, + 15.317279397679279, + 15.270727811675854, + 15.37373195396841, + 15.3400338229746, + 15.427255938642581, + 15.360489181804267, + 15.347658699161064, + 15.375661545989608, + 15.466238772924797, + 15.382314128166854, + 15.360246693900967, + 15.368902175293075, + 15.344699048099935, + 15.371036460716532, + 15.33818640440658, + 15.430351547219217, + 15.35839782661063, + 15.459093741435884, + 15.440899236596207, + 15.372480462116377, + 15.454556057806279, + 15.417617252593455, + 15.379923751567919, + 15.444871047474269, + 15.364828071981494, + 15.454051099086554, + 15.287724308720206, + 15.4511831083674, + 15.432398355747932, + 15.33446149824015, + 15.338730311289423, + 15.40278438337023, + 15.360947896620369, + 15.416631802756656, + 15.470249460615245, + 15.302224277867952, + 15.377293981748032, + 15.346624997777193, + 15.386506349155068, + 15.387667711951428, + 15.383389328782751, + 15.33982933721274, + 15.418946923191285, + 15.421062931954747, + 15.399143145976849, + 15.397724349671364, + 15.292838026855858, + 15.377698656930127, + 15.330872409980106, + 15.315720479428034, + 15.30472204797539, + 15.260961551433732, + 15.330607601917484, + 15.351236600474094, + 15.29956168904413, + 15.252338731188598, + 15.250050020038437, + 15.326820034272323, + 15.303618595363972, + 15.27263249788998, + 15.303592679084794, + 15.315245985036812, + 15.281873766353277, + 15.242575927504067, + 15.252813111761705, + 15.321162817147538, + 15.298147975665536, + 15.20912688623005, + 15.327441636560659, + 15.205701026681377, + 15.158996239888006, + 15.167770635379958, + 15.12979183054938, + 15.20763704659432, + 15.147827395241748, + 15.142836883406941, + 15.1829578348545, + 15.196534399985847, + 15.149704852333898, + 15.143632359142822, + 15.153468987225835, + 15.162182027168742, + 15.075873922812177, + 15.11536020602699, + 15.111225535719331, + 15.120993154229087, + 15.040980491732116, + 15.07421685919056, + 15.060892242943162, + 15.007506107848403, + 15.121263046691979, + 15.06311236293377, + 15.090438837129948, + 15.104714656279423, + 14.981696780956682, + 15.065980154191365, + 15.03967933566292, + 14.986383342102993, + 14.970669173776407, + 14.859452646618081, + 14.907579564210891, + 14.851428792621777, + 14.98204082901509, + 14.887241575778786, + 14.884584399054953, + 14.906014331474648, + 14.839026282694988, + 14.881192443076625, + 14.851294288020135, + 14.815062119673726, + 14.861975124459446, + 14.825841746735117, + 14.748686096635018, + 14.79827067953622, + 14.783052832949874, + 14.814490724562127, + 14.764403308148971, + 14.743365932554859, + 14.776123052625916, + 14.686020245999973, + 14.780239324607992, + 14.664691075491076, + 14.596190661842618, + 14.696496675277466, + 14.667606592681468, + 14.609990941857724, + 14.621835221549729, + 14.628787396583217, + 14.507746980337211, + 14.560146907127358, + 14.581066598540222, + 14.6137907981104, + 14.521250652063046, + 14.578375311783574, + 14.563165356966879, + 14.506104348035299, + 14.465138707037909, + 14.405404713697806, + 14.407307595104504, + 14.465745341187652, + 14.304200259358824, + 14.435156689241968, + 14.443952102919443, + 14.332182271298114, + 14.455090623595465, + 14.320832400542674, + 14.260974278445818, + 14.384295622303933, + 14.270989976144362, + 14.300386541814255, + 14.345633281949137, + 14.212767046245895, + 14.223116676271557, + 14.220021828593334, + 14.231969442049198, + 14.151809191464938, + 14.167400871775197, + 14.062280236613887, + 14.174487021287426, + 14.07475386387806, + 14.079789199615309, + 14.072837574528974, + 14.049317147648322, + 14.017347658232001, + 14.12692162898758, + 14.043813126692484, + 13.955919019873894, + 13.909900525444707, + 13.904332176386092, + 13.912607606793216, + 13.882566079592426, + 13.980558743170628, + 13.79564898169191, + 13.866014713157208, + 13.827692320670442, + 13.881311346487783, + 13.814372260335755, + 13.749578504727276, + 13.864799752229633, + 13.679649171196157, + 13.68431821688278, + 13.621206561461095, + 13.63019958775702, + 13.607969049536482, + 13.502087538778795, + 13.451801488812762, + 13.629940831580162, + 13.595685264919162, + 13.572072864488758, + 13.548503140169116, + 13.468009300695078, + 13.4372895774911, + 13.56519608323022, + 13.46711777182595, + 13.404747016860778, + 13.351414852078253, + 13.35868830561556, + 13.328863882223994, + 13.298868241142356, + 13.33571437382786, + 13.280476048903996, + 13.302106404611093, + 13.228908801030522, + 13.226708157835299, + 13.252861351306073, + 13.163283335203252, + 13.212417092362193, + 13.143244367227975, + 13.133542079878984, + 13.075067236512629, + 13.031563736348728, + 13.153324065071986, + 13.068928916477768, + 13.001591259820685, + 12.9676142411549, + 12.972090375651554, + 12.927529030552739, + 12.889224947690098, + 12.856510341073703, + 12.795317832489872, + 12.916822149137653, + 12.821236692704378, + 12.75811724065932, + 12.74161323800382, + 12.788332327211112, + 12.694616639651676, + 12.734837217524543, + 12.713362290150632, + 12.554523853414468, + 12.602889613968113, + 12.643796000309747, + 12.608850632912379, + 12.558157732827754, + 12.4167231288802, + 12.4780792519743, + 12.445485435332797, + 12.432016774053965, + 12.44728677682182, + 12.333957627800752, + 12.448131243825888, + 12.388597342573354, + 12.301722000135937, + 12.32144532399348, + 12.168988240236072, + 12.270259649395205, + 12.037192914700057, + 12.204888775280798, + 12.150648536163914, + 12.122069791258333, + 12.132121782384049, + 12.132711224927066, + 12.160948164958091, + 12.001986333765004, + 11.978192021010983, + 12.051242143160275, + 11.913390678091677, + 11.906614524390411, + 11.889552446184725, + 11.922422239994873, + 11.874951324405561, + 11.863973783422743, + 11.818152680361061, + 11.746051573625845, + 11.717395981339735, + 11.85294969307878, + 11.688161546451298, + 11.636768036436607, + 11.601320037161829, + 11.635056989831062, + 11.540602622854463, + 11.528584086137192, + 11.540619320674862, + 11.392658131721669, + 11.425150206197916, + 11.462203578768817, + 11.327141853279278, + 11.424233042827458, + 11.44928937810124, + 11.341058937351562, + 11.285798260034746, + 11.284169243542694, + 11.273037973873025, + 11.29216427247147, + 11.118673179810855, + 11.131795619622205, + 11.12493646622577, + 11.07054414166129, + 11.085757437786878, + 11.083412833894288, + 10.999593023558743, + 10.957451881137835, + 10.925546927807329, + 10.948141748820365, + 10.880856079879978, + 10.847024676310145, + 10.822262178810632, + 10.807277946856223, + 10.820323624334634, + 10.771863241790616, + 10.707246960765039, + 10.797754790413979, + 10.634095222623403, + 10.646621755339014, + 10.626442473555816, + 10.547990064253627, + 10.591713717893171, + 10.492025701486067, + 10.501312418017147, + 10.515368452968003, + 10.506272984373144, + 10.44189636599221, + 10.449339661073287, + 10.40945436090593, + 10.320079629732112, + 10.31403985275386, + 10.30783402474193, + 10.264022792228854, + 10.22507193585104, + 10.264027179041632, + 10.153301249944443, + 10.077435794052683, + 10.117307417304398, + 10.16605739630751, + 9.998018925875707, + 9.944960005504903, + 9.889872457993759, + 9.97524385275034, + 9.94070764628026, + 9.98612837866965, + 9.869850453353926, + 9.88302238257192, + 9.784743817526214, + 9.786080226722538, + 9.709736555703698, + 9.815102213983057, + 9.637419203311975, + 9.716695486634658, + 9.617329214100067, + 9.502189059109282, + 9.558191865428954, + 9.485337852494402, + 9.534462110306187, + 9.464688024939528, + 9.502275557583472, + 9.400392084077044, + 9.335311352655108, + 9.381676498251165, + 9.305214664150824, + 9.265909161864123, + 9.320902921154644, + 9.201044398059777, + 9.139247864641616, + 9.170355645732267, + 9.073624086341896, + 9.075124914633589, + 9.04010570443691, + 8.99992470639505, + 9.024715207572463, + 9.012111763954724, + 8.99084227931187, + 8.886478318855366, + 8.832167839967996, + 8.83088680528477, + 8.920219038851421, + 8.777754860057101, + 8.80188151656244, + 8.688521449162693, + 8.762883149611941, + 8.64239382606574, + 8.654863347698974, + 8.624672879840174, + 8.444465085960148, + 8.555257232584818, + 8.470525465666746, + 8.499953498389301, + 8.399259105423784, + 8.493349158379202, + 8.417703399205871, + 8.344860470115377, + 8.310025968604785, + 8.354175944206295, + 8.26285455715399, + 8.23066278322257, + 8.234667048916272, + 8.098157433166442, + 8.13421087228162, + 8.134504740820566, + 8.126141207797533, + 8.076468658402828, + 8.030461856229575, + 7.949319789800459, + 7.885069760733833, + 7.902567166374247, + 7.9505433140826085, + 7.906522447283534, + 7.883940682565267, + 7.914705981004196, + 7.823653862668602, + 7.7695709147403935, + 7.781532881869113, + 7.679403513506239, + 7.597844106653613, + 7.664526018572658, + 7.607480133083595, + 7.6113111687123665, + 7.611016474875787, + 7.545325551797148, + 7.411742477692864, + 7.433633413685806, + 7.3189057183697885, + 7.358859786702362, + 7.40139324433744, + 7.370445733402034, + 7.300376489751502, + 7.381002387363173, + 7.279378139298047, + 7.271198634769605, + 7.101614615469959, + 7.110099940184378, + 7.0977255645085195, + 7.041855007102601, + 7.098271824392498, + 7.076337020852911, + 7.0142309910892235, + 6.950153597610282, + 6.867583081977018, + 6.9297188261429445, + 6.857728125037591, + 6.8878708155631125, + 6.90276552739246, + 6.803059457848212, + 6.6726193357618735, + 6.8024755031305775, + 6.734495025649617, + 6.667416350086856, + 6.6259547941455175, + 6.54670743966167, + 6.608420812804332, + 6.5516298893289475, + 6.5180300949429455, + 6.5321009683394005, + 6.485275314143339, + 6.449864628167581, + 6.376800126165774, + 6.321909655722023, + 6.368265768383213, + 6.263908600938391, + 6.315501307246642, + 6.335323982572342, + 6.278258732944887, + 6.207465117848673, + 6.177556937644209, + 6.12656693967515, + 6.096517377471637, + 6.056772229564633, + 6.15622005310351, + 6.161403435951144, + 6.03744099954796, + 5.98378149692313, + 6.011156905677183, + 5.903850690204412, + 5.853622595332254, + 5.921601406333574, + 5.843255702127766, + 5.747412603595768, + 5.721419520208379, + 5.802225980015925, + 5.60558403218881, + 5.71053878323044, + 5.772076048479021, + 5.573935934045969, + 5.6495941446697255, + 5.483469133174238, + 5.619912750496694, + 5.449226397097088, + 5.531474510487064, + 5.443680406887971, + 5.449481296915973, + 5.405799613942968, + 5.4420576643733725, + 5.282497649913388, + 5.394076876908721, + 5.301978417341737, + 5.343801238227716, + 5.280317542740463, + 5.18560207016794, + 5.263738824317103, + 5.16117922032225, + 5.1422583526721155, + 5.1270666909871405, + 5.115951234799832, + 5.13973772188724, + 5.084243452144568, + 5.030058866400359, + 4.940495524687213, + 5.011755471850805, + 4.882055603226906, + 4.929584254067724, + 4.8106399085434335, + 4.904628553892757, + 4.854857953258987, + 4.788463489124917, + 4.72944629335464, + 4.791987090841002, + 4.676104129295136, + 4.7300994652296415, + 4.670010082310015, + 4.6949386583607, + 4.520222543885159, + 4.57669462338363, + 4.539437510222127, + 4.502515929093891, + 4.472634649261198, + 4.537658382438957, + 4.5047051907894, + 4.5028956639434865, + 4.41938917803, + 4.302988804373831, + 4.323073656476018, + 4.376849447526067, + 4.401092246989096, + 4.270578399377371, + 4.289163151788837, + 4.29101655760535, + 4.2361910367014755, + 4.165042064486015, + 4.157206588039328, + 4.220040865315317, + 4.095461817681009, + 4.017747070674446, + 4.057990510713405, + 3.9453992104578326, + 4.03259877634023, + 4.0103403144977845, + 4.0629373800854784, + 3.895128606970721, + 3.877867928472173, + 3.9161840412202222, + 3.9320908464938165, + 3.8082457057477823, + 3.7864421100839456, + 3.7768219039896467, + 3.734209374007787, + 3.8006602463200663, + 3.781402009450968, + 3.6864316652413933, + 3.7377670163076724, + 3.593372505289727, + 3.683208032592351, + 3.622423641721049, + 3.637354041719501, + 3.489900055252618, + 3.5764628074568856, + 3.5841557255607057, + 3.496105981844561, + 3.497471396706713, + 3.4407442025887764, + 3.445783694857829, + 3.467235947132799, + 3.361347434202741, + 3.41634484586208, + 3.407346139061165, + 3.30850601492439, + 3.4215554257380965, + 3.3440228941088184, + 3.350091827512413, + 3.2155366765486963, + 3.2675872758279048, + 3.2153245456554393, + 3.2107238063397143, + 3.1752981403882394, + 3.1886805020948583, + 3.1858494932295174, + 3.1017213076339893, + 3.133195706117916, + 3.0684217352506074, + 3.0063446627186465, + 3.0166861332940416, + 3.0966535885529733, + 3.081134331272505, + 2.902055364497023, + 2.9063844914855843, + 2.935562208768673, + 2.880253121498872, + 2.8897321475156077, + 2.9068159561675553, + 2.7656990717436636, + 2.795319934865546, + 2.700543713731879, + 2.8048028519864503, + 2.8303541057204447, + 2.7910823180214828, + 2.6908879729398256, + 2.730740508716936, + 2.7028302309167698, + 2.7579682405287973, + 2.7074726413831716, + 2.6473212749641877, + 2.6562237730606633, + 2.7413106028580567, + 2.601383216176392, + 2.5558323091153388, + 2.5637500120299483, + 2.590787405223947, + 2.5883917209684926, + 2.508076422258167, + 2.567430339194092, + 2.4795521965005536, + 2.4094811035422454, + 2.434699601170279, + 2.3464889289599467, + 2.4083744385929986, + 2.3873039439501578, + 2.3359353351859933, + 2.356015238211461, + 2.365094620280688, + 2.3329744289967254, + 2.314102020229399, + 2.3543013499551533, + 2.3310330252773492, + 2.297477243299508, + 2.2364847052986017, + 2.353765941085798, + 2.3170275840674615, + 2.231562329053023, + 2.2139333501696346, + 2.188205421395682, + 2.192663791300212, + 2.130370365310623, + 2.102241229928517, + 2.1423795545060904, + 2.18385814982753, + 2.0958550320004954, + 2.07310121052082, + 2.21649553578171, + 2.0739480817470546, + 2.0569734323445887, + 2.008123471483711, + 2.1531778447901506, + 2.0150712654002443, + 1.9348322767227317, + 1.990915428738923, + 2.0513160151334167, + 1.988064633771408, + 2.0287605091228533, + 2.022572135558703, + 1.9807194806663349, + 1.8254837685160283, + 1.9599797967863575, + 1.9442972053289413, + 1.9420116984084124, + 1.9485885547917452, + 1.9015491948050782, + 1.8437903801945332, + 1.8116164092240212, + 1.8410055001777583, + 1.9057692003109132, + 1.8852430145240022, + 1.8341192973048932, + 1.7634194007704211, + 1.821016387121946, + 1.7584508595704433, + 1.8281926936797244, + 1.7474020928777723, + 1.8042466322043194, + 1.684479047557086, + 1.728503724440263, + 1.6240839250990171, + 1.6671999199892116, + 1.829158323990253, + 1.6799824487533062, + 1.6944262134618975, + 1.6870759820721792, + 1.6469073036428816, + 1.773657795621471, + 1.5989513030728157, + 1.5984222034039672, + 1.6354234383891202, + 1.6669955086440942, + 1.538902110660239, + 1.543036977096707, + 1.5633803846248253, + 1.4934232461481556, + 1.5909714387901965, + 1.6605394935255646, + 1.5250554099742666, + 1.5678977308171127, + 1.6722593636761798, + 1.5974926643740848, + 1.5919666842391873, + 1.5517280154764252, + 1.559596548557162, + 1.4762143647621906, + 1.5999164014745433, + 1.5576152716158387, + 1.5413711674009674, + 1.5054555707660493, + 1.5454309641133246, + 1.5058486946090235, + 1.5685095817655366, + 1.476174812651471, + 1.4531161713893146, + 1.527720844938278, + 1.452449279284431, + 1.4247792848488179, + 1.51938242927724, + 1.420128502837739, + 1.5287026006433546, + 1.4154222045825775, + 1.5512966750055865, + 1.3645869445441927, + 1.398910425477624, + 1.4437759521808893, + 1.4589714659559505, + 1.4859429456919617, + 1.4604507043313866, + 1.411115036050166, + 1.4042980334446626, + 1.5073549316362205, + 1.456171464131657, + 1.2915871429383536, + 1.3888474564175448, + 1.3650967476216034, + 1.4337381936260483, + 1.473052954567935, + 1.3764609161467039, + 1.392423743765766, + 1.3895273256691565, + 1.339700694168806, + 1.45763112683465, + 1.359423160633438, + 1.378036363290224, + 1.314697351384011, + 1.3900870958986813, + 1.3477903510886726, + 1.3910070933293546, + 1.4455695231884094, + 1.3362541567925867, + 1.3912271855787461, + 1.4429788941352384, + 1.328400943468315, + 1.41596706453659, + 1.3618131156670374, + 1.3701359564152982, + 1.379079826208186, + 1.3840723025322277, + 1.4104196998614462, + 1.4040118326099311, + 1.3378485705236447, + 1.4608426316071343, + 1.3802312452931804, + 1.4299857104567955, + 1.4500234176593132, + 1.44049845694569, + 1.462639345192911, + 1.4911678652090372, + 1.4718701894764679, + 1.4275389688604898, + 1.2837109519515504, + 1.569929761150945, + 1.4271088833186047, + 1.4466521974220479, + 1.4288337990915705, + 1.4440839983481546, + 1.4033112639834928, + 1.4872138166630664, + 1.4484950567618418, + 1.409176792749218, + 1.4722142156284872, + 1.5280291988277663, + 1.4247133960522262, + 1.493428441436593, + 1.4739916211257074, + 1.5108990967724372, + 1.4191102769096733, + 1.531238339607092, + 1.5486498591439177, + 1.4978896576088354, + 1.4377546005538309, + 1.5484337986605432, + 1.5327000464738296, + 1.65208129111075, + 1.5762205798488194, + 1.5165084563832685, + 1.5504985361855104, + 1.4626051015690835, + 1.563365993543772, + 1.6534013972730401, + 1.4892981738808009, + 1.5927510968486631, + 1.531985077572905, + 1.6838292467934122, + 1.6987081772284038, + 1.59262700007947, + 1.5685690425297611, + 1.6717378797698976, + 1.6178589127493732, + 1.6642716880905843, + 1.6654256549381095, + 1.758816924005781, + 1.6721929399573559, + 1.7155801750545563, + 1.7003766852610374, + 1.6704882506269474, + 1.6834570181286415, + 1.7057790444606888, + 1.8009759091785742, + 1.7424362115803078, + 1.7074476455772447, + 1.7596507355748536, + 1.6900934328826875, + 1.8492532189846878, + 1.748533738740163, + 1.7220700472191959, + 1.714102508026415, + 1.792162884762545, + 1.7793647061865216, + 1.8229763551020326, + 1.8055693003707307, + 1.9531097908804882, + 1.920212768856202, + 1.7984400296474357, + 1.8855096372491775, + 1.905109294037196, + 1.8094335794600158, + 1.9226332190753905, + 2.009210438179178, + 1.893395034484415, + 1.903880563728927, + 1.997510677184648, + 1.9638644858724081, + 1.957280541980056, + 1.933450813941826, + 2.0266603334602733, + 2.0554392999325923, + 2.079168106603173, + 2.0100932581129296, + 2.1162256100215178, + 2.046702454148393, + 2.1433022197318814, + 2.1313028255839255, + 2.085369438620746, + 2.077712388228378, + 2.1685462080866897, + 2.1107446365855353, + 2.150423945104741, + 2.2483955641186637, + 2.1945375904363296, + 2.2344055106716962, + 2.1676435955255564, + 2.2795943488340717, + 2.2733121946435064, + 2.265174947112062, + 2.2850812404226746, + 2.3421540545409996, + 2.315316420372735, + 2.335578000137742, + 2.4038194971693607, + 2.3622412002334907, + 2.361152078266551, + 2.3489720011989745, + 2.3889460858552836, + 2.447325986299852, + 2.4527954709573576, + 2.451979663861752, + 2.3873079929044696, + 2.43158423679977, + 2.5123955293878604, + 2.540327645123761, + 2.5483332979416464, + 2.5711383354214643, + 2.5707667605194504, + 2.486384648426062, + 2.585509878846265, + 2.5343650311437664, + 2.5964922110692723, + 2.63879497834078, + 2.7287718950920117, + 2.6979964842628, + 2.7506148726276463, + 2.684245373508922, + 2.8575343621579212, + 2.7946011364232883, + 2.7839826057881862, + 2.8439471065953126, + 2.7263056478936663, + 2.8820437148845603, + 2.7571842890376734, + 2.7571940457099235, + 2.9615477562119517, + 2.925052839314398, + 2.9744503980310446, + 2.868854422649263, + 2.9647339113186058, + 3.0006134240705173, + 3.0025475681643936, + 3.1106902812834534, + 3.044342970059386, + 3.0404004807021314, + 3.1327847636322437, + 3.0395592532889952, + 3.076968316479764, + 3.123971391851344, + 3.182306334632688, + 3.1742482417217923, + 3.248233595606252, + 3.1418814135983877, + 3.1999742146697425, + 3.2997289877224283, + 3.2700994834761636, + 3.206232463650647, + 3.220804390994895, + 3.3143160436396104, + 3.3012947958492016, + 3.374416161393363, + 3.3448997425725713, + 3.6222512860991314, + 3.4960728144863, + 3.545133889966206, + 3.488507878155707, + 3.50186342915923, + 3.515733059224118, + 3.5398516523826693, + 3.61545445017362, + 3.689322651785127, + 3.6570880566889383, + 3.659673979366002, + 3.622683660633346, + 3.607366304159303, + 3.8074943648307036, + 3.684336088505804, + 3.7455617575768976, + 3.796503282293977, + 3.8424409871261416, + 3.8241796196035325, + 3.902044148556665, + 3.8604115978955704, + 3.919169875754991, + 3.9737749723138664, + 3.866555616846442, + 3.9254472162891996, + 3.946784859288089, + 4.059460555002007, + 4.037144420566405, + 4.081347868082866, + 4.040830172953699, + 4.200471198514835, + 4.181261049635037, + 4.18384618351721, + 4.18484651179703, + 4.24769208088343, + 4.304436872364891, + 4.304966702859395, + 4.225212190618966, + 4.310360994363681, + 4.359055776047155, + 4.315667486434225, + 4.3513499273514515, + 4.384486306730433, + 4.332824721116, + 4.409157772448569, + 4.525310649603385, + 4.585761863722853, + 4.6365797084512606, + 4.608381876597856, + 4.5042124734743805, + 4.646290946457888, + 4.601017960508891, + 4.640272034630794, + 4.668316696499688, + 4.659845082641378, + 4.622632313006914, + 4.7186644460175025, + 4.764428063716916, + 4.891397534299425, + 4.845469238944546, + 4.942658606498983, + 4.820728143426796, + 4.851334656381127, + 5.008797801812546, + 5.019608335266148, + 5.049379146012112, + 5.0496229380079996, + 5.048343306931426, + 5.051125635743966, + 5.082469227248972, + 5.204311826151197, + 5.119521406831919, + 5.224702437666624, + 5.157262852438414, + 5.231418693433063, + 5.23656223037589, + 5.29443942069433, + 5.407117975143414, + 5.35409423841075, + 5.328414722409557, + 5.368832251794099, + 5.457021911924124, + 5.407342124164903, + 5.5597991378288665, + 5.598028019982271, + 5.437110928732037, + 5.550927497478059, + 5.574884858749352, + 5.659699771146092, + 5.636191587433426, + 5.6911706229364984, + 5.7184621064153935, + 5.7665518054909946, + 5.815583799643679, + 5.8061208822437935, + 5.835408063739275, + 5.836467932747399, + 5.871020006747124, + 5.988623412982956, + 5.92868530489093, + 6.0125793913958265, + 6.0251308664049406, + 6.072827637577252, + 6.067972510340057, + 6.104298079717281, + 6.114767995748989, + 6.165419714678759, + 6.1813136796241865, + 6.199399188110334, + 6.257254691728456, + 6.300275617451712, + 6.310750880448341, + 6.297609839063111, + 6.356913370368382, + 6.343086169111648, + 6.402036778167508, + 6.485125047881094, + 6.529223222612398, + 6.469376574064179, + 6.614598417363445, + 6.626816663584881, + 6.531245915401452, + 6.553710916047892, + 6.631289329313539, + 6.68360021348458, + 6.747661581998178, + 6.718744368216412, + 6.779343861830654, + 6.894769193420981, + 6.910787884561525, + 6.967346845480241, + 6.818786650786773, + 6.928437516677468, + 6.876809846352755, + 6.992386700554963, + 6.873121678210201, + 7.062087944682157, + 7.0858549185707, + 7.106381832817696, + 7.198310425821809, + 7.122293082398996, + 7.242208144694793, + 7.2065083114281, + 7.277471445354707, + 7.273299412504534, + 7.358647171947656, + 7.3292903766829465, + 7.302581176238304, + 7.453252112594103, + 7.392324815461237, + 7.363181051696836, + 7.526329925363307, + 7.492403229055591, + 7.546327384515454, + 7.58000948624971, + 7.657291437738905, + 7.604374641735917, + 7.656540547178293, + 7.643402412503455, + 7.701147686596079, + 7.716464748855982, + 7.793740029000407, + 7.869746114265993, + 7.8517010339619855, + 7.863460277277574, + 7.923719612423893, + 7.95372453981768, + 7.990226950898063, + 8.035148333128967, + 7.977367735433662, + 8.133470960145475, + 8.07248201905156, + 8.115172393620277, + 8.162491384890222, + 8.257259564500536, + 8.193528666913215, + 8.317570428105112, + 8.285965881078322, + 8.263043219347326, + 8.306790030864512, + 8.33465958988978, + 8.393103481263623, + 8.352648830943814, + 8.550881365162553, + 8.495761275052358, + 8.552221747695176, + 8.650045229638847, + 8.555549726310648, + 8.54614957511508, + 8.73906371224751, + 8.70540939613512, + 8.72060543782037, + 8.748159659271463, + 8.784801928129387, + 8.79017987588739, + 8.870038140230015, + 8.902817412070522, + 8.878460358318954, + 8.96589340503506, + 8.914522090143652, + 8.937950603519067, + 8.971547949098076, + 9.019578361374661, + 8.956455715669842, + 9.100711619397648, + 8.985977181765653, + 9.154535290951138, + 9.11591582900116, + 9.17894331219528, + 9.308181585294642, + 9.202931694582967, + 9.251449675781926, + 9.323682808871663, + 9.463855443050168, + 9.401348067082566, + 9.49642142527416, + 9.50966702041114, + 9.503586696444547, + 9.48608075568945, + 9.566499035699117, + 9.656239366036482, + 9.675882587284303, + 9.599313338157836, + 9.707364717266175, + 9.691882473994848, + 9.624100735758127, + 9.797779594147086, + 9.853440940554886, + 9.733992813455064, + 9.766538665072312, + 9.887786748091274, + 9.970053429827846, + 9.875642933431124, + 9.980451191100713, + 10.014576230748368, + 10.033646927805558, + 9.98062314243808, + 10.120235547387736, + 10.16510598222867, + 10.117470657802677, + 10.291998973096254, + 10.345497305331207, + 10.194662239816498, + 10.219257154431052, + 10.305663186253469, + 10.347133697954414, + 10.380667806348825, + 10.385369511266646, + 10.340335883247588, + 10.464074985745405, + 10.353649989117264, + 10.553355892968499, + 10.468026918957907, + 10.56101348204572, + 10.559130974172053, + 10.59674237398232, + 10.672745081251588, + 10.75127621012744, + 10.668640400255272, + 10.705140879468212, + 10.769900587512918, + 10.797135427455673, + 10.821075765757875, + 10.83217455553406, + 10.832640496343258, + 10.899835958466463, + 10.95515400831817, + 11.008035271249238, + 11.057653396498353, + 11.071111999060944, + 11.14866026373245, + 11.014945533020049, + 11.111532954016404, + 11.217200157059844, + 11.167411719358645, + 11.223427283733232, + 11.246871616096472, + 11.219913809229974, + 11.278874725056856, + 11.304693630238265, + 11.359118127293176, + 11.373846753791117, + 11.227385991707207, + 11.47513516489384, + 11.401076672602276, + 11.58248124647168, + 11.49377240821736, + 11.590458643937426, + 11.537182272987707, + 11.459951107734422, + 11.611048664680014, + 11.664408789152636, + 11.67491152326409, + 11.676473932330888, + 11.671520118513836, + 11.788727969327427, + 11.803455579484543, + 11.776417538830204, + 11.77684275990327, + 11.897262822366825, + 11.818485288766945, + 11.912522389237722, + 11.97024443996121, + 12.005902777691192, + 11.968228360851112, + 11.970078991303192, + 12.062797807842328, + 12.028396540269389, + 12.085930265297657, + 12.16349216645394, + 12.177689221958179, + 12.09330366267572, + 12.152847813901303, + 12.263782574278673, + 12.338950470388195, + 12.219552715672226, + 12.219216265165914, + 12.333759447069282, + 12.315731865823535, + 12.296047640401026, + 12.432444375331766, + 12.395095937477251, + 12.513481197153938, + 12.468526460733933, + 12.499115048342144, + 12.483674619088282, + 12.488349481106775, + 12.559019203331314, + 12.505227152632084, + 12.644700331853297, + 12.587617042311638, + 12.677879851386901, + 12.808472316526757, + 12.708665880759902, + 12.789117538212833, + 12.754617701686566, + 12.784145775407353, + 12.779801902147252, + 12.833129859358829, + 12.820458522042244, + 12.849808263509212, + 12.963533726675898, + 12.891666577025326, + 13.005877438284637, + 12.966192386989963, + 12.995687855101446, + 13.062717625443376, + 13.074664711678151, + 13.083139614281407, + 13.135890465180044, + 13.150452596561436, + 13.059302698037364, + 13.095968899409327, + 13.204962247104472, + 13.09754975645107, + 13.22949366053444, + 13.299867690570458, + 13.284687957536521, + 13.243928394193857, + 13.298651908596069, + 13.351444785072236, + 13.268417298366803, + 13.254402954109725, + 13.383881917266699, + 13.360214353517637, + 13.349306289135008, + 13.439798347019615, + 13.413323710455037, + 13.439541989763608, + 13.48388724137885, + 13.586841586724395, + 13.54891441230854, + 13.51499008733618, + 13.66853177685155, + 13.635082515954798, + 13.647297914393542, + 13.608281898898255, + 13.788302724664405, + 13.611907150054568, + 13.709199934426154, + 13.7417180057581, + 13.815184802100115, + 13.839902697218148, + 13.703093238531444, + 13.747142892667929, + 13.98465871346695, + 13.85009770715772, + 13.847679056874018, + 13.86580563040627, + 13.951800770159146, + 13.868348161538075, + 13.897747482324164, + 13.903693816846792, + 13.97885495519664, + 14.057459289957503, + 14.029994940334372, + 14.050898154247227, + 14.144456409160462, + 14.175097139327224, + 14.065786265079801, + 14.195987168925939, + 14.177675521439532, + 14.117366156938632, + 14.085095723380123, + 14.14185983980841, + 14.166986664007148, + 14.30208873826907, + 14.235754111677412, + 14.263992450101803, + 14.313133209466162, + 14.313466852099367, + 14.267178814372816, + 14.405190999254923, + 14.337270885108751, + 14.4077703172771, + 14.311933050150005, + 14.50320258091614, + 14.397993782693316, + 14.383486123580079, + 14.35844114511599, + 14.465649563290146, + 14.517201432364912, + 14.514662210503166, + 14.540436603691099, + 14.57548935657558, + 14.529909264392382, + 14.470212868972913, + 14.570018659134874, + 14.489957002727259, + 14.557156005008318, + 14.54866231769561, + 14.542353630489517, + 14.642893606325595, + 14.645338942292149, + 14.662987485618732, + 14.663406981175651, + 14.590459374417248, + 14.713913481104422, + 14.753598570087291, + 14.789234610667005, + 14.704976882834549, + 14.760838955334481, + 14.776242258828805, + 14.696877071268274, + 14.834745125541312, + 14.751450918941217, + 14.807526605785872, + 14.772026532860561, + 14.908639795419331, + 14.827511087705922, + 14.804961679396468, + 14.851581416467143, + 14.915671290513648, + 14.878811921845886, + 14.986699353756885, + 14.878069119359523, + 14.942510953632768, + 14.903796903124814, + 14.866221906836088, + 14.897839078014647, + 14.995735861180059, + 15.032180616829454, + 14.97365168205864, + 15.05973909289745, + 15.049277623127383, + 14.999431188200731, + 15.071132282936512, + 14.97753087912886, + 14.96626484446628, + 15.058953364234746, + 15.114397356515958, + 15.042651810684005, + 15.035052359160218, + 15.144344141143725, + 14.96259927025224, + 15.139895285389999, + 15.144605779543525, + 15.115702546111757, + 15.030853942595165, + 15.299944300293458, + 15.100705651794748, + 15.060208043999694, + 15.152981475517493, + 15.129340947396878, + 15.242430513121214, + 15.122428191203024, + 15.180003933672422, + 15.269985897808697, + 15.227171663315616, + 15.254429086009807, + 15.169911249354401, + 15.221620663272894, + 15.262118668271789, + 15.229413028278618, + 15.282989575059906, + 15.189387976334713, + 15.180859791252914, + 15.2746663637511, + 15.308301698565998, + 15.271798622948337, + 15.35244896529959, + 15.29303104024231, + 15.264092186838617, + 15.295946607034145, + 15.19990766423052, + 15.277930719734346, + 15.291913661600233, + 15.371262578005286, + 15.274708040214716, + 15.278229239812662, + 15.271202876579132, + 15.365109369926687, + 15.349969192659204, + 15.253852439927316, + 15.311523379816807, + 15.35858251546066, + 15.385398182923595, + 15.401908427231238, + 15.36563338157732, + 15.371720881523396, + 15.40737020024912, + 15.391437876828984, + 15.351676794941609, + 15.397457071955243, + 15.415771671141092, + 15.398017064709183, + 15.406432202107043, + 15.473580682179016, + 15.374545548378183, + 15.427286969510714, + 15.469201674795283, + 15.367373239529174, + 15.306643424557375, + 15.372541339416387, + 15.36979643508214, + 15.397769497098883, + 15.343602794708843, + 15.397502340247092, + 15.420004492152481, + 15.377320860988066, + 15.412906233814214, + 15.318133089744812, + 15.315220507162172, + 15.431120103298005, + 15.39836440310015, + 15.427696494088195, + 15.390415006235497, + 15.386822850487079, + 15.364523845922097, + 15.376359757848023, + 15.401284175105866, + 15.31710108160277, + 15.355426360221351, + 15.325966285733388, + 15.352166400102462, + 15.466929143477843, + 15.445514375550223, + 15.389140501951612, + 15.358887534757597, + 15.463945011814621, + 15.434467531001491, + 15.41800997717335, + 15.37212854388931, + 15.399365095725791, + 15.41371483423595, + 15.352361724187373, + 15.418757519388045, + 15.30612102213075, + 15.372525716319037, + 15.349432526942778, + 15.28127512333119, + 15.315939662563627, + 15.412567420958332, + 15.331708628738426, + 15.230016326302781, + 15.386457976551482, + 15.305438877508003, + 15.337868644148777, + 15.255165920925299, + 15.312048498207202, + 15.43409864301865, + 15.306937596139006, + 15.276830441671123, + 15.292562593011134, + 15.246425604567431, + 15.271765463480895, + 15.269201817306968, + 15.290991042500588, + 15.28139053741957, + 15.256339211416618, + 15.272964459022475, + 15.201745706187697, + 15.208891282810134, + 15.175405795920295, + 15.253996151950865, + 15.3204017739433, + 15.21946352970424, + 15.152051050790536, + 15.140078808923755, + 15.139079757284414, + 15.09155221145225, + 15.11545370780077, + 15.109279490388667, + 15.144931464477057, + 15.136204625123645, + 15.097501234587313, + 15.144881367237085, + 15.14566273313377, + 15.175014989666986, + 15.086915856818768, + 15.015414614890352, + 14.999661015988199, + 15.071105437761211, + 15.126803050720932, + 15.076049679688671, + 14.96193157514424, + 15.025495826142755, + 15.02380209734228, + 14.998872533650934, + 15.005825266729751, + 14.957289821912278, + 14.960337594765706, + 15.002275731258878, + 14.884395452294012, + 15.011964888906636, + 14.983013086426725, + 14.910997757040807, + 14.930564771257922, + 14.939450437810681, + 14.955889068625526, + 14.924383224807622, + 14.82140126955495, + 14.861941242812852, + 14.908562023645626, + 14.816385526101142, + 14.780242126098294, + 14.903186341433075, + 14.800206051605574, + 14.740201786916657, + 14.797413908138793, + 14.755313575994062, + 14.72597957586734, + 14.701755873882238, + 14.625638589445703, + 14.661492113965002, + 14.781309950767618, + 14.613592088809279, + 14.64297074543134, + 14.58206752067347, + 14.67274966223332, + 14.562422519345741, + 14.498712405927009, + 14.663343241507203, + 14.588274321793396, + 14.581973468673143, + 14.528112406485157, + 14.573758048726244, + 14.457244869142329, + 14.485378394711667, + 14.511153284838127, + 14.475232239846223, + 14.52727822141416, + 14.424110631774903, + 14.42097950500989, + 14.37675899182888, + 14.42823598884507, + 14.480368426528743, + 14.390051684181351, + 14.29574010809858, + 14.338972302213891, + 14.208591823396626, + 14.36794832593245, + 14.220802014301114, + 14.250596089356234, + 14.281883281815144, + 14.315410648514723, + 14.253093104679492, + 14.199615865847537, + 14.211511863674517, + 14.175894436326319, + 14.121871335798458, + 14.093451188031745, + 14.089234249787097, + 14.194115797143537, + 14.114949077575629, + 14.083058287579972, + 14.11313877625834, + 13.991313328731925, + 14.05452510206845, + 13.947071224033062, + 14.119453365612607, + 14.012093826778948, + 13.914039552094666, + 13.953734138153836, + 13.915524763140978, + 13.915597215908134, + 13.865676327542388, + 13.776553902486931, + 13.897175381954733, + 13.867013829259509, + 13.797346544549246, + 13.701690336485317, + 13.75586178846401, + 13.793985331087136, + 13.650419834621474, + 13.651989623616977, + 13.626639879094284, + 13.597592596440832, + 13.689181672398549, + 13.619114612764223, + 13.609793981385666, + 13.535552361356185, + 13.593081158715636, + 13.46045910218255, + 13.545511332359634, + 13.51753147140717, + 13.509603687093835, + 13.42233565910757, + 13.45565521596105, + 13.32095522659408, + 13.395255014038938, + 13.361027950995702, + 13.32858225332099, + 13.29408362772171, + 13.262060750702867, + 13.265891920294338, + 13.261840499635793, + 13.177063598514824, + 13.271370660080015, + 13.202141961907701, + 13.165478265517946, + 13.137105890637233, + 13.143804694221503, + 13.084917408629428, + 12.960420978225056, + 12.946720100557076, + 12.991955142042778, + 12.995441606898874, + 13.048734582829397, + 12.947416711470401, + 13.007943160143268, + 12.892484560640288, + 12.888287531753083, + 12.90555175304424, + 12.769598981921801, + 12.776192919464915, + 12.870123640075542, + 12.820525048792389, + 12.678858496652195, + 12.752762952399564, + 12.63100896611183, + 12.60484941151116, + 12.675536901269703, + 12.600769680935842, + 12.535864562661976, + 12.493846882751583, + 12.581673049797935, + 12.54378618603692, + 12.448560199300601, + 12.479956616275093, + 12.381162991241883, + 12.373810873785077, + 12.317290354426211, + 12.347293384835073, + 12.321500643881324, + 12.32614864672706, + 12.26480030063495, + 12.260734865349402, + 12.24982688996524, + 12.223729996427464, + 12.406025871961958, + 12.219214154262897, + 12.163995797500641, + 12.1485264434775, + 12.168353661128485, + 12.001204694296908, + 12.070424635070745, + 12.059528288827188, + 12.066858119540873, + 12.062496816692414, + 11.879033501420379, + 11.88345225333412, + 11.910624462874575, + 11.855933944553257, + 11.838281409774916, + 11.805214124822532, + 11.773955625834823, + 11.628397043877541, + 11.834068780522756, + 11.720855698155733, + 11.687636411294603, + 11.64359521481185, + 11.70888921623405, + 11.555738191630212, + 11.555622539739556, + 11.57368535768316, + 11.561324684790385, + 11.382227519652655, + 11.342608190107871, + 11.422386501326196, + 11.377572858518478, + 11.356626531727985, + 11.375988974408887, + 11.283991873947864, + 11.298381487402024, + 11.261850878817686, + 11.321676567529561, + 11.110534885669997, + 11.191795712414033, + 11.067493831758162, + 11.128891308671365, + 10.99246462884782, + 11.05193254649766, + 10.996820321379749, + 11.062546256623554, + 10.875553552408594, + 10.915712768565628, + 10.896011814354615, + 10.8869672288557, + 10.880718747362009, + 10.737723022748824, + 10.7132869116025, + 10.741746304897699, + 10.644732724820265, + 10.596341461222941, + 10.605047222585213, + 10.624631705332046, + 10.606296704329004, + 10.569301017801982, + 10.603096491503084, + 10.603795233382236, + 10.541546694801891, + 10.456683255058499, + 10.43992286912872, + 10.490799967712034, + 10.32314380182369, + 10.323887622021207, + 10.30964439932792, + 10.234737290026997, + 10.181258635813432, + 10.341426381936929, + 10.165922407661483, + 10.177051528395296, + 10.142965257003718, + 10.119790028579668, + 10.134345537463378, + 10.024305354573482, + 10.02651788736622, + 9.941943648186493, + 10.014591566368633, + 9.960943157537288, + 9.954944924669796, + 9.93789011375212, + 9.94779638428715, + 9.898589127197752, + 9.685672969188436, + 9.809572839715056, + 9.693217921673307, + 9.663252717585863, + 9.618549698653082, + 9.725585386186737, + 9.639888410144513, + 9.561949980752077, + 9.570889089666192, + 9.588901766689395, + 9.52219294904047, + 9.574210476008606, + 9.365576576907221, + 9.344211919551507, + 9.446486221246182, + 9.355790937485477, + 9.336344777351856, + 9.329838610914345, + 9.307761511234053, + 9.166922434888809, + 9.168121694124771, + 9.183265039710953, + 9.13231930445698, + 9.143448133939952, + 9.107987974334948, + 9.117408152408538, + 9.014632789628523, + 9.016674868929538, + 8.929642276371423, + 8.915591400020732, + 8.883166364036152, + 8.954388816965652, + 8.8644146423565, + 8.725163311133382, + 8.825013836030882, + 8.82179244161858, + 8.648461105266065, + 8.656196924062174, + 8.56591100541573, + 8.711826327270186, + 8.628019351452181, + 8.561518857433189, + 8.47686073567399, + 8.451383201747756, + 8.483880354030086, + 8.420139544417545, + 8.493662331144128, + 8.32502888344017, + 8.299183992924455, + 8.288252771261385, + 8.195004337751824, + 8.170619087255046, + 8.211051991628123, + 8.156101806785621, + 8.137212183067565, + 8.158148987423965, + 8.107954605696294, + 8.055896707607, + 8.006025750919209, + 8.018493547665148, + 8.002781045845557, + 7.936878186798894, + 7.898379130429999, + 7.885260455515141, + 7.850757350868453, + 7.81459112681305, + 7.781733687487866, + 7.713391160436728, + 7.7944414240236775, + 7.69593600710313, + 7.602523538153977, + 7.687762348980472, + 7.685604949745411, + 7.661888940011574, + 7.494000125609436, + 7.452816789580104, + 7.410443360422348, + 7.506978963978546, + 7.431845795594964, + 7.3963719938117904, + 7.393456511036787, + 7.270854759541223, + 7.344233002421069, + 7.306378596466352, + 7.244279970207787, + 7.24746910890273, + 7.147931009579131, + 7.161122761223481, + 7.121662095194158, + 7.083774598392488, + 7.046393504112599, + 7.0769065019684705, + 7.001841780071768, + 6.965276843702541, + 6.87058255745366, + 6.972796430899103, + 6.8531443196675, + 6.83768788775399, + 6.847002023652322, + 6.760650111984974, + 6.785906216100171, + 6.774062581286867, + 6.68768574490698, + 6.623530363519036, + 6.621690765423493, + 6.585655601187099, + 6.660772798124705, + 6.509582449793387, + 6.465004790295984, + 6.625337918296696, + 6.426446158845279, + 6.449323286978555, + 6.358510139319697, + 6.4440878744118475, + 6.344595774225208, + 6.34933626856554, + 6.250212753900476, + 6.300202562842935, + 6.240705761905015, + 6.120107873543486, + 6.17193396652757, + 6.138983765220463, + 6.146461067629137, + 6.039333924605781, + 6.005025169268404, + 6.033114830870781, + 6.034184836733519, + 6.037183906830848, + 5.8223570727199085, + 5.826246512431526, + 5.909090721283936, + 5.875906168952156, + 5.897201587044142, + 5.784597849033099, + 5.849677486889734, + 5.809517280264401, + 5.668102777677321, + 5.678907474951834, + 5.6485164289559675, + 5.670668046413811, + 5.637295227263038, + 5.688162997600275, + 5.641315594849086, + 5.515366266873048, + 5.58754242192324, + 5.411829523637653, + 5.472880281677338, + 5.42620342369159, + 5.408022761040964, + 5.293912503719337, + 5.384416118558116, + 5.332460175952952, + 5.37238153179843, + 5.22227407529574, + 5.173312401573225, + 5.227237687673893, + 5.21146817195927, + 5.135964118701301, + 5.139926462604794, + 5.085009009023439, + 4.964321335839629, + 5.052877200471189, + 5.048017727653302, + 4.963664877448339, + 4.972813764422734, + 4.921450186560374, + 4.886804258336152, + 4.875662510789189, + 4.851594122482473, + 4.818449775115835, + 4.786850523134019, + 4.714348035563189, + 4.727395573957045, + 4.760015540657962, + 4.702676856547526, + 4.645107208990415, + 4.631905225635622, + 4.680600380490851, + 4.558135140449507, + 4.559101066960172, + 4.4889056957603914, + 4.55269958866739, + 4.506161277623146, + 4.4573802142698495, + 4.412819758747274, + 4.389116813392912, + 4.342464867396027, + 4.36813660385626, + 4.367649145785389, + 4.366602584501314, + 4.261110033556275, + 4.209777380693349, + 4.251069429844234, + 4.197938651494619, + 4.22973049168838, + 4.159813431666203, + 4.054168937478415, + 4.077872611052417, + 4.090031433410067, + 4.165166860510458, + 4.105080653079474, + 4.033857663327124, + 4.019028460839361, + 3.994554297375337, + 3.850163533799321, + 3.8886980982041743, + 3.8936589871536498, + 3.8922793009757704, + 3.8604386429109967, + 3.869710835207932, + 3.872074531245776, + 3.7707849317791773, + 3.7183578649923974, + 3.6444584976392074, + 3.724254376947048, + 3.754803030826273, + 3.734566472128914, + 3.715955806336994, + 3.7032992832610576, + 3.6568307537262177, + 3.5484421837612965, + 3.532715070854459, + 3.510067665743932, + 3.521481114050058, + 3.5117647305536615, + 3.5351738022864225, + 3.4950525947183877, + 3.520321783933201, + 3.354300394042789, + 3.4534514688701257, + 3.3135835390556423, + 3.3378433790517628, + 3.416882664209939, + 3.2342608580422056, + 3.300390549070268, + 3.227990733372088, + 3.2182885750094052, + 3.2382287687547584, + 3.2023190885766537, + 3.1333148509185147, + 3.1279238544229635, + 3.067629871319346, + 3.113543600962649, + 3.128852214955029, + 3.0894885959726865, + 3.092870701221284, + 2.97576002295592, + 2.9713601732505692, + 2.9631251206147895, + 3.004179270551077, + 2.996899753979367, + 3.0005448147785287, + 2.8616190016624006, + 2.873969623202723, + 2.9454020871219653, + 2.8294734052380948, + 2.8464858725476536, + 2.838154008090493, + 2.798441691929449, + 2.883254744138717, + 2.7762884365377127, + 2.7441858576092826, + 2.7081594791171297, + 2.635556019866484, + 2.77262395771079, + 2.7203816163735004, + 2.630571322743526, + 2.657984582151766, + 2.7408550250813666, + 2.64182249327821, + 2.5576194889974246, + 2.6500167177053373, + 2.559615095796433, + 2.6019818701553272, + 2.5484875773536926, + 2.5242834474294984, + 2.4936449183120235, + 2.5339850349630604, + 2.384659402566095, + 2.449345127198213, + 2.4922828247923925, + 2.4812363541525726, + 2.3468337684031164, + 2.31824009837022, + 2.371819232542207, + 2.384061271133696, + 2.3028971464103067, + 2.3875711720413633, + 2.334298687172817, + 2.318890804546496, + 2.235697802515309, + 2.315597952472073, + 2.2801223475963135, + 2.2595255948381037, + 2.1018176951397227, + 2.1966783868030966, + 2.224119764960089, + 2.139571473469206, + 2.2554229054154664, + 2.152089166541519, + 2.1315674360307915, + 2.146135690881345, + 2.106409105935197, + 2.0995779847880995, + 2.10338664103995, + 2.043861348770096, + 2.0319530053098314, + 2.022495903415043, + 2.0273457207752013, + 2.002299153353231, + 2.0199061407040286, + 2.031862978323046, + 1.9933525458250632, + 1.9786425695648568, + 2.011991700675697, + 1.945505940137071, + 1.8716662028847342, + 1.9711460221957597, + 1.8434231692915044, + 1.907701440828424, + 1.9326464101007506, + 1.87557118616181, + 1.8605009069827307, + 1.922459392423032, + 1.9333764240939644, + 1.89973880085428, + 1.802362344165691, + 1.750101934256392, + 1.7602571016670203, + 1.8065608426617428, + 1.8326651419898683, + 1.786104637614292, + 1.794885056867159, + 1.8000731645395942, + 1.7081324880349522, + 1.6313614889207324, + 1.6924196584941622, + 1.6080642717809739, + 1.7258235730033282, + 1.627977238301263, + 1.710474489622814, + 1.6116734766324194, + 1.7077806508620221, + 1.6729062871345417, + 1.640204042616141, + 1.6298762969853022, + 1.5629176883372824, + 1.6404318496719243, + 1.580958346970237, + 1.6341268588535978, + 1.5549414711402456, + 1.626310022813053, + 1.6109446643527612, + 1.5781362793775457, + 1.5514786253439221, + 1.6098938213875087, + 1.557263474476621, + 1.5294938341880946, + 1.5391935040428317, + 1.583652992615486, + 1.4882223472436944, + 1.5605668107250943, + 1.5160137818673503, + 1.5410302269310232, + 1.406119891020393, + 1.4983497847764546, + 1.57519393600737, + 1.3537078338276718, + 1.5915728760255234, + 1.5024231142376263, + 1.4973851838726373, + 1.492547580294206, + 1.4542027132506699, + 1.5446180875244162, + 1.4136088636420685, + 1.436014859051547, + 1.4373351552097196, + 1.3925629796872872, + 1.389035147422295, + 1.4457765017795523, + 1.4276181383426567, + 1.4547372736555233, + 1.4618476042002129, + 1.401243271940993, + 1.3995386784309578, + 1.4682261382476252, + 1.4834250819936445, + 1.4002361340704517, + 1.502478790593871, + 1.386808790601321, + 1.3785725835312195, + 1.3542393983351988, + 1.4269893699496374, + 1.4735716464353636, + 1.4668585171948905, + 1.3567551090782652, + 1.3063769533199696, + 1.3796183834732285, + 1.3407816518780669, + 1.4161072469944938, + 1.5106370306789936, + 1.3119235185999576, + 1.4327334150316873, + 1.418534875133593, + 1.4031716458270715, + 1.3852129362793413, + 1.4382383402604473, + 1.421233203839455, + 1.454070383321543, + 1.4036434507707063, + 1.383290950016715, + 1.4258199209531572, + 1.3358544213419152, + 1.467385740118862, + 1.3611619336849368, + 1.3202180633203542, + 1.4337822488157885, + 1.4270873815894058, + 1.3737424942393974, + 1.3548619369289594, + 1.391739956814191, + 1.4387171628858106, + 1.4291589823570843, + 1.4224931088648007, + 1.3915438333444081, + 1.4144132349886258, + 1.3770074220622581, + 1.4158347035221495, + 1.430158887566075, + 1.4919439883032806, + 1.4675498183119104, + 1.436007370478081, + 1.418366960904684, + 1.4945760448662009, + 1.398931821086386, + 1.3757636999455767, + 1.461211373515505, + 1.371558789948148, + 1.3642455707776935, + 1.4702368877570633, + 1.4330418756439525, + 1.5242596152546515, + 1.4819549099177998, + 1.5806472291630216, + 1.526225335642491, + 1.562847910950814, + 1.5118223122058578, + 1.5756257821297612, + 1.5391691416628825, + 1.5264394792292266, + 1.4777831410429627, + 1.5701594564409525, + 1.5536808196245473, + 1.559749709576684, + 1.5053013568786702, + 1.5536253105308648, + 1.6729443702032758, + 1.561764723994112, + 1.6063484376858828, + 1.6192927081909216, + 1.6294186067566232, + 1.5923251118502366, + 1.6015230575138728, + 1.5434124290691829, + 1.5735675236151332, + 1.5964622885279096, + 1.7270834472675238, + 1.6162018748295395, + 1.7427047311008077, + 1.6224436132594375, + 1.7321518370375282, + 1.6363078333431038, + 1.6231414031882117, + 1.7287802106773746, + 1.69273341817544, + 1.7057148125403956, + 1.7806448137776365, + 1.7403018646838728, + 1.681469796838447, + 1.7023011196206534, + 1.7487882215103046, + 1.8182110679467105, + 1.6964364175136275, + 1.7800175741346544, + 1.8402092698053896, + 1.7759690263504109, + 1.8275266656271258, + 1.7351135122189927, + 1.886721589863625, + 1.8832756290024935, + 1.8251286160838964, + 1.8776998843921715, + 1.9541905312273173, + 2.0036159223432284, + 1.9912773545094717, + 1.9524939035348505, + 1.963356934784266, + 1.861450204333393, + 2.0382776093725647, + 1.9770820247176282, + 2.00450276584929, + 1.9679859010972378, + 1.9968675291156053, + 2.063337625056385, + 2.0340055352870157, + 2.0048718740831637, + 2.075707006382292, + 2.0757997315781203, + 2.086280679572003, + 1.9971184285859247, + 2.04736057843355, + 2.131161790927129, + 2.1292257152741363, + 2.21493404252864, + 2.098327099025556, + 2.1458182024492545, + 2.2222976789756776, + 2.13334906596553, + 2.1773385479700678, + 2.2748072422882886, + 2.229565992974048, + 2.2948220525897924, + 2.298151812720703, + 2.2521348888678365, + 2.3134945484368044, + 2.3462659088265783, + 2.3769062505933625, + 2.387654205540728, + 2.2931750080729456, + 2.328048805726045, + 2.48322138400336, + 2.331887578864431, + 2.4643991229814795, + 2.4469788587456036, + 2.4078957592540093, + 2.40128836009147, + 2.4103697615223356, + 2.5200188197233078, + 2.563360257270453, + 2.5795135658313857, + 2.567075126575408, + 2.5790417650747814, + 2.629440214015744, + 2.6725770408742457, + 2.6214436271543224, + 2.6047483498271258, + 2.6235891131424807, + 2.6696819974809656, + 2.644078656210667, + 2.7880877112922358, + 2.735468892139526, + 2.7562153083541783, + 2.8179904921049497, + 2.812735547303076, + 2.8771237790319546, + 2.707630285748377, + 2.8615804720675264, + 2.849192063795459, + 2.797951732348893, + 2.8683206141014113, + 2.894164641766502, + 2.9813227489939726, + 2.939742882076123, + 3.0295820720532523, + 3.012953431462466, + 2.967808501044901, + 3.0300964140790234, + 3.0209387580735374, + 3.0902735852156185, + 3.073675864016544, + 3.17299828153699, + 3.1409810636912368, + 3.1962854267252867, + 3.159053260336349, + 3.1847232680929034, + 3.2357245398031997, + 3.2300208336962117, + 3.2739831433474738, + 3.224082225198536, + 3.3267591802109844, + 3.303951746735144, + 3.362543147358736, + 3.303239025311085, + 3.372973500553131, + 3.2857140960459494, + 3.4584504385330126, + 3.44340655464824, + 3.484156200202458, + 3.5775212881676866, + 3.4790942091180495, + 3.581931280085841, + 3.6093527716283313, + 3.611389579528691, + 3.6307169823296674, + 3.5930238157189205, + 3.7324132548677693, + 3.6758847011954203, + 3.670961249700254, + 3.7102488057472782, + 3.6817077149727115, + 3.7161325167620483, + 3.742575591653263, + 3.786791019377045, + 3.738932805335303, + 3.8555738998443605, + 3.8765188684183545, + 3.906376406647298, + 3.90943034660065, + 3.931459068169929, + 4.046618118361754, + 3.918081661261646, + 4.007406248413519, + 4.089493065984348, + 4.053059983417752, + 4.046363330308242, + 4.114235083120094, + 4.0722813217910545, + 4.155853762869535, + 4.2489358870280745, + 4.198126995485177, + 4.139268399884698, + 4.227289791016884, + 4.306915938356626, + 4.201032021871933, + 4.291682911317269, + 4.3275672491761, + 4.375872783247566, + 4.453521232183343, + 4.311034203453535, + 4.451338120727237, + 4.472051284236417, + 4.544857725833401, + 4.535359300069849, + 4.5557481091638845, + 4.628779950100724, + 4.699359770975073, + 4.643273667336434, + 4.591102923673632, + 4.677741646970123, + 4.692054967150899, + 4.756829112883393, + 4.7784416992380905, + 4.762426660682027, + 4.788337887928201, + 4.872307851502393, + 4.843101133601848, + 4.919200287616767, + 4.940793958993203, + 4.928306182627632, + 5.026252111682348, + 4.9469612252406865, + 5.018801941099598, + 5.113638775884838, + 5.054414390004494, + 5.084215537482217, + 5.199817876167045, + 5.077293934691823, + 5.247162678310187, + 5.172175388285597, + 5.27037822651313, + 5.151283052563708, + 5.311975824340016, + 5.317799355056211, + 5.365195073050495, + 5.3328467894108265, + 5.43671653727131, + 5.450172488715418, + 5.428872344160034, + 5.4473860566664705, + 5.48531634003564, + 5.523772903164279, + 5.611168727820929, + 5.588790167373762, + 5.571567918299584, + 5.624263278159163, + 5.667107707064056, + 5.804778524898714, + 5.731368243362925, + 5.7593442026839625, + 5.811617337607956, + 5.915253679301429, + 5.832465343584003, + 5.92048130599622, + 5.879217271398906, + 6.023009423400263, + 5.9756871081125675, + 6.050310817737777, + 6.036408653169648, + 6.06193379497073, + 6.055483551157711, + 6.079993776296945, + 6.19886442391128, + 6.12815852603679, + 6.243978641873938, + 6.338048348081038, + 6.3171719606930425, + 6.204146882330712, + 6.337609777972867, + 6.278425131882418, + 6.487989387861793, + 6.3304689965369585, + 6.447226239031322, + 6.540037920353859, + 6.446097623967005, + 6.542733400711002, + 6.516004173509504, + 6.639681225461091, + 6.642073814220244, + 6.6673246137568, + 6.6478492936270115, + 6.704032257698214, + 6.806285034961641, + 6.784624326099868, + 6.785296782690964, + 6.835534763111971, + 6.757419302188649, + 6.906327623171799, + 6.99989312998021, + 6.893770447028506, + 6.930615982768846, + 7.116683020329135, + 7.009604103592472, + 7.06054372648167, + 7.092302468881378, + 7.115797586629665, + 7.123903439914865, + 7.151063090890369, + 7.308845108685661, + 7.264107986351361, + 7.2284829845077665, + 7.356797279061733, + 7.354887026316652, + 7.329616878025638, + 7.423977105138442, + 7.421019707641435, + 7.535549927440079, + 7.456597898917709, + 7.435085865943894, + 7.538175646463094, + 7.566794919053268, + 7.617021483847893, + 7.60955060842519, + 7.733677405293428, + 7.716644230720551, + 7.758769363401036, + 7.7672823462800835, + 7.746461289081571, + 7.770288825173415, + 7.869031361638226, + 7.910955758246142, + 7.869885755020555, + 7.907210488738252, + 7.954608478727671, + 7.981491509269036, + 8.049476199425312, + 8.06737762268086, + 8.181106294315988, + 8.138084942071153, + 8.166684548317617, + 8.277995288277332, + 8.26821233030888, + 8.209980370026328, + 8.29265997527287, + 8.349969953718936, + 8.392173531533881, + 8.46789793626811, + 8.351782878326764, + 8.45130811633302, + 8.435613316393415, + 8.547723450666286, + 8.461379168440153, + 8.581506667423497, + 8.619232971466118, + 8.65942485379315, + 8.626262819409778, + 8.681485329986494, + 8.75559511687743, + 8.778481714412903, + 8.715772178396673, + 8.717116320131458, + 8.762328895227476, + 8.831506160291042, + 8.799500255029793, + 8.932711970601149, + 8.979386334877875, + 8.918217903839464, + 8.966370093825493, + 9.056447821767476, + 9.097393763219879, + 9.085008312841463, + 9.16557149609178, + 9.142718752037622, + 9.169810352403179, + 9.141127174221689, + 9.256668470182605, + 9.299991039714767, + 9.24745371147906, + 9.38603119276769, + 9.372079015538803, + 9.410928141105831, + 9.442328346367077, + 9.53023261557812, + 9.534258181435975, + 9.550962998969075, + 9.666199580561466, + 9.605001396113527, + 9.615216252591667, + 9.487396813536725, + 9.675465125274695, + 9.76869530691949, + 9.824569303109595, + 9.720904214940752, + 9.7263632511483, + 9.878769875262217, + 9.87826819949452, + 9.754581360966611, + 9.925525103798648, + 9.907885432707944, + 10.028862472050038, + 10.00281705037267, + 10.039240872473142, + 10.093610546283648, + 10.091983785481096, + 10.051441900180063, + 10.177113434171527, + 10.273095780001904, + 10.195250819110182, + 10.225984106913163, + 10.266575792747716, + 10.264775840801784, + 10.348971583383433, + 10.364978020510183, + 10.369192933227666, + 10.41977900908081, + 10.500362328262968, + 10.400615879257634, + 10.48503749313946, + 10.580862001729184, + 10.61657713038275, + 10.619489599698595, + 10.527433969305353, + 10.60384936817902, + 10.698977819658532, + 10.70179345741587, + 10.736041394284795, + 10.806611365059998, + 10.747695638333889, + 10.875936634866523, + 10.871652479461133, + 10.934685545886854, + 10.907701106646094, + 11.00073888175223, + 10.966617129566327, + 10.938171820693311, + 11.04182656517492, + 11.109860655045091, + 11.088827636015314, + 11.151719481716954, + 11.065878823108884, + 11.17891580493638, + 11.234575007299267, + 11.275924629794666, + 11.17187592793308, + 11.350035002528577, + 11.20150108445764, + 11.305447929714965, + 11.304625869331218, + 11.393748695401804, + 11.425152910225176, + 11.420819451370159, + 11.404729748905337, + 11.47700868456543, + 11.521141083041197, + 11.568438114633839, + 11.550661669835577, + 11.654081038162001, + 11.596604998340114, + 11.605669317439007, + 11.765151844898153, + 11.763728771649436, + 11.777921577119173, + 11.828760589196495, + 11.826104323141987, + 11.818842605168724, + 11.787750331690857, + 11.941468907518491, + 11.884394133473434, + 11.92408744735778, + 12.01524425250738, + 11.927669131301009, + 12.046963297504234, + 12.074975196229138, + 12.058071737807332, + 12.109385259953752, + 12.017706164655957, + 12.161225033796141, + 12.164193886926729, + 12.169444260854863, + 12.24130247867906, + 12.209709105789912, + 12.259293439282143, + 12.25019976514398, + 12.32512092538768, + 12.287007352528713, + 12.364233136262047, + 12.341858038252738, + 12.435130790331776, + 12.380157573531207, + 12.416709328258229, + 12.464339323275773, + 12.508225862681435, + 12.552625629649375, + 12.630189918070462, + 12.58131223033451, + 12.630978011024153, + 12.634015044000133, + 12.677830924672284, + 12.658682108688081, + 12.72611522037762, + 12.717359029755496, + 12.765479360841768, + 12.799491173978614, + 12.857465194964563, + 12.7761785375177, + 13.017362113637656, + 12.883043542331501, + 12.952032968393155, + 13.003029167657319, + 12.955443984532028, + 13.03281087090746, + 13.038055397677324, + 12.989565391742714, + 13.119921860753852, + 13.075011690316181, + 13.093486364736048, + 13.101769020994748, + 13.157234000762612, + 13.138721380481096, + 13.213626975788646, + 13.192966254680822, + 13.300721631256078, + 13.238593710926226, + 13.22425174229365, + 13.228893940252252, + 13.29799187876219, + 13.393772786592638, + 13.412202951231064, + 13.378783627502036, + 13.376978623464037, + 13.483401638810868, + 13.39641942972504, + 13.496707810391184, + 13.529509043370659, + 13.473902545186466, + 13.437088750353144, + 13.578784102920757, + 13.534729645421214, + 13.562173767453283, + 13.549703712684567, + 13.652076420069266, + 13.620684643891765, + 13.677237703779348, + 13.74810822157514, + 13.684410783674418, + 13.723973744137135, + 13.706189036897193, + 13.853930727946677, + 13.82401701020487, + 13.8875001744707, + 13.917662752078723, + 13.84161720427648, + 13.852511159038054, + 13.856856609831615, + 13.86809688862644, + 14.003666613400704, + 13.95062466505955, + 13.921586864650891, + 14.022972397864137, + 14.0186622680668, + 14.02919455239264, + 14.010667373817235, + 14.071865223941273, + 14.084206614182689, + 14.10987829146409, + 14.139742324933552, + 14.136490657719248, + 14.025477780469041, + 14.122267537194196, + 14.21499650896059, + 14.260484906095753, + 14.252406097510592, + 14.246407959875567, + 14.201902187637113, + 14.235275016691157, + 14.241916703517347, + 14.299590821611021, + 14.332413262552683, + 14.29925021988402, + 14.299602611901303, + 14.341053373530144, + 14.312858617116127, + 14.332485096463346, + 14.378386437289771, + 14.376846964477403, + 14.42439826923071, + 14.409319581176012, + 14.42230474159488, + 14.514577076050855, + 14.42230421125708, + 14.586286581685464, + 14.550716295600676, + 14.561608298978728, + 14.66277677473107, + 14.531117355840465, + 14.642210969073963, + 14.609239457756116, + 14.631434044942493, + 14.653693819328543, + 14.694205270496543, + 14.651521460781174, + 14.732741288941051, + 14.73348925863931, + 14.732153616009954, + 14.681038644858246, + 14.755151015920752, + 14.81071618049083, + 14.727439913619099, + 14.735606487043267, + 14.754660654901729, + 14.798650637981241, + 14.893300931717269, + 14.81897523092083, + 14.797777992089598, + 14.858499242447305, + 14.842887217447984, + 14.746013875393476, + 14.892111650744434, + 14.904364344455683, + 14.927337700933531, + 14.850929385345625, + 14.880812821782314, + 14.941069363555497, + 14.921086221750537, + 14.820719834352476, + 14.902916418198924, + 14.880818752602144, + 15.022332288463518, + 14.915959879759018, + 15.000008644684145, + 15.012167805062985, + 15.045818576646093, + 14.996797155002307, + 15.068369350145977, + 15.011965708840002, + 14.954452689236927, + 15.03889950363549, + 15.139082943945686, + 15.083329979617845, + 15.102060782919132, + 15.11534420042241, + 15.053560629142368, + 15.110324807349683, + 15.134773901435585, + 15.19742685364988, + 15.07274827927257, + 15.131918453667634, + 15.0560691245029, + 15.190765634026649, + 15.2519946300758, + 15.16513467500486, + 15.149954817822207, + 15.169450457637431, + 15.198956380228326, + 15.236901343990846, + 15.245883749373107, + 15.200232322761192, + 15.143653346149843, + 15.186665035210169, + 15.268033065102614, + 15.27674194649939, + 15.398410349593995, + 15.224196321834086, + 15.210688200872106, + 15.195631217091348, + 15.24192006355089, + 15.355485451235667, + 15.270660453767944, + 15.327767507603157, + 15.297653103753266, + 15.279024220222722, + 15.281212081119843, + 15.278621487493039, + 15.307164985214973, + 15.309436896202675, + 15.308974285655735, + 15.323868256134467, + 15.350671628533252, + 15.359089826883151, + 15.321140725019816, + 15.433091820302618, + 15.361396440664995, + 15.407531492734506, + 15.455152083553413, + 15.354126668984525, + 15.382603412585299, + 15.38162634957094, + 15.374308924239942, + 15.331971245554495, + 15.334222032129519, + 15.399322588210003, + 15.300398840335772, + 15.420737603609084, + 15.47414179566205, + 15.365913525257856, + 15.362251875943294, + 15.269092727757824, + 15.351759806160114, + 15.421522730521044, + 15.296753956927935, + 15.345854737256708, + 15.321637556030764, + 15.374107524313214, + 15.34242047290426, + 15.409299229450367, + 15.400680495506924, + 15.339881310631823, + 15.349338196233521, + 15.32387968435075, + 15.425516874698356, + 15.332369969228035, + 15.433364130440937, + 15.41755519940184, + 15.289888991321861, + 15.429104503861364, + 15.453837428304642, + 15.363932871805112, + 15.366486151382228, + 15.352716109885158, + 15.344582259638145, + 15.37815125264423, + 15.36799319271513, + 15.350020302223246, + 15.393560433194324, + 15.418108885513915, + 15.278017105612788, + 15.344626582603567, + 15.325048977142158, + 15.322884535572818, + 15.462074547144338, + 15.428254587867036, + 15.350098449743369, + 15.310746813382405, + 15.326351666488453, + 15.375612535244617, + 15.277614534995548, + 15.307015089137838, + 15.38637877218339, + 15.298023044471265, + 15.345244704802099, + 15.335417095074295, + 15.347681014779495, + 15.299744673653166, + 15.286586116808577, + 15.280221801358005, + 15.40799862433208, + 15.288831884072444, + 15.385366657775434, + 15.254322053342827, + 15.317983361331356, + 15.262467835571982, + 15.299275163558937, + 15.247723254071722, + 15.149181819803268, + 15.32676770526396, + 15.164384362837186, + 15.275940531661051, + 15.294653036505474, + 15.30233415702778, + 15.288322825766295, + 15.281144708212173, + 15.246422327819591, + 15.17580468470491, + 15.18230434628559, + 15.22913933590626, + 15.115771489501993, + 15.202483050730464, + 15.165737120153759, + 15.04395420924201, + 15.17028330532469, + 15.085883852697615, + 15.043752129398563, + 15.00292661036992, + 15.113721467256537, + 15.123678661798163, + 15.1343703852893, + 15.079060045796043, + 15.080052719785582, + 14.997669586033238, + 15.070952813529853, + 15.115552022953656, + 14.983518379796566, + 15.046833521966311, + 15.071390247410982, + 14.983465231491529, + 15.028334812762594, + 14.993500786527306, + 14.996337259072673, + 14.839822101143477, + 14.975254914641516, + 14.888097618428763, + 14.939834844357083, + 14.912101766083584, + 14.887185659605587, + 14.966681248018606, + 14.924363427608391, + 14.94482800492754, + 15.013248965879269, + 14.882359659321386, + 14.868304288197063, + 14.8167922004608, + 14.830322351506645, + 14.809235816129389, + 14.824868815225456, + 14.774246373535897, + 14.733902246290159, + 14.742474884207537, + 14.68215290339863, + 14.752556435442115, + 14.67018401414053, + 14.659945772321517, + 14.622176932151763, + 14.755169396193931, + 14.610735480548584, + 14.65113372882427, + 14.601325717411354, + 14.659119760715669, + 14.565700319563284, + 14.626827860238034, + 14.501479930106832, + 14.581136394420364, + 14.558961672486472, + 14.569162040387079, + 14.568390224657671, + 14.438380900822136, + 14.506178758695306, + 14.42472916193398, + 14.447706279434632, + 14.46901181200967, + 14.493839845629035, + 14.35976790070688, + 14.503898885479193, + 14.469778210420857, + 14.365130932202545, + 14.322077549380674, + 14.35013837962846, + 14.207315843958776, + 14.329304752995254, + 14.274744164077164, + 14.261199723800267, + 14.219489077993403, + 14.205553604159809, + 14.13354348509515, + 14.187320194410685, + 14.190531615151327, + 14.24203247727839, + 14.198489792699531, + 14.20693772476321, + 14.089462651251184, + 14.07452241064122, + 14.130977344040318, + 14.070309992431019, + 14.098858745347721, + 13.91274597113744, + 14.023943808667386, + 14.030400953737376, + 13.995823637542408, + 13.997200306958769, + 13.994853912417659, + 13.940990548629117, + 13.932402323505721, + 13.919428445439854, + 13.92751250385136, + 13.849392170680694, + 13.854333197965223, + 13.819676611394097, + 13.818088202326718, + 13.793347467687521, + 13.758891684674268, + 13.822630842198341, + 13.628152041875678, + 13.726042507181946, + 13.619123510377165, + 13.630493215764716, + 13.667506191759385, + 13.625592262354301, + 13.46533216858045, + 13.572401240405409, + 13.528594836335593, + 13.537595634050026, + 13.452848299907188, + 13.506157575350002, + 13.540909487749802, + 13.506636023067172, + 13.449293945044348, + 13.52052356797265, + 13.429676069604199, + 13.401613580078859, + 13.347681311599365, + 13.314949251669397, + 13.296028680142483, + 13.2254441404363, + 13.205356931224058, + 13.209967792045514, + 13.201263055879872, + 13.096589883697751, + 13.089974334218514, + 13.137204128259654, + 13.067993666068825, + 13.139330508922795, + 13.07598387399397, + 13.121332672404714, + 12.926634143794708, + 12.897080729835743, + 12.954111454487002, + 12.997650531943773, + 12.999969576762274, + 12.839353947172205, + 12.893393065715996, + 12.792987522679402, + 12.820065327111534, + 12.864101196318861, + 12.773193209385113, + 12.761647142240072, + 12.746452606994694, + 12.720588632072754, + 12.706408517559382, + 12.609026157726033, + 12.686383909078787, + 12.556532336862634, + 12.605076777692837, + 12.545121353137846, + 12.528296229814284, + 12.442267721456385, + 12.52976163318355, + 12.487182673388146, + 12.419285249161335, + 12.426030327055743, + 12.31999105217295, + 12.396742977774203, + 12.317596946767168, + 12.37574531653587, + 12.280171621645405, + 12.242368020239155, + 12.27593522759171, + 12.211609648488945, + 12.274101780486548, + 12.164619613770407, + 12.120484809741376, + 12.113144690096213, + 12.09809520523577, + 12.004876660135746, + 12.058318104644583, + 12.07675992255362, + 12.035338425176723, + 11.90529680146323, + 11.836200889726996, + 11.790076406669112, + 11.884294860738065, + 11.849167745267081, + 11.844184537041015, + 11.747243187804157, + 11.78288632174519, + 11.705574442126737, + 11.683923876340902, + 11.625033142179044, + 11.5637624077807, + 11.704767052317292, + 11.654489206450217, + 11.640938820432615, + 11.463992860829064, + 11.571731345536167, + 11.454272353634158, + 11.474569294468001, + 11.506449193175929, + 11.479545776533358, + 11.455170971060712, + 11.495344488846447, + 11.381834808033103, + 11.175428172137314, + 11.215929689183678, + 11.264468274427623, + 11.160465856883727, + 11.148540197252492, + 11.222220006449389, + 11.132440817563662, + 11.121214154199372, + 11.082221700393248, + 11.132036719442091, + 11.063217065242684, + 11.030011966243915, + 10.976272490753662, + 10.992530327155936, + 10.905952906999932, + 10.904958149864303, + 10.916588497413176, + 10.818500431393122, + 10.749335192209305, + 10.80816808728799, + 10.700887517506006, + 10.665799359351132, + 10.67431523361993, + 10.697271206165839, + 10.596377408891923, + 10.639060445657503, + 10.587862333957155, + 10.46333323922189, + 10.437164871221183, + 10.429641092844605, + 10.480868482645956, + 10.437032121672829, + 10.441107635745414, + 10.270444820755133, + 10.299276333813001, + 10.33133918768494, + 10.321177445498117, + 10.226678697605534, + 10.112969174056978, + 10.15362700819324, + 10.195611029830589, + 10.135541910071632, + 10.101233782539522, + 10.09439137344119, + 10.02790796742123, + 9.901587347253729, + 9.982633056340964, + 9.923529636894846, + 9.940414049526705, + 9.931493093125221, + 9.817281511006543, + 9.74531265102864, + 9.814393604899587, + 9.855567902671845, + 9.739629339559606, + 9.746978218177345, + 9.689357916261757, + 9.708757929160434, + 9.649152420480316, + 9.556789474681862, + 9.537167507535992, + 9.607499910212212, + 9.437735386678979, + 9.333025913766871, + 9.44913732361291, + 9.403180913318556, + 9.33199090225794, + 9.384968135448798, + 9.349222010380032, + 9.243606178929825, + 9.19823724578374, + 9.334233828301626, + 9.170452397556321, + 9.113985139417043, + 9.059333975575427, + 9.116700884713161, + 9.039548308749021, + 9.050385650732807, + 8.998052002193829, + 9.024566816402478, + 8.90608940983559, + 8.927786350613255, + 8.888996644894508, + 8.841087075994281, + 8.922897395124387, + 8.798571888949425, + 8.820332714852798, + 8.726387349585417, + 8.766111282703788, + 8.669090277045838, + 8.620219793505523, + 8.630039561654353, + 8.487364983594846, + 8.544533821113104, + 8.60255766916368, + 8.488956836794431, + 8.542105543385189, + 8.422923273838109, + 8.439173729922326, + 8.369834204997565, + 8.36444642510162, + 8.329047734792676, + 8.291827108520225, + 8.312092927235708, + 8.279702362035037, + 8.14644183280629, + 8.098819602538756, + 8.090851616096025, + 8.126015183772092, + 7.988691104409244, + 8.087070135109725, + 8.067063822457454, + 7.993511550126462, + 8.015394619521977, + 7.912339177815255, + 7.856943690297093, + 7.85902627582193, + 7.788248498793483, + 7.8262731710606275, + 7.817839133080848, + 7.7118144681774785, + 7.66998234370076, + 7.780133777658693, + 7.582507985897541, + 7.601077761208433, + 7.703133726646639, + 7.495324902245429, + 7.540300346808466, + 7.499013006746518, + 7.447173753155523, + 7.382090554812546, + 7.3850073864229, + 7.326463448516028, + 7.38319823666734, + 7.312448481045151, + 7.384128739979858, + 7.20659904558166, + 7.122931781725114, + 7.20459716921362, + 7.149140908873234, + 7.021904699764289, + 7.056423903214452, + 7.0527498451589405, + 7.1029861413784685, + 7.025885573028775, + 6.93653140121976, + 6.939124240817885, + 6.905545474647871, + 6.822002550305051, + 6.880318801251061, + 6.7881098876002985, + 6.746434161183233, + 6.768895109043222, + 6.794592561577817, + 6.652083416556063, + 6.743048314441228, + 6.735536219171229, + 6.637831661281621, + 6.53414267126497, + 6.5069321547454315, + 6.47969407060186, + 6.555651869173713, + 6.646352984606595, + 6.46926549374811, + 6.394573127062228, + 6.402231994771666, + 6.331794016033854, + 6.293949210226796, + 6.356381544562719, + 6.348106623923285, + 6.209324919133294, + 6.1892855773350774, + 6.161600966848253, + 6.237200278333973, + 6.10262210501829, + 5.991914940018088, + 6.025442281472212, + 6.050322211082371, + 6.06349797113465, + 5.937234776933797, + 5.976357959377152, + 5.928548206473325, + 5.886527719948487, + 5.932627458751166, + 5.879491095409098, + 5.810449535653931, + 5.789268391051641, + 5.825990233115117, + 5.855098045506167, + 5.607676898129712, + 5.713099480868745, + 5.711393886092918, + 5.6115898524435925, + 5.594764018509964, + 5.491885165819091, + 5.544998064182106, + 5.469423579233358, + 5.4433700884422365, + 5.390435615408686, + 5.434066995108299, + 5.401423208144631, + 5.330784903423126, + 5.3883116211969915, + 5.352532724429103, + 5.258442932188404, + 5.1895137938257445, + 5.265483777029553, + 5.211071699047387, + 5.104900520877221, + 5.150261518178003, + 5.159123690631612, + 5.004787792854813, + 5.1524175467913205, + 4.96057281451591, + 5.00649037563479, + 4.931897052557098, + 5.008556865562496, + 4.911427179866345, + 4.856129023872447, + 4.910766359845982, + 4.8700379392653685, + 4.881693702006807, + 4.803070602105611, + 4.773515435110455, + 4.726570858488101, + 4.738511891230288, + 4.683305383376583, + 4.643064226275256, + 4.662648735593856, + 4.587739980418621, + 4.580987198960831, + 4.525000464485542, + 4.547138087202403, + 4.415642926889264, + 4.461460695761796, + 4.456336220155781, + 4.393470370545175, + 4.382366592476598, + 4.330286393570988, + 4.3233496938964215, + 4.36194829310361, + 4.397117798176654, + 4.289027719807336, + 4.296676414843382, + 4.256301967294935, + 4.143988951335558, + 4.2371848320519225, + 4.130893897147196, + 4.055562442869366, + 4.111625844615222, + 4.098374513094115, + 4.073878948222862, + 4.1323499546216445, + 4.047064054766413, + 3.9577558574481175, + 3.879993667186534, + 3.86211868388307, + 3.9102491488153976, + 3.8547948483708763, + 3.872051422410573, + 3.877519445060864, + 3.8370961234631995, + 3.8465419206715703, + 3.7782198333263275, + 3.782734045252038, + 3.652013098074529, + 3.7347723524385046, + 3.6903213933188694, + 3.5980130312581604, + 3.556860604666693, + 3.6161129592494294, + 3.617227658091037, + 3.5682334383434307, + 3.4772404737339717, + 3.486174463428405, + 3.5646452139482308, + 3.3546270305561805, + 3.5213354032803283, + 3.4433870856519224, + 3.4879525214445715, + 3.3627982181579066, + 3.3729507548528312, + 3.347377325611814, + 3.2452176084217776, + 3.2740216785755587, + 3.170994746728456, + 3.3508305226664308, + 3.2501225637526137, + 3.3235700872963956, + 3.1896604985955097, + 3.2402636976391963, + 3.2406953161064314, + 3.2289171033259287, + 3.113215054893654, + 3.127332241356831, + 3.0992364459168344, + 3.027975080890376, + 3.0902791450125036, + 3.0228076527911187, + 2.9448458675554954, + 3.1060091767119613, + 2.99798142341679, + 3.0434776081936894, + 2.933271580384048, + 2.9162189165504993, + 2.952002040119069, + 2.912082979379334, + 2.905795718364754, + 2.808213683756172, + 2.7644829060982583, + 2.863755049487729, + 2.771922114976766, + 2.73915534932808, + 2.7723847893504865, + 2.690680082695469, + 2.676538108109867, + 2.757958153124576, + 2.6297011467032547, + 2.6406447995612865, + 2.7562745556696013, + 2.5799287281079257, + 2.679772691607329, + 2.67974828738636, + 2.668431293670981, + 2.5423957410962736, + 2.468055164791607, + 2.480804614635213, + 2.4736225014540283, + 2.457991149537316, + 2.4586549724077607, + 2.4909262263007794, + 2.42152226235401, + 2.4111281335550387, + 2.385169545427264, + 2.4697140059659537, + 2.328609734240576, + 2.280436092628375, + 2.3782251660767644, + 2.3935282036643932, + 2.256222360291039, + 2.3148970513884803, + 2.306321677050922, + 2.3121455642336475, + 2.2960710554828077, + 2.2632979967123594, + 2.2453527593116176, + 2.2186020049478787, + 2.197276524492579, + 2.187340404819036, + 2.231945199183002, + 2.2040747464919694, + 2.0504371130969887, + 2.083282871344958, + 2.0751334957905585, + 2.088990518758252, + 2.0301104451785306, + 2.0149396088467237, + 2.08653812093976, + 2.01966822422712, + 2.081310152240152, + 2.072456524691157, + 2.084266599018417, + 2.0847764859913855, + 2.0368329335571986, + 1.9343427572077403, + 1.9305784755801225, + 2.02628546975554, + 1.896812189532444, + 1.8463540782663508, + 1.9610685465829982, + 1.7857614591135595, + 1.8212552000386633, + 1.877361544249471, + 1.8663971741556746, + 1.8954409867559459, + 1.8005798123498784, + 1.8632346827487216, + 1.854632054783655, + 1.8706211572254383, + 1.8356255677601319, + 1.7358820131511992, + 1.8786133948342847, + 1.8122436000121647, + 1.8594159033862925, + 1.7512103373002865, + 1.7805676287838998, + 1.8123564497329878, + 1.6743301276172766, + 1.6866033478661104, + 1.777688858185149, + 1.7341670620456169, + 1.7902117935767021, + 1.6496233815302797, + 1.7097380368703705, + 1.7329802011013777, + 1.7065214080221687, + 1.7525819872386088, + 1.6819388184989994, + 1.6279191939955926, + 1.6095783092078055, + 1.6651855530195419, + 1.6260788767958911, + 1.6352701693219134, + 1.5698334421155793, + 1.6564098729631973, + 1.6566114166314592, + 1.5756421234781104, + 1.5429787058061222, + 1.529566078213716, + 1.467331948809167, + 1.4268816625790264, + 1.5744625445734448, + 1.5087981458165485, + 1.5022842319886633, + 1.5313269136756122, + 1.557444086525283, + 1.5231782765805304, + 1.4598684897052756, + 1.450363413543446, + 1.5239594109369066, + 1.4421444048012637, + 1.5387364092804903, + 1.38019914630301, + 1.4416963137660777, + 1.5010672547456845, + 1.4426889614094198, + 1.4826473600601517, + 1.4051306707895679, + 1.4883719658855357, + 1.447483165315053, + 1.5107719193770928, + 1.4919048544319742, + 1.4235211664351832, + 1.4122504701188299, + 1.5112925151921925, + 1.4567908772367701, + 1.3976940806170863, + 1.501560274450333, + 1.4291545621027666, + 1.3854066817606028, + 1.4558974050786289, + 1.450233790761163, + 1.4266011771526408, + 1.4299786731502058, + 1.4364336291761164, + 1.4231948409546715, + 1.4691842318232995, + 1.3922771279937114, + 1.4479380027145268, + 1.4145007037901571, + 1.4058817856559263, + 1.4317209235036918, + 1.3697217675046913, + 1.4511881570031744, + 1.4759904070384886, + 1.5071754093088756, + 1.3376557411926517, + 1.4197579831536271, + 1.381796461936698, + 1.4453582630073532, + 1.4272692556458022, + 1.3486956347721106, + 1.2679352229782068, + 1.3799854919543058, + 1.4287934933167807, + 1.3979806460927484, + 1.3840288868812511, + 1.4441403393601995, + 1.439550003054347, + 1.4174996504336177, + 1.3378792730432445, + 1.4793422031300305, + 1.3857485985442164, + 1.4964126271536569, + 1.4501766302981738, + 1.428261749898727, + 1.4580713385670143, + 1.4595147077138224, + 1.5344675742328526, + 1.4421006157889593, + 1.3537144327582336, + 1.435482666010502, + 1.4303180999494098, + 1.5269666739303196, + 1.4691316891896575, + 1.530137835475355, + 1.4253662935201357, + 1.4540127719724725, + 1.3753706867634559, + 1.4838398449951744, + 1.4553139262263475, + 1.510306101461166, + 1.49045808892558, + 1.5086675960402596, + 1.557388651333933, + 1.4717548724229168, + 1.4282209478629815, + 1.4670080409702029, + 1.539988036860048, + 1.626495774111324, + 1.5129425401965315, + 1.5354960431657796, + 1.5220886841329113, + 1.4073924614022242, + 1.5234305184590162, + 1.5572303356360897, + 1.6277218762292491, + 1.5583082243445818, + 1.5807517629785968, + 1.5949518533879274, + 1.5592067441530915, + 1.5516636202526881, + 1.54004001170714, + 1.5845021534881532, + 1.6690517639288773, + 1.6947628775295775, + 1.6253627578094159, + 1.5584117826817456, + 1.6989693163439024, + 1.5930005332873276, + 1.6554592397481827, + 1.618345764518628, + 1.7599029066616532, + 1.5553405979670591, + 1.7394693754695234, + 1.6624860514895257, + 1.6866204631742965, + 1.8224057035598313, + 1.8420850673628448, + 1.7319294144771893, + 1.772976892577083, + 1.7057647073293098, + 1.7570033299425125, + 1.8046890782890481, + 1.826356699245204, + 1.7399440892956581, + 1.7503621061140386, + 1.7640801059186642, + 1.8394334155231513, + 1.8256241284081305, + 1.805406601851913, + 1.84087055843739, + 1.8079754359345221, + 1.9264948628414527, + 1.9438160205265413, + 1.8242921076632175, + 1.894724200970564, + 1.904424105868656, + 1.9223628533007961, + 1.9372453997109593, + 2.0080181532224266, + 1.9583172553340666, + 1.9962476353138356, + 1.9900041022711301, + 1.9866061017660903, + 1.9913302836646893, + 2.109507551970933, + 2.033604711396945, + 2.0685209747949522, + 1.995810665876016, + 2.024073806168244, + 2.1234516827017367, + 2.247145577032003, + 2.072494443218394, + 2.0496771520600774, + 2.1337427249681142, + 2.1787365566156454, + 2.160892596252, + 2.238241910946414, + 2.119281813685947, + 2.259694502576754, + 2.184671222647562, + 2.273670349077544, + 2.295165848963396, + 2.2735483540904444, + 2.192396640161925, + 2.2516199930917953, + 2.398785096997389, + 2.38475684116991, + 2.3400779950472113, + 2.373835326350314, + 2.278730923928046, + 2.3814919313703005, + 2.3993148362414907, + 2.3881203690428783, + 2.480658846176553, + 2.491814535405657, + 2.5408926014290136, + 2.4813231183626465, + 2.469353387295692, + 2.584487610936914, + 2.5924911914405815, + 2.516338506467115, + 2.5533770898363226, + 2.640794861101412, + 2.6120864832986004, + 2.5717863652378417, + 2.6917673479946784, + 2.663536832482686, + 2.633092123727587, + 2.748958391764931, + 2.755932648692739, + 2.7335016841917197, + 2.7536551252645096, + 2.807060597963215, + 2.829506877799205, + 2.8276653280843425, + 2.802774311028155, + 2.8383376758422862, + 2.8624670458699244, + 2.9756931826525865, + 2.8420753005981374, + 2.906488643936171, + 2.87285261026108, + 2.9586585104777674, + 2.988638407981594, + 2.9984260089826007, + 3.076227814785404, + 3.013214196897495, + 3.0331514251816545, + 3.1435148909508426, + 3.091663467202359, + 3.0950069832261247, + 3.1703467864359847, + 3.127457206720381, + 3.117102163850609, + 3.2117225470964166, + 3.17721722365573, + 3.275490401235652, + 3.2432891445882004, + 3.3217060907515252, + 3.3503141209385476, + 3.426292678823141, + 3.38893670394949, + 3.375523799208508, + 3.355998028476516, + 3.49825154869515, + 3.4656899860601986, + 3.39455335433006, + 3.4425741885713568, + 3.444121908561098, + 3.4645044957664304, + 3.397740978078573, + 3.630625889156916, + 3.5856036725554263, + 3.5869899375033825, + 3.580496215443675, + 3.7107854605740087, + 3.678675924344209, + 3.775552405496587, + 3.689745735238482, + 3.7310304592081143, + 3.7339801343929806, + 3.824585796213173, + 3.801340704342345, + 3.8949391147482304, + 3.8970292288117796, + 3.9108104360927127, + 3.929383543504017, + 3.8885657136436844, + 4.050128766650376, + 3.8950526064589583, + 4.099978192160724, + 4.010060846289936, + 4.063831884302102, + 4.005832510664698, + 4.124670790422392, + 3.9899364339763044, + 4.123278886455269, + 4.191659473471954, + 4.115400195728979, + 4.232778497075627, + 4.262732562423145, + 4.25448626525227, + 4.305665809211154, + 4.3048296955168075, + 4.28041165048784, + 4.356228223670045, + 4.31908853873048, + 4.404185187810129, + 4.4190685087659025, + 4.41336068406994, + 4.535387349818766, + 4.440307237073023, + 4.531093796513723, + 4.519905762920014, + 4.633729019242627, + 4.57595128790871, + 4.641599405841853, + 4.729818390867285, + 4.61141939850108, + 4.78838372167601, + 4.768440988815624, + 4.803648527382571, + 4.789736089895895, + 4.853384602092778, + 4.890014353276729, + 4.8299780790679465, + 4.96412386966371, + 4.940434478934469, + 4.880327261711088, + 4.977446019326213, + 5.005609455409975, + 5.097104261286517, + 5.057892314296624, + 5.154721600002944, + 5.086429321927391, + 5.139374677508808, + 5.098102908227256, + 5.157558638993133, + 5.29744173009627, + 5.306353937440987, + 5.297392200984099, + 5.247644183363349, + 5.36569200769065, + 5.297198861001731, + 5.412137261526859, + 5.34004144918251, + 5.2747911618465375, + 5.415481728230853, + 5.4363313002028955, + 5.520371857044252, + 5.573193861578422, + 5.645887904393511, + 5.603126865878105, + 5.655025571240155, + 5.672798910159974, + 5.679014969430104, + 5.78035122118955, + 5.723209014100231, + 5.829791387024612, + 5.780111863966654, + 5.811623524669893, + 5.857515326471159, + 5.80085147189741, + 5.83043915648162, + 5.969443954723329, + 5.952534335429116, + 6.056702241014646, + 6.090081355311086, + 6.132104627249961, + 6.080230900241647, + 6.182010008951507, + 6.053980247336354, + 6.111309754084427, + 6.119869873479907, + 6.246252227133841, + 6.2392780716444625, + 6.380836305021529, + 6.354306426924025, + 6.338095767404847, + 6.300963125965182, + 6.389407579565746, + 6.5848416631352045, + 6.4687583686127645, + 6.441294112270452, + 6.527414242584832, + 6.575187772650495, + 6.556908381725902, + 6.5470798955798575, + 6.55187189194941, + 6.679986911173807, + 6.692755634530128, + 6.638604436764282, + 6.743891905225597, + 6.707001689393604, + 6.934679001984132, + 6.853527195823175, + 6.8432458576669495, + 6.909041798717491, + 7.063307989434553, + 6.882544298778203, + 6.993937426331712, + 7.118000304973986, + 7.072763309499283, + 7.1065944618886485, + 7.172674032614963, + 7.195450319110299, + 7.137704753344474, + 7.203815415196871, + 7.276869381932792, + 7.2527482576318265, + 7.356120461076589, + 7.402220598434789, + 7.325963777309273, + 7.4267873665177415, + 7.487255284050458, + 7.478688474879319, + 7.566763703200124, + 7.455027615363963, + 7.493618860275185, + 7.436934179207849, + 7.675035718438201, + 7.722918773792731, + 7.658868330430155, + 7.668062442270925, + 7.728958881814089, + 7.728060048478825, + 7.890793077938272, + 7.835539908733755, + 7.853899093269412, + 7.955252020114387, + 8.003860474282375, + 7.949498540754623, + 7.9838137469049215, + 8.03383139518032, + 8.03403783859211, + 8.079234551950874, + 8.043310273196811, + 8.053355219210175, + 8.161623369739663, + 8.334334505938392, + 8.281540226798224, + 8.222806626493043, + 8.269750818275106, + 8.290023955310964, + 8.416207507140928, + 8.36034015377733, + 8.270420027675963, + 8.436239866662387, + 8.357842809972942, + 8.452134321320173, + 8.509353677519332, + 8.566236902134168, + 8.59878271754252, + 8.633919488246335, + 8.726716463568179, + 8.687046689066099, + 8.635235662990969, + 8.858253765490126, + 8.850319535002313, + 8.786142069035053, + 8.812416344616894, + 8.930320518433197, + 8.922853065157657, + 9.011897486108172, + 8.915883599221141, + 8.912823445967728, + 8.978108084104402, + 9.011805928766199, + 9.233863272468241, + 9.069012608920536, + 9.217431488641155, + 9.173678359271454, + 9.288398611753008, + 9.236306319673949, + 9.216305233274086, + 9.30761829082566, + 9.40098233758647, + 9.248981028646885, + 9.472869015622367, + 9.451183272200568, + 9.46737678242403, + 9.436565038830333, + 9.512125251175647, + 9.574563798548795, + 9.601126183206135, + 9.58143446257305, + 9.66329971453346, + 9.723589188712502, + 9.74838962173347, + 9.822537084498656, + 9.778305655102685, + 9.81015806669287, + 9.749011314541857, + 9.855420968551632, + 9.80830254417979, + 9.919709251367685, + 9.89341816006913, + 9.917118660181417, + 10.028359055361676, + 10.044217924895005, + 10.113530471051714, + 10.082248961748073, + 10.04342747557831, + 10.144741539325278, + 10.098578346560068, + 10.169229004337113, + 10.222442712034226, + 10.304303469723866, + 10.258215342474294, + 10.343393319285905, + 10.434422917877649, + 10.361457554598429, + 10.34691488458303, + 10.538407055900862, + 10.461944115030652, + 10.46437551968597, + 10.502909332122563, + 10.491921257085243, + 10.56467906321287, + 10.653144617861997, + 10.623357328451862, + 10.666071126680528, + 10.669406807732932, + 10.768308594989833, + 10.617876464931062, + 10.73224845523939, + 10.836177540181673, + 10.748360892783849, + 10.824148131875228, + 10.828919244463924, + 10.956556403794563, + 10.948994981504491, + 10.868915611734698, + 11.007512338380986, + 10.95294350993864, + 11.07232822024905, + 11.087900919623102, + 11.059707465487806, + 11.181377522391537, + 11.15686541007866, + 11.251206215449962, + 11.198263088439745, + 11.162633366724505, + 11.299735643073667, + 11.29979167852381, + 11.247129477378301, + 11.426509519818827, + 11.382405637385348, + 11.397799611280433, + 11.37458278796442, + 11.45303779206926, + 11.479776393479392, + 11.5966865546337, + 11.634070832582106, + 11.582111526052234, + 11.653203486192494, + 11.616237401258795, + 11.596334267524462, + 11.654558572200258, + 11.66005862378299, + 11.749201357473511, + 11.791209426024755, + 11.720538955225694, + 11.881160162422649, + 11.763043097961107, + 11.887085460291871, + 11.917449342503877, + 11.873885965021886, + 11.899310338976655, + 12.02960279374048, + 12.024833640498917, + 12.009916490650113, + 12.060692425863872, + 12.060567117265654, + 12.101767154961994, + 12.171086785556717, + 12.121413171081622, + 12.127884841609314, + 12.18854890200051, + 12.300739085297892, + 12.350516360977203, + 12.25729192642607, + 12.212069206203672, + 12.381359300321362, + 12.329533827232561, + 12.362572920933337, + 12.383304529756778, + 12.392108007765913, + 12.475115066371465, + 12.497119243354282, + 12.495464718134603, + 12.533733168579575, + 12.587484522734695, + 12.55126429727366, + 12.619275111738627, + 12.654374769212124, + 12.708851616458292, + 12.66915624867462, + 12.708733670839084, + 12.817752694156177, + 12.641892842707037, + 12.787797325908482, + 12.798259089102453, + 12.832278732516894, + 12.863433431524491, + 12.887011260212407, + 12.86179269432155, + 12.86713853476515, + 12.959927398760446, + 12.968833522107172, + 12.911599923991712, + 12.9369266442518, + 13.06507629258869, + 13.136634360241104, + 13.102805159094206, + 13.086291066951643, + 13.092301275250769, + 13.159762350717836, + 13.21045670516699, + 13.147550416714529, + 13.273174240292368, + 13.236815406795749, + 13.378354607712044, + 13.325207957395472, + 13.365614867611885, + 13.215559281193638, + 13.295466143744608, + 13.330425899101334, + 13.362449135114444, + 13.357861756609045, + 13.42563060093633, + 13.496824205535944, + 13.514868602421105, + 13.440450747518351, + 13.472467154722803, + 13.582006810795475, + 13.543375293829298, + 13.594634836676173, + 13.52830612677303, + 13.568656669494095, + 13.64935212577579, + 13.628328132517463, + 13.650829993872776, + 13.696067486864848, + 13.675514027352204, + 13.729007218156676, + 13.787181875877831, + 13.788045237421754, + 13.92695062270527, + 13.93083163417063, + 13.82918670712578, + 13.829479766746616, + 13.832158897787739, + 13.89224014255609, + 14.00776454697134, + 13.955939070510736, + 13.881102717603374, + 13.987727555071142, + 13.996928608570219, + 14.000839940635817, + 14.02792512137595, + 14.008722980822645, + 14.07371931044326, + 14.067783738188963, + 14.077054802160283, + 14.118765393267749, + 14.146184387178758, + 14.13272185067808, + 14.134007395574184, + 14.084379273890365, + 14.2274596578688, + 14.2513247278925, + 14.192174143476924, + 14.311057834912052, + 14.25367292322613, + 14.289456130659039, + 14.313203035723179, + 14.369101392444513, + 14.428058158873231, + 14.370874086220077, + 14.421008112284174, + 14.443180540185498, + 14.411074421946392, + 14.40070019906988, + 14.45255045434371, + 14.432954725602807, + 14.535969881755875, + 14.446030340508717, + 14.519394302165633, + 14.475175762222285, + 14.471545515769936, + 14.567933783191856, + 14.53542966714753, + 14.59574960623417, + 14.609762054106554, + 14.573077838849489, + 14.58258324261737, + 14.70983171449998, + 14.61591304817972, + 14.682724404531413, + 14.669130050001892, + 14.786394463224534, + 14.708003314249678, + 14.754896979004172, + 14.755156148449393, + 14.80562516287721, + 14.746592528711895, + 14.738257736624858, + 14.771508958751973, + 14.707608197399543, + 14.823492460935556, + 14.822657212981195, + 14.78016208453321, + 14.776487481172957, + 14.85294571025532, + 14.9037016008931, + 14.86658538085303, + 14.941107039110817, + 14.926520232829406, + 14.816162814774081, + 14.911536950193442, + 14.826995724304716, + 15.012650784236486, + 15.03861525210368, + 14.988153536981216, + 14.955752670482696, + 14.973252108105864, + 14.954109166243821, + 15.027027944209092, + 15.084023039678119, + 15.017557110360192, + 14.97920679157886, + 15.039376352935284, + 15.060404932385564, + 15.11845085433262, + 15.112070156782641, + 15.096384238558187, + 15.06000965196899, + 15.099000984061268, + 15.075276173651172, + 15.12735202415381, + 15.058383281494123, + 15.124449819215702, + 15.07868171718774, + 15.065189281664185, + 15.16375672847566, + 15.171757667053095, + 15.109864176729653, + 15.177729656078762, + 15.18003427407984, + 15.235877277397904, + 15.129048609381407, + 15.100449407101966, + 15.249348931739194, + 15.123713704043107, + 15.22722282393372, + 15.25298416975577, + 15.290147640582626, + 15.256318177411432, + 15.227502152873184, + 15.203021534350244, + 15.192630364834383, + 15.269697415825993, + 15.29963338157848, + 15.280345232927372, + 15.328632324262363, + 15.334833525250083, + 15.380100182641716, + 15.345967700131252, + 15.278000818534965, + 15.260182232030523, + 15.305641266788907, + 15.42681582176111, + 15.349346096158776, + 15.304812074462815, + 15.40510316783081, + 15.303192975376147, + 15.34583034575967, + 15.309836833624514, + 15.311403078585341, + 15.395356212563064, + 15.40919285122074, + 15.30115458295807, + 15.343210141401629, + 15.459433922795057, + 15.422770922187443, + 15.372086171472711, + 15.295118493572707, + 15.432717889490117, + 15.399724781692989, + 15.414338798063337, + 15.40018876726203, + 15.312606344374435, + 15.419579313261913, + 15.425167646072671, + 15.378131105585243, + 15.365816357229251, + 15.393818768659822, + 15.394498868454331, + 15.402206239470411, + 15.401207492446735, + 15.387604212618463, + 15.413736740366346, + 15.399044208449302, + 15.345473977282037, + 15.42112578843476, + 15.36928455970424, + 15.388213352768929, + 15.382894884683708, + 15.361631872209587, + 15.442499694169978, + 15.327002306541983, + 15.417350603713562, + 15.371551860758654, + 15.41224408419349, + 15.451908278835278, + 15.292971963633924, + 15.332061872457222, + 15.381023682266804, + 15.393813518890651, + 15.368877973941803, + 15.30094737466677, + 15.387550711261405, + 15.417873929054517, + 15.263815386121589, + 15.435377887778323, + 15.396584981883672, + 15.372050315656143, + 15.380815157618416, + 15.355068395523393, + 15.370461648474821, + 15.289485705131899, + 15.39235846755745, + 15.403465221899678, + 15.240162804830524, + 15.40448994187271, + 15.37222744176499, + 15.321933119625154, + 15.302922267089622, + 15.29503748806238, + 15.276322951858473, + 15.265024960993914, + 15.304205585701412, + 15.27993677392815, + 15.28801708614864, + 15.209252833281218, + 15.336728099848662, + 15.260128761590998, + 15.256317178764425, + 15.23342344789257, + 15.257917084228355, + 15.18665544330503, + 15.267950300274707, + 15.24731870203534, + 15.201171007827044, + 15.245820801115547, + 15.240187094084304, + 15.216093757939632, + 15.18668921654065, + 15.340466984122477, + 15.18192431975222, + 15.22156490203534, + 15.207459109598938, + 15.208563678936605, + 15.189443358051514, + 15.077990416209039, + 15.212238430672814, + 15.17083616370071, + 15.253625599014235, + 15.136467468472464, + 15.183974778538738, + 15.13531547172245, + 15.167627823298252, + 15.131372261205685, + 15.067725117327845, + 15.131951212621308, + 15.088443373386692, + 14.991756544783646, + 15.069210191611893, + 15.1193154593941, + 15.078325688845055, + 15.021517740154257, + 14.99827468902863, + 14.931209994002804, + 15.00604547335869, + 14.941111169025655, + 14.911454796871247, + 15.028762967262834, + 14.991468498839454, + 14.933845656486804, + 14.895928940521216, + 14.952387443833727, + 14.961693001349577, + 14.968366900221696, + 14.861150832788626, + 14.946385572220882, + 14.854302261957912, + 14.821997123059178, + 14.845314919725922, + 14.765117796930491, + 14.846886476945825, + 14.850870382799556, + 14.853271716794811, + 14.779712079606158, + 14.801519410987646, + 14.749984353504095, + 14.710769048663082, + 14.706229804293828, + 14.75850615287598, + 14.736186417654272, + 14.673447076355027, + 14.639665216557514, + 14.705628821423028, + 14.61080376768128, + 14.696729085332985, + 14.675784581687374, + 14.610245579126754, + 14.595743724358693, + 14.66873344393382, + 14.545665460464638, + 14.593682106611968, + 14.594939984043261, + 14.502651606228595, + 14.484393884962142, + 14.44829001163529, + 14.5076064898286, + 14.503759713496263, + 14.465768510342599, + 14.381267841182485, + 14.526087142814585, + 14.377207008420866, + 14.378622323646416, + 14.392993314189786, + 14.270151738043989, + 14.344018087318034, + 14.303829210385564, + 14.349006800990667, + 14.286992449938127, + 14.263529504064868, + 14.236068903591208, + 14.269830447044598, + 14.248856562911115, + 14.258223798273063, + 14.120716556273175, + 14.129315257798769, + 14.071750060642103, + 14.149369741114624, + 14.129917134399628, + 14.0923706778161, + 14.1065924756089, + 14.061241497114219, + 14.119005692984157, + 14.054025630414301, + 14.046021296155816, + 13.970045550564292, + 13.930328981001564, + 14.050259814701842, + 13.893471532391603, + 13.914490314685871, + 13.91514313172709, + 13.866158267425744, + 13.893459120754864, + 13.826949149205387, + 13.855411616176577, + 13.754694476537459, + 13.733255900182032, + 13.764541152460573, + 13.687659860177165, + 13.78098146352805, + 13.77180486894825, + 13.679336052632404, + 13.703899923880622, + 13.640556468106322, + 13.67396638729429, + 13.671326910761724, + 13.504256027722537, + 13.504427367777106, + 13.494176331627347, + 13.474708408562638, + 13.547606252185922, + 13.428510439434797, + 13.491525370934559, + 13.35640727197133, + 13.455409064399245, + 13.382980533090478, + 13.360741235995999, + 13.379458102894942, + 13.292677494076143, + 13.268333304687598, + 13.324126728821664, + 13.253323853903542, + 13.267133846614922, + 13.141754893027237, + 13.263436897053822, + 13.168378917129576, + 13.174535536109826, + 13.116075663403555, + 13.08483985816219, + 13.083012360458055, + 13.060522740445183, + 12.972545313862923, + 13.0330738138575, + 12.96146393966949, + 12.972394970161874, + 12.948849166660928, + 12.915773457468791, + 12.991468718336373, + 12.916928794528447, + 12.82499321570038, + 12.844798382105832, + 12.782124120227953, + 12.809972405273971, + 12.764851254543641, + 12.772241971675884, + 12.720589182992633, + 12.690109710287244, + 12.630261071644862, + 12.621568971071115, + 12.70898995405682, + 12.58399956165936, + 12.558873459409678, + 12.561557752194233, + 12.466087611051092, + 12.497080524925963, + 12.439502847229917, + 12.448188236439918, + 12.472487548555325, + 12.450668028666062, + 12.432673153534795, + 12.428236586967722, + 12.321073214531529, + 12.237090780913576, + 12.246234863948061, + 12.12593090581644, + 12.228055558877918, + 12.172505011705173, + 12.253915248558217, + 12.185325882749366, + 12.104716319935301, + 12.151757825814883, + 12.114876720331118, + 11.967192701600789, + 12.049701842219964, + 11.994932713385378, + 11.94097800837401, + 11.905207212902367, + 11.89097566942104, + 11.88508471612067, + 11.808438798644053, + 11.790920586037759, + 11.747686750885409, + 11.82577420258385, + 11.66462348928787, + 11.747151693850865, + 11.639787733841718, + 11.744800940596546, + 11.626759585500372, + 11.57456638644272, + 11.567009963437469, + 11.618625126246684, + 11.542562932716198, + 11.481592784096046, + 11.497380835717104, + 11.375230259966354, + 11.421213120997406, + 11.363965544356889, + 11.323524598066404, + 11.291447516855843, + 11.263090993947861, + 11.257585752863411, + 11.219510517140014, + 11.215223687801368, + 11.173077758986937, + 11.118169191679057, + 11.180246602408722, + 11.116638473352715, + 11.119006197736795, + 11.110893099351106, + 10.978482012171742, + 11.01315316236667, + 10.980427393931231, + 10.928339756345874, + 10.902092191376072, + 10.887702090301591, + 10.90149609610724, + 10.810963717521455, + 10.841326451064083, + 10.7649992480876, + 10.790498780039956, + 10.620346285750493, + 10.67477299388994, + 10.63781232375412, + 10.674393822967783, + 10.514278450816775, + 10.558886209888332, + 10.635285043930104, + 10.433831806465326, + 10.5487694928401, + 10.470942965258233, + 10.41865392398912, + 10.413308790936243, + 10.297603211958876, + 10.334641077270248, + 10.33007306579165, + 10.266709000489813, + 10.219389672403047, + 10.23879591312674, + 10.221398084772936, + 10.113035795417574, + 10.094191590836177, + 10.123913848063527, + 10.069106729223064, + 9.96957415447252, + 9.902399957557815, + 9.91066385020944, + 9.89418345150467, + 9.831613672100442, + 9.832472520362574, + 9.881475853706876, + 9.869076139089387, + 9.688646769364778, + 9.768905388087699, + 9.750723091981309, + 9.782505560140885, + 9.737689213436488, + 9.608823721030685, + 9.654140811965247, + 9.578580107136506, + 9.448667699584954, + 9.591256328532673, + 9.447679721761718, + 9.465623696494898, + 9.471838850748055, + 9.445693584131643, + 9.375591159066317, + 9.355309986543892, + 9.283597448222157, + 9.25527967446072, + 9.218478619245822, + 9.284055356317383, + 9.184544653623542, + 9.112493197061482, + 9.11549183344954, + 8.983280097908196, + 8.987958220142847, + 9.037236491397417, + 9.050825961865641, + 8.938422263116916, + 8.901702497295414, + 8.968756490883177, + 8.871998986357706, + 8.896355143480232, + 8.809648128352945, + 8.758086519714603, + 8.694842404166396, + 8.70226752700766, + 8.86173720712505, + 8.598757174015564, + 8.682273015549448, + 8.647035481535097, + 8.545711447259654, + 8.572312170509447, + 8.525461335020077, + 8.465476583957336, + 8.443350209450722, + 8.436434411684875, + 8.347844264600532, + 8.404979308612237, + 8.284935038798757, + 8.275765080660749, + 8.356949259879787, + 8.285584664952744, + 8.312376836970305, + 8.200003940385768, + 8.18614396731215, + 8.015919903310165, + 8.1937686644342, + 7.990119324935393, + 8.020693258805156, + 8.039756456556136, + 8.043965550860564, + 7.917846566632819, + 7.82910450807895, + 7.966021706643935, + 7.815288814628382, + 7.851623463408906, + 7.83964651565504, + 7.8041292695959426, + 7.7595358881212295, + 7.744365773156229, + 7.572602826040418, + 7.724583496920884, + 7.607510225622647, + 7.617903958934191, + 7.494658003932732, + 7.5173216203457045, + 7.478999098440573, + 7.516216526187071, + 7.398217325621629, + 7.3838023320864625, + 7.406425129248629, + 7.356519726146599, + 7.253081692061902, + 7.235286307399177, + 7.2655090128644835, + 7.402113444231576, + 7.120826287269179, + 7.177152116522942, + 7.192205316058034, + 7.1167266561054925, + 6.9832276426580036, + 7.03197879983675, + 6.9333805593092075, + 6.949081986421551, + 6.986984420599942, + 6.845551815863839, + 6.924084316660133, + 6.865877870336165, + 6.889403886676986, + 6.884062148595484, + 6.80775274601289, + 6.694166329737575, + 6.690473971341147, + 6.664487149064747, + 6.771110693676871, + 6.650277081838107, + 6.700777162267394, + 6.572760939355576, + 6.431632876962492, + 6.4739857748389875, + 6.496766558370465, + 6.393216742452582, + 6.4689475564620915, + 6.423878910719798, + 6.297734396146655, + 6.336773418124114, + 6.247850484519336, + 6.267163868009146, + 6.200250814463069, + 6.209492531332484, + 6.169828216416487, + 6.095583952600904, + 6.069575174687236, + 6.149754120783883, + 6.187462648570588, + 6.147782286425694, + 6.027080085957167, + 5.958357559839986, + 5.926635197755793, + 5.906726641966306, + 5.8740113839187424, + 5.824781158391076, + 5.83853022735102, + 5.7842663712947235, + 5.719119419695598, + 5.812831452614876, + 5.789793374325917, + 5.701791782695306, + 5.698187843864133, + 5.597181673653959, + 5.572163490936871, + 5.574075272503972, + 5.581328293591825, + 5.566002171948308, + 5.459414467775439, + 5.522542312051542, + 5.464226064627159, + 5.395671739357876, + 5.486452998194296, + 5.398305136656972, + 5.314948367006274, + 5.327137852421139, + 5.314426921884381, + 5.233956009465829, + 5.24484841444964, + 5.19394379451499, + 5.191396060998357, + 5.185941598113, + 5.045681739626859, + 5.0458243845616115, + 5.036345147209541, + 5.021958749977348, + 5.028496890737502, + 4.990077990240449, + 4.980936167361026, + 4.988088756177532, + 5.01582367302287, + 4.815958253201982, + 4.817226327243595, + 4.847235791892517, + 4.743137900573499, + 4.820572873759868, + 4.729399369495446, + 4.703415545781953, + 4.695237573516807, + 4.638995676573976, + 4.63184118145775, + 4.647936990424262, + 4.587083507157375, + 4.560421782139478, + 4.550267188289457, + 4.662117408618992, + 4.5825521744829905, + 4.413810015940913, + 4.406803599748618, + 4.416944350332135, + 4.404985980122736, + 4.399706849602883, + 4.239457077876739, + 4.332897189797446, + 4.241262250211995, + 4.350967733691329, + 4.165632848896579, + 4.299933623406319, + 4.158757976731201, + 4.199152805479309, + 4.137374132754744, + 4.12956627105463, + 4.123353411438695, + 3.9698701990738283, + 4.100126192344239, + 3.969731235529783, + 3.9773657101489714, + 3.9497792529679114, + 3.943517331360738, + 3.987552922389399, + 3.9675151551811787, + 3.9450642581540745, + 3.7982734416806045, + 3.8114670885694864, + 3.729852102191041, + 3.8432840899022254, + 3.7828096758447822, + 3.6933478579027725, + 3.760651869128062, + 3.745288055670373, + 3.7221068265603514, + 3.6877468859177993, + 3.6402590661682543, + 3.5896977576519697, + 3.6023841453743457, + 3.5442412764411264, + 3.5792201019361167, + 3.427631217611648, + 3.480138371752112, + 3.4890226199889884, + 3.413405633786666, + 3.4292235027413387, + 3.4080978662534527, + 3.3695751958412083, + 3.3562932496128783, + 3.2574158182907085, + 3.3147389860573013, + 3.314360274025508, + 3.267680062022926, + 3.2731952024465754, + 3.2925083283795376, + 3.120193898526947, + 3.1029937856923366, + 3.216945722255048, + 3.1824886071836027, + 3.1216084227643783, + 3.15980308229352, + 3.1131899123652107, + 3.08855806674777, + 2.9738395038733105, + 3.037715118515493, + 3.0004822450544646, + 3.0147778402522127, + 2.9019958461735986, + 2.968067455288653, + 2.9300360838687554, + 2.8954478572326154, + 2.9218412684594908, + 2.917005518074402, + 2.850167888035717, + 2.842492127384191, + 2.787530951924788, + 2.8359086560921036, + 2.7019141652836107, + 2.7028670047279237, + 2.7667811018663238, + 2.6620983138007666, + 2.723488133492557, + 2.611459160764004, + 2.707594547920041, + 2.540086721301261, + 2.590546348648923, + 2.670303975919448, + 2.662243684711121, + 2.554368928582928, + 2.571232524884963, + 2.5530123991216165, + 2.496354262044692, + 2.5532794511027026, + 2.498306063309038, + 2.5069862294248364, + 2.5703347960613745, + 2.4237071314372223, + 2.5299422021960734, + 2.489245881710424, + 2.3791125794487775, + 2.5230615058302095, + 2.4280004185627297, + 2.384624529064357, + 2.3970829822342, + 2.3489784328788144, + 2.358878082263469, + 2.29483528521105, + 2.3025172172257866, + 2.1836861793664295, + 2.3186100706551374, + 2.2033064533845663, + 2.3213379918932366, + 2.167674151958252, + 2.2698224534755207, + 2.1882360842485613, + 2.152973814130756, + 2.0909322895237104, + 2.2383764735510514, + 2.1938858704865822, + 2.049532808364611, + 2.1559073020801316, + 2.074953593341206, + 2.1123670702404356, + 2.082306103210423, + 1.9796802606091297, + 2.043277430898753, + 1.9643001642362121, + 1.9712470892719762, + 2.0195088850053278, + 1.9800667562620728, + 2.0026857819789834, + 1.953607606342266, + 1.9654624108502652, + 1.8988847125228923, + 1.9007274541172694, + 1.9350011497370296, + 1.8877310941999161, + 1.823738546340577, + 1.9349481278788727, + 1.8762986730189857, + 1.925325093853182, + 1.8935404483619531, + 1.8095594296223911, + 1.8003062278183721, + 1.8231300247488105, + 1.8517619349508483, + 1.8170922826376332, + 1.8357779515717363, + 1.890274601410925, + 1.8536833702128495, + 1.8006007048350545, + 1.8718310173848711, + 1.8001644564212154, + 1.722851122744527, + 1.6298861039550259, + 1.7384045778378534, + 1.6398795798884136, + 1.6499071877788476, + 1.704566292060674, + 1.7023647248431508, + 1.6003390105023747, + 1.7603891378741554, + 1.6304362201950646, + 1.609694664668415, + 1.5953600759149393, + 1.494504289643852, + 1.6184778184567319, + 1.607762238062114, + 1.5826121420298878, + 1.6225266442224568, + 1.6013508932162999, + 1.5166901303677394, + 1.6158644472622492, + 1.5568663934785487, + 1.6198727644694755, + 1.5388756637301673, + 1.4934519498098033, + 1.5884489066652765, + 1.5155610676767668, + 1.5945395399118591, + 1.5390014345948095, + 1.5644932728867562, + 1.4222246813108292, + 1.4727718542687456, + 1.5156147520104284, + 1.4778865948875142, + 1.487115462309075, + 1.425705250715765, + 1.5552464668411747, + 1.582721886779953, + 1.4436761106613372, + 1.470683172809736, + 1.5878142972094305, + 1.4231932261289315, + 1.4320061779572584, + 1.396683529636883, + 1.4006012217674306, + 1.359502191905953, + 1.5074723407677983, + 1.4542618166241166, + 1.4260697814254688, + 1.3552039085403944, + 1.4618263535096658, + 1.4235242574622267, + 1.4413236872315736, + 1.462470545038442, + 1.5364482162036655, + 1.3814146548096367, + 1.4422345888195178, + 1.3795510606833574, + 1.369904608956714, + 1.3899081783811422, + 1.4729643345001269, + 1.4653810182684206, + 1.4482732118532904, + 1.4369263713674887, + 1.3704048195677894, + 1.4481416639896836, + 1.460726919555889, + 1.41909091564968, + 1.400099857417087, + 1.3660266595226784, + 1.463222119212532, + 1.375539612425002, + 1.430912955944349, + 1.2948544854763409, + 1.4456187331649761, + 1.3789889429320166, + 1.4154327322496105, + 1.3255572105544935, + 1.3351152911897182, + 1.4550126479644427, + 1.4182994226426828, + 1.3843506111361144, + 1.346151611849619, + 1.5187994045355677, + 1.4240142986129891, + 1.4843595249091803, + 1.3967226800824657, + 1.397400434643, + 1.3650049074290498, + 1.4605072152490437, + 1.422990994978701, + 1.4098258107157688, + 1.462815191757294, + 1.4894729182835584, + 1.3802261021951934, + 1.3687052767143888, + 1.3892047290318552, + 1.44425164190636, + 1.42263984549452, + 1.4455298723869634, + 1.4853477223931595, + 1.4334852368276267, + 1.4806078866614414, + 1.5092757877979504, + 1.4646317998351994, + 1.461572671223075, + 1.4270814995454695, + 1.4719516724784287, + 1.4460127415389235, + 1.52822896698062, + 1.461030366698607, + 1.4118571336393517, + 1.4551087430755592, + 1.5056724118648432, + 1.5520006906746657, + 1.456584624614703, + 1.5429740430416767, + 1.628584371883148, + 1.584974023301899, + 1.5685405197316633, + 1.6041474174433115, + 1.5065749263213881, + 1.5527924736026142, + 1.549201525999467, + 1.5334064933166145, + 1.5997151444675284, + 1.5143252264810168, + 1.604983990454308, + 1.5449967256326576, + 1.5653210604892733, + 1.6106210788706672, + 1.5997492155860407, + 1.7038772084210558, + 1.6497186437118954, + 1.6957769618321241, + 1.5788674341031732, + 1.633576622310653, + 1.7525985843978935, + 1.7007477351150264, + 1.6694899363558549, + 1.6856608834287934, + 1.688513492868835, + 1.6963152380550894, + 1.7476900504530686, + 1.7640387520240932, + 1.660769965689165, + 1.758455315822848, + 1.8470546944975086, + 1.7707643708536105, + 1.7812205414719862, + 1.7474751305604508, + 1.8372477625305632, + 1.8789800787358033, + 1.868032683781964, + 1.8467715671606337, + 1.8800250883748901, + 1.7993561985481779, + 1.8983986822618442, + 1.8534682134841935, + 1.8492740641274956, + 1.8297816794046333, + 2.0013695583661226, + 1.9138185421064449, + 1.9806516013530702, + 1.946742594840463, + 1.9466594587918469, + 1.9632654435741426, + 2.0557003736133797, + 1.984065859458876, + 2.0667983563078773, + 2.0519176311536125, + 2.1556857756706496, + 2.0715673370991423, + 2.090977805878101, + 2.065413072781252, + 2.037083222024796, + 2.090951164871954, + 2.114474165797637, + 2.090894970730398, + 2.163866808284397, + 2.1153249211616547, + 2.198747359171191, + 2.134003252753319, + 2.1731237774381578, + 2.186428777050968, + 2.1671769819756226, + 2.254539703484335, + 2.27154406413219, + 2.2866561066816313, + 2.3061338547837726, + 2.256193593929631, + 2.3463803125193685, + 2.371583942874114, + 2.3518343862077575, + 2.4935083094947106, + 2.335597346653333, + 2.3326151875753043, + 2.3834454925719397, + 2.521473199280237, + 2.412862551852447, + 2.5354531327393883, + 2.440356396283136, + 2.408176520995342, + 2.550020521773536, + 2.623584482343963, + 2.5177213067250817, + 2.5499213206687332, + 2.5817780280086757, + 2.6234937232775466, + 2.589277649872369, + 2.669141768407215, + 2.680168426549619, + 2.5663319508409588, + 2.7071835486444393, + 2.7612989329407807, + 2.6755335299544902, + 2.7622543361114986, + 2.709962841035671, + 2.692187005027769, + 2.797550298898388, + 2.792280302208509, + 2.807280438067617, + 2.8678479596700077, + 2.8209954639398065, + 2.8722844581424214, + 2.9487993353358735, + 2.9734503345280388, + 2.922742808766682, + 2.9252450476116403, + 2.917963717645833, + 2.92016851613592, + 3.0218223721563575, + 2.966123709210164, + 3.0894709454013576, + 3.08116208358454, + 3.145769003140511, + 3.073936181656018, + 3.1297604695761354, + 3.189603543861584, + 3.2047928721904273, + 3.2327630995353283, + 3.233677806087131, + 3.26921556637816, + 3.2608824286305413, + 3.2286045304338744, + 3.33232017726175, + 3.40820900846131, + 3.3125977141069463, + 3.461898069152784, + 3.382513689458243, + 3.370638478101582, + 3.3345765045224365, + 3.54260208987015, + 3.542489651519691, + 3.4531203135497344, + 3.489806016037563, + 3.520948563156645, + 3.5006130402544087, + 3.4947869903064186, + 3.589189126244843, + 3.610008804000171, + 3.6055582407118854, + 3.5793158360998225, + 3.7387702229943023, + 3.6278165342103197, + 3.712462826154004, + 3.705839681485052, + 3.8184175804041014, + 3.8302811244900368, + 3.8094211553790673, + 3.8147235478719645, + 3.8431825520066623, + 3.853885968413389, + 3.8544107049657033, + 3.865773946265514, + 3.9434029969925763, + 3.9512254214598297, + 4.005915887381675, + 4.041659794964727, + 4.110816828921504, + 4.090463272074355, + 4.2261265981687925, + 4.010127733746599, + 4.205305864991459, + 4.2760975103183165, + 4.117936025680939, + 4.278044492711237, + 4.2172755858517545, + 4.183300472737237, + 4.304566279667581, + 4.398224551037112, + 4.360958201697932, + 4.330377381467998, + 4.405112507963852, + 4.402406845850747, + 4.464540926843632, + 4.520082729725244, + 4.565110163489146, + 4.5199953080496265, + 4.593838605577718, + 4.586870699728882, + 4.624434018805145, + 4.61871585240393, + 4.664562566713093, + 4.7181899319147815, + 4.71729330854502, + 4.667978457629316, + 4.71268239828542, + 4.763234597504341, + 4.7946848067230965, + 4.828126404772272, + 4.758395238110474, + 4.8680116253486565, + 4.878947978375179, + 5.013209841115183, + 4.997833591374773, + 5.013958461366944, + 5.029378167778578, + 5.051855899136585, + 5.083576371446862, + 5.056268331493532, + 5.109425588537139, + 5.168160184759857, + 5.1674939199799494, + 5.198620601062611, + 5.224696514817243, + 5.286175435189288, + 5.417832452925536, + 5.237758708724488, + 5.31898838754054, + 5.483747379170745, + 5.389409547607563, + 5.462269016804542, + 5.4451415509817505, + 5.514120788667596, + 5.5857552089153035, + 5.538802246592772, + 5.575384640174481, + 5.668059212022904, + 5.662264725666503, + 5.684005983281904, + 5.751010487246639, + 5.716026924195248, + 5.60985868297262, + 5.795441512264339, + 5.88719552105414, + 5.760440455988018, + 5.842659084927119, + 5.950276164248455, + 5.8425963788110415, + 5.967549883812502, + 6.006559041203259, + 6.003383864763613, + 6.052756442151426, + 6.103820023549418, + 6.108587901631139, + 6.124513157007644, + 6.149272654938971, + 6.172606130963443, + 6.204127844647819, + 6.314202210523443, + 6.283995113426305, + 6.288925481020328, + 6.277955342889924, + 6.375892523940596, + 6.376501111901777, + 6.444871822196626, + 6.391982725119661, + 6.4873880441512926, + 6.517388680494378, + 6.540071562734329, + 6.482893627715012, + 6.5967563977021095, + 6.650942422792921, + 6.703123709042158, + 6.670868265806888, + 6.739511401549354, + 6.734605706631271, + 6.83908647933174, + 6.865253185991049, + 6.854499218776911, + 6.818527553714065, + 6.840539014080199, + 6.908768233978733, + 6.904010361835563, + 6.9054718036070355, + 6.975219686576591, + 7.014925987439022, + 6.983334894302963, + 7.104263886179922, + 7.112657935122207, + 7.0655006561912455, + 7.072833273824849, + 7.212577956337274, + 7.221234031449328, + 7.2883309852759535, + 7.271424633016039, + 7.285314020323017, + 7.38284318887957, + 7.39938180933734, + 7.403770259271154, + 7.473599404550419, + 7.486511877894771, + 7.531443577766697, + 7.5974953691384846, + 7.54417068209866, + 7.5992731539093885, + 7.69560658837917, + 7.743886300925316, + 7.755045038627495, + 7.812016768867154, + 7.715437245788699, + 7.719672052649345, + 7.936152326672925, + 7.7969713746542615, + 7.8377038728394535, + 7.9607845254643905, + 7.969931630872231, + 8.034014789669182, + 7.982183473425361, + 8.113526225227258, + 8.097792185519683, + 8.166727190308412, + 8.134646493831859, + 8.128514724201185, + 8.157347801436622, + 8.242983274462388, + 8.284900120503323, + 8.24500245584689, + 8.259291169034901, + 8.249756185243925, + 8.412800956305759, + 8.41203311505484, + 8.344196275757318, + 8.5106743612765, + 8.502411801433315, + 8.601245179657983, + 8.531521065404405, + 8.647078912510578, + 8.58564266107899, + 8.617646099026398, + 8.617435356983247, + 8.719634003937443, + 8.739420765580096, + 8.806968380575054, + 8.842361994628057, + 8.840005798052104, + 8.785781223073313, + 8.897760289923722, + 8.827645031337704, + 8.975176005803652, + 8.976865788306513, + 8.957587211845155, + 9.000945306546127, + 9.076280827157458, + 9.120526075115157, + 9.186860091000362, + 9.153525853028649, + 9.183402760123407, + 9.19168808564489, + 9.289930547920497, + 9.347263103936616, + 9.323206110747176, + 9.311275348493494, + 9.407025173105774, + 9.436084664864305, + 9.471335730204727, + 9.395220632828751, + 9.4851820254983, + 9.45167381174255, + 9.59726579680567, + 9.61148081376167, + 9.64677706753555, + 9.576236632032687, + 9.671969263136926, + 9.746004174769634, + 9.762237675165498, + 9.772662953593105, + 9.89690849803807, + 9.773984685544157, + 9.917118647029334, + 9.842989147847659, + 9.97682866409762, + 9.935585896720019, + 9.943768522357475, + 10.025767354209814, + 10.057401288670105, + 10.084747207420115, + 10.069351925578681, + 10.109124151516351, + 10.217129449902075, + 10.130854244029988, + 10.219870276590562, + 10.239631831869337, + 10.214331980315059, + 10.282734127019054, + 10.407565232178559, + 10.42395389934899, + 10.330932225000941, + 10.444360999363465, + 10.428988792975826, + 10.545066406792538, + 10.456165454270916, + 10.46063497449145, + 10.520206632440106, + 10.52208762963887, + 10.739053073903532, + 10.68657538076123, + 10.676768525720586, + 10.725244307840955, + 10.828653670261568, + 10.622995123734247, + 10.699015169031775, + 10.824317229632895, + 10.8500767657251, + 10.863678873470679, + 10.904656644270425, + 10.937690499394828, + 11.044796483388115, + 10.92236962427374, + 11.0454303196946, + 11.083108528163939, + 11.127795766412367, + 11.084896640390506, + 11.087986632779762, + 11.231787838356103, + 11.175981855234793, + 11.308324252927754, + 11.284083987652188, + 11.275220669777893, + 11.377867393427445, + 11.285814035718069, + 11.292325700899083, + 11.414964510899544, + 11.437288523240724, + 11.481344145459031, + 11.451221903845223, + 11.491017354203972, + 11.520081034649937, + 11.59825530506209, + 11.65703067736697, + 11.480672654857855, + 11.625833951029907, + 11.686918291101115, + 11.712015060743889, + 11.76048083405809, + 11.707379066587322, + 11.833198316472176, + 11.85438686960306, + 11.79189524622164, + 11.897144308620007, + 11.774105887996068, + 11.903874954366541, + 11.901905446771664, + 11.90859980861353, + 11.980510097115992, + 11.944128928223082, + 12.044652247033671, + 12.021451394015427, + 12.109059056106497, + 12.135275134710092, + 12.239318119195477, + 12.151178134981526, + 12.206727874856758, + 12.248695804300173, + 12.20460983549401, + 12.245851258732726, + 12.385871855820703, + 12.334067437100234, + 12.314661549950484, + 12.372030227206453, + 12.39604279669383, + 12.473151655643274, + 12.432596288617816, + 12.474291856795002, + 12.501187879522758, + 12.431458772142523, + 12.61102135033497, + 12.582277118963749, + 12.583469163301242, + 12.596369083354073, + 12.610289021825459, + 12.757733647891662, + 12.765772976033503, + 12.736261958874467, + 12.682952528673871, + 12.710001143704597, + 12.816821408202655, + 12.778322147905058, + 12.743935897784054, + 12.899895901966284, + 12.87317873230735, + 12.889319704030957, + 12.879272567212277, + 12.886130690492411, + 12.975843690028553, + 13.038558998544735, + 13.024259830110504, + 13.06204685557049, + 13.077215071301806, + 13.167843898707304, + 13.051467825536168, + 13.11602963822475, + 13.040966169483166, + 13.156799813671343, + 13.275163496377234, + 13.174792422272354, + 13.282690163657989, + 13.210969872793576, + 13.285632145224065, + 13.249060711868392, + 13.337265089041162, + 13.240738177021978, + 13.390360921616782, + 13.326611173825547, + 13.417289265809746, + 13.450049992369816, + 13.440435247282727, + 13.429643439267732, + 13.520217239730247, + 13.488410709443944, + 13.526140832610103, + 13.501908941664118, + 13.644032318533872, + 13.593190596640131, + 13.526689791446312, + 13.54897054535894, + 13.519689484151659, + 13.68987439530866, + 13.668651180830322, + 13.672549016554862, + 13.717650556984303, + 13.708060849248207, + 13.895506470284209, + 13.749874024927323, + 13.78533653804245, + 13.910539925300357, + 13.804793762284083, + 13.91030840225957, + 13.777585895362446, + 13.87409086291575, + 13.987244232950633, + 13.910789181213294, + 13.966407699128146, + 14.05490791332348, + 14.015453589138621, + 13.946442679437203, + 14.042340289635117, + 14.058469350969435, + 14.000974303538118, + 14.14982423388766, + 14.092470714949688, + 14.133551202426567, + 14.166854938818103, + 14.195855414480558, + 14.143703309338152, + 14.154225723001602, + 14.222243099384398, + 14.283270864292541, + 14.34125640494901, + 14.225673377775744, + 14.408419005379479, + 14.319770789698008, + 14.261530782451823, + 14.38903103013188, + 14.401393989599683, + 14.359726465169992, + 14.41861467848277, + 14.330278089266208, + 14.453711880321315, + 14.395418729823923, + 14.566920470994058, + 14.545616158521604, + 14.5656950374634, + 14.517369934241172, + 14.610638919175345, + 14.603543988461109, + 14.525284845462195, + 14.621330410256292, + 14.610930401760111, + 14.679136975848138, + 14.558024245426527, + 14.616992322695461, + 14.551032384713512, + 14.598643698712223, + 14.60742169725155, + 14.720656745142758, + 14.645337319312022, + 14.662092285281103, + 14.683160682446488, + 14.709781794861337, + 14.64219215356337, + 14.681027043090099, + 14.841155487066194, + 14.815766476924125, + 14.785670770195573, + 14.827581028089547, + 14.817713328299199, + 14.822316623431856, + 14.773144871282481, + 14.867028563821936, + 14.92005231715851, + 14.889106112889301, + 14.842176565342188, + 14.94813676339609, + 14.935813486681948, + 14.96301146557689, + 14.984598176565527, + 14.881541209555499, + 14.951451157696203, + 15.033184012565188, + 14.984348364068108, + 14.981119328818881, + 15.05712955337368, + 14.971333820530592, + 14.939983472207334, + 15.121661441174655, + 15.017355972525701, + 15.064080049562168, + 14.962363632515764, + 15.031657316963859, + 15.056126757788556, + 15.027502555871408, + 15.161091556956478, + 15.122249058691917, + 15.047044946499012, + 15.110168055675437, + 15.058446909182493, + 15.034745940651494, + 15.171736811158167, + 15.22620345697816, + 15.140199766157618, + 15.180518404128193, + 15.108852484259458, + 15.136072121587206, + 15.16538132726415, + 15.203936641918789, + 15.249186891978352, + 15.184269557981253, + 15.201899551159952, + 15.15347574259974, + 15.220290927343193, + 15.245685424676777, + 15.266714709011115, + 15.260754120494909, + 15.23275232378066, + 15.288091930216483, + 15.25106575819109, + 15.247189876389896, + 15.148526527111747, + 15.243310076943066, + 15.200911528250568, + 15.331162461620275, + 15.353546400012512, + 15.33277708987851, + 15.10376780469422, + 15.241363062607482, + 15.448184920970116, + 15.344038510930746, + 15.255758245629156, + 15.28040881678244, + 15.397651592620571, + 15.355288883274204, + 15.32528439927347, + 15.30874038697365, + 15.39734045687607, + 15.291919184494736, + 15.471742850767622, + 15.3266113604491, + 15.366760093136174, + 15.457292769152875, + 15.417448269006183, + 15.40307838483136, + 15.406118589552031, + 15.411094551550514, + 15.283333789023295, + 15.397830640153407, + 15.402393583340949, + 15.450989798266244, + 15.317775243727253, + 15.415356380326726, + 15.32970433314755, + 15.337499491280196, + 15.383455393608571, + 15.416930279642862, + 15.371326472580034, + 15.266269653865901, + 15.377626492187819, + 15.363311742579054, + 15.394742008579712, + 15.411533263826074, + 15.371272754040882, + 15.354937415809415, + 15.396278780465106, + 15.375540908341874, + 15.41856472498652, + 15.404922110082499, + 15.391081190088617, + 15.39938808107016, + 15.399545907411964, + 15.439390371968994, + 15.366956304415202, + 15.316545319123867, + 15.367024293878643, + 15.399742592814317, + 15.37347420351833, + 15.38235355154876, + 15.423802463073278, + 15.370973535893675, + 15.317276777056698, + 15.423905069918579, + 15.383929636751036, + 15.315731317004957, + 15.27402623485869, + 15.354566367491238, + 15.375587832142553, + 15.316619126312956, + 15.454114754259018, + 15.333890534491141, + 15.379684345364133, + 15.328731532065355, + 15.39247959426802, + 15.32082762388145, + 15.397356659933978, + 15.299114794350489, + 15.322472910614666, + 15.278204912101332, + 15.347845167160058, + 15.354542973748766, + 15.25712314089189, + 15.311277522610675, + 15.321163949122504, + 15.29373849744778, + 15.267146837179498, + 15.343232012468103, + 15.35823612942905, + 15.181525657307988, + 15.28319968632639, + 15.277863815734054, + 15.226011960271482, + 15.26774369501468, + 15.226813570120875, + 15.261287377762637, + 15.184197808189266, + 15.185781911945384, + 15.244789709432563, + 15.2711069013047, + 15.213151585513982, + 15.180798180929035, + 15.185152147918293, + 15.073494469552521, + 15.170676937114091, + 15.16731463718708, + 15.173217648468478, + 15.116667078593508, + 15.137115390904942, + 15.179385809695946, + 15.128375967086836, + 15.101502618040874, + 15.087667497628578, + 15.023895491266561, + 15.105728638288948, + 15.01904022731851, + 15.026844212446026, + 15.030194119367703, + 14.948560847421733, + 15.046591278479097, + 15.005829601802697, + 15.019032246726963, + 15.007145955770799, + 14.983855200855098, + 15.003462974257289, + 15.006620850212942, + 14.918639805525691, + 14.981738693976615, + 14.897947968879695, + 14.962271774576307, + 14.874641844475795, + 14.961063932310262, + 14.887269073954332, + 14.965283776166363, + 15.003062275453894, + 14.773802606198451, + 14.82514157010543, + 14.875411844471348, + 14.790593873188564, + 14.946306581645231, + 14.873910447782428, + 14.7814038407682, + 14.772305262997534, + 14.722704690849541, + 14.69862808192965, + 14.75490330435983, + 14.690091034279169, + 14.796907999161693, + 14.724412053954257, + 14.683873103871539, + 14.723246345652212, + 14.660631022518965, + 14.60111902912243, + 14.604537883022273, + 14.540598587669988, + 14.627162735864866, + 14.65124687465429, + 14.606374936384302, + 14.543252343894686, + 14.52867047521847, + 14.538459159514664, + 14.505592578623528, + 14.498367294725083, + 14.465897121651485, + 14.397962628902537, + 14.383386159496991, + 14.400206780714147, + 14.472503589835586, + 14.462392024246306, + 14.346387983147503, + 14.381937958067832, + 14.330374164601533, + 14.347816189870517, + 14.297538485049838, + 14.30622459723414, + 14.37852613687516, + 14.214055461313537, + 14.233200438490812, + 14.295467729376146, + 14.288678246902037, + 14.149930114313017, + 14.165245842963367, + 14.22263372121861, + 14.203781673972466, + 14.109597543662854, + 14.125818434110574, + 14.109216189666398, + 14.087012953714552, + 14.024696745025922, + 14.093321530975155, + 14.04241686237129, + 14.010182414631043, + 14.087024030540032, + 14.00751889261417, + 13.983779996611618, + 13.941460619888616, + 13.875861285419592, + 13.91334354759547, + 13.955215276876233, + 13.895635570678257, + 13.80642240044271, + 13.883811685378435, + 13.85776602141119, + 13.850990872978176, + 13.759588080543972, + 13.8259677419341, + 13.769503282931506, + 13.81926982199454, + 13.737701679087474, + 13.758991845985305, + 13.676636653278889, + 13.612604967843176, + 13.574076437545168, + 13.629510522081217, + 13.486042362176992, + 13.561923850486789, + 13.571177276471758, + 13.520890932136671, + 13.511987870235894, + 13.49943590203489, + 13.513730800923252, + 13.455426440802341, + 13.390825767740424, + 13.391520863667338, + 13.356882509644688, + 13.336142972748071, + 13.302479284484683, + 13.280738493132212, + 13.340792384197615, + 13.279632629472331, + 13.266719270539625, + 13.236545945320067, + 13.189499918148249, + 13.248419526926636, + 13.148831024451603, + 13.152666984459655, + 13.05494475767781, + 13.024583803394387, + 12.972573331576381, + 13.05487356026829, + 12.987818179078298, + 13.10629596155305, + 13.08835622861835, + 12.97018954798858, + 12.93417995311262, + 12.848616367481284, + 12.955770949232942, + 12.85081200161144, + 12.762884898260648, + 12.84673586673816, + 12.7613664880394, + 12.7230178020445, + 12.766037790709529, + 12.70881180901545, + 12.638859165815434, + 12.656539350928579, + 12.63278951488705, + 12.56780608209246, + 12.58146986032707, + 12.571235637416894, + 12.65133884470771, + 12.492508455188766, + 12.532287670034862, + 12.437304701077768, + 12.499096578973655, + 12.436762707354964, + 12.407037036180562, + 12.298039418517032, + 12.289029265315591, + 12.404328940473992, + 12.326925996393433, + 12.14697872848192, + 12.229739032914107, + 12.251024596827046, + 12.130846562709484, + 12.13990113334755, + 12.124149438353305, + 12.113206852156603, + 12.049049031727654, + 12.057988694853695, + 12.04332425058954, + 11.912347387326516, + 11.91837447767661, + 11.95387977859337, + 11.963478578098737, + 11.937819238891874, + 11.83255887284368, + 11.949999667871118, + 11.858025702212709, + 11.831019058103125, + 11.839065861401805, + 11.757771243104111, + 11.762404052214002, + 11.770863117913775, + 11.625206707703157, + 11.549142329483573, + 11.598721304811711, + 11.54124678129768, + 11.59498833052966, + 11.520588042287116, + 11.597277686109747, + 11.478408798235215, + 11.425790487181803, + 11.438781210153321, + 11.30763884002913, + 11.378830646783, + 11.407705440054835, + 11.39302985506731, + 11.329153676891421, + 11.21674238704908, + 11.210172273458678, + 11.238792383396271, + 11.11717332937134, + 11.220199660738677, + 11.096793386354816, + 11.017264730311044, + 10.9719048982222, + 11.08034596437495, + 10.953687316419904, + 10.98229793542709, + 11.016277368129046, + 11.028350586007388, + 10.858348099904973, + 10.87828784568423, + 10.877577224490452, + 10.852410060599889, + 10.72000834760975, + 10.731122878831984, + 10.68981790843069, + 10.70207997696056, + 10.664587976923684, + 10.604945658219757, + 10.695606541920055, + 10.563402532127684, + 10.431485670218265, + 10.47280124097226, + 10.423804952048311, + 10.488208796929113, + 10.457505047591765, + 10.428954382034714, + 10.331479074066555, + 10.30301931526591, + 10.310286818963835, + 10.343423974851952, + 10.263590488115684, + 10.265457576700204, + 10.285504183968095, + 10.187828774025155, + 10.184640615845234, + 10.035393307220495, + 10.063703472800091, + 10.036522354170703, + 9.96726137971467, + 9.9370220606628, + 9.91387890714063, + 9.869865337883976, + 9.935337196538764, + 9.921289406521266, + 9.868980968077786, + 9.771843803566874, + 9.750673144198375, + 9.717680409243663, + 9.70359418164349, + 9.64557827688178, + 9.751189576633108, + 9.643713974548671, + 9.60741468689678, + 9.516869593036429, + 9.48990310129802, + 9.4529770431259, + 9.475147155858377, + 9.454143543533275, + 9.39431779799656, + 9.300164069734931, + 9.35589545479147, + 9.327378269885283, + 9.337359213468229, + 9.296458846064008, + 9.261281760383323, + 9.202477156407298, + 9.176113949162984, + 9.092219944564, + 8.991170244140388, + 8.929637516173175, + 9.069682759697413, + 8.868269886210987, + 9.045073261918581, + 8.891237818028003, + 8.903018770996006, + 8.895458007134975, + 8.782188182177762, + 8.871027885419501, + 8.814055631179473, + 8.677986719788553, + 8.769106057957988, + 8.649864091367338, + 8.68207556971427, + 8.670034410530706, + 8.575743616630737, + 8.601672633636499, + 8.522477733379008, + 8.53581885099608, + 8.515792329905466, + 8.433032295425596, + 8.41706324422656, + 8.338443681125204, + 8.337604211032627, + 8.273650163464195, + 8.337923992809642, + 8.321071095967083, + 8.224256165290733, + 8.250524504731171, + 8.190713844979753, + 8.186075883188089, + 8.025153212262847, + 8.148499959185646, + 8.052655668697705, + 8.067317633816634, + 7.99916552978925, + 7.943281536315602, + 7.900755601828537, + 7.925769398943638, + 7.911212073976785, + 7.784321034255532, + 7.858754436257584, + 7.78252212396528, + 7.729318225308376, + 7.769572889245036, + 7.769677444354801, + 7.703317486620821, + 7.599978220972022, + 7.596483218810764, + 7.600939817580506, + 7.64713833316825, + 7.560998215070834, + 7.489768004946871, + 7.608557502542834, + 7.345560420748859, + 7.4162450932287, + 7.397548813676023, + 7.3116072100134755, + 7.275891591301237, + 7.262302563610311, + 7.218811304360175, + 7.31834916555435, + 7.131309217276406, + 7.152038566476554, + 7.134148722990017, + 7.109220987008657, + 7.116986360790105, + 7.070483883579205, + 7.087794928708026, + 7.023158704798565, + 6.861557665771978, + 6.911329040825515, + 6.839826279339572, + 6.80992159576439, + 6.836907656389946, + 6.8210674504944855, + 6.7455187178825975, + 6.76259028258236, + 6.736845007665224, + 6.6410934233932455, + 6.527108596440944, + 6.716477769521642, + 6.643212384142279, + 6.537321590899399, + 6.4307006297280696, + 6.498661742169155, + 6.480303746204991, + 6.4318284569376045, + 6.493581633083089, + 6.374707798572207, + 6.4083853278931615, + 6.253551621091677, + 6.29987104865775, + 6.277043259926999, + 6.134156542741485, + 6.28052681122942, + 6.221276916941592, + 6.2107096734843275, + 6.134933685426974, + 6.032680986786772, + 6.0388880105740315, + 5.997578516718601, + 6.083997239147059, + 5.926743072637817, + 5.869327569239992, + 6.001722483638722, + 5.840779946522813, + 5.841073164871036, + 5.813847565461555, + 5.7491666216122255, + 5.840122223084209, + 5.758562354252227, + 5.764276892796748, + 5.749375523607675, + 5.6774924752299825, + 5.614848157413444, + 5.639996942506826, + 5.727122912390658, + 5.542545003261824, + 5.526808745631547, + 5.560730011943297, + 5.525925462770049, + 5.441189429301089, + 5.361899234578112, + 5.444718576607892, + 5.44245117626925, + 5.325416592631859, + 5.231425720135483, + 5.207239542594163, + 5.26452493090089, + 5.31329269099195, + 5.22559087487785, + 5.241216890247096, + 5.081428078217854, + 5.112786409258912, + 5.052280528506826, + 5.0562157080967065, + 5.001207791686481, + 5.006680022224085, + 4.908662395405554, + 4.958802805034701, + 4.90208725876593, + 4.944816337913759, + 4.943593693077971, + 4.883350526362205, + 4.7658970892985515, + 4.73948863589493, + 4.706392669168105, + 4.689565387956025, + 4.7802186477091615, + 4.747854605550975, + 4.6723761270439255, + 4.644936038428741, + 4.570892708535038, + 4.636469228427117, + 4.627365311125008, + 4.518220907807899, + 4.469785930607477, + 4.459000261393086, + 4.468531651034373, + 4.51064084773834, + 4.324622450160966, + 4.35782156030589, + 4.440158876382095, + 4.389709405719369, + 4.274152600989501, + 4.259052474257744, + 4.277897259049024, + 4.16472407651586, + 4.2228478047766105, + 4.185239183447791, + 4.250922079705627, + 4.064239197352991, + 4.174374983723044, + 4.05638974541389, + 4.0787074341042535, + 3.9649844307779936, + 4.014246420711207, + 3.9591442758649755, + 3.99066677575122, + 3.983211802272775, + 3.9410178543329515, + 3.798401733734388, + 3.9013773383314843, + 3.902817854630162, + 3.8749265043455456, + 3.764294149701817, + 3.759476970962154, + 3.8484786402470683, + 3.799094516123271, + 3.598019153334838, + 3.7274640846199207, + 3.6156327942918822, + 3.6482973559978955, + 3.6121956780359046, + 3.615606245624011, + 3.573301882237463, + 3.5525472084692393, + 3.5574317121799344, + 3.534121106983651, + 3.481187337908177, + 3.38410139334819, + 3.402744546102148, + 3.4564755384758694, + 3.399201198410645, + 3.3169099847454118, + 3.391319388471328, + 3.379269996661774, + 3.272733539016398, + 3.3700025068658026, + 3.238073683092223, + 3.249602437725823, + 3.307578027677923, + 3.1138137326432895, + 3.1800781730740346, + 3.143507680898493, + 3.214975782295173, + 3.1590141787977455, + 3.078150199298379, + 3.0203628988632927, + 3.0610265896087614, + 2.9926602984000965, + 3.021525250855752, + 2.9339384827882617, + 3.081742161764995, + 2.977554901945279, + 2.9386054998493036, + 2.9412377307781967, + 2.992018232162442, + 2.8829328122938613, + 2.844744077281554, + 2.8524412505707626, + 2.9123981654324727, + 2.828780605709921, + 2.8207908092842953, + 2.7776029697612645, + 2.80342484363306, + 2.774456844846691, + 2.6421918644285682, + 2.70379521115191, + 2.7077974323104814, + 2.7305235243177717, + 2.663288235057148, + 2.662224784936359, + 2.6988258117019464, + 2.63998790572359, + 2.5140005228704867, + 2.684833464275789, + 2.488654310183472, + 2.4723280507660372, + 2.6311745561948574, + 2.513651470150045, + 2.51256070993759, + 2.522681220933327, + 2.3625493945983282, + 2.529228094511647, + 2.3758932669801243, + 2.3549682612829836, + 2.423785709413968, + 2.334498394814365, + 2.3486865108029935, + 2.414208206618632, + 2.319751634928415, + 2.28655553049359, + 2.3239787808900347, + 2.2810464687885568, + 2.2805041949378797, + 2.267107808253718, + 2.230495705059101, + 2.2434388971583377, + 2.288001420068488, + 2.16839921481076, + 2.1940613205419264, + 2.0973487277472533, + 2.1606248652748237, + 2.135179557848276, + 2.201254674690325, + 2.1498328579619925, + 2.0384496482739083, + 2.137094175511838, + 2.093212157519169, + 2.069049846319743, + 1.9754608593867589, + 2.064705722615624, + 2.0351828199931514, + 2.067300201914109, + 1.9958221493557624, + 1.9261035589522288, + 2.0266924387305933, + 2.0258828128041753, + 1.9341032066568238, + 1.9421128566609167, + 2.044241748621461, + 1.9336566282002174, + 1.9222219017084234, + 1.9631281059359036, + 1.9541886731701112, + 1.8196348582000352, + 1.734497088747692, + 1.8142505281299512, + 1.7908422329056382, + 1.7679937844399638, + 1.9132015187518678, + 1.8739980738814985, + 1.8707138995896868, + 1.8271470957484925, + 1.8123045699364229, + 1.8563506168637056, + 1.7319751756136494, + 1.764995220258523, + 1.7663611708642462, + 1.7562575925480088, + 1.7457786590617494, + 1.716199450210743, + 1.7369974305035742, + 1.6893670859055783, + 1.748107336242777, + 1.76855077136454, + 1.6419241896106944, + 1.724265072778349, + 1.608161489415191, + 1.6090531590522477, + 1.6994957119382883, + 1.6525904197768835, + 1.580614467328649, + 1.60596692496535, + 1.5682824153593846, + 1.510033860306698, + 1.5766285864642577, + 1.6497783142724618, + 1.612248689726326, + 1.583719812172805, + 1.5744340984416845, + 1.5479857444458287, + 1.5228847191865131, + 1.4971331946905142, + 1.5483219197609797, + 1.531925021515493, + 1.549852257140757, + 1.5593333756746168, + 1.4857418840711436, + 1.4459511400626694, + 1.4828936906503052, + 1.5591193764263496, + 1.4824664306472317, + 1.4454642000936362, + 1.4888319789365951, + 1.5358459612738722, + 1.4681746497289339, + 1.5194573241722253, + 1.4160507532319504, + 1.4437498870193497, + 1.4577570000825482, + 1.4788943455941945, + 1.4503643788982048, + 1.483928806689859, + 1.4991281250992619, + 1.523260417873337, + 1.489871315928551, + 1.4188449133480787, + 1.3996178383447675, + 1.3723123183167958, + 1.3277789125851842, + 1.4157329003081964, + 1.5118035599201651, + 1.4297505229743355, + 1.4057923128775058, + 1.4129348399462094, + 1.391338612732998, + 1.5342849434232824, + 1.399831714245656, + 1.4736477602254294, + 1.3734673969864328, + 1.4668361238410499, + 1.4883870238262915, + 1.4383332856353523, + 1.3633472426461193, + 1.4295051798094252, + 1.384430139765741, + 1.4505847111094383, + 1.2957966718875755, + 1.4100442358450924, + 1.4092113991366442, + 1.466738892606288, + 1.374649700519026, + 1.4477446242536134, + 1.3797918933684465, + 1.3518502052153192, + 1.5077893080541303, + 1.3638461838829965, + 1.3692915944956048, + 1.4280885382911068, + 1.3157324927606417, + 1.426522421851844, + 1.395041318900022, + 1.4120499625729372, + 1.418025489303722, + 1.3668366026326986, + 1.4304909071448468, + 1.4434729750919424, + 1.437863528851094, + 1.3840358839623337, + 1.477151224378786, + 1.4500472656642598, + 1.4354718315942374, + 1.4637840028744311, + 1.3826002120978984, + 1.4512143019503772, + 1.4036803385146681, + 1.4646875428505173, + 1.4286102793522655, + 1.5489488128876903, + 1.432565240270045, + 1.429745229538975, + 1.4561687921635584, + 1.4406648502618151, + 1.5254013452662403, + 1.541001007068284, + 1.5184924371773072, + 1.491725011536688, + 1.558471126576289, + 1.5787929118050583, + 1.4614276530267385, + 1.4697015954123713, + 1.4976906936778205, + 1.4644747565948162, + 1.4977317936199213, + 1.5316855595787648, + 1.69866926675063, + 1.6280739516586873, + 1.507243021649239, + 1.674863030178312, + 1.687294605652505, + 1.5995073761827199, + 1.465407713448397, + 1.6151835974017656, + 1.590028652640808, + 1.6167648763493998, + 1.702512656067124, + 1.61156024091022, + 1.674792193429154, + 1.6376208625274942, + 1.6770239609976876, + 1.7366117802974592, + 1.6431067191031898, + 1.7126227485039074, + 1.7186775938430399, + 1.6841277349221748, + 1.6546382247560085, + 1.7806959538122116, + 1.6194596500735616, + 1.7684191564022047, + 1.7756603691803767, + 1.731396333057303, + 1.6492978110387901, + 1.7746043100868536, + 1.7506930813235966, + 1.7725718500170986, + 1.783695589963391, + 1.7482192955772626, + 1.7659716803279435, + 1.8160502505556313, + 1.9186851385659234, + 1.8217767153082376, + 1.9153743097013927, + 1.724994861402858, + 1.8560882578565727, + 1.8694969612088577, + 1.9037573379108357, + 1.935176292140925, + 1.9322623230966025, + 1.8873886395072854, + 1.8906888854234098, + 1.9674334978395753, + 1.8877598944605056, + 2.051281768152575, + 1.9323031391860397, + 2.0043162294289854, + 2.036838123283164, + 1.9981451514041713, + 2.057266632038897, + 2.046686838848765, + 2.0456117079174927, + 2.082789187928891, + 2.0694513944457893, + 2.0810185979624483, + 2.0762222202719256, + 2.1678160671181463, + 2.0825788782508132, + 2.1475409487744765, + 2.257887600218922, + 2.1671208042770442, + 2.239721886727858, + 2.2025102588422447, + 2.214521630376785, + 2.317935387612127, + 2.2699793244242685, + 2.1994323428755185, + 2.384873845521315, + 2.2765084049987085, + 2.324688716258029, + 2.3120196874658547, + 2.3297520496700685, + 2.32832057252686, + 2.4431993525887874, + 2.3792038953429087, + 2.387813042506406, + 2.39784090316498, + 2.543979834258007, + 2.3708553090920765, + 2.458222161055582, + 2.515351898323952, + 2.5903715841429853, + 2.4611991437295044, + 2.4915011626829346, + 2.512790470451786, + 2.552817892383896, + 2.6273047038166326, + 2.617830042740654, + 2.644590921003667, + 2.5935830294025295, + 2.6207592016271026 + ] + } + ], + "layout": { + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "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, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "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, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#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 + }, + "autotypenumbers": "strict", + "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, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#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 + } + } + } + } + }, + "text/html": [ + "
" ] }, - "execution_count": 12, "metadata": {}, - "output_type": "execute_result" + "output_type": "display_data" } ], "source": [ - "df = data\n", - "df.index = timestamp\n", - "df" + "fig = go.Figure()\n", + "\n", + "for col in df.columns:\n", + " \n", + " fig.add_trace(go.Scatter(\n", + " mode=\"lines\",\n", + " x=df.index.values,\n", + " y=df[col].values,\n", + " name=col\n", + " ))\n", + " \n", + "fig.show()" ] }, { @@ -669,19 +102192,12 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "df.to_csv(\"./data_edge_consideration.csv\")" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": {