spark-instrumented-optimizer/python/docs/source/getting_started/ps_10mins.ipynb

14472 lines
4 MiB
Plaintext
Raw Normal View History

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# 10 minutes to Koalas\n",
"\n",
"This is a short introduction to Koalas, geared mainly for new users. This notebook shows you some key differences between pandas and Koalas. You can run this examples by yourself on a live notebook [here](https://mybinder.org/v2/gh/pyspark.pandas/master?filepath=docs%2Fsource%2Fgetting_started%2F10min.ipynb). For Databricks Runtime, you can import and run [the current .ipynb file](https://raw.githubusercontent.com/databricks/koalas/master/docs/source/getting_started/10min.ipynb) out of the box. Try it on [Databricks Community Edition](https://community.cloud.databricks.com/) for free.\n",
"\n",
"Customarily, we import Koalas as follows:"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"import pyspark.pandas as ks\n",
"from pyspark.sql import SparkSession"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Object Creation\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Creating a Koalas Series by passing a list of values, letting Koalas create a default integer index:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"s = ks.Series([1, 3, 5, np.nan, 6, 8])"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0 1.0\n",
"1 3.0\n",
"2 5.0\n",
"3 NaN\n",
"4 6.0\n",
"5 8.0\n",
"dtype: float64"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"s"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Creating a Koalas DataFrame by passing a dict of objects that can be converted to series-like."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"kdf = ks.DataFrame(\n",
" {'a': [1, 2, 3, 4, 5, 6],\n",
" 'b': [100, 200, 300, 400, 500, 600],\n",
" 'c': [\"one\", \"two\", \"three\", \"four\", \"five\", \"six\"]},\n",
" index=[10, 20, 30, 40, 50, 60])"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>a</th>\n",
" <th>b</th>\n",
" <th>c</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>10</th>\n",
" <td>1</td>\n",
" <td>100</td>\n",
" <td>one</td>\n",
" </tr>\n",
" <tr>\n",
" <th>20</th>\n",
" <td>2</td>\n",
" <td>200</td>\n",
" <td>two</td>\n",
" </tr>\n",
" <tr>\n",
" <th>30</th>\n",
" <td>3</td>\n",
" <td>300</td>\n",
" <td>three</td>\n",
" </tr>\n",
" <tr>\n",
" <th>40</th>\n",
" <td>4</td>\n",
" <td>400</td>\n",
" <td>four</td>\n",
" </tr>\n",
" <tr>\n",
" <th>50</th>\n",
" <td>5</td>\n",
" <td>500</td>\n",
" <td>five</td>\n",
" </tr>\n",
" <tr>\n",
" <th>60</th>\n",
" <td>6</td>\n",
" <td>600</td>\n",
" <td>six</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" a b c\n",
"10 1 100 one\n",
"20 2 200 two\n",
"30 3 300 three\n",
"40 4 400 four\n",
"50 5 500 five\n",
"60 6 600 six"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Creating a pandas DataFrame by passing a numpy array, with a datetime index and labeled columns:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"dates = pd.date_range('20130101', periods=6)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"DatetimeIndex(['2013-01-01', '2013-01-02', '2013-01-03', '2013-01-04',\n",
" '2013-01-05', '2013-01-06'],\n",
" dtype='datetime64[ns]', freq='D')"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dates"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"pdf = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list('ABCD'))"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2013-01-01</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-02</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-03</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-04</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-05</th>\n",
" <td>-0.035864</td>\n",
" <td>0.312126</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-06</th>\n",
" <td>-1.200404</td>\n",
" <td>0.276134</td>\n",
" <td>-0.344308</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"2013-01-01 -0.621429 1.515041 -1.735483 -1.235009\n",
"2013-01-02 0.844961 -0.999771 0.108356 0.109456\n",
"2013-01-03 1.343862 -1.257980 0.099766 -0.137677\n",
"2013-01-04 3.001767 -0.208167 -1.059449 0.312599\n",
"2013-01-05 -0.035864 0.312126 0.252281 0.627551\n",
"2013-01-06 -1.200404 0.276134 -0.344308 -0.367934"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pdf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now, this pandas DataFrame can be converted to a Koalas DataFrame"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"kdf = ks.from_pandas(pdf)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"pyspark.pandas.frame.DataFrame"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"type(kdf)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"It looks and behaves the same as a pandas DataFrame though"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2013-01-01</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-02</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-03</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-04</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-05</th>\n",
" <td>-0.035864</td>\n",
" <td>0.312126</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-06</th>\n",
" <td>-1.200404</td>\n",
" <td>0.276134</td>\n",
" <td>-0.344308</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"2013-01-01 -0.621429 1.515041 -1.735483 -1.235009\n",
"2013-01-02 0.844961 -0.999771 0.108356 0.109456\n",
"2013-01-03 1.343862 -1.257980 0.099766 -0.137677\n",
"2013-01-04 3.001767 -0.208167 -1.059449 0.312599\n",
"2013-01-05 -0.035864 0.312126 0.252281 0.627551\n",
"2013-01-06 -1.200404 0.276134 -0.344308 -0.367934"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Also, it is possible to create a Koalas DataFrame from Spark DataFrame. \n",
"\n",
"Creating a Spark DataFrame from pandas DataFrame"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"spark = SparkSession.builder.getOrCreate()"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"sdf = spark.createDataFrame(pdf)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"+--------------------+--------------------+--------------------+--------------------+\n",
"| A| B| C| D|\n",
"+--------------------+--------------------+--------------------+--------------------+\n",
"| -0.6214290839748133| 1.5150410562536945| -1.7354827055737831| -1.2350091172431052|\n",
"| 0.8449607212376394| -0.9997705636655247| 0.10835607649858589| 0.1094555359929294|\n",
"| 1.3438622379103737| -1.2579798113362755| 0.0997664833965215|-0.13767658889070905|\n",
"| 3.001767403315059|-0.20816676142436616| -1.0594485090898984| 0.31259853367492724|\n",
"|-0.03586387305407219| 0.3121259401964947| 0.2522808041799677| 0.6275512901423211|\n",
"| -1.2004042904971255| 0.27613400857508563|-0.34430818441482375|-0.36793440398703187|\n",
"+--------------------+--------------------+--------------------+--------------------+\n",
"\n"
]
}
],
"source": [
"sdf.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Creating Koalas DataFrame from Spark DataFrame.\n",
"`to_koalas()` is automatically attached to Spark DataFrame and available as an API when Koalas is imported."
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"kdf = sdf.to_koalas()"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>-0.035864</td>\n",
" <td>0.312126</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>-1.200404</td>\n",
" <td>0.276134</td>\n",
" <td>-0.344308</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"0 -0.621429 1.515041 -1.735483 -1.235009\n",
"1 0.844961 -0.999771 0.108356 0.109456\n",
"2 1.343862 -1.257980 0.099766 -0.137677\n",
"3 3.001767 -0.208167 -1.059449 0.312599\n",
"4 -0.035864 0.312126 0.252281 0.627551\n",
"5 -1.200404 0.276134 -0.344308 -0.367934"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Having specific [dtypes](http://pandas.pydata.org/pandas-docs/stable/basics.html#basics-dtypes) . Types that are common to both Spark and pandas are currently supported."
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"A float64\n",
"B float64\n",
"C float64\n",
"D float64\n",
"dtype: object"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.dtypes"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Viewing Data\n",
"\n",
"See the [API Reference](https://koalas.readthedocs.io/en/latest/reference/index.html)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"See the top rows of the frame. The results may not be the same as pandas though: unlike pandas, the data in a Spark dataframe is not _ordered_, it has no intrinsic notion of index. When asked for the head of a dataframe, Spark will just take the requested number of rows from a partition. Do not rely on it to return specific rows, use `.loc` or `iloc` instead."
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>-0.035864</td>\n",
" <td>0.312126</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"0 -0.621429 1.515041 -1.735483 -1.235009\n",
"1 0.844961 -0.999771 0.108356 0.109456\n",
"2 1.343862 -1.257980 0.099766 -0.137677\n",
"3 3.001767 -0.208167 -1.059449 0.312599\n",
"4 -0.035864 0.312126 0.252281 0.627551"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Display the index, columns, and the underlying numpy data.\n",
"\n",
"You can also retrieve the index; the index column can be ascribed to a DataFrame, see later"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Int64Index([0, 1, 2, 3, 4, 5], dtype='int64')"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.index"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Index(['A', 'B', 'C', 'D'], dtype='object')"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.columns"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[-0.62142908, 1.51504106, -1.73548271, -1.23500912],\n",
" [ 0.84496072, -0.99977056, 0.10835608, 0.10945554],\n",
" [ 1.34386224, -1.25797981, 0.09976648, -0.13767659],\n",
" [ 3.0017674 , -0.20816676, -1.05944851, 0.31259853],\n",
" [-0.03586387, 0.31212594, 0.2522808 , 0.62755129],\n",
" [-1.20040429, 0.27613401, -0.34430818, -0.3679344 ]])"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.to_numpy()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Describe shows a quick statistic summary of your data"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>count</th>\n",
" <td>6.000000</td>\n",
" <td>6.000000</td>\n",
" <td>6.000000</td>\n",
" <td>6.000000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mean</th>\n",
" <td>0.555482</td>\n",
" <td>-0.060436</td>\n",
" <td>-0.446473</td>\n",
" <td>-0.115169</td>\n",
" </tr>\n",
" <tr>\n",
" <th>std</th>\n",
" <td>1.517076</td>\n",
" <td>1.007223</td>\n",
" <td>0.792741</td>\n",
" <td>0.648616</td>\n",
" </tr>\n",
" <tr>\n",
" <th>min</th>\n",
" <td>-1.200404</td>\n",
" <td>-1.257980</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" <tr>\n",
" <th>25%</th>\n",
" <td>-0.621429</td>\n",
" <td>-0.999771</td>\n",
" <td>-1.059449</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" <tr>\n",
" <th>50%</th>\n",
" <td>-0.035864</td>\n",
" <td>-0.208167</td>\n",
" <td>-0.344308</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>75%</th>\n",
" <td>1.343862</td>\n",
" <td>0.312126</td>\n",
" <td>0.108356</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>max</th>\n",
" <td>3.001767</td>\n",
" <td>1.515041</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"count 6.000000 6.000000 6.000000 6.000000\n",
"mean 0.555482 -0.060436 -0.446473 -0.115169\n",
"std 1.517076 1.007223 0.792741 0.648616\n",
"min -1.200404 -1.257980 -1.735483 -1.235009\n",
"25% -0.621429 -0.999771 -1.059449 -0.367934\n",
"50% -0.035864 -0.208167 -0.344308 -0.137677\n",
"75% 1.343862 0.312126 0.108356 0.312599\n",
"max 3.001767 1.515041 0.252281 0.627551"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.describe()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Transposing your data"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>0</th>\n",
" <th>1</th>\n",
" <th>2</th>\n",
" <th>3</th>\n",
" <th>4</th>\n",
" <th>5</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>A</th>\n",
" <td>-0.621429</td>\n",
" <td>0.844961</td>\n",
" <td>1.343862</td>\n",
" <td>3.001767</td>\n",
" <td>-0.035864</td>\n",
" <td>-1.200404</td>\n",
" </tr>\n",
" <tr>\n",
" <th>B</th>\n",
" <td>1.515041</td>\n",
" <td>-0.999771</td>\n",
" <td>-1.257980</td>\n",
" <td>-0.208167</td>\n",
" <td>0.312126</td>\n",
" <td>0.276134</td>\n",
" </tr>\n",
" <tr>\n",
" <th>C</th>\n",
" <td>-1.735483</td>\n",
" <td>0.108356</td>\n",
" <td>0.099766</td>\n",
" <td>-1.059449</td>\n",
" <td>0.252281</td>\n",
" <td>-0.344308</td>\n",
" </tr>\n",
" <tr>\n",
" <th>D</th>\n",
" <td>-1.235009</td>\n",
" <td>0.109456</td>\n",
" <td>-0.137677</td>\n",
" <td>0.312599</td>\n",
" <td>0.627551</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" 0 1 2 3 4 5\n",
"A -0.621429 0.844961 1.343862 3.001767 -0.035864 -1.200404\n",
"B 1.515041 -0.999771 -1.257980 -0.208167 0.312126 0.276134\n",
"C -1.735483 0.108356 0.099766 -1.059449 0.252281 -0.344308\n",
"D -1.235009 0.109456 -0.137677 0.312599 0.627551 -0.367934"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.T"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Sorting by its index"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>-1.200404</td>\n",
" <td>0.276134</td>\n",
" <td>-0.344308</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>-0.035864</td>\n",
" <td>0.312126</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" </tr>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"5 -1.200404 0.276134 -0.344308 -0.367934\n",
"4 -0.035864 0.312126 0.252281 0.627551\n",
"3 3.001767 -0.208167 -1.059449 0.312599\n",
"2 1.343862 -1.257980 0.099766 -0.137677\n",
"1 0.844961 -0.999771 0.108356 0.109456\n",
"0 -0.621429 1.515041 -1.735483 -1.235009"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.sort_index(ascending=False)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Sorting by value"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>-1.200404</td>\n",
" <td>0.276134</td>\n",
" <td>-0.344308</td>\n",
" <td>-0.367934</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>-0.035864</td>\n",
" <td>0.312126</td>\n",
" <td>0.252281</td>\n",
" <td>0.627551</td>\n",
" </tr>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"2 1.343862 -1.257980 0.099766 -0.137677\n",
"1 0.844961 -0.999771 0.108356 0.109456\n",
"3 3.001767 -0.208167 -1.059449 0.312599\n",
"5 -1.200404 0.276134 -0.344308 -0.367934\n",
"4 -0.035864 0.312126 0.252281 0.627551\n",
"0 -0.621429 1.515041 -1.735483 -1.235009"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.sort_values(by='B')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Missing Data\n",
"Koalas primarily uses the value `np.nan` to represent missing data. It is by default not included in computations. \n"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [],
"source": [
"pdf1 = pdf.reindex(index=dates[0:4], columns=list(pdf.columns) + ['E'])"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"pdf1.loc[dates[0]:dates[1], 'E'] = 1"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [],
"source": [
"kdf1 = ks.from_pandas(pdf1)"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" <th>E</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2013-01-01</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-02</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-03</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-04</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D E\n",
"2013-01-01 -0.621429 1.515041 -1.735483 -1.235009 1.0\n",
"2013-01-02 0.844961 -0.999771 0.108356 0.109456 1.0\n",
"2013-01-03 1.343862 -1.257980 0.099766 -0.137677 NaN\n",
"2013-01-04 3.001767 -0.208167 -1.059449 0.312599 NaN"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf1"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To drop any rows that have missing data."
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" <th>E</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2013-01-01</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-02</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D E\n",
"2013-01-01 -0.621429 1.515041 -1.735483 -1.235009 1.0\n",
"2013-01-02 0.844961 -0.999771 0.108356 0.109456 1.0"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf1.dropna(how='any')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Filling missing data."
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" <th>E</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2013-01-01</th>\n",
" <td>-0.621429</td>\n",
" <td>1.515041</td>\n",
" <td>-1.735483</td>\n",
" <td>-1.235009</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-02</th>\n",
" <td>0.844961</td>\n",
" <td>-0.999771</td>\n",
" <td>0.108356</td>\n",
" <td>0.109456</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-03</th>\n",
" <td>1.343862</td>\n",
" <td>-1.257980</td>\n",
" <td>0.099766</td>\n",
" <td>-0.137677</td>\n",
" <td>5.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2013-01-04</th>\n",
" <td>3.001767</td>\n",
" <td>-0.208167</td>\n",
" <td>-1.059449</td>\n",
" <td>0.312599</td>\n",
" <td>5.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D E\n",
"2013-01-01 -0.621429 1.515041 -1.735483 -1.235009 1.0\n",
"2013-01-02 0.844961 -0.999771 0.108356 0.109456 1.0\n",
"2013-01-03 1.343862 -1.257980 0.099766 -0.137677 5.0\n",
"2013-01-04 3.001767 -0.208167 -1.059449 0.312599 5.0"
]
},
"execution_count": 32,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf1.fillna(value=5)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Operations"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Stats\n",
"Operations in general exclude missing data.\n",
"\n",
"Performing a descriptive statistic:"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"A 0.555482\n",
"B -0.060436\n",
"C -0.446473\n",
"D -0.115169\n",
"dtype: float64"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.mean()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Spark Configurations\n",
"\n",
"Various configurations in PySpark could be applied internally in Koalas.\n",
"For example, you can enable Arrow optimization to hugely speed up internal pandas conversion. See <a href=\"https://spark.apache.org/docs/latest/sql-pyspark-pandas-with-arrow.html\">PySpark Usage Guide for Pandas with Apache Arrow</a>."
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [],
"source": [
"prev = spark.conf.get(\"spark.sql.execution.arrow.enabled\") # Keep its default value.\n",
"ks.set_option(\"compute.default_index_type\", \"distributed\") # Use default index prevent overhead.\n",
"import warnings\n",
"warnings.filterwarnings(\"ignore\") # Ignore warnings coming from Arrow optimizations."
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"311 ms ± 30.2 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
]
}
],
"source": [
"spark.conf.set(\"spark.sql.execution.arrow.enabled\", True)\n",
"%timeit ks.range(300000).to_pandas()"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1.25 s ± 29.7 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
]
}
],
"source": [
"spark.conf.set(\"spark.sql.execution.arrow.enabled\", False)\n",
"%timeit ks.range(300000).to_pandas()"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"ks.reset_option(\"compute.default_index_type\")\n",
"spark.conf.set(\"spark.sql.execution.arrow.enabled\", prev) # Set its default value back."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Grouping\n",
"By “group by” we are referring to a process involving one or more of the following steps:\n",
"\n",
"- Splitting the data into groups based on some criteria\n",
"- Applying a function to each group independently\n",
"- Combining the results into a data structure"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {},
"outputs": [],
"source": [
"kdf = ks.DataFrame({'A': ['foo', 'bar', 'foo', 'bar',\n",
" 'foo', 'bar', 'foo', 'foo'],\n",
" 'B': ['one', 'one', 'two', 'three',\n",
" 'two', 'two', 'one', 'three'],\n",
" 'C': np.random.randn(8),\n",
" 'D': np.random.randn(8)})"
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>foo</td>\n",
" <td>one</td>\n",
" <td>0.392094</td>\n",
" <td>-0.197885</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>bar</td>\n",
" <td>one</td>\n",
" <td>0.397240</td>\n",
" <td>0.768301</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>foo</td>\n",
" <td>two</td>\n",
" <td>-1.683135</td>\n",
" <td>-0.210606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>bar</td>\n",
" <td>three</td>\n",
" <td>-1.776986</td>\n",
" <td>-0.092022</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>foo</td>\n",
" <td>two</td>\n",
" <td>-0.499332</td>\n",
" <td>0.463287</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>bar</td>\n",
" <td>two</td>\n",
" <td>0.386921</td>\n",
" <td>1.995358</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>foo</td>\n",
" <td>one</td>\n",
" <td>-0.514731</td>\n",
" <td>1.042816</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>foo</td>\n",
" <td>three</td>\n",
" <td>0.194186</td>\n",
" <td>1.745033</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"0 foo one 0.392094 -0.197885\n",
"1 bar one 0.397240 0.768301\n",
"2 foo two -1.683135 -0.210606\n",
"3 bar three -1.776986 -0.092022\n",
"4 foo two -0.499332 0.463287\n",
"5 bar two 0.386921 1.995358\n",
"6 foo one -0.514731 1.042816\n",
"7 foo three 0.194186 1.745033"
]
},
"execution_count": 39,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Grouping and then applying the [sum()](https://koalas.readthedocs.io/en/latest/reference/api/pyspark.pandas.groupby.GroupBy.sum.html#databricks.koalas.groupby.GroupBy.sum) function to the resulting groups."
]
},
{
"cell_type": "code",
"execution_count": 40,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" <tr>\n",
" <th>A</th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>bar</th>\n",
" <td>-0.992825</td>\n",
" <td>2.671637</td>\n",
" </tr>\n",
" <tr>\n",
" <th>foo</th>\n",
" <td>-2.110918</td>\n",
" <td>2.842644</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" C D\n",
"A \n",
"bar -0.992825 2.671637\n",
"foo -2.110918 2.842644"
]
},
"execution_count": 40,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.groupby('A').sum()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Grouping by multiple columns forms a hierarchical index, and again we can apply the sum function."
]
},
{
"cell_type": "code",
"execution_count": 41,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th></th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" <tr>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th rowspan=\"2\" valign=\"top\">foo</th>\n",
" <th>one</th>\n",
" <td>-0.122637</td>\n",
" <td>0.844931</td>\n",
" </tr>\n",
" <tr>\n",
" <th>two</th>\n",
" <td>-2.182467</td>\n",
" <td>0.252681</td>\n",
" </tr>\n",
" <tr>\n",
" <th>bar</th>\n",
" <th>three</th>\n",
" <td>-1.776986</td>\n",
" <td>-0.092022</td>\n",
" </tr>\n",
" <tr>\n",
" <th>foo</th>\n",
" <th>three</th>\n",
" <td>0.194186</td>\n",
" <td>1.745033</td>\n",
" </tr>\n",
" <tr>\n",
" <th rowspan=\"2\" valign=\"top\">bar</th>\n",
" <th>two</th>\n",
" <td>0.386921</td>\n",
" <td>1.995358</td>\n",
" </tr>\n",
" <tr>\n",
" <th>one</th>\n",
" <td>0.397240</td>\n",
" <td>0.768301</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" C D\n",
"A B \n",
"foo one -0.122637 0.844931\n",
" two -2.182467 0.252681\n",
"bar three -1.776986 -0.092022\n",
"foo three 0.194186 1.745033\n",
"bar two 0.386921 1.995358\n",
" one 0.397240 0.768301"
]
},
"execution_count": 41,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.groupby(['A', 'B']).sum()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Plotting\n",
"See the <a href=\"https://koalas.readthedocs.io/en/latest/reference/frame.html#plotting\">Plotting</a> docs."
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {},
"outputs": [],
"source": [
"pser = pd.Series(np.random.randn(1000),\n",
" index=pd.date_range('1/1/2000', periods=1000))"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {},
"outputs": [],
"source": [
"kser = ks.Series(pser)"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {},
"outputs": [],
"source": [
"kser = kser.cummax()"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" <script type=\"text/javascript\">\n",
" window.PlotlyConfig = {MathJaxConfig: 'local'};\n",
" if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}\n",
" if (typeof require !== 'undefined') {\n",
" require.undef(\"plotly\");\n",
" define('plotly', function(require, exports, module) {\n",
" /**\n",
"* plotly.js v1.58.4\n",
"* Copyright 2012-2020, Plotly, Inc.\n",
"* All rights reserved.\n",
"* Licensed under the MIT license\n",
"*/\n",
"!function(t){if(\"object\"==typeof exports&&\"undefined\"!=typeof module)module.exports=t();else if(\"function\"==typeof define&&define.amd)define([],t);else{(\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:this).Plotly=t()}}((function(){return function t(e,r,n){function i(o,s){if(!r[o]){if(!e[o]){var l=\"function\"==typeof require&&require;if(!s&&l)return l(o,!0);if(a)return a(o,!0);var c=new Error(\"Cannot find module '\"+o+\"'\");throw c.code=\"MODULE_NOT_FOUND\",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,(function(t){return i(e[o][1][t]||t)}),u,u.exports,t,e,r,n)}return r[o].exports}for(var a=\"function\"==typeof require&&require,o=0;o<n.length;o++)i(n[o]);return i}({1:[function(t,e,r){\"use strict\";var n=t(\"../src/lib\"),i={\"X,X div\":\"direction:ltr;font-family:'Open Sans', verdana, arial, sans-serif;margin:0;padding:0;\",\"X input,X button\":\"font-family:'Open Sans', verdana, arial, sans-serif;\",\"X input:focus,X button:focus\":\"outline:none;\",\"X a\":\"text-decoration:none;\",\"X a:hover\":\"text-decoration:none;\",\"X .crisp\":\"shape-rendering:crispEdges;\",\"X .user-select-none\":\"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;\",\"X svg\":\"overflow:hidden;\",\"X svg a\":\"fill:#447adb;\",\"X svg a:hover\":\"fill:#3c6dc5;\",\"X .main-svg\":\"position:absolute;top:0;left:0;pointer-events:none;\",\"X .main-svg .draglayer\":\"pointer-events:all;\",\"X .cursor-default\":\"cursor:default;\",\"X .cursor-pointer\":\"cursor:pointer;\",\"X .cursor-crosshair\":\"cursor:crosshair;\",\"X .cursor-move\":\"cursor:move;\",\"X .cursor-col-resize\":\"cursor:col-resize;\",\"X .cursor-row-resize\":\"cursor:row-resize;\",\"X .cursor-ns-resize\":\"cursor:ns-resize;\",\"X .cursor-ew-resize\":\"cursor:ew-resize;\",\"X .cursor-sw-resize\":\"cursor:sw-resize;\",\"X .cursor-s-resize\":\"cursor:s-resize;\",\"X .cursor-se-resize\":\"cursor:se-resize;\",\"X .cursor-w-resize\":\"cursor:w-resize;\",\"X .cursor-e-resize\":\"cursor:e-resize;\",\"X .cursor-nw-resize\":\"cursor:nw-resize;\",\"X .cursor-n-resize\":\"cursor:n-resize;\",\"X .cursor-ne-resize\":\"cursor:ne-resize;\",\"X .cursor-grab\":\"cursor:-webkit-grab;cursor:grab;\",\"X .modebar\":\"position:absolute;top:2px;right:2px;\",\"X .ease-bg\":\"-webkit-transition:background-color 0.3s ease 0s;-moz-transition:background-color 0.3s ease 0s;-ms-transition:background-color 0.3s ease 0s;-o-transition:background-color 0.3s ease 0s;transition:background-color 0.3s ease 0s;\",\"X .modebar--hover>:not(.watermark)\":\"opacity:0;-webkit-transition:opacity 0.3s ease 0s;-moz-transition:opacity 0.3s ease 0s;-ms-transition:opacity 0.3s ease 0s;-o-transition:opacity 0.3s ease 0s;transition:opacity 0.3s ease 0s;\",\"X:hover .modebar--hover .modebar-group\":\"opacity:1;\",\"X .modebar-group\":\"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;\",\"X .modebar-btn\":\"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;\",\"X .modebar-btn svg\":\"position:relative;top:2px;\",\"X .modebar.vertical\":\"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;\",\"X .modebar.vertical svg\":\"top:-1px;\",\"X .modebar.vertical .modebar-group\":\"display:block;float:none;padding-left:0px;padding-bottom:8px;\",\"X .modebar.vertical .modebar-group .modebar-btn\":\"display:block;text-align:center;\",\"X [data-title]:before,X [data-title]:after\":\"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;\",\"X [data-title]:hover:before,X [data-title]:hover:after\":\"display:block;opacity:1;\",\"X [data-title]:before\":\"content:'';position:absolute;background:transparent;border:6px solid transpa
"/*!\n",
" * The buffer module from node.js, for the browser.\n",
" *\n",
" * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>\n",
" * @license MIT\n",
" */function i(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,i=0,a=Math.min(r,n);i<a;++i)if(t[i]!==e[i]){r=t[i],n=e[i];break}return r<n?-1:n<r?1:0}function a(t){return r.Buffer&&\"function\"==typeof r.Buffer.isBuffer?r.Buffer.isBuffer(t):!(null==t||!t._isBuffer)}var o=t(\"util/\"),s=Object.prototype.hasOwnProperty,l=Array.prototype.slice,c=\"foo\"===function(){}.name;function u(t){return Object.prototype.toString.call(t)}function f(t){return!a(t)&&(\"function\"==typeof r.ArrayBuffer&&(\"function\"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):!!t&&(t instanceof DataView||!!(t.buffer&&t.buffer instanceof ArrayBuffer))))}var h=e.exports=y,p=/\\s*function\\s+([^\\(\\s]*)\\s*/;function d(t){if(o.isFunction(t)){if(c)return t.name;var e=t.toString().match(p);return e&&e[1]}}function g(t,e){return\"string\"==typeof t?t.length<e?t:t.slice(0,e):t}function m(t){if(c||!o.isFunction(t))return o.inspect(t);var e=d(t);return\"[Function\"+(e?\": \"+e:\"\")+\"]\"}function v(t,e,r,n,i){throw new h.AssertionError({message:r,actual:t,expected:e,operator:n,stackStartFunction:i})}function y(t,e){t||v(t,!0,e,\"==\",h.ok)}function x(t,e,r,n){if(t===e)return!0;if(a(t)&&a(e))return 0===i(t,e);if(o.isDate(t)&&o.isDate(e))return t.getTime()===e.getTime();if(o.isRegExp(t)&&o.isRegExp(e))return t.source===e.source&&t.global===e.global&&t.multiline===e.multiline&&t.lastIndex===e.lastIndex&&t.ignoreCase===e.ignoreCase;if(null!==t&&\"object\"==typeof t||null!==e&&\"object\"==typeof e){if(f(t)&&f(e)&&u(t)===u(e)&&!(t instanceof Float32Array||t instanceof Float64Array))return 0===i(new Uint8Array(t.buffer),new Uint8Array(e.buffer));if(a(t)!==a(e))return!1;var s=(n=n||{actual:[],expected:[]}).actual.indexOf(t);return-1!==s&&s===n.expected.indexOf(e)||(n.actual.push(t),n.expected.push(e),function(t,e,r,n){if(null==t||null==e)return!1;if(o.isPrimitive(t)||o.isPrimitive(e))return t===e;if(r&&Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1;var i=b(t),a=b(e);if(i&&!a||!i&&a)return!1;if(i)return t=l.call(t),e=l.call(e),x(t,e,r);var s,c,u=T(t),f=T(e);if(u.length!==f.length)return!1;for(u.sort(),f.sort(),c=u.length-1;c>=0;c--)if(u[c]!==f[c])return!1;for(c=u.length-1;c>=0;c--)if(s=u[c],!x(t[s],e[s],r,n))return!1;return!0}(t,e,r,n))}return r?t===e:t==e}function b(t){return\"[object Arguments]\"==Object.prototype.toString.call(t)}function _(t,e){if(!t||!e)return!1;if(\"[object RegExp]\"==Object.prototype.toString.call(e))return e.test(t);try{if(t instanceof e)return!0}catch(t){}return!Error.isPrototypeOf(e)&&!0===e.call({},t)}function w(t,e,r,n){var i;if(\"function\"!=typeof e)throw new TypeError('\"block\" argument must be a function');\"string\"==typeof r&&(n=r,r=null),i=function(t){var e;try{t()}catch(t){e=t}return e}(e),n=(r&&r.name?\" (\"+r.name+\").\":\".\")+(n?\" \"+n:\".\"),t&&!i&&v(i,r,\"Missing expected exception\"+n);var a=\"string\"==typeof n,s=!t&&i&&!r;if((!t&&o.isError(i)&&a&&_(i,r)||s)&&v(i,r,\"Got unwanted exception\"+n),t&&i&&r&&!_(i,r)||!t&&i)throw i}h.AssertionError=function(t){this.name=\"AssertionError\",this.actual=t.actual,this.expected=t.expected,this.operator=t.operator,t.message?(this.message=t.message,this.generatedMessage=!1):(this.message=function(t){return g(m(t.actual),128)+\" \"+t.operator+\" \"+g(m(t.expected),128)}(this),this.generatedMessage=!0);var e=t.stackStartFunction||v;if(Error.captureStackTrace)Error.captureStackTrace(this,e);else{var r=new Error;if(r.stack){var n=r.stack,i=d(e),a=n.indexOf(\"\\n\"+i);if(a>=0){var o=n.indexOf(\"\\n\",a+1);n=n.substring(o+1)}this.stack=n}}},o.inherits(h.AssertionError,Error),h.fail=v,h.ok=y,h.equal=function(t,e,r){t!=e&&v(t,e,r,\"==\",h.equal)},h.notEqual=function(t,e,r){t==e&&v(t,e,r,\"!=\",h.notEqual)},h.deepEqual=function(t,e,r){x(t,e,!1)||v(t,e,r,\"deepEqual\",h.deepEqual)},h.deepStrictEqual=function(t,e,r){x(t,e,!0)||v(t,e,r,\"deepStrictEqual\",h.deepStrictEqual)},h.notDeepEqual=function(t,e,r){x(t,e,!1)&&v(t,e,r,\"notDeepEqual\",h.notDeepEqual)},h.notDeepStrictEqual=function t(e,r,n){x(e,r,!0)&&v(e,r,n,\"notDeepStrictEqual\",t)},h.strictEqual=function(t,e
"/*!\n",
" * The buffer module from node.js, for the browser.\n",
" *\n",
" * @author Feross Aboukhadijeh <https://feross.org>\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<e)throw new RangeError('\"offset\" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('\"length\" is outside of buffer bounds');var n;n=void 0===e&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,e):new Uint8Array(t,e,r);return n.__proto__=a.prototype,n}(t,e,r);if(\"number\"==typeof t)throw new TypeError('The \"value\" argument must not be of type number. Received type number');var n=t.valueOf&&t.valueOf();if(null!=n&&n!==t)return a.from(n,e,r);var o=function(t){if(a.isBuffer(t)){var e=0|u(t.length),r=i(e);return 0===r.length||t.copy(r,0,0,e),r}if(void 0!==t.length)return\"number\"!=typeof t.length||N(t.length)?i(0):c(t);if(\"Buffer\"===t.type&&Array.isArray(t.data))return c(t.data)}(t);if(o)return o;if(\"undefined\"!=typeof Symbol&&null!=Symbol.toPrimitive&&\"function\"==typeof t[Symbol.toPrimitive])return a.from(t[Symbol.toPrimitive](\"string\"),e,r);throw new TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t)}function s(t){if(\"number\"!=typeof t)throw new TypeError('\"size\" argument must be of type number');if(t<0)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"')}function l(t){return s(t),i(t<0?0:0|u(t))}function c(t){for(var e=t.length<0?0:0|u(t.length),r=i(e),n=0;n<e;n+=1)r[n]=255&t[n];return r}function u(t){if(t>=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 A(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 M(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}i
"/*!\n",
" * @overview es6-promise - a tiny implementation of Promises/A+.\n",
" * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)\n",
" * @license Licensed under MIT license\n",
" * See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE\n",
" * @version v4.2.8+1e68dce6\n",
" */\n",
"!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():t.ES6Promise=n()}(this,(function(){\"use strict\";function e(t){return\"function\"==typeof t}var r=Array.isArray?Array.isArray:function(t){return\"[object Array]\"===Object.prototype.toString.call(t)},a=0,o=void 0,s=void 0,l=function(t,e){g[a]=t,g[a+1]=e,2===(a+=2)&&(s?s(m):_())};var c=\"undefined\"!=typeof window?window:void 0,u=c||{},f=u.MutationObserver||u.WebKitMutationObserver,h=\"undefined\"==typeof self&&\"undefined\"!=typeof n&&\"[object process]\"==={}.toString.call(n),p=\"undefined\"!=typeof Uint8ClampedArray&&\"undefined\"!=typeof importScripts&&\"undefined\"!=typeof MessageChannel;function d(){var t=setTimeout;return function(){return t(m,1)}}var g=new Array(1e3);function m(){for(var t=0;t<a;t+=2){(0,g[t])(g[t+1]),g[t]=void 0,g[t+1]=void 0}a=0}var v,y,x,b,_=void 0;function w(t,e){var r=this,n=new this.constructor(M);void 0===n[k]&&D(n);var i=r._state;if(i){var a=arguments[i-1];l((function(){return z(i,n,a,r._result)}))}else I(r,n,t,e);return n}function T(t){if(t&&\"object\"==typeof t&&t.constructor===this)return t;var e=new this(M);return S(e,t),e}h?_=function(){return n.nextTick(m)}:f?(y=0,x=new f(m),b=document.createTextNode(\"\"),x.observe(b,{characterData:!0}),_=function(){b.data=y=++y%2}):p?((v=new MessageChannel).port1.onmessage=m,_=function(){return v.port2.postMessage(0)}):_=void 0===c&&\"function\"==typeof t?function(){try{var t=Function(\"return this\")().require(\"vertx\");return\"undefined\"!=typeof(o=t.runOnLoop||t.runOnContext)?function(){o(m)}:d()}catch(t){return d()}}():d();var k=Math.random().toString(36).substring(2);function M(){}function A(t,r,n){r.constructor===t.constructor&&n===w&&r.constructor.resolve===T?function(t,e){1===e._state?C(t,e._result):2===e._state?L(t,e._result):I(e,void 0,(function(e){return S(t,e)}),(function(e){return L(t,e)}))}(t,r):void 0===n?C(t,r):e(n)?function(t,e,r){l((function(t){var n=!1,i=function(t,e,r,n){try{t.call(e,r,n)}catch(t){return t}}(r,e,(function(r){n||(n=!0,e!==r?S(t,r):C(t,r))}),(function(e){n||(n=!0,L(t,e))}),t._label);!n&&i&&(n=!0,L(t,i))}),t)}(t,r,n):C(t,r)}function S(t,e){if(t===e)L(t,new TypeError(\"You cannot resolve a promise with itself\"));else if(i=typeof(n=e),null===n||\"object\"!==i&&\"function\"!==i)C(t,e);else{var r=void 0;try{r=e.then}catch(e){return void L(t,e)}A(t,e,r)}var n,i}function E(t){t._onerror&&t._onerror(t._result),P(t)}function C(t,e){void 0===t._state&&(t._result=e,t._state=1,0!==t._subscribers.length&&l(P,t))}function L(t,e){void 0===t._state&&(t._state=2,t._result=e,l(E,t))}function I(t,e,r,n){var i=t._subscribers,a=i.length;t._onerror=null,i[a]=e,i[a+1]=r,i[a+2]=n,0===a&&t._state&&l(P,t)}function P(t){var e=t._subscribers,r=t._state;if(0!==e.length){for(var n=void 0,i=void 0,a=t._result,o=0;o<e.length;o+=3)n=e[o],i=e[o+r],n?z(r,n,i,a):i(a);t._subscribers.length=0}}function z(t,r,n,i){var a=e(n),o=void 0,s=void 0,l=!0;if(a){try{o=n(i)}catch(t){l=!1,s=t}if(r===o)return void L(r,new TypeError(\"A promises callback cannot return that same promise.\"))}else o=i;void 0!==r._state||(a&&l?S(r,o):!1===l?L(r,s):1===t?C(r,o):2===t&&L(r,o))}var O=0;function D(t){t[k]=O++,t._state=void 0,t._result=void 0,t._subscribers=[]}var R=function(){function t(t,e){this._instanceConstructor=t,this.promise=new t(M),this.promise[k]||D(this.promise),r(e)?(this.length=e.length,this._remaining=e.length,this._result=new Array(this.length),0===this.length?C(this.promise,this._result):(this.length=this.length||0,this._enumerate(e),0===this._remaining&&C(this.promise,this._result))):L(this.promise,new Error(\"Array Methods must be provided an Array\"))}return t.prototype._enumerate=function(t){for(var e=0;void 0===this._state&&e<t.length;e++)this._eachEntry(t[e],e)},t.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,n=r.resolve;if(n===T){var i=void 0,a=void 0,o=!1;try{i=t.then}catch(t){o=!0,a=t}if(i===w&&void 0!==t._state)this._settledAt(t._state,e,t._result);else if(\"function\"!=typeof i)this._remaining--,this._result[e]=t;else if(r===F){var s=new r
"/*!\n",
" * Determine if an object is a Buffer\n",
" *\n",
" * @author Feross Aboukhadijeh <https://feross.org>\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)}},{}],466:[function(t,e,r){\"use strict\";e.exports=\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion))},{}],467:[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}},{}],468:[function(t,e,r){\"use strict\";e.exports=function(t){var e=typeof t;return null!==t&&(\"object\"===e||\"function\"===e)}},{}],469:[function(t,e,r){\"use strict\";var n=Object.prototype.toString;e.exports=function(t){var e;return\"[object Object]\"===n.call(t)&&(null===(e=Object.getPrototypeOf(t))||e===Object.getPrototypeOf({}))}},{}],470:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=t.length,n=0;n<r;n++)if(((e=t.charCodeAt(n))<9||e>13)&&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}},{}],471:[function(t,e,r){\"use strict\";e.exports=function(t){return\"string\"==typeof t&&(t=t.trim(),!!(/^[mzlhvcsqta]\\s*[-+.0-9][^mlhvzcsqta]+/i.test(t)&&/[\\dz]$/i.test(t)&&t.length>4))}},{}],472:[function(t,e,r){e.exports=function(t,e,r){return t*(1-r)+e*r}},{}],473:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():(t=t||self).mapboxgl=n()}(this,(function(){\"use strict\";var t,e,r;function n(n,i){if(t)if(e){var a=\"var sharedChunk = {}; (\"+t+\")(sharedChunk); (\"+e+\")(sharedChunk);\",o={};t(o),(r=i(o)).workerUrl=window.URL.createObjectURL(new Blob([a],{type:\"text/javascript\"}))}else e=i;else t=i}return n(0,(function(t){function e(t,e){return t(e={exports:{}},e.exports),e.exports}var r=n;function n(t,e,r,n){this.cx=3*t,this.bx=3*(r-t)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*e,this.by=3*(n-e)-this.cy,this.ay=1-this.cy-this.by,this.p1x=t,this.p1y=n,this.p2x=r,this.p2y=n}n.prototype.sampleCurveX=function(t){return((this.ax*t+this.bx)*t+this.cx)*t},n.prototype.sampleCurveY=function(t){return((this.ay*t+this.by)*t+this.cy)*t},n.prototype.sampleCurveDerivativeX=function(t){return(3*this.ax*t+2*this.bx)*t+this.cx},n.prototype.solveCurveX=function(t,e){var r,n,i,a,o;for(void 0===e&&(e=1e-6),i=t,o=0;o<8;o++){if(a=this.sampleCurveX(i)-t,Math.abs(a)<e)return i;var s=this.sampleCurveDerivativeX(i);if(Math.abs(s)<1e-6)break;i-=a/s}if((i=t)<(r=0))return r;if(i>(n=1))return n;for(;r<n;){if(a=this.sampleCurveX(i),Math.abs(a-t)<e)return i;t>a?r=i:n=i,i=.5*(n-r)+r}return i},n.prototype.solve=function(t,e){return this.sampleCurveY(this.solveCurveX(t,e))};var i=a;function a(t,e){this.x=t,this.y=e}function o(t,e,n,i){var a=new r(t,e,n,i);return function(t){return a.solve(t)}}a.prototype={clone:function(){return new a(this.x,this.y)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoi
"/*\n",
"object-assign\n",
"(c) Sindre Sorhus\n",
"@license MIT\n",
"*/\n",
"\"use strict\";var n=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function o(t){if(null==t)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(t)}e.exports=function(){try{if(!Object.assign)return!1;var t=new String(\"abc\");if(t[5]=\"de\",\"5\"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e[\"_\"+String.fromCharCode(r)]=r;if(\"0123456789\"!==Object.getOwnPropertyNames(e).map((function(t){return e[t]})).join(\"\"))return!1;var n={};return\"abcdefghijklmnopqrst\".split(\"\").forEach((function(t){n[t]=t})),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},n)).join(\"\")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,s,l=o(t),c=1;c<arguments.length;c++){for(var u in r=Object(arguments[c]))i.call(r,u)&&(l[u]=r[u]);if(n){s=n(r);for(var f=0;f<s.length;f++)a.call(r,s[f])&&(l[s[f]]=r[s[f]])}}return l}},{}],500:[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}},{}],501:[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 g=i[2],m=i[6],v=i[10],y=g*a+m*o+v*s,x=g*u+m*f+v*h,b=l(g-=y*a+x*u,m-=y*o+x*f,v-=y*s+x*h);g/=b,m/=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],g=i[10],m=e*a+r*u,v=e*o+r*f,y=e*s+r*h,x=-(d*y-g*v),b=-(g*m-p*y),_=-(p*v-d*m),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/=
"/*!\n",
" * pad-left <https://github.com/jonschlinkert/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=\"undefined\"!=typeof r?r+\"\":\" \",e)+t}},{\"repeat-string\":541}],503:[function(t,e,r){\"use strict\";function n(t,e){if(\"string\"!=typeof t)return[t];var r=[t];\"string\"==typeof e||Array.isArray(e)?e={brackets:e}:e||(e={});var n=e.brackets?Array.isArray(e.brackets)?e.brackets:[e.brackets]:[\"{}\",\"[]\",\"()\"],i=e.escape||\"___\",a=!!e.flat;n.forEach((function(t){var e=new RegExp([\"\\\\\",t[0],\"[^\\\\\",t[0],\"\\\\\",t[1],\"]*\\\\\",t[1]].join(\"\")),n=[];function a(e,a,o){var s=r.push(e.slice(t[0].length,-t[1].length))-1;return n.push(s),i+s+i}r.forEach((function(t,n){for(var i,o=0;t!=i;)if(i=t,t=t.replace(e,a),o++>1e4)throw Error(\"References have circular dependency. Please, check them.\");r[n]=t})),n=n.reverse(),r=r.map((function(e){return n.forEach((function(r){e=e.replace(new RegExp(\"(\\\\\"+i+r+\"\\\\\"+i+\")\",\"g\"),t[0]+\"$1\"+t[1])})),e}))}));var o=new RegExp(\"\\\\\"+i+\"([0-9]+)\\\\\"+i);return a?r:function t(e,r,n){for(var i,a=[],s=0;i=o.exec(e);){if(s++>1e4)throw Error(\"Circular references in parenthesis\");a.push(e.slice(0,i.index)),a.push(t(r[i[1]],r)),e=e.slice(i.index+i[0].length)}return a.push(e),a}(r[0],r)}function i(t,e){if(e&&e.flat){var r,n=e&&e.escape||\"___\",i=t[0];if(!i)return\"\";for(var a=new RegExp(\"\\\\\"+n+\"([0-9]+)\\\\\"+n),o=0;i!=r;){if(o++>1e4)throw Error(\"Circular references in \"+t);r=i,i=i.replace(a,s)}return i}return t.reduce((function t(e,r){return Array.isArray(r)&&(r=r.reduce(t,\"\")),e+r}),\"\");function s(e,r){if(null==t[r])throw Error(\"Reference \"+r+\"is undefined\");return t[r]}}function a(t,e){return Array.isArray(t)?i(t,e):n(t,e)}a.parse=n,a.stringify=i,e.exports=a},{}],504:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\");e.exports=function(t){var e;arguments.length>1&&(t=arguments);\"string\"==typeof t?t=t.split(/\\s/).map(parseFloat):\"number\"==typeof t&&(t=[t]);t.length&&\"number\"==typeof t[0]?e=1===t.length?{width:t[0],height:t[0],x:0,y:0}:2===t.length?{width:t[0],height:t[1],x:0,y:0}:{x:t[0],y:t[1],width:t[2]-t[0]||0,height:t[3]-t[1]||0}:t&&(t=n(t,{left:\"x l left Left\",top:\"y t top Top\",width:\"w width W Width\",height:\"h height W Width\",bottom:\"b bottom Bottom\",right:\"r right Right\"}),e={x:t.left||0,y:t.top||0},null==t.width?t.right?e.width=t.right-e.x:e.width=0:e.width=t.width,null==t.height?t.bottom?e.height=t.bottom-e.y:e.height=0:e.height=t.height);return e}},{\"pick-by-alias\":511}],505:[function(t,e,r){e.exports=function(t){var e=[];return t.replace(i,(function(t,r,i){var o=r.toLowerCase();for(i=function(t){var e=t.match(a);return e?e.map(Number):[]}(i),\"m\"==o&&i.length>2&&(e.push([r].concat(i.splice(0,2))),o=\"l\",r=\"m\"==r?\"l\":\"L\");;){if(i.length==n[o])return i.unshift(r),e.push(i);if(i.length<n[o])throw new Error(\"malformed path data\");e.push([r].concat(i.splice(0,n[o])))}})),e};var n={a:7,c:6,h:1,l:2,m:2,q:4,s:4,t:2,v:1,z:0},i=/([astvzqmhlc])([^astvzqmhlc]*)/gi;var a=/-?[0-9]*\\.?[0-9]+(?:e[-+]?\\d+)?/gi},{}],506:[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}},{}],507:[function(t,e,r){(function(t){(function(){\"use strict\";function r(t){if(\"string\"!=typeof t)throw new TypeError(\"Path must be a string. Received \"+JSON.stringify(t))}function n(t,e){for(var r,n=\"\",i=0,a=-1,o=0,s=0;s<=t.length;++s){if(s<t.length)r=t.charCodeAt(s);else{if(47===r)break;r=47}if(47===r){if(a===s-1||1===o);else if(a!==s-1&&2===o){if(n.length<2||2!==i||46!==n.charCodeAt(n.length-1)||46!==n.charCodeAt(n.length-2))if(n.length>2){var l=n.lastIndexOf(\"/\");if(l!==n.length-1){-1===l?(n=\"\",i=0):i=(n=n.slice(0,l)).length-1-n.lastIndexOf(\"/\"),a=s,o=0;continue}}else if(2===n.length||1===n.length){n=\"\",i=0,a=s,o=0;continue}e&&(n.length>0?n+=\"/..\":n=\"..\",i=2)}else n.length>0?n+=\"/\"+t.slice(a+1,s):n=t.slice(a+1,s),i=s-a-1;a=s,o=0}else 46===r&&-1!==o?++o:o=-1}return n}var i={resolve:function(){for(var e,i=\"\",a=!1,o=arguments.length-1;o
"/*\n",
" * @copyright 2016 Sean Connelly (@voidqk), http://syntheti.cc\n",
" * @license MIT\n",
" * @preserve Project Home: https://github.com/voidqk/polybooljs\n",
" */\n",
"var n,i=t(\"./lib/build-log\"),a=t(\"./lib/epsilon\"),o=t(\"./lib/intersecter\"),s=t(\"./lib/segment-chainer\"),l=t(\"./lib/segment-selector\"),c=t(\"./lib/geojson\"),u=!1,f=a();function h(t,e,r){var i=n.segments(t),a=n.segments(e),o=r(n.combine(i,a));return n.polygon(o)}n={buildLog:function(t){return!0===t?u=i():!1===t&&(u=!1),!1!==u&&u.list},epsilon:function(t){return f.epsilon(t)},segments:function(t){var e=o(!0,f,u);return t.regions.forEach(e.addRegion),{segments:e.calculate(t.inverted),inverted:t.inverted}},combine:function(t,e){return{combined:o(!1,f,u).calculate(t.segments,t.inverted,e.segments,e.inverted),inverted1:t.inverted,inverted2:e.inverted}},selectUnion:function(t){return{segments:l.union(t.combined,u),inverted:t.inverted1||t.inverted2}},selectIntersect:function(t){return{segments:l.intersect(t.combined,u),inverted:t.inverted1&&t.inverted2}},selectDifference:function(t){return{segments:l.difference(t.combined,u),inverted:t.inverted1&&!t.inverted2}},selectDifferenceRev:function(t){return{segments:l.differenceRev(t.combined,u),inverted:!t.inverted1&&t.inverted2}},selectXor:function(t){return{segments:l.xor(t.combined,u),inverted:t.inverted1!==t.inverted2}},polygon:function(t){return{regions:s(t.segments,f,u),inverted:t.inverted}},polygonFromGeoJSON:function(t){return c.toPolygon(n,t)},polygonToGeoJSON:function(t){return c.fromPolygon(n,f,t)},union:function(t,e){return h(t,e,n.selectUnion)},intersect:function(t,e){return h(t,e,n.selectIntersect)},difference:function(t,e){return h(t,e,n.selectDifference)},differenceRev:function(t,e){return h(t,e,n.selectDifferenceRev)},xor:function(t,e){return h(t,e,n.selectXor)}},\"object\"==typeof window&&(window.PolyBool=n),e.exports=n},{\"./lib/build-log\":518,\"./lib/epsilon\":519,\"./lib/geojson\":520,\"./lib/intersecter\":521,\"./lib/segment-chainer\":523,\"./lib/segment-selector\":524}],518:[function(t,e,r){e.exports=function(){var t,e=0,r=!1;function n(e,r){return t.list.push({type:e,data:r?JSON.parse(JSON.stringify(r)):void 0}),t}return t={list:[],segmentId:function(){return e++},checkIntersection:function(t,e){return n(\"check\",{seg1:t,seg2:e})},segmentChop:function(t,e){return n(\"div_seg\",{seg:t,pt:e}),n(\"chop\",{seg:t,pt:e})},statusRemove:function(t){return n(\"pop_seg\",{seg:t})},segmentUpdate:function(t){return n(\"seg_update\",{seg:t})},segmentNew:function(t,e){return n(\"new_seg\",{seg:t,primary:e})},segmentRemove:function(t){return n(\"rem_seg\",{seg:t})},tempStatus:function(t,e,r){return n(\"temp_status\",{seg:t,above:e,below:r})},rewind:function(t){return n(\"rewind\",{seg:t})},status:function(t,e,r){return n(\"status\",{seg:t,above:e,below:r})},vert:function(e){return e===r?t:(r=e,n(\"vert\",{x:e}))},log:function(t){return\"string\"!=typeof t&&(t=JSON.stringify(t,!1,\" \")),n(\"log\",{txt:t})},reset:function(){return n(\"reset\")},selected:function(t){return n(\"selected\",{segs:t})},chainStart:function(t){return n(\"chain_start\",{seg:t})},chainRemoveHead:function(t,e){return n(\"chain_rem_head\",{index:t,pt:e})},chainRemoveTail:function(t,e){return n(\"chain_rem_tail\",{index:t,pt:e})},chainNew:function(t,e){return n(\"chain_new\",{pt1:t,pt2:e})},chainMatch:function(t){return n(\"chain_match\",{index:t})},chainClose:function(t){return n(\"chain_close\",{index:t})},chainAddHead:function(t,e){return n(\"chain_add_head\",{index:t,pt:e})},chainAddTail:function(t,e){return n(\"chain_add_tail\",{index:t,pt:e})},chainConnect:function(t,e){return n(\"chain_con\",{index1:t,index2:e})},chainReverse:function(t){return n(\"chain_rev\",{index:t})},chainJoin:function(t,e){return n(\"chain_join\",{index1:t,index2:e})},done:function(){return n(\"done\")}}}},{}],519:[function(t,e,r){e.exports=function(t){\"number\"!=typeof t&&(t=1e-10);var e={epsilon:function(e){return\"number\"==typeof e&&(t=e),t},pointAboveOrOnLine:function(e,r,n){var i=r[0],a=r[1],o=n[0],s=n[1],l=e[0];return(o-i)*(e[1]-a)-(s-a)*(l-i)>=-t},pointBetween:function(e,r,n){var i=e[1]-r[1],a=n[0]-r[0],o=e[0]-r[0],s=n[1]-r[1],l=o*a+i*s;return!(l<t)&&!(l-(a*a+s*s)>-t)},pointsSameX:function(e,r){r
"/*!\n",
" * repeat-string <https://github.com/jonschlinkert/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||\"undefined\"==typeof 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)}},{}],542:[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,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{}],543:[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;i<e;++i){var l;a=t[i];(l=(o=r)-((r=a+o)-a))&&(t[s++]=l)}return t[s++]=r,t.length=s,t}},{}],544:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\"),a=t(\"robust-scale\"),o=t(\"robust-compress\");function s(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),a=0,o=0;a<t.length;++a)a!==e&&(i[o++]=t[n][a]);return r}function l(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m[\",r,\"][\",n,\"]\"].join(\"\")}return e}function c(t){if(2===t.length)return[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\");for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(s(t,r)),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return function t(e){if(1===e.length)return e[0];if(2===e.length)return[\"sum(\",e[0],\",\",e[1],\")\"].join(\"\");var r=e.length>>1;return[\"sum(\",t(e.slice(0,r)),\",\",t(e.slice(r)),\")\"].join(\"\")}(e);var n}function u(t){return new Function(\"sum\",\"scale\",\"prod\",\"compress\",[\"function robustDeterminant\",t,\"(m){return compress(\",c(l(t)),\")};return robustDeterminant\",t].join(\"\"))(i,a,n,o)}var f=[function(){return[0]},function(t){return[t[0][0]]}];!function(){for(;f.length<6;)f.push(u(f.length));for(var t=[],r=[\"function robustDeterminant(m){switch(m.length){\"],n=0;n<6;++n)t.push(\"det\"+n),r.push(\"case \",n,\":return det\",n,\"(m);\");r.push(\"}var det=CACHE[m.length];if(!det)det=CACHE[m.length]=gen(m.length);return det(m);}return robustDeterminant\"),t.push(\"CACHE\",\"gen\",r.join(\"\"));var i=Function.apply(void 0,t);for(e.exports=i.apply(void 0,f.concat([f,u])),n=0;n<f.length;++n)e.exports[n]=f[n]}()},{\"robust-compress\":543,\"robust-scale\":550,\"robust-sum\":553,\"two-product\":582}],545:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\");e.exports=function(t,e){for(var r=n(t[0],e[0]),a=1;a<t.length;++a)r=i(r,n(t[a],e[a]));return r}},{\"robust-sum\":553,\"two-product\":582}],546:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\"),a=t(\"robust-subtract\"),o=t(\"robust-scale\");function s(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),a=0,o=0;a<t.length;++a)a!==e&&(i[o++]=t[n][a]);return r}function l(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",l(t.slice(0,e)),\",\",l(t.slice(e)),\")\"].join(\"\")}function c(t,e){if(\"m\"===t.charAt(0)){if(\"w\"===e.charAt(0)){var r=t.split(\"[\");return[\"w\",e.substr(1),\"m\",r[0].substr(1)].join(\"\")}return[\"prod(\",t,\",\",e,\")\"].join(\"\")}return c(e,t)}function u(t){if(2===t.length)return[[\"diff(\",c(t[0][0],t[1][1]),\",\",c(t[1][0],t[0][1]),\")\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",l(u(s(t,r))),\",\",(n=r,!0&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function f(t,e){for(var r=[],n=0;n<e-2;++n)r.push([\"prod(m\",t,\"[\",n,\"],m\",t,\"[\",n,\"])\"].join(\"\"));return l(r)}function h(t){for(var e=[],r=[],c=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-2,\"]\"].join(\"\")}return e}(t),h=0;h<t;++h)c[0][h]=\
" });\n",
" require(['plotly'], function(Plotly) {\n",
" window._Plotly = Plotly;\n",
" });\n",
" }\n",
" </script>\n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "variable=0<br>index=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "0",
"line": {
"color": "#636efa",
"dash": "solid"
},
"mode": "lines",
"name": "0",
"orientation": "v",
"showlegend": true,
"type": "scatter",
"x": [
"2000-01-01T00:00:00",
"2000-01-02T00:00:00",
"2000-01-03T00:00:00",
"2000-01-04T00:00:00",
"2000-01-05T00:00:00",
"2000-01-06T00:00:00",
"2000-01-07T00:00:00",
"2000-01-08T00:00:00",
"2000-01-09T00:00:00",
"2000-01-10T00:00:00",
"2000-01-11T00:00:00",
"2000-01-12T00:00:00",
"2000-01-13T00:00:00",
"2000-01-14T00:00:00",
"2000-01-15T00:00:00",
"2000-01-16T00:00:00",
"2000-01-17T00:00:00",
"2000-01-18T00:00:00",
"2000-01-19T00:00:00",
"2000-01-20T00:00:00",
"2000-01-21T00:00:00",
"2000-01-22T00:00:00",
"2000-01-23T00:00:00",
"2000-01-24T00:00:00",
"2000-01-25T00:00:00",
"2000-01-26T00:00:00",
"2000-01-27T00:00:00",
"2000-01-28T00:00:00",
"2000-01-29T00:00:00",
"2000-01-30T00:00:00",
"2000-01-31T00:00:00",
"2000-02-01T00:00:00",
"2000-02-02T00:00:00",
"2000-02-03T00:00:00",
"2000-02-04T00:00:00",
"2000-02-05T00:00:00",
"2000-02-06T00:00:00",
"2000-02-07T00:00:00",
"2000-02-08T00:00:00",
"2000-02-09T00:00:00",
"2000-02-10T00:00:00",
"2000-02-11T00:00:00",
"2000-02-12T00:00:00",
"2000-02-13T00:00:00",
"2000-02-14T00:00:00",
"2000-02-15T00:00:00",
"2000-02-16T00:00:00",
"2000-02-17T00:00:00",
"2000-02-18T00:00:00",
"2000-02-19T00:00:00",
"2000-02-20T00:00:00",
"2000-02-21T00:00:00",
"2000-02-22T00:00:00",
"2000-02-23T00:00:00",
"2000-02-24T00:00:00",
"2000-02-25T00:00:00",
"2000-02-26T00:00:00",
"2000-02-27T00:00:00",
"2000-02-28T00:00:00",
"2000-02-29T00:00:00",
"2000-03-01T00:00:00",
"2000-03-02T00:00:00",
"2000-03-03T00:00:00",
"2000-03-04T00:00:00",
"2000-03-05T00:00:00",
"2000-03-06T00:00:00",
"2000-03-07T00:00:00",
"2000-03-08T00:00:00",
"2000-03-09T00:00:00",
"2000-03-10T00:00:00",
"2000-03-11T00:00:00",
"2000-03-12T00:00:00",
"2000-03-13T00:00:00",
"2000-03-14T00:00:00",
"2000-03-15T00:00:00",
"2000-03-16T00:00:00",
"2000-03-17T00:00:00",
"2000-03-18T00:00:00",
"2000-03-19T00:00:00",
"2000-03-20T00:00:00",
"2000-03-21T00:00:00",
"2000-03-22T00:00:00",
"2000-03-23T00:00:00",
"2000-03-24T00:00:00",
"2000-03-25T00:00:00",
"2000-03-26T00:00:00",
"2000-03-27T00:00:00",
"2000-03-28T00:00:00",
"2000-03-29T00:00:00",
"2000-03-30T00:00:00",
"2000-03-31T00:00:00",
"2000-04-01T00:00:00",
"2000-04-02T00:00:00",
"2000-04-03T00:00:00",
"2000-04-04T00:00:00",
"2000-04-05T00:00:00",
"2000-04-06T00:00:00",
"2000-04-07T00:00:00",
"2000-04-08T00:00:00",
"2000-04-09T00:00:00",
"2000-04-10T00:00:00",
"2000-04-11T00:00:00",
"2000-04-12T00:00:00",
"2000-04-13T00:00:00",
"2000-04-14T00:00:00",
"2000-04-15T00:00:00",
"2000-04-16T00:00:00",
"2000-04-17T00:00:00",
"2000-04-18T00:00:00",
"2000-04-19T00:00:00",
"2000-04-20T00:00:00",
"2000-04-21T00:00:00",
"2000-04-22T00:00:00",
"2000-04-23T00:00:00",
"2000-04-24T00:00:00",
"2000-04-25T00:00:00",
"2000-04-26T00:00:00",
"2000-04-27T00:00:00",
"2000-04-28T00:00:00",
"2000-04-29T00:00:00",
"2000-04-30T00:00:00",
"2000-05-01T00:00:00",
"2000-05-02T00:00:00",
"2000-05-03T00:00:00",
"2000-05-04T00:00:00",
"2000-05-05T00:00:00",
"2000-05-06T00:00:00",
"2000-05-07T00:00:00",
"2000-05-08T00:00:00",
"2000-05-09T00:00:00",
"2000-05-10T00:00:00",
"2000-05-11T00:00:00",
"2000-05-12T00:00:00",
"2000-05-13T00:00:00",
"2000-05-14T00:00:00",
"2000-05-15T00:00:00",
"2000-05-16T00:00:00",
"2000-05-17T00:00:00",
"2000-05-18T00:00:00",
"2000-05-19T00:00:00",
"2000-05-20T00:00:00",
"2000-05-21T00:00:00",
"2000-05-22T00:00:00",
"2000-05-23T00:00:00",
"2000-05-24T00:00:00",
"2000-05-25T00:00:00",
"2000-05-26T00:00:00",
"2000-05-27T00:00:00",
"2000-05-28T00:00:00",
"2000-05-29T00:00:00",
"2000-05-30T00:00:00",
"2000-05-31T00:00:00",
"2000-06-01T00:00:00",
"2000-06-02T00:00:00",
"2000-06-03T00:00:00",
"2000-06-04T00:00:00",
"2000-06-05T00:00:00",
"2000-06-06T00:00:00",
"2000-06-07T00:00:00",
"2000-06-08T00:00:00",
"2000-06-09T00:00:00",
"2000-06-10T00:00:00",
"2000-06-11T00:00:00",
"2000-06-12T00:00:00",
"2000-06-13T00:00:00",
"2000-06-14T00:00:00",
"2000-06-15T00:00:00",
"2000-06-16T00:00:00",
"2000-06-17T00:00:00",
"2000-06-18T00:00:00",
"2000-06-19T00:00:00",
"2000-06-20T00:00:00",
"2000-06-21T00:00:00",
"2000-06-22T00:00:00",
"2000-06-23T00:00:00",
"2000-06-24T00:00:00",
"2000-06-25T00:00:00",
"2000-06-26T00:00:00",
"2000-06-27T00:00:00",
"2000-06-28T00:00:00",
"2000-06-29T00:00:00",
"2000-06-30T00:00:00",
"2000-07-01T00:00:00",
"2000-07-02T00:00:00",
"2000-07-03T00:00:00",
"2000-07-04T00:00:00",
"2000-07-05T00:00:00",
"2000-07-06T00:00:00",
"2000-07-07T00:00:00",
"2000-07-08T00:00:00",
"2000-07-09T00:00:00",
"2000-07-10T00:00:00",
"2000-07-11T00:00:00",
"2000-07-12T00:00:00",
"2000-07-13T00:00:00",
"2000-07-14T00:00:00",
"2000-07-15T00:00:00",
"2000-07-16T00:00:00",
"2000-07-17T00:00:00",
"2000-07-18T00:00:00",
"2000-07-19T00:00:00",
"2000-07-20T00:00:00",
"2000-07-21T00:00:00",
"2000-07-22T00:00:00",
"2000-07-23T00:00:00",
"2000-07-24T00:00:00",
"2000-07-25T00:00:00",
"2000-07-26T00:00:00",
"2000-07-27T00:00:00",
"2000-07-28T00:00:00",
"2000-07-29T00:00:00",
"2000-07-30T00:00:00",
"2000-07-31T00:00:00",
"2000-08-01T00:00:00",
"2000-08-02T00:00:00",
"2000-08-03T00:00:00",
"2000-08-04T00:00:00",
"2000-08-05T00:00:00",
"2000-08-06T00:00:00",
"2000-08-07T00:00:00",
"2000-08-08T00:00:00",
"2000-08-09T00:00:00",
"2000-08-10T00:00:00",
"2000-08-11T00:00:00",
"2000-08-12T00:00:00",
"2000-08-13T00:00:00",
"2000-08-14T00:00:00",
"2000-08-15T00:00:00",
"2000-08-16T00:00:00",
"2000-08-17T00:00:00",
"2000-08-18T00:00:00",
"2000-08-19T00:00:00",
"2000-08-20T00:00:00",
"2000-08-21T00:00:00",
"2000-08-22T00:00:00",
"2000-08-23T00:00:00",
"2000-08-24T00:00:00",
"2000-08-25T00:00:00",
"2000-08-26T00:00:00",
"2000-08-27T00:00:00",
"2000-08-28T00:00:00",
"2000-08-29T00:00:00",
"2000-08-30T00:00:00",
"2000-08-31T00:00:00",
"2000-09-01T00:00:00",
"2000-09-02T00:00:00",
"2000-09-03T00:00:00",
"2000-09-04T00:00:00",
"2000-09-05T00:00:00",
"2000-09-06T00:00:00",
"2000-09-07T00:00:00",
"2000-09-08T00:00:00",
"2000-09-09T00:00:00",
"2000-09-10T00:00:00",
"2000-09-11T00:00:00",
"2000-09-12T00:00:00",
"2000-09-13T00:00:00",
"2000-09-14T00:00:00",
"2000-09-15T00:00:00",
"2000-09-16T00:00:00",
"2000-09-17T00:00:00",
"2000-09-18T00:00:00",
"2000-09-19T00:00:00",
"2000-09-20T00:00:00",
"2000-09-21T00:00:00",
"2000-09-22T00:00:00",
"2000-09-23T00:00:00",
"2000-09-24T00:00:00",
"2000-09-25T00:00:00",
"2000-09-26T00:00:00",
"2000-09-27T00:00:00",
"2000-09-28T00:00:00",
"2000-09-29T00:00:00",
"2000-09-30T00:00:00",
"2000-10-01T00:00:00",
"2000-10-02T00:00:00",
"2000-10-03T00:00:00",
"2000-10-04T00:00:00",
"2000-10-05T00:00:00",
"2000-10-06T00:00:00",
"2000-10-07T00:00:00",
"2000-10-08T00:00:00",
"2000-10-09T00:00:00",
"2000-10-10T00:00:00",
"2000-10-11T00:00:00",
"2000-10-12T00:00:00",
"2000-10-13T00:00:00",
"2000-10-14T00:00:00",
"2000-10-15T00:00:00",
"2000-10-16T00:00:00",
"2000-10-17T00:00:00",
"2000-10-18T00:00:00",
"2000-10-19T00:00:00",
"2000-10-20T00:00:00",
"2000-10-21T00:00:00",
"2000-10-22T00:00:00",
"2000-10-23T00:00:00",
"2000-10-24T00:00:00",
"2000-10-25T00:00:00",
"2000-10-26T00:00:00",
"2000-10-27T00:00:00",
"2000-10-28T00:00:00",
"2000-10-29T00:00:00",
"2000-10-30T00:00:00",
"2000-10-31T00:00:00",
"2000-11-01T00:00:00",
"2000-11-02T00:00:00",
"2000-11-03T00:00:00",
"2000-11-04T00:00:00",
"2000-11-05T00:00:00",
"2000-11-06T00:00:00",
"2000-11-07T00:00:00",
"2000-11-08T00:00:00",
"2000-11-09T00:00:00",
"2000-11-10T00:00:00",
"2000-11-11T00:00:00",
"2000-11-12T00:00:00",
"2000-11-13T00:00:00",
"2000-11-14T00:00:00",
"2000-11-15T00:00:00",
"2000-11-16T00:00:00",
"2000-11-17T00:00:00",
"2000-11-18T00:00:00",
"2000-11-19T00:00:00",
"2000-11-20T00:00:00",
"2000-11-21T00:00:00",
"2000-11-22T00:00:00",
"2000-11-23T00:00:00",
"2000-11-24T00:00:00",
"2000-11-25T00:00:00",
"2000-11-26T00:00:00",
"2000-11-27T00:00:00",
"2000-11-28T00:00:00",
"2000-11-29T00:00:00",
"2000-11-30T00:00:00",
"2000-12-01T00:00:00",
"2000-12-02T00:00:00",
"2000-12-03T00:00:00",
"2000-12-04T00:00:00",
"2000-12-05T00:00:00",
"2000-12-06T00:00:00",
"2000-12-07T00:00:00",
"2000-12-08T00:00:00",
"2000-12-09T00:00:00",
"2000-12-10T00:00:00",
"2000-12-11T00:00:00",
"2000-12-12T00:00:00",
"2000-12-13T00:00:00",
"2000-12-14T00:00:00",
"2000-12-15T00:00:00",
"2000-12-16T00:00:00",
"2000-12-17T00:00:00",
"2000-12-18T00:00:00",
"2000-12-19T00:00:00",
"2000-12-20T00:00:00",
"2000-12-21T00:00:00",
"2000-12-22T00:00:00",
"2000-12-23T00:00:00",
"2000-12-24T00:00:00",
"2000-12-25T00:00:00",
"2000-12-26T00:00:00",
"2000-12-27T00:00:00",
"2000-12-28T00:00:00",
"2000-12-29T00:00:00",
"2000-12-30T00:00:00",
"2000-12-31T00:00:00",
"2001-01-01T00:00:00",
"2001-01-02T00:00:00",
"2001-01-03T00:00:00",
"2001-01-04T00:00:00",
"2001-01-05T00:00:00",
"2001-01-06T00:00:00",
"2001-01-07T00:00:00",
"2001-01-08T00:00:00",
"2001-01-09T00:00:00",
"2001-01-10T00:00:00",
"2001-01-11T00:00:00",
"2001-01-12T00:00:00",
"2001-01-13T00:00:00",
"2001-01-14T00:00:00",
"2001-01-15T00:00:00",
"2001-01-16T00:00:00",
"2001-01-17T00:00:00",
"2001-01-18T00:00:00",
"2001-01-19T00:00:00",
"2001-01-20T00:00:00",
"2001-01-21T00:00:00",
"2001-01-22T00:00:00",
"2001-01-23T00:00:00",
"2001-01-24T00:00:00",
"2001-01-25T00:00:00",
"2001-01-26T00:00:00",
"2001-01-27T00:00:00",
"2001-01-28T00:00:00",
"2001-01-29T00:00:00",
"2001-01-30T00:00:00",
"2001-01-31T00:00:00",
"2001-02-01T00:00:00",
"2001-02-02T00:00:00",
"2001-02-03T00:00:00",
"2001-02-04T00:00:00",
"2001-02-05T00:00:00",
"2001-02-06T00:00:00",
"2001-02-07T00:00:00",
"2001-02-08T00:00:00",
"2001-02-09T00:00:00",
"2001-02-10T00:00:00",
"2001-02-11T00:00:00",
"2001-02-12T00:00:00",
"2001-02-13T00:00:00",
"2001-02-14T00:00:00",
"2001-02-15T00:00:00",
"2001-02-16T00:00:00",
"2001-02-17T00:00:00",
"2001-02-18T00:00:00",
"2001-02-19T00:00:00",
"2001-02-20T00:00:00",
"2001-02-21T00:00:00",
"2001-02-22T00:00:00",
"2001-02-23T00:00:00",
"2001-02-24T00:00:00",
"2001-02-25T00:00:00",
"2001-02-26T00:00:00",
"2001-02-27T00:00:00",
"2001-02-28T00:00:00",
"2001-03-01T00:00:00",
"2001-03-02T00:00:00",
"2001-03-03T00:00:00",
"2001-03-04T00:00:00",
"2001-03-05T00:00:00",
"2001-03-06T00:00:00",
"2001-03-07T00:00:00",
"2001-03-08T00:00:00",
"2001-03-09T00:00:00",
"2001-03-10T00:00:00",
"2001-03-11T00:00:00",
"2001-03-12T00:00:00",
"2001-03-13T00:00:00",
"2001-03-14T00:00:00",
"2001-03-15T00:00:00",
"2001-03-16T00:00:00",
"2001-03-17T00:00:00",
"2001-03-18T00:00:00",
"2001-03-19T00:00:00",
"2001-03-20T00:00:00",
"2001-03-21T00:00:00",
"2001-03-22T00:00:00",
"2001-03-23T00:00:00",
"2001-03-24T00:00:00",
"2001-03-25T00:00:00",
"2001-03-26T00:00:00",
"2001-03-27T00:00:00",
"2001-03-28T00:00:00",
"2001-03-29T00:00:00",
"2001-03-30T00:00:00",
"2001-03-31T00:00:00",
"2001-04-01T00:00:00",
"2001-04-02T00:00:00",
"2001-04-03T00:00:00",
"2001-04-04T00:00:00",
"2001-04-05T00:00:00",
"2001-04-06T00:00:00",
"2001-04-07T00:00:00",
"2001-04-08T00:00:00",
"2001-04-09T00:00:00",
"2001-04-10T00:00:00",
"2001-04-11T00:00:00",
"2001-04-12T00:00:00",
"2001-04-13T00:00:00",
"2001-04-14T00:00:00",
"2001-04-15T00:00:00",
"2001-04-16T00:00:00",
"2001-04-17T00:00:00",
"2001-04-18T00:00:00",
"2001-04-19T00:00:00",
"2001-04-20T00:00:00",
"2001-04-21T00:00:00",
"2001-04-22T00:00:00",
"2001-04-23T00:00:00",
"2001-04-24T00:00:00",
"2001-04-25T00:00:00",
"2001-04-26T00:00:00",
"2001-04-27T00:00:00",
"2001-04-28T00:00:00",
"2001-04-29T00:00:00",
"2001-04-30T00:00:00",
"2001-05-01T00:00:00",
"2001-05-02T00:00:00",
"2001-05-03T00:00:00",
"2001-05-04T00:00:00",
"2001-05-05T00:00:00",
"2001-05-06T00:00:00",
"2001-05-07T00:00:00",
"2001-05-08T00:00:00",
"2001-05-09T00:00:00",
"2001-05-10T00:00:00",
"2001-05-11T00:00:00",
"2001-05-12T00:00:00",
"2001-05-13T00:00:00",
"2001-05-14T00:00:00",
"2001-05-15T00:00:00",
"2001-05-16T00:00:00",
"2001-05-17T00:00:00",
"2001-05-18T00:00:00",
"2001-05-19T00:00:00",
"2001-05-20T00:00:00",
"2001-05-21T00:00:00",
"2001-05-22T00:00:00",
"2001-05-23T00:00:00",
"2001-05-24T00:00:00",
"2001-05-25T00:00:00",
"2001-05-26T00:00:00",
"2001-05-27T00:00:00",
"2001-05-28T00:00:00",
"2001-05-29T00:00:00",
"2001-05-30T00:00:00",
"2001-05-31T00:00:00",
"2001-06-01T00:00:00",
"2001-06-02T00:00:00",
"2001-06-03T00:00:00",
"2001-06-04T00:00:00",
"2001-06-05T00:00:00",
"2001-06-06T00:00:00",
"2001-06-07T00:00:00",
"2001-06-08T00:00:00",
"2001-06-09T00:00:00",
"2001-06-10T00:00:00",
"2001-06-11T00:00:00",
"2001-06-12T00:00:00",
"2001-06-13T00:00:00",
"2001-06-14T00:00:00",
"2001-06-15T00:00:00",
"2001-06-16T00:00:00",
"2001-06-17T00:00:00",
"2001-06-18T00:00:00",
"2001-06-19T00:00:00",
"2001-06-20T00:00:00",
"2001-06-21T00:00:00",
"2001-06-22T00:00:00",
"2001-06-23T00:00:00",
"2001-06-24T00:00:00",
"2001-06-25T00:00:00",
"2001-06-26T00:00:00",
"2001-06-27T00:00:00",
"2001-06-28T00:00:00",
"2001-06-29T00:00:00",
"2001-06-30T00:00:00",
"2001-07-01T00:00:00",
"2001-07-02T00:00:00",
"2001-07-03T00:00:00",
"2001-07-04T00:00:00",
"2001-07-05T00:00:00",
"2001-07-06T00:00:00",
"2001-07-07T00:00:00",
"2001-07-08T00:00:00",
"2001-07-09T00:00:00",
"2001-07-10T00:00:00",
"2001-07-11T00:00:00",
"2001-07-12T00:00:00",
"2001-07-13T00:00:00",
"2001-07-14T00:00:00",
"2001-07-15T00:00:00",
"2001-07-16T00:00:00",
"2001-07-17T00:00:00",
"2001-07-18T00:00:00",
"2001-07-19T00:00:00",
"2001-07-20T00:00:00",
"2001-07-21T00:00:00",
"2001-07-22T00:00:00",
"2001-07-23T00:00:00",
"2001-07-24T00:00:00",
"2001-07-25T00:00:00",
"2001-07-26T00:00:00",
"2001-07-27T00:00:00",
"2001-07-28T00:00:00",
"2001-07-29T00:00:00",
"2001-07-30T00:00:00",
"2001-07-31T00:00:00",
"2001-08-01T00:00:00",
"2001-08-02T00:00:00",
"2001-08-03T00:00:00",
"2001-08-04T00:00:00",
"2001-08-05T00:00:00",
"2001-08-06T00:00:00",
"2001-08-07T00:00:00",
"2001-08-08T00:00:00",
"2001-08-09T00:00:00",
"2001-08-10T00:00:00",
"2001-08-11T00:00:00",
"2001-08-12T00:00:00",
"2001-08-13T00:00:00",
"2001-08-14T00:00:00",
"2001-08-15T00:00:00",
"2001-08-16T00:00:00",
"2001-08-17T00:00:00",
"2001-08-18T00:00:00",
"2001-08-19T00:00:00",
"2001-08-20T00:00:00",
"2001-08-21T00:00:00",
"2001-08-22T00:00:00",
"2001-08-23T00:00:00",
"2001-08-24T00:00:00",
"2001-08-25T00:00:00",
"2001-08-26T00:00:00",
"2001-08-27T00:00:00",
"2001-08-28T00:00:00",
"2001-08-29T00:00:00",
"2001-08-30T00:00:00",
"2001-08-31T00:00:00",
"2001-09-01T00:00:00",
"2001-09-02T00:00:00",
"2001-09-03T00:00:00",
"2001-09-04T00:00:00",
"2001-09-05T00:00:00",
"2001-09-06T00:00:00",
"2001-09-07T00:00:00",
"2001-09-08T00:00:00",
"2001-09-09T00:00:00",
"2001-09-10T00:00:00",
"2001-09-11T00:00:00",
"2001-09-12T00:00:00",
"2001-09-13T00:00:00",
"2001-09-14T00:00:00",
"2001-09-15T00:00:00",
"2001-09-16T00:00:00",
"2001-09-17T00:00:00",
"2001-09-18T00:00:00",
"2001-09-19T00:00:00",
"2001-09-20T00:00:00",
"2001-09-21T00:00:00",
"2001-09-22T00:00:00",
"2001-09-23T00:00:00",
"2001-09-24T00:00:00",
"2001-09-25T00:00:00",
"2001-09-26T00:00:00",
"2001-09-27T00:00:00",
"2001-09-28T00:00:00",
"2001-09-29T00:00:00",
"2001-09-30T00:00:00",
"2001-10-01T00:00:00",
"2001-10-02T00:00:00",
"2001-10-03T00:00:00",
"2001-10-04T00:00:00",
"2001-10-05T00:00:00",
"2001-10-06T00:00:00",
"2001-10-07T00:00:00",
"2001-10-08T00:00:00",
"2001-10-09T00:00:00",
"2001-10-10T00:00:00",
"2001-10-11T00:00:00",
"2001-10-12T00:00:00",
"2001-10-13T00:00:00",
"2001-10-14T00:00:00",
"2001-10-15T00:00:00",
"2001-10-16T00:00:00",
"2001-10-17T00:00:00",
"2001-10-18T00:00:00",
"2001-10-19T00:00:00",
"2001-10-20T00:00:00",
"2001-10-21T00:00:00",
"2001-10-22T00:00:00",
"2001-10-23T00:00:00",
"2001-10-24T00:00:00",
"2001-10-25T00:00:00",
"2001-10-26T00:00:00",
"2001-10-27T00:00:00",
"2001-10-28T00:00:00",
"2001-10-29T00:00:00",
"2001-10-30T00:00:00",
"2001-10-31T00:00:00",
"2001-11-01T00:00:00",
"2001-11-02T00:00:00",
"2001-11-03T00:00:00",
"2001-11-04T00:00:00",
"2001-11-05T00:00:00",
"2001-11-06T00:00:00",
"2001-11-07T00:00:00",
"2001-11-08T00:00:00",
"2001-11-09T00:00:00",
"2001-11-10T00:00:00",
"2001-11-11T00:00:00",
"2001-11-12T00:00:00",
"2001-11-13T00:00:00",
"2001-11-14T00:00:00",
"2001-11-15T00:00:00",
"2001-11-16T00:00:00",
"2001-11-17T00:00:00",
"2001-11-18T00:00:00",
"2001-11-19T00:00:00",
"2001-11-20T00:00:00",
"2001-11-21T00:00:00",
"2001-11-22T00:00:00",
"2001-11-23T00:00:00",
"2001-11-24T00:00:00",
"2001-11-25T00:00:00",
"2001-11-26T00:00:00",
"2001-11-27T00:00:00",
"2001-11-28T00:00:00",
"2001-11-29T00:00:00",
"2001-11-30T00:00:00",
"2001-12-01T00:00:00",
"2001-12-02T00:00:00",
"2001-12-03T00:00:00",
"2001-12-04T00:00:00",
"2001-12-05T00:00:00",
"2001-12-06T00:00:00",
"2001-12-07T00:00:00",
"2001-12-08T00:00:00",
"2001-12-09T00:00:00",
"2001-12-10T00:00:00",
"2001-12-11T00:00:00",
"2001-12-12T00:00:00",
"2001-12-13T00:00:00",
"2001-12-14T00:00:00",
"2001-12-15T00:00:00",
"2001-12-16T00:00:00",
"2001-12-17T00:00:00",
"2001-12-18T00:00:00",
"2001-12-19T00:00:00",
"2001-12-20T00:00:00",
"2001-12-21T00:00:00",
"2001-12-22T00:00:00",
"2001-12-23T00:00:00",
"2001-12-24T00:00:00",
"2001-12-25T00:00:00",
"2001-12-26T00:00:00",
"2001-12-27T00:00:00",
"2001-12-28T00:00:00",
"2001-12-29T00:00:00",
"2001-12-30T00:00:00",
"2001-12-31T00:00:00",
"2002-01-01T00:00:00",
"2002-01-02T00:00:00",
"2002-01-03T00:00:00",
"2002-01-04T00:00:00",
"2002-01-05T00:00:00",
"2002-01-06T00:00:00",
"2002-01-07T00:00:00",
"2002-01-08T00:00:00",
"2002-01-09T00:00:00",
"2002-01-10T00:00:00",
"2002-01-11T00:00:00",
"2002-01-12T00:00:00",
"2002-01-13T00:00:00",
"2002-01-14T00:00:00",
"2002-01-15T00:00:00",
"2002-01-16T00:00:00",
"2002-01-17T00:00:00",
"2002-01-18T00:00:00",
"2002-01-19T00:00:00",
"2002-01-20T00:00:00",
"2002-01-21T00:00:00",
"2002-01-22T00:00:00",
"2002-01-23T00:00:00",
"2002-01-24T00:00:00",
"2002-01-25T00:00:00",
"2002-01-26T00:00:00",
"2002-01-27T00:00:00",
"2002-01-28T00:00:00",
"2002-01-29T00:00:00",
"2002-01-30T00:00:00",
"2002-01-31T00:00:00",
"2002-02-01T00:00:00",
"2002-02-02T00:00:00",
"2002-02-03T00:00:00",
"2002-02-04T00:00:00",
"2002-02-05T00:00:00",
"2002-02-06T00:00:00",
"2002-02-07T00:00:00",
"2002-02-08T00:00:00",
"2002-02-09T00:00:00",
"2002-02-10T00:00:00",
"2002-02-11T00:00:00",
"2002-02-12T00:00:00",
"2002-02-13T00:00:00",
"2002-02-14T00:00:00",
"2002-02-15T00:00:00",
"2002-02-16T00:00:00",
"2002-02-17T00:00:00",
"2002-02-18T00:00:00",
"2002-02-19T00:00:00",
"2002-02-20T00:00:00",
"2002-02-21T00:00:00",
"2002-02-22T00:00:00",
"2002-02-23T00:00:00",
"2002-02-24T00:00:00",
"2002-02-25T00:00:00",
"2002-02-26T00:00:00",
"2002-02-27T00:00:00",
"2002-02-28T00:00:00",
"2002-03-01T00:00:00",
"2002-03-02T00:00:00",
"2002-03-03T00:00:00",
"2002-03-04T00:00:00",
"2002-03-05T00:00:00",
"2002-03-06T00:00:00",
"2002-03-07T00:00:00",
"2002-03-08T00:00:00",
"2002-03-09T00:00:00",
"2002-03-10T00:00:00",
"2002-03-11T00:00:00",
"2002-03-12T00:00:00",
"2002-03-13T00:00:00",
"2002-03-14T00:00:00",
"2002-03-15T00:00:00",
"2002-03-16T00:00:00",
"2002-03-17T00:00:00",
"2002-03-18T00:00:00",
"2002-03-19T00:00:00",
"2002-03-20T00:00:00",
"2002-03-21T00:00:00",
"2002-03-22T00:00:00",
"2002-03-23T00:00:00",
"2002-03-24T00:00:00",
"2002-03-25T00:00:00",
"2002-03-26T00:00:00",
"2002-03-27T00:00:00",
"2002-03-28T00:00:00",
"2002-03-29T00:00:00",
"2002-03-30T00:00:00",
"2002-03-31T00:00:00",
"2002-04-01T00:00:00",
"2002-04-02T00:00:00",
"2002-04-03T00:00:00",
"2002-04-04T00:00:00",
"2002-04-05T00:00:00",
"2002-04-06T00:00:00",
"2002-04-07T00:00:00",
"2002-04-08T00:00:00",
"2002-04-09T00:00:00",
"2002-04-10T00:00:00",
"2002-04-11T00:00:00",
"2002-04-12T00:00:00",
"2002-04-13T00:00:00",
"2002-04-14T00:00:00",
"2002-04-15T00:00:00",
"2002-04-16T00:00:00",
"2002-04-17T00:00:00",
"2002-04-18T00:00:00",
"2002-04-19T00:00:00",
"2002-04-20T00:00:00",
"2002-04-21T00:00:00",
"2002-04-22T00:00:00",
"2002-04-23T00:00:00",
"2002-04-24T00:00:00",
"2002-04-25T00:00:00",
"2002-04-26T00:00:00",
"2002-04-27T00:00:00",
"2002-04-28T00:00:00",
"2002-04-29T00:00:00",
"2002-04-30T00:00:00",
"2002-05-01T00:00:00",
"2002-05-02T00:00:00",
"2002-05-03T00:00:00",
"2002-05-04T00:00:00",
"2002-05-05T00:00:00",
"2002-05-06T00:00:00",
"2002-05-07T00:00:00",
"2002-05-08T00:00:00",
"2002-05-09T00:00:00",
"2002-05-10T00:00:00",
"2002-05-11T00:00:00",
"2002-05-12T00:00:00",
"2002-05-13T00:00:00",
"2002-05-14T00:00:00",
"2002-05-15T00:00:00",
"2002-05-16T00:00:00",
"2002-05-17T00:00:00",
"2002-05-18T00:00:00",
"2002-05-19T00:00:00",
"2002-05-20T00:00:00",
"2002-05-21T00:00:00",
"2002-05-22T00:00:00",
"2002-05-23T00:00:00",
"2002-05-24T00:00:00",
"2002-05-25T00:00:00",
"2002-05-26T00:00:00",
"2002-05-27T00:00:00",
"2002-05-28T00:00:00",
"2002-05-29T00:00:00",
"2002-05-30T00:00:00",
"2002-05-31T00:00:00",
"2002-06-01T00:00:00",
"2002-06-02T00:00:00",
"2002-06-03T00:00:00",
"2002-06-04T00:00:00",
"2002-06-05T00:00:00",
"2002-06-06T00:00:00",
"2002-06-07T00:00:00",
"2002-06-08T00:00:00",
"2002-06-09T00:00:00",
"2002-06-10T00:00:00",
"2002-06-11T00:00:00",
"2002-06-12T00:00:00",
"2002-06-13T00:00:00",
"2002-06-14T00:00:00",
"2002-06-15T00:00:00",
"2002-06-16T00:00:00",
"2002-06-17T00:00:00",
"2002-06-18T00:00:00",
"2002-06-19T00:00:00",
"2002-06-20T00:00:00",
"2002-06-21T00:00:00",
"2002-06-22T00:00:00",
"2002-06-23T00:00:00",
"2002-06-24T00:00:00",
"2002-06-25T00:00:00",
"2002-06-26T00:00:00",
"2002-06-27T00:00:00",
"2002-06-28T00:00:00",
"2002-06-29T00:00:00",
"2002-06-30T00:00:00",
"2002-07-01T00:00:00",
"2002-07-02T00:00:00",
"2002-07-03T00:00:00",
"2002-07-04T00:00:00",
"2002-07-05T00:00:00",
"2002-07-06T00:00:00",
"2002-07-07T00:00:00",
"2002-07-08T00:00:00",
"2002-07-09T00:00:00",
"2002-07-10T00:00:00",
"2002-07-11T00:00:00",
"2002-07-12T00:00:00",
"2002-07-13T00:00:00",
"2002-07-14T00:00:00",
"2002-07-15T00:00:00",
"2002-07-16T00:00:00",
"2002-07-17T00:00:00",
"2002-07-18T00:00:00",
"2002-07-19T00:00:00",
"2002-07-20T00:00:00",
"2002-07-21T00:00:00",
"2002-07-22T00:00:00",
"2002-07-23T00:00:00",
"2002-07-24T00:00:00",
"2002-07-25T00:00:00",
"2002-07-26T00:00:00",
"2002-07-27T00:00:00",
"2002-07-28T00:00:00",
"2002-07-29T00:00:00",
"2002-07-30T00:00:00",
"2002-07-31T00:00:00",
"2002-08-01T00:00:00",
"2002-08-02T00:00:00",
"2002-08-03T00:00:00",
"2002-08-04T00:00:00",
"2002-08-05T00:00:00",
"2002-08-06T00:00:00",
"2002-08-07T00:00:00",
"2002-08-08T00:00:00",
"2002-08-09T00:00:00",
"2002-08-10T00:00:00",
"2002-08-11T00:00:00",
"2002-08-12T00:00:00",
"2002-08-13T00:00:00",
"2002-08-14T00:00:00",
"2002-08-15T00:00:00",
"2002-08-16T00:00:00",
"2002-08-17T00:00:00",
"2002-08-18T00:00:00",
"2002-08-19T00:00:00",
"2002-08-20T00:00:00",
"2002-08-21T00:00:00",
"2002-08-22T00:00:00",
"2002-08-23T00:00:00",
"2002-08-24T00:00:00",
"2002-08-25T00:00:00",
"2002-08-26T00:00:00",
"2002-08-27T00:00:00",
"2002-08-28T00:00:00",
"2002-08-29T00:00:00",
"2002-08-30T00:00:00",
"2002-08-31T00:00:00",
"2002-09-01T00:00:00",
"2002-09-02T00:00:00",
"2002-09-03T00:00:00",
"2002-09-04T00:00:00",
"2002-09-05T00:00:00",
"2002-09-06T00:00:00",
"2002-09-07T00:00:00",
"2002-09-08T00:00:00",
"2002-09-09T00:00:00",
"2002-09-10T00:00:00",
"2002-09-11T00:00:00",
"2002-09-12T00:00:00",
"2002-09-13T00:00:00",
"2002-09-14T00:00:00",
"2002-09-15T00:00:00",
"2002-09-16T00:00:00",
"2002-09-17T00:00:00",
"2002-09-18T00:00:00",
"2002-09-19T00:00:00",
"2002-09-20T00:00:00",
"2002-09-21T00:00:00",
"2002-09-22T00:00:00",
"2002-09-23T00:00:00",
"2002-09-24T00:00:00",
"2002-09-25T00:00:00",
"2002-09-26T00:00:00"
],
"xaxis": "x",
"y": [
-0.3408905764430663,
-0.17241520034316227,
-0.17241520034316227,
1.0126487173063308,
1.0126487173063308,
1.0126487173063308,
1.0973484553198236,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
1.7806679555199163,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.141892476424571,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976,
3.339104546040976
],
"yaxis": "y"
}
],
"layout": {
"legend": {
"title": {
"text": "variable"
},
"tracegroupgap": 0
},
"margin": {
"t": 60
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.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": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"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": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.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
}
}
},
"xaxis": {
"anchor": "y",
"domain": [
0,
1
],
"title": {
"text": "index"
}
},
"yaxis": {
"anchor": "x",
"domain": [
0,
1
],
"title": {
"text": "value"
}
}
}
},
"text/html": [
"<div> <div id=\"ba1ba2f5-f74a-4df0-921b-bdd11e9d83a2\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"ba1ba2f5-f74a-4df0-921b-bdd11e9d83a2\")) { Plotly.newPlot( \"ba1ba2f5-f74a-4df0-921b-bdd11e9d83a2\", [{\"hovertemplate\": \"variable=0<br>index=%{x}<br>value=%{y}<extra></extra>\", \"legendgroup\": \"0\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"0\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"scatter\", \"x\": [\"2000-01-01T00:00:00\", \"2000-01-02T00:00:00\", \"2000-01-03T00:00:00\", \"2000-01-04T00:00:00\", \"2000-01-05T00:00:00\", \"2000-01-06T00:00:00\", \"2000-01-07T00:00:00\", \"2000-01-08T00:00:00\", \"2000-01-09T00:00:00\", \"2000-01-10T00:00:00\", \"2000-01-11T00:00:00\", \"2000-01-12T00:00:00\", \"2000-01-13T00:00:00\", \"2000-01-14T00:00:00\", \"2000-01-15T00:00:00\", \"2000-01-16T00:00:00\", \"2000-01-17T00:00:00\", \"2000-01-18T00:00:00\", \"2000-01-19T00:00:00\", \"2000-01-20T00:00:00\", \"2000-01-21T00:00:00\", \"2000-01-22T00:00:00\", \"2000-01-23T00:00:00\", \"2000-01-24T00:00:00\", \"2000-01-25T00:00:00\", \"2000-01-26T00:00:00\", \"2000-01-27T00:00:00\", \"2000-01-28T00:00:00\", \"2000-01-29T00:00:00\", \"2000-01-30T00:00:00\", \"2000-01-31T00:00:00\", \"2000-02-01T00:00:00\", \"2000-02-02T00:00:00\", \"2000-02-03T00:00:00\", \"2000-02-04T00:00:00\", \"2000-02-05T00:00:00\", \"2000-02-06T00:00:00\", \"2000-02-07T00:00:00\", \"2000-02-08T00:00:00\", \"2000-02-09T00:00:00\", \"2000-02-10T00:00:00\", \"2000-02-11T00:00:00\", \"2000-02-12T00:00:00\", \"2000-02-13T00:00:00\", \"2000-02-14T00:00:00\", \"2000-02-15T00:00:00\", \"2000-02-16T00:00:00\", \"2000-02-17T00:00:00\", \"2000-02-18T00:00:00\", \"2000-02-19T00:00:00\", \"2000-02-20T00:00:00\", \"2000-02-21T00:00:00\", \"2000-02-22T00:00:00\", \"2000-02-23T00:00:00\", \"2000-02-24T00:00:00\", \"2000-02-25T00:00:00\", \"2000-02-26T00:00:00\", \"2000-02-27T00:00:00\", \"2000-02-28T00:00:00\", \"2000-02-29T00:00:00\", \"2000-03-01T00:00:00\", \"2000-03-02T00:00:00\", \"2000-03-03T00:00:00\", \"2000-03-04T00:00:00\", \"2000-03-05T00:00:00\", \"2000-03-06T00:00:00\", \"2000-03-07T00:00:00\", \"2000-03-08T00:00:00\", \"2000-03-09T00:00:00\", \"2000-03-10T00:00:00\", \"2000-03-11T00:00:00\", \"2000-03-12T00:00:00\", \"2000-03-13T00:00:00\", \"2000-03-14T00:00:00\", \"2000-03-15T00:00:00\", \"2000-03-16T00:00:00\", \"2000-03-17T00:00:00\", \"2000-03-18T00:00:00\", \"2000-03-19T00:00:00\", \"2000-03-20T00:00:00\", \"2000-03-21T00:00:00\", \"2000-03-22T00:00:00\", \"2000-03-23T00:00:00\", \"2000-03-24T00:00:00\", \"2000-03-25T00:00:00\", \"2000-03-26T00:00:00\", \"2000-03-27T00:00:00\", \"2000-03-28T00:00:00\", \"2000-03-29T00:00:00\", \"2000-03-30T00:00:00\", \"2000-03-31T00:00:00\", \"2000-04-01T00:00:00\", \"2000-04-02T00:00:00\", \"2000-04-03T00:00:00\", \"2000-04-04T00:00:00\", \"2000-04-05T00:00:00\", \"2000-04-06T00:00:00\", \"2000-04-07T00:00:00\", \"2000-04-08T00:00:00\", \"2000-04-09T00:00:00\", \"2000-04-10T00:00:00\", \"2000-04-11T00:00:00\", \"2000-04-12T00:00:00\", \"2000-04-13T00:00:00\", \"2000-04-14T00:00:00\", \"2000-04-15T00:00:00\", \"2000-04-16T00:00:00\", \"2000-04-17T00:00:00\", \"2000-04-18T00:00:00\", \"2000-04-19T00:00:00\", \"2000-04-20T00:00:00\", \"2000-04-21T00:00:00\", \"2000-04-22T00:00:00\", \"2000-04-23T00:00:00\", \"2000-04-24T00:00:00\", \"2000-04-25T00:00:00\", \"2000-04-26T00:00:00\", \"2000-04-27T00:00:00\", \"2000-04-28T00:00:00\", \"2000-04-29T00:00:00\", \"2000-04-30T00:00:00\", \"2000-05-01T00:00:00\", \"2000-05-02T00:00:00\", \"2000-05-03T00:00:00\", \"2000-05-04T00:00:00\", \"2000-05-05T00:00:00\", \"2000-05-06T00:00:00\", \"2000-05-07T00:00:00\", \"2000-05-08T00:00:00\", \"2000-05-09T00:00:00\", \"2000-05-10T00:0
" \n",
"var gd = document.getElementById('ba1ba2f5-f74a-4df0-921b-bdd11e9d83a2');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; }); </script> </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"kser.plot()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"On a DataFrame, the <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/pyspark.pandas.frame.DataFrame.plot.html#databricks.koalas.frame.DataFrame.plot\">plot()</a> method is a convenience to plot all of the columns with labels:"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {},
"outputs": [],
"source": [
"pdf = pd.DataFrame(np.random.randn(1000, 4), index=pser.index,\n",
" columns=['A', 'B', 'C', 'D'])"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {},
"outputs": [],
"source": [
"kdf = ks.from_pandas(pdf)"
]
},
{
"cell_type": "code",
"execution_count": 48,
"metadata": {},
"outputs": [],
"source": [
"kdf = kdf.cummax()"
]
},
{
"cell_type": "code",
"execution_count": 49,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "variable=A<br>index=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "A",
"line": {
"color": "#636efa",
"dash": "solid"
},
"mode": "lines",
"name": "A",
"showlegend": true,
"type": "scattergl",
"x": [
"2000-01-01T00:00:00",
"2000-01-02T00:00:00",
"2000-01-03T00:00:00",
"2000-01-04T00:00:00",
"2000-01-05T00:00:00",
"2000-01-06T00:00:00",
"2000-01-07T00:00:00",
"2000-01-08T00:00:00",
"2000-01-09T00:00:00",
"2000-01-10T00:00:00",
"2000-01-11T00:00:00",
"2000-01-12T00:00:00",
"2000-01-13T00:00:00",
"2000-01-14T00:00:00",
"2000-01-15T00:00:00",
"2000-01-16T00:00:00",
"2000-01-17T00:00:00",
"2000-01-18T00:00:00",
"2000-01-19T00:00:00",
"2000-01-20T00:00:00",
"2000-01-21T00:00:00",
"2000-01-22T00:00:00",
"2000-01-23T00:00:00",
"2000-01-24T00:00:00",
"2000-01-25T00:00:00",
"2000-01-26T00:00:00",
"2000-01-27T00:00:00",
"2000-01-28T00:00:00",
"2000-01-29T00:00:00",
"2000-01-30T00:00:00",
"2000-01-31T00:00:00",
"2000-02-01T00:00:00",
"2000-02-02T00:00:00",
"2000-02-03T00:00:00",
"2000-02-04T00:00:00",
"2000-02-05T00:00:00",
"2000-02-06T00:00:00",
"2000-02-07T00:00:00",
"2000-02-08T00:00:00",
"2000-02-09T00:00:00",
"2000-02-10T00:00:00",
"2000-02-11T00:00:00",
"2000-02-12T00:00:00",
"2000-02-13T00:00:00",
"2000-02-14T00:00:00",
"2000-02-15T00:00:00",
"2000-02-16T00:00:00",
"2000-02-17T00:00:00",
"2000-02-18T00:00:00",
"2000-02-19T00:00:00",
"2000-02-20T00:00:00",
"2000-02-21T00:00:00",
"2000-02-22T00:00:00",
"2000-02-23T00:00:00",
"2000-02-24T00:00:00",
"2000-02-25T00:00:00",
"2000-02-26T00:00:00",
"2000-02-27T00:00:00",
"2000-02-28T00:00:00",
"2000-02-29T00:00:00",
"2000-03-01T00:00:00",
"2000-03-02T00:00:00",
"2000-03-03T00:00:00",
"2000-03-04T00:00:00",
"2000-03-05T00:00:00",
"2000-03-06T00:00:00",
"2000-03-07T00:00:00",
"2000-03-08T00:00:00",
"2000-03-09T00:00:00",
"2000-03-10T00:00:00",
"2000-03-11T00:00:00",
"2000-03-12T00:00:00",
"2000-03-13T00:00:00",
"2000-03-14T00:00:00",
"2000-03-15T00:00:00",
"2000-03-16T00:00:00",
"2000-03-17T00:00:00",
"2000-03-18T00:00:00",
"2000-03-19T00:00:00",
"2000-03-20T00:00:00",
"2000-03-21T00:00:00",
"2000-03-22T00:00:00",
"2000-03-23T00:00:00",
"2000-03-24T00:00:00",
"2000-03-25T00:00:00",
"2000-03-26T00:00:00",
"2000-03-27T00:00:00",
"2000-03-28T00:00:00",
"2000-03-29T00:00:00",
"2000-03-30T00:00:00",
"2000-03-31T00:00:00",
"2000-04-01T00:00:00",
"2000-04-02T00:00:00",
"2000-04-03T00:00:00",
"2000-04-04T00:00:00",
"2000-04-05T00:00:00",
"2000-04-06T00:00:00",
"2000-04-07T00:00:00",
"2000-04-08T00:00:00",
"2000-04-09T00:00:00",
"2000-04-10T00:00:00",
"2000-04-11T00:00:00",
"2000-04-12T00:00:00",
"2000-04-13T00:00:00",
"2000-04-14T00:00:00",
"2000-04-15T00:00:00",
"2000-04-16T00:00:00",
"2000-04-17T00:00:00",
"2000-04-18T00:00:00",
"2000-04-19T00:00:00",
"2000-04-20T00:00:00",
"2000-04-21T00:00:00",
"2000-04-22T00:00:00",
"2000-04-23T00:00:00",
"2000-04-24T00:00:00",
"2000-04-25T00:00:00",
"2000-04-26T00:00:00",
"2000-04-27T00:00:00",
"2000-04-28T00:00:00",
"2000-04-29T00:00:00",
"2000-04-30T00:00:00",
"2000-05-01T00:00:00",
"2000-05-02T00:00:00",
"2000-05-03T00:00:00",
"2000-05-04T00:00:00",
"2000-05-05T00:00:00",
"2000-05-06T00:00:00",
"2000-05-07T00:00:00",
"2000-05-08T00:00:00",
"2000-05-09T00:00:00",
"2000-05-10T00:00:00",
"2000-05-11T00:00:00",
"2000-05-12T00:00:00",
"2000-05-13T00:00:00",
"2000-05-14T00:00:00",
"2000-05-15T00:00:00",
"2000-05-16T00:00:00",
"2000-05-17T00:00:00",
"2000-05-18T00:00:00",
"2000-05-19T00:00:00",
"2000-05-20T00:00:00",
"2000-05-21T00:00:00",
"2000-05-22T00:00:00",
"2000-05-23T00:00:00",
"2000-05-24T00:00:00",
"2000-05-25T00:00:00",
"2000-05-26T00:00:00",
"2000-05-27T00:00:00",
"2000-05-28T00:00:00",
"2000-05-29T00:00:00",
"2000-05-30T00:00:00",
"2000-05-31T00:00:00",
"2000-06-01T00:00:00",
"2000-06-02T00:00:00",
"2000-06-03T00:00:00",
"2000-06-04T00:00:00",
"2000-06-05T00:00:00",
"2000-06-06T00:00:00",
"2000-06-07T00:00:00",
"2000-06-08T00:00:00",
"2000-06-09T00:00:00",
"2000-06-10T00:00:00",
"2000-06-11T00:00:00",
"2000-06-12T00:00:00",
"2000-06-13T00:00:00",
"2000-06-14T00:00:00",
"2000-06-15T00:00:00",
"2000-06-16T00:00:00",
"2000-06-17T00:00:00",
"2000-06-18T00:00:00",
"2000-06-19T00:00:00",
"2000-06-20T00:00:00",
"2000-06-21T00:00:00",
"2000-06-22T00:00:00",
"2000-06-23T00:00:00",
"2000-06-24T00:00:00",
"2000-06-25T00:00:00",
"2000-06-26T00:00:00",
"2000-06-27T00:00:00",
"2000-06-28T00:00:00",
"2000-06-29T00:00:00",
"2000-06-30T00:00:00",
"2000-07-01T00:00:00",
"2000-07-02T00:00:00",
"2000-07-03T00:00:00",
"2000-07-04T00:00:00",
"2000-07-05T00:00:00",
"2000-07-06T00:00:00",
"2000-07-07T00:00:00",
"2000-07-08T00:00:00",
"2000-07-09T00:00:00",
"2000-07-10T00:00:00",
"2000-07-11T00:00:00",
"2000-07-12T00:00:00",
"2000-07-13T00:00:00",
"2000-07-14T00:00:00",
"2000-07-15T00:00:00",
"2000-07-16T00:00:00",
"2000-07-17T00:00:00",
"2000-07-18T00:00:00",
"2000-07-19T00:00:00",
"2000-07-20T00:00:00",
"2000-07-21T00:00:00",
"2000-07-22T00:00:00",
"2000-07-23T00:00:00",
"2000-07-24T00:00:00",
"2000-07-25T00:00:00",
"2000-07-26T00:00:00",
"2000-07-27T00:00:00",
"2000-07-28T00:00:00",
"2000-07-29T00:00:00",
"2000-07-30T00:00:00",
"2000-07-31T00:00:00",
"2000-08-01T00:00:00",
"2000-08-02T00:00:00",
"2000-08-03T00:00:00",
"2000-08-04T00:00:00",
"2000-08-05T00:00:00",
"2000-08-06T00:00:00",
"2000-08-07T00:00:00",
"2000-08-08T00:00:00",
"2000-08-09T00:00:00",
"2000-08-10T00:00:00",
"2000-08-11T00:00:00",
"2000-08-12T00:00:00",
"2000-08-13T00:00:00",
"2000-08-14T00:00:00",
"2000-08-15T00:00:00",
"2000-08-16T00:00:00",
"2000-08-17T00:00:00",
"2000-08-18T00:00:00",
"2000-08-19T00:00:00",
"2000-08-20T00:00:00",
"2000-08-21T00:00:00",
"2000-08-22T00:00:00",
"2000-08-23T00:00:00",
"2000-08-24T00:00:00",
"2000-08-25T00:00:00",
"2000-08-26T00:00:00",
"2000-08-27T00:00:00",
"2000-08-28T00:00:00",
"2000-08-29T00:00:00",
"2000-08-30T00:00:00",
"2000-08-31T00:00:00",
"2000-09-01T00:00:00",
"2000-09-02T00:00:00",
"2000-09-03T00:00:00",
"2000-09-04T00:00:00",
"2000-09-05T00:00:00",
"2000-09-06T00:00:00",
"2000-09-07T00:00:00",
"2000-09-08T00:00:00",
"2000-09-09T00:00:00",
"2000-09-10T00:00:00",
"2000-09-11T00:00:00",
"2000-09-12T00:00:00",
"2000-09-13T00:00:00",
"2000-09-14T00:00:00",
"2000-09-15T00:00:00",
"2000-09-16T00:00:00",
"2000-09-17T00:00:00",
"2000-09-18T00:00:00",
"2000-09-19T00:00:00",
"2000-09-20T00:00:00",
"2000-09-21T00:00:00",
"2000-09-22T00:00:00",
"2000-09-23T00:00:00",
"2000-09-24T00:00:00",
"2000-09-25T00:00:00",
"2000-09-26T00:00:00",
"2000-09-27T00:00:00",
"2000-09-28T00:00:00",
"2000-09-29T00:00:00",
"2000-09-30T00:00:00",
"2000-10-01T00:00:00",
"2000-10-02T00:00:00",
"2000-10-03T00:00:00",
"2000-10-04T00:00:00",
"2000-10-05T00:00:00",
"2000-10-06T00:00:00",
"2000-10-07T00:00:00",
"2000-10-08T00:00:00",
"2000-10-09T00:00:00",
"2000-10-10T00:00:00",
"2000-10-11T00:00:00",
"2000-10-12T00:00:00",
"2000-10-13T00:00:00",
"2000-10-14T00:00:00",
"2000-10-15T00:00:00",
"2000-10-16T00:00:00",
"2000-10-17T00:00:00",
"2000-10-18T00:00:00",
"2000-10-19T00:00:00",
"2000-10-20T00:00:00",
"2000-10-21T00:00:00",
"2000-10-22T00:00:00",
"2000-10-23T00:00:00",
"2000-10-24T00:00:00",
"2000-10-25T00:00:00",
"2000-10-26T00:00:00",
"2000-10-27T00:00:00",
"2000-10-28T00:00:00",
"2000-10-29T00:00:00",
"2000-10-30T00:00:00",
"2000-10-31T00:00:00",
"2000-11-01T00:00:00",
"2000-11-02T00:00:00",
"2000-11-03T00:00:00",
"2000-11-04T00:00:00",
"2000-11-05T00:00:00",
"2000-11-06T00:00:00",
"2000-11-07T00:00:00",
"2000-11-08T00:00:00",
"2000-11-09T00:00:00",
"2000-11-10T00:00:00",
"2000-11-11T00:00:00",
"2000-11-12T00:00:00",
"2000-11-13T00:00:00",
"2000-11-14T00:00:00",
"2000-11-15T00:00:00",
"2000-11-16T00:00:00",
"2000-11-17T00:00:00",
"2000-11-18T00:00:00",
"2000-11-19T00:00:00",
"2000-11-20T00:00:00",
"2000-11-21T00:00:00",
"2000-11-22T00:00:00",
"2000-11-23T00:00:00",
"2000-11-24T00:00:00",
"2000-11-25T00:00:00",
"2000-11-26T00:00:00",
"2000-11-27T00:00:00",
"2000-11-28T00:00:00",
"2000-11-29T00:00:00",
"2000-11-30T00:00:00",
"2000-12-01T00:00:00",
"2000-12-02T00:00:00",
"2000-12-03T00:00:00",
"2000-12-04T00:00:00",
"2000-12-05T00:00:00",
"2000-12-06T00:00:00",
"2000-12-07T00:00:00",
"2000-12-08T00:00:00",
"2000-12-09T00:00:00",
"2000-12-10T00:00:00",
"2000-12-11T00:00:00",
"2000-12-12T00:00:00",
"2000-12-13T00:00:00",
"2000-12-14T00:00:00",
"2000-12-15T00:00:00",
"2000-12-16T00:00:00",
"2000-12-17T00:00:00",
"2000-12-18T00:00:00",
"2000-12-19T00:00:00",
"2000-12-20T00:00:00",
"2000-12-21T00:00:00",
"2000-12-22T00:00:00",
"2000-12-23T00:00:00",
"2000-12-24T00:00:00",
"2000-12-25T00:00:00",
"2000-12-26T00:00:00",
"2000-12-27T00:00:00",
"2000-12-28T00:00:00",
"2000-12-29T00:00:00",
"2000-12-30T00:00:00",
"2000-12-31T00:00:00",
"2001-01-01T00:00:00",
"2001-01-02T00:00:00",
"2001-01-03T00:00:00",
"2001-01-04T00:00:00",
"2001-01-05T00:00:00",
"2001-01-06T00:00:00",
"2001-01-07T00:00:00",
"2001-01-08T00:00:00",
"2001-01-09T00:00:00",
"2001-01-10T00:00:00",
"2001-01-11T00:00:00",
"2001-01-12T00:00:00",
"2001-01-13T00:00:00",
"2001-01-14T00:00:00",
"2001-01-15T00:00:00",
"2001-01-16T00:00:00",
"2001-01-17T00:00:00",
"2001-01-18T00:00:00",
"2001-01-19T00:00:00",
"2001-01-20T00:00:00",
"2001-01-21T00:00:00",
"2001-01-22T00:00:00",
"2001-01-23T00:00:00",
"2001-01-24T00:00:00",
"2001-01-25T00:00:00",
"2001-01-26T00:00:00",
"2001-01-27T00:00:00",
"2001-01-28T00:00:00",
"2001-01-29T00:00:00",
"2001-01-30T00:00:00",
"2001-01-31T00:00:00",
"2001-02-01T00:00:00",
"2001-02-02T00:00:00",
"2001-02-03T00:00:00",
"2001-02-04T00:00:00",
"2001-02-05T00:00:00",
"2001-02-06T00:00:00",
"2001-02-07T00:00:00",
"2001-02-08T00:00:00",
"2001-02-09T00:00:00",
"2001-02-10T00:00:00",
"2001-02-11T00:00:00",
"2001-02-12T00:00:00",
"2001-02-13T00:00:00",
"2001-02-14T00:00:00",
"2001-02-15T00:00:00",
"2001-02-16T00:00:00",
"2001-02-17T00:00:00",
"2001-02-18T00:00:00",
"2001-02-19T00:00:00",
"2001-02-20T00:00:00",
"2001-02-21T00:00:00",
"2001-02-22T00:00:00",
"2001-02-23T00:00:00",
"2001-02-24T00:00:00",
"2001-02-25T00:00:00",
"2001-02-26T00:00:00",
"2001-02-27T00:00:00",
"2001-02-28T00:00:00",
"2001-03-01T00:00:00",
"2001-03-02T00:00:00",
"2001-03-03T00:00:00",
"2001-03-04T00:00:00",
"2001-03-05T00:00:00",
"2001-03-06T00:00:00",
"2001-03-07T00:00:00",
"2001-03-08T00:00:00",
"2001-03-09T00:00:00",
"2001-03-10T00:00:00",
"2001-03-11T00:00:00",
"2001-03-12T00:00:00",
"2001-03-13T00:00:00",
"2001-03-14T00:00:00",
"2001-03-15T00:00:00",
"2001-03-16T00:00:00",
"2001-03-17T00:00:00",
"2001-03-18T00:00:00",
"2001-03-19T00:00:00",
"2001-03-20T00:00:00",
"2001-03-21T00:00:00",
"2001-03-22T00:00:00",
"2001-03-23T00:00:00",
"2001-03-24T00:00:00",
"2001-03-25T00:00:00",
"2001-03-26T00:00:00",
"2001-03-27T00:00:00",
"2001-03-28T00:00:00",
"2001-03-29T00:00:00",
"2001-03-30T00:00:00",
"2001-03-31T00:00:00",
"2001-04-01T00:00:00",
"2001-04-02T00:00:00",
"2001-04-03T00:00:00",
"2001-04-04T00:00:00",
"2001-04-05T00:00:00",
"2001-04-06T00:00:00",
"2001-04-07T00:00:00",
"2001-04-08T00:00:00",
"2001-04-09T00:00:00",
"2001-04-10T00:00:00",
"2001-04-11T00:00:00",
"2001-04-12T00:00:00",
"2001-04-13T00:00:00",
"2001-04-14T00:00:00",
"2001-04-15T00:00:00",
"2001-04-16T00:00:00",
"2001-04-17T00:00:00",
"2001-04-18T00:00:00",
"2001-04-19T00:00:00",
"2001-04-20T00:00:00",
"2001-04-21T00:00:00",
"2001-04-22T00:00:00",
"2001-04-23T00:00:00",
"2001-04-24T00:00:00",
"2001-04-25T00:00:00",
"2001-04-26T00:00:00",
"2001-04-27T00:00:00",
"2001-04-28T00:00:00",
"2001-04-29T00:00:00",
"2001-04-30T00:00:00",
"2001-05-01T00:00:00",
"2001-05-02T00:00:00",
"2001-05-03T00:00:00",
"2001-05-04T00:00:00",
"2001-05-05T00:00:00",
"2001-05-06T00:00:00",
"2001-05-07T00:00:00",
"2001-05-08T00:00:00",
"2001-05-09T00:00:00",
"2001-05-10T00:00:00",
"2001-05-11T00:00:00",
"2001-05-12T00:00:00",
"2001-05-13T00:00:00",
"2001-05-14T00:00:00",
"2001-05-15T00:00:00",
"2001-05-16T00:00:00",
"2001-05-17T00:00:00",
"2001-05-18T00:00:00",
"2001-05-19T00:00:00",
"2001-05-20T00:00:00",
"2001-05-21T00:00:00",
"2001-05-22T00:00:00",
"2001-05-23T00:00:00",
"2001-05-24T00:00:00",
"2001-05-25T00:00:00",
"2001-05-26T00:00:00",
"2001-05-27T00:00:00",
"2001-05-28T00:00:00",
"2001-05-29T00:00:00",
"2001-05-30T00:00:00",
"2001-05-31T00:00:00",
"2001-06-01T00:00:00",
"2001-06-02T00:00:00",
"2001-06-03T00:00:00",
"2001-06-04T00:00:00",
"2001-06-05T00:00:00",
"2001-06-06T00:00:00",
"2001-06-07T00:00:00",
"2001-06-08T00:00:00",
"2001-06-09T00:00:00",
"2001-06-10T00:00:00",
"2001-06-11T00:00:00",
"2001-06-12T00:00:00",
"2001-06-13T00:00:00",
"2001-06-14T00:00:00",
"2001-06-15T00:00:00",
"2001-06-16T00:00:00",
"2001-06-17T00:00:00",
"2001-06-18T00:00:00",
"2001-06-19T00:00:00",
"2001-06-20T00:00:00",
"2001-06-21T00:00:00",
"2001-06-22T00:00:00",
"2001-06-23T00:00:00",
"2001-06-24T00:00:00",
"2001-06-25T00:00:00",
"2001-06-26T00:00:00",
"2001-06-27T00:00:00",
"2001-06-28T00:00:00",
"2001-06-29T00:00:00",
"2001-06-30T00:00:00",
"2001-07-01T00:00:00",
"2001-07-02T00:00:00",
"2001-07-03T00:00:00",
"2001-07-04T00:00:00",
"2001-07-05T00:00:00",
"2001-07-06T00:00:00",
"2001-07-07T00:00:00",
"2001-07-08T00:00:00",
"2001-07-09T00:00:00",
"2001-07-10T00:00:00",
"2001-07-11T00:00:00",
"2001-07-12T00:00:00",
"2001-07-13T00:00:00",
"2001-07-14T00:00:00",
"2001-07-15T00:00:00",
"2001-07-16T00:00:00",
"2001-07-17T00:00:00",
"2001-07-18T00:00:00",
"2001-07-19T00:00:00",
"2001-07-20T00:00:00",
"2001-07-21T00:00:00",
"2001-07-22T00:00:00",
"2001-07-23T00:00:00",
"2001-07-24T00:00:00",
"2001-07-25T00:00:00",
"2001-07-26T00:00:00",
"2001-07-27T00:00:00",
"2001-07-28T00:00:00",
"2001-07-29T00:00:00",
"2001-07-30T00:00:00",
"2001-07-31T00:00:00",
"2001-08-01T00:00:00",
"2001-08-02T00:00:00",
"2001-08-03T00:00:00",
"2001-08-04T00:00:00",
"2001-08-05T00:00:00",
"2001-08-06T00:00:00",
"2001-08-07T00:00:00",
"2001-08-08T00:00:00",
"2001-08-09T00:00:00",
"2001-08-10T00:00:00",
"2001-08-11T00:00:00",
"2001-08-12T00:00:00",
"2001-08-13T00:00:00",
"2001-08-14T00:00:00",
"2001-08-15T00:00:00",
"2001-08-16T00:00:00",
"2001-08-17T00:00:00",
"2001-08-18T00:00:00",
"2001-08-19T00:00:00",
"2001-08-20T00:00:00",
"2001-08-21T00:00:00",
"2001-08-22T00:00:00",
"2001-08-23T00:00:00",
"2001-08-24T00:00:00",
"2001-08-25T00:00:00",
"2001-08-26T00:00:00",
"2001-08-27T00:00:00",
"2001-08-28T00:00:00",
"2001-08-29T00:00:00",
"2001-08-30T00:00:00",
"2001-08-31T00:00:00",
"2001-09-01T00:00:00",
"2001-09-02T00:00:00",
"2001-09-03T00:00:00",
"2001-09-04T00:00:00",
"2001-09-05T00:00:00",
"2001-09-06T00:00:00",
"2001-09-07T00:00:00",
"2001-09-08T00:00:00",
"2001-09-09T00:00:00",
"2001-09-10T00:00:00",
"2001-09-11T00:00:00",
"2001-09-12T00:00:00",
"2001-09-13T00:00:00",
"2001-09-14T00:00:00",
"2001-09-15T00:00:00",
"2001-09-16T00:00:00",
"2001-09-17T00:00:00",
"2001-09-18T00:00:00",
"2001-09-19T00:00:00",
"2001-09-20T00:00:00",
"2001-09-21T00:00:00",
"2001-09-22T00:00:00",
"2001-09-23T00:00:00",
"2001-09-24T00:00:00",
"2001-09-25T00:00:00",
"2001-09-26T00:00:00",
"2001-09-27T00:00:00",
"2001-09-28T00:00:00",
"2001-09-29T00:00:00",
"2001-09-30T00:00:00",
"2001-10-01T00:00:00",
"2001-10-02T00:00:00",
"2001-10-03T00:00:00",
"2001-10-04T00:00:00",
"2001-10-05T00:00:00",
"2001-10-06T00:00:00",
"2001-10-07T00:00:00",
"2001-10-08T00:00:00",
"2001-10-09T00:00:00",
"2001-10-10T00:00:00",
"2001-10-11T00:00:00",
"2001-10-12T00:00:00",
"2001-10-13T00:00:00",
"2001-10-14T00:00:00",
"2001-10-15T00:00:00",
"2001-10-16T00:00:00",
"2001-10-17T00:00:00",
"2001-10-18T00:00:00",
"2001-10-19T00:00:00",
"2001-10-20T00:00:00",
"2001-10-21T00:00:00",
"2001-10-22T00:00:00",
"2001-10-23T00:00:00",
"2001-10-24T00:00:00",
"2001-10-25T00:00:00",
"2001-10-26T00:00:00",
"2001-10-27T00:00:00",
"2001-10-28T00:00:00",
"2001-10-29T00:00:00",
"2001-10-30T00:00:00",
"2001-10-31T00:00:00",
"2001-11-01T00:00:00",
"2001-11-02T00:00:00",
"2001-11-03T00:00:00",
"2001-11-04T00:00:00",
"2001-11-05T00:00:00",
"2001-11-06T00:00:00",
"2001-11-07T00:00:00",
"2001-11-08T00:00:00",
"2001-11-09T00:00:00",
"2001-11-10T00:00:00",
"2001-11-11T00:00:00",
"2001-11-12T00:00:00",
"2001-11-13T00:00:00",
"2001-11-14T00:00:00",
"2001-11-15T00:00:00",
"2001-11-16T00:00:00",
"2001-11-17T00:00:00",
"2001-11-18T00:00:00",
"2001-11-19T00:00:00",
"2001-11-20T00:00:00",
"2001-11-21T00:00:00",
"2001-11-22T00:00:00",
"2001-11-23T00:00:00",
"2001-11-24T00:00:00",
"2001-11-25T00:00:00",
"2001-11-26T00:00:00",
"2001-11-27T00:00:00",
"2001-11-28T00:00:00",
"2001-11-29T00:00:00",
"2001-11-30T00:00:00",
"2001-12-01T00:00:00",
"2001-12-02T00:00:00",
"2001-12-03T00:00:00",
"2001-12-04T00:00:00",
"2001-12-05T00:00:00",
"2001-12-06T00:00:00",
"2001-12-07T00:00:00",
"2001-12-08T00:00:00",
"2001-12-09T00:00:00",
"2001-12-10T00:00:00",
"2001-12-11T00:00:00",
"2001-12-12T00:00:00",
"2001-12-13T00:00:00",
"2001-12-14T00:00:00",
"2001-12-15T00:00:00",
"2001-12-16T00:00:00",
"2001-12-17T00:00:00",
"2001-12-18T00:00:00",
"2001-12-19T00:00:00",
"2001-12-20T00:00:00",
"2001-12-21T00:00:00",
"2001-12-22T00:00:00",
"2001-12-23T00:00:00",
"2001-12-24T00:00:00",
"2001-12-25T00:00:00",
"2001-12-26T00:00:00",
"2001-12-27T00:00:00",
"2001-12-28T00:00:00",
"2001-12-29T00:00:00",
"2001-12-30T00:00:00",
"2001-12-31T00:00:00",
"2002-01-01T00:00:00",
"2002-01-02T00:00:00",
"2002-01-03T00:00:00",
"2002-01-04T00:00:00",
"2002-01-05T00:00:00",
"2002-01-06T00:00:00",
"2002-01-07T00:00:00",
"2002-01-08T00:00:00",
"2002-01-09T00:00:00",
"2002-01-10T00:00:00",
"2002-01-11T00:00:00",
"2002-01-12T00:00:00",
"2002-01-13T00:00:00",
"2002-01-14T00:00:00",
"2002-01-15T00:00:00",
"2002-01-16T00:00:00",
"2002-01-17T00:00:00",
"2002-01-18T00:00:00",
"2002-01-19T00:00:00",
"2002-01-20T00:00:00",
"2002-01-21T00:00:00",
"2002-01-22T00:00:00",
"2002-01-23T00:00:00",
"2002-01-24T00:00:00",
"2002-01-25T00:00:00",
"2002-01-26T00:00:00",
"2002-01-27T00:00:00",
"2002-01-28T00:00:00",
"2002-01-29T00:00:00",
"2002-01-30T00:00:00",
"2002-01-31T00:00:00",
"2002-02-01T00:00:00",
"2002-02-02T00:00:00",
"2002-02-03T00:00:00",
"2002-02-04T00:00:00",
"2002-02-05T00:00:00",
"2002-02-06T00:00:00",
"2002-02-07T00:00:00",
"2002-02-08T00:00:00",
"2002-02-09T00:00:00",
"2002-02-10T00:00:00",
"2002-02-11T00:00:00",
"2002-02-12T00:00:00",
"2002-02-13T00:00:00",
"2002-02-14T00:00:00",
"2002-02-15T00:00:00",
"2002-02-16T00:00:00",
"2002-02-17T00:00:00",
"2002-02-18T00:00:00",
"2002-02-19T00:00:00",
"2002-02-20T00:00:00",
"2002-02-21T00:00:00",
"2002-02-22T00:00:00",
"2002-02-23T00:00:00",
"2002-02-24T00:00:00",
"2002-02-25T00:00:00",
"2002-02-26T00:00:00",
"2002-02-27T00:00:00",
"2002-02-28T00:00:00",
"2002-03-01T00:00:00",
"2002-03-02T00:00:00",
"2002-03-03T00:00:00",
"2002-03-04T00:00:00",
"2002-03-05T00:00:00",
"2002-03-06T00:00:00",
"2002-03-07T00:00:00",
"2002-03-08T00:00:00",
"2002-03-09T00:00:00",
"2002-03-10T00:00:00",
"2002-03-11T00:00:00",
"2002-03-12T00:00:00",
"2002-03-13T00:00:00",
"2002-03-14T00:00:00",
"2002-03-15T00:00:00",
"2002-03-16T00:00:00",
"2002-03-17T00:00:00",
"2002-03-18T00:00:00",
"2002-03-19T00:00:00",
"2002-03-20T00:00:00",
"2002-03-21T00:00:00",
"2002-03-22T00:00:00",
"2002-03-23T00:00:00",
"2002-03-24T00:00:00",
"2002-03-25T00:00:00",
"2002-03-26T00:00:00",
"2002-03-27T00:00:00",
"2002-03-28T00:00:00",
"2002-03-29T00:00:00",
"2002-03-30T00:00:00",
"2002-03-31T00:00:00",
"2002-04-01T00:00:00",
"2002-04-02T00:00:00",
"2002-04-03T00:00:00",
"2002-04-04T00:00:00",
"2002-04-05T00:00:00",
"2002-04-06T00:00:00",
"2002-04-07T00:00:00",
"2002-04-08T00:00:00",
"2002-04-09T00:00:00",
"2002-04-10T00:00:00",
"2002-04-11T00:00:00",
"2002-04-12T00:00:00",
"2002-04-13T00:00:00",
"2002-04-14T00:00:00",
"2002-04-15T00:00:00",
"2002-04-16T00:00:00",
"2002-04-17T00:00:00",
"2002-04-18T00:00:00",
"2002-04-19T00:00:00",
"2002-04-20T00:00:00",
"2002-04-21T00:00:00",
"2002-04-22T00:00:00",
"2002-04-23T00:00:00",
"2002-04-24T00:00:00",
"2002-04-25T00:00:00",
"2002-04-26T00:00:00",
"2002-04-27T00:00:00",
"2002-04-28T00:00:00",
"2002-04-29T00:00:00",
"2002-04-30T00:00:00",
"2002-05-01T00:00:00",
"2002-05-02T00:00:00",
"2002-05-03T00:00:00",
"2002-05-04T00:00:00",
"2002-05-05T00:00:00",
"2002-05-06T00:00:00",
"2002-05-07T00:00:00",
"2002-05-08T00:00:00",
"2002-05-09T00:00:00",
"2002-05-10T00:00:00",
"2002-05-11T00:00:00",
"2002-05-12T00:00:00",
"2002-05-13T00:00:00",
"2002-05-14T00:00:00",
"2002-05-15T00:00:00",
"2002-05-16T00:00:00",
"2002-05-17T00:00:00",
"2002-05-18T00:00:00",
"2002-05-19T00:00:00",
"2002-05-20T00:00:00",
"2002-05-21T00:00:00",
"2002-05-22T00:00:00",
"2002-05-23T00:00:00",
"2002-05-24T00:00:00",
"2002-05-25T00:00:00",
"2002-05-26T00:00:00",
"2002-05-27T00:00:00",
"2002-05-28T00:00:00",
"2002-05-29T00:00:00",
"2002-05-30T00:00:00",
"2002-05-31T00:00:00",
"2002-06-01T00:00:00",
"2002-06-02T00:00:00",
"2002-06-03T00:00:00",
"2002-06-04T00:00:00",
"2002-06-05T00:00:00",
"2002-06-06T00:00:00",
"2002-06-07T00:00:00",
"2002-06-08T00:00:00",
"2002-06-09T00:00:00",
"2002-06-10T00:00:00",
"2002-06-11T00:00:00",
"2002-06-12T00:00:00",
"2002-06-13T00:00:00",
"2002-06-14T00:00:00",
"2002-06-15T00:00:00",
"2002-06-16T00:00:00",
"2002-06-17T00:00:00",
"2002-06-18T00:00:00",
"2002-06-19T00:00:00",
"2002-06-20T00:00:00",
"2002-06-21T00:00:00",
"2002-06-22T00:00:00",
"2002-06-23T00:00:00",
"2002-06-24T00:00:00",
"2002-06-25T00:00:00",
"2002-06-26T00:00:00",
"2002-06-27T00:00:00",
"2002-06-28T00:00:00",
"2002-06-29T00:00:00",
"2002-06-30T00:00:00",
"2002-07-01T00:00:00",
"2002-07-02T00:00:00",
"2002-07-03T00:00:00",
"2002-07-04T00:00:00",
"2002-07-05T00:00:00",
"2002-07-06T00:00:00",
"2002-07-07T00:00:00",
"2002-07-08T00:00:00",
"2002-07-09T00:00:00",
"2002-07-10T00:00:00",
"2002-07-11T00:00:00",
"2002-07-12T00:00:00",
"2002-07-13T00:00:00",
"2002-07-14T00:00:00",
"2002-07-15T00:00:00",
"2002-07-16T00:00:00",
"2002-07-17T00:00:00",
"2002-07-18T00:00:00",
"2002-07-19T00:00:00",
"2002-07-20T00:00:00",
"2002-07-21T00:00:00",
"2002-07-22T00:00:00",
"2002-07-23T00:00:00",
"2002-07-24T00:00:00",
"2002-07-25T00:00:00",
"2002-07-26T00:00:00",
"2002-07-27T00:00:00",
"2002-07-28T00:00:00",
"2002-07-29T00:00:00",
"2002-07-30T00:00:00",
"2002-07-31T00:00:00",
"2002-08-01T00:00:00",
"2002-08-02T00:00:00",
"2002-08-03T00:00:00",
"2002-08-04T00:00:00",
"2002-08-05T00:00:00",
"2002-08-06T00:00:00",
"2002-08-07T00:00:00",
"2002-08-08T00:00:00",
"2002-08-09T00:00:00",
"2002-08-10T00:00:00",
"2002-08-11T00:00:00",
"2002-08-12T00:00:00",
"2002-08-13T00:00:00",
"2002-08-14T00:00:00",
"2002-08-15T00:00:00",
"2002-08-16T00:00:00",
"2002-08-17T00:00:00",
"2002-08-18T00:00:00",
"2002-08-19T00:00:00",
"2002-08-20T00:00:00",
"2002-08-21T00:00:00",
"2002-08-22T00:00:00",
"2002-08-23T00:00:00",
"2002-08-24T00:00:00",
"2002-08-25T00:00:00",
"2002-08-26T00:00:00",
"2002-08-27T00:00:00",
"2002-08-28T00:00:00",
"2002-08-29T00:00:00",
"2002-08-30T00:00:00",
"2002-08-31T00:00:00",
"2002-09-01T00:00:00",
"2002-09-02T00:00:00",
"2002-09-03T00:00:00",
"2002-09-04T00:00:00",
"2002-09-05T00:00:00",
"2002-09-06T00:00:00",
"2002-09-07T00:00:00",
"2002-09-08T00:00:00",
"2002-09-09T00:00:00",
"2002-09-10T00:00:00",
"2002-09-11T00:00:00",
"2002-09-12T00:00:00",
"2002-09-13T00:00:00",
"2002-09-14T00:00:00",
"2002-09-15T00:00:00",
"2002-09-16T00:00:00",
"2002-09-17T00:00:00",
"2002-09-18T00:00:00",
"2002-09-19T00:00:00",
"2002-09-20T00:00:00",
"2002-09-21T00:00:00",
"2002-09-22T00:00:00",
"2002-09-23T00:00:00",
"2002-09-24T00:00:00",
"2002-09-25T00:00:00",
"2002-09-26T00:00:00"
],
"xaxis": "x",
"y": [
-0.8213421521862966,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.4987581072394838,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.6536037884077466,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
1.9074506790273171,
2.0344063950162528,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.1647353244698238,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.55354357363995,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
2.912337336209724,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149,
3.578111276399149
],
"yaxis": "y"
},
{
"hovertemplate": "variable=B<br>index=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "B",
"line": {
"color": "#EF553B",
"dash": "solid"
},
"mode": "lines",
"name": "B",
"showlegend": true,
"type": "scattergl",
"x": [
"2000-01-01T00:00:00",
"2000-01-02T00:00:00",
"2000-01-03T00:00:00",
"2000-01-04T00:00:00",
"2000-01-05T00:00:00",
"2000-01-06T00:00:00",
"2000-01-07T00:00:00",
"2000-01-08T00:00:00",
"2000-01-09T00:00:00",
"2000-01-10T00:00:00",
"2000-01-11T00:00:00",
"2000-01-12T00:00:00",
"2000-01-13T00:00:00",
"2000-01-14T00:00:00",
"2000-01-15T00:00:00",
"2000-01-16T00:00:00",
"2000-01-17T00:00:00",
"2000-01-18T00:00:00",
"2000-01-19T00:00:00",
"2000-01-20T00:00:00",
"2000-01-21T00:00:00",
"2000-01-22T00:00:00",
"2000-01-23T00:00:00",
"2000-01-24T00:00:00",
"2000-01-25T00:00:00",
"2000-01-26T00:00:00",
"2000-01-27T00:00:00",
"2000-01-28T00:00:00",
"2000-01-29T00:00:00",
"2000-01-30T00:00:00",
"2000-01-31T00:00:00",
"2000-02-01T00:00:00",
"2000-02-02T00:00:00",
"2000-02-03T00:00:00",
"2000-02-04T00:00:00",
"2000-02-05T00:00:00",
"2000-02-06T00:00:00",
"2000-02-07T00:00:00",
"2000-02-08T00:00:00",
"2000-02-09T00:00:00",
"2000-02-10T00:00:00",
"2000-02-11T00:00:00",
"2000-02-12T00:00:00",
"2000-02-13T00:00:00",
"2000-02-14T00:00:00",
"2000-02-15T00:00:00",
"2000-02-16T00:00:00",
"2000-02-17T00:00:00",
"2000-02-18T00:00:00",
"2000-02-19T00:00:00",
"2000-02-20T00:00:00",
"2000-02-21T00:00:00",
"2000-02-22T00:00:00",
"2000-02-23T00:00:00",
"2000-02-24T00:00:00",
"2000-02-25T00:00:00",
"2000-02-26T00:00:00",
"2000-02-27T00:00:00",
"2000-02-28T00:00:00",
"2000-02-29T00:00:00",
"2000-03-01T00:00:00",
"2000-03-02T00:00:00",
"2000-03-03T00:00:00",
"2000-03-04T00:00:00",
"2000-03-05T00:00:00",
"2000-03-06T00:00:00",
"2000-03-07T00:00:00",
"2000-03-08T00:00:00",
"2000-03-09T00:00:00",
"2000-03-10T00:00:00",
"2000-03-11T00:00:00",
"2000-03-12T00:00:00",
"2000-03-13T00:00:00",
"2000-03-14T00:00:00",
"2000-03-15T00:00:00",
"2000-03-16T00:00:00",
"2000-03-17T00:00:00",
"2000-03-18T00:00:00",
"2000-03-19T00:00:00",
"2000-03-20T00:00:00",
"2000-03-21T00:00:00",
"2000-03-22T00:00:00",
"2000-03-23T00:00:00",
"2000-03-24T00:00:00",
"2000-03-25T00:00:00",
"2000-03-26T00:00:00",
"2000-03-27T00:00:00",
"2000-03-28T00:00:00",
"2000-03-29T00:00:00",
"2000-03-30T00:00:00",
"2000-03-31T00:00:00",
"2000-04-01T00:00:00",
"2000-04-02T00:00:00",
"2000-04-03T00:00:00",
"2000-04-04T00:00:00",
"2000-04-05T00:00:00",
"2000-04-06T00:00:00",
"2000-04-07T00:00:00",
"2000-04-08T00:00:00",
"2000-04-09T00:00:00",
"2000-04-10T00:00:00",
"2000-04-11T00:00:00",
"2000-04-12T00:00:00",
"2000-04-13T00:00:00",
"2000-04-14T00:00:00",
"2000-04-15T00:00:00",
"2000-04-16T00:00:00",
"2000-04-17T00:00:00",
"2000-04-18T00:00:00",
"2000-04-19T00:00:00",
"2000-04-20T00:00:00",
"2000-04-21T00:00:00",
"2000-04-22T00:00:00",
"2000-04-23T00:00:00",
"2000-04-24T00:00:00",
"2000-04-25T00:00:00",
"2000-04-26T00:00:00",
"2000-04-27T00:00:00",
"2000-04-28T00:00:00",
"2000-04-29T00:00:00",
"2000-04-30T00:00:00",
"2000-05-01T00:00:00",
"2000-05-02T00:00:00",
"2000-05-03T00:00:00",
"2000-05-04T00:00:00",
"2000-05-05T00:00:00",
"2000-05-06T00:00:00",
"2000-05-07T00:00:00",
"2000-05-08T00:00:00",
"2000-05-09T00:00:00",
"2000-05-10T00:00:00",
"2000-05-11T00:00:00",
"2000-05-12T00:00:00",
"2000-05-13T00:00:00",
"2000-05-14T00:00:00",
"2000-05-15T00:00:00",
"2000-05-16T00:00:00",
"2000-05-17T00:00:00",
"2000-05-18T00:00:00",
"2000-05-19T00:00:00",
"2000-05-20T00:00:00",
"2000-05-21T00:00:00",
"2000-05-22T00:00:00",
"2000-05-23T00:00:00",
"2000-05-24T00:00:00",
"2000-05-25T00:00:00",
"2000-05-26T00:00:00",
"2000-05-27T00:00:00",
"2000-05-28T00:00:00",
"2000-05-29T00:00:00",
"2000-05-30T00:00:00",
"2000-05-31T00:00:00",
"2000-06-01T00:00:00",
"2000-06-02T00:00:00",
"2000-06-03T00:00:00",
"2000-06-04T00:00:00",
"2000-06-05T00:00:00",
"2000-06-06T00:00:00",
"2000-06-07T00:00:00",
"2000-06-08T00:00:00",
"2000-06-09T00:00:00",
"2000-06-10T00:00:00",
"2000-06-11T00:00:00",
"2000-06-12T00:00:00",
"2000-06-13T00:00:00",
"2000-06-14T00:00:00",
"2000-06-15T00:00:00",
"2000-06-16T00:00:00",
"2000-06-17T00:00:00",
"2000-06-18T00:00:00",
"2000-06-19T00:00:00",
"2000-06-20T00:00:00",
"2000-06-21T00:00:00",
"2000-06-22T00:00:00",
"2000-06-23T00:00:00",
"2000-06-24T00:00:00",
"2000-06-25T00:00:00",
"2000-06-26T00:00:00",
"2000-06-27T00:00:00",
"2000-06-28T00:00:00",
"2000-06-29T00:00:00",
"2000-06-30T00:00:00",
"2000-07-01T00:00:00",
"2000-07-02T00:00:00",
"2000-07-03T00:00:00",
"2000-07-04T00:00:00",
"2000-07-05T00:00:00",
"2000-07-06T00:00:00",
"2000-07-07T00:00:00",
"2000-07-08T00:00:00",
"2000-07-09T00:00:00",
"2000-07-10T00:00:00",
"2000-07-11T00:00:00",
"2000-07-12T00:00:00",
"2000-07-13T00:00:00",
"2000-07-14T00:00:00",
"2000-07-15T00:00:00",
"2000-07-16T00:00:00",
"2000-07-17T00:00:00",
"2000-07-18T00:00:00",
"2000-07-19T00:00:00",
"2000-07-20T00:00:00",
"2000-07-21T00:00:00",
"2000-07-22T00:00:00",
"2000-07-23T00:00:00",
"2000-07-24T00:00:00",
"2000-07-25T00:00:00",
"2000-07-26T00:00:00",
"2000-07-27T00:00:00",
"2000-07-28T00:00:00",
"2000-07-29T00:00:00",
"2000-07-30T00:00:00",
"2000-07-31T00:00:00",
"2000-08-01T00:00:00",
"2000-08-02T00:00:00",
"2000-08-03T00:00:00",
"2000-08-04T00:00:00",
"2000-08-05T00:00:00",
"2000-08-06T00:00:00",
"2000-08-07T00:00:00",
"2000-08-08T00:00:00",
"2000-08-09T00:00:00",
"2000-08-10T00:00:00",
"2000-08-11T00:00:00",
"2000-08-12T00:00:00",
"2000-08-13T00:00:00",
"2000-08-14T00:00:00",
"2000-08-15T00:00:00",
"2000-08-16T00:00:00",
"2000-08-17T00:00:00",
"2000-08-18T00:00:00",
"2000-08-19T00:00:00",
"2000-08-20T00:00:00",
"2000-08-21T00:00:00",
"2000-08-22T00:00:00",
"2000-08-23T00:00:00",
"2000-08-24T00:00:00",
"2000-08-25T00:00:00",
"2000-08-26T00:00:00",
"2000-08-27T00:00:00",
"2000-08-28T00:00:00",
"2000-08-29T00:00:00",
"2000-08-30T00:00:00",
"2000-08-31T00:00:00",
"2000-09-01T00:00:00",
"2000-09-02T00:00:00",
"2000-09-03T00:00:00",
"2000-09-04T00:00:00",
"2000-09-05T00:00:00",
"2000-09-06T00:00:00",
"2000-09-07T00:00:00",
"2000-09-08T00:00:00",
"2000-09-09T00:00:00",
"2000-09-10T00:00:00",
"2000-09-11T00:00:00",
"2000-09-12T00:00:00",
"2000-09-13T00:00:00",
"2000-09-14T00:00:00",
"2000-09-15T00:00:00",
"2000-09-16T00:00:00",
"2000-09-17T00:00:00",
"2000-09-18T00:00:00",
"2000-09-19T00:00:00",
"2000-09-20T00:00:00",
"2000-09-21T00:00:00",
"2000-09-22T00:00:00",
"2000-09-23T00:00:00",
"2000-09-24T00:00:00",
"2000-09-25T00:00:00",
"2000-09-26T00:00:00",
"2000-09-27T00:00:00",
"2000-09-28T00:00:00",
"2000-09-29T00:00:00",
"2000-09-30T00:00:00",
"2000-10-01T00:00:00",
"2000-10-02T00:00:00",
"2000-10-03T00:00:00",
"2000-10-04T00:00:00",
"2000-10-05T00:00:00",
"2000-10-06T00:00:00",
"2000-10-07T00:00:00",
"2000-10-08T00:00:00",
"2000-10-09T00:00:00",
"2000-10-10T00:00:00",
"2000-10-11T00:00:00",
"2000-10-12T00:00:00",
"2000-10-13T00:00:00",
"2000-10-14T00:00:00",
"2000-10-15T00:00:00",
"2000-10-16T00:00:00",
"2000-10-17T00:00:00",
"2000-10-18T00:00:00",
"2000-10-19T00:00:00",
"2000-10-20T00:00:00",
"2000-10-21T00:00:00",
"2000-10-22T00:00:00",
"2000-10-23T00:00:00",
"2000-10-24T00:00:00",
"2000-10-25T00:00:00",
"2000-10-26T00:00:00",
"2000-10-27T00:00:00",
"2000-10-28T00:00:00",
"2000-10-29T00:00:00",
"2000-10-30T00:00:00",
"2000-10-31T00:00:00",
"2000-11-01T00:00:00",
"2000-11-02T00:00:00",
"2000-11-03T00:00:00",
"2000-11-04T00:00:00",
"2000-11-05T00:00:00",
"2000-11-06T00:00:00",
"2000-11-07T00:00:00",
"2000-11-08T00:00:00",
"2000-11-09T00:00:00",
"2000-11-10T00:00:00",
"2000-11-11T00:00:00",
"2000-11-12T00:00:00",
"2000-11-13T00:00:00",
"2000-11-14T00:00:00",
"2000-11-15T00:00:00",
"2000-11-16T00:00:00",
"2000-11-17T00:00:00",
"2000-11-18T00:00:00",
"2000-11-19T00:00:00",
"2000-11-20T00:00:00",
"2000-11-21T00:00:00",
"2000-11-22T00:00:00",
"2000-11-23T00:00:00",
"2000-11-24T00:00:00",
"2000-11-25T00:00:00",
"2000-11-26T00:00:00",
"2000-11-27T00:00:00",
"2000-11-28T00:00:00",
"2000-11-29T00:00:00",
"2000-11-30T00:00:00",
"2000-12-01T00:00:00",
"2000-12-02T00:00:00",
"2000-12-03T00:00:00",
"2000-12-04T00:00:00",
"2000-12-05T00:00:00",
"2000-12-06T00:00:00",
"2000-12-07T00:00:00",
"2000-12-08T00:00:00",
"2000-12-09T00:00:00",
"2000-12-10T00:00:00",
"2000-12-11T00:00:00",
"2000-12-12T00:00:00",
"2000-12-13T00:00:00",
"2000-12-14T00:00:00",
"2000-12-15T00:00:00",
"2000-12-16T00:00:00",
"2000-12-17T00:00:00",
"2000-12-18T00:00:00",
"2000-12-19T00:00:00",
"2000-12-20T00:00:00",
"2000-12-21T00:00:00",
"2000-12-22T00:00:00",
"2000-12-23T00:00:00",
"2000-12-24T00:00:00",
"2000-12-25T00:00:00",
"2000-12-26T00:00:00",
"2000-12-27T00:00:00",
"2000-12-28T00:00:00",
"2000-12-29T00:00:00",
"2000-12-30T00:00:00",
"2000-12-31T00:00:00",
"2001-01-01T00:00:00",
"2001-01-02T00:00:00",
"2001-01-03T00:00:00",
"2001-01-04T00:00:00",
"2001-01-05T00:00:00",
"2001-01-06T00:00:00",
"2001-01-07T00:00:00",
"2001-01-08T00:00:00",
"2001-01-09T00:00:00",
"2001-01-10T00:00:00",
"2001-01-11T00:00:00",
"2001-01-12T00:00:00",
"2001-01-13T00:00:00",
"2001-01-14T00:00:00",
"2001-01-15T00:00:00",
"2001-01-16T00:00:00",
"2001-01-17T00:00:00",
"2001-01-18T00:00:00",
"2001-01-19T00:00:00",
"2001-01-20T00:00:00",
"2001-01-21T00:00:00",
"2001-01-22T00:00:00",
"2001-01-23T00:00:00",
"2001-01-24T00:00:00",
"2001-01-25T00:00:00",
"2001-01-26T00:00:00",
"2001-01-27T00:00:00",
"2001-01-28T00:00:00",
"2001-01-29T00:00:00",
"2001-01-30T00:00:00",
"2001-01-31T00:00:00",
"2001-02-01T00:00:00",
"2001-02-02T00:00:00",
"2001-02-03T00:00:00",
"2001-02-04T00:00:00",
"2001-02-05T00:00:00",
"2001-02-06T00:00:00",
"2001-02-07T00:00:00",
"2001-02-08T00:00:00",
"2001-02-09T00:00:00",
"2001-02-10T00:00:00",
"2001-02-11T00:00:00",
"2001-02-12T00:00:00",
"2001-02-13T00:00:00",
"2001-02-14T00:00:00",
"2001-02-15T00:00:00",
"2001-02-16T00:00:00",
"2001-02-17T00:00:00",
"2001-02-18T00:00:00",
"2001-02-19T00:00:00",
"2001-02-20T00:00:00",
"2001-02-21T00:00:00",
"2001-02-22T00:00:00",
"2001-02-23T00:00:00",
"2001-02-24T00:00:00",
"2001-02-25T00:00:00",
"2001-02-26T00:00:00",
"2001-02-27T00:00:00",
"2001-02-28T00:00:00",
"2001-03-01T00:00:00",
"2001-03-02T00:00:00",
"2001-03-03T00:00:00",
"2001-03-04T00:00:00",
"2001-03-05T00:00:00",
"2001-03-06T00:00:00",
"2001-03-07T00:00:00",
"2001-03-08T00:00:00",
"2001-03-09T00:00:00",
"2001-03-10T00:00:00",
"2001-03-11T00:00:00",
"2001-03-12T00:00:00",
"2001-03-13T00:00:00",
"2001-03-14T00:00:00",
"2001-03-15T00:00:00",
"2001-03-16T00:00:00",
"2001-03-17T00:00:00",
"2001-03-18T00:00:00",
"2001-03-19T00:00:00",
"2001-03-20T00:00:00",
"2001-03-21T00:00:00",
"2001-03-22T00:00:00",
"2001-03-23T00:00:00",
"2001-03-24T00:00:00",
"2001-03-25T00:00:00",
"2001-03-26T00:00:00",
"2001-03-27T00:00:00",
"2001-03-28T00:00:00",
"2001-03-29T00:00:00",
"2001-03-30T00:00:00",
"2001-03-31T00:00:00",
"2001-04-01T00:00:00",
"2001-04-02T00:00:00",
"2001-04-03T00:00:00",
"2001-04-04T00:00:00",
"2001-04-05T00:00:00",
"2001-04-06T00:00:00",
"2001-04-07T00:00:00",
"2001-04-08T00:00:00",
"2001-04-09T00:00:00",
"2001-04-10T00:00:00",
"2001-04-11T00:00:00",
"2001-04-12T00:00:00",
"2001-04-13T00:00:00",
"2001-04-14T00:00:00",
"2001-04-15T00:00:00",
"2001-04-16T00:00:00",
"2001-04-17T00:00:00",
"2001-04-18T00:00:00",
"2001-04-19T00:00:00",
"2001-04-20T00:00:00",
"2001-04-21T00:00:00",
"2001-04-22T00:00:00",
"2001-04-23T00:00:00",
"2001-04-24T00:00:00",
"2001-04-25T00:00:00",
"2001-04-26T00:00:00",
"2001-04-27T00:00:00",
"2001-04-28T00:00:00",
"2001-04-29T00:00:00",
"2001-04-30T00:00:00",
"2001-05-01T00:00:00",
"2001-05-02T00:00:00",
"2001-05-03T00:00:00",
"2001-05-04T00:00:00",
"2001-05-05T00:00:00",
"2001-05-06T00:00:00",
"2001-05-07T00:00:00",
"2001-05-08T00:00:00",
"2001-05-09T00:00:00",
"2001-05-10T00:00:00",
"2001-05-11T00:00:00",
"2001-05-12T00:00:00",
"2001-05-13T00:00:00",
"2001-05-14T00:00:00",
"2001-05-15T00:00:00",
"2001-05-16T00:00:00",
"2001-05-17T00:00:00",
"2001-05-18T00:00:00",
"2001-05-19T00:00:00",
"2001-05-20T00:00:00",
"2001-05-21T00:00:00",
"2001-05-22T00:00:00",
"2001-05-23T00:00:00",
"2001-05-24T00:00:00",
"2001-05-25T00:00:00",
"2001-05-26T00:00:00",
"2001-05-27T00:00:00",
"2001-05-28T00:00:00",
"2001-05-29T00:00:00",
"2001-05-30T00:00:00",
"2001-05-31T00:00:00",
"2001-06-01T00:00:00",
"2001-06-02T00:00:00",
"2001-06-03T00:00:00",
"2001-06-04T00:00:00",
"2001-06-05T00:00:00",
"2001-06-06T00:00:00",
"2001-06-07T00:00:00",
"2001-06-08T00:00:00",
"2001-06-09T00:00:00",
"2001-06-10T00:00:00",
"2001-06-11T00:00:00",
"2001-06-12T00:00:00",
"2001-06-13T00:00:00",
"2001-06-14T00:00:00",
"2001-06-15T00:00:00",
"2001-06-16T00:00:00",
"2001-06-17T00:00:00",
"2001-06-18T00:00:00",
"2001-06-19T00:00:00",
"2001-06-20T00:00:00",
"2001-06-21T00:00:00",
"2001-06-22T00:00:00",
"2001-06-23T00:00:00",
"2001-06-24T00:00:00",
"2001-06-25T00:00:00",
"2001-06-26T00:00:00",
"2001-06-27T00:00:00",
"2001-06-28T00:00:00",
"2001-06-29T00:00:00",
"2001-06-30T00:00:00",
"2001-07-01T00:00:00",
"2001-07-02T00:00:00",
"2001-07-03T00:00:00",
"2001-07-04T00:00:00",
"2001-07-05T00:00:00",
"2001-07-06T00:00:00",
"2001-07-07T00:00:00",
"2001-07-08T00:00:00",
"2001-07-09T00:00:00",
"2001-07-10T00:00:00",
"2001-07-11T00:00:00",
"2001-07-12T00:00:00",
"2001-07-13T00:00:00",
"2001-07-14T00:00:00",
"2001-07-15T00:00:00",
"2001-07-16T00:00:00",
"2001-07-17T00:00:00",
"2001-07-18T00:00:00",
"2001-07-19T00:00:00",
"2001-07-20T00:00:00",
"2001-07-21T00:00:00",
"2001-07-22T00:00:00",
"2001-07-23T00:00:00",
"2001-07-24T00:00:00",
"2001-07-25T00:00:00",
"2001-07-26T00:00:00",
"2001-07-27T00:00:00",
"2001-07-28T00:00:00",
"2001-07-29T00:00:00",
"2001-07-30T00:00:00",
"2001-07-31T00:00:00",
"2001-08-01T00:00:00",
"2001-08-02T00:00:00",
"2001-08-03T00:00:00",
"2001-08-04T00:00:00",
"2001-08-05T00:00:00",
"2001-08-06T00:00:00",
"2001-08-07T00:00:00",
"2001-08-08T00:00:00",
"2001-08-09T00:00:00",
"2001-08-10T00:00:00",
"2001-08-11T00:00:00",
"2001-08-12T00:00:00",
"2001-08-13T00:00:00",
"2001-08-14T00:00:00",
"2001-08-15T00:00:00",
"2001-08-16T00:00:00",
"2001-08-17T00:00:00",
"2001-08-18T00:00:00",
"2001-08-19T00:00:00",
"2001-08-20T00:00:00",
"2001-08-21T00:00:00",
"2001-08-22T00:00:00",
"2001-08-23T00:00:00",
"2001-08-24T00:00:00",
"2001-08-25T00:00:00",
"2001-08-26T00:00:00",
"2001-08-27T00:00:00",
"2001-08-28T00:00:00",
"2001-08-29T00:00:00",
"2001-08-30T00:00:00",
"2001-08-31T00:00:00",
"2001-09-01T00:00:00",
"2001-09-02T00:00:00",
"2001-09-03T00:00:00",
"2001-09-04T00:00:00",
"2001-09-05T00:00:00",
"2001-09-06T00:00:00",
"2001-09-07T00:00:00",
"2001-09-08T00:00:00",
"2001-09-09T00:00:00",
"2001-09-10T00:00:00",
"2001-09-11T00:00:00",
"2001-09-12T00:00:00",
"2001-09-13T00:00:00",
"2001-09-14T00:00:00",
"2001-09-15T00:00:00",
"2001-09-16T00:00:00",
"2001-09-17T00:00:00",
"2001-09-18T00:00:00",
"2001-09-19T00:00:00",
"2001-09-20T00:00:00",
"2001-09-21T00:00:00",
"2001-09-22T00:00:00",
"2001-09-23T00:00:00",
"2001-09-24T00:00:00",
"2001-09-25T00:00:00",
"2001-09-26T00:00:00",
"2001-09-27T00:00:00",
"2001-09-28T00:00:00",
"2001-09-29T00:00:00",
"2001-09-30T00:00:00",
"2001-10-01T00:00:00",
"2001-10-02T00:00:00",
"2001-10-03T00:00:00",
"2001-10-04T00:00:00",
"2001-10-05T00:00:00",
"2001-10-06T00:00:00",
"2001-10-07T00:00:00",
"2001-10-08T00:00:00",
"2001-10-09T00:00:00",
"2001-10-10T00:00:00",
"2001-10-11T00:00:00",
"2001-10-12T00:00:00",
"2001-10-13T00:00:00",
"2001-10-14T00:00:00",
"2001-10-15T00:00:00",
"2001-10-16T00:00:00",
"2001-10-17T00:00:00",
"2001-10-18T00:00:00",
"2001-10-19T00:00:00",
"2001-10-20T00:00:00",
"2001-10-21T00:00:00",
"2001-10-22T00:00:00",
"2001-10-23T00:00:00",
"2001-10-24T00:00:00",
"2001-10-25T00:00:00",
"2001-10-26T00:00:00",
"2001-10-27T00:00:00",
"2001-10-28T00:00:00",
"2001-10-29T00:00:00",
"2001-10-30T00:00:00",
"2001-10-31T00:00:00",
"2001-11-01T00:00:00",
"2001-11-02T00:00:00",
"2001-11-03T00:00:00",
"2001-11-04T00:00:00",
"2001-11-05T00:00:00",
"2001-11-06T00:00:00",
"2001-11-07T00:00:00",
"2001-11-08T00:00:00",
"2001-11-09T00:00:00",
"2001-11-10T00:00:00",
"2001-11-11T00:00:00",
"2001-11-12T00:00:00",
"2001-11-13T00:00:00",
"2001-11-14T00:00:00",
"2001-11-15T00:00:00",
"2001-11-16T00:00:00",
"2001-11-17T00:00:00",
"2001-11-18T00:00:00",
"2001-11-19T00:00:00",
"2001-11-20T00:00:00",
"2001-11-21T00:00:00",
"2001-11-22T00:00:00",
"2001-11-23T00:00:00",
"2001-11-24T00:00:00",
"2001-11-25T00:00:00",
"2001-11-26T00:00:00",
"2001-11-27T00:00:00",
"2001-11-28T00:00:00",
"2001-11-29T00:00:00",
"2001-11-30T00:00:00",
"2001-12-01T00:00:00",
"2001-12-02T00:00:00",
"2001-12-03T00:00:00",
"2001-12-04T00:00:00",
"2001-12-05T00:00:00",
"2001-12-06T00:00:00",
"2001-12-07T00:00:00",
"2001-12-08T00:00:00",
"2001-12-09T00:00:00",
"2001-12-10T00:00:00",
"2001-12-11T00:00:00",
"2001-12-12T00:00:00",
"2001-12-13T00:00:00",
"2001-12-14T00:00:00",
"2001-12-15T00:00:00",
"2001-12-16T00:00:00",
"2001-12-17T00:00:00",
"2001-12-18T00:00:00",
"2001-12-19T00:00:00",
"2001-12-20T00:00:00",
"2001-12-21T00:00:00",
"2001-12-22T00:00:00",
"2001-12-23T00:00:00",
"2001-12-24T00:00:00",
"2001-12-25T00:00:00",
"2001-12-26T00:00:00",
"2001-12-27T00:00:00",
"2001-12-28T00:00:00",
"2001-12-29T00:00:00",
"2001-12-30T00:00:00",
"2001-12-31T00:00:00",
"2002-01-01T00:00:00",
"2002-01-02T00:00:00",
"2002-01-03T00:00:00",
"2002-01-04T00:00:00",
"2002-01-05T00:00:00",
"2002-01-06T00:00:00",
"2002-01-07T00:00:00",
"2002-01-08T00:00:00",
"2002-01-09T00:00:00",
"2002-01-10T00:00:00",
"2002-01-11T00:00:00",
"2002-01-12T00:00:00",
"2002-01-13T00:00:00",
"2002-01-14T00:00:00",
"2002-01-15T00:00:00",
"2002-01-16T00:00:00",
"2002-01-17T00:00:00",
"2002-01-18T00:00:00",
"2002-01-19T00:00:00",
"2002-01-20T00:00:00",
"2002-01-21T00:00:00",
"2002-01-22T00:00:00",
"2002-01-23T00:00:00",
"2002-01-24T00:00:00",
"2002-01-25T00:00:00",
"2002-01-26T00:00:00",
"2002-01-27T00:00:00",
"2002-01-28T00:00:00",
"2002-01-29T00:00:00",
"2002-01-30T00:00:00",
"2002-01-31T00:00:00",
"2002-02-01T00:00:00",
"2002-02-02T00:00:00",
"2002-02-03T00:00:00",
"2002-02-04T00:00:00",
"2002-02-05T00:00:00",
"2002-02-06T00:00:00",
"2002-02-07T00:00:00",
"2002-02-08T00:00:00",
"2002-02-09T00:00:00",
"2002-02-10T00:00:00",
"2002-02-11T00:00:00",
"2002-02-12T00:00:00",
"2002-02-13T00:00:00",
"2002-02-14T00:00:00",
"2002-02-15T00:00:00",
"2002-02-16T00:00:00",
"2002-02-17T00:00:00",
"2002-02-18T00:00:00",
"2002-02-19T00:00:00",
"2002-02-20T00:00:00",
"2002-02-21T00:00:00",
"2002-02-22T00:00:00",
"2002-02-23T00:00:00",
"2002-02-24T00:00:00",
"2002-02-25T00:00:00",
"2002-02-26T00:00:00",
"2002-02-27T00:00:00",
"2002-02-28T00:00:00",
"2002-03-01T00:00:00",
"2002-03-02T00:00:00",
"2002-03-03T00:00:00",
"2002-03-04T00:00:00",
"2002-03-05T00:00:00",
"2002-03-06T00:00:00",
"2002-03-07T00:00:00",
"2002-03-08T00:00:00",
"2002-03-09T00:00:00",
"2002-03-10T00:00:00",
"2002-03-11T00:00:00",
"2002-03-12T00:00:00",
"2002-03-13T00:00:00",
"2002-03-14T00:00:00",
"2002-03-15T00:00:00",
"2002-03-16T00:00:00",
"2002-03-17T00:00:00",
"2002-03-18T00:00:00",
"2002-03-19T00:00:00",
"2002-03-20T00:00:00",
"2002-03-21T00:00:00",
"2002-03-22T00:00:00",
"2002-03-23T00:00:00",
"2002-03-24T00:00:00",
"2002-03-25T00:00:00",
"2002-03-26T00:00:00",
"2002-03-27T00:00:00",
"2002-03-28T00:00:00",
"2002-03-29T00:00:00",
"2002-03-30T00:00:00",
"2002-03-31T00:00:00",
"2002-04-01T00:00:00",
"2002-04-02T00:00:00",
"2002-04-03T00:00:00",
"2002-04-04T00:00:00",
"2002-04-05T00:00:00",
"2002-04-06T00:00:00",
"2002-04-07T00:00:00",
"2002-04-08T00:00:00",
"2002-04-09T00:00:00",
"2002-04-10T00:00:00",
"2002-04-11T00:00:00",
"2002-04-12T00:00:00",
"2002-04-13T00:00:00",
"2002-04-14T00:00:00",
"2002-04-15T00:00:00",
"2002-04-16T00:00:00",
"2002-04-17T00:00:00",
"2002-04-18T00:00:00",
"2002-04-19T00:00:00",
"2002-04-20T00:00:00",
"2002-04-21T00:00:00",
"2002-04-22T00:00:00",
"2002-04-23T00:00:00",
"2002-04-24T00:00:00",
"2002-04-25T00:00:00",
"2002-04-26T00:00:00",
"2002-04-27T00:00:00",
"2002-04-28T00:00:00",
"2002-04-29T00:00:00",
"2002-04-30T00:00:00",
"2002-05-01T00:00:00",
"2002-05-02T00:00:00",
"2002-05-03T00:00:00",
"2002-05-04T00:00:00",
"2002-05-05T00:00:00",
"2002-05-06T00:00:00",
"2002-05-07T00:00:00",
"2002-05-08T00:00:00",
"2002-05-09T00:00:00",
"2002-05-10T00:00:00",
"2002-05-11T00:00:00",
"2002-05-12T00:00:00",
"2002-05-13T00:00:00",
"2002-05-14T00:00:00",
"2002-05-15T00:00:00",
"2002-05-16T00:00:00",
"2002-05-17T00:00:00",
"2002-05-18T00:00:00",
"2002-05-19T00:00:00",
"2002-05-20T00:00:00",
"2002-05-21T00:00:00",
"2002-05-22T00:00:00",
"2002-05-23T00:00:00",
"2002-05-24T00:00:00",
"2002-05-25T00:00:00",
"2002-05-26T00:00:00",
"2002-05-27T00:00:00",
"2002-05-28T00:00:00",
"2002-05-29T00:00:00",
"2002-05-30T00:00:00",
"2002-05-31T00:00:00",
"2002-06-01T00:00:00",
"2002-06-02T00:00:00",
"2002-06-03T00:00:00",
"2002-06-04T00:00:00",
"2002-06-05T00:00:00",
"2002-06-06T00:00:00",
"2002-06-07T00:00:00",
"2002-06-08T00:00:00",
"2002-06-09T00:00:00",
"2002-06-10T00:00:00",
"2002-06-11T00:00:00",
"2002-06-12T00:00:00",
"2002-06-13T00:00:00",
"2002-06-14T00:00:00",
"2002-06-15T00:00:00",
"2002-06-16T00:00:00",
"2002-06-17T00:00:00",
"2002-06-18T00:00:00",
"2002-06-19T00:00:00",
"2002-06-20T00:00:00",
"2002-06-21T00:00:00",
"2002-06-22T00:00:00",
"2002-06-23T00:00:00",
"2002-06-24T00:00:00",
"2002-06-25T00:00:00",
"2002-06-26T00:00:00",
"2002-06-27T00:00:00",
"2002-06-28T00:00:00",
"2002-06-29T00:00:00",
"2002-06-30T00:00:00",
"2002-07-01T00:00:00",
"2002-07-02T00:00:00",
"2002-07-03T00:00:00",
"2002-07-04T00:00:00",
"2002-07-05T00:00:00",
"2002-07-06T00:00:00",
"2002-07-07T00:00:00",
"2002-07-08T00:00:00",
"2002-07-09T00:00:00",
"2002-07-10T00:00:00",
"2002-07-11T00:00:00",
"2002-07-12T00:00:00",
"2002-07-13T00:00:00",
"2002-07-14T00:00:00",
"2002-07-15T00:00:00",
"2002-07-16T00:00:00",
"2002-07-17T00:00:00",
"2002-07-18T00:00:00",
"2002-07-19T00:00:00",
"2002-07-20T00:00:00",
"2002-07-21T00:00:00",
"2002-07-22T00:00:00",
"2002-07-23T00:00:00",
"2002-07-24T00:00:00",
"2002-07-25T00:00:00",
"2002-07-26T00:00:00",
"2002-07-27T00:00:00",
"2002-07-28T00:00:00",
"2002-07-29T00:00:00",
"2002-07-30T00:00:00",
"2002-07-31T00:00:00",
"2002-08-01T00:00:00",
"2002-08-02T00:00:00",
"2002-08-03T00:00:00",
"2002-08-04T00:00:00",
"2002-08-05T00:00:00",
"2002-08-06T00:00:00",
"2002-08-07T00:00:00",
"2002-08-08T00:00:00",
"2002-08-09T00:00:00",
"2002-08-10T00:00:00",
"2002-08-11T00:00:00",
"2002-08-12T00:00:00",
"2002-08-13T00:00:00",
"2002-08-14T00:00:00",
"2002-08-15T00:00:00",
"2002-08-16T00:00:00",
"2002-08-17T00:00:00",
"2002-08-18T00:00:00",
"2002-08-19T00:00:00",
"2002-08-20T00:00:00",
"2002-08-21T00:00:00",
"2002-08-22T00:00:00",
"2002-08-23T00:00:00",
"2002-08-24T00:00:00",
"2002-08-25T00:00:00",
"2002-08-26T00:00:00",
"2002-08-27T00:00:00",
"2002-08-28T00:00:00",
"2002-08-29T00:00:00",
"2002-08-30T00:00:00",
"2002-08-31T00:00:00",
"2002-09-01T00:00:00",
"2002-09-02T00:00:00",
"2002-09-03T00:00:00",
"2002-09-04T00:00:00",
"2002-09-05T00:00:00",
"2002-09-06T00:00:00",
"2002-09-07T00:00:00",
"2002-09-08T00:00:00",
"2002-09-09T00:00:00",
"2002-09-10T00:00:00",
"2002-09-11T00:00:00",
"2002-09-12T00:00:00",
"2002-09-13T00:00:00",
"2002-09-14T00:00:00",
"2002-09-15T00:00:00",
"2002-09-16T00:00:00",
"2002-09-17T00:00:00",
"2002-09-18T00:00:00",
"2002-09-19T00:00:00",
"2002-09-20T00:00:00",
"2002-09-21T00:00:00",
"2002-09-22T00:00:00",
"2002-09-23T00:00:00",
"2002-09-24T00:00:00",
"2002-09-25T00:00:00",
"2002-09-26T00:00:00"
],
"xaxis": "x",
"y": [
-0.3251423102053536,
0.045746875856841444,
0.045746875856841444,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.5340864224189499,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
1.8568938175436518,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.0668003308183835,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.121412154148895,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838,
2.9796651330037838
],
"yaxis": "y"
},
{
"hovertemplate": "variable=C<br>index=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "C",
"line": {
"color": "#00cc96",
"dash": "solid"
},
"mode": "lines",
"name": "C",
"showlegend": true,
"type": "scattergl",
"x": [
"2000-01-01T00:00:00",
"2000-01-02T00:00:00",
"2000-01-03T00:00:00",
"2000-01-04T00:00:00",
"2000-01-05T00:00:00",
"2000-01-06T00:00:00",
"2000-01-07T00:00:00",
"2000-01-08T00:00:00",
"2000-01-09T00:00:00",
"2000-01-10T00:00:00",
"2000-01-11T00:00:00",
"2000-01-12T00:00:00",
"2000-01-13T00:00:00",
"2000-01-14T00:00:00",
"2000-01-15T00:00:00",
"2000-01-16T00:00:00",
"2000-01-17T00:00:00",
"2000-01-18T00:00:00",
"2000-01-19T00:00:00",
"2000-01-20T00:00:00",
"2000-01-21T00:00:00",
"2000-01-22T00:00:00",
"2000-01-23T00:00:00",
"2000-01-24T00:00:00",
"2000-01-25T00:00:00",
"2000-01-26T00:00:00",
"2000-01-27T00:00:00",
"2000-01-28T00:00:00",
"2000-01-29T00:00:00",
"2000-01-30T00:00:00",
"2000-01-31T00:00:00",
"2000-02-01T00:00:00",
"2000-02-02T00:00:00",
"2000-02-03T00:00:00",
"2000-02-04T00:00:00",
"2000-02-05T00:00:00",
"2000-02-06T00:00:00",
"2000-02-07T00:00:00",
"2000-02-08T00:00:00",
"2000-02-09T00:00:00",
"2000-02-10T00:00:00",
"2000-02-11T00:00:00",
"2000-02-12T00:00:00",
"2000-02-13T00:00:00",
"2000-02-14T00:00:00",
"2000-02-15T00:00:00",
"2000-02-16T00:00:00",
"2000-02-17T00:00:00",
"2000-02-18T00:00:00",
"2000-02-19T00:00:00",
"2000-02-20T00:00:00",
"2000-02-21T00:00:00",
"2000-02-22T00:00:00",
"2000-02-23T00:00:00",
"2000-02-24T00:00:00",
"2000-02-25T00:00:00",
"2000-02-26T00:00:00",
"2000-02-27T00:00:00",
"2000-02-28T00:00:00",
"2000-02-29T00:00:00",
"2000-03-01T00:00:00",
"2000-03-02T00:00:00",
"2000-03-03T00:00:00",
"2000-03-04T00:00:00",
"2000-03-05T00:00:00",
"2000-03-06T00:00:00",
"2000-03-07T00:00:00",
"2000-03-08T00:00:00",
"2000-03-09T00:00:00",
"2000-03-10T00:00:00",
"2000-03-11T00:00:00",
"2000-03-12T00:00:00",
"2000-03-13T00:00:00",
"2000-03-14T00:00:00",
"2000-03-15T00:00:00",
"2000-03-16T00:00:00",
"2000-03-17T00:00:00",
"2000-03-18T00:00:00",
"2000-03-19T00:00:00",
"2000-03-20T00:00:00",
"2000-03-21T00:00:00",
"2000-03-22T00:00:00",
"2000-03-23T00:00:00",
"2000-03-24T00:00:00",
"2000-03-25T00:00:00",
"2000-03-26T00:00:00",
"2000-03-27T00:00:00",
"2000-03-28T00:00:00",
"2000-03-29T00:00:00",
"2000-03-30T00:00:00",
"2000-03-31T00:00:00",
"2000-04-01T00:00:00",
"2000-04-02T00:00:00",
"2000-04-03T00:00:00",
"2000-04-04T00:00:00",
"2000-04-05T00:00:00",
"2000-04-06T00:00:00",
"2000-04-07T00:00:00",
"2000-04-08T00:00:00",
"2000-04-09T00:00:00",
"2000-04-10T00:00:00",
"2000-04-11T00:00:00",
"2000-04-12T00:00:00",
"2000-04-13T00:00:00",
"2000-04-14T00:00:00",
"2000-04-15T00:00:00",
"2000-04-16T00:00:00",
"2000-04-17T00:00:00",
"2000-04-18T00:00:00",
"2000-04-19T00:00:00",
"2000-04-20T00:00:00",
"2000-04-21T00:00:00",
"2000-04-22T00:00:00",
"2000-04-23T00:00:00",
"2000-04-24T00:00:00",
"2000-04-25T00:00:00",
"2000-04-26T00:00:00",
"2000-04-27T00:00:00",
"2000-04-28T00:00:00",
"2000-04-29T00:00:00",
"2000-04-30T00:00:00",
"2000-05-01T00:00:00",
"2000-05-02T00:00:00",
"2000-05-03T00:00:00",
"2000-05-04T00:00:00",
"2000-05-05T00:00:00",
"2000-05-06T00:00:00",
"2000-05-07T00:00:00",
"2000-05-08T00:00:00",
"2000-05-09T00:00:00",
"2000-05-10T00:00:00",
"2000-05-11T00:00:00",
"2000-05-12T00:00:00",
"2000-05-13T00:00:00",
"2000-05-14T00:00:00",
"2000-05-15T00:00:00",
"2000-05-16T00:00:00",
"2000-05-17T00:00:00",
"2000-05-18T00:00:00",
"2000-05-19T00:00:00",
"2000-05-20T00:00:00",
"2000-05-21T00:00:00",
"2000-05-22T00:00:00",
"2000-05-23T00:00:00",
"2000-05-24T00:00:00",
"2000-05-25T00:00:00",
"2000-05-26T00:00:00",
"2000-05-27T00:00:00",
"2000-05-28T00:00:00",
"2000-05-29T00:00:00",
"2000-05-30T00:00:00",
"2000-05-31T00:00:00",
"2000-06-01T00:00:00",
"2000-06-02T00:00:00",
"2000-06-03T00:00:00",
"2000-06-04T00:00:00",
"2000-06-05T00:00:00",
"2000-06-06T00:00:00",
"2000-06-07T00:00:00",
"2000-06-08T00:00:00",
"2000-06-09T00:00:00",
"2000-06-10T00:00:00",
"2000-06-11T00:00:00",
"2000-06-12T00:00:00",
"2000-06-13T00:00:00",
"2000-06-14T00:00:00",
"2000-06-15T00:00:00",
"2000-06-16T00:00:00",
"2000-06-17T00:00:00",
"2000-06-18T00:00:00",
"2000-06-19T00:00:00",
"2000-06-20T00:00:00",
"2000-06-21T00:00:00",
"2000-06-22T00:00:00",
"2000-06-23T00:00:00",
"2000-06-24T00:00:00",
"2000-06-25T00:00:00",
"2000-06-26T00:00:00",
"2000-06-27T00:00:00",
"2000-06-28T00:00:00",
"2000-06-29T00:00:00",
"2000-06-30T00:00:00",
"2000-07-01T00:00:00",
"2000-07-02T00:00:00",
"2000-07-03T00:00:00",
"2000-07-04T00:00:00",
"2000-07-05T00:00:00",
"2000-07-06T00:00:00",
"2000-07-07T00:00:00",
"2000-07-08T00:00:00",
"2000-07-09T00:00:00",
"2000-07-10T00:00:00",
"2000-07-11T00:00:00",
"2000-07-12T00:00:00",
"2000-07-13T00:00:00",
"2000-07-14T00:00:00",
"2000-07-15T00:00:00",
"2000-07-16T00:00:00",
"2000-07-17T00:00:00",
"2000-07-18T00:00:00",
"2000-07-19T00:00:00",
"2000-07-20T00:00:00",
"2000-07-21T00:00:00",
"2000-07-22T00:00:00",
"2000-07-23T00:00:00",
"2000-07-24T00:00:00",
"2000-07-25T00:00:00",
"2000-07-26T00:00:00",
"2000-07-27T00:00:00",
"2000-07-28T00:00:00",
"2000-07-29T00:00:00",
"2000-07-30T00:00:00",
"2000-07-31T00:00:00",
"2000-08-01T00:00:00",
"2000-08-02T00:00:00",
"2000-08-03T00:00:00",
"2000-08-04T00:00:00",
"2000-08-05T00:00:00",
"2000-08-06T00:00:00",
"2000-08-07T00:00:00",
"2000-08-08T00:00:00",
"2000-08-09T00:00:00",
"2000-08-10T00:00:00",
"2000-08-11T00:00:00",
"2000-08-12T00:00:00",
"2000-08-13T00:00:00",
"2000-08-14T00:00:00",
"2000-08-15T00:00:00",
"2000-08-16T00:00:00",
"2000-08-17T00:00:00",
"2000-08-18T00:00:00",
"2000-08-19T00:00:00",
"2000-08-20T00:00:00",
"2000-08-21T00:00:00",
"2000-08-22T00:00:00",
"2000-08-23T00:00:00",
"2000-08-24T00:00:00",
"2000-08-25T00:00:00",
"2000-08-26T00:00:00",
"2000-08-27T00:00:00",
"2000-08-28T00:00:00",
"2000-08-29T00:00:00",
"2000-08-30T00:00:00",
"2000-08-31T00:00:00",
"2000-09-01T00:00:00",
"2000-09-02T00:00:00",
"2000-09-03T00:00:00",
"2000-09-04T00:00:00",
"2000-09-05T00:00:00",
"2000-09-06T00:00:00",
"2000-09-07T00:00:00",
"2000-09-08T00:00:00",
"2000-09-09T00:00:00",
"2000-09-10T00:00:00",
"2000-09-11T00:00:00",
"2000-09-12T00:00:00",
"2000-09-13T00:00:00",
"2000-09-14T00:00:00",
"2000-09-15T00:00:00",
"2000-09-16T00:00:00",
"2000-09-17T00:00:00",
"2000-09-18T00:00:00",
"2000-09-19T00:00:00",
"2000-09-20T00:00:00",
"2000-09-21T00:00:00",
"2000-09-22T00:00:00",
"2000-09-23T00:00:00",
"2000-09-24T00:00:00",
"2000-09-25T00:00:00",
"2000-09-26T00:00:00",
"2000-09-27T00:00:00",
"2000-09-28T00:00:00",
"2000-09-29T00:00:00",
"2000-09-30T00:00:00",
"2000-10-01T00:00:00",
"2000-10-02T00:00:00",
"2000-10-03T00:00:00",
"2000-10-04T00:00:00",
"2000-10-05T00:00:00",
"2000-10-06T00:00:00",
"2000-10-07T00:00:00",
"2000-10-08T00:00:00",
"2000-10-09T00:00:00",
"2000-10-10T00:00:00",
"2000-10-11T00:00:00",
"2000-10-12T00:00:00",
"2000-10-13T00:00:00",
"2000-10-14T00:00:00",
"2000-10-15T00:00:00",
"2000-10-16T00:00:00",
"2000-10-17T00:00:00",
"2000-10-18T00:00:00",
"2000-10-19T00:00:00",
"2000-10-20T00:00:00",
"2000-10-21T00:00:00",
"2000-10-22T00:00:00",
"2000-10-23T00:00:00",
"2000-10-24T00:00:00",
"2000-10-25T00:00:00",
"2000-10-26T00:00:00",
"2000-10-27T00:00:00",
"2000-10-28T00:00:00",
"2000-10-29T00:00:00",
"2000-10-30T00:00:00",
"2000-10-31T00:00:00",
"2000-11-01T00:00:00",
"2000-11-02T00:00:00",
"2000-11-03T00:00:00",
"2000-11-04T00:00:00",
"2000-11-05T00:00:00",
"2000-11-06T00:00:00",
"2000-11-07T00:00:00",
"2000-11-08T00:00:00",
"2000-11-09T00:00:00",
"2000-11-10T00:00:00",
"2000-11-11T00:00:00",
"2000-11-12T00:00:00",
"2000-11-13T00:00:00",
"2000-11-14T00:00:00",
"2000-11-15T00:00:00",
"2000-11-16T00:00:00",
"2000-11-17T00:00:00",
"2000-11-18T00:00:00",
"2000-11-19T00:00:00",
"2000-11-20T00:00:00",
"2000-11-21T00:00:00",
"2000-11-22T00:00:00",
"2000-11-23T00:00:00",
"2000-11-24T00:00:00",
"2000-11-25T00:00:00",
"2000-11-26T00:00:00",
"2000-11-27T00:00:00",
"2000-11-28T00:00:00",
"2000-11-29T00:00:00",
"2000-11-30T00:00:00",
"2000-12-01T00:00:00",
"2000-12-02T00:00:00",
"2000-12-03T00:00:00",
"2000-12-04T00:00:00",
"2000-12-05T00:00:00",
"2000-12-06T00:00:00",
"2000-12-07T00:00:00",
"2000-12-08T00:00:00",
"2000-12-09T00:00:00",
"2000-12-10T00:00:00",
"2000-12-11T00:00:00",
"2000-12-12T00:00:00",
"2000-12-13T00:00:00",
"2000-12-14T00:00:00",
"2000-12-15T00:00:00",
"2000-12-16T00:00:00",
"2000-12-17T00:00:00",
"2000-12-18T00:00:00",
"2000-12-19T00:00:00",
"2000-12-20T00:00:00",
"2000-12-21T00:00:00",
"2000-12-22T00:00:00",
"2000-12-23T00:00:00",
"2000-12-24T00:00:00",
"2000-12-25T00:00:00",
"2000-12-26T00:00:00",
"2000-12-27T00:00:00",
"2000-12-28T00:00:00",
"2000-12-29T00:00:00",
"2000-12-30T00:00:00",
"2000-12-31T00:00:00",
"2001-01-01T00:00:00",
"2001-01-02T00:00:00",
"2001-01-03T00:00:00",
"2001-01-04T00:00:00",
"2001-01-05T00:00:00",
"2001-01-06T00:00:00",
"2001-01-07T00:00:00",
"2001-01-08T00:00:00",
"2001-01-09T00:00:00",
"2001-01-10T00:00:00",
"2001-01-11T00:00:00",
"2001-01-12T00:00:00",
"2001-01-13T00:00:00",
"2001-01-14T00:00:00",
"2001-01-15T00:00:00",
"2001-01-16T00:00:00",
"2001-01-17T00:00:00",
"2001-01-18T00:00:00",
"2001-01-19T00:00:00",
"2001-01-20T00:00:00",
"2001-01-21T00:00:00",
"2001-01-22T00:00:00",
"2001-01-23T00:00:00",
"2001-01-24T00:00:00",
"2001-01-25T00:00:00",
"2001-01-26T00:00:00",
"2001-01-27T00:00:00",
"2001-01-28T00:00:00",
"2001-01-29T00:00:00",
"2001-01-30T00:00:00",
"2001-01-31T00:00:00",
"2001-02-01T00:00:00",
"2001-02-02T00:00:00",
"2001-02-03T00:00:00",
"2001-02-04T00:00:00",
"2001-02-05T00:00:00",
"2001-02-06T00:00:00",
"2001-02-07T00:00:00",
"2001-02-08T00:00:00",
"2001-02-09T00:00:00",
"2001-02-10T00:00:00",
"2001-02-11T00:00:00",
"2001-02-12T00:00:00",
"2001-02-13T00:00:00",
"2001-02-14T00:00:00",
"2001-02-15T00:00:00",
"2001-02-16T00:00:00",
"2001-02-17T00:00:00",
"2001-02-18T00:00:00",
"2001-02-19T00:00:00",
"2001-02-20T00:00:00",
"2001-02-21T00:00:00",
"2001-02-22T00:00:00",
"2001-02-23T00:00:00",
"2001-02-24T00:00:00",
"2001-02-25T00:00:00",
"2001-02-26T00:00:00",
"2001-02-27T00:00:00",
"2001-02-28T00:00:00",
"2001-03-01T00:00:00",
"2001-03-02T00:00:00",
"2001-03-03T00:00:00",
"2001-03-04T00:00:00",
"2001-03-05T00:00:00",
"2001-03-06T00:00:00",
"2001-03-07T00:00:00",
"2001-03-08T00:00:00",
"2001-03-09T00:00:00",
"2001-03-10T00:00:00",
"2001-03-11T00:00:00",
"2001-03-12T00:00:00",
"2001-03-13T00:00:00",
"2001-03-14T00:00:00",
"2001-03-15T00:00:00",
"2001-03-16T00:00:00",
"2001-03-17T00:00:00",
"2001-03-18T00:00:00",
"2001-03-19T00:00:00",
"2001-03-20T00:00:00",
"2001-03-21T00:00:00",
"2001-03-22T00:00:00",
"2001-03-23T00:00:00",
"2001-03-24T00:00:00",
"2001-03-25T00:00:00",
"2001-03-26T00:00:00",
"2001-03-27T00:00:00",
"2001-03-28T00:00:00",
"2001-03-29T00:00:00",
"2001-03-30T00:00:00",
"2001-03-31T00:00:00",
"2001-04-01T00:00:00",
"2001-04-02T00:00:00",
"2001-04-03T00:00:00",
"2001-04-04T00:00:00",
"2001-04-05T00:00:00",
"2001-04-06T00:00:00",
"2001-04-07T00:00:00",
"2001-04-08T00:00:00",
"2001-04-09T00:00:00",
"2001-04-10T00:00:00",
"2001-04-11T00:00:00",
"2001-04-12T00:00:00",
"2001-04-13T00:00:00",
"2001-04-14T00:00:00",
"2001-04-15T00:00:00",
"2001-04-16T00:00:00",
"2001-04-17T00:00:00",
"2001-04-18T00:00:00",
"2001-04-19T00:00:00",
"2001-04-20T00:00:00",
"2001-04-21T00:00:00",
"2001-04-22T00:00:00",
"2001-04-23T00:00:00",
"2001-04-24T00:00:00",
"2001-04-25T00:00:00",
"2001-04-26T00:00:00",
"2001-04-27T00:00:00",
"2001-04-28T00:00:00",
"2001-04-29T00:00:00",
"2001-04-30T00:00:00",
"2001-05-01T00:00:00",
"2001-05-02T00:00:00",
"2001-05-03T00:00:00",
"2001-05-04T00:00:00",
"2001-05-05T00:00:00",
"2001-05-06T00:00:00",
"2001-05-07T00:00:00",
"2001-05-08T00:00:00",
"2001-05-09T00:00:00",
"2001-05-10T00:00:00",
"2001-05-11T00:00:00",
"2001-05-12T00:00:00",
"2001-05-13T00:00:00",
"2001-05-14T00:00:00",
"2001-05-15T00:00:00",
"2001-05-16T00:00:00",
"2001-05-17T00:00:00",
"2001-05-18T00:00:00",
"2001-05-19T00:00:00",
"2001-05-20T00:00:00",
"2001-05-21T00:00:00",
"2001-05-22T00:00:00",
"2001-05-23T00:00:00",
"2001-05-24T00:00:00",
"2001-05-25T00:00:00",
"2001-05-26T00:00:00",
"2001-05-27T00:00:00",
"2001-05-28T00:00:00",
"2001-05-29T00:00:00",
"2001-05-30T00:00:00",
"2001-05-31T00:00:00",
"2001-06-01T00:00:00",
"2001-06-02T00:00:00",
"2001-06-03T00:00:00",
"2001-06-04T00:00:00",
"2001-06-05T00:00:00",
"2001-06-06T00:00:00",
"2001-06-07T00:00:00",
"2001-06-08T00:00:00",
"2001-06-09T00:00:00",
"2001-06-10T00:00:00",
"2001-06-11T00:00:00",
"2001-06-12T00:00:00",
"2001-06-13T00:00:00",
"2001-06-14T00:00:00",
"2001-06-15T00:00:00",
"2001-06-16T00:00:00",
"2001-06-17T00:00:00",
"2001-06-18T00:00:00",
"2001-06-19T00:00:00",
"2001-06-20T00:00:00",
"2001-06-21T00:00:00",
"2001-06-22T00:00:00",
"2001-06-23T00:00:00",
"2001-06-24T00:00:00",
"2001-06-25T00:00:00",
"2001-06-26T00:00:00",
"2001-06-27T00:00:00",
"2001-06-28T00:00:00",
"2001-06-29T00:00:00",
"2001-06-30T00:00:00",
"2001-07-01T00:00:00",
"2001-07-02T00:00:00",
"2001-07-03T00:00:00",
"2001-07-04T00:00:00",
"2001-07-05T00:00:00",
"2001-07-06T00:00:00",
"2001-07-07T00:00:00",
"2001-07-08T00:00:00",
"2001-07-09T00:00:00",
"2001-07-10T00:00:00",
"2001-07-11T00:00:00",
"2001-07-12T00:00:00",
"2001-07-13T00:00:00",
"2001-07-14T00:00:00",
"2001-07-15T00:00:00",
"2001-07-16T00:00:00",
"2001-07-17T00:00:00",
"2001-07-18T00:00:00",
"2001-07-19T00:00:00",
"2001-07-20T00:00:00",
"2001-07-21T00:00:00",
"2001-07-22T00:00:00",
"2001-07-23T00:00:00",
"2001-07-24T00:00:00",
"2001-07-25T00:00:00",
"2001-07-26T00:00:00",
"2001-07-27T00:00:00",
"2001-07-28T00:00:00",
"2001-07-29T00:00:00",
"2001-07-30T00:00:00",
"2001-07-31T00:00:00",
"2001-08-01T00:00:00",
"2001-08-02T00:00:00",
"2001-08-03T00:00:00",
"2001-08-04T00:00:00",
"2001-08-05T00:00:00",
"2001-08-06T00:00:00",
"2001-08-07T00:00:00",
"2001-08-08T00:00:00",
"2001-08-09T00:00:00",
"2001-08-10T00:00:00",
"2001-08-11T00:00:00",
"2001-08-12T00:00:00",
"2001-08-13T00:00:00",
"2001-08-14T00:00:00",
"2001-08-15T00:00:00",
"2001-08-16T00:00:00",
"2001-08-17T00:00:00",
"2001-08-18T00:00:00",
"2001-08-19T00:00:00",
"2001-08-20T00:00:00",
"2001-08-21T00:00:00",
"2001-08-22T00:00:00",
"2001-08-23T00:00:00",
"2001-08-24T00:00:00",
"2001-08-25T00:00:00",
"2001-08-26T00:00:00",
"2001-08-27T00:00:00",
"2001-08-28T00:00:00",
"2001-08-29T00:00:00",
"2001-08-30T00:00:00",
"2001-08-31T00:00:00",
"2001-09-01T00:00:00",
"2001-09-02T00:00:00",
"2001-09-03T00:00:00",
"2001-09-04T00:00:00",
"2001-09-05T00:00:00",
"2001-09-06T00:00:00",
"2001-09-07T00:00:00",
"2001-09-08T00:00:00",
"2001-09-09T00:00:00",
"2001-09-10T00:00:00",
"2001-09-11T00:00:00",
"2001-09-12T00:00:00",
"2001-09-13T00:00:00",
"2001-09-14T00:00:00",
"2001-09-15T00:00:00",
"2001-09-16T00:00:00",
"2001-09-17T00:00:00",
"2001-09-18T00:00:00",
"2001-09-19T00:00:00",
"2001-09-20T00:00:00",
"2001-09-21T00:00:00",
"2001-09-22T00:00:00",
"2001-09-23T00:00:00",
"2001-09-24T00:00:00",
"2001-09-25T00:00:00",
"2001-09-26T00:00:00",
"2001-09-27T00:00:00",
"2001-09-28T00:00:00",
"2001-09-29T00:00:00",
"2001-09-30T00:00:00",
"2001-10-01T00:00:00",
"2001-10-02T00:00:00",
"2001-10-03T00:00:00",
"2001-10-04T00:00:00",
"2001-10-05T00:00:00",
"2001-10-06T00:00:00",
"2001-10-07T00:00:00",
"2001-10-08T00:00:00",
"2001-10-09T00:00:00",
"2001-10-10T00:00:00",
"2001-10-11T00:00:00",
"2001-10-12T00:00:00",
"2001-10-13T00:00:00",
"2001-10-14T00:00:00",
"2001-10-15T00:00:00",
"2001-10-16T00:00:00",
"2001-10-17T00:00:00",
"2001-10-18T00:00:00",
"2001-10-19T00:00:00",
"2001-10-20T00:00:00",
"2001-10-21T00:00:00",
"2001-10-22T00:00:00",
"2001-10-23T00:00:00",
"2001-10-24T00:00:00",
"2001-10-25T00:00:00",
"2001-10-26T00:00:00",
"2001-10-27T00:00:00",
"2001-10-28T00:00:00",
"2001-10-29T00:00:00",
"2001-10-30T00:00:00",
"2001-10-31T00:00:00",
"2001-11-01T00:00:00",
"2001-11-02T00:00:00",
"2001-11-03T00:00:00",
"2001-11-04T00:00:00",
"2001-11-05T00:00:00",
"2001-11-06T00:00:00",
"2001-11-07T00:00:00",
"2001-11-08T00:00:00",
"2001-11-09T00:00:00",
"2001-11-10T00:00:00",
"2001-11-11T00:00:00",
"2001-11-12T00:00:00",
"2001-11-13T00:00:00",
"2001-11-14T00:00:00",
"2001-11-15T00:00:00",
"2001-11-16T00:00:00",
"2001-11-17T00:00:00",
"2001-11-18T00:00:00",
"2001-11-19T00:00:00",
"2001-11-20T00:00:00",
"2001-11-21T00:00:00",
"2001-11-22T00:00:00",
"2001-11-23T00:00:00",
"2001-11-24T00:00:00",
"2001-11-25T00:00:00",
"2001-11-26T00:00:00",
"2001-11-27T00:00:00",
"2001-11-28T00:00:00",
"2001-11-29T00:00:00",
"2001-11-30T00:00:00",
"2001-12-01T00:00:00",
"2001-12-02T00:00:00",
"2001-12-03T00:00:00",
"2001-12-04T00:00:00",
"2001-12-05T00:00:00",
"2001-12-06T00:00:00",
"2001-12-07T00:00:00",
"2001-12-08T00:00:00",
"2001-12-09T00:00:00",
"2001-12-10T00:00:00",
"2001-12-11T00:00:00",
"2001-12-12T00:00:00",
"2001-12-13T00:00:00",
"2001-12-14T00:00:00",
"2001-12-15T00:00:00",
"2001-12-16T00:00:00",
"2001-12-17T00:00:00",
"2001-12-18T00:00:00",
"2001-12-19T00:00:00",
"2001-12-20T00:00:00",
"2001-12-21T00:00:00",
"2001-12-22T00:00:00",
"2001-12-23T00:00:00",
"2001-12-24T00:00:00",
"2001-12-25T00:00:00",
"2001-12-26T00:00:00",
"2001-12-27T00:00:00",
"2001-12-28T00:00:00",
"2001-12-29T00:00:00",
"2001-12-30T00:00:00",
"2001-12-31T00:00:00",
"2002-01-01T00:00:00",
"2002-01-02T00:00:00",
"2002-01-03T00:00:00",
"2002-01-04T00:00:00",
"2002-01-05T00:00:00",
"2002-01-06T00:00:00",
"2002-01-07T00:00:00",
"2002-01-08T00:00:00",
"2002-01-09T00:00:00",
"2002-01-10T00:00:00",
"2002-01-11T00:00:00",
"2002-01-12T00:00:00",
"2002-01-13T00:00:00",
"2002-01-14T00:00:00",
"2002-01-15T00:00:00",
"2002-01-16T00:00:00",
"2002-01-17T00:00:00",
"2002-01-18T00:00:00",
"2002-01-19T00:00:00",
"2002-01-20T00:00:00",
"2002-01-21T00:00:00",
"2002-01-22T00:00:00",
"2002-01-23T00:00:00",
"2002-01-24T00:00:00",
"2002-01-25T00:00:00",
"2002-01-26T00:00:00",
"2002-01-27T00:00:00",
"2002-01-28T00:00:00",
"2002-01-29T00:00:00",
"2002-01-30T00:00:00",
"2002-01-31T00:00:00",
"2002-02-01T00:00:00",
"2002-02-02T00:00:00",
"2002-02-03T00:00:00",
"2002-02-04T00:00:00",
"2002-02-05T00:00:00",
"2002-02-06T00:00:00",
"2002-02-07T00:00:00",
"2002-02-08T00:00:00",
"2002-02-09T00:00:00",
"2002-02-10T00:00:00",
"2002-02-11T00:00:00",
"2002-02-12T00:00:00",
"2002-02-13T00:00:00",
"2002-02-14T00:00:00",
"2002-02-15T00:00:00",
"2002-02-16T00:00:00",
"2002-02-17T00:00:00",
"2002-02-18T00:00:00",
"2002-02-19T00:00:00",
"2002-02-20T00:00:00",
"2002-02-21T00:00:00",
"2002-02-22T00:00:00",
"2002-02-23T00:00:00",
"2002-02-24T00:00:00",
"2002-02-25T00:00:00",
"2002-02-26T00:00:00",
"2002-02-27T00:00:00",
"2002-02-28T00:00:00",
"2002-03-01T00:00:00",
"2002-03-02T00:00:00",
"2002-03-03T00:00:00",
"2002-03-04T00:00:00",
"2002-03-05T00:00:00",
"2002-03-06T00:00:00",
"2002-03-07T00:00:00",
"2002-03-08T00:00:00",
"2002-03-09T00:00:00",
"2002-03-10T00:00:00",
"2002-03-11T00:00:00",
"2002-03-12T00:00:00",
"2002-03-13T00:00:00",
"2002-03-14T00:00:00",
"2002-03-15T00:00:00",
"2002-03-16T00:00:00",
"2002-03-17T00:00:00",
"2002-03-18T00:00:00",
"2002-03-19T00:00:00",
"2002-03-20T00:00:00",
"2002-03-21T00:00:00",
"2002-03-22T00:00:00",
"2002-03-23T00:00:00",
"2002-03-24T00:00:00",
"2002-03-25T00:00:00",
"2002-03-26T00:00:00",
"2002-03-27T00:00:00",
"2002-03-28T00:00:00",
"2002-03-29T00:00:00",
"2002-03-30T00:00:00",
"2002-03-31T00:00:00",
"2002-04-01T00:00:00",
"2002-04-02T00:00:00",
"2002-04-03T00:00:00",
"2002-04-04T00:00:00",
"2002-04-05T00:00:00",
"2002-04-06T00:00:00",
"2002-04-07T00:00:00",
"2002-04-08T00:00:00",
"2002-04-09T00:00:00",
"2002-04-10T00:00:00",
"2002-04-11T00:00:00",
"2002-04-12T00:00:00",
"2002-04-13T00:00:00",
"2002-04-14T00:00:00",
"2002-04-15T00:00:00",
"2002-04-16T00:00:00",
"2002-04-17T00:00:00",
"2002-04-18T00:00:00",
"2002-04-19T00:00:00",
"2002-04-20T00:00:00",
"2002-04-21T00:00:00",
"2002-04-22T00:00:00",
"2002-04-23T00:00:00",
"2002-04-24T00:00:00",
"2002-04-25T00:00:00",
"2002-04-26T00:00:00",
"2002-04-27T00:00:00",
"2002-04-28T00:00:00",
"2002-04-29T00:00:00",
"2002-04-30T00:00:00",
"2002-05-01T00:00:00",
"2002-05-02T00:00:00",
"2002-05-03T00:00:00",
"2002-05-04T00:00:00",
"2002-05-05T00:00:00",
"2002-05-06T00:00:00",
"2002-05-07T00:00:00",
"2002-05-08T00:00:00",
"2002-05-09T00:00:00",
"2002-05-10T00:00:00",
"2002-05-11T00:00:00",
"2002-05-12T00:00:00",
"2002-05-13T00:00:00",
"2002-05-14T00:00:00",
"2002-05-15T00:00:00",
"2002-05-16T00:00:00",
"2002-05-17T00:00:00",
"2002-05-18T00:00:00",
"2002-05-19T00:00:00",
"2002-05-20T00:00:00",
"2002-05-21T00:00:00",
"2002-05-22T00:00:00",
"2002-05-23T00:00:00",
"2002-05-24T00:00:00",
"2002-05-25T00:00:00",
"2002-05-26T00:00:00",
"2002-05-27T00:00:00",
"2002-05-28T00:00:00",
"2002-05-29T00:00:00",
"2002-05-30T00:00:00",
"2002-05-31T00:00:00",
"2002-06-01T00:00:00",
"2002-06-02T00:00:00",
"2002-06-03T00:00:00",
"2002-06-04T00:00:00",
"2002-06-05T00:00:00",
"2002-06-06T00:00:00",
"2002-06-07T00:00:00",
"2002-06-08T00:00:00",
"2002-06-09T00:00:00",
"2002-06-10T00:00:00",
"2002-06-11T00:00:00",
"2002-06-12T00:00:00",
"2002-06-13T00:00:00",
"2002-06-14T00:00:00",
"2002-06-15T00:00:00",
"2002-06-16T00:00:00",
"2002-06-17T00:00:00",
"2002-06-18T00:00:00",
"2002-06-19T00:00:00",
"2002-06-20T00:00:00",
"2002-06-21T00:00:00",
"2002-06-22T00:00:00",
"2002-06-23T00:00:00",
"2002-06-24T00:00:00",
"2002-06-25T00:00:00",
"2002-06-26T00:00:00",
"2002-06-27T00:00:00",
"2002-06-28T00:00:00",
"2002-06-29T00:00:00",
"2002-06-30T00:00:00",
"2002-07-01T00:00:00",
"2002-07-02T00:00:00",
"2002-07-03T00:00:00",
"2002-07-04T00:00:00",
"2002-07-05T00:00:00",
"2002-07-06T00:00:00",
"2002-07-07T00:00:00",
"2002-07-08T00:00:00",
"2002-07-09T00:00:00",
"2002-07-10T00:00:00",
"2002-07-11T00:00:00",
"2002-07-12T00:00:00",
"2002-07-13T00:00:00",
"2002-07-14T00:00:00",
"2002-07-15T00:00:00",
"2002-07-16T00:00:00",
"2002-07-17T00:00:00",
"2002-07-18T00:00:00",
"2002-07-19T00:00:00",
"2002-07-20T00:00:00",
"2002-07-21T00:00:00",
"2002-07-22T00:00:00",
"2002-07-23T00:00:00",
"2002-07-24T00:00:00",
"2002-07-25T00:00:00",
"2002-07-26T00:00:00",
"2002-07-27T00:00:00",
"2002-07-28T00:00:00",
"2002-07-29T00:00:00",
"2002-07-30T00:00:00",
"2002-07-31T00:00:00",
"2002-08-01T00:00:00",
"2002-08-02T00:00:00",
"2002-08-03T00:00:00",
"2002-08-04T00:00:00",
"2002-08-05T00:00:00",
"2002-08-06T00:00:00",
"2002-08-07T00:00:00",
"2002-08-08T00:00:00",
"2002-08-09T00:00:00",
"2002-08-10T00:00:00",
"2002-08-11T00:00:00",
"2002-08-12T00:00:00",
"2002-08-13T00:00:00",
"2002-08-14T00:00:00",
"2002-08-15T00:00:00",
"2002-08-16T00:00:00",
"2002-08-17T00:00:00",
"2002-08-18T00:00:00",
"2002-08-19T00:00:00",
"2002-08-20T00:00:00",
"2002-08-21T00:00:00",
"2002-08-22T00:00:00",
"2002-08-23T00:00:00",
"2002-08-24T00:00:00",
"2002-08-25T00:00:00",
"2002-08-26T00:00:00",
"2002-08-27T00:00:00",
"2002-08-28T00:00:00",
"2002-08-29T00:00:00",
"2002-08-30T00:00:00",
"2002-08-31T00:00:00",
"2002-09-01T00:00:00",
"2002-09-02T00:00:00",
"2002-09-03T00:00:00",
"2002-09-04T00:00:00",
"2002-09-05T00:00:00",
"2002-09-06T00:00:00",
"2002-09-07T00:00:00",
"2002-09-08T00:00:00",
"2002-09-09T00:00:00",
"2002-09-10T00:00:00",
"2002-09-11T00:00:00",
"2002-09-12T00:00:00",
"2002-09-13T00:00:00",
"2002-09-14T00:00:00",
"2002-09-15T00:00:00",
"2002-09-16T00:00:00",
"2002-09-17T00:00:00",
"2002-09-18T00:00:00",
"2002-09-19T00:00:00",
"2002-09-20T00:00:00",
"2002-09-21T00:00:00",
"2002-09-22T00:00:00",
"2002-09-23T00:00:00",
"2002-09-24T00:00:00",
"2002-09-25T00:00:00",
"2002-09-26T00:00:00"
],
"xaxis": "x",
"y": [
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
0.9046355118635269,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
1.8121832028719966,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
2.4438987371823817,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.14324175178651,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768,
3.168653932500768
],
"yaxis": "y"
},
{
"hovertemplate": "variable=D<br>index=%{x}<br>value=%{y}<extra></extra>",
"legendgroup": "D",
"line": {
"color": "#ab63fa",
"dash": "solid"
},
"mode": "lines",
"name": "D",
"showlegend": true,
"type": "scattergl",
"x": [
"2000-01-01T00:00:00",
"2000-01-02T00:00:00",
"2000-01-03T00:00:00",
"2000-01-04T00:00:00",
"2000-01-05T00:00:00",
"2000-01-06T00:00:00",
"2000-01-07T00:00:00",
"2000-01-08T00:00:00",
"2000-01-09T00:00:00",
"2000-01-10T00:00:00",
"2000-01-11T00:00:00",
"2000-01-12T00:00:00",
"2000-01-13T00:00:00",
"2000-01-14T00:00:00",
"2000-01-15T00:00:00",
"2000-01-16T00:00:00",
"2000-01-17T00:00:00",
"2000-01-18T00:00:00",
"2000-01-19T00:00:00",
"2000-01-20T00:00:00",
"2000-01-21T00:00:00",
"2000-01-22T00:00:00",
"2000-01-23T00:00:00",
"2000-01-24T00:00:00",
"2000-01-25T00:00:00",
"2000-01-26T00:00:00",
"2000-01-27T00:00:00",
"2000-01-28T00:00:00",
"2000-01-29T00:00:00",
"2000-01-30T00:00:00",
"2000-01-31T00:00:00",
"2000-02-01T00:00:00",
"2000-02-02T00:00:00",
"2000-02-03T00:00:00",
"2000-02-04T00:00:00",
"2000-02-05T00:00:00",
"2000-02-06T00:00:00",
"2000-02-07T00:00:00",
"2000-02-08T00:00:00",
"2000-02-09T00:00:00",
"2000-02-10T00:00:00",
"2000-02-11T00:00:00",
"2000-02-12T00:00:00",
"2000-02-13T00:00:00",
"2000-02-14T00:00:00",
"2000-02-15T00:00:00",
"2000-02-16T00:00:00",
"2000-02-17T00:00:00",
"2000-02-18T00:00:00",
"2000-02-19T00:00:00",
"2000-02-20T00:00:00",
"2000-02-21T00:00:00",
"2000-02-22T00:00:00",
"2000-02-23T00:00:00",
"2000-02-24T00:00:00",
"2000-02-25T00:00:00",
"2000-02-26T00:00:00",
"2000-02-27T00:00:00",
"2000-02-28T00:00:00",
"2000-02-29T00:00:00",
"2000-03-01T00:00:00",
"2000-03-02T00:00:00",
"2000-03-03T00:00:00",
"2000-03-04T00:00:00",
"2000-03-05T00:00:00",
"2000-03-06T00:00:00",
"2000-03-07T00:00:00",
"2000-03-08T00:00:00",
"2000-03-09T00:00:00",
"2000-03-10T00:00:00",
"2000-03-11T00:00:00",
"2000-03-12T00:00:00",
"2000-03-13T00:00:00",
"2000-03-14T00:00:00",
"2000-03-15T00:00:00",
"2000-03-16T00:00:00",
"2000-03-17T00:00:00",
"2000-03-18T00:00:00",
"2000-03-19T00:00:00",
"2000-03-20T00:00:00",
"2000-03-21T00:00:00",
"2000-03-22T00:00:00",
"2000-03-23T00:00:00",
"2000-03-24T00:00:00",
"2000-03-25T00:00:00",
"2000-03-26T00:00:00",
"2000-03-27T00:00:00",
"2000-03-28T00:00:00",
"2000-03-29T00:00:00",
"2000-03-30T00:00:00",
"2000-03-31T00:00:00",
"2000-04-01T00:00:00",
"2000-04-02T00:00:00",
"2000-04-03T00:00:00",
"2000-04-04T00:00:00",
"2000-04-05T00:00:00",
"2000-04-06T00:00:00",
"2000-04-07T00:00:00",
"2000-04-08T00:00:00",
"2000-04-09T00:00:00",
"2000-04-10T00:00:00",
"2000-04-11T00:00:00",
"2000-04-12T00:00:00",
"2000-04-13T00:00:00",
"2000-04-14T00:00:00",
"2000-04-15T00:00:00",
"2000-04-16T00:00:00",
"2000-04-17T00:00:00",
"2000-04-18T00:00:00",
"2000-04-19T00:00:00",
"2000-04-20T00:00:00",
"2000-04-21T00:00:00",
"2000-04-22T00:00:00",
"2000-04-23T00:00:00",
"2000-04-24T00:00:00",
"2000-04-25T00:00:00",
"2000-04-26T00:00:00",
"2000-04-27T00:00:00",
"2000-04-28T00:00:00",
"2000-04-29T00:00:00",
"2000-04-30T00:00:00",
"2000-05-01T00:00:00",
"2000-05-02T00:00:00",
"2000-05-03T00:00:00",
"2000-05-04T00:00:00",
"2000-05-05T00:00:00",
"2000-05-06T00:00:00",
"2000-05-07T00:00:00",
"2000-05-08T00:00:00",
"2000-05-09T00:00:00",
"2000-05-10T00:00:00",
"2000-05-11T00:00:00",
"2000-05-12T00:00:00",
"2000-05-13T00:00:00",
"2000-05-14T00:00:00",
"2000-05-15T00:00:00",
"2000-05-16T00:00:00",
"2000-05-17T00:00:00",
"2000-05-18T00:00:00",
"2000-05-19T00:00:00",
"2000-05-20T00:00:00",
"2000-05-21T00:00:00",
"2000-05-22T00:00:00",
"2000-05-23T00:00:00",
"2000-05-24T00:00:00",
"2000-05-25T00:00:00",
"2000-05-26T00:00:00",
"2000-05-27T00:00:00",
"2000-05-28T00:00:00",
"2000-05-29T00:00:00",
"2000-05-30T00:00:00",
"2000-05-31T00:00:00",
"2000-06-01T00:00:00",
"2000-06-02T00:00:00",
"2000-06-03T00:00:00",
"2000-06-04T00:00:00",
"2000-06-05T00:00:00",
"2000-06-06T00:00:00",
"2000-06-07T00:00:00",
"2000-06-08T00:00:00",
"2000-06-09T00:00:00",
"2000-06-10T00:00:00",
"2000-06-11T00:00:00",
"2000-06-12T00:00:00",
"2000-06-13T00:00:00",
"2000-06-14T00:00:00",
"2000-06-15T00:00:00",
"2000-06-16T00:00:00",
"2000-06-17T00:00:00",
"2000-06-18T00:00:00",
"2000-06-19T00:00:00",
"2000-06-20T00:00:00",
"2000-06-21T00:00:00",
"2000-06-22T00:00:00",
"2000-06-23T00:00:00",
"2000-06-24T00:00:00",
"2000-06-25T00:00:00",
"2000-06-26T00:00:00",
"2000-06-27T00:00:00",
"2000-06-28T00:00:00",
"2000-06-29T00:00:00",
"2000-06-30T00:00:00",
"2000-07-01T00:00:00",
"2000-07-02T00:00:00",
"2000-07-03T00:00:00",
"2000-07-04T00:00:00",
"2000-07-05T00:00:00",
"2000-07-06T00:00:00",
"2000-07-07T00:00:00",
"2000-07-08T00:00:00",
"2000-07-09T00:00:00",
"2000-07-10T00:00:00",
"2000-07-11T00:00:00",
"2000-07-12T00:00:00",
"2000-07-13T00:00:00",
"2000-07-14T00:00:00",
"2000-07-15T00:00:00",
"2000-07-16T00:00:00",
"2000-07-17T00:00:00",
"2000-07-18T00:00:00",
"2000-07-19T00:00:00",
"2000-07-20T00:00:00",
"2000-07-21T00:00:00",
"2000-07-22T00:00:00",
"2000-07-23T00:00:00",
"2000-07-24T00:00:00",
"2000-07-25T00:00:00",
"2000-07-26T00:00:00",
"2000-07-27T00:00:00",
"2000-07-28T00:00:00",
"2000-07-29T00:00:00",
"2000-07-30T00:00:00",
"2000-07-31T00:00:00",
"2000-08-01T00:00:00",
"2000-08-02T00:00:00",
"2000-08-03T00:00:00",
"2000-08-04T00:00:00",
"2000-08-05T00:00:00",
"2000-08-06T00:00:00",
"2000-08-07T00:00:00",
"2000-08-08T00:00:00",
"2000-08-09T00:00:00",
"2000-08-10T00:00:00",
"2000-08-11T00:00:00",
"2000-08-12T00:00:00",
"2000-08-13T00:00:00",
"2000-08-14T00:00:00",
"2000-08-15T00:00:00",
"2000-08-16T00:00:00",
"2000-08-17T00:00:00",
"2000-08-18T00:00:00",
"2000-08-19T00:00:00",
"2000-08-20T00:00:00",
"2000-08-21T00:00:00",
"2000-08-22T00:00:00",
"2000-08-23T00:00:00",
"2000-08-24T00:00:00",
"2000-08-25T00:00:00",
"2000-08-26T00:00:00",
"2000-08-27T00:00:00",
"2000-08-28T00:00:00",
"2000-08-29T00:00:00",
"2000-08-30T00:00:00",
"2000-08-31T00:00:00",
"2000-09-01T00:00:00",
"2000-09-02T00:00:00",
"2000-09-03T00:00:00",
"2000-09-04T00:00:00",
"2000-09-05T00:00:00",
"2000-09-06T00:00:00",
"2000-09-07T00:00:00",
"2000-09-08T00:00:00",
"2000-09-09T00:00:00",
"2000-09-10T00:00:00",
"2000-09-11T00:00:00",
"2000-09-12T00:00:00",
"2000-09-13T00:00:00",
"2000-09-14T00:00:00",
"2000-09-15T00:00:00",
"2000-09-16T00:00:00",
"2000-09-17T00:00:00",
"2000-09-18T00:00:00",
"2000-09-19T00:00:00",
"2000-09-20T00:00:00",
"2000-09-21T00:00:00",
"2000-09-22T00:00:00",
"2000-09-23T00:00:00",
"2000-09-24T00:00:00",
"2000-09-25T00:00:00",
"2000-09-26T00:00:00",
"2000-09-27T00:00:00",
"2000-09-28T00:00:00",
"2000-09-29T00:00:00",
"2000-09-30T00:00:00",
"2000-10-01T00:00:00",
"2000-10-02T00:00:00",
"2000-10-03T00:00:00",
"2000-10-04T00:00:00",
"2000-10-05T00:00:00",
"2000-10-06T00:00:00",
"2000-10-07T00:00:00",
"2000-10-08T00:00:00",
"2000-10-09T00:00:00",
"2000-10-10T00:00:00",
"2000-10-11T00:00:00",
"2000-10-12T00:00:00",
"2000-10-13T00:00:00",
"2000-10-14T00:00:00",
"2000-10-15T00:00:00",
"2000-10-16T00:00:00",
"2000-10-17T00:00:00",
"2000-10-18T00:00:00",
"2000-10-19T00:00:00",
"2000-10-20T00:00:00",
"2000-10-21T00:00:00",
"2000-10-22T00:00:00",
"2000-10-23T00:00:00",
"2000-10-24T00:00:00",
"2000-10-25T00:00:00",
"2000-10-26T00:00:00",
"2000-10-27T00:00:00",
"2000-10-28T00:00:00",
"2000-10-29T00:00:00",
"2000-10-30T00:00:00",
"2000-10-31T00:00:00",
"2000-11-01T00:00:00",
"2000-11-02T00:00:00",
"2000-11-03T00:00:00",
"2000-11-04T00:00:00",
"2000-11-05T00:00:00",
"2000-11-06T00:00:00",
"2000-11-07T00:00:00",
"2000-11-08T00:00:00",
"2000-11-09T00:00:00",
"2000-11-10T00:00:00",
"2000-11-11T00:00:00",
"2000-11-12T00:00:00",
"2000-11-13T00:00:00",
"2000-11-14T00:00:00",
"2000-11-15T00:00:00",
"2000-11-16T00:00:00",
"2000-11-17T00:00:00",
"2000-11-18T00:00:00",
"2000-11-19T00:00:00",
"2000-11-20T00:00:00",
"2000-11-21T00:00:00",
"2000-11-22T00:00:00",
"2000-11-23T00:00:00",
"2000-11-24T00:00:00",
"2000-11-25T00:00:00",
"2000-11-26T00:00:00",
"2000-11-27T00:00:00",
"2000-11-28T00:00:00",
"2000-11-29T00:00:00",
"2000-11-30T00:00:00",
"2000-12-01T00:00:00",
"2000-12-02T00:00:00",
"2000-12-03T00:00:00",
"2000-12-04T00:00:00",
"2000-12-05T00:00:00",
"2000-12-06T00:00:00",
"2000-12-07T00:00:00",
"2000-12-08T00:00:00",
"2000-12-09T00:00:00",
"2000-12-10T00:00:00",
"2000-12-11T00:00:00",
"2000-12-12T00:00:00",
"2000-12-13T00:00:00",
"2000-12-14T00:00:00",
"2000-12-15T00:00:00",
"2000-12-16T00:00:00",
"2000-12-17T00:00:00",
"2000-12-18T00:00:00",
"2000-12-19T00:00:00",
"2000-12-20T00:00:00",
"2000-12-21T00:00:00",
"2000-12-22T00:00:00",
"2000-12-23T00:00:00",
"2000-12-24T00:00:00",
"2000-12-25T00:00:00",
"2000-12-26T00:00:00",
"2000-12-27T00:00:00",
"2000-12-28T00:00:00",
"2000-12-29T00:00:00",
"2000-12-30T00:00:00",
"2000-12-31T00:00:00",
"2001-01-01T00:00:00",
"2001-01-02T00:00:00",
"2001-01-03T00:00:00",
"2001-01-04T00:00:00",
"2001-01-05T00:00:00",
"2001-01-06T00:00:00",
"2001-01-07T00:00:00",
"2001-01-08T00:00:00",
"2001-01-09T00:00:00",
"2001-01-10T00:00:00",
"2001-01-11T00:00:00",
"2001-01-12T00:00:00",
"2001-01-13T00:00:00",
"2001-01-14T00:00:00",
"2001-01-15T00:00:00",
"2001-01-16T00:00:00",
"2001-01-17T00:00:00",
"2001-01-18T00:00:00",
"2001-01-19T00:00:00",
"2001-01-20T00:00:00",
"2001-01-21T00:00:00",
"2001-01-22T00:00:00",
"2001-01-23T00:00:00",
"2001-01-24T00:00:00",
"2001-01-25T00:00:00",
"2001-01-26T00:00:00",
"2001-01-27T00:00:00",
"2001-01-28T00:00:00",
"2001-01-29T00:00:00",
"2001-01-30T00:00:00",
"2001-01-31T00:00:00",
"2001-02-01T00:00:00",
"2001-02-02T00:00:00",
"2001-02-03T00:00:00",
"2001-02-04T00:00:00",
"2001-02-05T00:00:00",
"2001-02-06T00:00:00",
"2001-02-07T00:00:00",
"2001-02-08T00:00:00",
"2001-02-09T00:00:00",
"2001-02-10T00:00:00",
"2001-02-11T00:00:00",
"2001-02-12T00:00:00",
"2001-02-13T00:00:00",
"2001-02-14T00:00:00",
"2001-02-15T00:00:00",
"2001-02-16T00:00:00",
"2001-02-17T00:00:00",
"2001-02-18T00:00:00",
"2001-02-19T00:00:00",
"2001-02-20T00:00:00",
"2001-02-21T00:00:00",
"2001-02-22T00:00:00",
"2001-02-23T00:00:00",
"2001-02-24T00:00:00",
"2001-02-25T00:00:00",
"2001-02-26T00:00:00",
"2001-02-27T00:00:00",
"2001-02-28T00:00:00",
"2001-03-01T00:00:00",
"2001-03-02T00:00:00",
"2001-03-03T00:00:00",
"2001-03-04T00:00:00",
"2001-03-05T00:00:00",
"2001-03-06T00:00:00",
"2001-03-07T00:00:00",
"2001-03-08T00:00:00",
"2001-03-09T00:00:00",
"2001-03-10T00:00:00",
"2001-03-11T00:00:00",
"2001-03-12T00:00:00",
"2001-03-13T00:00:00",
"2001-03-14T00:00:00",
"2001-03-15T00:00:00",
"2001-03-16T00:00:00",
"2001-03-17T00:00:00",
"2001-03-18T00:00:00",
"2001-03-19T00:00:00",
"2001-03-20T00:00:00",
"2001-03-21T00:00:00",
"2001-03-22T00:00:00",
"2001-03-23T00:00:00",
"2001-03-24T00:00:00",
"2001-03-25T00:00:00",
"2001-03-26T00:00:00",
"2001-03-27T00:00:00",
"2001-03-28T00:00:00",
"2001-03-29T00:00:00",
"2001-03-30T00:00:00",
"2001-03-31T00:00:00",
"2001-04-01T00:00:00",
"2001-04-02T00:00:00",
"2001-04-03T00:00:00",
"2001-04-04T00:00:00",
"2001-04-05T00:00:00",
"2001-04-06T00:00:00",
"2001-04-07T00:00:00",
"2001-04-08T00:00:00",
"2001-04-09T00:00:00",
"2001-04-10T00:00:00",
"2001-04-11T00:00:00",
"2001-04-12T00:00:00",
"2001-04-13T00:00:00",
"2001-04-14T00:00:00",
"2001-04-15T00:00:00",
"2001-04-16T00:00:00",
"2001-04-17T00:00:00",
"2001-04-18T00:00:00",
"2001-04-19T00:00:00",
"2001-04-20T00:00:00",
"2001-04-21T00:00:00",
"2001-04-22T00:00:00",
"2001-04-23T00:00:00",
"2001-04-24T00:00:00",
"2001-04-25T00:00:00",
"2001-04-26T00:00:00",
"2001-04-27T00:00:00",
"2001-04-28T00:00:00",
"2001-04-29T00:00:00",
"2001-04-30T00:00:00",
"2001-05-01T00:00:00",
"2001-05-02T00:00:00",
"2001-05-03T00:00:00",
"2001-05-04T00:00:00",
"2001-05-05T00:00:00",
"2001-05-06T00:00:00",
"2001-05-07T00:00:00",
"2001-05-08T00:00:00",
"2001-05-09T00:00:00",
"2001-05-10T00:00:00",
"2001-05-11T00:00:00",
"2001-05-12T00:00:00",
"2001-05-13T00:00:00",
"2001-05-14T00:00:00",
"2001-05-15T00:00:00",
"2001-05-16T00:00:00",
"2001-05-17T00:00:00",
"2001-05-18T00:00:00",
"2001-05-19T00:00:00",
"2001-05-20T00:00:00",
"2001-05-21T00:00:00",
"2001-05-22T00:00:00",
"2001-05-23T00:00:00",
"2001-05-24T00:00:00",
"2001-05-25T00:00:00",
"2001-05-26T00:00:00",
"2001-05-27T00:00:00",
"2001-05-28T00:00:00",
"2001-05-29T00:00:00",
"2001-05-30T00:00:00",
"2001-05-31T00:00:00",
"2001-06-01T00:00:00",
"2001-06-02T00:00:00",
"2001-06-03T00:00:00",
"2001-06-04T00:00:00",
"2001-06-05T00:00:00",
"2001-06-06T00:00:00",
"2001-06-07T00:00:00",
"2001-06-08T00:00:00",
"2001-06-09T00:00:00",
"2001-06-10T00:00:00",
"2001-06-11T00:00:00",
"2001-06-12T00:00:00",
"2001-06-13T00:00:00",
"2001-06-14T00:00:00",
"2001-06-15T00:00:00",
"2001-06-16T00:00:00",
"2001-06-17T00:00:00",
"2001-06-18T00:00:00",
"2001-06-19T00:00:00",
"2001-06-20T00:00:00",
"2001-06-21T00:00:00",
"2001-06-22T00:00:00",
"2001-06-23T00:00:00",
"2001-06-24T00:00:00",
"2001-06-25T00:00:00",
"2001-06-26T00:00:00",
"2001-06-27T00:00:00",
"2001-06-28T00:00:00",
"2001-06-29T00:00:00",
"2001-06-30T00:00:00",
"2001-07-01T00:00:00",
"2001-07-02T00:00:00",
"2001-07-03T00:00:00",
"2001-07-04T00:00:00",
"2001-07-05T00:00:00",
"2001-07-06T00:00:00",
"2001-07-07T00:00:00",
"2001-07-08T00:00:00",
"2001-07-09T00:00:00",
"2001-07-10T00:00:00",
"2001-07-11T00:00:00",
"2001-07-12T00:00:00",
"2001-07-13T00:00:00",
"2001-07-14T00:00:00",
"2001-07-15T00:00:00",
"2001-07-16T00:00:00",
"2001-07-17T00:00:00",
"2001-07-18T00:00:00",
"2001-07-19T00:00:00",
"2001-07-20T00:00:00",
"2001-07-21T00:00:00",
"2001-07-22T00:00:00",
"2001-07-23T00:00:00",
"2001-07-24T00:00:00",
"2001-07-25T00:00:00",
"2001-07-26T00:00:00",
"2001-07-27T00:00:00",
"2001-07-28T00:00:00",
"2001-07-29T00:00:00",
"2001-07-30T00:00:00",
"2001-07-31T00:00:00",
"2001-08-01T00:00:00",
"2001-08-02T00:00:00",
"2001-08-03T00:00:00",
"2001-08-04T00:00:00",
"2001-08-05T00:00:00",
"2001-08-06T00:00:00",
"2001-08-07T00:00:00",
"2001-08-08T00:00:00",
"2001-08-09T00:00:00",
"2001-08-10T00:00:00",
"2001-08-11T00:00:00",
"2001-08-12T00:00:00",
"2001-08-13T00:00:00",
"2001-08-14T00:00:00",
"2001-08-15T00:00:00",
"2001-08-16T00:00:00",
"2001-08-17T00:00:00",
"2001-08-18T00:00:00",
"2001-08-19T00:00:00",
"2001-08-20T00:00:00",
"2001-08-21T00:00:00",
"2001-08-22T00:00:00",
"2001-08-23T00:00:00",
"2001-08-24T00:00:00",
"2001-08-25T00:00:00",
"2001-08-26T00:00:00",
"2001-08-27T00:00:00",
"2001-08-28T00:00:00",
"2001-08-29T00:00:00",
"2001-08-30T00:00:00",
"2001-08-31T00:00:00",
"2001-09-01T00:00:00",
"2001-09-02T00:00:00",
"2001-09-03T00:00:00",
"2001-09-04T00:00:00",
"2001-09-05T00:00:00",
"2001-09-06T00:00:00",
"2001-09-07T00:00:00",
"2001-09-08T00:00:00",
"2001-09-09T00:00:00",
"2001-09-10T00:00:00",
"2001-09-11T00:00:00",
"2001-09-12T00:00:00",
"2001-09-13T00:00:00",
"2001-09-14T00:00:00",
"2001-09-15T00:00:00",
"2001-09-16T00:00:00",
"2001-09-17T00:00:00",
"2001-09-18T00:00:00",
"2001-09-19T00:00:00",
"2001-09-20T00:00:00",
"2001-09-21T00:00:00",
"2001-09-22T00:00:00",
"2001-09-23T00:00:00",
"2001-09-24T00:00:00",
"2001-09-25T00:00:00",
"2001-09-26T00:00:00",
"2001-09-27T00:00:00",
"2001-09-28T00:00:00",
"2001-09-29T00:00:00",
"2001-09-30T00:00:00",
"2001-10-01T00:00:00",
"2001-10-02T00:00:00",
"2001-10-03T00:00:00",
"2001-10-04T00:00:00",
"2001-10-05T00:00:00",
"2001-10-06T00:00:00",
"2001-10-07T00:00:00",
"2001-10-08T00:00:00",
"2001-10-09T00:00:00",
"2001-10-10T00:00:00",
"2001-10-11T00:00:00",
"2001-10-12T00:00:00",
"2001-10-13T00:00:00",
"2001-10-14T00:00:00",
"2001-10-15T00:00:00",
"2001-10-16T00:00:00",
"2001-10-17T00:00:00",
"2001-10-18T00:00:00",
"2001-10-19T00:00:00",
"2001-10-20T00:00:00",
"2001-10-21T00:00:00",
"2001-10-22T00:00:00",
"2001-10-23T00:00:00",
"2001-10-24T00:00:00",
"2001-10-25T00:00:00",
"2001-10-26T00:00:00",
"2001-10-27T00:00:00",
"2001-10-28T00:00:00",
"2001-10-29T00:00:00",
"2001-10-30T00:00:00",
"2001-10-31T00:00:00",
"2001-11-01T00:00:00",
"2001-11-02T00:00:00",
"2001-11-03T00:00:00",
"2001-11-04T00:00:00",
"2001-11-05T00:00:00",
"2001-11-06T00:00:00",
"2001-11-07T00:00:00",
"2001-11-08T00:00:00",
"2001-11-09T00:00:00",
"2001-11-10T00:00:00",
"2001-11-11T00:00:00",
"2001-11-12T00:00:00",
"2001-11-13T00:00:00",
"2001-11-14T00:00:00",
"2001-11-15T00:00:00",
"2001-11-16T00:00:00",
"2001-11-17T00:00:00",
"2001-11-18T00:00:00",
"2001-11-19T00:00:00",
"2001-11-20T00:00:00",
"2001-11-21T00:00:00",
"2001-11-22T00:00:00",
"2001-11-23T00:00:00",
"2001-11-24T00:00:00",
"2001-11-25T00:00:00",
"2001-11-26T00:00:00",
"2001-11-27T00:00:00",
"2001-11-28T00:00:00",
"2001-11-29T00:00:00",
"2001-11-30T00:00:00",
"2001-12-01T00:00:00",
"2001-12-02T00:00:00",
"2001-12-03T00:00:00",
"2001-12-04T00:00:00",
"2001-12-05T00:00:00",
"2001-12-06T00:00:00",
"2001-12-07T00:00:00",
"2001-12-08T00:00:00",
"2001-12-09T00:00:00",
"2001-12-10T00:00:00",
"2001-12-11T00:00:00",
"2001-12-12T00:00:00",
"2001-12-13T00:00:00",
"2001-12-14T00:00:00",
"2001-12-15T00:00:00",
"2001-12-16T00:00:00",
"2001-12-17T00:00:00",
"2001-12-18T00:00:00",
"2001-12-19T00:00:00",
"2001-12-20T00:00:00",
"2001-12-21T00:00:00",
"2001-12-22T00:00:00",
"2001-12-23T00:00:00",
"2001-12-24T00:00:00",
"2001-12-25T00:00:00",
"2001-12-26T00:00:00",
"2001-12-27T00:00:00",
"2001-12-28T00:00:00",
"2001-12-29T00:00:00",
"2001-12-30T00:00:00",
"2001-12-31T00:00:00",
"2002-01-01T00:00:00",
"2002-01-02T00:00:00",
"2002-01-03T00:00:00",
"2002-01-04T00:00:00",
"2002-01-05T00:00:00",
"2002-01-06T00:00:00",
"2002-01-07T00:00:00",
"2002-01-08T00:00:00",
"2002-01-09T00:00:00",
"2002-01-10T00:00:00",
"2002-01-11T00:00:00",
"2002-01-12T00:00:00",
"2002-01-13T00:00:00",
"2002-01-14T00:00:00",
"2002-01-15T00:00:00",
"2002-01-16T00:00:00",
"2002-01-17T00:00:00",
"2002-01-18T00:00:00",
"2002-01-19T00:00:00",
"2002-01-20T00:00:00",
"2002-01-21T00:00:00",
"2002-01-22T00:00:00",
"2002-01-23T00:00:00",
"2002-01-24T00:00:00",
"2002-01-25T00:00:00",
"2002-01-26T00:00:00",
"2002-01-27T00:00:00",
"2002-01-28T00:00:00",
"2002-01-29T00:00:00",
"2002-01-30T00:00:00",
"2002-01-31T00:00:00",
"2002-02-01T00:00:00",
"2002-02-02T00:00:00",
"2002-02-03T00:00:00",
"2002-02-04T00:00:00",
"2002-02-05T00:00:00",
"2002-02-06T00:00:00",
"2002-02-07T00:00:00",
"2002-02-08T00:00:00",
"2002-02-09T00:00:00",
"2002-02-10T00:00:00",
"2002-02-11T00:00:00",
"2002-02-12T00:00:00",
"2002-02-13T00:00:00",
"2002-02-14T00:00:00",
"2002-02-15T00:00:00",
"2002-02-16T00:00:00",
"2002-02-17T00:00:00",
"2002-02-18T00:00:00",
"2002-02-19T00:00:00",
"2002-02-20T00:00:00",
"2002-02-21T00:00:00",
"2002-02-22T00:00:00",
"2002-02-23T00:00:00",
"2002-02-24T00:00:00",
"2002-02-25T00:00:00",
"2002-02-26T00:00:00",
"2002-02-27T00:00:00",
"2002-02-28T00:00:00",
"2002-03-01T00:00:00",
"2002-03-02T00:00:00",
"2002-03-03T00:00:00",
"2002-03-04T00:00:00",
"2002-03-05T00:00:00",
"2002-03-06T00:00:00",
"2002-03-07T00:00:00",
"2002-03-08T00:00:00",
"2002-03-09T00:00:00",
"2002-03-10T00:00:00",
"2002-03-11T00:00:00",
"2002-03-12T00:00:00",
"2002-03-13T00:00:00",
"2002-03-14T00:00:00",
"2002-03-15T00:00:00",
"2002-03-16T00:00:00",
"2002-03-17T00:00:00",
"2002-03-18T00:00:00",
"2002-03-19T00:00:00",
"2002-03-20T00:00:00",
"2002-03-21T00:00:00",
"2002-03-22T00:00:00",
"2002-03-23T00:00:00",
"2002-03-24T00:00:00",
"2002-03-25T00:00:00",
"2002-03-26T00:00:00",
"2002-03-27T00:00:00",
"2002-03-28T00:00:00",
"2002-03-29T00:00:00",
"2002-03-30T00:00:00",
"2002-03-31T00:00:00",
"2002-04-01T00:00:00",
"2002-04-02T00:00:00",
"2002-04-03T00:00:00",
"2002-04-04T00:00:00",
"2002-04-05T00:00:00",
"2002-04-06T00:00:00",
"2002-04-07T00:00:00",
"2002-04-08T00:00:00",
"2002-04-09T00:00:00",
"2002-04-10T00:00:00",
"2002-04-11T00:00:00",
"2002-04-12T00:00:00",
"2002-04-13T00:00:00",
"2002-04-14T00:00:00",
"2002-04-15T00:00:00",
"2002-04-16T00:00:00",
"2002-04-17T00:00:00",
"2002-04-18T00:00:00",
"2002-04-19T00:00:00",
"2002-04-20T00:00:00",
"2002-04-21T00:00:00",
"2002-04-22T00:00:00",
"2002-04-23T00:00:00",
"2002-04-24T00:00:00",
"2002-04-25T00:00:00",
"2002-04-26T00:00:00",
"2002-04-27T00:00:00",
"2002-04-28T00:00:00",
"2002-04-29T00:00:00",
"2002-04-30T00:00:00",
"2002-05-01T00:00:00",
"2002-05-02T00:00:00",
"2002-05-03T00:00:00",
"2002-05-04T00:00:00",
"2002-05-05T00:00:00",
"2002-05-06T00:00:00",
"2002-05-07T00:00:00",
"2002-05-08T00:00:00",
"2002-05-09T00:00:00",
"2002-05-10T00:00:00",
"2002-05-11T00:00:00",
"2002-05-12T00:00:00",
"2002-05-13T00:00:00",
"2002-05-14T00:00:00",
"2002-05-15T00:00:00",
"2002-05-16T00:00:00",
"2002-05-17T00:00:00",
"2002-05-18T00:00:00",
"2002-05-19T00:00:00",
"2002-05-20T00:00:00",
"2002-05-21T00:00:00",
"2002-05-22T00:00:00",
"2002-05-23T00:00:00",
"2002-05-24T00:00:00",
"2002-05-25T00:00:00",
"2002-05-26T00:00:00",
"2002-05-27T00:00:00",
"2002-05-28T00:00:00",
"2002-05-29T00:00:00",
"2002-05-30T00:00:00",
"2002-05-31T00:00:00",
"2002-06-01T00:00:00",
"2002-06-02T00:00:00",
"2002-06-03T00:00:00",
"2002-06-04T00:00:00",
"2002-06-05T00:00:00",
"2002-06-06T00:00:00",
"2002-06-07T00:00:00",
"2002-06-08T00:00:00",
"2002-06-09T00:00:00",
"2002-06-10T00:00:00",
"2002-06-11T00:00:00",
"2002-06-12T00:00:00",
"2002-06-13T00:00:00",
"2002-06-14T00:00:00",
"2002-06-15T00:00:00",
"2002-06-16T00:00:00",
"2002-06-17T00:00:00",
"2002-06-18T00:00:00",
"2002-06-19T00:00:00",
"2002-06-20T00:00:00",
"2002-06-21T00:00:00",
"2002-06-22T00:00:00",
"2002-06-23T00:00:00",
"2002-06-24T00:00:00",
"2002-06-25T00:00:00",
"2002-06-26T00:00:00",
"2002-06-27T00:00:00",
"2002-06-28T00:00:00",
"2002-06-29T00:00:00",
"2002-06-30T00:00:00",
"2002-07-01T00:00:00",
"2002-07-02T00:00:00",
"2002-07-03T00:00:00",
"2002-07-04T00:00:00",
"2002-07-05T00:00:00",
"2002-07-06T00:00:00",
"2002-07-07T00:00:00",
"2002-07-08T00:00:00",
"2002-07-09T00:00:00",
"2002-07-10T00:00:00",
"2002-07-11T00:00:00",
"2002-07-12T00:00:00",
"2002-07-13T00:00:00",
"2002-07-14T00:00:00",
"2002-07-15T00:00:00",
"2002-07-16T00:00:00",
"2002-07-17T00:00:00",
"2002-07-18T00:00:00",
"2002-07-19T00:00:00",
"2002-07-20T00:00:00",
"2002-07-21T00:00:00",
"2002-07-22T00:00:00",
"2002-07-23T00:00:00",
"2002-07-24T00:00:00",
"2002-07-25T00:00:00",
"2002-07-26T00:00:00",
"2002-07-27T00:00:00",
"2002-07-28T00:00:00",
"2002-07-29T00:00:00",
"2002-07-30T00:00:00",
"2002-07-31T00:00:00",
"2002-08-01T00:00:00",
"2002-08-02T00:00:00",
"2002-08-03T00:00:00",
"2002-08-04T00:00:00",
"2002-08-05T00:00:00",
"2002-08-06T00:00:00",
"2002-08-07T00:00:00",
"2002-08-08T00:00:00",
"2002-08-09T00:00:00",
"2002-08-10T00:00:00",
"2002-08-11T00:00:00",
"2002-08-12T00:00:00",
"2002-08-13T00:00:00",
"2002-08-14T00:00:00",
"2002-08-15T00:00:00",
"2002-08-16T00:00:00",
"2002-08-17T00:00:00",
"2002-08-18T00:00:00",
"2002-08-19T00:00:00",
"2002-08-20T00:00:00",
"2002-08-21T00:00:00",
"2002-08-22T00:00:00",
"2002-08-23T00:00:00",
"2002-08-24T00:00:00",
"2002-08-25T00:00:00",
"2002-08-26T00:00:00",
"2002-08-27T00:00:00",
"2002-08-28T00:00:00",
"2002-08-29T00:00:00",
"2002-08-30T00:00:00",
"2002-08-31T00:00:00",
"2002-09-01T00:00:00",
"2002-09-02T00:00:00",
"2002-09-03T00:00:00",
"2002-09-04T00:00:00",
"2002-09-05T00:00:00",
"2002-09-06T00:00:00",
"2002-09-07T00:00:00",
"2002-09-08T00:00:00",
"2002-09-09T00:00:00",
"2002-09-10T00:00:00",
"2002-09-11T00:00:00",
"2002-09-12T00:00:00",
"2002-09-13T00:00:00",
"2002-09-14T00:00:00",
"2002-09-15T00:00:00",
"2002-09-16T00:00:00",
"2002-09-17T00:00:00",
"2002-09-18T00:00:00",
"2002-09-19T00:00:00",
"2002-09-20T00:00:00",
"2002-09-21T00:00:00",
"2002-09-22T00:00:00",
"2002-09-23T00:00:00",
"2002-09-24T00:00:00",
"2002-09-25T00:00:00",
"2002-09-26T00:00:00"
],
"xaxis": "x",
"y": [
-0.9259838443216555,
0.7266058736280445,
0.7266058736280445,
0.7266058736280445,
0.7266058736280445,
0.7266058736280445,
0.7266058736280445,
0.8561764021256625,
0.8561764021256625,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5324482853799521,
1.5416311659176303,
1.5416311659176303,
1.5416311659176303,
1.5416311659176303,
1.5416311659176303,
1.5416311659176303,
1.5416311659176303,
1.6268629023439591,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
2.6934739455737535,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.031094906822443,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017,
3.416506354889017
],
"yaxis": "y"
}
],
"layout": {
"legend": {
"title": {
"text": "variable"
},
"tracegroupgap": 0
},
"margin": {
"t": 60
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.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": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"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": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0,
"#0d0887"
],
[
0.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
}
}
},
"xaxis": {
"anchor": "y",
"domain": [
0,
1
],
"title": {
"text": "index"
}
},
"yaxis": {
"anchor": "x",
"domain": [
0,
1
],
"title": {
"text": "value"
}
}
}
},
"text/html": [
"<div> <div id=\"850263b2-ec86-49b6-909c-8c494d64daef\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"850263b2-ec86-49b6-909c-8c494d64daef\")) { Plotly.newPlot( \"850263b2-ec86-49b6-909c-8c494d64daef\", [{\"hovertemplate\": \"variable=A<br>index=%{x}<br>value=%{y}<extra></extra>\", \"legendgroup\": \"A\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"A\", \"showlegend\": true, \"type\": \"scattergl\", \"x\": [\"2000-01-01T00:00:00\", \"2000-01-02T00:00:00\", \"2000-01-03T00:00:00\", \"2000-01-04T00:00:00\", \"2000-01-05T00:00:00\", \"2000-01-06T00:00:00\", \"2000-01-07T00:00:00\", \"2000-01-08T00:00:00\", \"2000-01-09T00:00:00\", \"2000-01-10T00:00:00\", \"2000-01-11T00:00:00\", \"2000-01-12T00:00:00\", \"2000-01-13T00:00:00\", \"2000-01-14T00:00:00\", \"2000-01-15T00:00:00\", \"2000-01-16T00:00:00\", \"2000-01-17T00:00:00\", \"2000-01-18T00:00:00\", \"2000-01-19T00:00:00\", \"2000-01-20T00:00:00\", \"2000-01-21T00:00:00\", \"2000-01-22T00:00:00\", \"2000-01-23T00:00:00\", \"2000-01-24T00:00:00\", \"2000-01-25T00:00:00\", \"2000-01-26T00:00:00\", \"2000-01-27T00:00:00\", \"2000-01-28T00:00:00\", \"2000-01-29T00:00:00\", \"2000-01-30T00:00:00\", \"2000-01-31T00:00:00\", \"2000-02-01T00:00:00\", \"2000-02-02T00:00:00\", \"2000-02-03T00:00:00\", \"2000-02-04T00:00:00\", \"2000-02-05T00:00:00\", \"2000-02-06T00:00:00\", \"2000-02-07T00:00:00\", \"2000-02-08T00:00:00\", \"2000-02-09T00:00:00\", \"2000-02-10T00:00:00\", \"2000-02-11T00:00:00\", \"2000-02-12T00:00:00\", \"2000-02-13T00:00:00\", \"2000-02-14T00:00:00\", \"2000-02-15T00:00:00\", \"2000-02-16T00:00:00\", \"2000-02-17T00:00:00\", \"2000-02-18T00:00:00\", \"2000-02-19T00:00:00\", \"2000-02-20T00:00:00\", \"2000-02-21T00:00:00\", \"2000-02-22T00:00:00\", \"2000-02-23T00:00:00\", \"2000-02-24T00:00:00\", \"2000-02-25T00:00:00\", \"2000-02-26T00:00:00\", \"2000-02-27T00:00:00\", \"2000-02-28T00:00:00\", \"2000-02-29T00:00:00\", \"2000-03-01T00:00:00\", \"2000-03-02T00:00:00\", \"2000-03-03T00:00:00\", \"2000-03-04T00:00:00\", \"2000-03-05T00:00:00\", \"2000-03-06T00:00:00\", \"2000-03-07T00:00:00\", \"2000-03-08T00:00:00\", \"2000-03-09T00:00:00\", \"2000-03-10T00:00:00\", \"2000-03-11T00:00:00\", \"2000-03-12T00:00:00\", \"2000-03-13T00:00:00\", \"2000-03-14T00:00:00\", \"2000-03-15T00:00:00\", \"2000-03-16T00:00:00\", \"2000-03-17T00:00:00\", \"2000-03-18T00:00:00\", \"2000-03-19T00:00:00\", \"2000-03-20T00:00:00\", \"2000-03-21T00:00:00\", \"2000-03-22T00:00:00\", \"2000-03-23T00:00:00\", \"2000-03-24T00:00:00\", \"2000-03-25T00:00:00\", \"2000-03-26T00:00:00\", \"2000-03-27T00:00:00\", \"2000-03-28T00:00:00\", \"2000-03-29T00:00:00\", \"2000-03-30T00:00:00\", \"2000-03-31T00:00:00\", \"2000-04-01T00:00:00\", \"2000-04-02T00:00:00\", \"2000-04-03T00:00:00\", \"2000-04-04T00:00:00\", \"2000-04-05T00:00:00\", \"2000-04-06T00:00:00\", \"2000-04-07T00:00:00\", \"2000-04-08T00:00:00\", \"2000-04-09T00:00:00\", \"2000-04-10T00:00:00\", \"2000-04-11T00:00:00\", \"2000-04-12T00:00:00\", \"2000-04-13T00:00:00\", \"2000-04-14T00:00:00\", \"2000-04-15T00:00:00\", \"2000-04-16T00:00:00\", \"2000-04-17T00:00:00\", \"2000-04-18T00:00:00\", \"2000-04-19T00:00:00\", \"2000-04-20T00:00:00\", \"2000-04-21T00:00:00\", \"2000-04-22T00:00:00\", \"2000-04-23T00:00:00\", \"2000-04-24T00:00:00\", \"2000-04-25T00:00:00\", \"2000-04-26T00:00:00\", \"2000-04-27T00:00:00\", \"2000-04-28T00:00:00\", \"2000-04-29T00:00:00\", \"2000-04-30T00:00:00\", \"2000-05-01T00:00:00\", \"2000-05-02T00:00:00\", \"2000-05-03T00:00:00\", \"2000-05-04T00:00:00\", \"2000-05-05T00:00:00\", \"2000-05-06T00:00:00\", \"2000-05-07T00:00:00\", \"2000-05-08T00:00:00\", \"2000-05-09T00:00:00\", \"2000-05-10T00:00:00\", \"2000-05-11T0
" \n",
"var gd = document.getElementById('850263b2-ec86-49b6-909c-8c494d64daef');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; }); </script> </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"kdf.plot()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Getting data in/out\n",
"See the <a href=\"https://koalas.readthedocs.io/en/latest/reference/io.html\">Input/Output\n",
"</a> docs."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### CSV\n",
"\n",
"CSV is straightforward and easy to use. See <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/pyspark.pandas.DataFrame.to_csv.html#databricks.koalas.DataFrame.to_csv\">here</a> to write a CSV file and <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/databricks.koalas.read_csv.html#databricks.koalas.read_csv\">here</a> to read a CSV file."
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.821342</td>\n",
" <td>-0.325142</td>\n",
" <td>0.904636</td>\n",
" <td>-0.925984</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1.498758</td>\n",
" <td>0.045747</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.498758</td>\n",
" <td>0.045747</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.856176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.856176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>1.532448</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"0 -0.821342 -0.325142 0.904636 -0.925984\n",
"1 1.498758 0.045747 0.904636 0.726606\n",
"2 1.498758 0.045747 0.904636 0.726606\n",
"3 1.498758 1.534086 0.904636 0.726606\n",
"4 1.498758 1.534086 0.904636 0.726606\n",
"5 1.498758 1.534086 0.904636 0.726606\n",
"6 1.498758 1.534086 0.904636 0.726606\n",
"7 1.498758 1.534086 0.904636 0.856176\n",
"8 1.498758 1.534086 0.904636 0.856176\n",
"9 1.498758 1.534086 0.904636 1.532448"
]
},
"execution_count": 50,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.to_csv('foo.csv')\n",
"ks.read_csv('foo.csv').head(10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Parquet\n",
"\n",
"Parquet is an efficient and compact file format to read and write faster. See <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/pyspark.pandas.DataFrame.to_parquet.html#databricks.koalas.DataFrame.to_parquet\">here</a> to write a Parquet file and <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/databricks.koalas.read_parquet.html#databricks.koalas.read_parquet\">here</a> to read a Parquet file."
]
},
{
"cell_type": "code",
"execution_count": 51,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.821342</td>\n",
" <td>-0.325142</td>\n",
" <td>0.904636</td>\n",
" <td>-0.925984</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1.498758</td>\n",
" <td>0.045747</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.498758</td>\n",
" <td>0.045747</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.856176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.856176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>1.532448</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"0 -0.821342 -0.325142 0.904636 -0.925984\n",
"1 1.498758 0.045747 0.904636 0.726606\n",
"2 1.498758 0.045747 0.904636 0.726606\n",
"3 1.498758 1.534086 0.904636 0.726606\n",
"4 1.498758 1.534086 0.904636 0.726606\n",
"5 1.498758 1.534086 0.904636 0.726606\n",
"6 1.498758 1.534086 0.904636 0.726606\n",
"7 1.498758 1.534086 0.904636 0.856176\n",
"8 1.498758 1.534086 0.904636 0.856176\n",
"9 1.498758 1.534086 0.904636 1.532448"
]
},
"execution_count": 51,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.to_parquet('bar.parquet')\n",
"ks.read_parquet('bar.parquet').head(10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Spark IO\n",
"\n",
"In addition, Koalas fully support Spark's various datasources such as ORC and an external datasource. See <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/pyspark.pandas.DataFrame.to_spark_io.html#databricks.koalas.DataFrame.to_spark_io\">here</a> to write it to the specified datasource and <a href=\"https://koalas.readthedocs.io/en/latest/reference/api/databricks.koalas.read_spark_io.html#databricks.koalas.read_spark_io\">here</a> to read it from the datasource."
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>A</th>\n",
" <th>B</th>\n",
" <th>C</th>\n",
" <th>D</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>-0.821342</td>\n",
" <td>-0.325142</td>\n",
" <td>0.904636</td>\n",
" <td>-0.925984</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1.498758</td>\n",
" <td>0.045747</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1.498758</td>\n",
" <td>0.045747</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.726606</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.856176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>0.856176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>1.498758</td>\n",
" <td>1.534086</td>\n",
" <td>0.904636</td>\n",
" <td>1.532448</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" A B C D\n",
"0 -0.821342 -0.325142 0.904636 -0.925984\n",
"1 1.498758 0.045747 0.904636 0.726606\n",
"2 1.498758 0.045747 0.904636 0.726606\n",
"3 1.498758 1.534086 0.904636 0.726606\n",
"4 1.498758 1.534086 0.904636 0.726606\n",
"5 1.498758 1.534086 0.904636 0.726606\n",
"6 1.498758 1.534086 0.904636 0.726606\n",
"7 1.498758 1.534086 0.904636 0.856176\n",
"8 1.498758 1.534086 0.904636 0.856176\n",
"9 1.498758 1.534086 0.904636 1.532448"
]
},
"execution_count": 52,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"kdf.to_spark_io('zoo.orc', format=\"orc\")\n",
"ks.read_spark_io('zoo.orc', format=\"orc\").head(10)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.8"
}
},
"nbformat": 4,
"nbformat_minor": 1
}