Last active
November 25, 2020 08:27
-
-
Save b4tman/14362a3735c5997d2a46ca040116c0eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"%matplotlib inline \n", | |
"%config InlineBackend.figure_format = 'svg' #векторный формат\n", | |
"\n", | |
"from matplotlib import pyplot as plt\n", | |
"\n", | |
"plt.style.use('ggplot') # Красивые графики\n", | |
"plt.rcParams['figure.figsize'] = (16, 6) # Размер картинок\n", | |
"\n", | |
"import numpy as np\n", | |
"import pandas as pd\n", | |
"from datetime import timedelta\n", | |
"from datetime import datetime\n", | |
"import math\n", | |
"import os\n", | |
"import pandas_datareader.data as web" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"# !conda install snappy python-snappy pyarrow fastparquet \n", | |
"# !pip install pandas_datareader" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"downloading: SBER\n", | |
"downloading: AFKS\n", | |
"downloading: GAZP\n", | |
"downloading: MAIL\n", | |
"downloading: YNDX\n", | |
"downloading: FXUS\n", | |
"downloading: FXIT\n", | |
"downloading: FXCN\n", | |
"downloading: FXDE\n", | |
"downloading: FXWO\n", | |
"downloading: FXRW\n" | |
] | |
} | |
], | |
"source": [ | |
"# download\n", | |
"tikers = 'SBER,AFKS,GAZP,MAIL,YNDX,FXUS,FXIT,FXCN,FXDE,FXWO,FXRW'.split(',')\n", | |
"\n", | |
"def download_data(tiker, path):\n", | |
" filepath = os.path.join(path, f'{tiker}_2020.parquet')\n", | |
" if os.path.exists(filepath):\n", | |
" return\n", | |
" df = web.DataReader(tiker, 'moex', start='2019-01-01', end='2020-12-31')\n", | |
" df.to_parquet(filepath, engine='fastparquet')\n", | |
"\n", | |
"for tiker in tikers:\n", | |
" print(f'downloading: {tiker}')\n", | |
" download_data(tiker, \"D:\\\\data2\\\\Documents\\\\notebooks\")\n" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": { | |
"scrolled": true | |
}, | |
"outputs": [], | |
"source": [ | |
"# load cached\n", | |
"def load_data(tiker, path):\n", | |
" result = None\n", | |
" filepath = os.path.join(path, f'{tiker}_2020.parquet')\n", | |
" if os.path.exists(filepath):\n", | |
" result = pd.read_parquet(filepath)\n", | |
" return result\n", | |
"\n", | |
"rawdata = {}\n", | |
"for tiker in tikers:\n", | |
" rawdata[tiker] = load_data(tiker, \"D:\\\\data2\\\\Documents\\\\notebooks\")\n", | |
"\n", | |
"#df = pd.read_parquet(\"D:\\\\data2\\\\Documents\\\\notebooks\\\\AFKS_2020.parquet\")\n", | |
"#df_fxus = pd.read_parquet(\"D:\\\\data2\\\\Documents\\\\notebooks\\\\FXUS_2020.parquet\")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 5, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"#df = web.DataReader('AFKS', 'moex', start='2020-01-01', end='2020-11-11')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"(array(['PSRP', 'SOTC', 'EQTD', 'TQTF', 'TQTD', 'PSTF', 'PTTF', 'RPMA',\n", | |
" 'RPMO'], dtype=object),\n", | |
" array(['SOTC', 'PSRP', 'EQRP', 'PSRD', 'EQWP', 'EQRD', 'LIQR', 'PSRE',\n", | |
" 'MXBD', 'EQDP', 'TQBR', 'SPEQ', 'PTEQ', 'PSEQ', 'RPMA', 'RPMO',\n", | |
" 'RPEU', 'RPEO'], dtype=object))" | |
] | |
}, | |
"execution_count": 8, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"rawdata['FXIT']['BOARDID'].unique(), rawdata['YNDX']['BOARDID'].unique()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"#df.fillna(method='ffill')\n", | |
"#df.where(df['BOARDID'] == 'TQBR')[['OPEN','CLOSE','WAPRICE']].describe()\n", | |
"def prepare_data(x_df, boardid='TQBR'): \n", | |
" xdf = x_df.copy()\n", | |
" xdf = xdf.where(xdf['BOARDID'] == boardid)\n", | |
" xdf.dropna(axis=0, how='all', inplace=True)\n", | |
" xdf.dropna(axis=1, how='all', inplace=True)\n", | |
" xdf.drop_duplicates(inplace=True)\n", | |
" xdf = xdf.resample('D').interpolate(method='time')\n", | |
" if 0 == xdf.size:\n", | |
" return xdf\n", | |
" return xdf\n", | |
"\n", | |
"dfs = {}\n", | |
"for tiker in tikers:\n", | |
" dfs[tiker] = prepare_data(rawdata[tiker], boardid='TQTF' if 'FX' in tiker else 'TQBR')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"400.991437pt\" version=\"1.1\" viewBox=\"0 0 930.103125 400.991437\" width=\"930.103125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 400.991437 \r\n", | |
"L 930.103125 400.991437 \r\n", | |
"L 930.103125 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 350.30175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m72d610fdd5\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 145.641949 350.30175 \r\n", | |
"L 145.641949 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"145.641949\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" <path d=\"M 41.109375 46.296875 \r\n", | |
"Q 39.59375 47.171875 37.8125 47.578125 \r\n", | |
"Q 36.03125 48 33.890625 48 \r\n", | |
"Q 26.265625 48 22.1875 43.046875 \r\n", | |
"Q 18.109375 38.09375 18.109375 28.8125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 20.953125 51.171875 25.484375 53.578125 \r\n", | |
"Q 30.03125 56 36.53125 56 \r\n", | |
"Q 37.453125 56 38.578125 55.875 \r\n", | |
"Q 39.703125 55.765625 41.0625 55.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-114\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(136.991949 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 265.119596 350.30175 \r\n", | |
"L 265.119596 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"265.119596\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(259.086783 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 385.910184 350.30175 \r\n", | |
"L 385.910184 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"385.910184\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(377.264871 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 506.700772 350.30175 \r\n", | |
"L 506.700772 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"506.700772\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- Jan -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-110\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(498.99296 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"90.771484\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(493.975772 376.098)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 626.178419 350.30175 \r\n", | |
"L 626.178419 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"626.178419\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(617.528419 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 745.656066 350.30175 \r\n", | |
"L 745.656066 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"745.656066\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(739.623254 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 866.446654 350.30175 \r\n", | |
"L 866.446654 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"866.446654\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(857.801342 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"922.903125\" xlink:href=\"#m72d610fdd5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"mad992d7a70\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"68.178419\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"104.940772\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"185.030184\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"225.73136\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"305.820772\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"346.521949\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"426.61136\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"465.999596\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"547.401949\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"585.477243\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"665.566654\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"706.267831\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"786.357243\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"827.058419\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"907.147831\" xlink:href=\"#mad992d7a70\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(439.984688 391.295812)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 292.722965 \r\n", | |
"L 922.903125 292.722965 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m1fb2266c98\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m1fb2266c98\" y=\"292.722965\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- 0.8 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" <path d=\"M 31.78125 34.625 \r\n", | |
"Q 24.75 34.625 20.71875 30.859375 \r\n", | |
"Q 16.703125 27.09375 16.703125 20.515625 \r\n", | |
"Q 16.703125 13.921875 20.71875 10.15625 \r\n", | |
"Q 24.75 6.390625 31.78125 6.390625 \r\n", | |
"Q 38.8125 6.390625 42.859375 10.171875 \r\n", | |
"Q 46.921875 13.96875 46.921875 20.515625 \r\n", | |
"Q 46.921875 27.09375 42.890625 30.859375 \r\n", | |
"Q 38.875 34.625 31.78125 34.625 \r\n", | |
"z\r\n", | |
"M 21.921875 38.8125 \r\n", | |
"Q 15.578125 40.375 12.03125 44.71875 \r\n", | |
"Q 8.5 49.078125 8.5 55.328125 \r\n", | |
"Q 8.5 64.0625 14.71875 69.140625 \r\n", | |
"Q 20.953125 74.21875 31.78125 74.21875 \r\n", | |
"Q 42.671875 74.21875 48.875 69.140625 \r\n", | |
"Q 55.078125 64.0625 55.078125 55.328125 \r\n", | |
"Q 55.078125 49.078125 51.53125 44.71875 \r\n", | |
"Q 48 40.375 41.703125 38.8125 \r\n", | |
"Q 48.828125 37.15625 52.796875 32.3125 \r\n", | |
"Q 56.78125 27.484375 56.78125 20.515625 \r\n", | |
"Q 56.78125 9.90625 50.3125 4.234375 \r\n", | |
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.734375 -1.421875 13.25 4.234375 \r\n", | |
"Q 6.78125 9.90625 6.78125 20.515625 \r\n", | |
"Q 6.78125 27.484375 10.78125 32.3125 \r\n", | |
"Q 14.796875 37.15625 21.921875 38.8125 \r\n", | |
"z\r\n", | |
"M 18.3125 54.390625 \r\n", | |
"Q 18.3125 48.734375 21.84375 45.5625 \r\n", | |
"Q 25.390625 42.390625 31.78125 42.390625 \r\n", | |
"Q 38.140625 42.390625 41.71875 45.5625 \r\n", | |
"Q 45.3125 48.734375 45.3125 54.390625 \r\n", | |
"Q 45.3125 60.0625 41.71875 63.234375 \r\n", | |
"Q 38.140625 66.40625 31.78125 66.40625 \r\n", | |
"Q 25.390625 66.40625 21.84375 63.234375 \r\n", | |
"Q 18.3125 60.0625 18.3125 54.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-56\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 296.522184)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 228.654975 \r\n", | |
"L 922.903125 228.654975 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m1fb2266c98\" y=\"228.654975\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- 1.0 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 232.454194)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 164.586986 \r\n", | |
"L 922.903125 164.586986 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m1fb2266c98\" y=\"164.586986\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- 1.2 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 168.386204)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 100.518996 \r\n", | |
"L 922.903125 100.518996 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m1fb2266c98\" y=\"100.518996\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- 1.4 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 37.796875 64.3125 \r\n", | |
"L 12.890625 25.390625 \r\n", | |
"L 37.796875 25.390625 \r\n", | |
"z\r\n", | |
"M 35.203125 72.90625 \r\n", | |
"L 47.609375 72.90625 \r\n", | |
"L 47.609375 25.390625 \r\n", | |
"L 58.015625 25.390625 \r\n", | |
"L 58.015625 17.1875 \r\n", | |
"L 47.609375 17.1875 \r\n", | |
"L 47.609375 0 \r\n", | |
"L 37.796875 0 \r\n", | |
"L 37.796875 17.1875 \r\n", | |
"L 4.890625 17.1875 \r\n", | |
"L 4.890625 26.703125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-52\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 104.318214)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-52\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 36.451006 \r\n", | |
"L 922.903125 36.451006 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m1fb2266c98\" y=\"36.451006\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- 1.6 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 33.015625 40.375 \r\n", | |
"Q 26.375 40.375 22.484375 35.828125 \r\n", | |
"Q 18.609375 31.296875 18.609375 23.390625 \r\n", | |
"Q 18.609375 15.53125 22.484375 10.953125 \r\n", | |
"Q 26.375 6.390625 33.015625 6.390625 \r\n", | |
"Q 39.65625 6.390625 43.53125 10.953125 \r\n", | |
"Q 47.40625 15.53125 47.40625 23.390625 \r\n", | |
"Q 47.40625 31.296875 43.53125 35.828125 \r\n", | |
"Q 39.65625 40.375 33.015625 40.375 \r\n", | |
"z\r\n", | |
"M 52.59375 71.296875 \r\n", | |
"L 52.59375 62.3125 \r\n", | |
"Q 48.875 64.0625 45.09375 64.984375 \r\n", | |
"Q 41.3125 65.921875 37.59375 65.921875 \r\n", | |
"Q 27.828125 65.921875 22.671875 59.328125 \r\n", | |
"Q 17.53125 52.734375 16.796875 39.40625 \r\n", | |
"Q 19.671875 43.65625 24.015625 45.921875 \r\n", | |
"Q 28.375 48.1875 33.59375 48.1875 \r\n", | |
"Q 44.578125 48.1875 50.953125 41.515625 \r\n", | |
"Q 57.328125 34.859375 57.328125 23.390625 \r\n", | |
"Q 57.328125 12.15625 50.6875 5.359375 \r\n", | |
"Q 44.046875 -1.421875 33.015625 -1.421875 \r\n", | |
"Q 20.359375 -1.421875 13.671875 8.265625 \r\n", | |
"Q 6.984375 17.96875 6.984375 36.375 \r\n", | |
"Q 6.984375 53.65625 15.1875 63.9375 \r\n", | |
"Q 23.390625 74.21875 37.203125 74.21875 \r\n", | |
"Q 40.921875 74.21875 44.703125 73.484375 \r\n", | |
"Q 48.484375 72.75 52.59375 71.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-54\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 40.250224)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 286.899525 \r\n", | |
"L 31.416066 289.06847 \r\n", | |
"L 36.667831 285.164368 \r\n", | |
"L 37.980772 282.995422 \r\n", | |
"L 39.293713 284.817337 \r\n", | |
"L 40.606654 282.648391 \r\n", | |
"L 44.545478 283.429212 \r\n", | |
"L 45.858419 282.041086 \r\n", | |
"L 47.17136 281.260266 \r\n", | |
"L 48.484301 282.908665 \r\n", | |
"L 49.797243 279.264836 \r\n", | |
"L 53.736066 277.356164 \r\n", | |
"L 55.049007 277.87671 \r\n", | |
"L 56.361949 280.999992 \r\n", | |
"L 57.67489 281.694055 \r\n", | |
"L 58.987831 279.264836 \r\n", | |
"L 62.926654 280.392688 \r\n", | |
"L 64.239596 279.958898 \r\n", | |
"L 65.552537 280.30593 \r\n", | |
"L 66.865478 279.004562 \r\n", | |
"L 68.178419 276.31507 \r\n", | |
"L 72.117243 275.88128 \r\n", | |
"L 73.430184 274.232882 \r\n", | |
"L 74.743125 272.931514 \r\n", | |
"L 76.056066 273.278546 \r\n", | |
"L 77.369007 275.621007 \r\n", | |
"L 81.307831 274.666671 \r\n", | |
"L 82.620772 273.191788 \r\n", | |
"L 83.933713 270.849326 \r\n", | |
"L 85.246654 265.90413 \r\n", | |
"L 86.559596 267.89956 \r\n", | |
"L 90.498419 265.557099 \r\n", | |
"L 91.81136 266.164404 \r\n", | |
"L 93.124301 267.379013 \r\n", | |
"L 94.437243 267.812802 \r\n", | |
"L 95.750184 268.680381 \r\n", | |
"L 99.689007 267.11874 \r\n", | |
"L 101.001949 267.726045 \r\n", | |
"L 102.31489 267.379013 \r\n", | |
"L 103.627831 266.164404 \r\n", | |
"L 104.940772 265.383583 \r\n", | |
"L 108.879596 263.821942 \r\n", | |
"L 110.192537 266.077646 \r\n", | |
"L 111.505478 266.598193 \r\n", | |
"L 112.818419 268.333349 \r\n", | |
"L 118.070184 269.11417 \r\n", | |
"L 119.383125 265.817372 \r\n", | |
"L 120.696066 266.771708 \r\n", | |
"L 122.009007 265.817372 \r\n", | |
"L 123.321949 265.383583 \r\n", | |
"L 127.260772 267.205498 \r\n", | |
"L 128.573713 267.205498 \r\n", | |
"L 129.886654 268.853896 \r\n", | |
"L 131.199596 271.543389 \r\n", | |
"L 132.512537 267.89956 \r\n", | |
"L 136.45136 271.89042 \r\n", | |
"L 137.764301 270.849326 \r\n", | |
"L 139.077243 268.333349 \r\n", | |
"L 140.390184 267.986318 \r\n", | |
"L 143.016066 264.978713 \r\n", | |
"L 146.95489 260.525145 \r\n", | |
"L 148.267831 259.657566 \r\n", | |
"L 149.580772 259.831082 \r\n", | |
"L 150.893713 258.529715 \r\n", | |
"L 154.832537 259.13702 \r\n", | |
"L 156.145478 260.785418 \r\n", | |
"L 157.458419 261.739754 \r\n", | |
"L 158.77136 261.739754 \r\n", | |
"L 164.023125 260.69866 \r\n", | |
"L 165.336066 260.69866 \r\n", | |
"L 166.649007 261.91327 \r\n", | |
"L 167.961949 263.474911 \r\n", | |
"L 169.27489 262.69409 \r\n", | |
"L 173.213713 263.735184 \r\n", | |
"L 174.526654 262.954364 \r\n", | |
"L 175.839596 259.744324 \r\n", | |
"L 177.152537 257.92241 \r\n", | |
"L 178.465478 257.835652 \r\n", | |
"L 182.404301 256.794558 \r\n", | |
"L 183.717243 257.054832 \r\n", | |
"L 186.343125 255.232917 \r\n", | |
"L 187.656066 255.059402 \r\n", | |
"L 191.59489 258.095926 \r\n", | |
"L 192.907831 256.794558 \r\n", | |
"L 194.220772 259.570809 \r\n", | |
"L 196.846654 261.826512 \r\n", | |
"L 200.785478 263.041122 \r\n", | |
"L 202.098419 265.296825 \r\n", | |
"L 203.41136 265.730614 \r\n", | |
"L 204.724301 264.342489 \r\n", | |
"L 206.037243 263.735184 \r\n", | |
"L 209.976066 265.383583 \r\n", | |
"L 211.289007 265.12331 \r\n", | |
"L 212.601949 265.990888 \r\n", | |
"L 213.91489 267.465771 \r\n", | |
"L 216.540772 267.697125 \r\n", | |
"L 219.166654 267.986318 \r\n", | |
"L 220.479596 267.465771 \r\n", | |
"L 221.792537 269.808232 \r\n", | |
"L 223.105478 269.287685 \r\n", | |
"L 224.418419 271.022842 \r\n", | |
"L 228.357243 272.497725 \r\n", | |
"L 229.670184 270.849326 \r\n", | |
"L 230.983125 266.598193 \r\n", | |
"L 232.296066 264.429247 \r\n", | |
"L 233.609007 262.780848 \r\n", | |
"L 237.547831 260.525145 \r\n", | |
"L 238.860772 260.69866 \r\n", | |
"L 241.486654 261.566239 \r\n", | |
"L 242.799596 262.780848 \r\n", | |
"L 246.738419 262.520575 \r\n", | |
"L 248.05136 261.13245 \r\n", | |
"L 249.364301 260.958934 \r\n", | |
"L 250.677243 260.178113 \r\n", | |
"L 251.990184 261.305965 \r\n", | |
"L 255.929007 262.433817 \r\n", | |
"L 257.241949 264.776278 \r\n", | |
"L 258.55489 265.12331 \r\n", | |
"L 259.867831 265.12331 \r\n", | |
"L 261.180772 264.342489 \r\n", | |
"L 265.119596 260.438387 \r\n", | |
"L 266.432537 260.264871 \r\n", | |
"L 267.745478 257.315105 \r\n", | |
"L 269.058419 256.100496 \r\n", | |
"L 271.684301 256.013738 \r\n", | |
"L 274.310184 255.840222 \r\n", | |
"L 275.623125 257.228347 \r\n", | |
"L 276.936066 257.228347 \r\n", | |
"L 278.249007 256.794558 \r\n", | |
"L 279.561949 256.7078 \r\n", | |
"L 283.500772 257.054832 \r\n", | |
"L 286.126654 257.748894 \r\n", | |
"L 287.439596 260.004598 \r\n", | |
"L 288.752537 257.315105 \r\n", | |
"L 292.69136 259.13702 \r\n", | |
"L 294.004301 257.662136 \r\n", | |
"L 295.317243 257.054832 \r\n", | |
"L 296.630184 255.319675 \r\n", | |
"L 297.943125 255.232917 \r\n", | |
"L 301.881949 252.803698 \r\n", | |
"L 303.19489 254.105065 \r\n", | |
"L 304.507831 253.671276 \r\n", | |
"L 305.820772 254.278581 \r\n", | |
"L 307.133713 254.105065 \r\n", | |
"L 311.072537 258.789988 \r\n", | |
"L 312.385478 262.173544 \r\n", | |
"L 313.698419 260.004598 \r\n", | |
"L 316.324301 254.278581 \r\n", | |
"L 320.263125 254.71237 \r\n", | |
"L 321.576066 256.621042 \r\n", | |
"L 322.889007 255.232917 \r\n", | |
"L 324.201949 258.529715 \r\n", | |
"L 325.51489 255.493191 \r\n", | |
"L 329.453713 249.246627 \r\n", | |
"L 330.766654 248.292291 \r\n", | |
"L 332.079596 250.981784 \r\n", | |
"L 333.392537 252.890456 \r\n", | |
"L 334.705478 252.803698 \r\n", | |
"L 338.644301 256.794558 \r\n", | |
"L 339.957243 254.191823 \r\n", | |
"L 341.270184 253.671276 \r\n", | |
"L 342.583125 249.506901 \r\n", | |
"L 343.896066 248.465807 \r\n", | |
"L 347.83489 248.899596 \r\n", | |
"L 349.147831 248.812838 \r\n", | |
"L 350.460772 249.159869 \r\n", | |
"L 351.773713 246.73065 \r\n", | |
"L 353.086654 246.123345 \r\n", | |
"L 357.025478 247.251197 \r\n", | |
"L 358.338419 249.420143 \r\n", | |
"L 360.964301 247.077681 \r\n", | |
"L 362.277243 249.506901 \r\n", | |
"L 366.216066 253.237487 \r\n", | |
"L 367.529007 252.456667 \r\n", | |
"L 368.841949 251.328815 \r\n", | |
"L 370.15489 251.93612 \r\n", | |
"L 371.467831 252.109635 \r\n", | |
"L 375.406654 254.625612 \r\n", | |
"L 376.719596 253.844792 \r\n", | |
"L 378.032537 255.232917 \r\n", | |
"L 379.345478 253.497761 \r\n", | |
"L 380.658419 253.237487 \r\n", | |
"L 384.597243 251.849362 \r\n", | |
"L 385.910184 249.420143 \r\n", | |
"L 387.223125 254.885886 \r\n", | |
"L 388.536066 258.876746 \r\n", | |
"L 389.849007 257.488621 \r\n", | |
"L 393.787831 254.191823 \r\n", | |
"L 395.100772 255.059402 \r\n", | |
"L 396.413713 257.054832 \r\n", | |
"L 397.726654 256.881316 \r\n", | |
"L 399.039596 254.972644 \r\n", | |
"L 402.978419 254.71237 \r\n", | |
"L 404.29136 252.803698 \r\n", | |
"L 405.604301 252.369909 \r\n", | |
"L 408.230184 253.324245 \r\n", | |
"L 412.169007 254.278581 \r\n", | |
"L 413.481949 253.497761 \r\n", | |
"L 414.79489 254.625612 \r\n", | |
"L 416.107831 252.283151 \r\n", | |
"L 417.420772 252.71694 \r\n", | |
"L 421.359596 250.895026 \r\n", | |
"L 422.672537 249.94069 \r\n", | |
"L 423.985478 249.853932 \r\n", | |
"L 425.298419 248.812838 \r\n", | |
"L 426.61136 248.72608 \r\n", | |
"L 433.176066 247.251197 \r\n", | |
"L 434.489007 245.602798 \r\n", | |
"L 437.11489 245.487121 \r\n", | |
"L 439.740772 245.429283 \r\n", | |
"L 441.053713 243.694126 \r\n", | |
"L 442.366654 243.173579 \r\n", | |
"L 443.679596 242.826548 \r\n", | |
"L 444.992537 242.826548 \r\n", | |
"L 448.93136 241.178149 \r\n", | |
"L 450.244301 241.091391 \r\n", | |
"L 451.557243 241.611938 \r\n", | |
"L 452.870184 242.73979 \r\n", | |
"L 454.183125 242.913306 \r\n", | |
"L 458.121949 241.178149 \r\n", | |
"L 459.43489 239.269477 \r\n", | |
"L 460.747831 237.707836 \r\n", | |
"L 463.373713 236.927015 \r\n", | |
"L 467.312537 236.146195 \r\n", | |
"L 468.625478 241.438422 \r\n", | |
"L 469.938419 241.958969 \r\n", | |
"L 471.25136 241.178149 \r\n", | |
"L 472.564301 241.004633 \r\n", | |
"L 476.503125 239.616508 \r\n", | |
"L 477.816066 241.785454 \r\n", | |
"L 479.129007 241.091391 \r\n", | |
"L 480.441949 242.045727 \r\n", | |
"L 483.067831 241.293826 \r\n", | |
"L 485.693713 240.657602 \r\n", | |
"L 487.006654 240.137055 \r\n", | |
"L 488.319596 240.310571 \r\n", | |
"L 489.632537 240.831118 \r\n", | |
"L 490.945478 240.397329 \r\n", | |
"L 494.884301 238.401898 \r\n", | |
"L 496.197243 238.835688 \r\n", | |
"L 497.510184 241.438422 \r\n", | |
"L 498.823125 240.050297 \r\n", | |
"L 500.136066 237.53432 \r\n", | |
"L 504.07489 239.442992 \r\n", | |
"L 509.326654 239.52975 \r\n", | |
"L 513.265478 240.223813 \r\n", | |
"L 515.89136 239.703266 \r\n", | |
"L 518.517243 237.794594 \r\n", | |
"L 522.456066 239.52975 \r\n", | |
"L 523.769007 237.274047 \r\n", | |
"L 525.081949 236.493226 \r\n", | |
"L 526.39489 233.977249 \r\n", | |
"L 527.707831 232.849397 \r\n", | |
"L 531.646654 232.675882 \r\n", | |
"L 532.959596 232.242093 \r\n", | |
"L 534.272537 229.465842 \r\n", | |
"L 535.585478 231.200999 \r\n", | |
"L 536.898419 230.073147 \r\n", | |
"L 540.837243 235.018343 \r\n", | |
"L 542.150184 232.415608 \r\n", | |
"L 543.463125 230.506936 \r\n", | |
"L 544.776066 231.895061 \r\n", | |
"L 546.089007 227.470412 \r\n", | |
"L 550.027831 228.945295 \r\n", | |
"L 551.340772 226.34256 \r\n", | |
"L 552.653713 225.301466 \r\n", | |
"L 553.966654 221.744395 \r\n", | |
"L 555.279596 219.401934 \r\n", | |
"L 559.218419 219.57545 \r\n", | |
"L 560.53136 216.278652 \r\n", | |
"L 561.844301 218.968145 \r\n", | |
"L 563.157243 217.666777 \r\n", | |
"L 564.470184 215.671347 \r\n", | |
"L 568.409007 215.671347 \r\n", | |
"L 569.721949 216.191894 \r\n", | |
"L 571.03489 214.717011 \r\n", | |
"L 572.347831 213.589159 \r\n", | |
"L 573.660772 214.196464 \r\n", | |
"L 578.912537 221.744395 \r\n", | |
"L 580.225478 230.420178 \r\n", | |
"L 581.538419 235.018343 \r\n", | |
"L 582.85136 245.776314 \r\n", | |
"L 586.790184 238.835688 \r\n", | |
"L 588.103125 230.680452 \r\n", | |
"L 589.416066 235.972679 \r\n", | |
"L 590.729007 232.415608 \r\n", | |
"L 592.041949 236.840258 \r\n", | |
"L 597.293713 234.237523 \r\n", | |
"L 598.606654 236.579984 \r\n", | |
"L 599.919596 249.853932 \r\n", | |
"L 601.232537 254.365339 \r\n", | |
"L 605.17136 259.310535 \r\n", | |
"L 606.484301 264.516005 \r\n", | |
"L 607.797243 256.274011 \r\n", | |
"L 609.110184 253.150729 \r\n", | |
"L 610.423125 242.132485 \r\n", | |
"L 614.361949 264.949794 \r\n", | |
"L 615.67489 258.876746 \r\n", | |
"L 616.987831 248.118775 \r\n", | |
"L 618.300772 246.210103 \r\n", | |
"L 619.613713 239.442992 \r\n", | |
"L 623.552537 234.150765 \r\n", | |
"L 624.865478 228.164475 \r\n", | |
"L 626.178419 242.392759 \r\n", | |
"L 627.49136 245.082251 \r\n", | |
"L 628.804301 249.853932 \r\n", | |
"L 632.743125 240.74436 \r\n", | |
"L 634.056066 229.465842 \r\n", | |
"L 635.369007 235.452132 \r\n", | |
"L 636.681949 229.465842 \r\n", | |
"L 637.99489 225.735255 \r\n", | |
"L 641.933713 233.54346 \r\n", | |
"L 643.246654 229.379084 \r\n", | |
"L 644.559596 227.123381 \r\n", | |
"L 645.872537 225.648498 \r\n", | |
"L 647.185478 219.228418 \r\n", | |
"L 651.124301 219.054903 \r\n", | |
"L 652.437243 217.493262 \r\n", | |
"L 653.750184 217.840293 \r\n", | |
"L 656.376066 223.739825 \r\n", | |
"L 660.31489 217.232988 \r\n", | |
"L 661.627831 214.196464 \r\n", | |
"L 662.940772 214.977285 \r\n", | |
"L 664.253713 212.895097 \r\n", | |
"L 669.505478 221.137091 \r\n", | |
"L 670.818419 218.794629 \r\n", | |
"L 672.13136 216.105137 \r\n", | |
"L 673.444301 216.885957 \r\n", | |
"L 674.757243 214.283222 \r\n", | |
"L 680.009007 213.328886 \r\n", | |
"L 681.321949 219.57545 \r\n", | |
"L 682.63489 224.520646 \r\n", | |
"L 683.947831 221.831153 \r\n", | |
"L 687.886654 217.232988 \r\n", | |
"L 689.199596 214.717011 \r\n", | |
"L 690.512537 216.625683 \r\n", | |
"L 691.825478 219.922481 \r\n", | |
"L 693.138419 220.095997 \r\n", | |
"L 697.077243 215.064043 \r\n", | |
"L 698.390184 213.849433 \r\n", | |
"L 699.703125 214.022949 \r\n", | |
"L 701.016066 211.854003 \r\n", | |
"L 702.329007 214.717011 \r\n", | |
"L 706.267831 216.105137 \r\n", | |
"L 707.580772 218.100567 \r\n", | |
"L 708.893713 215.931621 \r\n", | |
"L 711.519596 209.858573 \r\n", | |
"L 715.458419 207.342596 \r\n", | |
"L 716.77136 205.433924 \r\n", | |
"L 718.084301 204.566345 \r\n", | |
"L 719.397243 211.506972 \r\n", | |
"L 724.649007 223.479552 \r\n", | |
"L 725.961949 207.342596 \r\n", | |
"L 727.27489 206.561775 \r\n", | |
"L 728.587831 210.118846 \r\n", | |
"L 729.900772 207.082322 \r\n", | |
"L 733.839596 211.940761 \r\n", | |
"L 735.152537 209.598299 \r\n", | |
"L 737.778419 218.013809 \r\n", | |
"L 739.09136 215.237558 \r\n", | |
"L 743.030184 217.14623 \r\n", | |
"L 744.343125 209.16451 \r\n", | |
"L 746.969007 202.310642 \r\n", | |
"L 748.281949 200.662243 \r\n", | |
"L 752.220772 192.333491 \r\n", | |
"L 753.533713 191.726187 \r\n", | |
"L 754.846654 194.762711 \r\n", | |
"L 756.159596 195.109742 \r\n", | |
"L 757.472537 197.365446 \r\n", | |
"L 761.41136 190.771851 \r\n", | |
"L 762.724301 195.1965 \r\n", | |
"L 764.037243 188.689663 \r\n", | |
"L 765.350184 189.904272 \r\n", | |
"L 766.663125 186.086928 \r\n", | |
"L 770.601949 186.00017 \r\n", | |
"L 771.91489 178.972786 \r\n", | |
"L 773.227831 185.392865 \r\n", | |
"L 774.540772 183.050404 \r\n", | |
"L 775.853713 186.086928 \r\n", | |
"L 779.792537 185.21935 \r\n", | |
"L 781.105478 181.141732 \r\n", | |
"L 782.418419 183.223919 \r\n", | |
"L 783.73136 174.981926 \r\n", | |
"L 785.044301 169.255909 \r\n", | |
"L 788.983125 166.219385 \r\n", | |
"L 790.296066 166.132627 \r\n", | |
"L 791.609007 165.525322 \r\n", | |
"L 792.921949 164.657744 \r\n", | |
"L 794.23489 161.187431 \r\n", | |
"L 798.173713 159.62579 \r\n", | |
"L 799.486654 159.365517 \r\n", | |
"L 800.799596 160.753642 \r\n", | |
"L 802.112537 158.324423 \r\n", | |
"L 803.425478 160.146337 \r\n", | |
"L 808.677243 157.543602 \r\n", | |
"L 809.990184 155.721688 \r\n", | |
"L 811.303125 156.762782 \r\n", | |
"L 812.616066 150.863249 \r\n", | |
"L 816.55489 146.265085 \r\n", | |
"L 817.867831 142.100709 \r\n", | |
"L 819.180772 136.374692 \r\n", | |
"L 820.493713 134.899809 \r\n", | |
"L 821.806654 136.201176 \r\n", | |
"L 825.745478 136.027661 \r\n", | |
"L 827.058419 137.936333 \r\n", | |
"L 829.684301 126.224026 \r\n", | |
"L 830.997243 142.100709 \r\n", | |
"L 834.936066 139.758247 \r\n", | |
"L 836.249007 140.539068 \r\n", | |
"L 837.561949 145.137233 \r\n", | |
"L 838.87489 144.356412 \r\n", | |
"L 840.187831 149.908913 \r\n", | |
"L 844.126654 147.045905 \r\n", | |
"L 845.439596 144.44317 \r\n", | |
"L 846.752537 143.488834 \r\n", | |
"L 848.065478 151.297039 \r\n", | |
"L 849.378419 149.041335 \r\n", | |
"L 853.317243 155.374657 \r\n", | |
"L 854.630184 152.858679 \r\n", | |
"L 855.943125 146.265085 \r\n", | |
"L 857.256066 153.986531 \r\n", | |
"L 858.569007 148.43403 \r\n", | |
"L 862.507831 134.552778 \r\n", | |
"L 863.820772 127.872425 \r\n", | |
"L 865.133713 134.899809 \r\n", | |
"L 866.446654 131.516254 \r\n", | |
"L 867.759596 134.813051 \r\n", | |
"L 871.698419 130.388402 \r\n", | |
"L 873.01136 127.004847 \r\n", | |
"L 874.324301 128.826761 \r\n", | |
"L 875.637243 125.529963 \r\n", | |
"L 876.950184 125.876995 \r\n", | |
"L 880.889007 121.27883 \r\n", | |
"L 882.201949 116.940938 \r\n", | |
"L 883.51489 116.680665 \r\n", | |
"L 884.827831 121.365588 \r\n", | |
"L 886.140772 118.155548 \r\n", | |
"L 890.079596 117.027696 \r\n", | |
"L 891.392537 123.27426 \r\n", | |
"L 894.018419 130.735433 \r\n", | |
"L 895.33136 129.694339 \r\n", | |
"L 899.270184 134.552778 \r\n", | |
"L 900.583125 134.899809 \r\n", | |
"L 901.896066 135.767387 \r\n", | |
"L 903.209007 136.808481 \r\n", | |
"L 904.521949 138.370122 \r\n", | |
"L 908.460772 128.392972 \r\n", | |
"L 909.773713 126.744573 \r\n", | |
"L 912.399596 116.333634 \r\n", | |
"L 913.712537 118.676095 \r\n", | |
"L 917.65136 110.08707 \r\n", | |
"L 918.964301 120.324494 \r\n", | |
"L 921.590184 115.639571 \r\n", | |
"L 922.903125 115.639571 \r\n", | |
"L 922.903125 115.639571 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 329.219927 \r\n", | |
"L 31.416066 335.476295 \r\n", | |
"L 37.980772 328.203935 \r\n", | |
"L 39.293713 328.096989 \r\n", | |
"L 40.606654 326.118479 \r\n", | |
"L 44.545478 327.241417 \r\n", | |
"L 45.858419 326.546265 \r\n", | |
"L 47.17136 324.888595 \r\n", | |
"L 48.484301 327.401837 \r\n", | |
"L 49.797243 324.781648 \r\n", | |
"L 53.736066 322.16146 \r\n", | |
"L 55.049007 322.963558 \r\n", | |
"L 56.361949 325.423327 \r\n", | |
"L 57.67489 326.599738 \r\n", | |
"L 58.987831 322.482299 \r\n", | |
"L 62.926654 322.054513 \r\n", | |
"L 64.239596 322.535772 \r\n", | |
"L 65.552537 324.781648 \r\n", | |
"L 66.865478 321.038522 \r\n", | |
"L 68.178419 319.487798 \r\n", | |
"L 72.117243 318.044021 \r\n", | |
"L 73.430184 314.996046 \r\n", | |
"L 74.743125 313.124483 \r\n", | |
"L 76.056066 312.536277 \r\n", | |
"L 77.369007 315.530779 \r\n", | |
"L 81.307831 313.498796 \r\n", | |
"L 82.620772 312.429331 \r\n", | |
"L 83.933713 310.504294 \r\n", | |
"L 85.246654 306.333382 \r\n", | |
"L 86.559596 306.707695 \r\n", | |
"L 90.498419 305.959069 \r\n", | |
"L 91.81136 306.333382 \r\n", | |
"L 93.124301 307.670213 \r\n", | |
"L 94.437243 308.472312 \r\n", | |
"L 95.750184 308.151472 \r\n", | |
"L 99.689007 305.317391 \r\n", | |
"L 101.001949 304.568765 \r\n", | |
"L 103.627831 303.285408 \r\n", | |
"L 104.940772 302.643729 \r\n", | |
"L 108.879596 301.093005 \r\n", | |
"L 110.192537 303.445827 \r\n", | |
"L 111.505478 304.034033 \r\n", | |
"L 112.818419 306.386855 \r\n", | |
"L 118.070184 306.493802 \r\n", | |
"L 119.383125 301.734684 \r\n", | |
"L 120.696066 301.734684 \r\n", | |
"L 122.009007 300.986059 \r\n", | |
"L 123.321949 299.328388 \r\n", | |
"L 127.260772 300.34438 \r\n", | |
"L 128.573713 299.756174 \r\n", | |
"L 129.886654 300.558273 \r\n", | |
"L 131.199596 302.697202 \r\n", | |
"L 132.512537 296.761673 \r\n", | |
"L 136.45136 301.360371 \r\n", | |
"L 137.764301 300.504799 \r\n", | |
"L 139.077243 299.328388 \r\n", | |
"L 140.390184 298.900602 \r\n", | |
"L 141.703125 296.761673 \r\n", | |
"L 146.95489 291.200456 \r\n", | |
"L 148.267831 289.43584 \r\n", | |
"L 149.580772 288.099009 \r\n", | |
"L 150.893713 289.489313 \r\n", | |
"L 156.145478 289.542786 \r\n", | |
"L 157.458419 290.558778 \r\n", | |
"L 158.77136 289.43584 \r\n", | |
"L 160.084301 289.596259 \r\n", | |
"L 165.336066 288.633741 \r\n", | |
"L 166.649007 289.008054 \r\n", | |
"L 167.961949 288.740688 \r\n", | |
"L 169.27489 287.724696 \r\n", | |
"L 173.213713 288.687214 \r\n", | |
"L 174.526654 287.083017 \r\n", | |
"L 175.839596 283.82115 \r\n", | |
"L 177.152537 280.933595 \r\n", | |
"L 178.465478 281.949587 \r\n", | |
"L 182.404301 281.949587 \r\n", | |
"L 183.717243 282.912105 \r\n", | |
"L 186.343125 279.971077 \r\n", | |
"L 187.656066 280.291916 \r\n", | |
"L 191.59489 285.264927 \r\n", | |
"L 192.907831 283.928096 \r\n", | |
"L 194.220772 286.494812 \r\n", | |
"L 196.846654 290.184465 \r\n", | |
"L 200.785478 292.75118 \r\n", | |
"L 202.098419 296.440834 \r\n", | |
"L 203.41136 295.424842 \r\n", | |
"L 204.724301 292.644234 \r\n", | |
"L 206.037243 291.895609 \r\n", | |
"L 209.976066 295.104003 \r\n", | |
"L 211.289007 296.494307 \r\n", | |
"L 212.601949 296.226941 \r\n", | |
"L 213.91489 299.167969 \r\n", | |
"L 219.166654 300.825639 \r\n", | |
"L 220.479596 300.077014 \r\n", | |
"L 221.792537 300.825639 \r\n", | |
"L 223.105478 300.504799 \r\n", | |
"L 225.73136 302.037699 \r\n", | |
"L 228.357243 303.499301 \r\n", | |
"L 229.670184 305.424337 \r\n", | |
"L 230.983125 298.686709 \r\n", | |
"L 232.296066 295.799155 \r\n", | |
"L 233.609007 291.949082 \r\n", | |
"L 237.547831 288.794161 \r\n", | |
"L 238.860772 287.083017 \r\n", | |
"L 241.486654 289.43584 \r\n", | |
"L 242.799596 291.25393 \r\n", | |
"L 246.738419 292.162975 \r\n", | |
"L 248.05136 289.596259 \r\n", | |
"L 250.677243 286.762178 \r\n", | |
"L 251.990184 288.740688 \r\n", | |
"L 255.929007 290.398358 \r\n", | |
"L 257.241949 291.788662 \r\n", | |
"L 258.55489 293.767172 \r\n", | |
"L 259.867831 290.558778 \r\n", | |
"L 261.180772 290.291411 \r\n", | |
"L 265.119596 285.906606 \r\n", | |
"L 266.432537 286.494812 \r\n", | |
"L 267.745478 283.232944 \r\n", | |
"L 269.058419 282.270426 \r\n", | |
"L 270.37136 282.484319 \r\n", | |
"L 274.310184 282.484319 \r\n", | |
"L 275.623125 284.141989 \r\n", | |
"L 276.936066 282.591266 \r\n", | |
"L 278.249007 282.323899 \r\n", | |
"L 279.561949 282.270426 \r\n", | |
"L 283.500772 281.521801 \r\n", | |
"L 284.813713 280.719702 \r\n", | |
"L 286.126654 282.377373 \r\n", | |
"L 287.439596 283.286418 \r\n", | |
"L 288.752537 279.917604 \r\n", | |
"L 292.69136 281.094015 \r\n", | |
"L 294.004301 277.297415 \r\n", | |
"L 295.317243 278.580773 \r\n", | |
"L 296.630184 275.479325 \r\n", | |
"L 297.943125 275.693218 \r\n", | |
"L 301.881949 274.142494 \r\n", | |
"L 303.19489 275.105013 \r\n", | |
"L 304.507831 274.195968 \r\n", | |
"L 305.820772 276.281424 \r\n", | |
"L 307.133713 276.869629 \r\n", | |
"L 311.072537 283.767677 \r\n", | |
"L 312.385478 287.510803 \r\n", | |
"L 313.698419 284.837141 \r\n", | |
"L 316.324301 278.20646 \r\n", | |
"L 320.263125 279.650238 \r\n", | |
"L 321.576066 279.596764 \r\n", | |
"L 322.889007 279.864131 \r\n", | |
"L 324.201949 282.00306 \r\n", | |
"L 325.51489 280.826649 \r\n", | |
"L 329.453713 273.126503 \r\n", | |
"L 330.766654 271.950092 \r\n", | |
"L 332.079596 274.142494 \r\n", | |
"L 333.392537 275.693218 \r\n", | |
"L 334.705478 276.602263 \r\n", | |
"L 338.644301 280.612756 \r\n", | |
"L 339.957243 277.511308 \r\n", | |
"L 341.270184 278.099514 \r\n", | |
"L 342.583125 274.035548 \r\n", | |
"L 343.896066 272.484824 \r\n", | |
"L 347.83489 273.661235 \r\n", | |
"L 349.147831 273.661235 \r\n", | |
"L 350.460772 274.035548 \r\n", | |
"L 351.773713 270.345895 \r\n", | |
"L 353.086654 268.795171 \r\n", | |
"L 357.025478 271.147993 \r\n", | |
"L 358.338419 274.89112 \r\n", | |
"L 359.65136 274.944593 \r\n", | |
"L 360.964301 272.377878 \r\n", | |
"L 362.277243 275.051539 \r\n", | |
"L 366.216066 280.02455 \r\n", | |
"L 367.529007 277.297415 \r\n", | |
"L 368.841949 277.885621 \r\n", | |
"L 370.15489 276.976576 \r\n", | |
"L 371.467831 277.297415 \r\n", | |
"L 375.406654 279.008559 \r\n", | |
"L 376.719596 279.757184 \r\n", | |
"L 378.032537 283.179471 \r\n", | |
"L 379.345478 278.687719 \r\n", | |
"L 380.658419 278.420353 \r\n", | |
"L 384.597243 278.901612 \r\n", | |
"L 385.910184 275.211959 \r\n", | |
"L 387.223125 281.254435 \r\n", | |
"L 388.536066 284.409356 \r\n", | |
"L 389.849007 282.323899 \r\n", | |
"L 393.787831 277.725201 \r\n", | |
"L 395.100772 278.901612 \r\n", | |
"L 396.413713 280.505809 \r\n", | |
"L 397.726654 279.222452 \r\n", | |
"L 399.039596 276.334897 \r\n", | |
"L 402.978419 276.655736 \r\n", | |
"L 404.29136 274.249441 \r\n", | |
"L 405.604301 273.821655 \r\n", | |
"L 406.917243 275.532798 \r\n", | |
"L 412.169007 280.02455 \r\n", | |
"L 413.481949 277.885621 \r\n", | |
"L 414.79489 281.949587 \r\n", | |
"L 416.107831 278.099514 \r\n", | |
"L 417.420772 276.334897 \r\n", | |
"L 421.359596 272.75219 \r\n", | |
"L 422.672537 271.09452 \r\n", | |
"L 423.985478 273.393869 \r\n", | |
"L 425.298419 271.950092 \r\n", | |
"L 429.237243 269.971582 \r\n", | |
"L 431.863125 268.688224 \r\n", | |
"L 433.176066 268.581278 \r\n", | |
"L 434.489007 266.923608 \r\n", | |
"L 435.801949 266.870134 \r\n", | |
"L 439.740772 266.335402 \r\n", | |
"L 441.053713 264.249946 \r\n", | |
"L 442.366654 262.431856 \r\n", | |
"L 443.679596 263.394374 \r\n", | |
"L 444.992537 262.966588 \r\n", | |
"L 448.93136 260.988078 \r\n", | |
"L 450.244301 259.597774 \r\n", | |
"L 451.557243 260.02556 \r\n", | |
"L 452.870184 261.522811 \r\n", | |
"L 454.183125 262.00407 \r\n", | |
"L 458.121949 260.720712 \r\n", | |
"L 459.43489 257.405372 \r\n", | |
"L 463.373713 256.068541 \r\n", | |
"L 467.312537 256.122014 \r\n", | |
"L 468.625478 261.950597 \r\n", | |
"L 469.938419 262.00407 \r\n", | |
"L 471.25136 262.217963 \r\n", | |
"L 472.564301 260.560293 \r\n", | |
"L 476.503125 258.956095 \r\n", | |
"L 477.816066 261.201971 \r\n", | |
"L 479.129007 260.239453 \r\n", | |
"L 480.441949 260.720712 \r\n", | |
"L 481.75489 259.918614 \r\n", | |
"L 485.693713 258.314417 \r\n", | |
"L 487.006654 257.084532 \r\n", | |
"L 488.319596 257.619265 \r\n", | |
"L 489.632537 257.565791 \r\n", | |
"L 490.945478 256.068541 \r\n", | |
"L 494.884301 254.303924 \r\n", | |
"L 496.197243 254.73171 \r\n", | |
"L 497.510184 256.924112 \r\n", | |
"L 498.823125 253.876138 \r\n", | |
"L 500.136066 252.432361 \r\n", | |
"L 504.07489 254.357397 \r\n", | |
"L 509.326654 252.218468 \r\n", | |
"L 513.265478 253.501825 \r\n", | |
"L 515.89136 251.09553 \r\n", | |
"L 517.204301 248.154502 \r\n", | |
"L 518.517243 246.175992 \r\n", | |
"L 522.456066 247.352403 \r\n", | |
"L 523.769007 243.66275 \r\n", | |
"L 525.081949 244.144009 \r\n", | |
"L 527.707831 239.277945 \r\n", | |
"L 531.646654 238.422373 \r\n", | |
"L 532.959596 237.406382 \r\n", | |
"L 534.272537 234.893139 \r\n", | |
"L 535.585478 235.053559 \r\n", | |
"L 536.898419 232.968103 \r\n", | |
"L 540.837243 238.529319 \r\n", | |
"L 542.150184 236.925122 \r\n", | |
"L 543.463125 232.005585 \r\n", | |
"L 544.776066 236.443863 \r\n", | |
"L 546.089007 229.11803 \r\n", | |
"L 550.027831 232.59379 \r\n", | |
"L 551.340772 228.529824 \r\n", | |
"L 552.653713 224.840171 \r\n", | |
"L 553.966654 223.556814 \r\n", | |
"L 555.279596 219.118535 \r\n", | |
"L 559.218419 219.065062 \r\n", | |
"L 560.53136 214.198997 \r\n", | |
"L 561.844301 218.690749 \r\n", | |
"L 563.157243 216.070561 \r\n", | |
"L 564.470184 214.092051 \r\n", | |
"L 568.409007 213.396899 \r\n", | |
"L 569.721949 214.840676 \r\n", | |
"L 572.347831 209.225986 \r\n", | |
"L 574.973713 216.15077 \r\n", | |
"L 578.912537 226.177002 \r\n", | |
"L 580.225478 236.123024 \r\n", | |
"L 581.538419 239.224472 \r\n", | |
"L 582.85136 249.972592 \r\n", | |
"L 586.790184 238.689739 \r\n", | |
"L 588.103125 228.315931 \r\n", | |
"L 589.416066 237.620274 \r\n", | |
"L 590.729007 233.823675 \r\n", | |
"L 592.041949 238.3689 \r\n", | |
"L 597.293713 235.534818 \r\n", | |
"L 598.606654 233.556309 \r\n", | |
"L 599.919596 248.047555 \r\n", | |
"L 602.545478 256.852815 \r\n", | |
"L 605.17136 265.265937 \r\n", | |
"L 606.484301 263.929106 \r\n", | |
"L 607.797243 255.373389 \r\n", | |
"L 609.110184 243.716223 \r\n", | |
"L 610.423125 233.609782 \r\n", | |
"L 614.361949 253.180986 \r\n", | |
"L 616.987831 231.845165 \r\n", | |
"L 618.300772 233.502835 \r\n", | |
"L 619.613713 225.64227 \r\n", | |
"L 623.552537 224.412385 \r\n", | |
"L 624.865478 214.145524 \r\n", | |
"L 626.178419 228.315931 \r\n", | |
"L 628.804301 237.941114 \r\n", | |
"L 632.743125 229.27845 \r\n", | |
"L 634.056066 215.054569 \r\n", | |
"L 635.369007 221.792197 \r\n", | |
"L 636.681949 221.150518 \r\n", | |
"L 637.99489 218.36991 \r\n", | |
"L 641.933713 225.64227 \r\n", | |
"L 643.246654 217.514338 \r\n", | |
"L 644.559596 211.792702 \r\n", | |
"L 645.872537 208.156522 \r\n", | |
"L 647.185478 201.84668 \r\n", | |
"L 651.124301 205.108547 \r\n", | |
"L 652.437243 204.252976 \r\n", | |
"L 653.750184 205.162021 \r\n", | |
"L 655.063125 204.413395 \r\n", | |
"L 656.376066 209.653772 \r\n", | |
"L 660.31489 200.616795 \r\n", | |
"L 661.627831 201.151528 \r\n", | |
"L 662.940772 201.258474 \r\n", | |
"L 664.253713 194.895159 \r\n", | |
"L 669.505478 200.723742 \r\n", | |
"L 672.13136 189.013103 \r\n", | |
"L 673.444301 185.965129 \r\n", | |
"L 674.757243 182.435895 \r\n", | |
"L 680.009007 179.548341 \r\n", | |
"L 681.321949 186.018602 \r\n", | |
"L 682.63489 191.686765 \r\n", | |
"L 683.947831 188.95963 \r\n", | |
"L 687.886654 183.986619 \r\n", | |
"L 689.199596 182.756735 \r\n", | |
"L 690.512537 182.756735 \r\n", | |
"L 691.825478 184.788718 \r\n", | |
"L 693.138419 185.858182 \r\n", | |
"L 697.077243 179.013608 \r\n", | |
"L 698.390184 178.960135 \r\n", | |
"L 699.703125 186.660281 \r\n", | |
"L 701.016066 185.269977 \r\n", | |
"L 702.329007 187.46238 \r\n", | |
"L 706.267831 187.997112 \r\n", | |
"L 707.580772 190.831193 \r\n", | |
"L 708.893713 188.852684 \r\n", | |
"L 710.206654 187.408906 \r\n", | |
"L 711.519596 187.890165 \r\n", | |
"L 715.458419 185.376923 \r\n", | |
"L 716.77136 183.66578 \r\n", | |
"L 718.084301 177.730251 \r\n", | |
"L 719.397243 179.280975 \r\n", | |
"L 724.649007 189.815202 \r\n", | |
"L 725.961949 174.896169 \r\n", | |
"L 727.27489 171.580829 \r\n", | |
"L 728.587831 173.345445 \r\n", | |
"L 729.900772 169.174533 \r\n", | |
"L 733.839596 173.291972 \r\n", | |
"L 735.152537 166.768237 \r\n", | |
"L 737.778419 173.880178 \r\n", | |
"L 739.09136 170.457891 \r\n", | |
"L 743.030184 176.821206 \r\n", | |
"L 744.343125 166.768237 \r\n", | |
"L 746.969007 154.683286 \r\n", | |
"L 748.281949 152.865196 \r\n", | |
"L 752.220772 143.614326 \r\n", | |
"L 753.533713 141.68929 \r\n", | |
"L 754.846654 146.181042 \r\n", | |
"L 756.159596 141.742763 \r\n", | |
"L 757.472537 141.475397 \r\n", | |
"L 761.41136 136.128073 \r\n", | |
"L 762.724301 147.197033 \r\n", | |
"L 764.037243 141.421924 \r\n", | |
"L 765.350184 145.218524 \r\n", | |
"L 766.663125 142.972648 \r\n", | |
"L 770.601949 141.582343 \r\n", | |
"L 771.91489 133.400938 \r\n", | |
"L 773.227831 139.443414 \r\n", | |
"L 774.540772 135.379448 \r\n", | |
"L 775.853713 147.624819 \r\n", | |
"L 779.792537 146.234515 \r\n", | |
"L 781.105478 140.726772 \r\n", | |
"L 782.418419 140.780245 \r\n", | |
"L 783.73136 135.112082 \r\n", | |
"L 785.044301 121.797246 \r\n", | |
"L 788.983125 112.706796 \r\n", | |
"L 790.296066 108.80325 \r\n", | |
"L 791.609007 109.070616 \r\n", | |
"L 792.921949 108.054625 \r\n", | |
"L 794.23489 100.247532 \r\n", | |
"L 798.173713 105.274017 \r\n", | |
"L 799.486654 109.765768 \r\n", | |
"L 800.799596 113.295002 \r\n", | |
"L 802.112537 106.931687 \r\n", | |
"L 803.425478 108.535884 \r\n", | |
"L 807.364301 106.664321 \r\n", | |
"L 808.677243 104.525391 \r\n", | |
"L 809.990184 101.210051 \r\n", | |
"L 811.303125 100.140586 \r\n", | |
"L 812.616066 88.483421 \r\n", | |
"L 816.55489 80.034649 \r\n", | |
"L 817.867831 76.719309 \r\n", | |
"L 819.180772 67.628859 \r\n", | |
"L 820.493713 59.447454 \r\n", | |
"L 821.806654 63.083634 \r\n", | |
"L 825.745478 63.083634 \r\n", | |
"L 827.058419 71.158092 \r\n", | |
"L 828.37136 49.608378 \r\n", | |
"L 829.684301 50.677843 \r\n", | |
"L 830.997243 77.414461 \r\n", | |
"L 834.936066 78.163086 \r\n", | |
"L 836.249007 80.195069 \r\n", | |
"L 837.561949 87.14659 \r\n", | |
"L 838.87489 82.601365 \r\n", | |
"L 840.187831 93.296012 \r\n", | |
"L 844.126654 91.852234 \r\n", | |
"L 845.439596 86.665331 \r\n", | |
"L 846.752537 85.061134 \r\n", | |
"L 848.065478 99.55238 \r\n", | |
"L 849.378419 98.536389 \r\n", | |
"L 853.317243 108.375464 \r\n", | |
"L 855.943125 87.734795 \r\n", | |
"L 857.256066 97.413451 \r\n", | |
"L 858.569007 89.285519 \r\n", | |
"L 862.507831 71.906718 \r\n", | |
"L 863.820772 63.137107 \r\n", | |
"L 865.133713 69.928208 \r\n", | |
"L 866.446654 66.238555 \r\n", | |
"L 867.759596 70.944199 \r\n", | |
"L 871.698419 69.072636 \r\n", | |
"L 873.01136 63.778786 \r\n", | |
"L 874.324301 68.912216 \r\n", | |
"L 875.637243 63.404473 \r\n", | |
"L 876.950184 64.580884 \r\n", | |
"L 880.889007 56.132113 \r\n", | |
"L 882.201949 45.00968 \r\n", | |
"L 883.51489 43.886742 \r\n", | |
"L 884.827831 51.372995 \r\n", | |
"L 886.140772 45.223573 \r\n", | |
"L 890.079596 46.346511 \r\n", | |
"L 891.392537 54.474443 \r\n", | |
"L 892.705478 59.500927 \r\n", | |
"L 894.018419 62.655848 \r\n", | |
"L 895.33136 64.848251 \r\n", | |
"L 899.270184 70.62336 \r\n", | |
"L 900.583125 70.46294 \r\n", | |
"L 901.896066 68.324011 \r\n", | |
"L 903.209007 70.516413 \r\n", | |
"L 904.521949 75.061639 \r\n", | |
"L 908.460772 66.880233 \r\n", | |
"L 909.773713 69.446949 \r\n", | |
"L 912.399596 43.245063 \r\n", | |
"L 913.712537 48.538914 \r\n", | |
"L 917.65136 38.967205 \r\n", | |
"L 918.964301 59.71482 \r\n", | |
"L 920.277243 58.05715 \r\n", | |
"L 921.590184 50.78479 \r\n", | |
"L 922.903125 50.78479 \r\n", | |
"L 922.903125 50.78479 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 286.792938 \r\n", | |
"L 31.416066 286.792938 \r\n", | |
"L 36.667831 284.578394 \r\n", | |
"L 37.980772 279.263489 \r\n", | |
"L 39.293713 277.713308 \r\n", | |
"L 40.606654 276.384582 \r\n", | |
"L 44.545478 279.927852 \r\n", | |
"L 45.858419 276.163128 \r\n", | |
"L 47.17136 274.612947 \r\n", | |
"L 48.484301 276.163128 \r\n", | |
"L 49.797243 272.619858 \r\n", | |
"L 53.736066 270.626768 \r\n", | |
"L 55.049007 273.062766 \r\n", | |
"L 56.361949 274.834401 \r\n", | |
"L 57.67489 275.055856 \r\n", | |
"L 58.987831 270.183859 \r\n", | |
"L 62.926654 270.848223 \r\n", | |
"L 64.239596 268.19077 \r\n", | |
"L 65.552537 268.412224 \r\n", | |
"L 66.865478 265.533317 \r\n", | |
"L 68.178419 263.097319 \r\n", | |
"L 72.117243 262.432956 \r\n", | |
"L 73.430184 261.990047 \r\n", | |
"L 74.743125 258.668232 \r\n", | |
"L 76.056066 260.661321 \r\n", | |
"L 77.369007 265.533317 \r\n", | |
"L 81.307831 261.547139 \r\n", | |
"L 82.620772 261.325684 \r\n", | |
"L 83.933713 259.332595 \r\n", | |
"L 85.246654 255.789325 \r\n", | |
"L 86.559596 259.554049 \r\n", | |
"L 90.498419 257.56096 \r\n", | |
"L 91.81136 261.547139 \r\n", | |
"L 93.124301 259.11114 \r\n", | |
"L 94.437243 258.889686 \r\n", | |
"L 95.750184 256.453688 \r\n", | |
"L 99.689007 252.246055 \r\n", | |
"L 101.001949 251.581691 \r\n", | |
"L 103.627831 253.796235 \r\n", | |
"L 104.940772 251.803146 \r\n", | |
"L 108.879596 248.924239 \r\n", | |
"L 110.192537 246.93115 \r\n", | |
"L 111.505478 244.716606 \r\n", | |
"L 112.818419 249.588602 \r\n", | |
"L 118.070184 252.688963 \r\n", | |
"L 119.383125 249.810056 \r\n", | |
"L 120.696066 251.581691 \r\n", | |
"L 122.009007 254.239144 \r\n", | |
"L 123.321949 250.031511 \r\n", | |
"L 128.573713 250.695874 \r\n", | |
"L 129.886654 254.460598 \r\n", | |
"L 131.199596 257.118051 \r\n", | |
"L 132.512537 256.453688 \r\n", | |
"L 136.45136 261.325684 \r\n", | |
"L 137.764301 261.10423 \r\n", | |
"L 139.077243 258.225323 \r\n", | |
"L 140.390184 256.453688 \r\n", | |
"L 141.703125 252.246055 \r\n", | |
"L 145.641949 246.045332 \r\n", | |
"L 146.95489 246.488241 \r\n", | |
"L 148.267831 243.830788 \r\n", | |
"L 149.580772 244.052243 \r\n", | |
"L 150.893713 241.173336 \r\n", | |
"L 154.832537 239.844609 \r\n", | |
"L 156.145478 239.844609 \r\n", | |
"L 157.458419 240.730427 \r\n", | |
"L 158.77136 244.716606 \r\n", | |
"L 160.084301 242.944971 \r\n", | |
"L 164.023125 244.716606 \r\n", | |
"L 165.336066 243.609334 \r\n", | |
"L 166.649007 243.609334 \r\n", | |
"L 167.961949 246.045332 \r\n", | |
"L 169.27489 243.166425 \r\n", | |
"L 173.213713 249.588602 \r\n", | |
"L 174.526654 248.48133 \r\n", | |
"L 175.839596 246.93115 \r\n", | |
"L 177.152537 248.924239 \r\n", | |
"L 178.465478 247.152604 \r\n", | |
"L 182.404301 246.045332 \r\n", | |
"L 183.717243 247.374058 \r\n", | |
"L 186.343125 243.166425 \r\n", | |
"L 187.656066 241.39479 \r\n", | |
"L 191.59489 251.360237 \r\n", | |
"L 192.907831 252.246055 \r\n", | |
"L 194.220772 256.232233 \r\n", | |
"L 196.846654 259.775504 \r\n", | |
"L 200.785478 266.640589 \r\n", | |
"L 202.098419 265.754772 \r\n", | |
"L 203.41136 265.090409 \r\n", | |
"L 204.724301 265.311863 \r\n", | |
"L 206.037243 271.73404 \r\n", | |
"L 209.976066 278.599126 \r\n", | |
"L 211.289007 278.82058 \r\n", | |
"L 212.601949 279.706398 \r\n", | |
"L 213.91489 285.685666 \r\n", | |
"L 215.227831 285.021303 \r\n", | |
"L 219.166654 286.128575 \r\n", | |
"L 220.479596 283.692577 \r\n", | |
"L 221.792537 283.249668 \r\n", | |
"L 223.105478 283.028214 \r\n", | |
"L 224.418419 283.249668 \r\n", | |
"L 228.357243 281.035124 \r\n", | |
"L 229.670184 283.914031 \r\n", | |
"L 230.983125 283.471122 \r\n", | |
"L 232.296066 284.135485 \r\n", | |
"L 233.609007 283.249668 \r\n", | |
"L 237.547831 278.156217 \r\n", | |
"L 238.860772 275.055856 \r\n", | |
"L 241.486654 277.934763 \r\n", | |
"L 242.799596 280.81367 \r\n", | |
"L 246.738419 282.142396 \r\n", | |
"L 248.05136 277.048945 \r\n", | |
"L 250.677243 269.962405 \r\n", | |
"L 251.990184 272.619858 \r\n", | |
"L 255.929007 273.948584 \r\n", | |
"L 257.241949 277.934763 \r\n", | |
"L 258.55489 275.498765 \r\n", | |
"L 259.867831 271.955495 \r\n", | |
"L 261.180772 271.512586 \r\n", | |
"L 265.119596 267.747861 \r\n", | |
"L 266.432537 265.754772 \r\n", | |
"L 269.058419 265.311863 \r\n", | |
"L 270.37136 266.197681 \r\n", | |
"L 274.310184 269.740951 \r\n", | |
"L 275.623125 272.841312 \r\n", | |
"L 278.249007 272.841312 \r\n", | |
"L 279.561949 273.72713 \r\n", | |
"L 283.500772 273.72713 \r\n", | |
"L 284.813713 271.73404 \r\n", | |
"L 286.126654 271.291131 \r\n", | |
"L 287.439596 272.841312 \r\n", | |
"L 288.752537 270.183859 \r\n", | |
"L 292.69136 272.841312 \r\n", | |
"L 294.004301 272.398403 \r\n", | |
"L 295.317243 269.076588 \r\n", | |
"L 296.630184 267.526407 \r\n", | |
"L 297.943125 269.076588 \r\n", | |
"L 301.881949 269.076588 \r\n", | |
"L 303.19489 269.962405 \r\n", | |
"L 304.507831 272.619858 \r\n", | |
"L 305.820772 271.069677 \r\n", | |
"L 307.133713 276.384582 \r\n", | |
"L 311.072537 284.578394 \r\n", | |
"L 312.385478 285.242757 \r\n", | |
"L 313.698419 285.021303 \r\n", | |
"L 315.01136 281.478033 \r\n", | |
"L 316.324301 281.920942 \r\n", | |
"L 320.263125 284.135485 \r\n", | |
"L 321.576066 281.256579 \r\n", | |
"L 322.889007 282.806759 \r\n", | |
"L 324.201949 280.592215 \r\n", | |
"L 325.51489 278.156217 \r\n", | |
"L 329.453713 268.19077 \r\n", | |
"L 330.766654 266.419135 \r\n", | |
"L 332.079596 269.076588 \r\n", | |
"L 333.392537 273.284221 \r\n", | |
"L 334.705478 273.72713 \r\n", | |
"L 338.644301 276.606037 \r\n", | |
"L 339.957243 278.377672 \r\n", | |
"L 341.270184 274.391493 \r\n", | |
"L 342.583125 271.73404 \r\n", | |
"L 343.896066 269.740951 \r\n", | |
"L 347.83489 268.855133 \r\n", | |
"L 349.147831 269.519496 \r\n", | |
"L 350.460772 266.640589 \r\n", | |
"L 351.773713 265.533317 \r\n", | |
"L 353.086654 265.533317 \r\n", | |
"L 357.025478 267.083498 \r\n", | |
"L 358.338419 267.747861 \r\n", | |
"L 359.65136 265.754772 \r\n", | |
"L 360.964301 264.204591 \r\n", | |
"L 362.277243 264.868954 \r\n", | |
"L 366.216066 269.298042 \r\n", | |
"L 367.529007 271.291131 \r\n", | |
"L 368.841949 270.183859 \r\n", | |
"L 370.15489 271.73404 \r\n", | |
"L 371.467831 272.176949 \r\n", | |
"L 375.406654 274.834401 \r\n", | |
"L 376.719596 277.934763 \r\n", | |
"L 378.032537 280.149307 \r\n", | |
"L 379.345478 278.156217 \r\n", | |
"L 380.658419 278.156217 \r\n", | |
"L 384.597243 279.042035 \r\n", | |
"L 385.910184 278.82058 \r\n", | |
"L 387.223125 279.706398 \r\n", | |
"L 388.536066 278.156217 \r\n", | |
"L 389.849007 279.484943 \r\n", | |
"L 393.787831 278.156217 \r\n", | |
"L 395.100772 278.377672 \r\n", | |
"L 396.413713 280.149307 \r\n", | |
"L 397.726654 278.599126 \r\n", | |
"L 399.039596 275.27731 \r\n", | |
"L 402.978419 274.391493 \r\n", | |
"L 404.29136 272.619858 \r\n", | |
"L 405.604301 271.955495 \r\n", | |
"L 406.917243 271.069677 \r\n", | |
"L 408.230184 272.841312 \r\n", | |
"L 412.169007 275.498765 \r\n", | |
"L 413.481949 275.055856 \r\n", | |
"L 414.79489 277.713308 \r\n", | |
"L 416.107831 276.606037 \r\n", | |
"L 417.420772 275.055856 \r\n", | |
"L 421.359596 271.73404 \r\n", | |
"L 422.672537 271.955495 \r\n", | |
"L 423.985478 273.948584 \r\n", | |
"L 425.298419 272.619858 \r\n", | |
"L 426.61136 270.183859 \r\n", | |
"L 431.863125 264.868954 \r\n", | |
"L 433.176066 263.318774 \r\n", | |
"L 434.489007 261.325684 \r\n", | |
"L 435.801949 261.547139 \r\n", | |
"L 439.740772 267.526407 \r\n", | |
"L 441.053713 264.426046 \r\n", | |
"L 443.679596 269.519496 \r\n", | |
"L 444.992537 270.626768 \r\n", | |
"L 448.93136 267.526407 \r\n", | |
"L 450.244301 265.311863 \r\n", | |
"L 451.557243 267.304953 \r\n", | |
"L 452.870184 270.848223 \r\n", | |
"L 454.183125 269.740951 \r\n", | |
"L 458.121949 264.6475 \r\n", | |
"L 459.43489 263.540228 \r\n", | |
"L 460.747831 261.990047 \r\n", | |
"L 462.060772 260.882775 \r\n", | |
"L 463.373713 263.540228 \r\n", | |
"L 467.312537 262.654411 \r\n", | |
"L 468.625478 266.640589 \r\n", | |
"L 469.938419 266.640589 \r\n", | |
"L 471.25136 267.304953 \r\n", | |
"L 472.564301 263.983137 \r\n", | |
"L 476.503125 263.761682 \r\n", | |
"L 477.816066 265.311863 \r\n", | |
"L 479.129007 262.654411 \r\n", | |
"L 480.441949 261.547139 \r\n", | |
"L 481.75489 257.782414 \r\n", | |
"L 485.693713 257.118051 \r\n", | |
"L 487.006654 254.01769 \r\n", | |
"L 488.319596 252.910418 \r\n", | |
"L 489.632537 253.574781 \r\n", | |
"L 490.945478 253.353327 \r\n", | |
"L 494.884301 252.0246 \r\n", | |
"L 496.197243 252.0246 \r\n", | |
"L 497.510184 255.124962 \r\n", | |
"L 498.823125 252.246055 \r\n", | |
"L 500.136066 248.259876 \r\n", | |
"L 504.07489 249.145693 \r\n", | |
"L 509.326654 245.823878 \r\n", | |
"L 513.265478 247.374058 \r\n", | |
"L 515.89136 248.038421 \r\n", | |
"L 517.204301 245.159514 \r\n", | |
"L 518.517243 243.166425 \r\n", | |
"L 522.456066 241.837699 \r\n", | |
"L 523.769007 240.066064 \r\n", | |
"L 525.081949 240.951881 \r\n", | |
"L 526.39489 238.737337 \r\n", | |
"L 527.707831 238.958792 \r\n", | |
"L 531.646654 240.508972 \r\n", | |
"L 532.959596 246.709695 \r\n", | |
"L 534.272537 243.166425 \r\n", | |
"L 535.585478 251.360237 \r\n", | |
"L 536.898419 249.588602 \r\n", | |
"L 540.837243 265.976226 \r\n", | |
"L 542.150184 261.547139 \r\n", | |
"L 543.463125 255.346416 \r\n", | |
"L 544.776066 261.547139 \r\n", | |
"L 546.089007 261.325684 \r\n", | |
"L 550.027831 257.782414 \r\n", | |
"L 551.340772 249.810056 \r\n", | |
"L 552.653713 247.152604 \r\n", | |
"L 553.966654 246.488241 \r\n", | |
"L 555.279596 244.716606 \r\n", | |
"L 559.218419 245.159514 \r\n", | |
"L 560.53136 241.837699 \r\n", | |
"L 561.844301 240.730427 \r\n", | |
"L 563.157243 238.294429 \r\n", | |
"L 565.783125 237.777702 \r\n", | |
"L 568.409007 237.187157 \r\n", | |
"L 569.721949 239.844609 \r\n", | |
"L 571.03489 237.85152 \r\n", | |
"L 572.347831 237.408611 \r\n", | |
"L 573.660772 238.737337 \r\n", | |
"L 580.225478 244.052243 \r\n", | |
"L 581.538419 241.837699 \r\n", | |
"L 582.85136 245.159514 \r\n", | |
"L 586.790184 239.180246 \r\n", | |
"L 588.103125 237.630066 \r\n", | |
"L 589.416066 239.180246 \r\n", | |
"L 590.729007 233.422432 \r\n", | |
"L 592.041949 234.751159 \r\n", | |
"L 597.293713 224.342803 \r\n", | |
"L 598.606654 226.778801 \r\n", | |
"L 599.919596 234.086795 \r\n", | |
"L 601.232537 233.865341 \r\n", | |
"L 605.17136 255.346416 \r\n", | |
"L 606.484301 246.93115 \r\n", | |
"L 607.797243 248.924239 \r\n", | |
"L 610.423125 224.785711 \r\n", | |
"L 614.361949 232.093706 \r\n", | |
"L 615.67489 222.571168 \r\n", | |
"L 616.987831 216.591899 \r\n", | |
"L 618.300772 217.034808 \r\n", | |
"L 619.613713 218.363534 \r\n", | |
"L 623.552537 214.155901 \r\n", | |
"L 624.865478 213.934447 \r\n", | |
"L 626.178419 217.034808 \r\n", | |
"L 627.49136 215.706082 \r\n", | |
"L 628.804301 221.020987 \r\n", | |
"L 632.743125 217.034808 \r\n", | |
"L 634.056066 213.491538 \r\n", | |
"L 635.369007 219.027898 \r\n", | |
"L 636.681949 223.014076 \r\n", | |
"L 637.99489 219.692261 \r\n", | |
"L 641.933713 225.671529 \r\n", | |
"L 643.246654 221.020987 \r\n", | |
"L 644.559596 221.020987 \r\n", | |
"L 645.872537 216.148991 \r\n", | |
"L 647.185478 210.391177 \r\n", | |
"L 651.124301 212.162812 \r\n", | |
"L 652.437243 209.726814 \r\n", | |
"L 653.750184 204.411908 \r\n", | |
"L 655.063125 210.834085 \r\n", | |
"L 656.376066 215.706082 \r\n", | |
"L 660.31489 211.498449 \r\n", | |
"L 661.627831 208.176633 \r\n", | |
"L 662.940772 211.719903 \r\n", | |
"L 664.253713 209.948268 \r\n", | |
"L 669.505478 223.67844 \r\n", | |
"L 670.818419 223.67844 \r\n", | |
"L 672.13136 218.14208 \r\n", | |
"L 673.444301 218.14208 \r\n", | |
"L 674.757243 214.59881 \r\n", | |
"L 680.009007 211.276994 \r\n", | |
"L 681.321949 211.276994 \r\n", | |
"L 682.63489 215.484627 \r\n", | |
"L 683.947831 215.927536 \r\n", | |
"L 687.886654 210.834085 \r\n", | |
"L 689.199596 207.290815 \r\n", | |
"L 690.512537 205.297726 \r\n", | |
"L 691.825478 217.699171 \r\n", | |
"L 693.138419 225.22862 \r\n", | |
"L 697.077243 225.892983 \r\n", | |
"L 698.390184 222.349713 \r\n", | |
"L 701.016066 227.886073 \r\n", | |
"L 702.329007 227.886073 \r\n", | |
"L 706.267831 222.792622 \r\n", | |
"L 707.580772 222.792622 \r\n", | |
"L 708.893713 218.806443 \r\n", | |
"L 710.206654 216.370445 \r\n", | |
"L 711.519596 215.927536 \r\n", | |
"L 715.458419 217.477717 \r\n", | |
"L 716.77136 216.370445 \r\n", | |
"L 718.084301 213.270084 \r\n", | |
"L 719.397243 215.484627 \r\n", | |
"L 724.649007 217.034808 \r\n", | |
"L 725.961949 207.733724 \r\n", | |
"L 727.27489 207.290815 \r\n", | |
"L 728.587831 206.404998 \r\n", | |
"L 729.900772 202.197365 \r\n", | |
"L 733.839596 204.411908 \r\n", | |
"L 735.152537 200.647184 \r\n", | |
"L 737.778419 202.861728 \r\n", | |
"L 739.09136 202.418819 \r\n", | |
"L 743.030184 202.418819 \r\n", | |
"L 746.969007 186.917012 \r\n", | |
"L 748.281949 176.730111 \r\n", | |
"L 752.220772 162.114122 \r\n", | |
"L 753.533713 161.228304 \r\n", | |
"L 754.846654 155.47049 \r\n", | |
"L 756.159596 145.947952 \r\n", | |
"L 757.472537 153.255946 \r\n", | |
"L 761.41136 151.041403 \r\n", | |
"L 762.724301 161.671213 \r\n", | |
"L 764.037243 162.55703 \r\n", | |
"L 765.350184 171.858114 \r\n", | |
"L 766.663125 164.771574 \r\n", | |
"L 770.601949 160.121032 \r\n", | |
"L 771.91489 153.034492 \r\n", | |
"L 773.227831 161.671213 \r\n", | |
"L 774.540772 159.678123 \r\n", | |
"L 775.853713 169.422116 \r\n", | |
"L 779.792537 168.536299 \r\n", | |
"L 781.105478 160.785395 \r\n", | |
"L 782.418419 157.242125 \r\n", | |
"L 783.73136 155.47049 \r\n", | |
"L 785.044301 151.262857 \r\n", | |
"L 788.983125 147.498133 \r\n", | |
"L 790.296066 140.854501 \r\n", | |
"L 791.609007 139.525775 \r\n", | |
"L 792.921949 140.411592 \r\n", | |
"L 794.23489 146.169406 \r\n", | |
"L 798.173713 152.370129 \r\n", | |
"L 799.486654 153.698855 \r\n", | |
"L 800.799596 152.148675 \r\n", | |
"L 802.112537 149.934131 \r\n", | |
"L 803.425478 152.148675 \r\n", | |
"L 807.364301 151.262857 \r\n", | |
"L 808.677243 144.84068 \r\n", | |
"L 809.990184 145.283589 \r\n", | |
"L 811.303125 147.276678 \r\n", | |
"L 812.616066 140.633047 \r\n", | |
"L 816.55489 128.895965 \r\n", | |
"L 817.867831 124.023968 \r\n", | |
"L 819.180772 114.058521 \r\n", | |
"L 820.493713 115.830156 \r\n", | |
"L 821.806654 121.366516 \r\n", | |
"L 825.745478 128.453056 \r\n", | |
"L 827.058419 126.681421 \r\n", | |
"L 828.37136 119.373426 \r\n", | |
"L 829.684301 121.58797 \r\n", | |
"L 830.997243 132.660689 \r\n", | |
"L 834.936066 131.331963 \r\n", | |
"L 836.249007 131.553417 \r\n", | |
"L 837.561949 137.089777 \r\n", | |
"L 838.87489 138.418503 \r\n", | |
"L 840.187831 139.082866 \r\n", | |
"L 844.126654 134.21087 \r\n", | |
"L 845.439596 130.003236 \r\n", | |
"L 846.752537 128.231601 \r\n", | |
"L 848.065478 133.325052 \r\n", | |
"L 849.378419 129.560328 \r\n", | |
"L 853.317243 134.21087 \r\n", | |
"L 854.630184 133.546507 \r\n", | |
"L 855.943125 130.446145 \r\n", | |
"L 857.256066 135.76105 \r\n", | |
"L 858.569007 137.75414 \r\n", | |
"L 862.507831 125.13124 \r\n", | |
"L 863.820772 121.58797 \r\n", | |
"L 865.133713 120.923607 \r\n", | |
"L 866.446654 114.50143 \r\n", | |
"L 867.759596 114.058521 \r\n", | |
"L 871.698419 114.279975 \r\n", | |
"L 873.01136 110.072342 \r\n", | |
"L 874.324301 104.314528 \r\n", | |
"L 875.637243 105.643255 \r\n", | |
"L 876.950184 108.079253 \r\n", | |
"L 882.201949 95.677807 \r\n", | |
"L 883.51489 96.120716 \r\n", | |
"L 884.827831 102.099984 \r\n", | |
"L 886.140772 95.456353 \r\n", | |
"L 890.079596 94.349081 \r\n", | |
"L 891.392537 92.7989 \r\n", | |
"L 892.705478 93.463264 \r\n", | |
"L 894.018419 96.120716 \r\n", | |
"L 895.33136 100.106895 \r\n", | |
"L 899.270184 100.992713 \r\n", | |
"L 900.583125 99.885441 \r\n", | |
"L 901.896066 88.591267 \r\n", | |
"L 903.209007 80.397455 \r\n", | |
"L 904.521949 86.376723 \r\n", | |
"L 908.460772 72.203643 \r\n", | |
"L 909.773713 74.252096 \r\n", | |
"L 912.399596 68.272828 \r\n", | |
"L 913.712537 76.577367 \r\n", | |
"L 917.65136 69.989099 \r\n", | |
"L 918.964301 90.916538 \r\n", | |
"L 920.277243 102.598257 \r\n", | |
"L 921.590184 91.137993 \r\n", | |
"L 922.903125 91.137993 \r\n", | |
"L 922.903125 91.137993 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 30.103125 258.895459 \r\n", | |
"L 31.416066 258.150277 \r\n", | |
"L 36.667831 255.840212 \r\n", | |
"L 37.980772 252.039782 \r\n", | |
"L 39.293713 252.039782 \r\n", | |
"L 40.606654 251.2946 \r\n", | |
"L 44.545478 254.275329 \r\n", | |
"L 45.858419 253.828219 \r\n", | |
"L 47.17136 255.989248 \r\n", | |
"L 48.484301 257.703167 \r\n", | |
"L 49.797243 252.784964 \r\n", | |
"L 53.736066 250.996527 \r\n", | |
"L 55.049007 253.008519 \r\n", | |
"L 56.361949 253.977256 \r\n", | |
"L 57.67489 254.200811 \r\n", | |
"L 58.987831 248.090316 \r\n", | |
"L 62.926654 248.611943 \r\n", | |
"L 64.239596 247.643206 \r\n", | |
"L 66.865478 252.859482 \r\n", | |
"L 68.178419 252.412373 \r\n", | |
"L 72.117243 252.859482 \r\n", | |
"L 73.430184 250.549417 \r\n", | |
"L 74.743125 249.208089 \r\n", | |
"L 77.369007 258.820941 \r\n", | |
"L 81.307831 260.683897 \r\n", | |
"L 82.620772 258.075759 \r\n", | |
"L 83.933713 256.063766 \r\n", | |
"L 85.246654 252.1143 \r\n", | |
"L 86.559596 253.604665 \r\n", | |
"L 90.498419 250.84749 \r\n", | |
"L 91.81136 250.996527 \r\n", | |
"L 93.124301 250.474899 \r\n", | |
"L 94.437243 249.804235 \r\n", | |
"L 95.750184 249.506162 \r\n", | |
"L 99.689007 249.431644 \r\n", | |
"L 102.31489 246.748988 \r\n", | |
"L 103.627831 248.164834 \r\n", | |
"L 104.940772 243.246631 \r\n", | |
"L 108.879596 242.203376 \r\n", | |
"L 110.192537 244.662477 \r\n", | |
"L 111.505478 244.513441 \r\n", | |
"L 112.818419 246.152842 \r\n", | |
"L 118.070184 248.31387 \r\n", | |
"L 119.383125 247.196097 \r\n", | |
"L 120.696066 249.357126 \r\n", | |
"L 122.009007 247.717725 \r\n", | |
"L 123.321949 245.705732 \r\n", | |
"L 127.260772 247.643206 \r\n", | |
"L 128.573713 246.525433 \r\n", | |
"L 129.886654 249.58068 \r\n", | |
"L 131.199596 253.455628 \r\n", | |
"L 132.512537 255.020511 \r\n", | |
"L 136.45136 258.075759 \r\n", | |
"L 137.764301 257.628649 \r\n", | |
"L 139.077243 255.244066 \r\n", | |
"L 140.390184 254.573402 \r\n", | |
"L 141.703125 255.318584 \r\n", | |
"L 145.641949 248.537425 \r\n", | |
"L 146.95489 247.419652 \r\n", | |
"L 148.267831 243.69374 \r\n", | |
"L 149.580772 242.054339 \r\n", | |
"L 150.893713 241.383675 \r\n", | |
"L 154.832537 242.575967 \r\n", | |
"L 156.145478 244.811514 \r\n", | |
"L 157.458419 245.854769 \r\n", | |
"L 158.77136 246.376397 \r\n", | |
"L 160.084301 243.544704 \r\n", | |
"L 164.023125 243.246631 \r\n", | |
"L 165.336066 241.234639 \r\n", | |
"L 166.649007 241.383675 \r\n", | |
"L 167.961949 240.787529 \r\n", | |
"L 170.587831 241.135281 \r\n", | |
"L 173.213713 241.383675 \r\n", | |
"L 174.526654 242.054339 \r\n", | |
"L 175.839596 239.669756 \r\n", | |
"L 177.152537 238.328428 \r\n", | |
"L 178.465478 237.955837 \r\n", | |
"L 182.404301 237.732282 \r\n", | |
"L 183.717243 236.53999 \r\n", | |
"L 186.343125 232.516006 \r\n", | |
"L 187.656066 232.366969 \r\n", | |
"L 191.59489 236.167399 \r\n", | |
"L 192.907831 236.9871 \r\n", | |
"L 194.220772 238.477464 \r\n", | |
"L 196.846654 239.371683 \r\n", | |
"L 200.785478 243.470186 \r\n", | |
"L 202.098419 243.991813 \r\n", | |
"L 203.41136 245.258623 \r\n", | |
"L 204.724301 242.799522 \r\n", | |
"L 206.037243 242.948558 \r\n", | |
"L 209.976066 246.525433 \r\n", | |
"L 211.289007 245.631214 \r\n", | |
"L 212.601949 246.376397 \r\n", | |
"L 213.91489 250.102308 \r\n", | |
"L 215.227831 247.643206 \r\n", | |
"L 219.166654 247.49417 \r\n", | |
"L 220.479596 247.866761 \r\n", | |
"L 221.792537 250.102308 \r\n", | |
"L 223.105478 250.623936 \r\n", | |
"L 224.418419 253.008519 \r\n", | |
"L 228.357243 252.039782 \r\n", | |
"L 229.670184 247.717725 \r\n", | |
"L 230.983125 244.811514 \r\n", | |
"L 232.296066 245.556696 \r\n", | |
"L 233.609007 244.886032 \r\n", | |
"L 237.547831 245.333141 \r\n", | |
"L 238.860772 242.575967 \r\n", | |
"L 241.486654 243.917295 \r\n", | |
"L 242.799596 247.941279 \r\n", | |
"L 246.738419 248.984535 \r\n", | |
"L 248.05136 248.090316 \r\n", | |
"L 249.364301 244.96055 \r\n", | |
"L 250.677243 243.470186 \r\n", | |
"L 251.990184 245.035068 \r\n", | |
"L 255.929007 245.854769 \r\n", | |
"L 257.241949 247.717725 \r\n", | |
"L 259.867831 245.854769 \r\n", | |
"L 261.180772 244.066331 \r\n", | |
"L 265.119596 240.489456 \r\n", | |
"L 266.432537 241.309157 \r\n", | |
"L 267.745478 237.583246 \r\n", | |
"L 269.058419 237.508727 \r\n", | |
"L 270.37136 238.626501 \r\n", | |
"L 274.310184 239.818792 \r\n", | |
"L 275.623125 243.470186 \r\n", | |
"L 276.936066 243.842777 \r\n", | |
"L 278.249007 246.376397 \r\n", | |
"L 279.561949 247.121579 \r\n", | |
"L 283.500772 247.568688 \r\n", | |
"L 284.813713 247.49417 \r\n", | |
"L 286.126654 247.717725 \r\n", | |
"L 287.439596 251.369118 \r\n", | |
"L 288.752537 250.474899 \r\n", | |
"L 292.69136 250.400381 \r\n", | |
"L 294.004301 246.525433 \r\n", | |
"L 295.317243 245.705732 \r\n", | |
"L 296.630184 247.121579 \r\n", | |
"L 297.943125 249.059053 \r\n", | |
"L 301.881949 246.450915 \r\n", | |
"L 303.19489 251.369118 \r\n", | |
"L 304.507831 251.369118 \r\n", | |
"L 305.820772 250.698454 \r\n", | |
"L 307.133713 250.698454 \r\n", | |
"L 311.072537 255.616657 \r\n", | |
"L 312.385478 254.200811 \r\n", | |
"L 313.698419 254.275329 \r\n", | |
"L 315.01136 252.1143 \r\n", | |
"L 316.324301 251.965264 \r\n", | |
"L 320.263125 252.710446 \r\n", | |
"L 321.576066 255.318584 \r\n", | |
"L 322.889007 257.479613 \r\n", | |
"L 324.201949 259.417087 \r\n", | |
"L 325.51489 258.075759 \r\n", | |
"L 329.453713 250.02779 \r\n", | |
"L 330.766654 250.549417 \r\n", | |
"L 333.392537 252.784964 \r\n", | |
"L 334.705478 252.934001 \r\n", | |
"L 338.644301 253.753701 \r\n", | |
"L 339.957243 250.772972 \r\n", | |
"L 341.270184 251.518154 \r\n", | |
"L 342.583125 247.717725 \r\n", | |
"L 343.896066 244.96055 \r\n", | |
"L 347.83489 246.525433 \r\n", | |
"L 349.147831 247.270615 \r\n", | |
"L 350.460772 244.513441 \r\n", | |
"L 351.773713 243.097594 \r\n", | |
"L 353.086654 242.725003 \r\n", | |
"L 358.338419 243.097594 \r\n", | |
"L 359.65136 239.818792 \r\n", | |
"L 360.964301 242.128857 \r\n", | |
"L 362.277243 241.905303 \r\n", | |
"L 366.216066 246.22736 \r\n", | |
"L 367.529007 247.49417 \r\n", | |
"L 368.841949 245.035068 \r\n", | |
"L 370.15489 245.109587 \r\n", | |
"L 371.467831 245.705732 \r\n", | |
"L 375.406654 249.655199 \r\n", | |
"L 376.719596 250.623936 \r\n", | |
"L 378.032537 252.859482 \r\n", | |
"L 379.345478 250.922009 \r\n", | |
"L 380.658419 248.686462 \r\n", | |
"L 384.597243 246.599951 \r\n", | |
"L 385.910184 247.270615 \r\n", | |
"L 387.223125 250.474899 \r\n", | |
"L 388.536066 254.424365 \r\n", | |
"L 389.849007 254.945993 \r\n", | |
"L 393.787831 252.1143 \r\n", | |
"L 395.100772 252.710446 \r\n", | |
"L 396.413713 250.922009 \r\n", | |
"L 397.726654 251.145563 \r\n", | |
"L 399.039596 244.886032 \r\n", | |
"L 402.978419 244.438923 \r\n", | |
"L 404.29136 240.34042 \r\n", | |
"L 405.604301 239.148128 \r\n", | |
"L 406.917243 236.53999 \r\n", | |
"L 408.230184 237.061618 \r\n", | |
"L 412.169007 235.869326 \r\n", | |
"L 413.481949 235.049626 \r\n", | |
"L 414.79489 234.900589 \r\n", | |
"L 416.107831 231.845342 \r\n", | |
"L 417.420772 233.18667 \r\n", | |
"L 421.359596 232.292451 \r\n", | |
"L 423.985478 232.217933 \r\n", | |
"L 425.298419 231.10016 \r\n", | |
"L 426.61136 230.131423 \r\n", | |
"L 431.863125 228.864613 \r\n", | |
"L 433.176066 227.29973 \r\n", | |
"L 434.489007 224.76611 \r\n", | |
"L 435.801949 227.076175 \r\n", | |
"L 439.740772 227.150693 \r\n", | |
"L 441.053713 225.883884 \r\n", | |
"L 443.679596 227.821357 \r\n", | |
"L 444.992537 227.895876 \r\n", | |
"L 448.93136 227.29973 \r\n", | |
"L 450.244301 224.989665 \r\n", | |
"L 451.557243 228.11943 \r\n", | |
"L 452.870184 229.758831 \r\n", | |
"L 454.183125 228.790094 \r\n", | |
"L 458.121949 227.448766 \r\n", | |
"L 459.43489 226.778102 \r\n", | |
"L 460.747831 226.330993 \r\n", | |
"L 463.373713 226.256475 \r\n", | |
"L 467.312537 224.989665 \r\n", | |
"L 468.625478 229.162686 \r\n", | |
"L 469.938419 227.523285 \r\n", | |
"L 471.25136 227.448766 \r\n", | |
"L 472.564301 229.088167 \r\n", | |
"L 476.503125 228.492022 \r\n", | |
"L 477.816066 232.963115 \r\n", | |
"L 479.129007 230.578532 \r\n", | |
"L 480.441949 229.684313 \r\n", | |
"L 481.75489 227.001657 \r\n", | |
"L 485.693713 227.001657 \r\n", | |
"L 487.006654 227.821357 \r\n", | |
"L 488.319596 230.354977 \r\n", | |
"L 489.632537 231.994378 \r\n", | |
"L 490.945478 232.590524 \r\n", | |
"L 494.884301 232.217933 \r\n", | |
"L 496.197243 233.484743 \r\n", | |
"L 497.510184 234.975107 \r\n", | |
"L 498.823125 234.155407 \r\n", | |
"L 500.136066 231.10016 \r\n", | |
"L 505.387831 232.292451 \r\n", | |
"L 509.326654 233.410225 \r\n", | |
"L 513.265478 236.390954 \r\n", | |
"L 515.89136 234.304443 \r\n", | |
"L 517.204301 231.174678 \r\n", | |
"L 522.456066 232.963115 \r\n", | |
"L 523.769007 232.441488 \r\n", | |
"L 525.081949 231.696305 \r\n", | |
"L 526.39489 230.65305 \r\n", | |
"L 527.707831 230.056904 \r\n", | |
"L 531.646654 230.280459 \r\n", | |
"L 532.959596 229.460759 \r\n", | |
"L 534.272537 227.225212 \r\n", | |
"L 535.585478 230.056904 \r\n", | |
"L 536.898419 229.013649 \r\n", | |
"L 540.837243 232.590524 \r\n", | |
"L 542.150184 233.261188 \r\n", | |
"L 543.463125 232.143415 \r\n", | |
"L 544.776066 233.484743 \r\n", | |
"L 546.089007 232.888597 \r\n", | |
"L 550.027831 232.739561 \r\n", | |
"L 552.653713 228.492022 \r\n", | |
"L 553.966654 225.958402 \r\n", | |
"L 555.279596 225.287738 \r\n", | |
"L 559.218419 225.064183 \r\n", | |
"L 560.53136 223.648337 \r\n", | |
"L 561.844301 223.4993 \r\n", | |
"L 563.157243 225.213219 \r\n", | |
"L 564.470184 223.573818 \r\n", | |
"L 568.409007 224.542555 \r\n", | |
"L 569.721949 225.511292 \r\n", | |
"L 571.03489 224.095446 \r\n", | |
"L 572.347831 223.424782 \r\n", | |
"L 573.660772 225.213219 \r\n", | |
"L 578.912537 235.571253 \r\n", | |
"L 580.225478 240.042347 \r\n", | |
"L 581.538419 241.756266 \r\n", | |
"L 582.85136 249.133571 \r\n", | |
"L 586.790184 245.109587 \r\n", | |
"L 588.103125 241.160121 \r\n", | |
"L 589.416066 243.470186 \r\n", | |
"L 590.729007 243.395667 \r\n", | |
"L 592.041949 245.482178 \r\n", | |
"L 597.293713 248.462907 \r\n", | |
"L 598.606654 252.188818 \r\n", | |
"L 599.919596 268.582829 \r\n", | |
"L 601.232537 279.537008 \r\n", | |
"L 605.17136 300.327594 \r\n", | |
"L 606.484301 298.83723 \r\n", | |
"L 607.797243 297.123311 \r\n", | |
"L 609.110184 297.048792 \r\n", | |
"L 610.423125 286.61624 \r\n", | |
"L 614.361949 290.491188 \r\n", | |
"L 615.67489 276.332725 \r\n", | |
"L 616.987831 263.664626 \r\n", | |
"L 618.300772 267.316019 \r\n", | |
"L 619.613713 261.503597 \r\n", | |
"L 623.552537 259.26805 \r\n", | |
"L 624.865478 255.020511 \r\n", | |
"L 626.178419 265.080472 \r\n", | |
"L 627.49136 264.931436 \r\n", | |
"L 628.804301 276.034652 \r\n", | |
"L 632.743125 266.272764 \r\n", | |
"L 634.056066 256.585394 \r\n", | |
"L 635.369007 259.789678 \r\n", | |
"L 636.681949 257.926722 \r\n", | |
"L 637.99489 252.56141 \r\n", | |
"L 641.933713 258.299313 \r\n", | |
"L 643.246654 256.361839 \r\n", | |
"L 645.872537 261.429079 \r\n", | |
"L 647.185478 255.169548 \r\n", | |
"L 651.124301 254.64792 \r\n", | |
"L 652.437243 251.965264 \r\n", | |
"L 653.750184 252.486891 \r\n", | |
"L 655.063125 258.597386 \r\n", | |
"L 656.376066 263.739144 \r\n", | |
"L 660.31489 256.138285 \r\n", | |
"L 661.627831 249.431644 \r\n", | |
"L 662.940772 248.686462 \r\n", | |
"L 664.253713 246.823506 \r\n", | |
"L 669.505478 255.542139 \r\n", | |
"L 670.818419 255.095029 \r\n", | |
"L 672.13136 253.008519 \r\n", | |
"L 673.444301 253.753701 \r\n", | |
"L 674.757243 250.02779 \r\n", | |
"L 680.009007 251.369118 \r\n", | |
"L 681.321949 255.691175 \r\n", | |
"L 682.63489 262.993962 \r\n", | |
"L 686.573713 256.659912 \r\n", | |
"L 687.886654 254.573402 \r\n", | |
"L 689.199596 248.835498 \r\n", | |
"L 690.512537 248.164834 \r\n", | |
"L 691.825478 250.400381 \r\n", | |
"L 693.138419 252.263337 \r\n", | |
"L 697.077243 244.662477 \r\n", | |
"L 698.390184 241.160121 \r\n", | |
"L 699.703125 236.092881 \r\n", | |
"L 701.016066 233.857334 \r\n", | |
"L 702.329007 235.496735 \r\n", | |
"L 706.267831 235.496735 \r\n", | |
"L 707.580772 232.665042 \r\n", | |
"L 708.893713 225.362256 \r\n", | |
"L 710.206654 220.742126 \r\n", | |
"L 711.519596 212.917712 \r\n", | |
"L 715.458419 212.694157 \r\n", | |
"L 716.77136 215.749404 \r\n", | |
"L 718.084301 214.408076 \r\n", | |
"L 719.397243 222.754118 \r\n", | |
"L 724.649007 231.994378 \r\n", | |
"L 725.961949 218.655615 \r\n", | |
"L 727.27489 217.984951 \r\n", | |
"L 728.587831 219.698871 \r\n", | |
"L 729.900772 219.102725 \r\n", | |
"L 733.839596 222.381527 \r\n", | |
"L 735.152537 216.718141 \r\n", | |
"L 737.778419 226.107438 \r\n", | |
"L 739.09136 223.94641 \r\n", | |
"L 743.030184 222.977673 \r\n", | |
"L 744.343125 217.016214 \r\n", | |
"L 746.969007 210.45861 \r\n", | |
"L 748.281949 208.446618 \r\n", | |
"L 752.220772 198.759248 \r\n", | |
"L 753.533713 201.21835 \r\n", | |
"L 754.846654 204.273597 \r\n", | |
"L 756.159596 203.155824 \r\n", | |
"L 757.472537 205.987516 \r\n", | |
"L 761.41136 200.398649 \r\n", | |
"L 762.724301 202.783233 \r\n", | |
"L 764.037243 195.480446 \r\n", | |
"L 765.350184 194.511709 \r\n", | |
"L 766.663125 189.891579 \r\n", | |
"L 770.601949 187.879587 \r\n", | |
"L 771.91489 182.067165 \r\n", | |
"L 773.227831 184.079157 \r\n", | |
"L 774.540772 180.502282 \r\n", | |
"L 775.853713 186.389222 \r\n", | |
"L 779.792537 182.588792 \r\n", | |
"L 781.105478 180.427764 \r\n", | |
"L 782.418419 178.49029 \r\n", | |
"L 783.73136 182.812347 \r\n", | |
"L 785.044301 179.906136 \r\n", | |
"L 788.983125 181.02391 \r\n", | |
"L 790.296066 178.341253 \r\n", | |
"L 791.609007 176.850889 \r\n", | |
"L 792.921949 177.074443 \r\n", | |
"L 794.23489 176.850889 \r\n", | |
"L 798.173713 174.540824 \r\n", | |
"L 799.486654 170.740394 \r\n", | |
"L 800.799596 170.367803 \r\n", | |
"L 802.112537 164.406345 \r\n", | |
"L 803.425478 170.442321 \r\n", | |
"L 807.364301 167.759665 \r\n", | |
"L 808.677243 165.673154 \r\n", | |
"L 809.990184 164.629899 \r\n", | |
"L 811.303125 167.53611 \r\n", | |
"L 812.616066 167.014483 \r\n", | |
"L 816.55489 160.680433 \r\n", | |
"L 817.867831 154.49542 \r\n", | |
"L 819.180772 150.545954 \r\n", | |
"L 820.493713 151.514691 \r\n", | |
"L 821.806654 155.985785 \r\n", | |
"L 825.745478 156.134821 \r\n", | |
"L 827.058419 160.084287 \r\n", | |
"L 828.37136 154.346384 \r\n", | |
"L 829.684301 147.192634 \r\n", | |
"L 830.997243 157.774222 \r\n", | |
"L 834.936066 153.22861 \r\n", | |
"L 836.249007 152.930537 \r\n", | |
"L 837.561949 150.322399 \r\n", | |
"L 838.87489 148.012334 \r\n", | |
"L 840.187831 152.036319 \r\n", | |
"L 844.126654 148.981071 \r\n", | |
"L 846.752537 150.098845 \r\n", | |
"L 848.065478 152.930537 \r\n", | |
"L 849.378419 149.651735 \r\n", | |
"L 854.630184 164.18279 \r\n", | |
"L 855.943125 160.82947 \r\n", | |
"L 857.256066 164.257308 \r\n", | |
"L 858.569007 166.418337 \r\n", | |
"L 862.507831 155.911266 \r\n", | |
"L 863.820772 146.07486 \r\n", | |
"L 866.446654 151.663727 \r\n", | |
"L 867.759596 154.420902 \r\n", | |
"L 871.698419 147.192634 \r\n", | |
"L 873.01136 144.211904 \r\n", | |
"L 874.324301 144.957087 \r\n", | |
"L 875.637243 143.392204 \r\n", | |
"L 876.950184 144.733532 \r\n", | |
"L 880.889007 142.647022 \r\n", | |
"L 882.201949 144.733532 \r\n", | |
"L 883.51489 145.25516 \r\n", | |
"L 884.827831 152.781501 \r\n", | |
"L 886.140772 148.086852 \r\n", | |
"L 890.079596 145.925824 \r\n", | |
"L 891.392537 147.788779 \r\n", | |
"L 892.705478 154.868011 \r\n", | |
"L 894.018419 161.202061 \r\n", | |
"L 895.33136 158.370368 \r\n", | |
"L 899.270184 169.175511 \r\n", | |
"L 900.583125 176.254743 \r\n", | |
"L 901.896066 186.538259 \r\n", | |
"L 903.209007 185.271449 \r\n", | |
"L 904.521949 188.17766 \r\n", | |
"L 908.460772 179.459027 \r\n", | |
"L 909.773713 172.826904 \r\n", | |
"L 912.399596 162.617907 \r\n", | |
"L 913.712537 164.18279 \r\n", | |
"L 917.65136 153.526683 \r\n", | |
"L 918.964301 152.706983 \r\n", | |
"L 920.277243 150.918545 \r\n", | |
"L 921.590184 150.247881 \r\n", | |
"L 922.903125 150.247881 \r\n", | |
"L 922.903125 150.247881 \r\n", | |
"\" style=\"fill:none;stroke:#777777;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 526.39489 259.130855 \r\n", | |
"L 527.707831 254.80901 \r\n", | |
"L 531.646654 259.500639 \r\n", | |
"L 532.959596 261.257111 \r\n", | |
"L 534.272537 258.437511 \r\n", | |
"L 535.585478 260.841104 \r\n", | |
"L 536.898419 259.315747 \r\n", | |
"L 540.837243 267.774546 \r\n", | |
"L 542.150184 266.133631 \r\n", | |
"L 543.463125 260.887327 \r\n", | |
"L 544.776066 262.250904 \r\n", | |
"L 546.089007 260.60999 \r\n", | |
"L 550.027831 259.477527 \r\n", | |
"L 551.340772 254.231224 \r\n", | |
"L 552.653713 254.855233 \r\n", | |
"L 553.966654 252.936981 \r\n", | |
"L 555.279596 251.735185 \r\n", | |
"L 559.218419 251.642739 \r\n", | |
"L 560.53136 248.499579 \r\n", | |
"L 561.844301 249.77071 \r\n", | |
"L 563.157243 250.024936 \r\n", | |
"L 564.470184 250.024936 \r\n", | |
"L 568.409007 249.100477 \r\n", | |
"L 569.721949 250.741391 \r\n", | |
"L 571.03489 249.008031 \r\n", | |
"L 572.347831 249.077366 \r\n", | |
"L 574.973713 252.971648 \r\n", | |
"L 578.912537 259.03841 \r\n", | |
"L 580.225478 263.152251 \r\n", | |
"L 581.538419 264.70072 \r\n", | |
"L 582.85136 270.894594 \r\n", | |
"L 586.790184 264.885612 \r\n", | |
"L 588.103125 260.586878 \r\n", | |
"L 589.416066 264.515828 \r\n", | |
"L 590.729007 262.528242 \r\n", | |
"L 592.041949 264.677608 \r\n", | |
"L 597.293713 262.944248 \r\n", | |
"L 598.606654 263.452701 \r\n", | |
"L 599.919596 276.926688 \r\n", | |
"L 601.232537 276.510682 \r\n", | |
"L 606.484301 287.765968 \r\n", | |
"L 607.797243 284.322359 \r\n", | |
"L 609.110184 277.596921 \r\n", | |
"L 610.423125 268.375444 \r\n", | |
"L 614.361949 284.160579 \r\n", | |
"L 615.67489 275.840449 \r\n", | |
"L 616.987831 266.087408 \r\n", | |
"L 618.300772 265.671402 \r\n", | |
"L 620.926654 262.358758 \r\n", | |
"L 623.552537 259.20019 \r\n", | |
"L 624.865478 254.48545 \r\n", | |
"L 626.178419 260.425098 \r\n", | |
"L 627.49136 261.534448 \r\n", | |
"L 628.804301 269.41546 \r\n", | |
"L 632.743125 261.233999 \r\n", | |
"L 634.056066 256.195699 \r\n", | |
"L 635.369007 261.788675 \r\n", | |
"L 636.681949 258.599292 \r\n", | |
"L 637.99489 257.443718 \r\n", | |
"L 641.933713 263.198474 \r\n", | |
"L 643.246654 257.305049 \r\n", | |
"L 644.559596 255.43302 \r\n", | |
"L 645.872537 252.590309 \r\n", | |
"L 647.185478 251.480959 \r\n", | |
"L 651.124301 253.630325 \r\n", | |
"L 652.437243 249.955601 \r\n", | |
"L 653.750184 249.955601 \r\n", | |
"L 656.376066 255.664135 \r\n", | |
"L 660.31489 250.949395 \r\n", | |
"L 661.627831 247.898681 \r\n", | |
"L 662.940772 249.077366 \r\n", | |
"L 664.253713 245.795537 \r\n", | |
"L 669.505478 253.399211 \r\n", | |
"L 670.818419 252.405417 \r\n", | |
"L 672.13136 249.470261 \r\n", | |
"L 673.444301 248.615136 \r\n", | |
"L 674.757243 247.621343 \r\n", | |
"L 680.009007 246.072874 \r\n", | |
"L 681.321949 248.222241 \r\n", | |
"L 682.63489 252.567198 \r\n", | |
"L 683.947831 251.434736 \r\n", | |
"L 687.886654 246.95111 \r\n", | |
"L 689.199596 243.368832 \r\n", | |
"L 690.512537 246.511992 \r\n", | |
"L 691.825478 253.468545 \r\n", | |
"L 693.138419 256.750374 \r\n", | |
"L 697.077243 248.98492 \r\n", | |
"L 698.390184 245.749314 \r\n", | |
"L 699.703125 248.083572 \r\n", | |
"L 701.016066 247.367117 \r\n", | |
"L 702.329007 249.886267 \r\n", | |
"L 706.267831 248.106684 \r\n", | |
"L 707.580772 246.927999 \r\n", | |
"L 708.893713 245.471976 \r\n", | |
"L 710.206654 246.696884 \r\n", | |
"L 711.519596 242.120813 \r\n", | |
"L 715.458419 242.814157 \r\n", | |
"L 716.77136 242.23637 \r\n", | |
"L 718.084301 238.191863 \r\n", | |
"L 719.397243 243.576835 \r\n", | |
"L 724.649007 248.961808 \r\n", | |
"L 725.961949 239.416771 \r\n", | |
"L 727.27489 239.231879 \r\n", | |
"L 728.587831 241.173242 \r\n", | |
"L 729.900772 240.110115 \r\n", | |
"L 733.839596 241.91281 \r\n", | |
"L 735.152537 238.792761 \r\n", | |
"L 737.778419 246.604438 \r\n", | |
"L 739.09136 243.137717 \r\n", | |
"L 743.030184 244.200845 \r\n", | |
"L 744.343125 241.057685 \r\n", | |
"L 746.969007 235.695824 \r\n", | |
"L 748.281949 230.888638 \r\n", | |
"L 752.220772 220.973817 \r\n", | |
"L 753.533713 223.53919 \r\n", | |
"L 756.159596 222.337394 \r\n", | |
"L 757.472537 226.821019 \r\n", | |
"L 761.41136 225.411219 \r\n", | |
"L 762.724301 230.426408 \r\n", | |
"L 764.037243 224.140088 \r\n", | |
"L 765.350184 229.293946 \r\n", | |
"L 766.663125 225.364996 \r\n", | |
"L 770.601949 222.406728 \r\n", | |
"L 771.91489 218.82445 \r\n", | |
"L 773.227831 223.885862 \r\n", | |
"L 774.540772 218.616447 \r\n", | |
"L 775.853713 223.839639 \r\n", | |
"L 779.792537 220.372919 \r\n", | |
"L 781.105478 215.727513 \r\n", | |
"L 782.418419 215.51951 \r\n", | |
"L 783.73136 212.723022 \r\n", | |
"L 785.044301 212.515018 \r\n", | |
"L 788.983125 211.336333 \r\n", | |
"L 790.296066 204.657118 \r\n", | |
"L 791.609007 204.980679 \r\n", | |
"L 792.921949 205.165571 \r\n", | |
"L 794.23489 204.957567 \r\n", | |
"L 798.173713 205.00379 \r\n", | |
"L 799.486654 203.362876 \r\n", | |
"L 800.799596 203.039315 \r\n", | |
"L 802.112537 201.305955 \r\n", | |
"L 803.425478 203.339764 \r\n", | |
"L 807.364301 201.768184 \r\n", | |
"L 808.677243 199.295257 \r\n", | |
"L 809.990184 197.908569 \r\n", | |
"L 811.303125 199.96549 \r\n", | |
"L 812.616066 195.504976 \r\n", | |
"L 816.55489 187.785744 \r\n", | |
"L 817.867831 187.531518 \r\n", | |
"L 819.180772 184.711919 \r\n", | |
"L 820.493713 181.129641 \r\n", | |
"L 821.806654 185.151037 \r\n", | |
"L 825.745478 186.953731 \r\n", | |
"L 827.058419 190.143114 \r\n", | |
"L 828.37136 181.75365 \r\n", | |
"L 829.684301 181.106529 \r\n", | |
"L 830.997243 190.928904 \r\n", | |
"L 834.936066 189.519105 \r\n", | |
"L 836.249007 189.773331 \r\n", | |
"L 837.561949 193.101383 \r\n", | |
"L 838.87489 193.193829 \r\n", | |
"L 840.187831 196.568103 \r\n", | |
"L 844.126654 193.448055 \r\n", | |
"L 845.439596 191.252465 \r\n", | |
"L 846.752537 189.958223 \r\n", | |
"L 848.065478 195.41253 \r\n", | |
"L 849.378419 194.603628 \r\n", | |
"L 853.317243 199.457037 \r\n", | |
"L 854.630184 196.683661 \r\n", | |
"L 855.943125 191.136908 \r\n", | |
"L 857.256066 196.290766 \r\n", | |
"L 858.569007 193.586724 \r\n", | |
"L 862.507831 181.822985 \r\n", | |
"L 863.820772 178.749159 \r\n", | |
"L 865.133713 183.117227 \r\n", | |
"L 866.446654 181.522536 \r\n", | |
"L 867.759596 185.382151 \r\n", | |
"L 871.698419 179.373169 \r\n", | |
"L 873.01136 180.251405 \r\n", | |
"L 875.637243 178.055815 \r\n", | |
"L 876.950184 179.2345 \r\n", | |
"L 880.889007 176.507347 \r\n", | |
"L 882.201949 172.578396 \r\n", | |
"L 883.51489 172.139279 \r\n", | |
"L 884.827831 173.918862 \r\n", | |
"L 886.140772 171.168597 \r\n", | |
"L 890.079596 172.971291 \r\n", | |
"L 891.392537 175.46733 \r\n", | |
"L 892.705478 179.766064 \r\n", | |
"L 894.018419 182.793667 \r\n", | |
"L 895.33136 182.493218 \r\n", | |
"L 899.270184 185.682601 \r\n", | |
"L 900.583125 184.943033 \r\n", | |
"L 901.896066 182.978558 \r\n", | |
"L 903.209007 181.360755 \r\n", | |
"L 904.521949 183.695014 \r\n", | |
"L 908.460772 178.749159 \r\n", | |
"L 909.773713 176.276232 \r\n", | |
"L 912.399596 170.059246 \r\n", | |
"L 913.712537 171.399711 \r\n", | |
"L 917.65136 162.987136 \r\n", | |
"L 918.964301 167.701876 \r\n", | |
"L 920.277243 166.82364 \r\n", | |
"L 921.590184 164.073375 \r\n", | |
"L 922.903125 164.073375 \r\n", | |
"L 922.903125 164.073375 \r\n", | |
"\" style=\"fill:none;stroke:#fbc15e;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <path clip-path=\"url(#p682cd48ddc)\" d=\"M 526.39489 208.536477 \r\n", | |
"L 527.707831 202.688398 \r\n", | |
"L 531.646654 207.80129 \r\n", | |
"L 532.959596 210.107104 \r\n", | |
"L 534.272537 207.233191 \r\n", | |
"L 535.585478 212.479753 \r\n", | |
"L 536.898419 211.544061 \r\n", | |
"L 540.837243 224.142494 \r\n", | |
"L 542.150184 221.736427 \r\n", | |
"L 543.463125 216.088854 \r\n", | |
"L 544.776066 218.160744 \r\n", | |
"L 546.089007 218.996184 \r\n", | |
"L 550.027831 216.757205 \r\n", | |
"L 551.340772 209.873181 \r\n", | |
"L 552.653713 209.873181 \r\n", | |
"L 553.966654 207.433697 \r\n", | |
"L 555.279596 205.328388 \r\n", | |
"L 559.218419 210.574951 \r\n", | |
"L 560.53136 208.235719 \r\n", | |
"L 561.844301 205.361806 \r\n", | |
"L 563.157243 204.626619 \r\n", | |
"L 564.470184 204.426113 \r\n", | |
"L 568.409007 205.428641 \r\n", | |
"L 569.721949 206.498004 \r\n", | |
"L 571.03489 204.660036 \r\n", | |
"L 572.347831 204.526366 \r\n", | |
"L 573.660772 207.132938 \r\n", | |
"L 578.912537 215.520754 \r\n", | |
"L 580.225478 219.998712 \r\n", | |
"L 581.538419 220.700481 \r\n", | |
"L 582.85136 240.182939 \r\n", | |
"L 586.790184 235.638146 \r\n", | |
"L 588.103125 230.425001 \r\n", | |
"L 589.416066 234.936377 \r\n", | |
"L 590.729007 232.964738 \r\n", | |
"L 592.041949 242.187994 \r\n", | |
"L 597.293713 252.213273 \r\n", | |
"L 598.606654 263.742343 \r\n", | |
"L 599.919596 280.284052 \r\n", | |
"L 601.232537 282.489613 \r\n", | |
"L 605.17136 298.697146 \r\n", | |
"L 606.484301 299.632838 \r\n", | |
"L 607.797243 301.170048 \r\n", | |
"L 609.110184 290.041989 \r\n", | |
"L 610.423125 283.492141 \r\n", | |
"L 614.361949 299.465751 \r\n", | |
"L 615.67489 295.85665 \r\n", | |
"L 616.987831 279.649117 \r\n", | |
"L 618.300772 286.666812 \r\n", | |
"L 619.613713 279.448612 \r\n", | |
"L 623.552537 278.212161 \r\n", | |
"L 624.865478 273.600533 \r\n", | |
"L 626.178419 280.050128 \r\n", | |
"L 627.49136 275.639006 \r\n", | |
"L 628.804301 285.129603 \r\n", | |
"L 632.743125 277.176215 \r\n", | |
"L 634.056066 266.582838 \r\n", | |
"L 635.369007 272.163576 \r\n", | |
"L 636.681949 270.526114 \r\n", | |
"L 637.99489 263.207661 \r\n", | |
"L 641.933713 267.819289 \r\n", | |
"L 643.246654 262.071463 \r\n", | |
"L 644.559596 262.505892 \r\n", | |
"L 645.872537 259.799066 \r\n", | |
"L 647.185478 259.431473 \r\n", | |
"L 651.124301 264.47753 \r\n", | |
"L 652.437243 268.855234 \r\n", | |
"L 653.750184 267.685619 \r\n", | |
"L 655.063125 263.675507 \r\n", | |
"L 656.376066 265.045629 \r\n", | |
"L 660.31489 258.796539 \r\n", | |
"L 661.627831 256.390472 \r\n", | |
"L 662.940772 256.156549 \r\n", | |
"L 664.253713 249.907459 \r\n", | |
"L 669.505478 264.343859 \r\n", | |
"L 670.818419 262.004628 \r\n", | |
"L 672.13136 254.686175 \r\n", | |
"L 673.444301 258.295275 \r\n", | |
"L 674.757243 255.120603 \r\n", | |
"L 680.009007 249.138854 \r\n", | |
"L 681.321949 252.413778 \r\n", | |
"L 682.63489 259.230967 \r\n", | |
"L 683.947831 255.788955 \r\n", | |
"L 687.886654 248.971766 \r\n", | |
"L 689.199596 242.756094 \r\n", | |
"L 690.512537 247.902403 \r\n", | |
"L 691.825478 249.773788 \r\n", | |
"L 693.138419 253.817317 \r\n", | |
"L 697.077243 244.259885 \r\n", | |
"L 699.703125 240.015851 \r\n", | |
"L 701.016066 240.082686 \r\n", | |
"L 702.329007 242.121159 \r\n", | |
"L 706.267831 238.812817 \r\n", | |
"L 707.580772 236.674091 \r\n", | |
"L 708.893713 233.466002 \r\n", | |
"L 710.206654 231.928793 \r\n", | |
"L 711.519596 230.191078 \r\n", | |
"L 715.458419 227.584506 \r\n", | |
"L 716.77136 227.684759 \r\n", | |
"L 718.084301 226.047297 \r\n", | |
"L 719.397243 232.764233 \r\n", | |
"L 724.649007 236.941432 \r\n", | |
"L 725.961949 230.458419 \r\n", | |
"L 727.27489 229.589561 \r\n", | |
"L 728.587831 233.833596 \r\n", | |
"L 729.900772 231.460947 \r\n", | |
"L 733.839596 231.126771 \r\n", | |
"L 735.152537 227.450835 \r\n", | |
"L 737.778419 235.972322 \r\n", | |
"L 739.09136 231.360694 \r\n", | |
"L 743.030184 233.699926 \r\n", | |
"L 744.343125 231.460947 \r\n", | |
"L 746.969007 229.355638 \r\n", | |
"L 748.281949 223.741483 \r\n", | |
"L 752.220772 215.888348 \r\n", | |
"L 753.533713 223.708065 \r\n", | |
"L 754.846654 218.996184 \r\n", | |
"L 757.472537 220.600229 \r\n", | |
"L 761.41136 221.201745 \r\n", | |
"L 762.724301 225.278692 \r\n", | |
"L 764.037243 219.564283 \r\n", | |
"L 765.350184 227.384 \r\n", | |
"L 766.663125 221.268581 \r\n", | |
"L 770.601949 219.296943 \r\n", | |
"L 771.91489 216.389612 \r\n", | |
"L 773.227831 219.898459 \r\n", | |
"L 774.540772 214.117215 \r\n", | |
"L 775.853713 223.975406 \r\n", | |
"L 779.792537 220.266053 \r\n", | |
"L 781.105478 217.258469 \r\n", | |
"L 782.418419 219.33036 \r\n", | |
"L 783.73136 219.063019 \r\n", | |
"L 785.044301 220.934405 \r\n", | |
"L 788.983125 219.998712 \r\n", | |
"L 790.296066 214.484809 \r\n", | |
"L 791.609007 214.016963 \r\n", | |
"L 792.921949 212.613424 \r\n", | |
"L 794.23489 214.417974 \r\n", | |
"L 798.173713 216.423029 \r\n", | |
"L 799.486654 213.816457 \r\n", | |
"L 800.799596 209.104576 \r\n", | |
"L 802.112537 210.541533 \r\n", | |
"L 803.425478 209.639258 \r\n", | |
"L 807.364301 207.80129 \r\n", | |
"L 808.677243 209.037741 \r\n", | |
"L 809.990184 206.297498 \r\n", | |
"L 811.303125 208.135466 \r\n", | |
"L 812.616066 205.695982 \r\n", | |
"L 816.55489 202.120299 \r\n", | |
"L 817.867831 201.251442 \r\n", | |
"L 819.180772 198.444364 \r\n", | |
"L 820.493713 199.246386 \r\n", | |
"L 821.806654 201.719288 \r\n", | |
"L 825.745478 200.282332 \r\n", | |
"L 827.058419 200.115244 \r\n", | |
"L 828.37136 195.069187 \r\n", | |
"L 829.684301 200.115244 \r\n", | |
"L 830.997243 207.533949 \r\n", | |
"L 834.936066 207.333444 \r\n", | |
"L 836.249007 210.541533 \r\n", | |
"L 837.561949 212.312665 \r\n", | |
"L 838.87489 209.572423 \r\n", | |
"L 840.187831 210.875709 \r\n", | |
"L 844.126654 207.634202 \r\n", | |
"L 845.439596 205.896487 \r\n", | |
"L 846.752537 203.958267 \r\n", | |
"L 848.065478 210.274192 \r\n", | |
"L 849.378419 210.073687 \r\n", | |
"L 853.317243 216.423029 \r\n", | |
"L 854.630184 213.78304 \r\n", | |
"L 855.943125 210.040269 \r\n", | |
"L 857.256066 218.829096 \r\n", | |
"L 858.569007 214.217468 \r\n", | |
"L 862.507831 207.80129 \r\n", | |
"L 863.820772 210.875709 \r\n", | |
"L 865.133713 214.484809 \r\n", | |
"L 866.446654 209.004324 \r\n", | |
"L 867.759596 212.981017 \r\n", | |
"L 871.698419 208.569895 \r\n", | |
"L 873.01136 207.500532 \r\n", | |
"L 874.324301 207.300026 \r\n", | |
"L 875.637243 204.392696 \r\n", | |
"L 876.950184 202.989157 \r\n", | |
"L 880.889007 200.817013 \r\n", | |
"L 882.201949 198.310694 \r\n", | |
"L 883.51489 197.441836 \r\n", | |
"L 884.827831 203.390168 \r\n", | |
"L 886.140772 201.351695 \r\n", | |
"L 890.079596 200.482837 \r\n", | |
"L 891.392537 202.153717 \r\n", | |
"L 892.705478 204.025102 \r\n", | |
"L 894.018419 204.091937 \r\n", | |
"L 895.33136 203.323333 \r\n", | |
"L 899.270184 205.86307 \r\n", | |
"L 900.583125 205.963323 \r\n", | |
"L 901.896066 211.978489 \r\n", | |
"L 903.209007 212.981017 \r\n", | |
"L 904.521949 215.119743 \r\n", | |
"L 908.460772 214.284303 \r\n", | |
"L 911.086654 203.273206 \r\n", | |
"L 912.399596 197.642342 \r\n", | |
"L 913.712537 197.341583 \r\n", | |
"L 917.65136 188.151745 \r\n", | |
"L 918.964301 190.490977 \r\n", | |
"L 920.277243 189.421614 \r\n", | |
"L 921.590184 188.185163 \r\n", | |
"L 922.903125 188.185163 \r\n", | |
"L 922.903125 188.185163 \r\n", | |
"\" style=\"fill:none;stroke:#8eba42;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 922.903125 350.30175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 30.103125 24.14175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- ETF: WAPRICE / median -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 51.703125 72.90625 \r\n", | |
"L 51.703125 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.109375 \r\n", | |
"L 48.578125 43.109375 \r\n", | |
"L 48.578125 34.8125 \r\n", | |
"L 19.671875 34.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-70\"/>\r\n", | |
" <path d=\"M 11.71875 12.40625 \r\n", | |
"L 22.015625 12.40625 \r\n", | |
"L 22.015625 0 \r\n", | |
"L 11.71875 0 \r\n", | |
"z\r\n", | |
"M 11.71875 51.703125 \r\n", | |
"L 22.015625 51.703125 \r\n", | |
"L 22.015625 39.3125 \r\n", | |
"L 11.71875 39.3125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-58\"/>\r\n", | |
" <path id=\"DejaVuSans-32\"/>\r\n", | |
" <path d=\"M 3.328125 72.90625 \r\n", | |
"L 13.28125 72.90625 \r\n", | |
"L 28.609375 11.28125 \r\n", | |
"L 43.890625 72.90625 \r\n", | |
"L 54.984375 72.90625 \r\n", | |
"L 70.3125 11.28125 \r\n", | |
"L 85.59375 72.90625 \r\n", | |
"L 95.609375 72.90625 \r\n", | |
"L 77.296875 0 \r\n", | |
"L 64.890625 0 \r\n", | |
"L 49.515625 63.28125 \r\n", | |
"L 33.984375 0 \r\n", | |
"L 21.578125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-87\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 37.40625 \r\n", | |
"L 32.078125 37.40625 \r\n", | |
"Q 38.96875 37.40625 42.71875 40.96875 \r\n", | |
"Q 46.484375 44.53125 46.484375 51.125 \r\n", | |
"Q 46.484375 57.671875 42.71875 61.234375 \r\n", | |
"Q 38.96875 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.34375 72.90625 50.609375 67.359375 \r\n", | |
"Q 56.890625 61.8125 56.890625 51.125 \r\n", | |
"Q 56.890625 40.328125 50.609375 34.8125 \r\n", | |
"Q 44.34375 29.296875 32.078125 29.296875 \r\n", | |
"L 19.671875 29.296875 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-80\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-73\"/>\r\n", | |
" <path d=\"M 64.40625 67.28125 \r\n", | |
"L 64.40625 56.890625 \r\n", | |
"Q 59.421875 61.53125 53.78125 63.8125 \r\n", | |
"Q 48.140625 66.109375 41.796875 66.109375 \r\n", | |
"Q 29.296875 66.109375 22.65625 58.46875 \r\n", | |
"Q 16.015625 50.828125 16.015625 36.375 \r\n", | |
"Q 16.015625 21.96875 22.65625 14.328125 \r\n", | |
"Q 29.296875 6.6875 41.796875 6.6875 \r\n", | |
"Q 48.140625 6.6875 53.78125 8.984375 \r\n", | |
"Q 59.421875 11.28125 64.40625 15.921875 \r\n", | |
"L 64.40625 5.609375 \r\n", | |
"Q 59.234375 2.09375 53.4375 0.328125 \r\n", | |
"Q 47.65625 -1.421875 41.21875 -1.421875 \r\n", | |
"Q 24.65625 -1.421875 15.125 8.703125 \r\n", | |
"Q 5.609375 18.84375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.953125 15.125 64.078125 \r\n", | |
"Q 24.65625 74.21875 41.21875 74.21875 \r\n", | |
"Q 47.75 74.21875 53.53125 72.484375 \r\n", | |
"Q 59.328125 70.75 64.40625 67.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-67\"/>\r\n", | |
" <path d=\"M 25.390625 72.90625 \r\n", | |
"L 33.6875 72.90625 \r\n", | |
"L 8.296875 -9.28125 \r\n", | |
"L 0 -9.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-47\"/>\r\n", | |
" <path d=\"M 52 44.1875 \r\n", | |
"Q 55.375 50.25 60.0625 53.125 \r\n", | |
"Q 64.75 56 71.09375 56 \r\n", | |
"Q 79.640625 56 84.28125 50.015625 \r\n", | |
"Q 88.921875 44.046875 88.921875 33.015625 \r\n", | |
"L 88.921875 0 \r\n", | |
"L 79.890625 0 \r\n", | |
"L 79.890625 32.71875 \r\n", | |
"Q 79.890625 40.578125 77.09375 44.375 \r\n", | |
"Q 74.3125 48.1875 68.609375 48.1875 \r\n", | |
"Q 61.625 48.1875 57.5625 43.546875 \r\n", | |
"Q 53.515625 38.921875 53.515625 30.90625 \r\n", | |
"L 53.515625 0 \r\n", | |
"L 44.484375 0 \r\n", | |
"L 44.484375 32.71875 \r\n", | |
"Q 44.484375 40.625 41.703125 44.40625 \r\n", | |
"Q 38.921875 48.1875 33.109375 48.1875 \r\n", | |
"Q 26.21875 48.1875 22.15625 43.53125 \r\n", | |
"Q 18.109375 38.875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.1875 51.21875 25.484375 53.609375 \r\n", | |
"Q 29.78125 56 35.6875 56 \r\n", | |
"Q 41.65625 56 45.828125 52.96875 \r\n", | |
"Q 50 49.953125 52 44.1875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-109\"/>\r\n", | |
" <path d=\"M 56.203125 29.59375 \r\n", | |
"L 56.203125 25.203125 \r\n", | |
"L 14.890625 25.203125 \r\n", | |
"Q 15.484375 15.921875 20.484375 11.0625 \r\n", | |
"Q 25.484375 6.203125 34.421875 6.203125 \r\n", | |
"Q 39.59375 6.203125 44.453125 7.46875 \r\n", | |
"Q 49.3125 8.734375 54.109375 11.28125 \r\n", | |
"L 54.109375 2.78125 \r\n", | |
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n", | |
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n", | |
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n", | |
"Q 5.515625 13.8125 5.515625 26.8125 \r\n", | |
"Q 5.515625 40.234375 12.765625 48.109375 \r\n", | |
"Q 20.015625 56 32.328125 56 \r\n", | |
"Q 43.359375 56 49.78125 48.890625 \r\n", | |
"Q 56.203125 41.796875 56.203125 29.59375 \r\n", | |
"z\r\n", | |
"M 47.21875 32.234375 \r\n", | |
"Q 47.125 39.59375 43.09375 43.984375 \r\n", | |
"Q 39.0625 48.390625 32.421875 48.390625 \r\n", | |
"Q 24.90625 48.390625 20.390625 44.140625 \r\n", | |
"Q 15.875 39.890625 15.1875 32.171875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-101\"/>\r\n", | |
" <path d=\"M 45.40625 46.390625 \r\n", | |
"L 45.40625 75.984375 \r\n", | |
"L 54.390625 75.984375 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 45.40625 0 \r\n", | |
"L 45.40625 8.203125 \r\n", | |
"Q 42.578125 3.328125 38.25 0.953125 \r\n", | |
"Q 33.9375 -1.421875 27.875 -1.421875 \r\n", | |
"Q 17.96875 -1.421875 11.734375 6.484375 \r\n", | |
"Q 5.515625 14.40625 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.1875 11.734375 48.09375 \r\n", | |
"Q 17.96875 56 27.875 56 \r\n", | |
"Q 33.9375 56 38.25 53.625 \r\n", | |
"Q 42.578125 51.265625 45.40625 46.390625 \r\n", | |
"z\r\n", | |
"M 14.796875 27.296875 \r\n", | |
"Q 14.796875 17.390625 18.875 11.75 \r\n", | |
"Q 22.953125 6.109375 30.078125 6.109375 \r\n", | |
"Q 37.203125 6.109375 41.296875 11.75 \r\n", | |
"Q 45.40625 17.390625 45.40625 27.296875 \r\n", | |
"Q 45.40625 37.203125 41.296875 42.84375 \r\n", | |
"Q 37.203125 48.484375 30.078125 48.484375 \r\n", | |
"Q 22.953125 48.484375 18.875 42.84375 \r\n", | |
"Q 14.796875 37.203125 14.796875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-100\"/>\r\n", | |
" <path d=\"M 9.421875 54.6875 \r\n", | |
"L 18.40625 54.6875 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 64.59375 \r\n", | |
"L 9.421875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-105\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(391.633125 18.14175)scale(0.144 -0.144)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"63.183594\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"124.267578\" xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"181.677734\" xlink:href=\"#DejaVuSans-58\"/>\r\n", | |
" <use x=\"215.369141\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"247.15625\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" <use x=\"345.955078\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"414.363281\" xlink:href=\"#DejaVuSans-80\"/>\r\n", | |
" <use x=\"474.666016\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"544.148438\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"573.640625\" xlink:href=\"#DejaVuSans-67\"/>\r\n", | |
" <use x=\"643.464844\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"706.648438\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"738.435547\" xlink:href=\"#DejaVuSans-47\"/>\r\n", | |
" <use x=\"772.126953\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"803.914062\" xlink:href=\"#DejaVuSans-109\"/>\r\n", | |
" <use x=\"901.326172\" xlink:href=\"#DejaVuSans-101\"/>\r\n", | |
" <use x=\"962.849609\" xlink:href=\"#DejaVuSans-100\"/>\r\n", | |
" <use x=\"1026.326172\" xlink:href=\"#DejaVuSans-105\"/>\r\n", | |
" <use x=\"1054.109375\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"1115.388672\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 37.103125 120.2105 \r\n", | |
"L 99.464063 120.2105 \r\n", | |
"Q 101.464063 120.2105 101.464063 118.2105 \r\n", | |
"L 101.464063 31.14175 \r\n", | |
"Q 101.464063 29.14175 99.464063 29.14175 \r\n", | |
"L 37.103125 29.14175 \r\n", | |
"Q 35.103125 29.14175 35.103125 31.14175 \r\n", | |
"L 35.103125 118.2105 \r\n", | |
"Q 35.103125 120.2105 37.103125 120.2105 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <path d=\"M 39.103125 37.240187 \r\n", | |
"L 59.103125 37.240187 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_51\"/>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- FXUS -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" <path d=\"M 8.6875 72.90625 \r\n", | |
"L 18.609375 72.90625 \r\n", | |
"L 18.609375 28.609375 \r\n", | |
"Q 18.609375 16.890625 22.84375 11.734375 \r\n", | |
"Q 27.09375 6.59375 36.625 6.59375 \r\n", | |
"Q 46.09375 6.59375 50.34375 11.734375 \r\n", | |
"Q 54.59375 16.890625 54.59375 28.609375 \r\n", | |
"L 54.59375 72.90625 \r\n", | |
"L 64.5 72.90625 \r\n", | |
"L 64.5 27.390625 \r\n", | |
"Q 64.5 13.140625 57.4375 5.859375 \r\n", | |
"Q 50.390625 -1.421875 36.625 -1.421875 \r\n", | |
"Q 22.796875 -1.421875 15.734375 5.859375 \r\n", | |
"Q 8.6875 13.140625 8.6875 27.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-85\"/>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 40.740187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-85\"/>\r\n", | |
" <use x=\"199.21875\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <path d=\"M 39.103125 51.918312 \r\n", | |
"L 59.103125 51.918312 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_53\"/>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- FXIT -->\r\n", | |
" <g transform=\"translate(67.103125 55.418312)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"155.517578\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_54\">\r\n", | |
" <path d=\"M 39.103125 66.596437 \r\n", | |
"L 59.103125 66.596437 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_55\"/>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- FXCN -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 70.096437)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"125.916016\" xlink:href=\"#DejaVuSans-67\"/>\r\n", | |
" <use x=\"195.740234\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_56\">\r\n", | |
" <path d=\"M 39.103125 81.274562 \r\n", | |
"L 59.103125 81.274562 \r\n", | |
"\" style=\"fill:none;stroke:#777777;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_57\"/>\r\n", | |
" <g id=\"text_18\">\r\n", | |
" <!-- FXDE -->\r\n", | |
" <g transform=\"translate(67.103125 84.774562)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"203.027344\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_58\">\r\n", | |
" <path d=\"M 39.103125 95.952687 \r\n", | |
"L 59.103125 95.952687 \r\n", | |
"\" style=\"fill:none;stroke:#fbc15e;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_59\"/>\r\n", | |
" <g id=\"text_19\">\r\n", | |
" <!-- FXWO -->\r\n", | |
" <g transform=\"translate(67.103125 99.452687)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" <use x=\"224.902344\" xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_60\">\r\n", | |
" <path d=\"M 39.103125 110.630812 \r\n", | |
"L 59.103125 110.630812 \r\n", | |
"\" style=\"fill:none;stroke:#8eba42;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_61\"/>\r\n", | |
" <g id=\"text_20\">\r\n", | |
" <!-- FXRW -->\r\n", | |
" <g transform=\"translate(67.103125 114.130812)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"195.445312\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"p682cd48ddc\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"30.103125\" y=\"24.14175\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"400.991437pt\" version=\"1.1\" viewBox=\"0 0 936.465625 400.991437\" width=\"936.465625pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 400.991437 \r\n", | |
"L 936.465625 400.991437 \r\n", | |
"L 936.465625 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 36.465625 350.30175 \r\n", | |
"L 929.265625 350.30175 \r\n", | |
"L 929.265625 24.14175 \r\n", | |
"L 36.465625 24.14175 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 350.30175 \r\n", | |
"L 36.465625 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m89cc962293\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 152.004449 350.30175 \r\n", | |
"L 152.004449 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"152.004449\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" <path d=\"M 41.109375 46.296875 \r\n", | |
"Q 39.59375 47.171875 37.8125 47.578125 \r\n", | |
"Q 36.03125 48 33.890625 48 \r\n", | |
"Q 26.265625 48 22.1875 43.046875 \r\n", | |
"Q 18.109375 38.09375 18.109375 28.8125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 20.953125 51.171875 25.484375 53.578125 \r\n", | |
"Q 30.03125 56 36.53125 56 \r\n", | |
"Q 37.453125 56 38.578125 55.875 \r\n", | |
"Q 39.703125 55.765625 41.0625 55.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-114\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(143.354449 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 271.482096 350.30175 \r\n", | |
"L 271.482096 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"271.482096\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(265.449283 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 392.272684 350.30175 \r\n", | |
"L 392.272684 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"392.272684\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(383.627371 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 513.063272 350.30175 \r\n", | |
"L 513.063272 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"513.063272\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- Jan -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-110\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(505.35546 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"90.771484\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(500.338272 376.098)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 632.540919 350.30175 \r\n", | |
"L 632.540919 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"632.540919\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(623.890919 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 752.018566 350.30175 \r\n", | |
"L 752.018566 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"752.018566\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(745.985754 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 872.809154 350.30175 \r\n", | |
"L 872.809154 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"872.809154\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(864.163842 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 929.265625 350.30175 \r\n", | |
"L 929.265625 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"929.265625\" xlink:href=\"#m89cc962293\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"mc2de21d32c\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"74.540919\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"111.303272\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"191.392684\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"232.09386\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"312.183272\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"352.884449\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"432.97386\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"472.362096\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"553.764449\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"591.839743\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"671.929154\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"712.630331\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"792.719743\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"833.420919\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"913.510331\" xlink:href=\"#mc2de21d32c\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(446.347188 391.295812)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 344.959367 \r\n", | |
"L 929.265625 344.959367 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m31e48c7f49\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"344.959367\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- 0.50 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" <path d=\"M 10.796875 72.90625 \r\n", | |
"L 49.515625 72.90625 \r\n", | |
"L 49.515625 64.59375 \r\n", | |
"L 19.828125 64.59375 \r\n", | |
"L 19.828125 46.734375 \r\n", | |
"Q 21.96875 47.46875 24.109375 47.828125 \r\n", | |
"Q 26.265625 48.1875 28.421875 48.1875 \r\n", | |
"Q 40.625 48.1875 47.75 41.5 \r\n", | |
"Q 54.890625 34.8125 54.890625 23.390625 \r\n", | |
"Q 54.890625 11.625 47.5625 5.09375 \r\n", | |
"Q 40.234375 -1.421875 26.90625 -1.421875 \r\n", | |
"Q 22.3125 -1.421875 17.546875 -0.640625 \r\n", | |
"Q 12.796875 0.140625 7.71875 1.703125 \r\n", | |
"L 7.71875 11.625 \r\n", | |
"Q 12.109375 9.234375 16.796875 8.0625 \r\n", | |
"Q 21.484375 6.890625 26.703125 6.890625 \r\n", | |
"Q 35.15625 6.890625 40.078125 11.328125 \r\n", | |
"Q 45.015625 15.765625 45.015625 23.390625 \r\n", | |
"Q 45.015625 31 40.078125 35.4375 \r\n", | |
"Q 35.15625 39.890625 26.703125 39.890625 \r\n", | |
"Q 22.75 39.890625 18.8125 39.015625 \r\n", | |
"Q 14.890625 38.140625 10.796875 36.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-53\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 348.758585)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 300.745182 \r\n", | |
"L 929.265625 300.745182 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"300.745182\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- 0.75 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 8.203125 72.90625 \r\n", | |
"L 55.078125 72.90625 \r\n", | |
"L 55.078125 68.703125 \r\n", | |
"L 28.609375 0 \r\n", | |
"L 18.3125 0 \r\n", | |
"L 43.21875 64.59375 \r\n", | |
"L 8.203125 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-55\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 304.544401)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-55\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 256.530997 \r\n", | |
"L 929.265625 256.530997 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"256.530997\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- 1.00 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 260.330216)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 212.316813 \r\n", | |
"L 929.265625 212.316813 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"212.316813\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- 1.25 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 216.116031)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 168.102628 \r\n", | |
"L 929.265625 168.102628 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"168.102628\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- 1.50 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 171.901847)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_6\">\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 123.888443 \r\n", | |
"L 929.265625 123.888443 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"123.888443\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- 1.75 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 127.687662)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-55\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_7\">\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 79.674258 \r\n", | |
"L 929.265625 79.674258 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"79.674258\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- 2.00 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 83.473477)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_8\">\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 35.460074 \r\n", | |
"L 929.265625 35.460074 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"36.465625\" xlink:href=\"#m31e48c7f49\" y=\"35.460074\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- 2.25 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 39.259292)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 283.394234 \r\n", | |
"L 37.778566 282.862427 \r\n", | |
"L 43.030331 281.401941 \r\n", | |
"L 44.343272 278.544468 \r\n", | |
"L 45.656213 277.504666 \r\n", | |
"L 46.969154 276.766485 \r\n", | |
"L 50.907978 278.274596 \r\n", | |
"L 52.220919 276.615674 \r\n", | |
"L 53.53386 274.766254 \r\n", | |
"L 54.846801 272.718399 \r\n", | |
"L 56.159743 269.948238 \r\n", | |
"L 60.098566 267.765446 \r\n", | |
"L 61.411507 269.027497 \r\n", | |
"L 62.724449 266.471646 \r\n", | |
"L 64.03739 265.542968 \r\n", | |
"L 65.350331 264.344417 \r\n", | |
"L 69.289154 266.011276 \r\n", | |
"L 70.602096 266.217649 \r\n", | |
"L 71.915037 263.4713 \r\n", | |
"L 73.227978 261.217072 \r\n", | |
"L 78.479743 262.042564 \r\n", | |
"L 79.792684 260.978949 \r\n", | |
"L 81.105625 261.40757 \r\n", | |
"L 83.731507 266.416084 \r\n", | |
"L 87.670331 263.955483 \r\n", | |
"L 88.983272 260.899575 \r\n", | |
"L 90.296213 261.756816 \r\n", | |
"L 91.609154 269.932363 \r\n", | |
"L 92.922096 268.654438 \r\n", | |
"L 96.860919 270.360984 \r\n", | |
"L 98.17386 272.09928 \r\n", | |
"L 99.486801 270.670544 \r\n", | |
"L 100.799743 270.900729 \r\n", | |
"L 102.112684 270.789605 \r\n", | |
"L 106.051507 269.591054 \r\n", | |
"L 107.364449 271.289663 \r\n", | |
"L 108.67739 270.654669 \r\n", | |
"L 109.990331 269.630741 \r\n", | |
"L 111.303272 268.829061 \r\n", | |
"L 115.242096 269.733927 \r\n", | |
"L 116.555037 271.892907 \r\n", | |
"L 117.867978 271.202351 \r\n", | |
"L 119.180919 270.781667 \r\n", | |
"L 124.432684 271.337287 \r\n", | |
"L 125.745625 270.257797 \r\n", | |
"L 127.058566 270.77373 \r\n", | |
"L 129.684449 271.432536 \r\n", | |
"L 133.623272 270.392734 \r\n", | |
"L 134.936213 268.900498 \r\n", | |
"L 136.249154 268.043256 \r\n", | |
"L 137.562096 265.701716 \r\n", | |
"L 138.875037 267.749571 \r\n", | |
"L 142.81386 265.646154 \r\n", | |
"L 144.126801 261.582193 \r\n", | |
"L 145.439743 261.439319 \r\n", | |
"L 146.752684 262.891868 \r\n", | |
"L 148.065625 261.772691 \r\n", | |
"L 152.004449 260.971011 \r\n", | |
"L 153.31739 260.05027 \r\n", | |
"L 154.630331 257.669043 \r\n", | |
"L 155.943272 258.550097 \r\n", | |
"L 157.256213 254.938569 \r\n", | |
"L 161.195037 250.890483 \r\n", | |
"L 162.507978 245.580346 \r\n", | |
"L 163.820919 241.063952 \r\n", | |
"L 165.13386 240.667081 \r\n", | |
"L 166.446801 242.960996 \r\n", | |
"L 170.385625 243.222931 \r\n", | |
"L 171.698566 246.98527 \r\n", | |
"L 173.011507 247.747263 \r\n", | |
"L 174.324449 249.033126 \r\n", | |
"L 175.63739 248.652129 \r\n", | |
"L 179.576213 247.01702 \r\n", | |
"L 180.889154 246.120091 \r\n", | |
"L 182.202096 246.564587 \r\n", | |
"L 183.515037 249.588745 \r\n", | |
"L 184.827978 255.486251 \r\n", | |
"L 188.766801 253.859079 \r\n", | |
"L 190.079743 254.049578 \r\n", | |
"L 192.705625 252.089034 \r\n", | |
"L 194.018566 250.168177 \r\n", | |
"L 197.95739 251.247667 \r\n", | |
"L 199.270331 249.152187 \r\n", | |
"L 203.209154 252.509717 \r\n", | |
"L 207.147978 253.819392 \r\n", | |
"L 208.460919 252.22397 \r\n", | |
"L 209.77386 252.851027 \r\n", | |
"L 211.086801 251.17623 \r\n", | |
"L 212.399743 253.120899 \r\n", | |
"L 216.338566 253.51777 \r\n", | |
"L 217.651507 251.438165 \r\n", | |
"L 218.964449 246.866209 \r\n", | |
"L 220.27739 249.295061 \r\n", | |
"L 221.590331 247.532952 \r\n", | |
"L 225.529154 246.588399 \r\n", | |
"L 226.842096 247.29483 \r\n", | |
"L 228.155037 248.731503 \r\n", | |
"L 229.467978 248.128259 \r\n", | |
"L 230.780919 249.834805 \r\n", | |
"L 234.719743 244.762791 \r\n", | |
"L 236.032684 245.286661 \r\n", | |
"L 237.345625 244.246859 \r\n", | |
"L 238.658566 239.905088 \r\n", | |
"L 239.971507 236.761868 \r\n", | |
"L 243.910331 236.118937 \r\n", | |
"L 245.223272 245.119976 \r\n", | |
"L 247.849154 245.088226 \r\n", | |
"L 249.162096 242.627624 \r\n", | |
"L 253.100919 243.65949 \r\n", | |
"L 254.41386 243.59599 \r\n", | |
"L 255.726801 242.659374 \r\n", | |
"L 257.039743 240.000337 \r\n", | |
"L 258.352684 242.945121 \r\n", | |
"L 262.291507 243.191182 \r\n", | |
"L 263.604449 246.135966 \r\n", | |
"L 264.91739 243.492804 \r\n", | |
"L 266.230331 242.651437 \r\n", | |
"L 267.543272 243.238806 \r\n", | |
"L 271.482096 241.016327 \r\n", | |
"L 272.795037 242.222816 \r\n", | |
"L 274.107978 241.103639 \r\n", | |
"L 275.420919 241.175076 \r\n", | |
"L 276.73386 240.865516 \r\n", | |
"L 280.672684 241.325887 \r\n", | |
"L 281.985625 240.706768 \r\n", | |
"L 283.298566 239.825714 \r\n", | |
"L 284.611507 241.056014 \r\n", | |
"L 285.924449 244.572293 \r\n", | |
"L 289.863272 245.556534 \r\n", | |
"L 291.176213 247.794887 \r\n", | |
"L 292.489154 245.985155 \r\n", | |
"L 293.802096 246.723335 \r\n", | |
"L 295.115037 246.834459 \r\n", | |
"L 299.05386 249.66812 \r\n", | |
"L 300.366801 249.993554 \r\n", | |
"L 301.679743 249.041063 \r\n", | |
"L 302.992684 248.890252 \r\n", | |
"L 304.305625 249.152187 \r\n", | |
"L 308.244449 249.001376 \r\n", | |
"L 309.55739 248.112384 \r\n", | |
"L 310.870331 246.485212 \r\n", | |
"L 312.183272 250.811109 \r\n", | |
"L 313.496213 255.914872 \r\n", | |
"L 317.435037 256.827676 \r\n", | |
"L 318.747978 254.581385 \r\n", | |
"L 320.060919 255.256066 \r\n", | |
"L 321.37386 255.15288 \r\n", | |
"L 322.686801 256.819739 \r\n", | |
"L 326.625625 257.621418 \r\n", | |
"L 327.938566 256.287931 \r\n", | |
"L 329.251507 258.954906 \r\n", | |
"L 330.564449 262.360061 \r\n", | |
"L 331.87739 262.494997 \r\n", | |
"L 335.816213 261.661567 \r\n", | |
"L 338.442096 260.264581 \r\n", | |
"L 341.067978 258.645346 \r\n", | |
"L 345.006801 260.01852 \r\n", | |
"L 346.319743 260.709076 \r\n", | |
"L 347.632684 260.240768 \r\n", | |
"L 348.945625 258.550097 \r\n", | |
"L 350.258566 255.708499 \r\n", | |
"L 354.19739 253.779705 \r\n", | |
"L 355.510331 255.835498 \r\n", | |
"L 356.823272 253.938454 \r\n", | |
"L 358.136213 251.025419 \r\n", | |
"L 362.075037 251.416999 \r\n", | |
"L 363.387978 251.565164 \r\n", | |
"L 366.01386 247.310705 \r\n", | |
"L 367.326801 247.47739 \r\n", | |
"L 368.639743 248.136197 \r\n", | |
"L 372.578566 247.040832 \r\n", | |
"L 373.891507 246.540774 \r\n", | |
"L 375.204449 246.49315 \r\n", | |
"L 376.51739 247.278955 \r\n", | |
"L 377.830331 249.064875 \r\n", | |
"L 381.769154 250.739672 \r\n", | |
"L 383.082096 251.049231 \r\n", | |
"L 384.395037 253.382834 \r\n", | |
"L 385.707978 251.255604 \r\n", | |
"L 390.959743 252.866901 \r\n", | |
"L 392.272684 252.343031 \r\n", | |
"L 393.585625 255.216379 \r\n", | |
"L 396.211507 255.319565 \r\n", | |
"L 400.150331 254.414699 \r\n", | |
"L 401.463272 253.771768 \r\n", | |
"L 402.776213 252.668466 \r\n", | |
"L 404.089154 253.112962 \r\n", | |
"L 405.402096 250.723797 \r\n", | |
"L 409.340919 251.549289 \r\n", | |
"L 410.65386 252.00966 \r\n", | |
"L 411.966801 250.4063 \r\n", | |
"L 413.279743 249.168062 \r\n", | |
"L 414.592684 246.977333 \r\n", | |
"L 418.531507 246.715398 \r\n", | |
"L 419.844449 244.969165 \r\n", | |
"L 421.15739 243.810301 \r\n", | |
"L 422.470331 242.159316 \r\n", | |
"L 423.783272 243.341993 \r\n", | |
"L 427.722096 243.278493 \r\n", | |
"L 429.035037 244.040486 \r\n", | |
"L 430.347978 242.683186 \r\n", | |
"L 432.97386 246.818584 \r\n", | |
"L 438.225625 244.111923 \r\n", | |
"L 439.538566 244.453232 \r\n", | |
"L 440.851507 241.929131 \r\n", | |
"L 442.164449 242.746686 \r\n", | |
"L 446.103272 242.167254 \r\n", | |
"L 447.416213 241.405261 \r\n", | |
"L 448.729154 244.770729 \r\n", | |
"L 450.042096 244.70723 \r\n", | |
"L 451.355037 244.016674 \r\n", | |
"L 455.29386 244.080173 \r\n", | |
"L 456.606801 243.826175 \r\n", | |
"L 457.919743 244.294483 \r\n", | |
"L 459.232684 245.453347 \r\n", | |
"L 460.545625 244.223047 \r\n", | |
"L 464.484449 244.270671 \r\n", | |
"L 465.79739 246.437588 \r\n", | |
"L 468.423272 247.358329 \r\n", | |
"L 469.736213 248.120322 \r\n", | |
"L 473.675037 247.088457 \r\n", | |
"L 474.987978 249.549058 \r\n", | |
"L 477.61386 250.318988 \r\n", | |
"L 478.926801 247.937761 \r\n", | |
"L 482.865625 245.929593 \r\n", | |
"L 484.178566 244.461169 \r\n", | |
"L 485.491507 242.675249 \r\n", | |
"L 486.804449 241.81007 \r\n", | |
"L 488.11739 241.2862 \r\n", | |
"L 492.056213 241.74657 \r\n", | |
"L 493.369154 241.357637 \r\n", | |
"L 494.682096 239.786027 \r\n", | |
"L 495.995037 238.42079 \r\n", | |
"L 497.307978 239.285969 \r\n", | |
"L 501.246801 237.500048 \r\n", | |
"L 502.559743 235.999875 \r\n", | |
"L 503.872684 236.491996 \r\n", | |
"L 505.185625 236.563432 \r\n", | |
"L 506.498566 234.380641 \r\n", | |
"L 510.43739 231.808915 \r\n", | |
"L 515.689154 230.491303 \r\n", | |
"L 519.627978 232.856655 \r\n", | |
"L 522.25386 229.491188 \r\n", | |
"L 523.566801 227.625893 \r\n", | |
"L 524.879743 228.562509 \r\n", | |
"L 530.131507 226.736902 \r\n", | |
"L 531.444449 229.784872 \r\n", | |
"L 532.75739 228.927631 \r\n", | |
"L 534.070331 226.070158 \r\n", | |
"L 538.009154 223.188873 \r\n", | |
"L 539.322096 222.530067 \r\n", | |
"L 540.635037 220.656835 \r\n", | |
"L 541.947978 223.093624 \r\n", | |
"L 543.260919 222.530067 \r\n", | |
"L 547.199743 228.49901 \r\n", | |
"L 548.512684 229.491188 \r\n", | |
"L 549.825625 227.340146 \r\n", | |
"L 551.138566 229.332439 \r\n", | |
"L 552.451507 230.491303 \r\n", | |
"L 556.390331 232.221662 \r\n", | |
"L 557.703272 231.02311 \r\n", | |
"L 559.016213 230.205556 \r\n", | |
"L 560.329154 231.380295 \r\n", | |
"L 561.642096 233.507524 \r\n", | |
"L 565.580919 232.150225 \r\n", | |
"L 566.89386 229.737248 \r\n", | |
"L 568.206801 231.602542 \r\n", | |
"L 569.519743 232.126412 \r\n", | |
"L 570.832684 232.975717 \r\n", | |
"L 574.771507 234.039332 \r\n", | |
"L 576.084449 235.761753 \r\n", | |
"L 577.39739 235.341069 \r\n", | |
"L 578.710331 234.317141 \r\n", | |
"L 580.023272 235.356944 \r\n", | |
"L 585.275037 237.325425 \r\n", | |
"L 586.587978 237.468299 \r\n", | |
"L 587.900919 238.650975 \r\n", | |
"L 589.21386 247.088457 \r\n", | |
"L 593.152684 249.612558 \r\n", | |
"L 594.465625 246.509025 \r\n", | |
"L 597.091507 247.659951 \r\n", | |
"L 598.404449 257.700793 \r\n", | |
"L 603.656213 273.139082 \r\n", | |
"L 604.969154 276.345802 \r\n", | |
"L 606.282096 290.490291 \r\n", | |
"L 607.595037 281.147943 \r\n", | |
"L 611.53386 280.965382 \r\n", | |
"L 612.846801 281.933748 \r\n", | |
"L 614.159743 292.879456 \r\n", | |
"L 615.472684 287.25976 \r\n", | |
"L 616.785625 276.845859 \r\n", | |
"L 620.724449 285.62465 \r\n", | |
"L 622.03739 280.94157 \r\n", | |
"L 623.350331 281.243192 \r\n", | |
"L 624.663272 285.505589 \r\n", | |
"L 625.976213 287.585194 \r\n", | |
"L 629.915037 290.482354 \r\n", | |
"L 631.227978 285.307153 \r\n", | |
"L 632.540919 287.172448 \r\n", | |
"L 633.85386 285.735774 \r\n", | |
"L 635.166801 286.069146 \r\n", | |
"L 639.105625 283.505358 \r\n", | |
"L 640.418566 276.647424 \r\n", | |
"L 641.731507 276.488675 \r\n", | |
"L 643.044449 272.297715 \r\n", | |
"L 644.35739 273.297831 \r\n", | |
"L 648.296213 275.48856 \r\n", | |
"L 649.609154 274.782129 \r\n", | |
"L 650.922096 282.417931 \r\n", | |
"L 652.235037 283.648232 \r\n", | |
"L 653.547978 281.941686 \r\n", | |
"L 657.486801 282.973551 \r\n", | |
"L 658.799743 285.981834 \r\n", | |
"L 660.112684 283.362485 \r\n", | |
"L 661.425625 281.965498 \r\n", | |
"L 662.738566 283.124362 \r\n", | |
"L 666.67739 283.021175 \r\n", | |
"L 667.990331 281.282879 \r\n", | |
"L 670.616213 276.742673 \r\n", | |
"L 675.867978 279.1874 \r\n", | |
"L 678.49386 277.917412 \r\n", | |
"L 679.806801 277.417354 \r\n", | |
"L 681.119743 278.13966 \r\n", | |
"L 686.371507 280.052579 \r\n", | |
"L 687.684449 283.799043 \r\n", | |
"L 688.99739 286.077084 \r\n", | |
"L 690.310331 286.585079 \r\n", | |
"L 694.249154 284.600723 \r\n", | |
"L 695.562096 283.013238 \r\n", | |
"L 696.875037 281.909936 \r\n", | |
"L 698.187978 279.512834 \r\n", | |
"L 699.500919 282.751303 \r\n", | |
"L 703.439743 282.671929 \r\n", | |
"L 704.752684 279.163587 \r\n", | |
"L 706.065625 277.06017 \r\n", | |
"L 707.378566 273.020021 \r\n", | |
"L 708.691507 273.63914 \r\n", | |
"L 712.630331 271.686534 \r\n", | |
"L 713.943272 268.360753 \r\n", | |
"L 715.256213 260.740826 \r\n", | |
"L 716.569154 261.764754 \r\n", | |
"L 717.882096 261.248821 \r\n", | |
"L 721.820919 258.494535 \r\n", | |
"L 723.13386 260.724951 \r\n", | |
"L 724.446801 263.558612 \r\n", | |
"L 725.759743 268.765562 \r\n", | |
"L 731.011507 270.702293 \r\n", | |
"L 732.324449 266.662144 \r\n", | |
"L 733.63739 267.805133 \r\n", | |
"L 734.950331 270.876917 \r\n", | |
"L 736.263272 268.868748 \r\n", | |
"L 740.202096 270.019675 \r\n", | |
"L 741.515037 268.106756 \r\n", | |
"L 744.140919 271.988156 \r\n", | |
"L 745.45386 271.273788 \r\n", | |
"L 750.705625 271.757971 \r\n", | |
"L 754.644449 266.447834 \r\n", | |
"L 758.583272 262.844243 \r\n", | |
"L 759.896213 265.082597 \r\n", | |
"L 761.209154 266.233523 \r\n", | |
"L 763.835037 267.400325 \r\n", | |
"L 767.77386 265.836652 \r\n", | |
"L 769.086801 269.019559 \r\n", | |
"L 770.399743 266.836768 \r\n", | |
"L 771.712684 266.170024 \r\n", | |
"L 775.651507 265.725528 \r\n", | |
"L 776.964449 265.590592 \r\n", | |
"L 778.27739 260.931324 \r\n", | |
"L 779.590331 262.106063 \r\n", | |
"L 780.903272 260.582078 \r\n", | |
"L 782.216213 262.661683 \r\n", | |
"L 786.155037 261.256759 \r\n", | |
"L 787.467978 261.828253 \r\n", | |
"L 788.780919 260.494766 \r\n", | |
"L 790.09386 260.931324 \r\n", | |
"L 791.406801 258.629471 \r\n", | |
"L 795.345625 254.311513 \r\n", | |
"L 796.658566 253.112962 \r\n", | |
"L 797.971507 253.295522 \r\n", | |
"L 799.284449 254.255951 \r\n", | |
"L 800.59739 253.867017 \r\n", | |
"L 804.536213 253.890829 \r\n", | |
"L 805.849154 250.136428 \r\n", | |
"L 807.162096 244.135735 \r\n", | |
"L 808.475037 241.841819 \r\n", | |
"L 809.787978 243.199119 \r\n", | |
"L 813.726801 243.961112 \r\n", | |
"L 815.039743 244.95329 \r\n", | |
"L 816.352684 243.881737 \r\n", | |
"L 817.665625 247.842512 \r\n", | |
"L 818.978566 249.564933 \r\n", | |
"L 822.91739 249.049 \r\n", | |
"L 824.230331 251.446103 \r\n", | |
"L 825.543272 253.319335 \r\n", | |
"L 826.856213 252.74784 \r\n", | |
"L 828.169154 253.54952 \r\n", | |
"L 833.420919 253.224085 \r\n", | |
"L 836.046801 257.629356 \r\n", | |
"L 837.359743 259.288277 \r\n", | |
"L 841.298566 257.089611 \r\n", | |
"L 842.611507 259.923271 \r\n", | |
"L 843.924449 260.351892 \r\n", | |
"L 845.23739 259.534338 \r\n", | |
"L 846.550331 257.637293 \r\n", | |
"L 850.489154 254.724259 \r\n", | |
"L 851.802096 250.596798 \r\n", | |
"L 853.115037 249.866555 \r\n", | |
"L 854.427978 250.71586 \r\n", | |
"L 855.740919 250.461862 \r\n", | |
"L 859.679743 253.700331 \r\n", | |
"L 862.305625 250.771421 \r\n", | |
"L 863.618566 252.057284 \r\n", | |
"L 864.931507 252.819277 \r\n", | |
"L 868.870331 252.033472 \r\n", | |
"L 870.183272 254.335325 \r\n", | |
"L 871.496213 252.914526 \r\n", | |
"L 872.809154 251.94616 \r\n", | |
"L 874.122096 267.868633 \r\n", | |
"L 878.060919 267.789259 \r\n", | |
"L 879.37386 265.677904 \r\n", | |
"L 880.686801 266.344647 \r\n", | |
"L 881.999743 267.638448 \r\n", | |
"L 883.312684 269.662491 \r\n", | |
"L 887.251507 269.47993 \r\n", | |
"L 888.564449 269.860926 \r\n", | |
"L 889.87739 269.265619 \r\n", | |
"L 891.190331 271.242038 \r\n", | |
"L 892.503272 272.956522 \r\n", | |
"L 896.442096 272.416777 \r\n", | |
"L 897.755037 268.971935 \r\n", | |
"L 899.067978 265.947776 \r\n", | |
"L 900.380919 266.916142 \r\n", | |
"L 901.69386 264.495228 \r\n", | |
"L 905.632684 264.685726 \r\n", | |
"L 908.258566 271.107102 \r\n", | |
"L 909.571507 270.448296 \r\n", | |
"L 910.884449 272.504088 \r\n", | |
"L 914.823272 273.655015 \r\n", | |
"L 916.136213 268.654438 \r\n", | |
"L 918.762096 262.399748 \r\n", | |
"L 920.075037 261.526631 \r\n", | |
"L 924.01386 254.446449 \r\n", | |
"L 925.326801 248.715629 \r\n", | |
"L 926.639743 240.794079 \r\n", | |
"L 927.952684 240.143211 \r\n", | |
"L 929.265625 240.143211 \r\n", | |
"L 929.265625 240.143211 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_51\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 335.476295 \r\n", | |
"L 37.778566 333.98501 \r\n", | |
"L 43.030331 333.202696 \r\n", | |
"L 44.343272 332.065897 \r\n", | |
"L 45.656213 332.102568 \r\n", | |
"L 46.969154 330.843532 \r\n", | |
"L 50.907978 330.550164 \r\n", | |
"L 52.220919 329.621167 \r\n", | |
"L 53.53386 329.914534 \r\n", | |
"L 54.846801 326.748609 \r\n", | |
"L 56.159743 322.653686 \r\n", | |
"L 60.098566 317.336398 \r\n", | |
"L 61.411507 315.331719 \r\n", | |
"L 62.724449 316.334059 \r\n", | |
"L 64.03739 318.644329 \r\n", | |
"L 65.350331 319.426642 \r\n", | |
"L 69.289154 316.77411 \r\n", | |
"L 70.602096 317.067478 \r\n", | |
"L 71.915037 316.761886 \r\n", | |
"L 73.227978 316.00402 \r\n", | |
"L 74.540919 316.480743 \r\n", | |
"L 78.479743 315.759547 \r\n", | |
"L 79.792684 312.862542 \r\n", | |
"L 81.105625 309.647722 \r\n", | |
"L 82.418566 314.916115 \r\n", | |
"L 83.731507 316.297388 \r\n", | |
"L 87.670331 314.806102 \r\n", | |
"L 88.983272 314.524958 \r\n", | |
"L 90.296213 313.107015 \r\n", | |
"L 91.609154 317.177491 \r\n", | |
"L 92.922096 315.967349 \r\n", | |
"L 96.860919 315.405061 \r\n", | |
"L 98.17386 313.55929 \r\n", | |
"L 99.486801 313.987118 \r\n", | |
"L 100.799743 313.449277 \r\n", | |
"L 102.112684 313.498172 \r\n", | |
"L 106.051507 314.268262 \r\n", | |
"L 107.364449 314.96501 \r\n", | |
"L 108.67739 315.246154 \r\n", | |
"L 109.990331 312.850318 \r\n", | |
"L 112.616213 312.540653 \r\n", | |
"L 115.242096 312.28803 \r\n", | |
"L 116.555037 312.679187 \r\n", | |
"L 120.49386 313.12535 \r\n", | |
"L 124.432684 313.620408 \r\n", | |
"L 125.745625 312.422491 \r\n", | |
"L 128.371507 312.764753 \r\n", | |
"L 129.684449 312.471385 \r\n", | |
"L 134.936213 312.960331 \r\n", | |
"L 136.249154 312.65474 \r\n", | |
"L 137.562096 312.886989 \r\n", | |
"L 138.875037 313.522619 \r\n", | |
"L 142.81386 314.06046 \r\n", | |
"L 144.126801 313.644856 \r\n", | |
"L 145.439743 314.170473 \r\n", | |
"L 146.752684 315.148365 \r\n", | |
"L 148.065625 316.517413 \r\n", | |
"L 152.004449 319.707786 \r\n", | |
"L 153.31739 318.693223 \r\n", | |
"L 154.630331 319.475537 \r\n", | |
"L 155.943272 321.785807 \r\n", | |
"L 157.256213 321.920267 \r\n", | |
"L 161.195037 321.089059 \r\n", | |
"L 162.507978 321.064611 \r\n", | |
"L 163.820919 321.553558 \r\n", | |
"L 165.13386 321.859149 \r\n", | |
"L 166.446801 321.247966 \r\n", | |
"L 170.385625 322.384766 \r\n", | |
"L 171.698566 322.580344 \r\n", | |
"L 173.011507 321.357979 \r\n", | |
"L 174.324449 322.03028 \r\n", | |
"L 176.950331 322.217709 \r\n", | |
"L 180.889154 322.384766 \r\n", | |
"L 182.202096 322.592568 \r\n", | |
"L 183.515037 322.580344 \r\n", | |
"L 184.827978 324.242761 \r\n", | |
"L 188.766801 324.389444 \r\n", | |
"L 190.079743 324.817272 \r\n", | |
"L 192.705625 325.306218 \r\n", | |
"L 194.018566 324.951732 \r\n", | |
"L 197.95739 325.196205 \r\n", | |
"L 199.270331 326.14965 \r\n", | |
"L 200.583272 327.249779 \r\n", | |
"L 204.522096 328.561784 \r\n", | |
"L 207.147978 329.523378 \r\n", | |
"L 209.77386 326.846398 \r\n", | |
"L 211.086801 325.636257 \r\n", | |
"L 212.399743 326.626372 \r\n", | |
"L 216.338566 325.905177 \r\n", | |
"L 217.651507 325.966295 \r\n", | |
"L 218.964449 324.413892 \r\n", | |
"L 220.27739 320.832362 \r\n", | |
"L 221.590331 321.137953 \r\n", | |
"L 225.529154 320.649007 \r\n", | |
"L 228.155037 321.199072 \r\n", | |
"L 229.467978 321.247966 \r\n", | |
"L 230.780919 322.43366 \r\n", | |
"L 234.719743 322.201411 \r\n", | |
"L 236.032684 320.514547 \r\n", | |
"L 237.345625 321.565781 \r\n", | |
"L 238.658566 320.392311 \r\n", | |
"L 239.971507 320.428982 \r\n", | |
"L 247.849154 319.255511 \r\n", | |
"L 249.162096 319.402195 \r\n", | |
"L 253.100919 318.888802 \r\n", | |
"L 254.41386 315.539521 \r\n", | |
"L 255.726801 314.842773 \r\n", | |
"L 257.039743 314.757208 \r\n", | |
"L 258.352684 317.030807 \r\n", | |
"L 262.291507 316.590755 \r\n", | |
"L 263.604449 316.933018 \r\n", | |
"L 264.91739 316.602979 \r\n", | |
"L 266.230331 314.647195 \r\n", | |
"L 267.543272 312.459162 \r\n", | |
"L 271.482096 310.087773 \r\n", | |
"L 272.795037 304.599354 \r\n", | |
"L 274.107978 300.382195 \r\n", | |
"L 275.420919 293.255807 \r\n", | |
"L 276.73386 294.661526 \r\n", | |
"L 280.672684 291.984547 \r\n", | |
"L 281.985625 292.302362 \r\n", | |
"L 283.298566 289.405357 \r\n", | |
"L 284.611507 287.962966 \r\n", | |
"L 285.924449 289.967645 \r\n", | |
"L 289.863272 288.097426 \r\n", | |
"L 291.176213 290.212118 \r\n", | |
"L 292.489154 291.141115 \r\n", | |
"L 293.802096 291.031102 \r\n", | |
"L 295.115037 289.478699 \r\n", | |
"L 299.05386 289.099765 \r\n", | |
"L 300.366801 289.258673 \r\n", | |
"L 301.679743 290.175447 \r\n", | |
"L 302.992684 290.371025 \r\n", | |
"L 304.305625 291.446706 \r\n", | |
"L 308.244449 288.891963 \r\n", | |
"L 309.55739 288.415241 \r\n", | |
"L 310.870331 284.515896 \r\n", | |
"L 312.183272 284.943724 \r\n", | |
"L 313.496213 288.060755 \r\n", | |
"L 317.435037 289.466475 \r\n", | |
"L 318.747978 288.794174 \r\n", | |
"L 320.060919 287.816282 \r\n", | |
"L 321.37386 287.290665 \r\n", | |
"L 322.686801 288.268557 \r\n", | |
"L 326.625625 289.050871 \r\n", | |
"L 327.938566 291.935652 \r\n", | |
"L 329.251507 296.372837 \r\n", | |
"L 331.87739 303.609239 \r\n", | |
"L 335.816213 302.472439 \r\n", | |
"L 338.442096 297.900794 \r\n", | |
"L 339.755037 294.013673 \r\n", | |
"L 341.067978 295.370498 \r\n", | |
"L 345.006801 295.407169 \r\n", | |
"L 346.319743 293.720305 \r\n", | |
"L 347.632684 294.148133 \r\n", | |
"L 348.945625 292.241244 \r\n", | |
"L 350.258566 291.666732 \r\n", | |
"L 354.19739 291.434483 \r\n", | |
"L 355.510331 292.326809 \r\n", | |
"L 356.823272 289.515369 \r\n", | |
"L 358.136213 284.308094 \r\n", | |
"L 359.449154 280.824354 \r\n", | |
"L 363.387978 282.132285 \r\n", | |
"L 364.700919 283.916938 \r\n", | |
"L 366.01386 281.411089 \r\n", | |
"L 367.326801 282.266745 \r\n", | |
"L 368.639743 280.286513 \r\n", | |
"L 372.578566 281.04438 \r\n", | |
"L 373.891507 271.864418 \r\n", | |
"L 376.51739 278.880794 \r\n", | |
"L 377.830331 279.36974 \r\n", | |
"L 381.769154 279.467529 \r\n", | |
"L 383.082096 275.947117 \r\n", | |
"L 384.395037 276.032683 \r\n", | |
"L 385.707978 275.971565 \r\n", | |
"L 387.020919 276.570524 \r\n", | |
"L 392.272684 277.340614 \r\n", | |
"L 394.898566 284.381436 \r\n", | |
"L 396.211507 283.427991 \r\n", | |
"L 400.150331 282.743467 \r\n", | |
"L 401.463272 281.790022 \r\n", | |
"L 402.776213 279.858686 \r\n", | |
"L 404.089154 279.320845 \r\n", | |
"L 405.402096 280.934367 \r\n", | |
"L 409.340919 279.944251 \r\n", | |
"L 410.65386 276.668313 \r\n", | |
"L 411.966801 276.032683 \r\n", | |
"L 413.279743 274.125793 \r\n", | |
"L 414.592684 269.028531 \r\n", | |
"L 418.531507 266.742709 \r\n", | |
"L 419.844449 263.417876 \r\n", | |
"L 421.15739 262.647786 \r\n", | |
"L 422.470331 263.723467 \r\n", | |
"L 423.783272 267.916179 \r\n", | |
"L 427.722096 264.46911 \r\n", | |
"L 429.035037 259.775228 \r\n", | |
"L 430.347978 257.477181 \r\n", | |
"L 431.660919 256.53596 \r\n", | |
"L 432.97386 254.555729 \r\n", | |
"L 438.225625 250.998647 \r\n", | |
"L 440.851507 251.292014 \r\n", | |
"L 442.164449 252.7833 \r\n", | |
"L 446.103272 252.746629 \r\n", | |
"L 447.416213 251.340909 \r\n", | |
"L 448.729154 250.118544 \r\n", | |
"L 450.042096 249.874071 \r\n", | |
"L 451.355037 246.989289 \r\n", | |
"L 455.29386 245.033505 \r\n", | |
"L 456.606801 237.760433 \r\n", | |
"L 457.919743 234.863428 \r\n", | |
"L 459.232684 238.127143 \r\n", | |
"L 460.545625 236.978119 \r\n", | |
"L 464.484449 237.01479 \r\n", | |
"L 465.79739 237.772657 \r\n", | |
"L 467.110331 241.244174 \r\n", | |
"L 468.423272 249.091757 \r\n", | |
"L 469.736213 250.424135 \r\n", | |
"L 473.675037 244.972387 \r\n", | |
"L 474.987978 248.0283 \r\n", | |
"L 476.300919 246.915947 \r\n", | |
"L 477.61386 245.057952 \r\n", | |
"L 478.926801 246.170305 \r\n", | |
"L 482.865625 247.038184 \r\n", | |
"L 484.178566 248.896179 \r\n", | |
"L 485.491507 249.079534 \r\n", | |
"L 486.804449 248.896179 \r\n", | |
"L 488.11739 249.030639 \r\n", | |
"L 492.056213 248.969521 \r\n", | |
"L 493.369154 247.783827 \r\n", | |
"L 495.995037 249.861847 \r\n", | |
"L 497.307978 250.24078 \r\n", | |
"L 502.559743 249.959636 \r\n", | |
"L 503.872684 250.032978 \r\n", | |
"L 505.185625 249.727387 \r\n", | |
"L 506.498566 248.0283 \r\n", | |
"L 510.43739 247.02596 \r\n", | |
"L 515.689154 247.441564 \r\n", | |
"L 520.940919 249.097869 \r\n", | |
"L 522.25386 249.556256 \r\n", | |
"L 523.566801 249.482914 \r\n", | |
"L 524.879743 248.79839 \r\n", | |
"L 528.818566 248.29722 \r\n", | |
"L 530.131507 242.77213 \r\n", | |
"L 532.75739 241.158608 \r\n", | |
"L 534.070331 237.833775 \r\n", | |
"L 538.009154 234.154456 \r\n", | |
"L 539.322096 238.383839 \r\n", | |
"L 540.635037 231.122991 \r\n", | |
"L 541.947978 219.156037 \r\n", | |
"L 543.260919 214.425484 \r\n", | |
"L 547.199743 220.158376 \r\n", | |
"L 548.512684 214.975549 \r\n", | |
"L 549.825625 213.887644 \r\n", | |
"L 551.138566 213.924315 \r\n", | |
"L 552.451507 208.264764 \r\n", | |
"L 556.390331 210.782836 \r\n", | |
"L 557.703272 206.907939 \r\n", | |
"L 559.016213 206.736808 \r\n", | |
"L 560.329154 207.775818 \r\n", | |
"L 561.642096 207.995844 \r\n", | |
"L 565.580919 210.868402 \r\n", | |
"L 566.89386 205.991165 \r\n", | |
"L 568.206801 203.72979 \r\n", | |
"L 569.519743 198.620304 \r\n", | |
"L 570.832684 199.084803 \r\n", | |
"L 574.771507 198.180253 \r\n", | |
"L 576.084449 202.531872 \r\n", | |
"L 577.39739 208.814829 \r\n", | |
"L 578.710331 205.441101 \r\n", | |
"L 580.023272 207.482451 \r\n", | |
"L 585.275037 210.685047 \r\n", | |
"L 586.587978 219.217155 \r\n", | |
"L 587.900919 218.190369 \r\n", | |
"L 589.21386 236.061346 \r\n", | |
"L 593.152684 228.543801 \r\n", | |
"L 594.465625 231.58749 \r\n", | |
"L 595.778566 237.027014 \r\n", | |
"L 597.091507 237.552631 \r\n", | |
"L 598.404449 249.70294 \r\n", | |
"L 603.656213 263.234521 \r\n", | |
"L 604.969154 271.93776 \r\n", | |
"L 606.282096 289.466475 \r\n", | |
"L 607.595037 290.077657 \r\n", | |
"L 611.53386 298.964251 \r\n", | |
"L 612.846801 296.825112 \r\n", | |
"L 614.159743 301.37231 \r\n", | |
"L 615.472684 294.869328 \r\n", | |
"L 616.785625 276.631642 \r\n", | |
"L 620.724449 286.031629 \r\n", | |
"L 623.350331 276.668313 \r\n", | |
"L 624.663272 282.278968 \r\n", | |
"L 625.976213 283.672465 \r\n", | |
"L 629.915037 284.014727 \r\n", | |
"L 631.227978 275.837105 \r\n", | |
"L 632.540919 276.081578 \r\n", | |
"L 633.85386 274.590292 \r\n", | |
"L 635.166801 271.791076 \r\n", | |
"L 639.105625 264.933608 \r\n", | |
"L 640.418566 257.80722 \r\n", | |
"L 641.731507 261.559881 \r\n", | |
"L 643.044449 257.746102 \r\n", | |
"L 644.35739 259.98303 \r\n", | |
"L 648.296213 261.767683 \r\n", | |
"L 649.609154 261.633223 \r\n", | |
"L 650.922096 270.544264 \r\n", | |
"L 652.235037 272.059997 \r\n", | |
"L 653.547978 271.338801 \r\n", | |
"L 657.486801 262.855588 \r\n", | |
"L 658.799743 268.686269 \r\n", | |
"L 660.112684 265.874829 \r\n", | |
"L 661.425625 264.701359 \r\n", | |
"L 662.738566 266.54713 \r\n", | |
"L 666.67739 264.786924 \r\n", | |
"L 667.990331 261.779906 \r\n", | |
"L 669.303272 260.630883 \r\n", | |
"L 670.616213 258.039469 \r\n", | |
"L 675.867978 260.716449 \r\n", | |
"L 677.180919 257.379392 \r\n", | |
"L 678.49386 256.047014 \r\n", | |
"L 679.806801 256.584855 \r\n", | |
"L 681.119743 258.259495 \r\n", | |
"L 686.371507 257.024906 \r\n", | |
"L 687.684449 260.777567 \r\n", | |
"L 688.99739 263.515665 \r\n", | |
"L 690.310331 262.305523 \r\n", | |
"L 694.249154 259.176269 \r\n", | |
"L 696.875037 251.585382 \r\n", | |
"L 698.187978 252.832194 \r\n", | |
"L 699.500919 256.67042 \r\n", | |
"L 703.439743 253.162233 \r\n", | |
"L 704.752684 250.680832 \r\n", | |
"L 706.065625 249.617374 \r\n", | |
"L 707.378566 249.128428 \r\n", | |
"L 708.691507 245.889161 \r\n", | |
"L 712.630331 243.2733 \r\n", | |
"L 713.943272 234.191127 \r\n", | |
"L 715.256213 236.049122 \r\n", | |
"L 716.569154 228.837168 \r\n", | |
"L 717.882096 225.879045 \r\n", | |
"L 721.820919 225.903492 \r\n", | |
"L 723.13386 226.881384 \r\n", | |
"L 724.446801 227.113634 \r\n", | |
"L 725.759743 235.584623 \r\n", | |
"L 731.011507 234.57006 \r\n", | |
"L 732.324449 226.60024 \r\n", | |
"L 733.63739 220.818453 \r\n", | |
"L 734.950331 225.072284 \r\n", | |
"L 736.263272 226.233531 \r\n", | |
"L 740.202096 226.856937 \r\n", | |
"L 741.515037 225.072284 \r\n", | |
"L 744.140919 225.121178 \r\n", | |
"L 745.45386 223.189842 \r\n", | |
"L 749.392684 221.955253 \r\n", | |
"L 750.705625 221.808569 \r\n", | |
"L 753.331507 222.737567 \r\n", | |
"L 754.644449 222.88425 \r\n", | |
"L 758.583272 217.554739 \r\n", | |
"L 759.896213 220.121705 \r\n", | |
"L 762.522096 212.543042 \r\n", | |
"L 763.835037 214.841088 \r\n", | |
"L 767.77386 215.122232 \r\n", | |
"L 769.086801 218.789327 \r\n", | |
"L 770.399743 214.327695 \r\n", | |
"L 771.712684 214.767746 \r\n", | |
"L 773.025625 209.548248 \r\n", | |
"L 776.964449 202.837464 \r\n", | |
"L 778.27739 197.960227 \r\n", | |
"L 779.590331 198.669199 \r\n", | |
"L 780.903272 198.388055 \r\n", | |
"L 782.216213 202.666332 \r\n", | |
"L 786.155037 200.14826 \r\n", | |
"L 787.467978 199.683762 \r\n", | |
"L 788.780919 196.872322 \r\n", | |
"L 790.09386 198.302489 \r\n", | |
"L 791.406801 193.364134 \r\n", | |
"L 795.345625 188.706924 \r\n", | |
"L 796.658566 185.443209 \r\n", | |
"L 797.971507 182.595098 \r\n", | |
"L 799.284449 187.570124 \r\n", | |
"L 800.59739 187.875715 \r\n", | |
"L 804.536213 187.386769 \r\n", | |
"L 805.849154 170.188093 \r\n", | |
"L 807.162096 166.508774 \r\n", | |
"L 808.475037 170.151422 \r\n", | |
"L 809.787978 169.613581 \r\n", | |
"L 813.726801 173.952977 \r\n", | |
"L 815.039743 177.901216 \r\n", | |
"L 816.352684 177.754533 \r\n", | |
"L 817.665625 181.543864 \r\n", | |
"L 818.978566 181.274944 \r\n", | |
"L 822.91739 173.610715 \r\n", | |
"L 824.230331 172.962862 \r\n", | |
"L 825.543272 172.938414 \r\n", | |
"L 826.856213 171.679378 \r\n", | |
"L 828.169154 173.170664 \r\n", | |
"L 832.107978 170.738157 \r\n", | |
"L 834.73386 175.884314 \r\n", | |
"L 836.046801 180.248157 \r\n", | |
"L 837.359743 181.103813 \r\n", | |
"L 841.298566 184.098607 \r\n", | |
"L 842.611507 183.829687 \r\n", | |
"L 843.924449 182.93736 \r\n", | |
"L 845.23739 180.822669 \r\n", | |
"L 846.550331 178.402386 \r\n", | |
"L 850.489154 177.167797 \r\n", | |
"L 851.802096 177.681191 \r\n", | |
"L 853.115037 173.415137 \r\n", | |
"L 854.427978 176.422155 \r\n", | |
"L 855.740919 180.174815 \r\n", | |
"L 859.679743 186.531114 \r\n", | |
"L 860.992684 181.837232 \r\n", | |
"L 862.305625 164.748569 \r\n", | |
"L 863.618566 170.21254 \r\n", | |
"L 864.931507 173.855188 \r\n", | |
"L 868.870331 173.244006 \r\n", | |
"L 870.183272 175.83542 \r\n", | |
"L 871.496213 174.331911 \r\n", | |
"L 872.809154 173.904083 \r\n", | |
"L 874.122096 155.666396 \r\n", | |
"L 878.060919 148.588902 \r\n", | |
"L 879.37386 149.65236 \r\n", | |
"L 880.686801 145.66745 \r\n", | |
"L 881.999743 142.293722 \r\n", | |
"L 883.312684 146.144172 \r\n", | |
"L 887.251507 137.062 \r\n", | |
"L 888.564449 129.348877 \r\n", | |
"L 889.87739 120.462283 \r\n", | |
"L 891.190331 117.650843 \r\n", | |
"L 892.503272 126.525213 \r\n", | |
"L 896.442096 126.940817 \r\n", | |
"L 897.755037 121.403504 \r\n", | |
"L 899.067978 122.479185 \r\n", | |
"L 900.380919 119.899995 \r\n", | |
"L 901.69386 121.880226 \r\n", | |
"L 905.632684 122.320278 \r\n", | |
"L 906.945625 130.461229 \r\n", | |
"L 908.258566 134.556152 \r\n", | |
"L 909.571507 122.894789 \r\n", | |
"L 910.884449 124.960586 \r\n", | |
"L 914.823272 123.982694 \r\n", | |
"L 916.136213 116.477373 \r\n", | |
"L 920.075037 109.742141 \r\n", | |
"L 924.01386 96.247231 \r\n", | |
"L 925.326801 93.912514 \r\n", | |
"L 926.639743 77.166112 \r\n", | |
"L 927.952684 62.656639 \r\n", | |
"L 929.265625 38.967205 \r\n", | |
"L 929.265625 38.967205 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 296.536371 \r\n", | |
"L 37.778566 294.930176 \r\n", | |
"L 43.030331 294.991615 \r\n", | |
"L 44.343272 293.183548 \r\n", | |
"L 45.656213 293.683838 \r\n", | |
"L 46.969154 292.507717 \r\n", | |
"L 50.907978 293.008007 \r\n", | |
"L 52.220919 293.692615 \r\n", | |
"L 53.53386 295.746439 \r\n", | |
"L 54.846801 296.150182 \r\n", | |
"L 56.159743 294.394777 \r\n", | |
"L 60.098566 293.754055 \r\n", | |
"L 61.411507 294.824852 \r\n", | |
"L 62.724449 293.657507 \r\n", | |
"L 64.03739 292.103974 \r\n", | |
"L 65.350331 291.472028 \r\n", | |
"L 70.602096 291.656346 \r\n", | |
"L 71.915037 289.014461 \r\n", | |
"L 73.227978 289.181225 \r\n", | |
"L 74.540919 290.058927 \r\n", | |
"L 78.479743 289.628853 \r\n", | |
"L 79.792684 289.181225 \r\n", | |
"L 81.105625 289.628853 \r\n", | |
"L 82.418566 292.218075 \r\n", | |
"L 83.731507 293.130886 \r\n", | |
"L 87.670331 291.875771 \r\n", | |
"L 88.983272 290.910299 \r\n", | |
"L 90.296213 292.191744 \r\n", | |
"L 91.609154 295.825432 \r\n", | |
"L 92.922096 295.386581 \r\n", | |
"L 96.860919 295.026723 \r\n", | |
"L 98.17386 297.545729 \r\n", | |
"L 99.486801 297.730047 \r\n", | |
"L 100.799743 298.160121 \r\n", | |
"L 102.112684 297.642276 \r\n", | |
"L 106.051507 297.677384 \r\n", | |
"L 107.364449 297.958249 \r\n", | |
"L 109.990331 294.868737 \r\n", | |
"L 111.303272 295.114493 \r\n", | |
"L 115.242096 297.062993 \r\n", | |
"L 116.555037 298.423432 \r\n", | |
"L 117.867978 298.195229 \r\n", | |
"L 119.180919 299.406458 \r\n", | |
"L 124.432684 300.600134 \r\n", | |
"L 125.745625 300.003296 \r\n", | |
"L 127.058566 299.801424 \r\n", | |
"L 128.371507 298.660411 \r\n", | |
"L 133.623272 296.957668 \r\n", | |
"L 134.936213 296.940114 \r\n", | |
"L 137.562096 297.15954 \r\n", | |
"L 138.875037 298.950053 \r\n", | |
"L 142.81386 300.25783 \r\n", | |
"L 144.126801 300.134951 \r\n", | |
"L 145.439743 301.802586 \r\n", | |
"L 148.065625 301.670931 \r\n", | |
"L 152.004449 299.248472 \r\n", | |
"L 154.630331 295.992196 \r\n", | |
"L 155.943272 295.096939 \r\n", | |
"L 157.256213 293.97348 \r\n", | |
"L 161.195037 292.867575 \r\n", | |
"L 162.507978 291.0244 \r\n", | |
"L 163.820919 289.576191 \r\n", | |
"L 165.13386 292.560379 \r\n", | |
"L 166.446801 293.64873 \r\n", | |
"L 170.385625 293.587291 \r\n", | |
"L 171.698566 292.376062 \r\n", | |
"L 173.011507 289.497198 \r\n", | |
"L 174.324449 291.120947 \r\n", | |
"L 175.63739 291.173609 \r\n", | |
"L 179.576213 289.839502 \r\n", | |
"L 180.889154 290.840082 \r\n", | |
"L 182.202096 292.305846 \r\n", | |
"L 183.515037 293.288872 \r\n", | |
"L 184.827978 293.078224 \r\n", | |
"L 188.766801 290.357346 \r\n", | |
"L 190.079743 289.198779 \r\n", | |
"L 192.705625 287.75057 \r\n", | |
"L 194.018566 287.311719 \r\n", | |
"L 197.95739 289.154894 \r\n", | |
"L 199.270331 288.268414 \r\n", | |
"L 200.583272 289.260218 \r\n", | |
"L 203.209154 289.813171 \r\n", | |
"L 207.147978 289.857056 \r\n", | |
"L 208.460919 274.251506 \r\n", | |
"L 209.77386 261.682807 \r\n", | |
"L 211.086801 258.4002 \r\n", | |
"L 213.712684 258.27147 \r\n", | |
"L 216.338566 258.084227 \r\n", | |
"L 217.651507 252.238729 \r\n", | |
"L 218.964449 250.87829 \r\n", | |
"L 220.27739 249.877709 \r\n", | |
"L 221.590331 251.870094 \r\n", | |
"L 225.529154 253.967803 \r\n", | |
"L 226.842096 254.924498 \r\n", | |
"L 228.155037 253.212979 \r\n", | |
"L 229.467978 246.946183 \r\n", | |
"L 230.780919 246.638987 \r\n", | |
"L 234.719743 228.374 \r\n", | |
"L 236.032684 232.341215 \r\n", | |
"L 237.345625 231.577614 \r\n", | |
"L 238.658566 229.716884 \r\n", | |
"L 239.971507 230.015303 \r\n", | |
"L 243.910331 229.84854 \r\n", | |
"L 245.223272 227.785939 \r\n", | |
"L 247.849154 226.873128 \r\n", | |
"L 249.162096 228.646087 \r\n", | |
"L 253.100919 230.225952 \r\n", | |
"L 254.41386 231.279195 \r\n", | |
"L 255.726801 228.663641 \r\n", | |
"L 257.039743 228.804074 \r\n", | |
"L 258.352684 231.41085 \r\n", | |
"L 262.291507 229.918756 \r\n", | |
"L 263.604449 230.954445 \r\n", | |
"L 264.91739 229.084939 \r\n", | |
"L 266.230331 228.452993 \r\n", | |
"L 267.543272 228.321337 \r\n", | |
"L 271.482096 219.886617 \r\n", | |
"L 272.795037 217.701138 \r\n", | |
"L 274.107978 214.216659 \r\n", | |
"L 275.420919 210.23189 \r\n", | |
"L 276.73386 211.767869 \r\n", | |
"L 280.672684 215.419112 \r\n", | |
"L 281.985625 213.207301 \r\n", | |
"L 283.298566 213.751477 \r\n", | |
"L 284.611507 216.244152 \r\n", | |
"L 285.924449 217.788908 \r\n", | |
"L 289.863272 219.658414 \r\n", | |
"L 291.176213 224.836859 \r\n", | |
"L 292.489154 239.731469 \r\n", | |
"L 293.802096 242.092489 \r\n", | |
"L 295.115037 241.995941 \r\n", | |
"L 299.05386 242.689326 \r\n", | |
"L 300.366801 241.460543 \r\n", | |
"L 301.679743 245.190778 \r\n", | |
"L 302.992684 239.564706 \r\n", | |
"L 304.305625 231.314303 \r\n", | |
"L 308.244449 226.10075 \r\n", | |
"L 309.55739 227.118885 \r\n", | |
"L 310.870331 225.231825 \r\n", | |
"L 312.183272 226.960899 \r\n", | |
"L 313.496213 231.296749 \r\n", | |
"L 317.435037 235.7467 \r\n", | |
"L 318.747978 234.939214 \r\n", | |
"L 320.060919 232.657188 \r\n", | |
"L 321.37386 229.778323 \r\n", | |
"L 322.686801 231.226533 \r\n", | |
"L 326.625625 230.901783 \r\n", | |
"L 327.938566 232.314884 \r\n", | |
"L 329.251507 233.956187 \r\n", | |
"L 330.564449 233.745539 \r\n", | |
"L 331.87739 235.149862 \r\n", | |
"L 335.816213 235.351734 \r\n", | |
"L 337.129154 230.814012 \r\n", | |
"L 338.442096 230.489262 \r\n", | |
"L 339.755037 229.392134 \r\n", | |
"L 341.067978 230.840343 \r\n", | |
"L 345.006801 231.990134 \r\n", | |
"L 346.319743 235.167416 \r\n", | |
"L 347.632684 234.342376 \r\n", | |
"L 348.945625 228.918175 \r\n", | |
"L 350.258566 229.321918 \r\n", | |
"L 354.19739 229.190263 \r\n", | |
"L 355.510331 230.304945 \r\n", | |
"L 356.823272 228.479324 \r\n", | |
"L 358.136213 226.127081 \r\n", | |
"L 359.449154 228.426662 \r\n", | |
"L 363.387978 227.759608 \r\n", | |
"L 364.700919 228.654864 \r\n", | |
"L 366.01386 227.90004 \r\n", | |
"L 367.326801 228.54954 \r\n", | |
"L 368.639743 229.866094 \r\n", | |
"L 372.578566 228.075581 \r\n", | |
"L 375.204449 228.707527 \r\n", | |
"L 377.830331 231.612722 \r\n", | |
"L 381.769154 231.577614 \r\n", | |
"L 383.082096 232.578194 \r\n", | |
"L 384.395037 233.868417 \r\n", | |
"L 385.707978 229.857317 \r\n", | |
"L 387.020919 231.191424 \r\n", | |
"L 390.959743 234.263383 \r\n", | |
"L 392.272684 234.430146 \r\n", | |
"L 393.585625 236.30843 \r\n", | |
"L 394.898566 237.809301 \r\n", | |
"L 396.211507 237.809301 \r\n", | |
"L 400.150331 236.299653 \r\n", | |
"L 401.463272 236.641957 \r\n", | |
"L 402.776213 237.414335 \r\n", | |
"L 404.089154 236.89649 \r\n", | |
"L 405.402096 234.482809 \r\n", | |
"L 409.340919 234.623241 \r\n", | |
"L 410.65386 235.220079 \r\n", | |
"L 413.279743 233.640214 \r\n", | |
"L 414.592684 233.21014 \r\n", | |
"L 418.531507 233.104816 \r\n", | |
"L 419.844449 229.295587 \r\n", | |
"L 421.15739 226.794135 \r\n", | |
"L 422.470331 222.273968 \r\n", | |
"L 423.783272 220.000718 \r\n", | |
"L 427.722096 216.972645 \r\n", | |
"L 429.035037 214.049896 \r\n", | |
"L 430.347978 205.474743 \r\n", | |
"L 431.660919 203.236602 \r\n", | |
"L 432.97386 204.105527 \r\n", | |
"L 438.225625 201.481197 \r\n", | |
"L 439.538566 202.06048 \r\n", | |
"L 440.851507 197.154124 \r\n", | |
"L 442.164449 198.93586 \r\n", | |
"L 446.103272 203.35948 \r\n", | |
"L 447.416213 205.325533 \r\n", | |
"L 448.729154 211.337795 \r\n", | |
"L 450.042096 215.006591 \r\n", | |
"L 451.355037 215.726307 \r\n", | |
"L 455.29386 215.585875 \r\n", | |
"L 456.606801 216.700557 \r\n", | |
"L 457.919743 214.725727 \r\n", | |
"L 459.232684 208.853897 \r\n", | |
"L 460.545625 210.811174 \r\n", | |
"L 464.484449 209.889586 \r\n", | |
"L 467.110331 210.345991 \r\n", | |
"L 468.423272 211.390457 \r\n", | |
"L 469.736213 209.512174 \r\n", | |
"L 473.675037 205.878486 \r\n", | |
"L 474.987978 212.733342 \r\n", | |
"L 476.300919 214.339538 \r\n", | |
"L 477.61386 216.955091 \r\n", | |
"L 481.552684 215.632686 \r\n", | |
"L 482.865625 215.208463 \r\n", | |
"L 484.178566 215.190909 \r\n", | |
"L 485.491507 216.051057 \r\n", | |
"L 486.804449 212.575356 \r\n", | |
"L 488.11739 213.444281 \r\n", | |
"L 492.056213 213.128308 \r\n", | |
"L 493.369154 212.154058 \r\n", | |
"L 494.682096 212.505139 \r\n", | |
"L 495.995037 213.365288 \r\n", | |
"L 497.307978 210.179228 \r\n", | |
"L 501.246801 210.96916 \r\n", | |
"L 502.559743 208.599364 \r\n", | |
"L 503.872684 210.740958 \r\n", | |
"L 505.185625 210.907721 \r\n", | |
"L 506.498566 208.450154 \r\n", | |
"L 510.43739 208.142958 \r\n", | |
"L 515.689154 205.264094 \r\n", | |
"L 519.627978 208.590587 \r\n", | |
"L 522.25386 209.011884 \r\n", | |
"L 524.879743 211.548444 \r\n", | |
"L 528.818566 213.944571 \r\n", | |
"L 530.131507 213.154639 \r\n", | |
"L 531.444449 213.786585 \r\n", | |
"L 532.75739 210.749735 \r\n", | |
"L 534.070331 209.073323 \r\n", | |
"L 538.009154 209.793039 \r\n", | |
"L 539.322096 212.259383 \r\n", | |
"L 540.635037 213.804139 \r\n", | |
"L 541.947978 219.281002 \r\n", | |
"L 543.260919 222.756704 \r\n", | |
"L 547.199743 229.778323 \r\n", | |
"L 548.512684 227.961479 \r\n", | |
"L 549.825625 227.16277 \r\n", | |
"L 551.138566 230.524371 \r\n", | |
"L 552.451507 231.744377 \r\n", | |
"L 556.390331 234.070288 \r\n", | |
"L 557.703272 232.016465 \r\n", | |
"L 559.016213 228.286229 \r\n", | |
"L 560.329154 228.830405 \r\n", | |
"L 561.642096 231.7356 \r\n", | |
"L 565.580919 234.807558 \r\n", | |
"L 566.89386 230.243506 \r\n", | |
"L 568.206801 224.406785 \r\n", | |
"L 569.519743 226.653703 \r\n", | |
"L 570.832684 228.610979 \r\n", | |
"L 574.771507 228.672418 \r\n", | |
"L 576.084449 230.375161 \r\n", | |
"L 577.39739 229.716884 \r\n", | |
"L 578.710331 227.434858 \r\n", | |
"L 580.023272 229.146378 \r\n", | |
"L 585.275037 233.789424 \r\n", | |
"L 587.900919 240.521401 \r\n", | |
"L 589.21386 252.756573 \r\n", | |
"L 593.152684 254.687519 \r\n", | |
"L 594.465625 256.021627 \r\n", | |
"L 595.778566 256.627241 \r\n", | |
"L 597.091507 258.040342 \r\n", | |
"L 598.404449 267.422981 \r\n", | |
"L 604.969154 282.379031 \r\n", | |
"L 606.282096 288.558056 \r\n", | |
"L 607.595037 283.783355 \r\n", | |
"L 611.53386 289.593745 \r\n", | |
"L 612.846801 285.371996 \r\n", | |
"L 614.159743 287.829563 \r\n", | |
"L 615.472684 282.291261 \r\n", | |
"L 616.785625 275.058993 \r\n", | |
"L 620.724449 284.134436 \r\n", | |
"L 622.03739 278.771674 \r\n", | |
"L 623.350331 274.91856 \r\n", | |
"L 624.663272 275.023884 \r\n", | |
"L 625.976213 278.727789 \r\n", | |
"L 629.915037 280.14089 \r\n", | |
"L 631.227978 274.304168 \r\n", | |
"L 632.540919 275.585614 \r\n", | |
"L 633.85386 271.802716 \r\n", | |
"L 635.166801 266.106428 \r\n", | |
"L 639.105625 265.974772 \r\n", | |
"L 640.418566 263.657638 \r\n", | |
"L 641.731507 265.711462 \r\n", | |
"L 643.044449 263.912171 \r\n", | |
"L 644.35739 265.430597 \r\n", | |
"L 648.296213 267.888164 \r\n", | |
"L 649.609154 266.685711 \r\n", | |
"L 650.922096 270.600264 \r\n", | |
"L 652.235037 269.810332 \r\n", | |
"L 653.547978 270.661703 \r\n", | |
"L 657.486801 271.337534 \r\n", | |
"L 658.799743 273.961864 \r\n", | |
"L 660.112684 270.196521 \r\n", | |
"L 661.425625 267.036792 \r\n", | |
"L 662.738566 269.784001 \r\n", | |
"L 666.67739 269.274933 \r\n", | |
"L 667.990331 267.782839 \r\n", | |
"L 669.303272 264.114043 \r\n", | |
"L 670.616213 264.430016 \r\n", | |
"L 675.867978 270.003426 \r\n", | |
"L 677.180919 267.466866 \r\n", | |
"L 678.49386 267.458089 \r\n", | |
"L 679.806801 268.69565 \r\n", | |
"L 681.119743 271.398973 \r\n", | |
"L 686.371507 271.012784 \r\n", | |
"L 687.684449 271.284872 \r\n", | |
"L 688.99739 272.785743 \r\n", | |
"L 690.310331 270.600264 \r\n", | |
"L 694.249154 267.528306 \r\n", | |
"L 695.562096 264.043827 \r\n", | |
"L 696.875037 261.700361 \r\n", | |
"L 699.500919 263.078354 \r\n", | |
"L 703.439743 260.919206 \r\n", | |
"L 704.752684 258.066673 \r\n", | |
"L 706.065625 262.007557 \r\n", | |
"L 707.378566 261.287841 \r\n", | |
"L 708.691507 259.435889 \r\n", | |
"L 712.630331 258.610849 \r\n", | |
"L 713.943272 257.434727 \r\n", | |
"L 715.256213 253.581614 \r\n", | |
"L 716.569154 254.696296 \r\n", | |
"L 717.882096 255.179032 \r\n", | |
"L 721.820919 253.388519 \r\n", | |
"L 723.13386 254.88939 \r\n", | |
"L 724.446801 255.644214 \r\n", | |
"L 725.759743 260.190713 \r\n", | |
"L 731.011507 263.341665 \r\n", | |
"L 732.324449 260.006396 \r\n", | |
"L 733.63739 260.489132 \r\n", | |
"L 734.950331 263.613753 \r\n", | |
"L 736.263272 261.867125 \r\n", | |
"L 740.202096 263.306557 \r\n", | |
"L 741.515037 261.946118 \r\n", | |
"L 744.140919 265.369158 \r\n", | |
"L 745.45386 263.815624 \r\n", | |
"L 749.392684 262.174321 \r\n", | |
"L 750.705625 261.858348 \r\n", | |
"L 753.331507 262.051442 \r\n", | |
"L 754.644449 261.296618 \r\n", | |
"L 758.583272 257.741923 \r\n", | |
"L 759.896213 258.900491 \r\n", | |
"L 762.522096 257.583937 \r\n", | |
"L 763.835037 258.698619 \r\n", | |
"L 767.77386 259.155024 \r\n", | |
"L 769.086801 263.201233 \r\n", | |
"L 770.399743 273.400135 \r\n", | |
"L 771.712684 273.20704 \r\n", | |
"L 773.025625 271.837825 \r\n", | |
"L 776.964449 269.687454 \r\n", | |
"L 778.27739 268.344569 \r\n", | |
"L 779.590331 269.134501 \r\n", | |
"L 780.903272 269.678677 \r\n", | |
"L 782.216213 270.688034 \r\n", | |
"L 786.155037 271.056669 \r\n", | |
"L 787.467978 271.600845 \r\n", | |
"L 788.780919 271.539406 \r\n", | |
"L 790.09386 273.136824 \r\n", | |
"L 791.406801 272.855959 \r\n", | |
"L 795.345625 272.539987 \r\n", | |
"L 796.658566 272.671642 \r\n", | |
"L 797.971507 269.19594 \r\n", | |
"L 799.284449 267.905718 \r\n", | |
"L 800.59739 269.301264 \r\n", | |
"L 804.536213 268.406008 \r\n", | |
"L 805.849154 266.115205 \r\n", | |
"L 807.162096 265.404266 \r\n", | |
"L 808.475037 263.877063 \r\n", | |
"L 809.787978 264.666996 \r\n", | |
"L 813.726801 265.193617 \r\n", | |
"L 815.039743 266.018657 \r\n", | |
"L 816.352684 266.33463 \r\n", | |
"L 817.665625 269.169609 \r\n", | |
"L 818.978566 270.968899 \r\n", | |
"L 822.91739 270.012203 \r\n", | |
"L 824.230331 270.231629 \r\n", | |
"L 825.543272 269.573352 \r\n", | |
"L 826.856213 271.240987 \r\n", | |
"L 828.169154 272.259122 \r\n", | |
"L 832.107978 273.891648 \r\n", | |
"L 833.420919 272.373223 \r\n", | |
"L 834.73386 272.232791 \r\n", | |
"L 836.046801 275.181871 \r\n", | |
"L 837.359743 276.349215 \r\n", | |
"L 841.298566 277.727208 \r\n", | |
"L 842.611507 280.597295 \r\n", | |
"L 843.924449 280.886937 \r\n", | |
"L 845.23739 281.52766 \r\n", | |
"L 846.550331 278.499586 \r\n", | |
"L 850.489154 276.243891 \r\n", | |
"L 851.802096 274.339277 \r\n", | |
"L 853.115037 272.934953 \r\n", | |
"L 854.427978 273.11927 \r\n", | |
"L 855.740919 273.101716 \r\n", | |
"L 859.679743 277.262026 \r\n", | |
"L 860.992684 276.103458 \r\n", | |
"L 862.305625 276.823174 \r\n", | |
"L 863.618566 278.955991 \r\n", | |
"L 864.931507 282.914429 \r\n", | |
"L 868.870331 281.431112 \r\n", | |
"L 870.183272 282.580902 \r\n", | |
"L 871.496213 283.41472 \r\n", | |
"L 872.809154 285.038469 \r\n", | |
"L 874.122096 285.257895 \r\n", | |
"L 878.060919 284.503071 \r\n", | |
"L 879.37386 282.001619 \r\n", | |
"L 880.686801 285.407104 \r\n", | |
"L 881.999743 286.521786 \r\n", | |
"L 883.312684 286.644665 \r\n", | |
"L 887.251507 285.257895 \r\n", | |
"L 888.564449 286.337469 \r\n", | |
"L 889.87739 286.916753 \r\n", | |
"L 891.190331 286.697327 \r\n", | |
"L 892.503272 288.953022 \r\n", | |
"L 896.442096 289.295326 \r\n", | |
"L 897.755037 288.092874 \r\n", | |
"L 899.067978 288.443955 \r\n", | |
"L 900.380919 288.426401 \r\n", | |
"L 901.69386 288.522948 \r\n", | |
"L 905.632684 290.348569 \r\n", | |
"L 906.945625 292.788582 \r\n", | |
"L 908.258566 296.773351 \r\n", | |
"L 909.571507 296.755797 \r\n", | |
"L 910.884449 297.177094 \r\n", | |
"L 914.823272 297.177094 \r\n", | |
"L 916.136213 292.551602 \r\n", | |
"L 918.762096 289.646407 \r\n", | |
"L 920.075037 289.78684 \r\n", | |
"L 924.01386 285.266672 \r\n", | |
"L 925.326801 283.195294 \r\n", | |
"L 926.639743 281.52766 \r\n", | |
"L 927.952684 281.281903 \r\n", | |
"L 929.265625 281.281903 \r\n", | |
"L 929.265625 281.281903 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_53\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 753.331507 292.670528 \r\n", | |
"L 754.644449 287.855238 \r\n", | |
"L 759.896213 274.298602 \r\n", | |
"L 761.209154 278.207879 \r\n", | |
"L 762.522096 281.546704 \r\n", | |
"L 763.835037 280.741359 \r\n", | |
"L 767.77386 280.154129 \r\n", | |
"L 769.086801 282.821833 \r\n", | |
"L 770.399743 281.07692 \r\n", | |
"L 771.712684 281.58026 \r\n", | |
"L 773.025625 280.070239 \r\n", | |
"L 776.964449 280.103795 \r\n", | |
"L 778.27739 277.251532 \r\n", | |
"L 779.590331 277.637427 \r\n", | |
"L 780.903272 273.627481 \r\n", | |
"L 782.216213 274.06371 \r\n", | |
"L 786.155037 272.436242 \r\n", | |
"L 787.467978 268.845747 \r\n", | |
"L 788.780919 264.902914 \r\n", | |
"L 790.09386 265.825704 \r\n", | |
"L 791.406801 266.345823 \r\n", | |
"L 796.658566 262.017095 \r\n", | |
"L 797.971507 262.503657 \r\n", | |
"L 799.284449 265.238474 \r\n", | |
"L 800.59739 266.110931 \r\n", | |
"L 804.536213 265.641146 \r\n", | |
"L 805.849154 266.765273 \r\n", | |
"L 807.162096 267.419616 \r\n", | |
"L 808.475037 263.996901 \r\n", | |
"L 809.787978 260.171513 \r\n", | |
"L 813.726801 255.80923 \r\n", | |
"L 815.039743 258.896384 \r\n", | |
"L 816.352684 253.007301 \r\n", | |
"L 817.665625 253.913314 \r\n", | |
"L 818.978566 251.16172 \r\n", | |
"L 822.91739 249.450362 \r\n", | |
"L 824.230331 242.235816 \r\n", | |
"L 826.856213 233.997811 \r\n", | |
"L 828.169154 239.987562 \r\n", | |
"L 832.107978 236.866851 \r\n", | |
"L 833.420919 232.773016 \r\n", | |
"L 834.73386 234.517929 \r\n", | |
"L 836.046801 240.272788 \r\n", | |
"L 837.359743 248.041009 \r\n", | |
"L 841.298566 249.567808 \r\n", | |
"L 842.611507 255.675006 \r\n", | |
"L 843.924449 254.148206 \r\n", | |
"L 845.23739 253.661644 \r\n", | |
"L 846.550331 254.768993 \r\n", | |
"L 850.489154 250.322819 \r\n", | |
"L 851.802096 244.534404 \r\n", | |
"L 853.115037 249.517474 \r\n", | |
"L 854.427978 250.960383 \r\n", | |
"L 855.740919 248.225567 \r\n", | |
"L 859.679743 249.29936 \r\n", | |
"L 860.992684 244.383402 \r\n", | |
"L 862.305625 235.675612 \r\n", | |
"L 863.618566 247.688671 \r\n", | |
"L 864.931507 249.819478 \r\n", | |
"L 868.870331 248.443681 \r\n", | |
"L 870.183272 252.252291 \r\n", | |
"L 871.496213 254.718659 \r\n", | |
"L 872.809154 252.940189 \r\n", | |
"L 874.122096 250.121483 \r\n", | |
"L 878.060919 249.601364 \r\n", | |
"L 879.37386 250.540933 \r\n", | |
"L 880.686801 253.124747 \r\n", | |
"L 881.999743 250.658379 \r\n", | |
"L 883.312684 251.698616 \r\n", | |
"L 887.251507 246.816214 \r\n", | |
"L 888.564449 243.460611 \r\n", | |
"L 889.87739 242.78949 \r\n", | |
"L 891.190331 244.215622 \r\n", | |
"L 892.503272 241.95059 \r\n", | |
"L 896.442096 240.692238 \r\n", | |
"L 897.755037 241.514361 \r\n", | |
"L 899.067978 244.48407 \r\n", | |
"L 900.380919 244.433736 \r\n", | |
"L 901.69386 245.541085 \r\n", | |
"L 905.632684 246.749102 \r\n", | |
"L 906.945625 253.52742 \r\n", | |
"L 908.258566 256.295792 \r\n", | |
"L 909.571507 255.255555 \r\n", | |
"L 910.884449 257.554143 \r\n", | |
"L 914.823272 256.077678 \r\n", | |
"L 916.136213 256.094456 \r\n", | |
"L 918.762096 251.312722 \r\n", | |
"L 920.075037 247.621558 \r\n", | |
"L 924.01386 242.856602 \r\n", | |
"L 925.326801 245.608197 \r\n", | |
"L 926.639743 243.477389 \r\n", | |
"L 927.952684 245.306192 \r\n", | |
"L 929.265625 245.306192 \r\n", | |
"L 929.265625 245.306192 \r\n", | |
"\" style=\"fill:none;stroke:#777777;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_54\">\r\n", | |
" <path clip-path=\"url(#pe9d2181b61)\" d=\"M 36.465625 318.510062 \r\n", | |
"L 43.030331 315.277508 \r\n", | |
"L 44.343272 314.454121 \r\n", | |
"L 45.656213 313.234289 \r\n", | |
"L 46.969154 312.197432 \r\n", | |
"L 50.907978 312.654869 \r\n", | |
"L 52.220919 311.770491 \r\n", | |
"L 54.846801 312.563381 \r\n", | |
"L 56.159743 308.87339 \r\n", | |
"L 61.411507 308.598928 \r\n", | |
"L 62.724449 307.958516 \r\n", | |
"L 64.03739 306.616701 \r\n", | |
"L 65.350331 304.146541 \r\n", | |
"L 69.289154 301.340928 \r\n", | |
"L 70.602096 300.792003 \r\n", | |
"L 71.915037 302.164314 \r\n", | |
"L 73.227978 299.450188 \r\n", | |
"L 74.540919 299.535576 \r\n", | |
"L 78.479743 298.77928 \r\n", | |
"L 79.792684 296.754359 \r\n", | |
"L 81.105625 296.60798 \r\n", | |
"L 82.418566 298.962255 \r\n", | |
"L 83.731507 301.584894 \r\n", | |
"L 87.670331 298.889065 \r\n", | |
"L 88.983272 297.791217 \r\n", | |
"L 91.609154 296.925136 \r\n", | |
"L 92.922096 295.534527 \r\n", | |
"L 96.860919 302.402181 \r\n", | |
"L 98.17386 303.048692 \r\n", | |
"L 99.486801 301.121358 \r\n", | |
"L 100.799743 303.195072 \r\n", | |
"L 102.112684 304.512491 \r\n", | |
"L 106.051507 299.230618 \r\n", | |
"L 107.364449 300.108897 \r\n", | |
"L 108.67739 300.718813 \r\n", | |
"L 109.990331 300.511442 \r\n", | |
"L 111.303272 296.522591 \r\n", | |
"L 115.242096 293.729176 \r\n", | |
"L 116.555037 292.558137 \r\n", | |
"L 117.867978 288.508295 \r\n", | |
"L 119.180919 290.313647 \r\n", | |
"L 124.432684 290.277052 \r\n", | |
"L 125.745625 289.2036 \r\n", | |
"L 127.058566 290.14287 \r\n", | |
"L 128.371507 291.240719 \r\n", | |
"L 129.684449 290.460027 \r\n", | |
"L 133.623272 290.264853 \r\n", | |
"L 134.936213 291.423694 \r\n", | |
"L 136.249154 292.240981 \r\n", | |
"L 137.562096 292.545939 \r\n", | |
"L 138.875037 293.729176 \r\n", | |
"L 142.81386 294.326894 \r\n", | |
"L 144.126801 292.301973 \r\n", | |
"L 145.439743 293.521805 \r\n", | |
"L 146.752684 293.534003 \r\n", | |
"L 148.065625 292.436154 \r\n", | |
"L 152.004449 295.534527 \r\n", | |
"L 153.31739 297.205697 \r\n", | |
"L 154.630331 294.949008 \r\n", | |
"L 157.256213 293.814564 \r\n", | |
"L 161.195037 293.058269 \r\n", | |
"L 162.507978 291.801842 \r\n", | |
"L 163.820919 291.277314 \r\n", | |
"L 165.13386 286.507771 \r\n", | |
"L 166.446801 284.519445 \r\n", | |
"L 170.385625 282.384739 \r\n", | |
"L 171.698566 281.103915 \r\n", | |
"L 173.011507 282.091979 \r\n", | |
"L 174.324449 286.434581 \r\n", | |
"L 176.950331 286.39392 \r\n", | |
"L 179.576213 286.288201 \r\n", | |
"L 180.889154 286.593159 \r\n", | |
"L 182.202096 286.385788 \r\n", | |
"L 183.515037 286.593159 \r\n", | |
"L 184.827978 287.556826 \r\n", | |
"L 188.766801 287.142084 \r\n", | |
"L 190.079743 287.422645 \r\n", | |
"L 192.705625 283.653364 \r\n", | |
"L 194.018566 286.22721 \r\n", | |
"L 197.95739 287.934974 \r\n", | |
"L 199.270331 287.373852 \r\n", | |
"L 200.583272 288.69127 \r\n", | |
"L 203.209154 289.410971 \r\n", | |
"L 207.147978 291.606669 \r\n", | |
"L 208.460919 293.253442 \r\n", | |
"L 209.77386 294.082927 \r\n", | |
"L 211.086801 289.2036 \r\n", | |
"L 212.399743 286.922514 \r\n", | |
"L 216.338566 285.763674 \r\n", | |
"L 217.651507 287.410447 \r\n", | |
"L 218.964449 286.617556 \r\n", | |
"L 220.27739 287.630016 \r\n", | |
"L 221.590331 288.044759 \r\n", | |
"L 225.529154 286.800531 \r\n", | |
"L 226.842096 292.692319 \r\n", | |
"L 228.155037 291.88723 \r\n", | |
"L 229.467978 289.2036 \r\n", | |
"L 230.780919 290.277052 \r\n", | |
"L 236.032684 292.289774 \r\n", | |
"L 237.345625 289.959895 \r\n", | |
"L 238.658566 288.496097 \r\n", | |
"L 239.971507 285.86126 \r\n", | |
"L 243.910331 285.361129 \r\n", | |
"L 245.223272 282.348144 \r\n", | |
"L 247.849154 281.14051 \r\n", | |
"L 249.162096 282.348144 \r\n", | |
"L 253.100919 282.994655 \r\n", | |
"L 254.41386 282.043186 \r\n", | |
"L 255.726801 281.628443 \r\n", | |
"L 257.039743 280.493999 \r\n", | |
"L 258.352684 282.470127 \r\n", | |
"L 262.291507 282.860473 \r\n", | |
"L 264.91739 286.812729 \r\n", | |
"L 266.230331 287.215274 \r\n", | |
"L 267.543272 285.800268 \r\n", | |
"L 271.482096 283.336208 \r\n", | |
"L 274.107978 280.27443 \r\n", | |
"L 275.420919 281.640642 \r\n", | |
"L 276.73386 282.079781 \r\n", | |
"L 280.672684 282.323747 \r\n", | |
"L 281.985625 283.226423 \r\n", | |
"L 283.298566 280.457405 \r\n", | |
"L 284.611507 280.469603 \r\n", | |
"L 285.924449 277.859162 \r\n", | |
"L 289.863272 277.639593 \r\n", | |
"L 291.176213 278.115327 \r\n", | |
"L 292.489154 279.115589 \r\n", | |
"L 293.802096 281.43327 \r\n", | |
"L 295.115037 279.335159 \r\n", | |
"L 299.05386 281.835815 \r\n", | |
"L 300.366801 281.116114 \r\n", | |
"L 301.679743 280.957536 \r\n", | |
"L 302.992684 281.787021 \r\n", | |
"L 304.305625 278.042137 \r\n", | |
"L 308.244449 284.873196 \r\n", | |
"L 309.55739 280.323223 \r\n", | |
"L 310.870331 282.177368 \r\n", | |
"L 312.183272 278.981408 \r\n", | |
"L 313.496213 282.140773 \r\n", | |
"L 317.435037 287.117687 \r\n", | |
"L 318.747978 285.995442 \r\n", | |
"L 320.060919 285.946648 \r\n", | |
"L 322.686801 286.15402 \r\n", | |
"L 327.938566 286.239408 \r\n", | |
"L 329.251507 287.227472 \r\n", | |
"L 330.564449 288.752262 \r\n", | |
"L 331.87739 287.959371 \r\n", | |
"L 335.816213 285.043973 \r\n", | |
"L 337.129154 284.617031 \r\n", | |
"L 338.442096 285.226947 \r\n", | |
"L 339.755037 286.861522 \r\n", | |
"L 341.067978 286.751737 \r\n", | |
"L 345.006801 287.45924 \r\n", | |
"L 346.319743 285.824665 \r\n", | |
"L 347.632684 285.666087 \r\n", | |
"L 348.945625 285.251344 \r\n", | |
"L 350.258566 283.421596 \r\n", | |
"L 355.510331 282.323747 \r\n", | |
"L 356.823272 281.689435 \r\n", | |
"L 358.136213 280.908742 \r\n", | |
"L 359.449154 280.372016 \r\n", | |
"L 363.387978 281.982194 \r\n", | |
"L 364.700919 283.726554 \r\n", | |
"L 366.01386 282.823879 \r\n", | |
"L 367.326801 283.10444 \r\n", | |
"L 368.639743 284.165694 \r\n", | |
"L 372.578566 284.604833 \r\n", | |
"L 373.891507 284.348668 \r\n", | |
"L 375.204449 284.470652 \r\n", | |
"L 376.51739 286.190615 \r\n", | |
"L 377.830331 288.557089 \r\n", | |
"L 381.769154 291.216322 \r\n", | |
"L 384.395037 292.606931 \r\n", | |
"L 385.707978 290.691795 \r\n", | |
"L 388.33386 292.631327 \r\n", | |
"L 390.959743 294.436679 \r\n", | |
"L 392.272684 293.448615 \r\n", | |
"L 393.585625 295.522329 \r\n", | |
"L 394.898566 297.059317 \r\n", | |
"L 396.211507 294.900215 \r\n", | |
"L 400.150331 294.131721 \r\n", | |
"L 401.463272 293.997539 \r\n", | |
"L 402.776213 292.17999 \r\n", | |
"L 404.089154 292.460551 \r\n", | |
"L 405.402096 311.99006 \r\n", | |
"L 409.340919 312.819546 \r\n", | |
"L 410.65386 312.197432 \r\n", | |
"L 411.966801 313.234289 \r\n", | |
"L 413.279743 315.856928 \r\n", | |
"L 414.592684 314.515113 \r\n", | |
"L 418.531507 306.659395 \r\n", | |
"L 419.844449 306.610602 \r\n", | |
"L 421.15739 308.184185 \r\n", | |
"L 423.783272 305.305381 \r\n", | |
"L 427.722096 305.256588 \r\n", | |
"L 429.035037 303.463435 \r\n", | |
"L 430.347978 302.146017 \r\n", | |
"L 432.97386 303.109684 \r\n", | |
"L 438.225625 301.377522 \r\n", | |
"L 439.538566 299.901526 \r\n", | |
"L 440.851507 299.901526 \r\n", | |
"L 442.164449 301.511704 \r\n", | |
"L 447.416213 300.340665 \r\n", | |
"L 448.729154 300.767607 \r\n", | |
"L 450.042096 300.206484 \r\n", | |
"L 451.355037 297.54725 \r\n", | |
"L 455.29386 284.104702 \r\n", | |
"L 456.606801 280.481801 \r\n", | |
"L 457.919743 281.43327 \r\n", | |
"L 459.232684 278.493475 \r\n", | |
"L 460.545625 277.505411 \r\n", | |
"L 464.484449 275.187731 \r\n", | |
"L 467.110331 270.845129 \r\n", | |
"L 468.423272 273.211603 \r\n", | |
"L 469.736213 271.406251 \r\n", | |
"L 473.675037 269.539909 \r\n", | |
"L 474.987978 273.662941 \r\n", | |
"L 476.300919 273.9557 \r\n", | |
"L 477.61386 276.590537 \r\n", | |
"L 478.926801 276.651529 \r\n", | |
"L 482.865625 275.834241 \r\n", | |
"L 484.178566 276.93209 \r\n", | |
"L 485.491507 275.578077 \r\n", | |
"L 486.804449 273.296991 \r\n", | |
"L 488.11739 273.138413 \r\n", | |
"L 492.056213 269.027579 \r\n", | |
"L 493.369154 270.588964 \r\n", | |
"L 494.682096 272.748067 \r\n", | |
"L 495.995037 272.552893 \r\n", | |
"L 497.307978 270.405989 \r\n", | |
"L 501.246801 269.149562 \r\n", | |
"L 502.559743 269.015381 \r\n", | |
"L 503.872684 269.918056 \r\n", | |
"L 505.185625 268.51525 \r\n", | |
"L 506.498566 266.514725 \r\n", | |
"L 510.43739 268.344473 \r\n", | |
"L 515.689154 268.917794 \r\n", | |
"L 519.627978 270.735344 \r\n", | |
"L 522.25386 270.259609 \r\n", | |
"L 523.566801 267.795549 \r\n", | |
"L 524.879743 266.84408 \r\n", | |
"L 528.818566 267.905334 \r\n", | |
"L 530.131507 267.917532 \r\n", | |
"L 531.444449 269.613098 \r\n", | |
"L 532.75739 264.672779 \r\n", | |
"L 534.070331 265.453472 \r\n", | |
"L 538.009154 262.318503 \r\n", | |
"L 539.322096 263.989673 \r\n", | |
"L 540.635037 265.355885 \r\n", | |
"L 541.947978 262.965014 \r\n", | |
"L 543.260919 262.965014 \r\n", | |
"L 547.199743 264.636184 \r\n", | |
"L 548.512684 262.952816 \r\n", | |
"L 549.825625 259.342113 \r\n", | |
"L 551.138566 257.244003 \r\n", | |
"L 552.451507 257.109821 \r\n", | |
"L 556.390331 257.329391 \r\n", | |
"L 559.016213 248.022073 \r\n", | |
"L 560.329154 247.46095 \r\n", | |
"L 561.642096 245.704392 \r\n", | |
"L 565.580919 243.923438 \r\n", | |
"L 566.89386 244.447965 \r\n", | |
"L 568.206801 246.765646 \r\n", | |
"L 569.519743 246.30211 \r\n", | |
"L 570.832684 249.559061 \r\n", | |
"L 574.771507 252.437865 \r\n", | |
"L 576.084449 253.621102 \r\n", | |
"L 577.39739 253.462523 \r\n", | |
"L 578.710331 252.120708 \r\n", | |
"L 580.023272 253.450325 \r\n", | |
"L 585.275037 264.148251 \r\n", | |
"L 586.587978 272.28453 \r\n", | |
"L 587.900919 270.003445 \r\n", | |
"L 589.21386 274.455831 \r\n", | |
"L 594.465625 266.209767 \r\n", | |
"L 595.778566 270.442584 \r\n", | |
"L 597.091507 268.856803 \r\n", | |
"L 598.404449 272.5041 \r\n", | |
"L 603.656213 271.63802 \r\n", | |
"L 604.969154 275.675663 \r\n", | |
"L 606.282096 282.787284 \r\n", | |
"L 607.595037 279.969472 \r\n", | |
"L 611.53386 291.045546 \r\n", | |
"L 612.846801 290.203862 \r\n", | |
"L 614.159743 291.52128 \r\n", | |
"L 615.472684 290.252655 \r\n", | |
"L 616.785625 281.103915 \r\n", | |
"L 620.724449 288.666874 \r\n", | |
"L 622.03739 285.507509 \r\n", | |
"L 623.350331 278.420285 \r\n", | |
"L 624.663272 276.06601 \r\n", | |
"L 625.976213 274.675401 \r\n", | |
"L 629.915037 272.5041 \r\n", | |
"L 631.227978 268.527448 \r\n", | |
"L 632.540919 272.687075 \r\n", | |
"L 633.85386 276.395364 \r\n", | |
"L 635.166801 278.078732 \r\n", | |
"L 639.105625 276.285579 \r\n", | |
"L 640.418566 271.820994 \r\n", | |
"L 641.731507 270.771939 \r\n", | |
"L 643.044449 268.686026 \r\n", | |
"L 645.670331 270.068502 \r\n", | |
"L 648.296213 271.540433 \r\n", | |
"L 649.609154 266.99046 \r\n", | |
"L 650.922096 272.296729 \r\n", | |
"L 652.235037 273.223801 \r\n", | |
"L 653.547978 271.930779 \r\n", | |
"L 657.486801 268.759216 \r\n", | |
"L 658.799743 271.552631 \r\n", | |
"L 660.112684 270.674352 \r\n", | |
"L 662.738566 273.150611 \r\n", | |
"L 666.67739 269.918056 \r\n", | |
"L 667.990331 263.94088 \r\n", | |
"L 669.303272 260.81811 \r\n", | |
"L 670.616213 258.695603 \r\n", | |
"L 675.867978 261.928157 \r\n", | |
"L 677.180919 259.476295 \r\n", | |
"L 678.49386 259.281122 \r\n", | |
"L 679.806801 257.353787 \r\n", | |
"L 681.119743 252.535451 \r\n", | |
"L 686.371507 253.011186 \r\n", | |
"L 687.684449 255.536238 \r\n", | |
"L 688.99739 260.537549 \r\n", | |
"L 690.310331 259.58608 \r\n", | |
"L 694.249154 255.804601 \r\n", | |
"L 695.562096 253.364937 \r\n", | |
"L 696.875037 251.754759 \r\n", | |
"L 698.187978 254.621364 \r\n", | |
"L 699.500919 255.987576 \r\n", | |
"L 704.752684 253.291747 \r\n", | |
"L 706.065625 257.76853 \r\n", | |
"L 707.378566 257.341589 \r\n", | |
"L 708.691507 259.988624 \r\n", | |
"L 712.630331 260.086211 \r\n", | |
"L 713.943272 259.80565 \r\n", | |
"L 715.256213 259.14694 \r\n", | |
"L 716.569154 258.780991 \r\n", | |
"L 717.882096 257.975902 \r\n", | |
"L 721.820919 256.719475 \r\n", | |
"L 723.13386 257.585555 \r\n", | |
"L 724.446801 256.878053 \r\n", | |
"L 725.759743 259.87884 \r\n", | |
"L 731.011507 255.828997 \r\n", | |
"L 732.324449 249.961606 \r\n", | |
"L 733.63739 247.168191 \r\n", | |
"L 734.950331 245.984954 \r\n", | |
"L 736.263272 241.166617 \r\n", | |
"L 740.202096 238.104839 \r\n", | |
"L 741.515037 230.663864 \r\n", | |
"L 744.140919 223.015518 \r\n", | |
"L 745.45386 221.990859 \r\n", | |
"L 749.392684 224.637894 \r\n", | |
"L 750.705625 221.319952 \r\n", | |
"L 753.331507 216.660194 \r\n", | |
"L 754.644449 217.026143 \r\n", | |
"L 758.583272 211.109958 \r\n", | |
"L 759.896213 212.927508 \r\n", | |
"L 761.209154 214.537686 \r\n", | |
"L 762.522096 213.244664 \r\n", | |
"L 763.835037 211.134355 \r\n", | |
"L 767.77386 209.109434 \r\n", | |
"L 769.086801 210.439051 \r\n", | |
"L 770.399743 199.387373 \r\n", | |
"L 771.712684 199.423968 \r\n", | |
"L 773.025625 194.922788 \r\n", | |
"L 776.964449 191.995191 \r\n", | |
"L 778.27739 186.847501 \r\n", | |
"L 779.590331 191.226697 \r\n", | |
"L 780.903272 188.274704 \r\n", | |
"L 782.216213 189.616519 \r\n", | |
"L 786.155037 184.712795 \r\n", | |
"L 787.467978 184.810381 \r\n", | |
"L 788.780919 179.028378 \r\n", | |
"L 790.09386 180.46778 \r\n", | |
"L 791.406801 175.978798 \r\n", | |
"L 795.345625 171.367833 \r\n", | |
"L 796.658566 170.440761 \r\n", | |
"L 797.971507 169.001359 \r\n", | |
"L 799.284449 166.085961 \r\n", | |
"L 800.59739 165.415053 \r\n", | |
"L 804.536213 173.075598 \r\n", | |
"L 805.849154 174.795561 \r\n", | |
"L 807.162096 173.356159 \r\n", | |
"L 808.475037 161.328616 \r\n", | |
"L 809.787978 164.244015 \r\n", | |
"L 813.726801 159.681843 \r\n", | |
"L 815.039743 158.779167 \r\n", | |
"L 816.352684 154.973292 \r\n", | |
"L 818.978566 142.030875 \r\n", | |
"L 822.91739 139.249658 \r\n", | |
"L 824.230331 130.613248 \r\n", | |
"L 825.543272 127.636858 \r\n", | |
"L 826.856213 134.199554 \r\n", | |
"L 828.169154 137.4931 \r\n", | |
"L 832.107978 121.610888 \r\n", | |
"L 833.420919 123.538222 \r\n", | |
"L 834.73386 126.270646 \r\n", | |
"L 836.046801 129.393416 \r\n", | |
"L 837.359743 135.358394 \r\n", | |
"L 841.298566 133.882397 \r\n", | |
"L 842.611507 139.700996 \r\n", | |
"L 843.924449 146.434468 \r\n", | |
"L 845.23739 148.544777 \r\n", | |
"L 846.550331 150.167154 \r\n", | |
"L 850.489154 145.98313 \r\n", | |
"L 851.802096 144.226572 \r\n", | |
"L 853.115037 149.484048 \r\n", | |
"L 854.427978 156.071141 \r\n", | |
"L 855.740919 152.814189 \r\n", | |
"L 859.679743 157.034808 \r\n", | |
"L 860.992684 148.471587 \r\n", | |
"L 862.305625 113.889352 \r\n", | |
"L 863.618566 135.590162 \r\n", | |
"L 864.931507 138.481164 \r\n", | |
"L 868.870331 125.148401 \r\n", | |
"L 870.183272 125.22159 \r\n", | |
"L 871.496213 124.611674 \r\n", | |
"L 872.809154 127.795436 \r\n", | |
"L 874.122096 133.540844 \r\n", | |
"L 879.37386 131.747691 \r\n", | |
"L 880.686801 139.810781 \r\n", | |
"L 883.312684 147.495722 \r\n", | |
"L 887.251507 143.482475 \r\n", | |
"L 888.564449 140.005954 \r\n", | |
"L 889.87739 138.834915 \r\n", | |
"L 892.503272 151.082028 \r\n", | |
"L 896.442096 158.10826 \r\n", | |
"L 897.755037 163.890263 \r\n", | |
"L 899.067978 167.391181 \r\n", | |
"L 900.380919 162.560646 \r\n", | |
"L 901.69386 160.340552 \r\n", | |
"L 905.632684 160.011198 \r\n", | |
"L 906.945625 156.034546 \r\n", | |
"L 908.258566 155.644199 \r\n", | |
"L 909.571507 151.838324 \r\n", | |
"L 910.884449 155.790579 \r\n", | |
"L 914.823272 151.972505 \r\n", | |
"L 916.136213 153.97303 \r\n", | |
"L 918.762096 141.420959 \r\n", | |
"L 920.075037 137.480902 \r\n", | |
"L 924.01386 128.27117 \r\n", | |
"L 925.326801 138.773923 \r\n", | |
"L 926.639743 144.738902 \r\n", | |
"L 927.952684 144.055796 \r\n", | |
"L 929.265625 144.055796 \r\n", | |
"L 929.265625 144.055796 \r\n", | |
"\" style=\"fill:none;stroke:#fbc15e;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 36.465625 350.30175 \r\n", | |
"L 36.465625 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 929.265625 350.30175 \r\n", | |
"L 929.265625 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 36.465625 350.30175 \r\n", | |
"L 929.265625 350.30175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 36.465625 24.14175 \r\n", | |
"L 929.265625 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- RU: WAPRICE / median -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 8.6875 72.90625 \r\n", | |
"L 18.609375 72.90625 \r\n", | |
"L 18.609375 28.609375 \r\n", | |
"Q 18.609375 16.890625 22.84375 11.734375 \r\n", | |
"Q 27.09375 6.59375 36.625 6.59375 \r\n", | |
"Q 46.09375 6.59375 50.34375 11.734375 \r\n", | |
"Q 54.59375 16.890625 54.59375 28.609375 \r\n", | |
"L 54.59375 72.90625 \r\n", | |
"L 64.5 72.90625 \r\n", | |
"L 64.5 27.390625 \r\n", | |
"Q 64.5 13.140625 57.4375 5.859375 \r\n", | |
"Q 50.390625 -1.421875 36.625 -1.421875 \r\n", | |
"Q 22.796875 -1.421875 15.734375 5.859375 \r\n", | |
"Q 8.6875 13.140625 8.6875 27.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-85\"/>\r\n", | |
" <path d=\"M 11.71875 12.40625 \r\n", | |
"L 22.015625 12.40625 \r\n", | |
"L 22.015625 0 \r\n", | |
"L 11.71875 0 \r\n", | |
"z\r\n", | |
"M 11.71875 51.703125 \r\n", | |
"L 22.015625 51.703125 \r\n", | |
"L 22.015625 39.3125 \r\n", | |
"L 11.71875 39.3125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-58\"/>\r\n", | |
" <path id=\"DejaVuSans-32\"/>\r\n", | |
" <path d=\"M 3.328125 72.90625 \r\n", | |
"L 13.28125 72.90625 \r\n", | |
"L 28.609375 11.28125 \r\n", | |
"L 43.890625 72.90625 \r\n", | |
"L 54.984375 72.90625 \r\n", | |
"L 70.3125 11.28125 \r\n", | |
"L 85.59375 72.90625 \r\n", | |
"L 95.609375 72.90625 \r\n", | |
"L 77.296875 0 \r\n", | |
"L 64.890625 0 \r\n", | |
"L 49.515625 63.28125 \r\n", | |
"L 33.984375 0 \r\n", | |
"L 21.578125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-87\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 37.40625 \r\n", | |
"L 32.078125 37.40625 \r\n", | |
"Q 38.96875 37.40625 42.71875 40.96875 \r\n", | |
"Q 46.484375 44.53125 46.484375 51.125 \r\n", | |
"Q 46.484375 57.671875 42.71875 61.234375 \r\n", | |
"Q 38.96875 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.34375 72.90625 50.609375 67.359375 \r\n", | |
"Q 56.890625 61.8125 56.890625 51.125 \r\n", | |
"Q 56.890625 40.328125 50.609375 34.8125 \r\n", | |
"Q 44.34375 29.296875 32.078125 29.296875 \r\n", | |
"L 19.671875 29.296875 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-80\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-73\"/>\r\n", | |
" <path d=\"M 64.40625 67.28125 \r\n", | |
"L 64.40625 56.890625 \r\n", | |
"Q 59.421875 61.53125 53.78125 63.8125 \r\n", | |
"Q 48.140625 66.109375 41.796875 66.109375 \r\n", | |
"Q 29.296875 66.109375 22.65625 58.46875 \r\n", | |
"Q 16.015625 50.828125 16.015625 36.375 \r\n", | |
"Q 16.015625 21.96875 22.65625 14.328125 \r\n", | |
"Q 29.296875 6.6875 41.796875 6.6875 \r\n", | |
"Q 48.140625 6.6875 53.78125 8.984375 \r\n", | |
"Q 59.421875 11.28125 64.40625 15.921875 \r\n", | |
"L 64.40625 5.609375 \r\n", | |
"Q 59.234375 2.09375 53.4375 0.328125 \r\n", | |
"Q 47.65625 -1.421875 41.21875 -1.421875 \r\n", | |
"Q 24.65625 -1.421875 15.125 8.703125 \r\n", | |
"Q 5.609375 18.84375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.953125 15.125 64.078125 \r\n", | |
"Q 24.65625 74.21875 41.21875 74.21875 \r\n", | |
"Q 47.75 74.21875 53.53125 72.484375 \r\n", | |
"Q 59.328125 70.75 64.40625 67.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-67\"/>\r\n", | |
" <path d=\"M 25.390625 72.90625 \r\n", | |
"L 33.6875 72.90625 \r\n", | |
"L 8.296875 -9.28125 \r\n", | |
"L 0 -9.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-47\"/>\r\n", | |
" <path d=\"M 52 44.1875 \r\n", | |
"Q 55.375 50.25 60.0625 53.125 \r\n", | |
"Q 64.75 56 71.09375 56 \r\n", | |
"Q 79.640625 56 84.28125 50.015625 \r\n", | |
"Q 88.921875 44.046875 88.921875 33.015625 \r\n", | |
"L 88.921875 0 \r\n", | |
"L 79.890625 0 \r\n", | |
"L 79.890625 32.71875 \r\n", | |
"Q 79.890625 40.578125 77.09375 44.375 \r\n", | |
"Q 74.3125 48.1875 68.609375 48.1875 \r\n", | |
"Q 61.625 48.1875 57.5625 43.546875 \r\n", | |
"Q 53.515625 38.921875 53.515625 30.90625 \r\n", | |
"L 53.515625 0 \r\n", | |
"L 44.484375 0 \r\n", | |
"L 44.484375 32.71875 \r\n", | |
"Q 44.484375 40.625 41.703125 44.40625 \r\n", | |
"Q 38.921875 48.1875 33.109375 48.1875 \r\n", | |
"Q 26.21875 48.1875 22.15625 43.53125 \r\n", | |
"Q 18.109375 38.875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.1875 51.21875 25.484375 53.609375 \r\n", | |
"Q 29.78125 56 35.6875 56 \r\n", | |
"Q 41.65625 56 45.828125 52.96875 \r\n", | |
"Q 50 49.953125 52 44.1875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-109\"/>\r\n", | |
" <path d=\"M 56.203125 29.59375 \r\n", | |
"L 56.203125 25.203125 \r\n", | |
"L 14.890625 25.203125 \r\n", | |
"Q 15.484375 15.921875 20.484375 11.0625 \r\n", | |
"Q 25.484375 6.203125 34.421875 6.203125 \r\n", | |
"Q 39.59375 6.203125 44.453125 7.46875 \r\n", | |
"Q 49.3125 8.734375 54.109375 11.28125 \r\n", | |
"L 54.109375 2.78125 \r\n", | |
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n", | |
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n", | |
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n", | |
"Q 5.515625 13.8125 5.515625 26.8125 \r\n", | |
"Q 5.515625 40.234375 12.765625 48.109375 \r\n", | |
"Q 20.015625 56 32.328125 56 \r\n", | |
"Q 43.359375 56 49.78125 48.890625 \r\n", | |
"Q 56.203125 41.796875 56.203125 29.59375 \r\n", | |
"z\r\n", | |
"M 47.21875 32.234375 \r\n", | |
"Q 47.125 39.59375 43.09375 43.984375 \r\n", | |
"Q 39.0625 48.390625 32.421875 48.390625 \r\n", | |
"Q 24.90625 48.390625 20.390625 44.140625 \r\n", | |
"Q 15.875 39.890625 15.1875 32.171875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-101\"/>\r\n", | |
" <path d=\"M 45.40625 46.390625 \r\n", | |
"L 45.40625 75.984375 \r\n", | |
"L 54.390625 75.984375 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 45.40625 0 \r\n", | |
"L 45.40625 8.203125 \r\n", | |
"Q 42.578125 3.328125 38.25 0.953125 \r\n", | |
"Q 33.9375 -1.421875 27.875 -1.421875 \r\n", | |
"Q 17.96875 -1.421875 11.734375 6.484375 \r\n", | |
"Q 5.515625 14.40625 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.1875 11.734375 48.09375 \r\n", | |
"Q 17.96875 56 27.875 56 \r\n", | |
"Q 33.9375 56 38.25 53.625 \r\n", | |
"Q 42.578125 51.265625 45.40625 46.390625 \r\n", | |
"z\r\n", | |
"M 14.796875 27.296875 \r\n", | |
"Q 14.796875 17.390625 18.875 11.75 \r\n", | |
"Q 22.953125 6.109375 30.078125 6.109375 \r\n", | |
"Q 37.203125 6.109375 41.296875 11.75 \r\n", | |
"Q 45.40625 17.390625 45.40625 27.296875 \r\n", | |
"Q 45.40625 37.203125 41.296875 42.84375 \r\n", | |
"Q 37.203125 48.484375 30.078125 48.484375 \r\n", | |
"Q 22.953125 48.484375 18.875 42.84375 \r\n", | |
"Q 14.796875 37.203125 14.796875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-100\"/>\r\n", | |
" <path d=\"M 9.421875 54.6875 \r\n", | |
"L 18.40625 54.6875 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 64.59375 \r\n", | |
"L 9.421875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-105\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(400.803625 18.14175)scale(0.144 -0.144)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"69.482422\" xlink:href=\"#DejaVuSans-85\"/>\r\n", | |
" <use x=\"142.675781\" xlink:href=\"#DejaVuSans-58\"/>\r\n", | |
" <use x=\"176.367188\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"208.154297\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" <use x=\"306.953125\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"375.361328\" xlink:href=\"#DejaVuSans-80\"/>\r\n", | |
" <use x=\"435.664062\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"505.146484\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"534.638672\" xlink:href=\"#DejaVuSans-67\"/>\r\n", | |
" <use x=\"604.462891\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"667.646484\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"699.433594\" xlink:href=\"#DejaVuSans-47\"/>\r\n", | |
" <use x=\"733.125\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"764.912109\" xlink:href=\"#DejaVuSans-109\"/>\r\n", | |
" <use x=\"862.324219\" xlink:href=\"#DejaVuSans-101\"/>\r\n", | |
" <use x=\"923.847656\" xlink:href=\"#DejaVuSans-100\"/>\r\n", | |
" <use x=\"987.324219\" xlink:href=\"#DejaVuSans-105\"/>\r\n", | |
" <use x=\"1015.107422\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"1076.386719\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 43.465625 105.532375 \r\n", | |
"L 103.604688 105.532375 \r\n", | |
"Q 105.604688 105.532375 105.604688 103.532375 \r\n", | |
"L 105.604688 31.14175 \r\n", | |
"Q 105.604688 29.14175 103.604688 29.14175 \r\n", | |
"L 43.465625 29.14175 \r\n", | |
"Q 41.465625 29.14175 41.465625 31.14175 \r\n", | |
"L 41.465625 103.532375 \r\n", | |
"Q 41.465625 105.532375 43.465625 105.532375 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_55\">\r\n", | |
" <path d=\"M 45.465625 37.240187 \r\n", | |
"L 65.465625 37.240187 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_56\"/>\r\n", | |
" <g id=\"text_18\">\r\n", | |
" <!-- SBER -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" <path d=\"M 19.671875 34.8125 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 35.5 8.109375 \r\n", | |
"Q 43.453125 8.109375 47.28125 11.40625 \r\n", | |
"Q 51.125 14.703125 51.125 21.484375 \r\n", | |
"Q 51.125 28.328125 47.28125 31.5625 \r\n", | |
"Q 43.453125 34.8125 35.5 34.8125 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 42.828125 \r\n", | |
"L 34.28125 42.828125 \r\n", | |
"Q 41.5 42.828125 45.03125 45.53125 \r\n", | |
"Q 48.578125 48.25 48.578125 53.8125 \r\n", | |
"Q 48.578125 59.328125 45.03125 62.0625 \r\n", | |
"Q 41.5 64.796875 34.28125 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 35.015625 72.90625 \r\n", | |
"Q 46.296875 72.90625 52.390625 68.21875 \r\n", | |
"Q 58.5 63.53125 58.5 54.890625 \r\n", | |
"Q 58.5 48.1875 55.375 44.234375 \r\n", | |
"Q 52.25 40.28125 46.1875 39.3125 \r\n", | |
"Q 53.46875 37.75 57.5 32.78125 \r\n", | |
"Q 61.53125 27.828125 61.53125 20.40625 \r\n", | |
"Q 61.53125 10.640625 54.890625 5.3125 \r\n", | |
"Q 48.25 0 35.984375 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-66\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(73.465625 40.740187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-66\"/>\r\n", | |
" <use x=\"132.080078\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"195.263672\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_57\">\r\n", | |
" <path d=\"M 45.465625 51.918312 \r\n", | |
"L 65.465625 51.918312 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_58\"/>\r\n", | |
" <g id=\"text_19\">\r\n", | |
" <!-- AFKS -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 51.703125 72.90625 \r\n", | |
"L 51.703125 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.109375 \r\n", | |
"L 48.578125 43.109375 \r\n", | |
"L 48.578125 34.8125 \r\n", | |
"L 19.671875 34.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-70\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 42.09375 \r\n", | |
"L 52.390625 72.90625 \r\n", | |
"L 65.09375 72.90625 \r\n", | |
"L 28.90625 38.921875 \r\n", | |
"L 67.671875 0 \r\n", | |
"L 54.6875 0 \r\n", | |
"L 19.671875 35.109375 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-75\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(73.465625 55.418312)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"125.927734\" xlink:href=\"#DejaVuSans-75\"/>\r\n", | |
" <use x=\"191.503906\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_59\">\r\n", | |
" <path d=\"M 45.465625 66.596437 \r\n", | |
"L 65.465625 66.596437 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_60\"/>\r\n", | |
" <g id=\"text_20\">\r\n", | |
" <!-- GAZP -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 59.515625 10.40625 \r\n", | |
"L 59.515625 29.984375 \r\n", | |
"L 43.40625 29.984375 \r\n", | |
"L 43.40625 38.09375 \r\n", | |
"L 69.28125 38.09375 \r\n", | |
"L 69.28125 6.78125 \r\n", | |
"Q 63.578125 2.734375 56.6875 0.65625 \r\n", | |
"Q 49.8125 -1.421875 42 -1.421875 \r\n", | |
"Q 24.90625 -1.421875 15.25 8.5625 \r\n", | |
"Q 5.609375 18.5625 5.609375 36.375 \r\n", | |
"Q 5.609375 54.25 15.25 64.234375 \r\n", | |
"Q 24.90625 74.21875 42 74.21875 \r\n", | |
"Q 49.125 74.21875 55.546875 72.453125 \r\n", | |
"Q 61.96875 70.703125 67.390625 67.28125 \r\n", | |
"L 67.390625 56.78125 \r\n", | |
"Q 61.921875 61.421875 55.765625 63.765625 \r\n", | |
"Q 49.609375 66.109375 42.828125 66.109375 \r\n", | |
"Q 29.4375 66.109375 22.71875 58.640625 \r\n", | |
"Q 16.015625 51.171875 16.015625 36.375 \r\n", | |
"Q 16.015625 21.625 22.71875 14.15625 \r\n", | |
"Q 29.4375 6.6875 42.828125 6.6875 \r\n", | |
"Q 48.046875 6.6875 52.140625 7.59375 \r\n", | |
"Q 56.25 8.5 59.515625 10.40625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-71\"/>\r\n", | |
" <path d=\"M 5.609375 72.90625 \r\n", | |
"L 62.890625 72.90625 \r\n", | |
"L 62.890625 65.375 \r\n", | |
"L 16.796875 8.296875 \r\n", | |
"L 64.015625 8.296875 \r\n", | |
"L 64.015625 0 \r\n", | |
"L 4.5 0 \r\n", | |
"L 4.5 7.515625 \r\n", | |
"L 50.59375 64.59375 \r\n", | |
"L 5.609375 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-90\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(73.465625 70.096437)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-71\"/>\r\n", | |
" <use x=\"77.490234\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"145.898438\" xlink:href=\"#DejaVuSans-90\"/>\r\n", | |
" <use x=\"214.404297\" xlink:href=\"#DejaVuSans-80\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_61\">\r\n", | |
" <path d=\"M 45.465625 81.274562 \r\n", | |
"L 65.465625 81.274562 \r\n", | |
"\" style=\"fill:none;stroke:#777777;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_62\"/>\r\n", | |
" <g id=\"text_21\">\r\n", | |
" <!-- MAIL -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 24.515625 72.90625 \r\n", | |
"L 43.109375 23.296875 \r\n", | |
"L 61.8125 72.90625 \r\n", | |
"L 76.515625 72.90625 \r\n", | |
"L 76.515625 0 \r\n", | |
"L 66.890625 0 \r\n", | |
"L 66.890625 64.015625 \r\n", | |
"L 48.09375 14.015625 \r\n", | |
"L 38.1875 14.015625 \r\n", | |
"L 19.390625 64.015625 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-77\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 55.171875 8.296875 \r\n", | |
"L 55.171875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-76\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(73.465625 84.774562)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-77\"/>\r\n", | |
" <use x=\"86.279297\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"154.6875\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"184.179688\" xlink:href=\"#DejaVuSans-76\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_63\">\r\n", | |
" <path d=\"M 45.465625 95.952687 \r\n", | |
"L 65.465625 95.952687 \r\n", | |
"\" style=\"fill:none;stroke:#fbc15e;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_64\"/>\r\n", | |
" <g id=\"text_22\">\r\n", | |
" <!-- YNDX -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.203125 72.90625 \r\n", | |
"L 10.40625 72.90625 \r\n", | |
"L 30.609375 42.921875 \r\n", | |
"L 50.6875 72.90625 \r\n", | |
"L 61.28125 72.90625 \r\n", | |
"L 35.5 34.71875 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 34.71875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-89\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(73.465625 99.452687)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-89\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"135.888672\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"212.890625\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"pe9d2181b61\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"36.465625\" y=\"24.14175\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"400.991437pt\" version=\"1.1\" viewBox=\"0 0 944.845312 400.991437\" width=\"944.845312pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 400.991437 \r\n", | |
"L 944.845312 400.991437 \r\n", | |
"L 944.845312 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 44.845313 350.30175 \r\n", | |
"L 937.645312 350.30175 \r\n", | |
"L 937.645312 24.14175 \r\n", | |
"L 44.845313 24.14175 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 350.30175 \r\n", | |
"L 44.845313 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m54d45310e5\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 160.384136 350.30175 \r\n", | |
"L 160.384136 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"160.384136\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" <path d=\"M 41.109375 46.296875 \r\n", | |
"Q 39.59375 47.171875 37.8125 47.578125 \r\n", | |
"Q 36.03125 48 33.890625 48 \r\n", | |
"Q 26.265625 48 22.1875 43.046875 \r\n", | |
"Q 18.109375 38.09375 18.109375 28.8125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 20.953125 51.171875 25.484375 53.578125 \r\n", | |
"Q 30.03125 56 36.53125 56 \r\n", | |
"Q 37.453125 56 38.578125 55.875 \r\n", | |
"Q 39.703125 55.765625 41.0625 55.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-114\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(151.734136 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 279.861783 350.30175 \r\n", | |
"L 279.861783 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"279.861783\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(273.828971 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 400.652371 350.30175 \r\n", | |
"L 400.652371 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"400.652371\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(392.007059 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 521.44296 350.30175 \r\n", | |
"L 521.44296 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"521.44296\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- Jan -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-110\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(513.735147 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"90.771484\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(508.71796 376.098)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 640.920607 350.30175 \r\n", | |
"L 640.920607 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"640.920607\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(632.270607 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 760.398254 350.30175 \r\n", | |
"L 760.398254 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"760.398254\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(754.365441 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 881.188842 350.30175 \r\n", | |
"L 881.188842 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"881.188842\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(872.543529 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 937.645313 350.30175 \r\n", | |
"L 937.645313 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"937.645313\" xlink:href=\"#m54d45310e5\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"m7f54279e41\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"82.920607\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"119.68296\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"199.772371\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"240.473548\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"320.56296\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"361.264136\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"441.353548\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"480.741783\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"562.144136\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"600.21943\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"680.308842\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"721.010018\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"801.09943\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"841.800607\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"921.890018\" xlink:href=\"#m7f54279e41\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(454.726875 391.295812)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 330.279186 \r\n", | |
"L 937.645312 330.279186 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m724d81bf32\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"330.279186\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- −0.25 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.59375 35.5 \r\n", | |
"L 73.1875 35.5 \r\n", | |
"L 73.1875 27.203125 \r\n", | |
"L 10.59375 27.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-8722\"/>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" <path d=\"M 10.796875 72.90625 \r\n", | |
"L 49.515625 72.90625 \r\n", | |
"L 49.515625 64.59375 \r\n", | |
"L 19.828125 64.59375 \r\n", | |
"L 19.828125 46.734375 \r\n", | |
"Q 21.96875 47.46875 24.109375 47.828125 \r\n", | |
"Q 26.265625 48.1875 28.421875 48.1875 \r\n", | |
"Q 40.625 48.1875 47.75 41.5 \r\n", | |
"Q 54.890625 34.8125 54.890625 23.390625 \r\n", | |
"Q 54.890625 11.625 47.5625 5.09375 \r\n", | |
"Q 40.234375 -1.421875 26.90625 -1.421875 \r\n", | |
"Q 22.3125 -1.421875 17.546875 -0.640625 \r\n", | |
"Q 12.796875 0.140625 7.71875 1.703125 \r\n", | |
"L 7.71875 11.625 \r\n", | |
"Q 12.109375 9.234375 16.796875 8.0625 \r\n", | |
"Q 21.484375 6.890625 26.703125 6.890625 \r\n", | |
"Q 35.15625 6.890625 40.078125 11.328125 \r\n", | |
"Q 45.015625 15.765625 45.015625 23.390625 \r\n", | |
"Q 45.015625 31 40.078125 35.4375 \r\n", | |
"Q 35.15625 39.890625 26.703125 39.890625 \r\n", | |
"Q 22.75 39.890625 18.8125 39.015625 \r\n", | |
"Q 14.890625 38.140625 10.796875 36.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-53\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 334.078404)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-8722\"/>\r\n", | |
" <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"179.199219\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"242.822266\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 293.392163 \r\n", | |
"L 937.645312 293.392163 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"293.392163\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- −0.20 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 297.191381)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-8722\"/>\r\n", | |
" <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"179.199219\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"242.822266\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 256.50514 \r\n", | |
"L 937.645312 256.50514 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"256.50514\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- −0.15 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 260.304359)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-8722\"/>\r\n", | |
" <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"179.199219\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"242.822266\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 219.618117 \r\n", | |
"L 937.645312 219.618117 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"219.618117\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- −0.10 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 223.417336)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-8722\"/>\r\n", | |
" <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"179.199219\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"242.822266\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 182.731094 \r\n", | |
"L 937.645312 182.731094 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"182.731094\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- −0.05 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 186.530313)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-8722\"/>\r\n", | |
" <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"179.199219\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"242.822266\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_6\">\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 145.844071 \r\n", | |
"L 937.645312 145.844071 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"145.844071\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- 0.00 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(15.579688 149.64329)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_7\">\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 108.957048 \r\n", | |
"L 937.645312 108.957048 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"108.957048\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- 0.05 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(15.579688 112.756267)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_8\">\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 72.070026 \r\n", | |
"L 937.645312 72.070026 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"72.070026\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- 0.10 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(15.579688 75.869244)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_9\">\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 35.183003 \r\n", | |
"L 937.645312 35.183003 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_51\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"44.845313\" xlink:href=\"#m724d81bf32\" y=\"35.183003\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- 0.15 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(15.579688 38.982221)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <path clip-path=\"url(#p57ed446498)\" d=\"M 44.845313 48.380508 \r\n", | |
"L 46.158254 38.967205 \r\n", | |
"L 51.410018 43.27612 \r\n", | |
"L 52.72296 41.729211 \r\n", | |
"L 54.035901 46.171363 \r\n", | |
"L 55.348842 45.73279 \r\n", | |
"L 59.287665 44.944896 \r\n", | |
"L 60.600607 43.348984 \r\n", | |
"L 61.913548 45.368363 \r\n", | |
"L 63.226489 43.376635 \r\n", | |
"L 64.53943 41.019199 \r\n", | |
"L 68.478254 42.657816 \r\n", | |
"L 69.791195 42.009405 \r\n", | |
"L 71.104136 43.53747 \r\n", | |
"L 72.417077 42.426625 \r\n", | |
"L 73.730018 46.314583 \r\n", | |
"L 77.668842 49.897205 \r\n", | |
"L 78.981783 47.789855 \r\n", | |
"L 80.294724 43.416831 \r\n", | |
"L 81.607665 49.040183 \r\n", | |
"L 82.920607 46.417607 \r\n", | |
"L 86.85943 48.743602 \r\n", | |
"L 88.172371 51.966815 \r\n", | |
"L 89.485313 53.279971 \r\n", | |
"L 90.798254 55.433815 \r\n", | |
"L 92.111195 53.932172 \r\n", | |
"L 96.050018 56.413984 \r\n", | |
"L 98.675901 54.518983 \r\n", | |
"L 99.988842 52.735813 \r\n", | |
"L 101.301783 56.469234 \r\n", | |
"L 105.240607 52.798641 \r\n", | |
"L 106.553548 53.335221 \r\n", | |
"L 107.866489 53.053746 \r\n", | |
"L 109.17943 52.205532 \r\n", | |
"L 110.492371 54.942449 \r\n", | |
"L 114.431195 57.87287 \r\n", | |
"L 115.744136 60.995567 \r\n", | |
"L 117.057077 61.550989 \r\n", | |
"L 118.370018 60.354682 \r\n", | |
"L 119.68296 60.03424 \r\n", | |
"L 123.621783 60.009098 \r\n", | |
"L 126.247665 59.629617 \r\n", | |
"L 127.560607 58.207138 \r\n", | |
"L 132.812371 59.759064 \r\n", | |
"L 134.125313 63.126777 \r\n", | |
"L 135.438254 65.324606 \r\n", | |
"L 136.751195 64.850855 \r\n", | |
"L 138.064136 67.669444 \r\n", | |
"L 142.00296 69.525479 \r\n", | |
"L 143.315901 70.880112 \r\n", | |
"L 144.628842 72.829135 \r\n", | |
"L 145.941783 74.097078 \r\n", | |
"L 147.254724 79.374846 \r\n", | |
"L 152.506489 77.547743 \r\n", | |
"L 153.81943 74.462733 \r\n", | |
"L 155.132371 74.648711 \r\n", | |
"L 156.445312 75.978202 \r\n", | |
"L 160.384136 75.59365 \r\n", | |
"L 161.697077 75.199063 \r\n", | |
"L 163.010018 77.264936 \r\n", | |
"L 164.32296 80.743252 \r\n", | |
"L 165.635901 74.544353 \r\n", | |
"L 169.574724 75.942971 \r\n", | |
"L 170.887665 79.616073 \r\n", | |
"L 172.200607 79.474081 \r\n", | |
"L 173.513548 82.060198 \r\n", | |
"L 174.826489 81.091345 \r\n", | |
"L 178.765312 81.140348 \r\n", | |
"L 180.078254 81.509794 \r\n", | |
"L 181.391195 83.444991 \r\n", | |
"L 182.704136 87.657181 \r\n", | |
"L 184.017077 88.198778 \r\n", | |
"L 187.955901 88.379737 \r\n", | |
"L 189.268842 90.275967 \r\n", | |
"L 190.581783 90.395326 \r\n", | |
"L 191.894724 92.849487 \r\n", | |
"L 193.207665 90.309864 \r\n", | |
"L 197.146489 87.912233 \r\n", | |
"L 198.45943 86.294968 \r\n", | |
"L 201.085312 88.872278 \r\n", | |
"L 202.398254 87.733782 \r\n", | |
"L 206.337077 83.274068 \r\n", | |
"L 207.650018 83.35574 \r\n", | |
"L 208.96296 83.838298 \r\n", | |
"L 211.588842 80.535923 \r\n", | |
"L 215.527665 77.422033 \r\n", | |
"L 216.840607 74.119658 \r\n", | |
"L 219.466489 80.66537 \r\n", | |
"L 220.77943 80.99083 \r\n", | |
"L 224.718254 77.398172 \r\n", | |
"L 226.031195 73.596905 \r\n", | |
"L 227.344136 76.210673 \r\n", | |
"L 228.657077 72.834153 \r\n", | |
"L 229.970018 72.048768 \r\n", | |
"L 233.908842 70.215366 \r\n", | |
"L 235.221783 70.740629 \r\n", | |
"L 236.534724 74.411221 \r\n", | |
"L 237.847665 73.951296 \r\n", | |
"L 239.160607 76.100122 \r\n", | |
"L 243.09943 74.44768 \r\n", | |
"L 244.412371 66.218086 \r\n", | |
"L 245.725312 71.944462 \r\n", | |
"L 247.038254 73.599414 \r\n", | |
"L 248.351195 78.669852 \r\n", | |
"L 252.290018 80.740743 \r\n", | |
"L 253.60296 85.081099 \r\n", | |
"L 256.228842 81.660593 \r\n", | |
"L 257.541783 80.270782 \r\n", | |
"L 261.480607 77.577851 \r\n", | |
"L 264.106489 83.094389 \r\n", | |
"L 265.41943 84.621174 \r\n", | |
"L 266.732371 82.662115 \r\n", | |
"L 270.671195 81.441947 \r\n", | |
"L 271.984136 83.634758 \r\n", | |
"L 273.297077 79.877476 \r\n", | |
"L 274.610018 87.266383 \r\n", | |
"L 275.92296 86.083902 \r\n", | |
"L 279.861783 87.190957 \r\n", | |
"L 281.174724 85.436719 \r\n", | |
"L 282.487665 86.155485 \r\n", | |
"L 285.113548 85.082327 \r\n", | |
"L 289.052371 84.482919 \r\n", | |
"L 290.365313 83.862159 \r\n", | |
"L 291.678254 87.433464 \r\n", | |
"L 292.991195 87.050193 \r\n", | |
"L 294.304136 86.973539 \r\n", | |
"L 298.24296 89.496828 \r\n", | |
"L 299.555901 92.143265 \r\n", | |
"L 300.868842 89.124874 \r\n", | |
"L 302.181783 92.226218 \r\n", | |
"L 303.494724 93.79069 \r\n", | |
"L 307.433548 95.277278 \r\n", | |
"L 308.746489 100.624174 \r\n", | |
"L 310.05943 96.269993 \r\n", | |
"L 311.372371 99.416551 \r\n", | |
"L 316.624136 96.700986 \r\n", | |
"L 317.937077 97.481353 \r\n", | |
"L 319.250018 98.575864 \r\n", | |
"L 320.56296 95.171693 \r\n", | |
"L 325.814724 88.320645 \r\n", | |
"L 327.127665 87.492556 \r\n", | |
"L 329.753548 89.819779 \r\n", | |
"L 331.066489 90.738348 \r\n", | |
"L 335.005313 88.412353 \r\n", | |
"L 336.318254 92.931159 \r\n", | |
"L 337.631195 89.118575 \r\n", | |
"L 338.944136 91.785136 \r\n", | |
"L 340.257077 87.501311 \r\n", | |
"L 344.195901 90.8489 \r\n", | |
"L 345.508842 91.360337 \r\n", | |
"L 346.821783 92.505131 \r\n", | |
"L 348.134724 93.329484 \r\n", | |
"L 349.447665 91.036158 \r\n", | |
"L 353.386489 90.990944 \r\n", | |
"L 354.69943 92.139476 \r\n", | |
"L 356.012371 89.586027 \r\n", | |
"L 357.325313 89.354784 \r\n", | |
"L 358.638254 90.528458 \r\n", | |
"L 362.577077 88.818205 \r\n", | |
"L 363.890018 88.618402 \r\n", | |
"L 365.20296 88.555573 \r\n", | |
"L 366.515901 91.458343 \r\n", | |
"L 367.828842 93.63103 \r\n", | |
"L 371.767665 90.809932 \r\n", | |
"L 373.080607 87.184606 \r\n", | |
"L 374.393548 84.464023 \r\n", | |
"L 375.706489 87.577913 \r\n", | |
"L 377.01943 87.014963 \r\n", | |
"L 380.958254 84.15367 \r\n", | |
"L 382.271195 88.636017 \r\n", | |
"L 383.584136 84.68395 \r\n", | |
"L 384.897077 88.176092 \r\n", | |
"L 386.210018 87.836807 \r\n", | |
"L 390.148842 89.690332 \r\n", | |
"L 391.461783 86.16803 \r\n", | |
"L 392.774724 81.483371 \r\n", | |
"L 394.087665 87.831789 \r\n", | |
"L 395.400607 87.848123 \r\n", | |
"L 399.33943 83.542945 \r\n", | |
"L 400.652371 86.445715 \r\n", | |
"L 401.965313 85.117505 \r\n", | |
"L 403.278254 87.042667 \r\n", | |
"L 404.591195 88.648614 \r\n", | |
"L 408.530018 91.646882 \r\n", | |
"L 409.84296 90.935642 \r\n", | |
"L 411.155901 91.836649 \r\n", | |
"L 412.468842 94.392606 \r\n", | |
"L 413.781783 96.646965 \r\n", | |
"L 417.720607 95.308667 \r\n", | |
"L 419.033548 96.454689 \r\n", | |
"L 420.346489 96.440864 \r\n", | |
"L 421.65943 93.698929 \r\n", | |
"L 422.972371 92.111825 \r\n", | |
"L 426.911195 86.551301 \r\n", | |
"L 428.224136 89.679016 \r\n", | |
"L 429.537077 82.917167 \r\n", | |
"L 430.850018 86.389185 \r\n", | |
"L 432.16296 91.452097 \r\n", | |
"L 436.101783 95.507189 \r\n", | |
"L 437.414724 97.126962 \r\n", | |
"L 438.727665 91.631776 \r\n", | |
"L 440.040607 92.559153 \r\n", | |
"L 441.353548 93.96028 \r\n", | |
"L 446.605312 97.074169 \r\n", | |
"L 447.918254 96.721058 \r\n", | |
"L 450.544136 96.665756 \r\n", | |
"L 454.48296 97.697438 \r\n", | |
"L 455.795901 98.504175 \r\n", | |
"L 457.108842 101.492407 \r\n", | |
"L 458.421783 98.476524 \r\n", | |
"L 459.734724 99.461712 \r\n", | |
"L 463.673548 100.221955 \r\n", | |
"L 464.986489 103.224012 \r\n", | |
"L 466.29943 103.43764 \r\n", | |
"L 467.612371 102.586918 \r\n", | |
"L 468.925312 101.878187 \r\n", | |
"L 472.864136 100.837697 \r\n", | |
"L 474.177077 104.077244 \r\n", | |
"L 475.490018 101.589133 \r\n", | |
"L 476.80296 101.821604 \r\n", | |
"L 478.115901 101.761285 \r\n", | |
"L 482.054724 99.839913 \r\n", | |
"L 483.367665 98.604691 \r\n", | |
"L 484.680607 99.680358 \r\n", | |
"L 485.993548 97.389541 \r\n", | |
"L 487.306489 100.807538 \r\n", | |
"L 491.245312 101.305149 \r\n", | |
"L 492.558254 101.12798 \r\n", | |
"L 493.871195 101.746231 \r\n", | |
"L 495.184136 102.835724 \r\n", | |
"L 496.497077 103.683937 \r\n", | |
"L 500.435901 105.180562 \r\n", | |
"L 501.748842 106.814161 \r\n", | |
"L 503.061783 105.982282 \r\n", | |
"L 504.374724 107.304246 \r\n", | |
"L 505.687665 109.753389 \r\n", | |
"L 509.626489 109.221828 \r\n", | |
"L 510.93943 109.235654 \r\n", | |
"L 512.252371 110.180645 \r\n", | |
"L 513.565312 114.003265 \r\n", | |
"L 514.878254 111.533998 \r\n", | |
"L 518.817077 111.496311 \r\n", | |
"L 524.068842 116.622052 \r\n", | |
"L 528.007665 115.26491 \r\n", | |
"L 530.633548 119.607774 \r\n", | |
"L 531.946489 124.183111 \r\n", | |
"L 533.25943 126.541775 \r\n", | |
"L 537.198254 127.828561 \r\n", | |
"L 538.511195 131.130936 \r\n", | |
"L 539.824136 128.224377 \r\n", | |
"L 541.137077 127.971781 \r\n", | |
"L 542.450018 131.039176 \r\n", | |
"L 546.388842 132.609946 \r\n", | |
"L 547.701783 133.950753 \r\n", | |
"L 549.014724 133.345047 \r\n", | |
"L 550.327665 136.971654 \r\n", | |
"L 551.640607 139.17701 \r\n", | |
"L 555.57943 137.75832 \r\n", | |
"L 556.892371 135.458695 \r\n", | |
"L 558.205313 142.392695 \r\n", | |
"L 559.518254 135.368215 \r\n", | |
"L 560.831195 142.04962 \r\n", | |
"L 564.770018 137.441615 \r\n", | |
"L 566.08296 140.806819 \r\n", | |
"L 567.395901 146.906431 \r\n", | |
"L 568.708842 141.670086 \r\n", | |
"L 570.021783 146.496737 \r\n", | |
"L 573.960607 147.019491 \r\n", | |
"L 575.273548 150.633501 \r\n", | |
"L 576.586489 146.482912 \r\n", | |
"L 577.89943 149.520147 \r\n", | |
"L 579.212371 149.481179 \r\n", | |
"L 583.151195 151.082109 \r\n", | |
"L 584.464136 148.955916 \r\n", | |
"L 585.777077 151.839843 \r\n", | |
"L 587.090018 155.892426 \r\n", | |
"L 588.40296 149.040098 \r\n", | |
"L 593.654724 135.635812 \r\n", | |
"L 594.967665 132.710461 \r\n", | |
"L 596.280607 136.15739 \r\n", | |
"L 597.593548 136.180075 \r\n", | |
"L 601.532371 146.180189 \r\n", | |
"L 602.845313 151.289543 \r\n", | |
"L 604.158254 142.049672 \r\n", | |
"L 605.471195 142.601305 \r\n", | |
"L 606.784136 142.32362 \r\n", | |
"L 612.035901 142.856409 \r\n", | |
"L 613.348842 152.807573 \r\n", | |
"L 614.661783 150.004142 \r\n", | |
"L 615.974724 149.803112 \r\n", | |
"L 619.913548 132.128826 \r\n", | |
"L 621.226489 147.195694 \r\n", | |
"L 622.53943 147.918198 \r\n", | |
"L 623.852371 167.571667 \r\n", | |
"L 625.165313 165.471792 \r\n", | |
"L 629.104136 172.947546 \r\n", | |
"L 630.417077 183.221608 \r\n", | |
"L 631.730018 183.322071 \r\n", | |
"L 633.04296 175.108812 \r\n", | |
"L 634.355901 177.62703 \r\n", | |
"L 638.294724 168.271485 \r\n", | |
"L 639.607665 178.129607 \r\n", | |
"L 640.920607 178.262897 \r\n", | |
"L 642.233548 173.373417 \r\n", | |
"L 643.546489 173.2792 \r\n", | |
"L 647.485313 172.249975 \r\n", | |
"L 648.798254 179.033123 \r\n", | |
"L 650.111195 177.302799 \r\n", | |
"L 651.424136 164.994199 \r\n", | |
"L 652.737077 162.806406 \r\n", | |
"L 656.675901 164.040452 \r\n", | |
"L 657.988842 173.168492 \r\n", | |
"L 659.301783 181.150508 \r\n", | |
"L 660.614724 186.127958 \r\n", | |
"L 661.927665 185.874082 \r\n", | |
"L 665.866489 177.962421 \r\n", | |
"L 667.17943 176.336349 \r\n", | |
"L 668.492371 175.042036 \r\n", | |
"L 669.805313 183.559404 \r\n", | |
"L 671.118254 178.284144 \r\n", | |
"L 675.057077 184.111036 \r\n", | |
"L 676.370018 175.88646 \r\n", | |
"L 677.68296 177.438387 \r\n", | |
"L 678.995901 187.29779 \r\n", | |
"L 684.247665 192.855857 \r\n", | |
"L 688.186489 217.054502 \r\n", | |
"L 689.49943 219.188221 \r\n", | |
"L 694.751195 223.640409 \r\n", | |
"L 696.064136 223.125235 \r\n", | |
"L 697.377077 221.460248 \r\n", | |
"L 698.690018 221.546938 \r\n", | |
"L 702.628842 222.410205 \r\n", | |
"L 703.941783 219.448344 \r\n", | |
"L 705.254724 223.844001 \r\n", | |
"L 706.567665 226.75686 \r\n", | |
"L 707.880607 224.693496 \r\n", | |
"L 711.81943 228.867946 \r\n", | |
"L 713.132371 226.193858 \r\n", | |
"L 714.445312 208.860086 \r\n", | |
"L 715.758254 207.06688 \r\n", | |
"L 717.071195 208.61128 \r\n", | |
"L 721.010018 210.576637 \r\n", | |
"L 722.32296 208.645229 \r\n", | |
"L 723.635901 208.206657 \r\n", | |
"L 724.948842 204.738376 \r\n", | |
"L 726.261783 196.437146 \r\n", | |
"L 730.200607 196.430847 \r\n", | |
"L 731.513548 195.97594 \r\n", | |
"L 734.13943 220.060296 \r\n", | |
"L 739.391195 223.372812 \r\n", | |
"L 740.704136 220.567944 \r\n", | |
"L 742.017077 226.404925 \r\n", | |
"L 743.330018 230.532933 \r\n", | |
"L 744.64296 233.145421 \r\n", | |
"L 748.581783 234.851936 \r\n", | |
"L 749.894724 244.481377 \r\n", | |
"L 753.833548 248.971304 \r\n", | |
"L 757.772371 238.712295 \r\n", | |
"L 759.085312 243.482364 \r\n", | |
"L 761.711195 255.529507 \r\n", | |
"L 763.024136 255.920305 \r\n", | |
"L 766.96296 258.043936 \r\n", | |
"L 768.275901 261.078662 \r\n", | |
"L 769.588842 257.727284 \r\n", | |
"L 770.901783 268.747816 \r\n", | |
"L 772.214724 274.558426 \r\n", | |
"L 776.153548 271.688273 \r\n", | |
"L 777.466489 256.386476 \r\n", | |
"L 778.77943 254.701313 \r\n", | |
"L 780.092371 248.755009 \r\n", | |
"L 781.405312 245.135929 \r\n", | |
"L 785.344136 248.137986 \r\n", | |
"L 786.657077 250.795688 \r\n", | |
"L 787.970018 251.665306 \r\n", | |
"L 789.28296 255.629918 \r\n", | |
"L 790.595901 234.422014 \r\n", | |
"L 794.534724 235.625848 \r\n", | |
"L 795.847665 238.919415 \r\n", | |
"L 797.160607 243.59153 \r\n", | |
"L 798.473548 237.664017 \r\n", | |
"L 799.786489 255.141009 \r\n", | |
"L 803.725312 269.083155 \r\n", | |
"L 805.038254 277.873189 \r\n", | |
"L 806.351195 275.858828 \r\n", | |
"L 807.664136 276.200623 \r\n", | |
"L 808.977077 286.188192 \r\n", | |
"L 812.915901 271.015791 \r\n", | |
"L 814.228842 260.071913 \r\n", | |
"L 815.541783 255.140957 \r\n", | |
"L 816.854724 264.201149 \r\n", | |
"L 818.167665 264.702551 \r\n", | |
"L 822.106489 264.617089 \r\n", | |
"L 824.732371 271.383955 \r\n", | |
"L 826.045312 276.244556 \r\n", | |
"L 827.358254 289.504341 \r\n", | |
"L 831.297077 298.372257 \r\n", | |
"L 832.610018 296.416936 \r\n", | |
"L 833.92296 304.1652 \r\n", | |
"L 835.235901 319.610269 \r\n", | |
"L 836.548842 314.233214 \r\n", | |
"L 840.487665 313.833608 \r\n", | |
"L 841.800607 299.633849 \r\n", | |
"L 843.113548 335.476295 \r\n", | |
"L 844.426489 319.826354 \r\n", | |
"L 845.73943 294.816006 \r\n", | |
"L 849.678254 287.697257 \r\n", | |
"L 850.991195 284.815839 \r\n", | |
"L 852.304136 279.396079 \r\n", | |
"L 853.617077 288.065474 \r\n", | |
"L 854.930018 276.223151 \r\n", | |
"L 858.868842 272.954673 \r\n", | |
"L 860.181783 278.905994 \r\n", | |
"L 861.494724 280.402619 \r\n", | |
"L 862.807665 265.011624 \r\n", | |
"L 865.433548 259.465335 \r\n", | |
"L 868.05943 254.082852 \r\n", | |
"L 869.372371 273.041415 \r\n", | |
"L 870.685313 280.63888 \r\n", | |
"L 871.998254 276.131443 \r\n", | |
"L 873.311195 282.062641 \r\n", | |
"L 877.250018 290.117469 \r\n", | |
"L 878.56296 294.929014 \r\n", | |
"L 879.875901 295.473172 \r\n", | |
"L 881.188842 296.178113 \r\n", | |
"L 882.501783 292.933549 \r\n", | |
"L 886.440607 287.053811 \r\n", | |
"L 887.753548 291.453206 \r\n", | |
"L 889.066489 283.82681 \r\n", | |
"L 890.37943 288.918601 \r\n", | |
"L 891.692371 287.008545 \r\n", | |
"L 895.631195 295.876462 \r\n", | |
"L 896.944136 311.50121 \r\n", | |
"L 898.257077 313.487919 \r\n", | |
"L 899.570018 307.036477 \r\n", | |
"L 900.88296 313.805853 \r\n", | |
"L 904.821783 308.622301 \r\n", | |
"L 906.134724 304.289525 \r\n", | |
"L 907.447665 301.704688 \r\n", | |
"L 908.760607 302.630836 \r\n", | |
"L 910.073548 295.184118 \r\n", | |
"L 914.012371 293.073032 \r\n", | |
"L 915.325313 294.241688 \r\n", | |
"L 916.638254 301.165652 \r\n", | |
"L 917.951195 298.514197 \r\n", | |
"L 919.264136 291.643025 \r\n", | |
"L 923.20296 287.507438 \r\n", | |
"L 924.515901 277.800062 \r\n", | |
"L 927.141783 314.16649 \r\n", | |
"L 928.454724 307.369464 \r\n", | |
"L 932.393548 309.632578 \r\n", | |
"L 933.706489 285.427687 \r\n", | |
"L 935.01943 283.850619 \r\n", | |
"L 936.332371 295.204138 \r\n", | |
"L 937.645313 295.204138 \r\n", | |
"L 937.645313 295.204138 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 44.845313 350.30175 \r\n", | |
"L 44.845313 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 937.645312 350.30175 \r\n", | |
"L 937.645312 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 44.845313 350.30175 \r\n", | |
"L 937.645313 350.30175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 44.845313 24.14175 \r\n", | |
"L 937.645313 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_18\">\r\n", | |
" <!-- FXUS - FXIT -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 51.703125 72.90625 \r\n", | |
"L 51.703125 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.109375 \r\n", | |
"L 48.578125 43.109375 \r\n", | |
"L 48.578125 34.8125 \r\n", | |
"L 19.671875 34.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-70\"/>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" <path d=\"M 8.6875 72.90625 \r\n", | |
"L 18.609375 72.90625 \r\n", | |
"L 18.609375 28.609375 \r\n", | |
"Q 18.609375 16.890625 22.84375 11.734375 \r\n", | |
"Q 27.09375 6.59375 36.625 6.59375 \r\n", | |
"Q 46.09375 6.59375 50.34375 11.734375 \r\n", | |
"Q 54.59375 16.890625 54.59375 28.609375 \r\n", | |
"L 54.59375 72.90625 \r\n", | |
"L 64.5 72.90625 \r\n", | |
"L 64.5 27.390625 \r\n", | |
"Q 64.5 13.140625 57.4375 5.859375 \r\n", | |
"Q 50.390625 -1.421875 36.625 -1.421875 \r\n", | |
"Q 22.796875 -1.421875 15.734375 5.859375 \r\n", | |
"Q 8.6875 13.140625 8.6875 27.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-85\"/>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" <path id=\"DejaVuSans-32\"/>\r\n", | |
" <path d=\"M 4.890625 31.390625 \r\n", | |
"L 31.203125 31.390625 \r\n", | |
"L 31.203125 23.390625 \r\n", | |
"L 4.890625 23.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-45\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-73\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(449.562937 18.14175)scale(0.144 -0.144)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-85\"/>\r\n", | |
" <use x=\"199.21875\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"262.695312\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"294.482422\" xlink:href=\"#DejaVuSans-45\"/>\r\n", | |
" <use x=\"330.566406\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"362.353516\" xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"419.873047\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"488.378906\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"517.871094\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 865.93125 47.098 \r\n", | |
"L 930.645313 47.098 \r\n", | |
"Q 932.645313 47.098 932.645313 45.098 \r\n", | |
"L 932.645313 31.14175 \r\n", | |
"Q 932.645313 29.14175 930.645313 29.14175 \r\n", | |
"L 865.93125 29.14175 \r\n", | |
"Q 863.93125 29.14175 863.93125 31.14175 \r\n", | |
"L 863.93125 45.098 \r\n", | |
"Q 863.93125 47.098 865.93125 47.098 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_53\">\r\n", | |
" <path d=\"M 867.93125 37.240187 \r\n", | |
"L 887.93125 37.240187 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_54\"/>\r\n", | |
" <g id=\"text_19\">\r\n", | |
" <!-- diff_us -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 45.40625 46.390625 \r\n", | |
"L 45.40625 75.984375 \r\n", | |
"L 54.390625 75.984375 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 45.40625 0 \r\n", | |
"L 45.40625 8.203125 \r\n", | |
"Q 42.578125 3.328125 38.25 0.953125 \r\n", | |
"Q 33.9375 -1.421875 27.875 -1.421875 \r\n", | |
"Q 17.96875 -1.421875 11.734375 6.484375 \r\n", | |
"Q 5.515625 14.40625 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.1875 11.734375 48.09375 \r\n", | |
"Q 17.96875 56 27.875 56 \r\n", | |
"Q 33.9375 56 38.25 53.625 \r\n", | |
"Q 42.578125 51.265625 45.40625 46.390625 \r\n", | |
"z\r\n", | |
"M 14.796875 27.296875 \r\n", | |
"Q 14.796875 17.390625 18.875 11.75 \r\n", | |
"Q 22.953125 6.109375 30.078125 6.109375 \r\n", | |
"Q 37.203125 6.109375 41.296875 11.75 \r\n", | |
"Q 45.40625 17.390625 45.40625 27.296875 \r\n", | |
"Q 45.40625 37.203125 41.296875 42.84375 \r\n", | |
"Q 37.203125 48.484375 30.078125 48.484375 \r\n", | |
"Q 22.953125 48.484375 18.875 42.84375 \r\n", | |
"Q 14.796875 37.203125 14.796875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-100\"/>\r\n", | |
" <path d=\"M 9.421875 54.6875 \r\n", | |
"L 18.40625 54.6875 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 64.59375 \r\n", | |
"L 9.421875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-105\"/>\r\n", | |
" <path d=\"M 37.109375 75.984375 \r\n", | |
"L 37.109375 68.5 \r\n", | |
"L 28.515625 68.5 \r\n", | |
"Q 23.6875 68.5 21.796875 66.546875 \r\n", | |
"Q 19.921875 64.59375 19.921875 59.515625 \r\n", | |
"L 19.921875 54.6875 \r\n", | |
"L 34.71875 54.6875 \r\n", | |
"L 34.71875 47.703125 \r\n", | |
"L 19.921875 47.703125 \r\n", | |
"L 19.921875 0 \r\n", | |
"L 10.890625 0 \r\n", | |
"L 10.890625 47.703125 \r\n", | |
"L 2.296875 47.703125 \r\n", | |
"L 2.296875 54.6875 \r\n", | |
"L 10.890625 54.6875 \r\n", | |
"L 10.890625 58.5 \r\n", | |
"Q 10.890625 67.625 15.140625 71.796875 \r\n", | |
"Q 19.390625 75.984375 28.609375 75.984375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-102\"/>\r\n", | |
" <path d=\"M 50.984375 -16.609375 \r\n", | |
"L 50.984375 -23.578125 \r\n", | |
"L -0.984375 -23.578125 \r\n", | |
"L -0.984375 -16.609375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-95\"/>\r\n", | |
" <path d=\"M 44.28125 53.078125 \r\n", | |
"L 44.28125 44.578125 \r\n", | |
"Q 40.484375 46.53125 36.375 47.5 \r\n", | |
"Q 32.28125 48.484375 27.875 48.484375 \r\n", | |
"Q 21.1875 48.484375 17.84375 46.4375 \r\n", | |
"Q 14.5 44.390625 14.5 40.28125 \r\n", | |
"Q 14.5 37.15625 16.890625 35.375 \r\n", | |
"Q 19.28125 33.59375 26.515625 31.984375 \r\n", | |
"L 29.59375 31.296875 \r\n", | |
"Q 39.15625 29.25 43.1875 25.515625 \r\n", | |
"Q 47.21875 21.78125 47.21875 15.09375 \r\n", | |
"Q 47.21875 7.46875 41.1875 3.015625 \r\n", | |
"Q 35.15625 -1.421875 24.609375 -1.421875 \r\n", | |
"Q 20.21875 -1.421875 15.453125 -0.5625 \r\n", | |
"Q 10.6875 0.296875 5.421875 2 \r\n", | |
"L 5.421875 11.28125 \r\n", | |
"Q 10.40625 8.6875 15.234375 7.390625 \r\n", | |
"Q 20.0625 6.109375 24.8125 6.109375 \r\n", | |
"Q 31.15625 6.109375 34.5625 8.28125 \r\n", | |
"Q 37.984375 10.453125 37.984375 14.40625 \r\n", | |
"Q 37.984375 18.0625 35.515625 20.015625 \r\n", | |
"Q 33.0625 21.96875 24.703125 23.78125 \r\n", | |
"L 21.578125 24.515625 \r\n", | |
"Q 13.234375 26.265625 9.515625 29.90625 \r\n", | |
"Q 5.8125 33.546875 5.8125 39.890625 \r\n", | |
"Q 5.8125 47.609375 11.28125 51.796875 \r\n", | |
"Q 16.75 56 26.8125 56 \r\n", | |
"Q 31.78125 56 36.171875 55.265625 \r\n", | |
"Q 40.578125 54.546875 44.28125 53.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-115\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(895.93125 40.740187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-100\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-105\"/>\r\n", | |
" <use x=\"91.259766\" xlink:href=\"#DejaVuSans-102\"/>\r\n", | |
" <use x=\"126.464844\" xlink:href=\"#DejaVuSans-102\"/>\r\n", | |
" <use x=\"161.669922\" xlink:href=\"#DejaVuSans-95\"/>\r\n", | |
" <use x=\"211.669922\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"275.048828\" xlink:href=\"#DejaVuSans-115\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"p57ed446498\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"44.845313\" y=\"24.14175\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"400.991437pt\" version=\"1.1\" viewBox=\"0 0 930.103125 400.991437\" width=\"930.103125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 400.991437 \r\n", | |
"L 930.103125 400.991437 \r\n", | |
"L 930.103125 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 350.30175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m88277d9e43\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 145.641949 350.30175 \r\n", | |
"L 145.641949 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"145.641949\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" <path d=\"M 41.109375 46.296875 \r\n", | |
"Q 39.59375 47.171875 37.8125 47.578125 \r\n", | |
"Q 36.03125 48 33.890625 48 \r\n", | |
"Q 26.265625 48 22.1875 43.046875 \r\n", | |
"Q 18.109375 38.09375 18.109375 28.8125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 20.953125 51.171875 25.484375 53.578125 \r\n", | |
"Q 30.03125 56 36.53125 56 \r\n", | |
"Q 37.453125 56 38.578125 55.875 \r\n", | |
"Q 39.703125 55.765625 41.0625 55.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-114\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(136.991949 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 265.119596 350.30175 \r\n", | |
"L 265.119596 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"265.119596\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(259.086783 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 385.910184 350.30175 \r\n", | |
"L 385.910184 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"385.910184\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(377.264871 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 506.700772 350.30175 \r\n", | |
"L 506.700772 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"506.700772\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- Jan -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-110\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(498.99296 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"90.771484\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(493.975772 376.098)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 626.178419 350.30175 \r\n", | |
"L 626.178419 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"626.178419\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(617.528419 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 745.656066 350.30175 \r\n", | |
"L 745.656066 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"745.656066\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(739.623254 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 866.446654 350.30175 \r\n", | |
"L 866.446654 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"866.446654\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(857.801342 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"922.903125\" xlink:href=\"#m88277d9e43\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"m42fc099742\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"68.178419\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"104.940772\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"185.030184\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"225.73136\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"305.820772\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"346.521949\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"426.61136\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"465.999596\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"547.401949\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"585.477243\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"665.566654\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"706.267831\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"786.357243\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"827.058419\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"907.147831\" xlink:href=\"#m42fc099742\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(439.984688 391.295812)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 348.175382 \r\n", | |
"L 922.903125 348.175382 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m6cb4be8b9a\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"348.175382\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- 0.6 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" <path d=\"M 33.015625 40.375 \r\n", | |
"Q 26.375 40.375 22.484375 35.828125 \r\n", | |
"Q 18.609375 31.296875 18.609375 23.390625 \r\n", | |
"Q 18.609375 15.53125 22.484375 10.953125 \r\n", | |
"Q 26.375 6.390625 33.015625 6.390625 \r\n", | |
"Q 39.65625 6.390625 43.53125 10.953125 \r\n", | |
"Q 47.40625 15.53125 47.40625 23.390625 \r\n", | |
"Q 47.40625 31.296875 43.53125 35.828125 \r\n", | |
"Q 39.65625 40.375 33.015625 40.375 \r\n", | |
"z\r\n", | |
"M 52.59375 71.296875 \r\n", | |
"L 52.59375 62.3125 \r\n", | |
"Q 48.875 64.0625 45.09375 64.984375 \r\n", | |
"Q 41.3125 65.921875 37.59375 65.921875 \r\n", | |
"Q 27.828125 65.921875 22.671875 59.328125 \r\n", | |
"Q 17.53125 52.734375 16.796875 39.40625 \r\n", | |
"Q 19.671875 43.65625 24.015625 45.921875 \r\n", | |
"Q 28.375 48.1875 33.59375 48.1875 \r\n", | |
"Q 44.578125 48.1875 50.953125 41.515625 \r\n", | |
"Q 57.328125 34.859375 57.328125 23.390625 \r\n", | |
"Q 57.328125 12.15625 50.6875 5.359375 \r\n", | |
"Q 44.046875 -1.421875 33.015625 -1.421875 \r\n", | |
"Q 20.359375 -1.421875 13.671875 8.265625 \r\n", | |
"Q 6.984375 17.96875 6.984375 36.375 \r\n", | |
"Q 6.984375 53.65625 15.1875 63.9375 \r\n", | |
"Q 23.390625 74.21875 37.203125 74.21875 \r\n", | |
"Q 40.921875 74.21875 44.703125 73.484375 \r\n", | |
"Q 48.484375 72.75 52.59375 71.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-54\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 351.974601)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 296.919934 \r\n", | |
"L 922.903125 296.919934 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"296.919934\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- 0.8 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 31.78125 34.625 \r\n", | |
"Q 24.75 34.625 20.71875 30.859375 \r\n", | |
"Q 16.703125 27.09375 16.703125 20.515625 \r\n", | |
"Q 16.703125 13.921875 20.71875 10.15625 \r\n", | |
"Q 24.75 6.390625 31.78125 6.390625 \r\n", | |
"Q 38.8125 6.390625 42.859375 10.171875 \r\n", | |
"Q 46.921875 13.96875 46.921875 20.515625 \r\n", | |
"Q 46.921875 27.09375 42.890625 30.859375 \r\n", | |
"Q 38.875 34.625 31.78125 34.625 \r\n", | |
"z\r\n", | |
"M 21.921875 38.8125 \r\n", | |
"Q 15.578125 40.375 12.03125 44.71875 \r\n", | |
"Q 8.5 49.078125 8.5 55.328125 \r\n", | |
"Q 8.5 64.0625 14.71875 69.140625 \r\n", | |
"Q 20.953125 74.21875 31.78125 74.21875 \r\n", | |
"Q 42.671875 74.21875 48.875 69.140625 \r\n", | |
"Q 55.078125 64.0625 55.078125 55.328125 \r\n", | |
"Q 55.078125 49.078125 51.53125 44.71875 \r\n", | |
"Q 48 40.375 41.703125 38.8125 \r\n", | |
"Q 48.828125 37.15625 52.796875 32.3125 \r\n", | |
"Q 56.78125 27.484375 56.78125 20.515625 \r\n", | |
"Q 56.78125 9.90625 50.3125 4.234375 \r\n", | |
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.734375 -1.421875 13.25 4.234375 \r\n", | |
"Q 6.78125 9.90625 6.78125 20.515625 \r\n", | |
"Q 6.78125 27.484375 10.78125 32.3125 \r\n", | |
"Q 14.796875 37.15625 21.921875 38.8125 \r\n", | |
"z\r\n", | |
"M 18.3125 54.390625 \r\n", | |
"Q 18.3125 48.734375 21.84375 45.5625 \r\n", | |
"Q 25.390625 42.390625 31.78125 42.390625 \r\n", | |
"Q 38.140625 42.390625 41.71875 45.5625 \r\n", | |
"Q 45.3125 48.734375 45.3125 54.390625 \r\n", | |
"Q 45.3125 60.0625 41.71875 63.234375 \r\n", | |
"Q 38.140625 66.40625 31.78125 66.40625 \r\n", | |
"Q 25.390625 66.40625 21.84375 63.234375 \r\n", | |
"Q 18.3125 60.0625 18.3125 54.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-56\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 300.719153)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 245.664486 \r\n", | |
"L 922.903125 245.664486 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"245.664486\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- 1.0 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 249.463705)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 194.409038 \r\n", | |
"L 922.903125 194.409038 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"194.409038\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- 1.2 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 198.208257)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 143.15359 \r\n", | |
"L 922.903125 143.15359 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"143.15359\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- 1.4 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 37.796875 64.3125 \r\n", | |
"L 12.890625 25.390625 \r\n", | |
"L 37.796875 25.390625 \r\n", | |
"z\r\n", | |
"M 35.203125 72.90625 \r\n", | |
"L 47.609375 72.90625 \r\n", | |
"L 47.609375 25.390625 \r\n", | |
"L 58.015625 25.390625 \r\n", | |
"L 58.015625 17.1875 \r\n", | |
"L 47.609375 17.1875 \r\n", | |
"L 47.609375 0 \r\n", | |
"L 37.796875 0 \r\n", | |
"L 37.796875 17.1875 \r\n", | |
"L 4.890625 17.1875 \r\n", | |
"L 4.890625 26.703125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-52\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 146.952809)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-52\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_6\">\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 91.898143 \r\n", | |
"L 922.903125 91.898143 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"91.898143\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- 1.6 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 95.697361)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_7\">\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 40.642695 \r\n", | |
"L 922.903125 40.642695 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m6cb4be8b9a\" y=\"40.642695\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- 1.8 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 44.441913)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 326.118105 \r\n", | |
"L 31.416066 331.123303 \r\n", | |
"L 37.980772 325.305295 \r\n", | |
"L 39.293713 325.219736 \r\n", | |
"L 40.606654 323.636896 \r\n", | |
"L 44.545478 324.535265 \r\n", | |
"L 45.858419 323.979132 \r\n", | |
"L 47.17136 322.652968 \r\n", | |
"L 48.484301 324.663603 \r\n", | |
"L 49.797243 322.567409 \r\n", | |
"L 53.736066 320.471215 \r\n", | |
"L 55.049007 321.112907 \r\n", | |
"L 56.361949 323.080763 \r\n", | |
"L 57.67489 324.021911 \r\n", | |
"L 58.987831 320.727892 \r\n", | |
"L 62.926654 320.385656 \r\n", | |
"L 64.239596 320.770671 \r\n", | |
"L 65.552537 322.567409 \r\n", | |
"L 66.865478 319.572846 \r\n", | |
"L 68.178419 318.332242 \r\n", | |
"L 72.117243 317.177196 \r\n", | |
"L 73.430184 314.738766 \r\n", | |
"L 74.743125 313.241485 \r\n", | |
"L 76.056066 312.770911 \r\n", | |
"L 77.369007 315.166561 \r\n", | |
"L 81.307831 313.540941 \r\n", | |
"L 82.620772 312.685352 \r\n", | |
"L 83.933713 311.145291 \r\n", | |
"L 85.246654 307.808492 \r\n", | |
"L 86.559596 308.107948 \r\n", | |
"L 90.498419 307.509036 \r\n", | |
"L 91.81136 307.808492 \r\n", | |
"L 93.124301 308.877979 \r\n", | |
"L 94.437243 309.519671 \r\n", | |
"L 95.750184 309.262994 \r\n", | |
"L 99.689007 306.995682 \r\n", | |
"L 101.001949 306.39677 \r\n", | |
"L 103.627831 305.370062 \r\n", | |
"L 106.253713 304.443174 \r\n", | |
"L 108.879596 303.616104 \r\n", | |
"L 110.192537 305.498401 \r\n", | |
"L 111.505478 305.968975 \r\n", | |
"L 112.818419 307.851271 \r\n", | |
"L 118.070184 307.93683 \r\n", | |
"L 119.383125 304.129458 \r\n", | |
"L 120.696066 304.129458 \r\n", | |
"L 122.009007 303.530545 \r\n", | |
"L 123.321949 302.204381 \r\n", | |
"L 127.260772 303.017191 \r\n", | |
"L 128.573713 302.546617 \r\n", | |
"L 129.886654 303.188309 \r\n", | |
"L 131.199596 304.899488 \r\n", | |
"L 132.512537 300.150967 \r\n", | |
"L 136.45136 303.830001 \r\n", | |
"L 137.764301 303.14553 \r\n", | |
"L 139.077243 302.204381 \r\n", | |
"L 140.390184 301.862146 \r\n", | |
"L 141.703125 300.150967 \r\n", | |
"L 146.95489 295.701902 \r\n", | |
"L 148.267831 294.29018 \r\n", | |
"L 149.580772 293.220693 \r\n", | |
"L 150.893713 294.332959 \r\n", | |
"L 156.145478 294.375739 \r\n", | |
"L 157.458419 295.188548 \r\n", | |
"L 158.77136 294.29018 \r\n", | |
"L 160.084301 294.418518 \r\n", | |
"L 165.336066 293.648488 \r\n", | |
"L 166.649007 293.947944 \r\n", | |
"L 167.961949 293.734046 \r\n", | |
"L 169.27489 292.921237 \r\n", | |
"L 173.213713 293.691267 \r\n", | |
"L 174.526654 292.407883 \r\n", | |
"L 175.839596 289.798335 \r\n", | |
"L 177.152537 287.488244 \r\n", | |
"L 178.465478 288.301054 \r\n", | |
"L 182.404301 288.301054 \r\n", | |
"L 183.717243 289.071084 \r\n", | |
"L 186.343125 286.718213 \r\n", | |
"L 187.656066 286.97489 \r\n", | |
"L 191.59489 290.953381 \r\n", | |
"L 192.907831 289.883894 \r\n", | |
"L 194.220772 291.937309 \r\n", | |
"L 196.846654 294.889092 \r\n", | |
"L 200.785478 296.942507 \r\n", | |
"L 202.098419 299.89429 \r\n", | |
"L 203.41136 299.08148 \r\n", | |
"L 204.724301 296.856948 \r\n", | |
"L 206.037243 296.258035 \r\n", | |
"L 209.976066 298.824803 \r\n", | |
"L 211.289007 299.93707 \r\n", | |
"L 212.601949 299.723172 \r\n", | |
"L 213.91489 302.076043 \r\n", | |
"L 219.166654 303.402207 \r\n", | |
"L 220.479596 302.803294 \r\n", | |
"L 221.792537 303.402207 \r\n", | |
"L 223.105478 303.14553 \r\n", | |
"L 227.044301 304.956527 \r\n", | |
"L 228.357243 305.54118 \r\n", | |
"L 229.670184 307.081241 \r\n", | |
"L 230.983125 301.691028 \r\n", | |
"L 232.296066 299.380936 \r\n", | |
"L 233.609007 296.300815 \r\n", | |
"L 237.547831 293.776826 \r\n", | |
"L 238.860772 292.407883 \r\n", | |
"L 241.486654 294.29018 \r\n", | |
"L 242.799596 295.744682 \r\n", | |
"L 246.738419 296.471933 \r\n", | |
"L 248.05136 294.418518 \r\n", | |
"L 250.677243 292.151206 \r\n", | |
"L 251.990184 293.734046 \r\n", | |
"L 255.929007 295.06021 \r\n", | |
"L 257.241949 296.172476 \r\n", | |
"L 258.55489 297.755317 \r\n", | |
"L 259.867831 295.188548 \r\n", | |
"L 261.180772 294.974651 \r\n", | |
"L 265.119596 291.466735 \r\n", | |
"L 266.432537 291.937309 \r\n", | |
"L 267.745478 289.327761 \r\n", | |
"L 269.058419 288.557731 \r\n", | |
"L 270.37136 288.728848 \r\n", | |
"L 274.310184 288.728848 \r\n", | |
"L 275.623125 290.055012 \r\n", | |
"L 276.936066 288.814407 \r\n", | |
"L 278.249007 288.60051 \r\n", | |
"L 279.561949 288.557731 \r\n", | |
"L 283.500772 287.958818 \r\n", | |
"L 284.813713 287.317126 \r\n", | |
"L 286.126654 288.64329 \r\n", | |
"L 287.439596 289.370541 \r\n", | |
"L 288.752537 286.675434 \r\n", | |
"L 292.69136 287.616582 \r\n", | |
"L 294.004301 284.57924 \r\n", | |
"L 295.317243 285.605947 \r\n", | |
"L 296.630184 283.124738 \r\n", | |
"L 297.943125 283.295856 \r\n", | |
"L 301.881949 282.055251 \r\n", | |
"L 303.19489 282.825282 \r\n", | |
"L 304.507831 282.098031 \r\n", | |
"L 305.820772 283.76643 \r\n", | |
"L 307.133713 284.237004 \r\n", | |
"L 311.072537 289.755556 \r\n", | |
"L 312.385478 292.750119 \r\n", | |
"L 313.698419 290.611145 \r\n", | |
"L 316.324301 285.306491 \r\n", | |
"L 320.263125 286.461537 \r\n", | |
"L 321.576066 286.418757 \r\n", | |
"L 322.889007 286.632654 \r\n", | |
"L 324.201949 288.343833 \r\n", | |
"L 325.51489 287.402685 \r\n", | |
"L 329.453713 281.242441 \r\n", | |
"L 330.766654 280.301293 \r\n", | |
"L 332.079596 282.055251 \r\n", | |
"L 333.392537 283.295856 \r\n", | |
"L 334.705478 284.023107 \r\n", | |
"L 338.644301 287.231567 \r\n", | |
"L 339.957243 284.750358 \r\n", | |
"L 341.270184 285.220932 \r\n", | |
"L 342.583125 281.969692 \r\n", | |
"L 343.896066 280.729088 \r\n", | |
"L 347.83489 281.670236 \r\n", | |
"L 349.147831 281.670236 \r\n", | |
"L 350.460772 281.969692 \r\n", | |
"L 351.773713 279.017909 \r\n", | |
"L 353.086654 277.777304 \r\n", | |
"L 357.025478 279.659601 \r\n", | |
"L 358.338419 282.654164 \r\n", | |
"L 359.65136 282.696943 \r\n", | |
"L 360.964301 280.643529 \r\n", | |
"L 362.277243 282.782502 \r\n", | |
"L 366.216066 286.760993 \r\n", | |
"L 367.529007 284.57924 \r\n", | |
"L 368.841949 285.049814 \r\n", | |
"L 370.15489 284.322563 \r\n", | |
"L 371.467831 284.57924 \r\n", | |
"L 375.406654 285.948183 \r\n", | |
"L 376.719596 286.547096 \r\n", | |
"L 378.032537 289.284982 \r\n", | |
"L 379.345478 285.691506 \r\n", | |
"L 380.658419 285.477609 \r\n", | |
"L 384.597243 285.862624 \r\n", | |
"L 385.910184 282.910841 \r\n", | |
"L 387.223125 287.744921 \r\n", | |
"L 388.536066 290.268909 \r\n", | |
"L 389.849007 288.60051 \r\n", | |
"L 393.787831 284.921476 \r\n", | |
"L 395.100772 285.862624 \r\n", | |
"L 396.413713 287.146008 \r\n", | |
"L 397.726654 286.119301 \r\n", | |
"L 399.039596 283.809209 \r\n", | |
"L 402.978419 284.065886 \r\n", | |
"L 404.29136 282.14081 \r\n", | |
"L 405.604301 281.798574 \r\n", | |
"L 406.917243 283.167517 \r\n", | |
"L 412.169007 286.760993 \r\n", | |
"L 413.481949 285.049814 \r\n", | |
"L 414.79489 288.301054 \r\n", | |
"L 416.107831 285.220932 \r\n", | |
"L 417.420772 283.809209 \r\n", | |
"L 421.359596 280.942985 \r\n", | |
"L 422.672537 279.616821 \r\n", | |
"L 423.985478 281.456339 \r\n", | |
"L 425.298419 280.301293 \r\n", | |
"L 429.237243 278.718453 \r\n", | |
"L 431.863125 277.691745 \r\n", | |
"L 433.176066 277.606186 \r\n", | |
"L 434.489007 276.280023 \r\n", | |
"L 437.11489 276.094645 \r\n", | |
"L 439.740772 275.809449 \r\n", | |
"L 441.053713 274.141049 \r\n", | |
"L 442.366654 272.686547 \r\n", | |
"L 443.679596 273.456578 \r\n", | |
"L 444.992537 273.114342 \r\n", | |
"L 448.93136 271.531502 \r\n", | |
"L 450.244301 270.419235 \r\n", | |
"L 451.557243 270.761471 \r\n", | |
"L 452.870184 271.959296 \r\n", | |
"L 454.183125 272.344312 \r\n", | |
"L 458.121949 271.317604 \r\n", | |
"L 459.43489 268.665277 \r\n", | |
"L 463.373713 267.59579 \r\n", | |
"L 467.312537 267.63857 \r\n", | |
"L 468.625478 272.301532 \r\n", | |
"L 469.938419 272.344312 \r\n", | |
"L 471.25136 272.515429 \r\n", | |
"L 472.564301 271.189266 \r\n", | |
"L 476.503125 269.905882 \r\n", | |
"L 477.816066 271.70262 \r\n", | |
"L 479.129007 270.932589 \r\n", | |
"L 480.441949 271.317604 \r\n", | |
"L 481.75489 270.675912 \r\n", | |
"L 485.693713 269.392528 \r\n", | |
"L 487.006654 268.4086 \r\n", | |
"L 488.319596 268.836395 \r\n", | |
"L 489.632537 268.793616 \r\n", | |
"L 490.945478 267.59579 \r\n", | |
"L 494.884301 266.184068 \r\n", | |
"L 496.197243 266.526304 \r\n", | |
"L 497.510184 268.280262 \r\n", | |
"L 498.823125 265.841832 \r\n", | |
"L 500.136066 264.686786 \r\n", | |
"L 504.07489 266.226847 \r\n", | |
"L 509.326654 264.515669 \r\n", | |
"L 513.265478 265.542376 \r\n", | |
"L 515.89136 263.6173 \r\n", | |
"L 517.204301 261.264429 \r\n", | |
"L 518.517243 259.681589 \r\n", | |
"L 522.456066 260.622737 \r\n", | |
"L 523.769007 257.670953 \r\n", | |
"L 525.081949 258.055969 \r\n", | |
"L 527.707831 254.163037 \r\n", | |
"L 531.646654 253.478565 \r\n", | |
"L 532.959596 252.665755 \r\n", | |
"L 534.272537 250.65512 \r\n", | |
"L 535.585478 250.783459 \r\n", | |
"L 536.898419 249.115059 \r\n", | |
"L 540.837243 253.564124 \r\n", | |
"L 542.150184 252.28074 \r\n", | |
"L 543.463125 248.345029 \r\n", | |
"L 544.776066 251.895725 \r\n", | |
"L 546.089007 246.034938 \r\n", | |
"L 550.027831 248.815603 \r\n", | |
"L 551.340772 245.564363 \r\n", | |
"L 552.653713 242.61258 \r\n", | |
"L 553.966654 241.585873 \r\n", | |
"L 555.279596 238.035177 \r\n", | |
"L 559.218419 237.992397 \r\n", | |
"L 560.53136 234.099466 \r\n", | |
"L 561.844301 237.692941 \r\n", | |
"L 563.157243 235.596747 \r\n", | |
"L 564.470184 234.013907 \r\n", | |
"L 568.409007 233.457774 \r\n", | |
"L 569.721949 234.612819 \r\n", | |
"L 572.347831 230.120975 \r\n", | |
"L 574.973713 235.660916 \r\n", | |
"L 578.912537 243.682067 \r\n", | |
"L 580.225478 251.639048 \r\n", | |
"L 581.538419 254.120257 \r\n", | |
"L 582.85136 262.718931 \r\n", | |
"L 586.790184 253.692463 \r\n", | |
"L 588.103125 245.393246 \r\n", | |
"L 589.416066 252.836873 \r\n", | |
"L 590.729007 249.799531 \r\n", | |
"L 592.041949 253.435786 \r\n", | |
"L 597.293713 251.168474 \r\n", | |
"L 598.606654 249.585634 \r\n", | |
"L 599.919596 261.17887 \r\n", | |
"L 602.545478 268.223223 \r\n", | |
"L 605.17136 274.953859 \r\n", | |
"L 606.484301 273.884372 \r\n", | |
"L 607.797243 267.039657 \r\n", | |
"L 609.110184 257.713733 \r\n", | |
"L 610.423125 249.628413 \r\n", | |
"L 614.361949 265.285699 \r\n", | |
"L 616.987831 248.216691 \r\n", | |
"L 618.300772 249.542854 \r\n", | |
"L 619.613713 243.254272 \r\n", | |
"L 623.552537 242.270344 \r\n", | |
"L 624.865478 234.056686 \r\n", | |
"L 626.178419 245.393246 \r\n", | |
"L 628.804301 253.09355 \r\n", | |
"L 632.743125 246.163276 \r\n", | |
"L 634.056066 234.783937 \r\n", | |
"L 635.369007 240.17415 \r\n", | |
"L 636.681949 239.660797 \r\n", | |
"L 637.99489 237.436264 \r\n", | |
"L 641.933713 243.254272 \r\n", | |
"L 643.246654 236.751793 \r\n", | |
"L 644.559596 232.174389 \r\n", | |
"L 645.872537 229.265385 \r\n", | |
"L 647.185478 224.217408 \r\n", | |
"L 651.124301 226.826956 \r\n", | |
"L 652.437243 226.142484 \r\n", | |
"L 653.750184 226.869735 \r\n", | |
"L 655.063125 226.270823 \r\n", | |
"L 656.376066 230.463211 \r\n", | |
"L 660.31489 223.23348 \r\n", | |
"L 661.627831 223.661275 \r\n", | |
"L 662.940772 223.746834 \r\n", | |
"L 664.253713 218.656077 \r\n", | |
"L 669.505478 223.319039 \r\n", | |
"L 672.13136 213.950335 \r\n", | |
"L 673.444301 211.511906 \r\n", | |
"L 674.757243 208.688461 \r\n", | |
"L 680.009007 206.378369 \r\n", | |
"L 681.321949 211.554685 \r\n", | |
"L 682.63489 216.089309 \r\n", | |
"L 683.947831 213.907556 \r\n", | |
"L 687.886654 209.929065 \r\n", | |
"L 689.199596 208.945137 \r\n", | |
"L 690.512537 208.945137 \r\n", | |
"L 691.825478 210.570757 \r\n", | |
"L 693.138419 211.426347 \r\n", | |
"L 697.077243 205.950574 \r\n", | |
"L 698.390184 205.907795 \r\n", | |
"L 699.703125 212.068039 \r\n", | |
"L 701.016066 210.955772 \r\n", | |
"L 702.329007 212.709731 \r\n", | |
"L 706.267831 213.137525 \r\n", | |
"L 707.580772 215.404837 \r\n", | |
"L 708.893713 213.821997 \r\n", | |
"L 710.206654 212.666951 \r\n", | |
"L 711.519596 213.051966 \r\n", | |
"L 715.458419 211.041331 \r\n", | |
"L 716.77136 209.672388 \r\n", | |
"L 718.084301 204.923867 \r\n", | |
"L 719.397243 206.164472 \r\n", | |
"L 724.649007 214.592027 \r\n", | |
"L 725.961949 202.656555 \r\n", | |
"L 727.27489 200.004228 \r\n", | |
"L 728.587831 201.415951 \r\n", | |
"L 729.900772 198.079152 \r\n", | |
"L 733.839596 201.373171 \r\n", | |
"L 735.152537 196.154076 \r\n", | |
"L 737.778419 201.843745 \r\n", | |
"L 739.09136 199.105859 \r\n", | |
"L 743.030184 204.196616 \r\n", | |
"L 744.343125 196.154076 \r\n", | |
"L 746.969007 186.485916 \r\n", | |
"L 748.281949 185.031414 \r\n", | |
"L 752.220772 177.630565 \r\n", | |
"L 753.533713 176.090505 \r\n", | |
"L 754.846654 179.68398 \r\n", | |
"L 756.159596 176.133284 \r\n", | |
"L 757.472537 175.919387 \r\n", | |
"L 761.41136 171.64144 \r\n", | |
"L 762.724301 180.49679 \r\n", | |
"L 764.037243 175.876607 \r\n", | |
"L 765.350184 178.91395 \r\n", | |
"L 766.663125 177.117212 \r\n", | |
"L 770.601949 176.004946 \r\n", | |
"L 771.91489 169.459687 \r\n", | |
"L 773.227831 174.293767 \r\n", | |
"L 774.540772 171.042527 \r\n", | |
"L 775.853713 180.839026 \r\n", | |
"L 779.792537 179.726759 \r\n", | |
"L 781.105478 175.320474 \r\n", | |
"L 782.418419 175.363254 \r\n", | |
"L 783.73136 170.82863 \r\n", | |
"L 785.044301 160.176542 \r\n", | |
"L 788.983125 152.904032 \r\n", | |
"L 790.296066 149.781131 \r\n", | |
"L 791.609007 149.995028 \r\n", | |
"L 792.921949 149.182218 \r\n", | |
"L 794.23489 142.936415 \r\n", | |
"L 798.173713 146.957686 \r\n", | |
"L 799.486654 150.551161 \r\n", | |
"L 800.799596 153.374606 \r\n", | |
"L 802.112537 148.283849 \r\n", | |
"L 803.425478 149.567233 \r\n", | |
"L 807.364301 148.069952 \r\n", | |
"L 808.677243 146.358773 \r\n", | |
"L 809.990184 143.706446 \r\n", | |
"L 811.303125 142.850857 \r\n", | |
"L 812.616066 133.524932 \r\n", | |
"L 816.55489 126.765776 \r\n", | |
"L 817.867831 124.113449 \r\n", | |
"L 819.180772 116.840939 \r\n", | |
"L 820.493713 110.29568 \r\n", | |
"L 821.806654 113.204684 \r\n", | |
"L 825.745478 113.204684 \r\n", | |
"L 827.058419 119.664384 \r\n", | |
"L 828.37136 102.424258 \r\n", | |
"L 829.684301 103.279847 \r\n", | |
"L 830.997243 124.669582 \r\n", | |
"L 834.936066 125.268494 \r\n", | |
"L 836.249007 126.894114 \r\n", | |
"L 837.561949 132.455445 \r\n", | |
"L 838.87489 128.81919 \r\n", | |
"L 840.187831 137.375084 \r\n", | |
"L 844.126654 136.220039 \r\n", | |
"L 845.439596 132.07043 \r\n", | |
"L 846.752537 130.787046 \r\n", | |
"L 848.065478 142.380282 \r\n", | |
"L 849.378419 141.567472 \r\n", | |
"L 853.317243 149.438895 \r\n", | |
"L 855.943125 132.92602 \r\n", | |
"L 857.256066 140.669104 \r\n", | |
"L 858.569007 134.166624 \r\n", | |
"L 862.507831 120.263296 \r\n", | |
"L 863.820772 113.247463 \r\n", | |
"L 865.133713 118.680456 \r\n", | |
"L 866.446654 115.728673 \r\n", | |
"L 867.759596 119.493266 \r\n", | |
"L 871.698419 117.995985 \r\n", | |
"L 873.01136 113.760817 \r\n", | |
"L 874.324301 117.867646 \r\n", | |
"L 875.637243 113.461361 \r\n", | |
"L 876.950184 114.402509 \r\n", | |
"L 880.889007 107.643353 \r\n", | |
"L 882.201949 98.745223 \r\n", | |
"L 883.51489 97.846854 \r\n", | |
"L 884.827831 103.83598 \r\n", | |
"L 886.140772 98.916341 \r\n", | |
"L 890.079596 99.81471 \r\n", | |
"L 891.392537 106.317189 \r\n", | |
"L 892.705478 110.338459 \r\n", | |
"L 894.018419 112.862448 \r\n", | |
"L 895.33136 114.616406 \r\n", | |
"L 899.270184 119.236589 \r\n", | |
"L 900.583125 119.108251 \r\n", | |
"L 901.896066 117.397072 \r\n", | |
"L 903.209007 119.15103 \r\n", | |
"L 904.521949 122.787285 \r\n", | |
"L 908.460772 116.242026 \r\n", | |
"L 909.773713 118.295441 \r\n", | |
"L 912.399596 97.333501 \r\n", | |
"L 913.712537 101.568668 \r\n", | |
"L 917.65136 93.911143 \r\n", | |
"L 918.964301 110.509577 \r\n", | |
"L 920.277243 109.183414 \r\n", | |
"L 921.590184 103.365406 \r\n", | |
"L 922.903125 103.365406 \r\n", | |
"L 922.903125 103.365406 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <path clip-path=\"url(#p45e8575026)\" d=\"M 30.103125 335.476295 \r\n", | |
"L 36.667831 330.792108 \r\n", | |
"L 37.980772 329.598965 \r\n", | |
"L 39.293713 327.831347 \r\n", | |
"L 40.606654 326.328872 \r\n", | |
"L 44.545478 326.991729 \r\n", | |
"L 45.858419 325.710206 \r\n", | |
"L 48.484301 326.859157 \r\n", | |
"L 49.797243 321.512113 \r\n", | |
"L 55.049007 321.114399 \r\n", | |
"L 56.361949 320.186399 \r\n", | |
"L 57.67489 318.242019 \r\n", | |
"L 58.987831 314.662593 \r\n", | |
"L 62.926654 310.597071 \r\n", | |
"L 64.239596 309.801643 \r\n", | |
"L 65.552537 311.790213 \r\n", | |
"L 66.865478 307.857263 \r\n", | |
"L 68.178419 307.980997 \r\n", | |
"L 72.117243 306.885073 \r\n", | |
"L 73.430184 303.950827 \r\n", | |
"L 74.743125 303.738713 \r\n", | |
"L 76.056066 307.150216 \r\n", | |
"L 77.369007 310.950595 \r\n", | |
"L 81.307831 307.044159 \r\n", | |
"L 82.620772 305.453303 \r\n", | |
"L 85.246654 304.198294 \r\n", | |
"L 86.559596 302.183209 \r\n", | |
"L 90.498419 312.134899 \r\n", | |
"L 91.81136 313.071737 \r\n", | |
"L 93.124301 310.2789 \r\n", | |
"L 94.437243 313.283851 \r\n", | |
"L 95.750184 315.192878 \r\n", | |
"L 99.689007 307.539092 \r\n", | |
"L 101.001949 308.811777 \r\n", | |
"L 102.31489 309.695586 \r\n", | |
"L 103.627831 309.395091 \r\n", | |
"L 104.940772 303.61498 \r\n", | |
"L 108.879596 299.567135 \r\n", | |
"L 110.192537 297.870221 \r\n", | |
"L 111.505478 292.001729 \r\n", | |
"L 112.818419 294.617804 \r\n", | |
"L 118.070184 294.564776 \r\n", | |
"L 119.383125 293.009272 \r\n", | |
"L 120.696066 294.370338 \r\n", | |
"L 122.009007 295.961194 \r\n", | |
"L 123.321949 294.829918 \r\n", | |
"L 127.260772 294.547099 \r\n", | |
"L 128.573713 296.226337 \r\n", | |
"L 129.886654 297.410641 \r\n", | |
"L 131.199596 297.852545 \r\n", | |
"L 132.512537 299.567135 \r\n", | |
"L 136.45136 300.433267 \r\n", | |
"L 137.764301 297.499022 \r\n", | |
"L 139.077243 299.26664 \r\n", | |
"L 140.390184 299.284316 \r\n", | |
"L 141.703125 297.693459 \r\n", | |
"L 145.641949 302.183209 \r\n", | |
"L 146.95489 304.604846 \r\n", | |
"L 148.267831 301.334753 \r\n", | |
"L 150.893713 299.690868 \r\n", | |
"L 154.832537 298.594945 \r\n", | |
"L 156.145478 296.774298 \r\n", | |
"L 157.458419 296.014222 \r\n", | |
"L 158.77136 289.102836 \r\n", | |
"L 160.084301 286.221618 \r\n", | |
"L 164.023125 283.128287 \r\n", | |
"L 165.336066 281.272288 \r\n", | |
"L 166.649007 282.704058 \r\n", | |
"L 167.961949 288.996779 \r\n", | |
"L 170.587831 288.937858 \r\n", | |
"L 173.213713 288.784664 \r\n", | |
"L 174.526654 289.226569 \r\n", | |
"L 175.839596 288.926074 \r\n", | |
"L 177.152537 289.226569 \r\n", | |
"L 178.465478 290.622987 \r\n", | |
"L 182.404301 290.021997 \r\n", | |
"L 183.717243 290.428549 \r\n", | |
"L 186.343125 284.966609 \r\n", | |
"L 187.656066 288.696284 \r\n", | |
"L 191.59489 291.170949 \r\n", | |
"L 192.907831 290.357845 \r\n", | |
"L 194.220772 292.266872 \r\n", | |
"L 196.846654 293.309767 \r\n", | |
"L 200.785478 296.491479 \r\n", | |
"L 202.098419 298.877764 \r\n", | |
"L 203.41136 300.079744 \r\n", | |
"L 204.724301 293.009272 \r\n", | |
"L 206.037243 289.703826 \r\n", | |
"L 209.976066 288.024589 \r\n", | |
"L 211.289007 290.410873 \r\n", | |
"L 212.601949 289.261921 \r\n", | |
"L 213.91489 290.729044 \r\n", | |
"L 215.227831 291.330034 \r\n", | |
"L 219.166654 289.527064 \r\n", | |
"L 220.479596 298.064659 \r\n", | |
"L 221.792537 296.898031 \r\n", | |
"L 223.105478 293.009272 \r\n", | |
"L 224.418419 294.564776 \r\n", | |
"L 228.357243 296.632889 \r\n", | |
"L 229.670184 297.481345 \r\n", | |
"L 230.983125 294.105195 \r\n", | |
"L 232.296066 291.984053 \r\n", | |
"L 233.609007 288.165998 \r\n", | |
"L 237.547831 287.441275 \r\n", | |
"L 238.860772 283.075258 \r\n", | |
"L 241.486654 281.325316 \r\n", | |
"L 242.799596 283.075258 \r\n", | |
"L 246.738419 284.012096 \r\n", | |
"L 248.05136 282.633354 \r\n", | |
"L 249.364301 282.032364 \r\n", | |
"L 250.677243 280.388479 \r\n", | |
"L 251.990184 283.25202 \r\n", | |
"L 255.929007 283.817658 \r\n", | |
"L 258.55489 289.54474 \r\n", | |
"L 259.867831 290.128054 \r\n", | |
"L 261.180772 288.077617 \r\n", | |
"L 265.119596 284.507029 \r\n", | |
"L 267.745478 280.070307 \r\n", | |
"L 269.058419 282.05004 \r\n", | |
"L 270.37136 282.686382 \r\n", | |
"L 274.310184 283.039906 \r\n", | |
"L 275.623125 284.347943 \r\n", | |
"L 276.936066 280.33545 \r\n", | |
"L 278.249007 280.353126 \r\n", | |
"L 279.561949 276.570424 \r\n", | |
"L 283.500772 276.252252 \r\n", | |
"L 284.813713 276.941624 \r\n", | |
"L 286.126654 278.39107 \r\n", | |
"L 287.439596 281.749545 \r\n", | |
"L 288.752537 278.709242 \r\n", | |
"L 292.69136 282.332859 \r\n", | |
"L 294.004301 281.289964 \r\n", | |
"L 295.317243 281.060174 \r\n", | |
"L 296.630184 282.262154 \r\n", | |
"L 297.943125 276.835566 \r\n", | |
"L 301.881949 286.734228 \r\n", | |
"L 303.19489 280.141012 \r\n", | |
"L 304.507831 282.827792 \r\n", | |
"L 305.820772 278.196632 \r\n", | |
"L 307.133713 282.774763 \r\n", | |
"L 311.072537 289.986645 \r\n", | |
"L 312.385478 288.360436 \r\n", | |
"L 313.698419 288.289731 \r\n", | |
"L 316.324301 288.590227 \r\n", | |
"L 320.263125 288.590227 \r\n", | |
"L 321.576066 288.71396 \r\n", | |
"L 322.889007 290.14573 \r\n", | |
"L 324.201949 292.355253 \r\n", | |
"L 325.51489 291.206301 \r\n", | |
"L 329.453713 286.981694 \r\n", | |
"L 330.766654 286.363028 \r\n", | |
"L 332.079596 287.246837 \r\n", | |
"L 333.392537 289.615445 \r\n", | |
"L 334.705478 289.456359 \r\n", | |
"L 338.644301 290.481578 \r\n", | |
"L 339.957243 288.11297 \r\n", | |
"L 341.270184 287.883179 \r\n", | |
"L 342.583125 287.282189 \r\n", | |
"L 343.896066 284.630762 \r\n", | |
"L 349.147831 283.039906 \r\n", | |
"L 350.460772 282.120744 \r\n", | |
"L 351.773713 280.989469 \r\n", | |
"L 353.086654 280.211717 \r\n", | |
"L 357.025478 282.544973 \r\n", | |
"L 358.338419 285.072667 \r\n", | |
"L 359.65136 283.764629 \r\n", | |
"L 360.964301 284.171181 \r\n", | |
"L 362.277243 285.709009 \r\n", | |
"L 366.216066 286.345352 \r\n", | |
"L 367.529007 285.974152 \r\n", | |
"L 368.841949 286.150914 \r\n", | |
"L 370.15489 288.643255 \r\n", | |
"L 371.467831 292.072434 \r\n", | |
"L 375.406654 295.925841 \r\n", | |
"L 378.032537 297.940926 \r\n", | |
"L 379.345478 295.165766 \r\n", | |
"L 380.658419 296.668241 \r\n", | |
"L 384.597243 300.592353 \r\n", | |
"L 385.910184 299.160582 \r\n", | |
"L 387.223125 302.165533 \r\n", | |
"L 388.536066 304.392732 \r\n", | |
"L 389.849007 301.264048 \r\n", | |
"L 393.787831 300.150449 \r\n", | |
"L 395.100772 299.956011 \r\n", | |
"L 396.413713 297.32226 \r\n", | |
"L 397.726654 297.728812 \r\n", | |
"L 399.039596 326.028377 \r\n", | |
"L 402.978419 327.230357 \r\n", | |
"L 404.29136 326.328872 \r\n", | |
"L 405.604301 327.831347 \r\n", | |
"L 406.917243 331.631726 \r\n", | |
"L 408.230184 329.687346 \r\n", | |
"L 412.169007 318.303886 \r\n", | |
"L 413.481949 318.233181 \r\n", | |
"L 414.79489 320.513409 \r\n", | |
"L 417.420772 316.34183 \r\n", | |
"L 421.359596 316.271125 \r\n", | |
"L 422.672537 313.672727 \r\n", | |
"L 423.985478 311.763699 \r\n", | |
"L 426.61136 313.160117 \r\n", | |
"L 431.863125 310.6501 \r\n", | |
"L 433.176066 308.511282 \r\n", | |
"L 434.489007 308.511282 \r\n", | |
"L 435.801949 310.844538 \r\n", | |
"L 441.053713 309.147625 \r\n", | |
"L 442.366654 309.766291 \r\n", | |
"L 443.679596 308.953187 \r\n", | |
"L 444.992537 305.099779 \r\n", | |
"L 448.93136 285.620628 \r\n", | |
"L 450.244301 280.370803 \r\n", | |
"L 451.557243 281.749545 \r\n", | |
"L 452.870184 277.489585 \r\n", | |
"L 454.183125 276.057814 \r\n", | |
"L 458.121949 272.69934 \r\n", | |
"L 460.747831 266.40662 \r\n", | |
"L 462.060772 269.835799 \r\n", | |
"L 463.373713 267.219724 \r\n", | |
"L 467.312537 264.515269 \r\n", | |
"L 468.625478 270.489818 \r\n", | |
"L 469.938419 270.914046 \r\n", | |
"L 471.25136 274.732101 \r\n", | |
"L 472.564301 274.820482 \r\n", | |
"L 476.503125 273.636178 \r\n", | |
"L 477.816066 275.227034 \r\n", | |
"L 479.129007 273.264978 \r\n", | |
"L 480.441949 269.959532 \r\n", | |
"L 481.75489 269.729742 \r\n", | |
"L 485.693713 263.772869 \r\n", | |
"L 487.006654 266.03542 \r\n", | |
"L 488.319596 269.164104 \r\n", | |
"L 489.632537 268.881285 \r\n", | |
"L 490.945478 265.770277 \r\n", | |
"L 494.884301 263.949631 \r\n", | |
"L 496.197243 263.755193 \r\n", | |
"L 497.510184 265.06323 \r\n", | |
"L 498.823125 263.030469 \r\n", | |
"L 500.136066 260.131576 \r\n", | |
"L 504.07489 262.783003 \r\n", | |
"L 509.326654 263.613783 \r\n", | |
"L 513.265478 266.247534 \r\n", | |
"L 515.89136 265.558163 \r\n", | |
"L 517.204301 261.987575 \r\n", | |
"L 518.517243 260.608833 \r\n", | |
"L 522.456066 262.14666 \r\n", | |
"L 523.769007 262.164337 \r\n", | |
"L 525.081949 264.621326 \r\n", | |
"L 526.39489 257.462473 \r\n", | |
"L 527.707831 258.593748 \r\n", | |
"L 531.646654 254.05097 \r\n", | |
"L 532.959596 256.472606 \r\n", | |
"L 534.272537 258.452339 \r\n", | |
"L 535.585478 254.987807 \r\n", | |
"L 536.898419 254.987807 \r\n", | |
"L 540.837243 257.409444 \r\n", | |
"L 542.150184 254.970131 \r\n", | |
"L 543.463125 249.737982 \r\n", | |
"L 544.776066 246.697679 \r\n", | |
"L 546.089007 246.503241 \r\n", | |
"L 550.027831 246.821412 \r\n", | |
"L 552.653713 233.334486 \r\n", | |
"L 553.966654 232.521382 \r\n", | |
"L 555.279596 229.976012 \r\n", | |
"L 559.218419 227.395289 \r\n", | |
"L 560.53136 228.155365 \r\n", | |
"L 561.844301 231.513839 \r\n", | |
"L 563.157243 230.842145 \r\n", | |
"L 564.470184 235.561685 \r\n", | |
"L 568.409007 239.733263 \r\n", | |
"L 569.721949 241.447853 \r\n", | |
"L 571.03489 241.218063 \r\n", | |
"L 572.347831 239.273683 \r\n", | |
"L 573.660772 241.200386 \r\n", | |
"L 578.912537 256.702397 \r\n", | |
"L 580.225478 268.492409 \r\n", | |
"L 581.538419 265.186963 \r\n", | |
"L 582.85136 271.638769 \r\n", | |
"L 588.103125 259.689671 \r\n", | |
"L 589.416066 265.823306 \r\n", | |
"L 590.729007 263.525402 \r\n", | |
"L 592.041949 268.81058 \r\n", | |
"L 597.293713 267.555572 \r\n", | |
"L 598.606654 273.406387 \r\n", | |
"L 599.919596 283.711601 \r\n", | |
"L 601.232537 279.628403 \r\n", | |
"L 605.17136 295.678375 \r\n", | |
"L 606.484301 294.458718 \r\n", | |
"L 607.797243 296.367746 \r\n", | |
"L 609.110184 294.529423 \r\n", | |
"L 610.423125 281.272288 \r\n", | |
"L 614.361949 292.23152 \r\n", | |
"L 615.67489 287.653389 \r\n", | |
"L 616.987831 277.383528 \r\n", | |
"L 618.300772 273.972025 \r\n", | |
"L 619.613713 271.956941 \r\n", | |
"L 623.552537 268.81058 \r\n", | |
"L 624.865478 263.048146 \r\n", | |
"L 626.178419 269.075723 \r\n", | |
"L 627.49136 274.449282 \r\n", | |
"L 628.804301 276.888595 \r\n", | |
"L 632.743125 274.290196 \r\n", | |
"L 634.056066 267.820714 \r\n", | |
"L 635.369007 266.300563 \r\n", | |
"L 636.681949 263.277936 \r\n", | |
"L 639.307831 265.281236 \r\n", | |
"L 641.933713 267.414162 \r\n", | |
"L 643.246654 260.820947 \r\n", | |
"L 644.559596 268.510085 \r\n", | |
"L 645.872537 269.853475 \r\n", | |
"L 647.185478 267.9798 \r\n", | |
"L 651.124301 263.383993 \r\n", | |
"L 652.437243 267.431838 \r\n", | |
"L 653.750184 266.159153 \r\n", | |
"L 656.376066 269.747418 \r\n", | |
"L 660.31489 265.06323 \r\n", | |
"L 661.627831 256.401902 \r\n", | |
"L 662.940772 251.876799 \r\n", | |
"L 664.253713 248.801144 \r\n", | |
"L 669.505478 253.485332 \r\n", | |
"L 670.818419 249.93242 \r\n", | |
"L 672.13136 249.649601 \r\n", | |
"L 673.444301 246.856764 \r\n", | |
"L 674.757243 239.874673 \r\n", | |
"L 680.009007 240.564044 \r\n", | |
"L 681.321949 244.223013 \r\n", | |
"L 682.63489 251.470247 \r\n", | |
"L 683.947831 250.091505 \r\n", | |
"L 687.886654 244.611889 \r\n", | |
"L 689.199596 241.076653 \r\n", | |
"L 690.512537 238.743397 \r\n", | |
"L 691.825478 242.8973 \r\n", | |
"L 693.138419 244.877032 \r\n", | |
"L 698.390184 240.970596 \r\n", | |
"L 699.703125 247.457754 \r\n", | |
"L 701.016066 246.839088 \r\n", | |
"L 702.329007 250.674819 \r\n", | |
"L 706.267831 250.816229 \r\n", | |
"L 707.580772 250.409676 \r\n", | |
"L 708.893713 249.455163 \r\n", | |
"L 710.206654 248.924877 \r\n", | |
"L 711.519596 247.758249 \r\n", | |
"L 715.458419 245.937603 \r\n", | |
"L 716.77136 247.192612 \r\n", | |
"L 718.084301 246.167393 \r\n", | |
"L 719.397243 250.515734 \r\n", | |
"L 724.649007 244.647242 \r\n", | |
"L 725.961949 236.144999 \r\n", | |
"L 727.27489 232.097153 \r\n", | |
"L 728.587831 230.382564 \r\n", | |
"L 729.900772 223.400473 \r\n", | |
"L 733.839596 218.963751 \r\n", | |
"L 735.152537 208.181281 \r\n", | |
"L 737.778419 197.098316 \r\n", | |
"L 739.09136 195.613517 \r\n", | |
"L 743.030184 199.449248 \r\n", | |
"L 744.343125 194.641327 \r\n", | |
"L 746.969007 187.889026 \r\n", | |
"L 748.281949 188.419311 \r\n", | |
"L 752.220772 179.846364 \r\n", | |
"L 753.533713 182.480115 \r\n", | |
"L 754.846654 184.81337 \r\n", | |
"L 756.159596 182.939695 \r\n", | |
"L 757.472537 179.881716 \r\n", | |
"L 761.41136 176.94747 \r\n", | |
"L 762.724301 178.874174 \r\n", | |
"L 764.037243 162.859554 \r\n", | |
"L 765.350184 162.912583 \r\n", | |
"L 766.663125 156.390072 \r\n", | |
"L 770.601949 152.147789 \r\n", | |
"L 771.91489 144.688441 \r\n", | |
"L 773.227831 151.034189 \r\n", | |
"L 774.540772 146.756554 \r\n", | |
"L 775.853713 148.700934 \r\n", | |
"L 779.792537 141.595109 \r\n", | |
"L 781.105478 141.736518 \r\n", | |
"L 782.418419 133.358009 \r\n", | |
"L 783.73136 135.443798 \r\n", | |
"L 785.044301 128.938964 \r\n", | |
"L 788.983125 122.257367 \r\n", | |
"L 790.296066 120.913978 \r\n", | |
"L 791.609007 118.828188 \r\n", | |
"L 792.921949 114.603581 \r\n", | |
"L 794.23489 113.631391 \r\n", | |
"L 798.173713 124.732033 \r\n", | |
"L 799.486654 127.224374 \r\n", | |
"L 800.799596 125.138585 \r\n", | |
"L 802.112537 107.709871 \r\n", | |
"L 803.425478 111.934478 \r\n", | |
"L 807.364301 105.323586 \r\n", | |
"L 808.677243 104.015549 \r\n", | |
"L 809.990184 98.500581 \r\n", | |
"L 812.616066 79.746153 \r\n", | |
"L 816.55489 75.715984 \r\n", | |
"L 817.867831 63.201248 \r\n", | |
"L 819.180772 58.88826 \r\n", | |
"L 820.493713 68.398045 \r\n", | |
"L 821.806654 73.170614 \r\n", | |
"L 825.745478 50.156227 \r\n", | |
"L 827.058419 52.949063 \r\n", | |
"L 828.37136 56.908528 \r\n", | |
"L 829.684301 61.43363 \r\n", | |
"L 830.997243 70.077282 \r\n", | |
"L 834.936066 67.938464 \r\n", | |
"L 836.249007 76.370003 \r\n", | |
"L 837.561949 86.127254 \r\n", | |
"L 838.87489 89.185234 \r\n", | |
"L 840.187831 91.536166 \r\n", | |
"L 844.126654 85.473236 \r\n", | |
"L 845.439596 82.927866 \r\n", | |
"L 846.752537 90.546299 \r\n", | |
"L 848.065478 100.091437 \r\n", | |
"L 849.378419 95.371897 \r\n", | |
"L 853.317243 101.487855 \r\n", | |
"L 854.630184 89.079176 \r\n", | |
"L 855.943125 38.967205 \r\n", | |
"L 857.256066 70.41313 \r\n", | |
"L 858.569007 74.602385 \r\n", | |
"L 862.507831 55.282319 \r\n", | |
"L 863.820772 55.388376 \r\n", | |
"L 865.133713 54.504567 \r\n", | |
"L 866.446654 59.11805 \r\n", | |
"L 867.759596 67.443531 \r\n", | |
"L 873.01136 64.845133 \r\n", | |
"L 874.324301 76.529088 \r\n", | |
"L 876.950184 87.665082 \r\n", | |
"L 880.889007 81.849619 \r\n", | |
"L 882.201949 76.811907 \r\n", | |
"L 883.51489 75.114994 \r\n", | |
"L 886.140772 92.861879 \r\n", | |
"L 890.079596 103.043359 \r\n", | |
"L 891.392537 111.421869 \r\n", | |
"L 892.705478 116.494933 \r\n", | |
"L 894.018419 109.495165 \r\n", | |
"L 895.33136 106.2781 \r\n", | |
"L 899.270184 105.800843 \r\n", | |
"L 900.583125 100.038408 \r\n", | |
"L 901.896066 99.472771 \r\n", | |
"L 903.209007 93.957802 \r\n", | |
"L 904.521949 99.684885 \r\n", | |
"L 908.460772 94.15224 \r\n", | |
"L 909.773713 97.051134 \r\n", | |
"L 912.399596 78.862344 \r\n", | |
"L 913.712537 73.152938 \r\n", | |
"L 917.65136 59.807421 \r\n", | |
"L 918.964301 75.026613 \r\n", | |
"L 920.277243 83.670265 \r\n", | |
"L 921.590184 82.680399 \r\n", | |
"L 922.903125 82.680399 \r\n", | |
"L 922.903125 82.680399 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 922.903125 350.30175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 30.103125 24.14175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- FXIT & YNDX -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 51.703125 72.90625 \r\n", | |
"L 51.703125 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.109375 \r\n", | |
"L 48.578125 43.109375 \r\n", | |
"L 48.578125 34.8125 \r\n", | |
"L 19.671875 34.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-70\"/>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-73\"/>\r\n", | |
" <path id=\"DejaVuSans-32\"/>\r\n", | |
" <path d=\"M 24.3125 39.203125 \r\n", | |
"Q 19.875 35.25 17.796875 31.3125 \r\n", | |
"Q 15.71875 27.390625 15.71875 23.09375 \r\n", | |
"Q 15.71875 15.96875 20.890625 11.234375 \r\n", | |
"Q 26.078125 6.5 33.890625 6.5 \r\n", | |
"Q 38.53125 6.5 42.578125 8.03125 \r\n", | |
"Q 46.625 9.578125 50.203125 12.703125 \r\n", | |
"z\r\n", | |
"M 31.203125 44.671875 \r\n", | |
"L 56 19.28125 \r\n", | |
"Q 58.890625 23.640625 60.5 28.59375 \r\n", | |
"Q 62.109375 33.546875 62.40625 39.109375 \r\n", | |
"L 71.484375 39.109375 \r\n", | |
"Q 70.90625 32.671875 68.359375 26.359375 \r\n", | |
"Q 65.828125 20.0625 61.28125 13.921875 \r\n", | |
"L 74.90625 0 \r\n", | |
"L 62.59375 0 \r\n", | |
"L 55.609375 7.171875 \r\n", | |
"Q 50.53125 2.828125 44.96875 0.703125 \r\n", | |
"Q 39.40625 -1.421875 33.015625 -1.421875 \r\n", | |
"Q 21.234375 -1.421875 13.765625 5.296875 \r\n", | |
"Q 6.296875 12.015625 6.296875 22.515625 \r\n", | |
"Q 6.296875 28.765625 9.5625 34.25 \r\n", | |
"Q 12.84375 39.75 19.390625 44.578125 \r\n", | |
"Q 17.046875 47.65625 15.8125 50.703125 \r\n", | |
"Q 14.59375 53.765625 14.59375 56.6875 \r\n", | |
"Q 14.59375 64.59375 20.015625 69.40625 \r\n", | |
"Q 25.4375 74.21875 34.421875 74.21875 \r\n", | |
"Q 38.484375 74.21875 42.5 73.34375 \r\n", | |
"Q 46.53125 72.46875 50.6875 70.703125 \r\n", | |
"L 50.6875 61.8125 \r\n", | |
"Q 46.4375 64.109375 42.578125 65.296875 \r\n", | |
"Q 38.71875 66.5 35.40625 66.5 \r\n", | |
"Q 30.28125 66.5 27.078125 63.78125 \r\n", | |
"Q 23.875 61.078125 23.875 56.78125 \r\n", | |
"Q 23.875 54.296875 25.3125 51.78125 \r\n", | |
"Q 26.765625 49.265625 31.203125 44.671875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-38\"/>\r\n", | |
" <path d=\"M -0.203125 72.90625 \r\n", | |
"L 10.40625 72.90625 \r\n", | |
"L 30.609375 42.921875 \r\n", | |
"L 50.6875 72.90625 \r\n", | |
"L 61.28125 72.90625 \r\n", | |
"L 35.5 34.71875 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 34.71875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-89\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(430.456875 18.14175)scale(0.144 -0.144)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"155.517578\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"216.601562\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"248.388672\" xlink:href=\"#DejaVuSans-38\"/>\r\n", | |
" <use x=\"326.367188\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"358.154297\" xlink:href=\"#DejaVuSans-89\"/>\r\n", | |
" <use x=\"419.238281\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"494.042969\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"571.044922\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 37.103125 61.498 \r\n", | |
"L 97.242188 61.498 \r\n", | |
"Q 99.242188 61.498 99.242188 59.498 \r\n", | |
"L 99.242188 31.14175 \r\n", | |
"Q 99.242188 29.14175 97.242188 29.14175 \r\n", | |
"L 37.103125 29.14175 \r\n", | |
"Q 35.103125 29.14175 35.103125 31.14175 \r\n", | |
"L 35.103125 59.498 \r\n", | |
"Q 35.103125 61.498 37.103125 61.498 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <path d=\"M 39.103125 37.240187 \r\n", | |
"L 59.103125 37.240187 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_51\"/>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- FXIT -->\r\n", | |
" <g transform=\"translate(67.103125 40.740187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"155.517578\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <path d=\"M 39.103125 51.918312 \r\n", | |
"L 59.103125 51.918312 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_53\"/>\r\n", | |
" <g id=\"text_18\">\r\n", | |
" <!-- YNDX -->\r\n", | |
" <g transform=\"translate(67.103125 55.418312)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-89\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"135.888672\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"212.890625\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"p45e8575026\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"30.103125\" y=\"24.14175\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"400.991437pt\" version=\"1.1\" viewBox=\"0 0 930.103125 400.991437\" width=\"930.103125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 400.991437 \r\n", | |
"L 930.103125 400.991437 \r\n", | |
"L 930.103125 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 350.30175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m74510dcf60\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 80.194214 350.30175 \r\n", | |
"L 80.194214 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"80.194214\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Feb -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 51.703125 72.90625 \r\n", | |
"L 51.703125 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.109375 \r\n", | |
"L 48.578125 43.109375 \r\n", | |
"L 48.578125 34.8125 \r\n", | |
"L 19.671875 34.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-70\"/>\r\n", | |
" <path d=\"M 56.203125 29.59375 \r\n", | |
"L 56.203125 25.203125 \r\n", | |
"L 14.890625 25.203125 \r\n", | |
"Q 15.484375 15.921875 20.484375 11.0625 \r\n", | |
"Q 25.484375 6.203125 34.421875 6.203125 \r\n", | |
"Q 39.59375 6.203125 44.453125 7.46875 \r\n", | |
"Q 49.3125 8.734375 54.109375 11.28125 \r\n", | |
"L 54.109375 2.78125 \r\n", | |
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n", | |
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n", | |
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n", | |
"Q 5.515625 13.8125 5.515625 26.8125 \r\n", | |
"Q 5.515625 40.234375 12.765625 48.109375 \r\n", | |
"Q 20.015625 56 32.328125 56 \r\n", | |
"Q 43.359375 56 49.78125 48.890625 \r\n", | |
"Q 56.203125 41.796875 56.203125 29.59375 \r\n", | |
"z\r\n", | |
"M 47.21875 32.234375 \r\n", | |
"Q 47.125 39.59375 43.09375 43.984375 \r\n", | |
"Q 39.0625 48.390625 32.421875 48.390625 \r\n", | |
"Q 24.90625 48.390625 20.390625 44.140625 \r\n", | |
"Q 15.875 39.890625 15.1875 32.171875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-101\"/>\r\n", | |
" <path d=\"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"M 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 75.984375 \r\n", | |
"L 18.109375 75.984375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-98\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(71.071558 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.441406\" xlink:href=\"#DejaVuSans-101\"/>\r\n", | |
" <use x=\"118.964844\" xlink:href=\"#DejaVuSans-98\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(67.469214 376.098)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 165.643719 350.30175 \r\n", | |
"L 165.643719 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"165.643719\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Mar -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 24.515625 72.90625 \r\n", | |
"L 43.109375 23.296875 \r\n", | |
"L 61.8125 72.90625 \r\n", | |
"L 76.515625 72.90625 \r\n", | |
"L 76.515625 0 \r\n", | |
"L 66.890625 0 \r\n", | |
"L 66.890625 64.015625 \r\n", | |
"L 48.09375 14.015625 \r\n", | |
"L 38.1875 14.015625 \r\n", | |
"L 19.390625 64.015625 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-77\"/>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 41.109375 46.296875 \r\n", | |
"Q 39.59375 47.171875 37.8125 47.578125 \r\n", | |
"Q 36.03125 48 33.890625 48 \r\n", | |
"Q 26.265625 48 22.1875 43.046875 \r\n", | |
"Q 18.109375 38.09375 18.109375 28.8125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 20.953125 51.171875 25.484375 53.578125 \r\n", | |
"Q 30.03125 56 36.53125 56 \r\n", | |
"Q 37.453125 56 38.578125 55.875 \r\n", | |
"Q 39.703125 55.765625 41.0625 55.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-114\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(156.210125 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-77\"/>\r\n", | |
" <use x=\"86.279297\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"147.558594\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 256.986293 350.30175 \r\n", | |
"L 256.986293 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"256.986293\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(248.336293 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 345.382333 350.30175 \r\n", | |
"L 345.382333 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"345.382333\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- May -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 32.171875 -5.078125 \r\n", | |
"Q 28.375 -14.84375 24.75 -17.8125 \r\n", | |
"Q 21.140625 -20.796875 15.09375 -20.796875 \r\n", | |
"L 7.90625 -20.796875 \r\n", | |
"L 7.90625 -13.28125 \r\n", | |
"L 13.1875 -13.28125 \r\n", | |
"Q 16.890625 -13.28125 18.9375 -11.515625 \r\n", | |
"Q 21 -9.765625 23.484375 -3.21875 \r\n", | |
"L 25.09375 0.875 \r\n", | |
"L 2.984375 54.6875 \r\n", | |
"L 12.5 54.6875 \r\n", | |
"L 29.59375 11.921875 \r\n", | |
"L 46.6875 54.6875 \r\n", | |
"L 56.203125 54.6875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-121\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(335.044833 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-77\"/>\r\n", | |
" <use x=\"86.279297\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"147.558594\" xlink:href=\"#DejaVuSans-121\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 436.724907 350.30175 \r\n", | |
"L 436.724907 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"436.724907\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- Jun -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-110\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(428.912407 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 525.120947 350.30175 \r\n", | |
"L 525.120947 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"525.120947\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(519.088134 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 616.463521 350.30175 \r\n", | |
"L 616.463521 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"616.463521\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- Aug -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 45.40625 27.984375 \r\n", | |
"Q 45.40625 37.75 41.375 43.109375 \r\n", | |
"Q 37.359375 48.484375 30.078125 48.484375 \r\n", | |
"Q 22.859375 48.484375 18.828125 43.109375 \r\n", | |
"Q 14.796875 37.75 14.796875 27.984375 \r\n", | |
"Q 14.796875 18.265625 18.828125 12.890625 \r\n", | |
"Q 22.859375 7.515625 30.078125 7.515625 \r\n", | |
"Q 37.359375 7.515625 41.375 12.890625 \r\n", | |
"Q 45.40625 18.265625 45.40625 27.984375 \r\n", | |
"z\r\n", | |
"M 54.390625 6.78125 \r\n", | |
"Q 54.390625 -7.171875 48.1875 -13.984375 \r\n", | |
"Q 42 -20.796875 29.203125 -20.796875 \r\n", | |
"Q 24.46875 -20.796875 20.265625 -20.09375 \r\n", | |
"Q 16.0625 -19.390625 12.109375 -17.921875 \r\n", | |
"L 12.109375 -9.1875 \r\n", | |
"Q 16.0625 -11.328125 19.921875 -12.34375 \r\n", | |
"Q 23.78125 -13.375 27.78125 -13.375 \r\n", | |
"Q 36.625 -13.375 41.015625 -8.765625 \r\n", | |
"Q 45.40625 -4.15625 45.40625 5.171875 \r\n", | |
"L 45.40625 9.625 \r\n", | |
"Q 42.625 4.78125 38.28125 2.390625 \r\n", | |
"Q 33.9375 0 27.875 0 \r\n", | |
"Q 17.828125 0 11.671875 7.65625 \r\n", | |
"Q 5.515625 15.328125 5.515625 27.984375 \r\n", | |
"Q 5.515625 40.671875 11.671875 48.328125 \r\n", | |
"Q 17.828125 56 27.875 56 \r\n", | |
"Q 33.9375 56 38.28125 53.609375 \r\n", | |
"Q 42.625 51.21875 45.40625 46.390625 \r\n", | |
"L 45.40625 54.6875 \r\n", | |
"L 54.390625 54.6875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-103\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(606.70024 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"131.787109\" xlink:href=\"#DejaVuSans-103\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 707.806095 350.30175 \r\n", | |
"L 707.806095 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"707.806095\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- Sep -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(698.381095 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-101\"/>\r\n", | |
" <use x=\"125\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 796.202135 350.30175 \r\n", | |
"L 796.202135 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"796.202135\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(787.556822 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 887.544709 350.30175 \r\n", | |
"L 887.544709 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"887.544709\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- Nov -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" <path d=\"M 30.609375 48.390625 \r\n", | |
"Q 23.390625 48.390625 19.1875 42.75 \r\n", | |
"Q 14.984375 37.109375 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.484375 19.15625 11.84375 \r\n", | |
"Q 23.34375 6.203125 30.609375 6.203125 \r\n", | |
"Q 37.796875 6.203125 41.984375 11.859375 \r\n", | |
"Q 46.1875 17.53125 46.1875 27.296875 \r\n", | |
"Q 46.1875 37.015625 41.984375 42.703125 \r\n", | |
"Q 37.796875 48.390625 30.609375 48.390625 \r\n", | |
"z\r\n", | |
"M 30.609375 56 \r\n", | |
"Q 42.328125 56 49.015625 48.375 \r\n", | |
"Q 55.71875 40.765625 55.71875 27.296875 \r\n", | |
"Q 55.71875 13.875 49.015625 6.21875 \r\n", | |
"Q 42.328125 -1.421875 30.609375 -1.421875 \r\n", | |
"Q 18.84375 -1.421875 12.171875 6.21875 \r\n", | |
"Q 5.515625 13.875 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.765625 12.171875 48.375 \r\n", | |
"Q 18.84375 56 30.609375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-111\"/>\r\n", | |
" <path d=\"M 2.984375 54.6875 \r\n", | |
"L 12.5 54.6875 \r\n", | |
"L 29.59375 8.796875 \r\n", | |
"L 46.6875 54.6875 \r\n", | |
"L 56.203125 54.6875 \r\n", | |
"L 35.6875 0 \r\n", | |
"L 23.484375 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-118\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(877.785334 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"74.804688\" xlink:href=\"#DejaVuSans-111\"/>\r\n", | |
" <use x=\"135.986328\" xlink:href=\"#DejaVuSans-118\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"922.903125\" xlink:href=\"#m74510dcf60\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"m2b96ebd841\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"44.835798\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"65.461541\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"86.087283\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"106.713026\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"127.338769\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"147.964511\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"168.590254\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"189.215996\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"209.841739\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"230.467481\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"251.093224\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"271.718967\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_25\">\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"292.344709\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_26\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"312.970452\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_27\">\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"333.596194\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_28\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"354.221937\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_29\">\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"374.847679\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_30\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"395.473422\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_31\">\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"416.099165\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_32\">\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"457.35065\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_33\">\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"477.976392\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_34\">\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"498.602135\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_35\">\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"519.227877\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_36\">\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"539.85362\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_37\">\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"560.479363\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_38\">\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"581.105105\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_39\">\r\n", | |
" <g id=\"line2d_51\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"601.730848\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_40\">\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"622.35659\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_41\">\r\n", | |
" <g id=\"line2d_53\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"642.982333\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_42\">\r\n", | |
" <g id=\"line2d_54\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"663.608075\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_43\">\r\n", | |
" <g id=\"line2d_55\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"684.233818\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_44\">\r\n", | |
" <g id=\"line2d_56\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"704.859561\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_45\">\r\n", | |
" <g id=\"line2d_57\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"725.485303\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_46\">\r\n", | |
" <g id=\"line2d_58\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"746.111046\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_47\">\r\n", | |
" <g id=\"line2d_59\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"766.736788\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_48\">\r\n", | |
" <g id=\"line2d_60\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"787.362531\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_49\">\r\n", | |
" <g id=\"line2d_61\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"807.988274\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_50\">\r\n", | |
" <g id=\"line2d_62\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"828.614016\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_51\">\r\n", | |
" <g id=\"line2d_63\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"849.239759\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_52\">\r\n", | |
" <g id=\"line2d_64\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"869.865501\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_53\">\r\n", | |
" <g id=\"line2d_65\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"890.491244\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_54\">\r\n", | |
" <g id=\"line2d_66\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"911.116986\" xlink:href=\"#m2b96ebd841\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(439.984688 391.295812)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_67\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 322.368708 \r\n", | |
"L 922.903125 322.368708 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_68\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"ma327fa10fe\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#ma327fa10fe\" y=\"322.368708\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- 0.8 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" <path d=\"M 31.78125 34.625 \r\n", | |
"Q 24.75 34.625 20.71875 30.859375 \r\n", | |
"Q 16.703125 27.09375 16.703125 20.515625 \r\n", | |
"Q 16.703125 13.921875 20.71875 10.15625 \r\n", | |
"Q 24.75 6.390625 31.78125 6.390625 \r\n", | |
"Q 38.8125 6.390625 42.859375 10.171875 \r\n", | |
"Q 46.921875 13.96875 46.921875 20.515625 \r\n", | |
"Q 46.921875 27.09375 42.890625 30.859375 \r\n", | |
"Q 38.875 34.625 31.78125 34.625 \r\n", | |
"z\r\n", | |
"M 21.921875 38.8125 \r\n", | |
"Q 15.578125 40.375 12.03125 44.71875 \r\n", | |
"Q 8.5 49.078125 8.5 55.328125 \r\n", | |
"Q 8.5 64.0625 14.71875 69.140625 \r\n", | |
"Q 20.953125 74.21875 31.78125 74.21875 \r\n", | |
"Q 42.671875 74.21875 48.875 69.140625 \r\n", | |
"Q 55.078125 64.0625 55.078125 55.328125 \r\n", | |
"Q 55.078125 49.078125 51.53125 44.71875 \r\n", | |
"Q 48 40.375 41.703125 38.8125 \r\n", | |
"Q 48.828125 37.15625 52.796875 32.3125 \r\n", | |
"Q 56.78125 27.484375 56.78125 20.515625 \r\n", | |
"Q 56.78125 9.90625 50.3125 4.234375 \r\n", | |
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.734375 -1.421875 13.25 4.234375 \r\n", | |
"Q 6.78125 9.90625 6.78125 20.515625 \r\n", | |
"Q 6.78125 27.484375 10.78125 32.3125 \r\n", | |
"Q 14.796875 37.15625 21.921875 38.8125 \r\n", | |
"z\r\n", | |
"M 18.3125 54.390625 \r\n", | |
"Q 18.3125 48.734375 21.84375 45.5625 \r\n", | |
"Q 25.390625 42.390625 31.78125 42.390625 \r\n", | |
"Q 38.140625 42.390625 41.71875 45.5625 \r\n", | |
"Q 45.3125 48.734375 45.3125 54.390625 \r\n", | |
"Q 45.3125 60.0625 41.71875 63.234375 \r\n", | |
"Q 38.140625 66.40625 31.78125 66.40625 \r\n", | |
"Q 25.390625 66.40625 21.84375 63.234375 \r\n", | |
"Q 18.3125 60.0625 18.3125 54.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-56\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 326.167927)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_69\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 272.660614 \r\n", | |
"L 922.903125 272.660614 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_70\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#ma327fa10fe\" y=\"272.660614\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- 0.9 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.984375 1.515625 \r\n", | |
"L 10.984375 10.5 \r\n", | |
"Q 14.703125 8.734375 18.5 7.8125 \r\n", | |
"Q 22.3125 6.890625 25.984375 6.890625 \r\n", | |
"Q 35.75 6.890625 40.890625 13.453125 \r\n", | |
"Q 46.046875 20.015625 46.78125 33.40625 \r\n", | |
"Q 43.953125 29.203125 39.59375 26.953125 \r\n", | |
"Q 35.25 24.703125 29.984375 24.703125 \r\n", | |
"Q 19.046875 24.703125 12.671875 31.3125 \r\n", | |
"Q 6.296875 37.9375 6.296875 49.421875 \r\n", | |
"Q 6.296875 60.640625 12.9375 67.421875 \r\n", | |
"Q 19.578125 74.21875 30.609375 74.21875 \r\n", | |
"Q 43.265625 74.21875 49.921875 64.515625 \r\n", | |
"Q 56.59375 54.828125 56.59375 36.375 \r\n", | |
"Q 56.59375 19.140625 48.40625 8.859375 \r\n", | |
"Q 40.234375 -1.421875 26.421875 -1.421875 \r\n", | |
"Q 22.703125 -1.421875 18.890625 -0.6875 \r\n", | |
"Q 15.09375 0.046875 10.984375 1.515625 \r\n", | |
"z\r\n", | |
"M 30.609375 32.421875 \r\n", | |
"Q 37.25 32.421875 41.125 36.953125 \r\n", | |
"Q 45.015625 41.5 45.015625 49.421875 \r\n", | |
"Q 45.015625 57.28125 41.125 61.84375 \r\n", | |
"Q 37.25 66.40625 30.609375 66.40625 \r\n", | |
"Q 23.96875 66.40625 20.09375 61.84375 \r\n", | |
"Q 16.21875 57.28125 16.21875 49.421875 \r\n", | |
"Q 16.21875 41.5 20.09375 36.953125 \r\n", | |
"Q 23.96875 32.421875 30.609375 32.421875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-57\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 276.459833)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-57\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_71\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 222.952519 \r\n", | |
"L 922.903125 222.952519 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_72\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#ma327fa10fe\" y=\"222.952519\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- 1.0 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 226.751738)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_73\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 173.244425 \r\n", | |
"L 922.903125 173.244425 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_74\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#ma327fa10fe\" y=\"173.244425\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- 1.1 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 177.043644)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_75\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 123.53633 \r\n", | |
"L 922.903125 123.53633 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_76\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#ma327fa10fe\" y=\"123.53633\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- 1.2 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 127.335549)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_6\">\r\n", | |
" <g id=\"line2d_77\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 73.828236 \r\n", | |
"L 922.903125 73.828236 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_78\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#ma327fa10fe\" y=\"73.828236\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- 1.3 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 40.578125 39.3125 \r\n", | |
"Q 47.65625 37.796875 51.625 33 \r\n", | |
"Q 55.609375 28.21875 55.609375 21.1875 \r\n", | |
"Q 55.609375 10.40625 48.1875 4.484375 \r\n", | |
"Q 40.765625 -1.421875 27.09375 -1.421875 \r\n", | |
"Q 22.515625 -1.421875 17.65625 -0.515625 \r\n", | |
"Q 12.796875 0.390625 7.625 2.203125 \r\n", | |
"L 7.625 11.71875 \r\n", | |
"Q 11.71875 9.328125 16.59375 8.109375 \r\n", | |
"Q 21.484375 6.890625 26.8125 6.890625 \r\n", | |
"Q 36.078125 6.890625 40.9375 10.546875 \r\n", | |
"Q 45.796875 14.203125 45.796875 21.1875 \r\n", | |
"Q 45.796875 27.640625 41.28125 31.265625 \r\n", | |
"Q 36.765625 34.90625 28.71875 34.90625 \r\n", | |
"L 20.21875 34.90625 \r\n", | |
"L 20.21875 43.015625 \r\n", | |
"L 29.109375 43.015625 \r\n", | |
"Q 36.375 43.015625 40.234375 45.921875 \r\n", | |
"Q 44.09375 48.828125 44.09375 54.296875 \r\n", | |
"Q 44.09375 59.90625 40.109375 62.90625 \r\n", | |
"Q 36.140625 65.921875 28.71875 65.921875 \r\n", | |
"Q 24.65625 65.921875 20.015625 65.03125 \r\n", | |
"Q 15.375 64.15625 9.8125 62.3125 \r\n", | |
"L 9.8125 71.09375 \r\n", | |
"Q 15.4375 72.65625 20.34375 73.4375 \r\n", | |
"Q 25.25 74.21875 29.59375 74.21875 \r\n", | |
"Q 40.828125 74.21875 47.359375 69.109375 \r\n", | |
"Q 53.90625 64.015625 53.90625 55.328125 \r\n", | |
"Q 53.90625 49.265625 50.4375 45.09375 \r\n", | |
"Q 46.96875 40.921875 40.578125 39.3125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-51\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 77.627455)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-51\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_79\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 33.04966 270.242841 \r\n", | |
"L 35.996194 263.536507 \r\n", | |
"L 44.835798 270.816645 \r\n", | |
"L 47.782333 273.542214 \r\n", | |
"L 50.728868 269.166959 \r\n", | |
"L 53.675402 272.896685 \r\n", | |
"L 56.621937 270.529743 \r\n", | |
"L 65.461541 283.65551 \r\n", | |
"L 68.408075 281.109255 \r\n", | |
"L 71.35461 272.96841 \r\n", | |
"L 74.301145 275.084312 \r\n", | |
"L 77.247679 272.538057 \r\n", | |
"L 86.087283 270.780782 \r\n", | |
"L 89.033818 262.639938 \r\n", | |
"L 91.980353 263.608232 \r\n", | |
"L 94.926887 260.631624 \r\n", | |
"L 97.873422 258.766761 \r\n", | |
"L 106.713026 258.62331 \r\n", | |
"L 109.659561 253.745976 \r\n", | |
"L 112.606095 255.718427 \r\n", | |
"L 115.55263 256.112917 \r\n", | |
"L 118.499165 256.112917 \r\n", | |
"L 127.338769 254.678407 \r\n", | |
"L 130.285303 257.224662 \r\n", | |
"L 133.231838 254.534956 \r\n", | |
"L 136.178373 254.642544 \r\n", | |
"L 139.124907 257.547427 \r\n", | |
"L 150.911046 270.09939 \r\n", | |
"L 153.85758 276.48296 \r\n", | |
"L 156.804115 278.885764 \r\n", | |
"L 159.75065 288.496981 \r\n", | |
"L 168.590254 279.172666 \r\n", | |
"L 171.536788 272.502194 \r\n", | |
"L 174.483323 278.598862 \r\n", | |
"L 177.429858 275.514665 \r\n", | |
"L 180.376392 278.849901 \r\n", | |
"L 192.162531 276.160195 \r\n", | |
"L 195.109066 276.949176 \r\n", | |
"L 198.0556 297.857159 \r\n", | |
"L 201.002135 297.21163 \r\n", | |
"L 209.841739 310.480848 \r\n", | |
"L 212.788274 314.67679 \r\n", | |
"L 215.734808 309.33324 \r\n", | |
"L 218.681343 298.897179 \r\n", | |
"L 221.627877 284.587941 \r\n", | |
"L 230.467481 309.0822 \r\n", | |
"L 233.414016 296.17161 \r\n", | |
"L 236.360551 281.037529 \r\n", | |
"L 239.307085 280.392 \r\n", | |
"L 242.25362 277.702293 \r\n", | |
"L 251.093224 270.350429 \r\n", | |
"L 254.039759 263.034428 \r\n", | |
"L 256.986293 272.251155 \r\n", | |
"L 259.932828 273.972567 \r\n", | |
"L 262.879363 286.201765 \r\n", | |
"L 271.718967 273.506351 \r\n", | |
"L 274.665501 265.688272 \r\n", | |
"L 277.612036 274.367057 \r\n", | |
"L 280.558571 269.417998 \r\n", | |
"L 283.505105 267.62486 \r\n", | |
"L 292.344709 276.554685 \r\n", | |
"L 295.291244 267.409684 \r\n", | |
"L 298.237778 264.504801 \r\n", | |
"L 301.184313 260.093683 \r\n", | |
"L 304.130848 258.37227 \r\n", | |
"L 312.970452 261.707506 \r\n", | |
"L 315.916986 256.005329 \r\n", | |
"L 318.863521 256.005329 \r\n", | |
"L 324.75659 264.863428 \r\n", | |
"L 333.596194 257.547427 \r\n", | |
"L 336.542729 252.813544 \r\n", | |
"L 339.489264 254.642544 \r\n", | |
"L 342.435798 249.550034 \r\n", | |
"L 354.221937 261.348879 \r\n", | |
"L 357.168472 259.806781 \r\n", | |
"L 360.115006 255.252211 \r\n", | |
"L 363.061541 253.925289 \r\n", | |
"L 366.008075 252.383191 \r\n", | |
"L 377.794214 249.980387 \r\n", | |
"L 380.740749 253.315623 \r\n", | |
"L 383.687283 260.05782 \r\n", | |
"L 386.633818 258.300545 \r\n", | |
"L 395.473422 251.343171 \r\n", | |
"L 398.419957 245.784445 \r\n", | |
"L 401.366491 250.661779 \r\n", | |
"L 404.313026 261.456467 \r\n", | |
"L 407.259561 266.548978 \r\n", | |
"L 416.099165 254.499093 \r\n", | |
"L 419.045699 249.478308 \r\n", | |
"L 421.992234 253.100446 \r\n", | |
"L 424.938769 251.988701 \r\n", | |
"L 427.885303 255.897741 \r\n", | |
"L 436.724907 253.136309 \r\n", | |
"L 439.671442 251.307309 \r\n", | |
"L 442.617976 249.047955 \r\n", | |
"L 445.564511 250.948681 \r\n", | |
"L 448.511046 243.847856 \r\n", | |
"L 457.35065 244.923739 \r\n", | |
"L 460.297184 244.02717 \r\n", | |
"L 463.243719 237.751189 \r\n", | |
"L 466.190254 246.10721 \r\n", | |
"L 477.976392 254.463231 \r\n", | |
"L 480.922927 239.651914 \r\n", | |
"L 483.869462 239.365012 \r\n", | |
"L 486.815996 242.377484 \r\n", | |
"L 489.762531 240.727797 \r\n", | |
"L 498.602135 243.525092 \r\n", | |
"L 501.54867 238.68362 \r\n", | |
"L 507.441739 250.80523 \r\n", | |
"L 510.388274 245.425817 \r\n", | |
"L 519.227877 247.075504 \r\n", | |
"L 522.174412 242.19817 \r\n", | |
"L 528.067481 233.878012 \r\n", | |
"L 531.014016 226.418559 \r\n", | |
"L 539.85362 211.033439 \r\n", | |
"L 542.800155 215.014204 \r\n", | |
"L 548.693224 213.149341 \r\n", | |
"L 551.639759 220.106715 \r\n", | |
"L 560.479363 217.919087 \r\n", | |
"L 563.425897 225.701304 \r\n", | |
"L 566.372432 215.946636 \r\n", | |
"L 569.318967 223.944029 \r\n", | |
"L 572.265501 217.847362 \r\n", | |
"L 581.105105 213.25693 \r\n", | |
"L 584.05164 207.698203 \r\n", | |
"L 586.998175 215.552146 \r\n", | |
"L 589.944709 207.375439 \r\n", | |
"L 592.891244 215.48042 \r\n", | |
"L 601.730848 210.101008 \r\n", | |
"L 604.677382 202.892595 \r\n", | |
"L 607.623917 202.56983 \r\n", | |
"L 610.570452 198.230437 \r\n", | |
"L 613.516986 197.907672 \r\n", | |
"L 622.35659 196.078672 \r\n", | |
"L 625.303125 185.714337 \r\n", | |
"L 628.24966 186.216415 \r\n", | |
"L 631.196194 186.503317 \r\n", | |
"L 634.142729 186.180553 \r\n", | |
"L 642.982333 186.252278 \r\n", | |
"L 645.928868 183.706023 \r\n", | |
"L 648.875402 183.203944 \r\n", | |
"L 651.821937 180.514238 \r\n", | |
"L 654.768472 183.67016 \r\n", | |
"L 663.608075 181.231493 \r\n", | |
"L 666.55461 177.394179 \r\n", | |
"L 669.501145 175.242414 \r\n", | |
"L 672.447679 178.434198 \r\n", | |
"L 675.394214 171.512687 \r\n", | |
"L 684.233818 159.534529 \r\n", | |
"L 687.180353 159.140038 \r\n", | |
"L 690.126887 154.764783 \r\n", | |
"L 693.073422 149.206056 \r\n", | |
"L 696.019957 155.446175 \r\n", | |
"L 704.859561 158.24347 \r\n", | |
"L 707.806095 163.192529 \r\n", | |
"L 710.75263 150.174351 \r\n", | |
"L 713.699165 149.170194 \r\n", | |
"L 716.645699 164.411863 \r\n", | |
"L 725.485303 162.224235 \r\n", | |
"L 728.431838 162.618725 \r\n", | |
"L 731.378373 167.782961 \r\n", | |
"L 734.324907 167.926412 \r\n", | |
"L 737.271442 173.162374 \r\n", | |
"L 746.111046 168.320903 \r\n", | |
"L 749.05758 164.913941 \r\n", | |
"L 752.004115 162.905627 \r\n", | |
"L 754.95065 171.369236 \r\n", | |
"L 757.897184 170.11404 \r\n", | |
"L 766.736788 177.645218 \r\n", | |
"L 769.683323 173.341688 \r\n", | |
"L 772.629858 164.734628 \r\n", | |
"L 775.576392 172.732021 \r\n", | |
"L 778.522927 168.536079 \r\n", | |
"L 787.362531 150.281939 \r\n", | |
"L 790.309066 145.512193 \r\n", | |
"L 793.2556 152.290253 \r\n", | |
"L 796.202135 149.815723 \r\n", | |
"L 799.14867 155.804803 \r\n", | |
"L 807.988274 146.480487 \r\n", | |
"L 810.934808 147.843272 \r\n", | |
"L 816.827877 144.43631 \r\n", | |
"L 819.774412 146.265311 \r\n", | |
"L 828.614016 142.033506 \r\n", | |
"L 831.560551 135.936838 \r\n", | |
"L 834.507085 135.255446 \r\n", | |
"L 837.45362 138.016878 \r\n", | |
"L 840.400155 133.749211 \r\n", | |
"L 849.239759 136.546505 \r\n", | |
"L 852.186293 140.419682 \r\n", | |
"L 855.132828 147.090154 \r\n", | |
"L 858.079363 151.788174 \r\n", | |
"L 861.025897 151.321959 \r\n", | |
"L 869.865501 156.271018 \r\n", | |
"L 872.812036 155.12341 \r\n", | |
"L 875.758571 152.075076 \r\n", | |
"L 878.705105 149.564684 \r\n", | |
"L 881.65164 153.186822 \r\n", | |
"L 890.491244 145.512193 \r\n", | |
"L 893.437778 141.674879 \r\n", | |
"L 899.330848 132.027799 \r\n", | |
"L 902.277382 134.107838 \r\n", | |
"L 911.116986 121.053797 \r\n", | |
"L 914.063521 128.369798 \r\n", | |
"L 917.010056 127.007013 \r\n", | |
"L 919.95659 122.739346 \r\n", | |
"L 922.903125 122.739346 \r\n", | |
"L 922.903125 122.739346 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_80\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 33.04966 191.734053 \r\n", | |
"L 35.996194 182.659416 \r\n", | |
"L 44.835798 190.593241 \r\n", | |
"L 47.782333 194.171241 \r\n", | |
"L 50.728868 189.711705 \r\n", | |
"L 53.675402 197.85295 \r\n", | |
"L 56.621937 196.401009 \r\n", | |
"L 65.461541 215.950368 \r\n", | |
"L 68.408075 212.216804 \r\n", | |
"L 71.35461 203.453298 \r\n", | |
"L 74.301145 206.668312 \r\n", | |
"L 77.247679 207.964688 \r\n", | |
"L 86.087283 204.490399 \r\n", | |
"L 89.033818 193.808255 \r\n", | |
"L 91.980353 193.808255 \r\n", | |
"L 94.926887 190.022836 \r\n", | |
"L 97.873422 186.755966 \r\n", | |
"L 106.713026 194.897212 \r\n", | |
"L 109.659561 191.267357 \r\n", | |
"L 112.606095 186.807821 \r\n", | |
"L 115.55263 185.66701 \r\n", | |
"L 118.499165 185.35588 \r\n", | |
"L 127.338769 186.911532 \r\n", | |
"L 130.285303 188.570894 \r\n", | |
"L 133.231838 185.718865 \r\n", | |
"L 136.178373 185.511445 \r\n", | |
"L 139.124907 189.55614 \r\n", | |
"L 150.911046 202.571761 \r\n", | |
"L 153.85758 209.52034 \r\n", | |
"L 156.804115 210.609297 \r\n", | |
"L 159.75065 240.8408 \r\n", | |
"L 168.590254 233.788511 \r\n", | |
"L 171.536788 225.699121 \r\n", | |
"L 174.483323 232.699555 \r\n", | |
"L 177.429858 229.640106 \r\n", | |
"L 180.376392 243.952104 \r\n", | |
"L 192.162531 259.508624 \r\n", | |
"L 195.109066 277.398622 \r\n", | |
"L 198.0556 303.066879 \r\n", | |
"L 201.002135 306.489314 \r\n", | |
"L 209.841739 331.639021 \r\n", | |
"L 212.788274 333.090962 \r\n", | |
"L 215.734808 335.476295 \r\n", | |
"L 218.681343 318.208558 \r\n", | |
"L 221.627877 308.044966 \r\n", | |
"L 230.467481 332.831687 \r\n", | |
"L 233.414016 327.23134 \r\n", | |
"L 236.360551 302.081633 \r\n", | |
"L 239.307085 312.971197 \r\n", | |
"L 242.25362 301.770503 \r\n", | |
"L 251.093224 299.851865 \r\n", | |
"L 254.039759 292.695866 \r\n", | |
"L 256.986293 302.703894 \r\n", | |
"L 259.932828 295.859025 \r\n", | |
"L 262.879363 310.585864 \r\n", | |
"L 271.718967 298.244358 \r\n", | |
"L 274.665501 281.806302 \r\n", | |
"L 277.612036 290.466098 \r\n", | |
"L 280.558571 287.9252 \r\n", | |
"L 283.505105 276.568941 \r\n", | |
"L 292.344709 283.72494 \r\n", | |
"L 295.291244 274.805868 \r\n", | |
"L 298.237778 275.479984 \r\n", | |
"L 301.184313 271.279724 \r\n", | |
"L 304.130848 270.709318 \r\n", | |
"L 312.970452 278.539433 \r\n", | |
"L 315.916986 285.332447 \r\n", | |
"L 318.863521 283.517519 \r\n", | |
"L 321.810056 277.294911 \r\n", | |
"L 324.75659 279.420969 \r\n", | |
"L 333.596194 269.724072 \r\n", | |
"L 336.542729 265.990507 \r\n", | |
"L 339.489264 265.627522 \r\n", | |
"L 342.435798 255.930624 \r\n", | |
"L 354.221937 278.332013 \r\n", | |
"L 357.168472 274.702158 \r\n", | |
"L 360.115006 263.345899 \r\n", | |
"L 363.061541 268.946246 \r\n", | |
"L 366.008075 264.020015 \r\n", | |
"L 377.794214 254.737958 \r\n", | |
"L 380.740749 259.819754 \r\n", | |
"L 383.687283 270.398188 \r\n", | |
"L 386.633818 265.057116 \r\n", | |
"L 395.473422 254.478682 \r\n", | |
"L 398.419957 244.83364 \r\n", | |
"L 401.366491 252.81932 \r\n", | |
"L 404.313026 255.723204 \r\n", | |
"L 407.259561 261.997667 \r\n", | |
"L 416.099165 247.167118 \r\n", | |
"L 421.992234 240.581525 \r\n", | |
"L 424.938769 240.685235 \r\n", | |
"L 427.885303 243.848394 \r\n", | |
"L 436.724907 238.714742 \r\n", | |
"L 439.671442 235.396018 \r\n", | |
"L 442.617976 230.417932 \r\n", | |
"L 445.564511 228.032599 \r\n", | |
"L 448.511046 225.336135 \r\n", | |
"L 457.35065 221.29144 \r\n", | |
"L 460.297184 221.447005 \r\n", | |
"L 463.243719 218.906107 \r\n", | |
"L 466.190254 229.328975 \r\n", | |
"L 477.976392 235.810859 \r\n", | |
"L 480.922927 225.750976 \r\n", | |
"L 483.869462 224.402744 \r\n", | |
"L 486.815996 230.988338 \r\n", | |
"L 489.762531 227.306628 \r\n", | |
"L 498.602135 226.788077 \r\n", | |
"L 501.54867 221.08402 \r\n", | |
"L 507.441739 234.307062 \r\n", | |
"L 510.388274 227.151063 \r\n", | |
"L 519.227877 230.780917 \r\n", | |
"L 522.174412 227.306628 \r\n", | |
"L 528.067481 224.039759 \r\n", | |
"L 531.014016 215.328108 \r\n", | |
"L 539.85362 203.142167 \r\n", | |
"L 542.800155 215.276253 \r\n", | |
"L 545.746689 207.964688 \r\n", | |
"L 551.639759 210.453731 \r\n", | |
"L 560.479363 211.387123 \r\n", | |
"L 563.425897 217.713441 \r\n", | |
"L 566.372432 208.846224 \r\n", | |
"L 569.318967 220.98031 \r\n", | |
"L 572.265501 211.490833 \r\n", | |
"L 581.105105 208.431384 \r\n", | |
"L 584.05164 203.919993 \r\n", | |
"L 586.998175 209.364775 \r\n", | |
"L 589.944709 200.393849 \r\n", | |
"L 592.891244 215.691093 \r\n", | |
"L 601.730848 209.935181 \r\n", | |
"L 604.677382 205.268225 \r\n", | |
"L 607.623917 208.483239 \r\n", | |
"L 610.570452 208.068398 \r\n", | |
"L 613.516986 210.972282 \r\n", | |
"L 622.35659 209.52034 \r\n", | |
"L 625.303125 200.964254 \r\n", | |
"L 628.24966 200.238283 \r\n", | |
"L 631.196194 198.060371 \r\n", | |
"L 634.142729 200.860544 \r\n", | |
"L 642.982333 203.971848 \r\n", | |
"L 645.928868 199.927153 \r\n", | |
"L 648.875402 192.615589 \r\n", | |
"L 651.821937 194.845357 \r\n", | |
"L 654.768472 193.44527 \r\n", | |
"L 663.608075 190.593241 \r\n", | |
"L 666.55461 192.511879 \r\n", | |
"L 669.501145 188.259763 \r\n", | |
"L 672.447679 191.111792 \r\n", | |
"L 675.394214 187.326372 \r\n", | |
"L 684.233818 181.77788 \r\n", | |
"L 687.180353 180.429648 \r\n", | |
"L 690.126887 176.073823 \r\n", | |
"L 693.073422 177.318344 \r\n", | |
"L 696.019957 181.155619 \r\n", | |
"L 704.859561 178.925851 \r\n", | |
"L 707.806095 178.666576 \r\n", | |
"L 710.75263 170.836461 \r\n", | |
"L 713.699165 178.666576 \r\n", | |
"L 716.645699 190.178401 \r\n", | |
"L 725.485303 189.86727 \r\n", | |
"L 728.431838 194.845357 \r\n", | |
"L 731.378373 197.593675 \r\n", | |
"L 734.324907 193.34156 \r\n", | |
"L 737.271442 195.363907 \r\n", | |
"L 746.111046 190.333966 \r\n", | |
"L 749.05758 187.637502 \r\n", | |
"L 752.004115 184.629909 \r\n", | |
"L 754.95065 194.430516 \r\n", | |
"L 757.897184 194.119386 \r\n", | |
"L 766.736788 203.971848 \r\n", | |
"L 769.683323 199.875298 \r\n", | |
"L 772.629858 194.067531 \r\n", | |
"L 775.576392 207.705413 \r\n", | |
"L 778.522927 200.549414 \r\n", | |
"L 787.362531 190.593241 \r\n", | |
"L 790.309066 195.363907 \r\n", | |
"L 793.2556 200.964254 \r\n", | |
"L 796.202135 192.460024 \r\n", | |
"L 799.14867 198.630776 \r\n", | |
"L 807.988274 191.785908 \r\n", | |
"L 810.934808 190.126546 \r\n", | |
"L 813.881343 189.815415 \r\n", | |
"L 816.827877 185.304025 \r\n", | |
"L 819.774412 183.126112 \r\n", | |
"L 828.614016 179.755532 \r\n", | |
"L 831.560551 175.866403 \r\n", | |
"L 834.507085 174.518171 \r\n", | |
"L 837.45362 183.748373 \r\n", | |
"L 840.400155 180.585214 \r\n", | |
"L 849.239759 179.236982 \r\n", | |
"L 852.186293 181.829735 \r\n", | |
"L 855.132828 184.733619 \r\n", | |
"L 858.079363 184.837329 \r\n", | |
"L 861.025897 183.644662 \r\n", | |
"L 869.865501 187.585647 \r\n", | |
"L 872.812036 187.741213 \r\n", | |
"L 875.758571 197.075124 \r\n", | |
"L 878.705105 198.630776 \r\n", | |
"L 881.65164 201.949501 \r\n", | |
"L 890.491244 200.653124 \r\n", | |
"L 893.437778 192.304458 \r\n", | |
"L 899.330848 174.829301 \r\n", | |
"L 902.277382 174.362606 \r\n", | |
"L 911.116986 160.102462 \r\n", | |
"L 914.063521 163.732317 \r\n", | |
"L 917.010056 162.072955 \r\n", | |
"L 919.95659 160.154318 \r\n", | |
"L 922.903125 160.154318 \r\n", | |
"L 922.903125 160.154318 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_81\">\r\n", | |
" <path clip-path=\"url(#p292d5ae4b6)\" d=\"M 30.103125 235.115364 \r\n", | |
"L 33.04966 231.211249 \r\n", | |
"L 35.996194 229.461128 \r\n", | |
"L 44.835798 229.191878 \r\n", | |
"L 47.782333 228.518755 \r\n", | |
"L 50.728868 224.210765 \r\n", | |
"L 53.675402 226.903259 \r\n", | |
"L 56.621937 225.153138 \r\n", | |
"L 65.461541 232.826745 \r\n", | |
"L 68.408075 228.788004 \r\n", | |
"L 71.35461 225.826261 \r\n", | |
"L 74.301145 227.980256 \r\n", | |
"L 77.247679 221.114398 \r\n", | |
"L 86.087283 223.403017 \r\n", | |
"L 89.033818 219.364277 \r\n", | |
"L 91.980353 217.748781 \r\n", | |
"L 94.926887 212.229169 \r\n", | |
"L 97.873422 208.594302 \r\n", | |
"L 106.713026 208.863552 \r\n", | |
"L 109.659561 203.747814 \r\n", | |
"L 112.606095 207.921179 \r\n", | |
"L 115.55263 205.901809 \r\n", | |
"L 118.499165 202.805441 \r\n", | |
"L 127.338769 202.805441 \r\n", | |
"L 130.285303 203.613189 \r\n", | |
"L 133.231838 201.32457 \r\n", | |
"L 136.178373 199.574449 \r\n", | |
"L 139.124907 200.516821 \r\n", | |
"L 150.911046 212.229169 \r\n", | |
"L 153.85758 225.691637 \r\n", | |
"L 156.804115 232.826745 \r\n", | |
"L 159.75065 249.520205 \r\n", | |
"L 168.590254 238.750231 \r\n", | |
"L 171.536788 226.095511 \r\n", | |
"L 174.483323 234.307616 \r\n", | |
"L 177.429858 228.788004 \r\n", | |
"L 180.376392 235.653863 \r\n", | |
"L 192.162531 231.615123 \r\n", | |
"L 195.109066 235.249989 \r\n", | |
"L 198.0556 255.847565 \r\n", | |
"L 201.002135 262.848049 \r\n", | |
"L 209.841739 270.521655 \r\n", | |
"L 212.788274 278.599136 \r\n", | |
"L 215.734808 265.809792 \r\n", | |
"L 218.681343 260.963303 \r\n", | |
"L 221.627877 243.865969 \r\n", | |
"L 230.467481 279.27226 \r\n", | |
"L 233.414016 269.848532 \r\n", | |
"L 236.360551 253.155072 \r\n", | |
"L 239.307085 250.193329 \r\n", | |
"L 242.25362 239.692604 \r\n", | |
"L 251.093224 231.480498 \r\n", | |
"L 254.039759 222.191395 \r\n", | |
"L 256.986293 244.269843 \r\n", | |
"L 259.932828 248.443208 \r\n", | |
"L 262.879363 255.847565 \r\n", | |
"L 271.718967 241.711974 \r\n", | |
"L 274.665501 224.210765 \r\n", | |
"L 277.612036 233.499868 \r\n", | |
"L 280.558571 224.210765 \r\n", | |
"L 283.505105 218.421904 \r\n", | |
"L 292.344709 230.538125 \r\n", | |
"L 295.291244 224.076141 \r\n", | |
"L 298.237778 220.575899 \r\n", | |
"L 301.184313 218.287279 \r\n", | |
"L 304.130848 208.325053 \r\n", | |
"L 312.970452 208.055804 \r\n", | |
"L 315.916986 205.632559 \r\n", | |
"L 318.863521 206.171058 \r\n", | |
"L 324.75659 215.325536 \r\n", | |
"L 333.596194 205.228685 \r\n", | |
"L 336.542729 200.516821 \r\n", | |
"L 339.489264 201.728444 \r\n", | |
"L 342.435798 198.497451 \r\n", | |
"L 354.221937 211.286796 \r\n", | |
"L 357.168472 207.65193 \r\n", | |
"L 360.115006 203.478564 \r\n", | |
"L 363.061541 204.690187 \r\n", | |
"L 366.008075 200.651446 \r\n", | |
"L 377.794214 199.170575 \r\n", | |
"L 380.740749 208.863552 \r\n", | |
"L 383.687283 216.537158 \r\n", | |
"L 386.633818 212.363793 \r\n", | |
"L 395.473422 205.228685 \r\n", | |
"L 398.419957 201.32457 \r\n", | |
"L 401.366491 204.286313 \r\n", | |
"L 404.313026 209.40205 \r\n", | |
"L 407.259561 209.6713 \r\n", | |
"L 416.099165 201.863068 \r\n", | |
"L 419.045699 199.978323 \r\n", | |
"L 421.992234 200.247572 \r\n", | |
"L 424.938769 196.881955 \r\n", | |
"L 427.885303 201.32457 \r\n", | |
"L 436.724907 203.478564 \r\n", | |
"L 439.671442 206.574932 \r\n", | |
"L 442.617976 203.209315 \r\n", | |
"L 445.564511 198.632076 \r\n", | |
"L 448.511046 193.785587 \r\n", | |
"L 457.35065 189.881472 \r\n", | |
"L 460.297184 186.919729 \r\n", | |
"L 463.243719 185.573482 \r\n", | |
"L 466.190254 196.343456 \r\n", | |
"L 477.976392 214.921662 \r\n", | |
"L 480.922927 189.881472 \r\n", | |
"L 483.869462 188.66985 \r\n", | |
"L 486.815996 194.189461 \r\n", | |
"L 489.762531 189.477598 \r\n", | |
"L 498.602135 197.01658 \r\n", | |
"L 501.54867 193.381713 \r\n", | |
"L 507.441739 206.440307 \r\n", | |
"L 510.388274 202.132318 \r\n", | |
"L 519.227877 205.094061 \r\n", | |
"L 522.174412 192.70859 \r\n", | |
"L 528.067481 182.07324 \r\n", | |
"L 531.014016 179.515371 \r\n", | |
"L 539.85362 166.591402 \r\n", | |
"L 542.800155 165.649029 \r\n", | |
"L 545.746689 170.360893 \r\n", | |
"L 548.693224 170.899392 \r\n", | |
"L 551.639759 174.399633 \r\n", | |
"L 560.479363 164.168158 \r\n", | |
"L 563.425897 171.034016 \r\n", | |
"L 566.372432 160.937165 \r\n", | |
"L 569.318967 162.821911 \r\n", | |
"L 572.265501 156.898425 \r\n", | |
"L 581.105105 156.7638 \r\n", | |
"L 584.05164 145.859201 \r\n", | |
"L 586.998175 155.821427 \r\n", | |
"L 589.944709 152.186561 \r\n", | |
"L 592.891244 156.898425 \r\n", | |
"L 601.730848 155.552178 \r\n", | |
"L 604.677382 149.224818 \r\n", | |
"L 607.623917 152.45581 \r\n", | |
"L 610.570452 139.666466 \r\n", | |
"L 613.516986 130.781237 \r\n", | |
"L 622.35659 126.069373 \r\n", | |
"L 625.303125 125.934748 \r\n", | |
"L 628.24966 124.992376 \r\n", | |
"L 631.196194 123.646129 \r\n", | |
"L 634.142729 118.261142 \r\n", | |
"L 642.982333 115.837897 \r\n", | |
"L 645.928868 115.434023 \r\n", | |
"L 648.875402 117.588018 \r\n", | |
"L 651.821937 113.818527 \r\n", | |
"L 654.768472 116.645645 \r\n", | |
"L 666.55461 112.606905 \r\n", | |
"L 669.501145 109.779787 \r\n", | |
"L 672.447679 111.395283 \r\n", | |
"L 675.394214 102.240804 \r\n", | |
"L 684.233818 95.105696 \r\n", | |
"L 687.180353 88.643712 \r\n", | |
"L 690.126887 79.758483 \r\n", | |
"L 693.073422 77.469863 \r\n", | |
"L 696.019957 79.489233 \r\n", | |
"L 704.859561 79.219984 \r\n", | |
"L 707.806095 82.181727 \r\n", | |
"L 710.75263 72.892624 \r\n", | |
"L 713.699165 64.007395 \r\n", | |
"L 716.645699 88.643712 \r\n", | |
"L 725.485303 85.008845 \r\n", | |
"L 728.431838 86.220467 \r\n", | |
"L 731.378373 93.355576 \r\n", | |
"L 734.324907 92.143953 \r\n", | |
"L 737.271442 100.759933 \r\n", | |
"L 746.111046 96.317319 \r\n", | |
"L 749.05758 92.278578 \r\n", | |
"L 752.004115 90.797707 \r\n", | |
"L 754.95065 102.913928 \r\n", | |
"L 757.897184 99.413686 \r\n", | |
"L 766.736788 109.241288 \r\n", | |
"L 769.683323 105.337172 \r\n", | |
"L 772.629858 95.105696 \r\n", | |
"L 775.576392 107.087293 \r\n", | |
"L 778.522927 98.471313 \r\n", | |
"L 787.362531 76.931365 \r\n", | |
"L 790.309066 66.565264 \r\n", | |
"L 793.2556 77.469863 \r\n", | |
"L 796.202135 72.219501 \r\n", | |
"L 799.14867 77.335239 \r\n", | |
"L 807.988274 70.46938 \r\n", | |
"L 810.934808 65.219017 \r\n", | |
"L 813.881343 68.046136 \r\n", | |
"L 816.827877 62.930398 \r\n", | |
"L 819.774412 63.468896 \r\n", | |
"L 828.614016 56.333788 \r\n", | |
"L 831.560551 49.602554 \r\n", | |
"L 834.507085 49.19868 \r\n", | |
"L 837.45362 56.468413 \r\n", | |
"L 840.400155 51.4873 \r\n", | |
"L 849.239759 49.737179 \r\n", | |
"L 852.186293 59.430156 \r\n", | |
"L 855.132828 65.488267 \r\n", | |
"L 858.079363 71.007879 \r\n", | |
"L 861.025897 69.392382 \r\n", | |
"L 869.865501 76.931365 \r\n", | |
"L 872.812036 77.469863 \r\n", | |
"L 875.758571 78.81611 \r\n", | |
"L 878.705105 80.431606 \r\n", | |
"L 881.65164 82.85485 \r\n", | |
"L 890.491244 67.373012 \r\n", | |
"L 893.437778 64.815143 \r\n", | |
"L 899.330848 48.660182 \r\n", | |
"L 902.277382 52.295048 \r\n", | |
"L 911.116986 38.967205 \r\n", | |
"L 914.063521 54.852917 \r\n", | |
"L 919.95659 47.583184 \r\n", | |
"L 922.903125 47.583184 \r\n", | |
"L 922.903125 47.583184 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 30.103125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 922.903125 350.30175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 30.103125 350.30175 \r\n", | |
"L 922.903125 350.30175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 30.103125 24.14175 \r\n", | |
"L 922.903125 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_18\">\r\n", | |
" <!-- FXUS & FXWO & FXRW -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" <path d=\"M 8.6875 72.90625 \r\n", | |
"L 18.609375 72.90625 \r\n", | |
"L 18.609375 28.609375 \r\n", | |
"Q 18.609375 16.890625 22.84375 11.734375 \r\n", | |
"Q 27.09375 6.59375 36.625 6.59375 \r\n", | |
"Q 46.09375 6.59375 50.34375 11.734375 \r\n", | |
"Q 54.59375 16.890625 54.59375 28.609375 \r\n", | |
"L 54.59375 72.90625 \r\n", | |
"L 64.5 72.90625 \r\n", | |
"L 64.5 27.390625 \r\n", | |
"Q 64.5 13.140625 57.4375 5.859375 \r\n", | |
"Q 50.390625 -1.421875 36.625 -1.421875 \r\n", | |
"Q 22.796875 -1.421875 15.734375 5.859375 \r\n", | |
"Q 8.6875 13.140625 8.6875 27.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-85\"/>\r\n", | |
" <path id=\"DejaVuSans-32\"/>\r\n", | |
" <path d=\"M 24.3125 39.203125 \r\n", | |
"Q 19.875 35.25 17.796875 31.3125 \r\n", | |
"Q 15.71875 27.390625 15.71875 23.09375 \r\n", | |
"Q 15.71875 15.96875 20.890625 11.234375 \r\n", | |
"Q 26.078125 6.5 33.890625 6.5 \r\n", | |
"Q 38.53125 6.5 42.578125 8.03125 \r\n", | |
"Q 46.625 9.578125 50.203125 12.703125 \r\n", | |
"z\r\n", | |
"M 31.203125 44.671875 \r\n", | |
"L 56 19.28125 \r\n", | |
"Q 58.890625 23.640625 60.5 28.59375 \r\n", | |
"Q 62.109375 33.546875 62.40625 39.109375 \r\n", | |
"L 71.484375 39.109375 \r\n", | |
"Q 70.90625 32.671875 68.359375 26.359375 \r\n", | |
"Q 65.828125 20.0625 61.28125 13.921875 \r\n", | |
"L 74.90625 0 \r\n", | |
"L 62.59375 0 \r\n", | |
"L 55.609375 7.171875 \r\n", | |
"Q 50.53125 2.828125 44.96875 0.703125 \r\n", | |
"Q 39.40625 -1.421875 33.015625 -1.421875 \r\n", | |
"Q 21.234375 -1.421875 13.765625 5.296875 \r\n", | |
"Q 6.296875 12.015625 6.296875 22.515625 \r\n", | |
"Q 6.296875 28.765625 9.5625 34.25 \r\n", | |
"Q 12.84375 39.75 19.390625 44.578125 \r\n", | |
"Q 17.046875 47.65625 15.8125 50.703125 \r\n", | |
"Q 14.59375 53.765625 14.59375 56.6875 \r\n", | |
"Q 14.59375 64.59375 20.015625 69.40625 \r\n", | |
"Q 25.4375 74.21875 34.421875 74.21875 \r\n", | |
"Q 38.484375 74.21875 42.5 73.34375 \r\n", | |
"Q 46.53125 72.46875 50.6875 70.703125 \r\n", | |
"L 50.6875 61.8125 \r\n", | |
"Q 46.4375 64.109375 42.578125 65.296875 \r\n", | |
"Q 38.71875 66.5 35.40625 66.5 \r\n", | |
"Q 30.28125 66.5 27.078125 63.78125 \r\n", | |
"Q 23.875 61.078125 23.875 56.78125 \r\n", | |
"Q 23.875 54.296875 25.3125 51.78125 \r\n", | |
"Q 26.765625 49.265625 31.203125 44.671875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-38\"/>\r\n", | |
" <path d=\"M 3.328125 72.90625 \r\n", | |
"L 13.28125 72.90625 \r\n", | |
"L 28.609375 11.28125 \r\n", | |
"L 43.890625 72.90625 \r\n", | |
"L 54.984375 72.90625 \r\n", | |
"L 70.3125 11.28125 \r\n", | |
"L 85.59375 72.90625 \r\n", | |
"L 95.609375 72.90625 \r\n", | |
"L 77.296875 0 \r\n", | |
"L 64.890625 0 \r\n", | |
"L 49.515625 63.28125 \r\n", | |
"L 33.984375 0 \r\n", | |
"L 21.578125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-87\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(394.1565 18.14175)scale(0.144 -0.144)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-85\"/>\r\n", | |
" <use x=\"199.21875\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"262.695312\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"294.482422\" xlink:href=\"#DejaVuSans-38\"/>\r\n", | |
" <use x=\"372.460938\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"404.248047\" xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"461.767578\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"530.273438\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" <use x=\"629.150391\" xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"707.861328\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"739.648438\" xlink:href=\"#DejaVuSans-38\"/>\r\n", | |
" <use x=\"817.626953\" xlink:href=\"#DejaVuSans-32\"/>\r\n", | |
" <use x=\"849.414062\" xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"906.933594\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"975.439453\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"1044.859375\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 37.103125 76.176125 \r\n", | |
"L 99.464063 76.176125 \r\n", | |
"Q 101.464063 76.176125 101.464063 74.176125 \r\n", | |
"L 101.464063 31.14175 \r\n", | |
"Q 101.464063 29.14175 99.464063 29.14175 \r\n", | |
"L 37.103125 29.14175 \r\n", | |
"Q 35.103125 29.14175 35.103125 31.14175 \r\n", | |
"L 35.103125 74.176125 \r\n", | |
"Q 35.103125 76.176125 37.103125 76.176125 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_82\">\r\n", | |
" <path d=\"M 39.103125 37.240187 \r\n", | |
"L 59.103125 37.240187 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_83\"/>\r\n", | |
" <g id=\"text_19\">\r\n", | |
" <!-- FXWO -->\r\n", | |
" <g transform=\"translate(67.103125 40.740187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" <use x=\"224.902344\" xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_84\">\r\n", | |
" <path d=\"M 39.103125 51.918312 \r\n", | |
"L 59.103125 51.918312 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_85\"/>\r\n", | |
" <g id=\"text_20\">\r\n", | |
" <!-- FXRW -->\r\n", | |
" <g transform=\"translate(67.103125 55.418312)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"195.445312\" xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_86\">\r\n", | |
" <path d=\"M 39.103125 66.596437 \r\n", | |
"L 59.103125 66.596437 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_87\"/>\r\n", | |
" <g id=\"text_21\">\r\n", | |
" <!-- FXUS -->\r\n", | |
" <g transform=\"translate(67.103125 70.096437)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"57.519531\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"126.025391\" xlink:href=\"#DejaVuSans-85\"/>\r\n", | |
" <use x=\"199.21875\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"p292d5ae4b6\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"30.103125\" y=\"24.14175\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"# WAPRICE/median\n", | |
"def calc_wdm(df):\n", | |
" return df['WAPRICE'] / df['WAPRICE'].mean()\n", | |
"\n", | |
"for tiker in tikers:\n", | |
" dfs[tiker][tiker] = calc_wdm(dfs[tiker])\n", | |
" \n", | |
"#dfs['FXUS']['FXUS'] = dfs['FXUS']['WAPRICE'] / dfs['FXUS'].loc['2020-1-15':'2020-12-31']['WAPRICE'].mean()\n", | |
"\n", | |
"df_base = dfs['FXIT'][[]]\n", | |
"\n", | |
"def merge_dfs(base):\n", | |
" result = base.copy()\n", | |
" for tiker in tikers:\n", | |
" result = result.merge(dfs[tiker][[tiker]], how='outer', on='TRADEDATE')\n", | |
" result.drop_duplicates(inplace=True)\n", | |
" result = result.resample('D').interpolate(method='time')\n", | |
" return result\n", | |
" \n", | |
"\n", | |
"xxdf = merge_dfs(df_base)\n", | |
"#xxdf.to_parquet(\"D:\\\\data2\\\\Documents\\\\notebooks\\\\all-2020.parquet\", engine='fastparquet')\n", | |
"\n", | |
"xxdf.plot(y='FXUS,FXIT,FXCN,FXDE,FXWO,FXRW'.split(','), kind='line', title='ETF: WAPRICE / median')\n", | |
"xxdf.plot(y='SBER,AFKS,GAZP,MAIL,YNDX'.split(','), kind='line', title='RU: WAPRICE / median');\n", | |
"\n", | |
"xxdf['diff_us'] = xxdf['FXUS'] - xxdf['FXIT']\n", | |
"\n", | |
"xxdf.plot(y='diff_us'.split(','), kind='line', title='FXUS - FXIT')\n", | |
"\n", | |
"xxdf.plot(y='FXIT,YNDX'.split(','), kind='line', title='FXIT & YNDX')\n", | |
"\n", | |
"xxdf.loc['2020-1-15':'2020-12-31'].plot(y='FXWO,FXRW,FXUS'.split(','), kind='line', title='FXUS & FXWO & FXRW');" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"sigm = np.vectorize(lambda x: 1/(1+np.exp(-x)))" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"dfs['FXIT']['SOPEN'] = sigm(dfs['FXIT']['OPEN'] / dfs['FXIT']['OPEN'].median())\n", | |
"dfs['FXIT']['SCLOSE'] = sigm(dfs['FXIT']['CLOSE'] / dfs['FXIT']['CLOSE'].median())\n", | |
"dfs['FXIT']['SWAPRICE'] = sigm(dfs['FXIT']['WAPRICE'] / dfs['FXIT']['WAPRICE'].median())" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"400.991437pt\" version=\"1.1\" viewBox=\"0 0 948.295312 400.991437\" width=\"948.295312pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 400.991437 \r\n", | |
"L 948.295312 400.991437 \r\n", | |
"L 948.295312 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 39.65 350.30175 \r\n", | |
"L 932.45 350.30175 \r\n", | |
"L 932.45 24.14175 \r\n", | |
"L 39.65 24.14175 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 350.30175 \r\n", | |
"L 39.65 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m92f550da45\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"39.65\" xlink:href=\"#m92f550da45\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(33.617187 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(26.925 376.098)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 340.484783 350.30175 \r\n", | |
"L 340.484783 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"340.484783\" xlink:href=\"#m92f550da45\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Aug -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 45.40625 27.984375 \r\n", | |
"Q 45.40625 37.75 41.375 43.109375 \r\n", | |
"Q 37.359375 48.484375 30.078125 48.484375 \r\n", | |
"Q 22.859375 48.484375 18.828125 43.109375 \r\n", | |
"Q 14.796875 37.75 14.796875 27.984375 \r\n", | |
"Q 14.796875 18.265625 18.828125 12.890625 \r\n", | |
"Q 22.859375 7.515625 30.078125 7.515625 \r\n", | |
"Q 37.359375 7.515625 41.375 12.890625 \r\n", | |
"Q 45.40625 18.265625 45.40625 27.984375 \r\n", | |
"z\r\n", | |
"M 54.390625 6.78125 \r\n", | |
"Q 54.390625 -7.171875 48.1875 -13.984375 \r\n", | |
"Q 42 -20.796875 29.203125 -20.796875 \r\n", | |
"Q 24.46875 -20.796875 20.265625 -20.09375 \r\n", | |
"Q 16.0625 -19.390625 12.109375 -17.921875 \r\n", | |
"L 12.109375 -9.1875 \r\n", | |
"Q 16.0625 -11.328125 19.921875 -12.34375 \r\n", | |
"Q 23.78125 -13.375 27.78125 -13.375 \r\n", | |
"Q 36.625 -13.375 41.015625 -8.765625 \r\n", | |
"Q 45.40625 -4.15625 45.40625 5.171875 \r\n", | |
"L 45.40625 9.625 \r\n", | |
"Q 42.625 4.78125 38.28125 2.390625 \r\n", | |
"Q 33.9375 0 27.875 0 \r\n", | |
"Q 17.828125 0 11.671875 7.65625 \r\n", | |
"Q 5.515625 15.328125 5.515625 27.984375 \r\n", | |
"Q 5.515625 40.671875 11.671875 48.328125 \r\n", | |
"Q 17.828125 56 27.875 56 \r\n", | |
"Q 33.9375 56 38.28125 53.609375 \r\n", | |
"Q 42.625 51.21875 45.40625 46.390625 \r\n", | |
"L 45.40625 54.6875 \r\n", | |
"L 54.390625 54.6875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-103\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(330.721501 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"131.787109\" xlink:href=\"#DejaVuSans-103\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 641.319565 350.30175 \r\n", | |
"L 641.319565 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"641.319565\" xlink:href=\"#m92f550da45\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Sep -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" <path d=\"M 56.203125 29.59375 \r\n", | |
"L 56.203125 25.203125 \r\n", | |
"L 14.890625 25.203125 \r\n", | |
"Q 15.484375 15.921875 20.484375 11.0625 \r\n", | |
"Q 25.484375 6.203125 34.421875 6.203125 \r\n", | |
"Q 39.59375 6.203125 44.453125 7.46875 \r\n", | |
"Q 49.3125 8.734375 54.109375 11.28125 \r\n", | |
"L 54.109375 2.78125 \r\n", | |
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n", | |
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n", | |
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n", | |
"Q 5.515625 13.8125 5.515625 26.8125 \r\n", | |
"Q 5.515625 40.234375 12.765625 48.109375 \r\n", | |
"Q 20.015625 56 32.328125 56 \r\n", | |
"Q 43.359375 56 49.78125 48.890625 \r\n", | |
"Q 56.203125 41.796875 56.203125 29.59375 \r\n", | |
"z\r\n", | |
"M 47.21875 32.234375 \r\n", | |
"Q 47.125 39.59375 43.09375 43.984375 \r\n", | |
"Q 39.0625 48.390625 32.421875 48.390625 \r\n", | |
"Q 24.90625 48.390625 20.390625 44.140625 \r\n", | |
"Q 15.875 39.890625 15.1875 32.171875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-101\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(631.894565 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-101\"/>\r\n", | |
" <use x=\"125\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 932.45 350.30175 \r\n", | |
"L 932.45 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"932.45\" xlink:href=\"#m92f550da45\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(923.804687 364.900187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"m975457b54d\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"88.171739\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"156.102174\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"224.032609\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"291.963043\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"359.893478\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"427.823913\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"495.754348\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"563.684783\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"631.615217\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"699.545652\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"767.476087\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"835.406522\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"903.336957\" xlink:href=\"#m975457b54d\" y=\"350.30175\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(449.531562 391.295812)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 293.823225 \r\n", | |
"L 932.45 293.823225 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m51b3e87467\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"39.65\" xlink:href=\"#m51b3e87467\" y=\"293.823225\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- 7500 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 8.203125 72.90625 \r\n", | |
"L 55.078125 72.90625 \r\n", | |
"L 55.078125 68.703125 \r\n", | |
"L 28.609375 0 \r\n", | |
"L 18.3125 0 \r\n", | |
"L 43.21875 64.59375 \r\n", | |
"L 8.203125 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-55\"/>\r\n", | |
" <path d=\"M 10.796875 72.90625 \r\n", | |
"L 49.515625 72.90625 \r\n", | |
"L 49.515625 64.59375 \r\n", | |
"L 19.828125 64.59375 \r\n", | |
"L 19.828125 46.734375 \r\n", | |
"Q 21.96875 47.46875 24.109375 47.828125 \r\n", | |
"Q 26.265625 48.1875 28.421875 48.1875 \r\n", | |
"Q 40.625 48.1875 47.75 41.5 \r\n", | |
"Q 54.890625 34.8125 54.890625 23.390625 \r\n", | |
"Q 54.890625 11.625 47.5625 5.09375 \r\n", | |
"Q 40.234375 -1.421875 26.90625 -1.421875 \r\n", | |
"Q 22.3125 -1.421875 17.546875 -0.640625 \r\n", | |
"Q 12.796875 0.140625 7.71875 1.703125 \r\n", | |
"L 7.71875 11.625 \r\n", | |
"Q 12.109375 9.234375 16.796875 8.0625 \r\n", | |
"Q 21.484375 6.890625 26.703125 6.890625 \r\n", | |
"Q 35.15625 6.890625 40.078125 11.328125 \r\n", | |
"Q 45.015625 15.765625 45.015625 23.390625 \r\n", | |
"Q 45.015625 31 40.078125 35.4375 \r\n", | |
"Q 35.15625 39.890625 26.703125 39.890625 \r\n", | |
"Q 22.75 39.890625 18.8125 39.015625 \r\n", | |
"Q 14.890625 38.140625 10.796875 36.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-53\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 297.622444)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-55\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 230.520686 \r\n", | |
"L 932.45 230.520686 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"39.65\" xlink:href=\"#m51b3e87467\" y=\"230.520686\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- 8000 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 31.78125 34.625 \r\n", | |
"Q 24.75 34.625 20.71875 30.859375 \r\n", | |
"Q 16.703125 27.09375 16.703125 20.515625 \r\n", | |
"Q 16.703125 13.921875 20.71875 10.15625 \r\n", | |
"Q 24.75 6.390625 31.78125 6.390625 \r\n", | |
"Q 38.8125 6.390625 42.859375 10.171875 \r\n", | |
"Q 46.921875 13.96875 46.921875 20.515625 \r\n", | |
"Q 46.921875 27.09375 42.890625 30.859375 \r\n", | |
"Q 38.875 34.625 31.78125 34.625 \r\n", | |
"z\r\n", | |
"M 21.921875 38.8125 \r\n", | |
"Q 15.578125 40.375 12.03125 44.71875 \r\n", | |
"Q 8.5 49.078125 8.5 55.328125 \r\n", | |
"Q 8.5 64.0625 14.71875 69.140625 \r\n", | |
"Q 20.953125 74.21875 31.78125 74.21875 \r\n", | |
"Q 42.671875 74.21875 48.875 69.140625 \r\n", | |
"Q 55.078125 64.0625 55.078125 55.328125 \r\n", | |
"Q 55.078125 49.078125 51.53125 44.71875 \r\n", | |
"Q 48 40.375 41.703125 38.8125 \r\n", | |
"Q 48.828125 37.15625 52.796875 32.3125 \r\n", | |
"Q 56.78125 27.484375 56.78125 20.515625 \r\n", | |
"Q 56.78125 9.90625 50.3125 4.234375 \r\n", | |
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.734375 -1.421875 13.25 4.234375 \r\n", | |
"Q 6.78125 9.90625 6.78125 20.515625 \r\n", | |
"Q 6.78125 27.484375 10.78125 32.3125 \r\n", | |
"Q 14.796875 37.15625 21.921875 38.8125 \r\n", | |
"z\r\n", | |
"M 18.3125 54.390625 \r\n", | |
"Q 18.3125 48.734375 21.84375 45.5625 \r\n", | |
"Q 25.390625 42.390625 31.78125 42.390625 \r\n", | |
"Q 38.140625 42.390625 41.71875 45.5625 \r\n", | |
"Q 45.3125 48.734375 45.3125 54.390625 \r\n", | |
"Q 45.3125 60.0625 41.71875 63.234375 \r\n", | |
"Q 38.140625 66.40625 31.78125 66.40625 \r\n", | |
"Q 25.390625 66.40625 21.84375 63.234375 \r\n", | |
"Q 18.3125 60.0625 18.3125 54.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-56\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 234.319905)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 167.218148 \r\n", | |
"L 932.45 167.218148 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"39.65\" xlink:href=\"#m51b3e87467\" y=\"167.218148\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- 8500 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 171.017367)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 103.915609 \r\n", | |
"L 932.45 103.915609 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"39.65\" xlink:href=\"#m51b3e87467\" y=\"103.915609\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- 9000 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.984375 1.515625 \r\n", | |
"L 10.984375 10.5 \r\n", | |
"Q 14.703125 8.734375 18.5 7.8125 \r\n", | |
"Q 22.3125 6.890625 25.984375 6.890625 \r\n", | |
"Q 35.75 6.890625 40.890625 13.453125 \r\n", | |
"Q 46.046875 20.015625 46.78125 33.40625 \r\n", | |
"Q 43.953125 29.203125 39.59375 26.953125 \r\n", | |
"Q 35.25 24.703125 29.984375 24.703125 \r\n", | |
"Q 19.046875 24.703125 12.671875 31.3125 \r\n", | |
"Q 6.296875 37.9375 6.296875 49.421875 \r\n", | |
"Q 6.296875 60.640625 12.9375 67.421875 \r\n", | |
"Q 19.578125 74.21875 30.609375 74.21875 \r\n", | |
"Q 43.265625 74.21875 49.921875 64.515625 \r\n", | |
"Q 56.59375 54.828125 56.59375 36.375 \r\n", | |
"Q 56.59375 19.140625 48.40625 8.859375 \r\n", | |
"Q 40.234375 -1.421875 26.421875 -1.421875 \r\n", | |
"Q 22.703125 -1.421875 18.890625 -0.6875 \r\n", | |
"Q 15.09375 0.046875 10.984375 1.515625 \r\n", | |
"z\r\n", | |
"M 30.609375 32.421875 \r\n", | |
"Q 37.25 32.421875 41.125 36.953125 \r\n", | |
"Q 45.015625 41.5 45.015625 49.421875 \r\n", | |
"Q 45.015625 57.28125 41.125 61.84375 \r\n", | |
"Q 37.25 66.40625 30.609375 66.40625 \r\n", | |
"Q 23.96875 66.40625 20.09375 61.84375 \r\n", | |
"Q 16.21875 57.28125 16.21875 49.421875 \r\n", | |
"Q 16.21875 41.5 20.09375 36.953125 \r\n", | |
"Q 23.96875 32.421875 30.609375 32.421875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-57\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 107.714828)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-57\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 40.613071 \r\n", | |
"L 932.45 40.613071 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"39.65\" xlink:href=\"#m51b3e87467\" y=\"40.613071\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- 9500 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 44.412289)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-57\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-53\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 335.476295 \r\n", | |
"L 49.354348 321.423132 \r\n", | |
"L 59.058696 306.610338 \r\n", | |
"L 68.763043 297.958991 \r\n", | |
"L 78.467391 289.307644 \r\n", | |
"L 88.171739 280.656297 \r\n", | |
"L 97.876087 255.968307 \r\n", | |
"L 107.580435 272.933387 \r\n", | |
"L 117.284783 283.568214 \r\n", | |
"L 126.98913 281.162717 \r\n", | |
"L 136.693478 272.764581 \r\n", | |
"L 146.397826 264.366444 \r\n", | |
"L 156.102174 255.968307 \r\n", | |
"L 165.806522 274.832463 \r\n", | |
"L 175.51087 286.859946 \r\n", | |
"L 185.215217 283.821424 \r\n", | |
"L 194.919565 283.694819 \r\n", | |
"L 204.623913 284.116836 \r\n", | |
"L 214.328261 284.538853 \r\n", | |
"L 224.032609 284.96087 \r\n", | |
"L 233.736957 267.615974 \r\n", | |
"L 243.441304 263.438007 \r\n", | |
"L 253.145652 265.970108 \r\n", | |
"L 262.85 279.263641 \r\n", | |
"L 272.554348 281.373726 \r\n", | |
"L 282.258696 283.48381 \r\n", | |
"L 291.963043 285.593895 \r\n", | |
"L 301.667391 281.415927 \r\n", | |
"L 311.371739 274.959069 \r\n", | |
"L 321.076087 268.50221 \r\n", | |
"L 330.780435 248.245397 \r\n", | |
"L 340.484783 237.315159 \r\n", | |
"L 350.18913 226.384921 \r\n", | |
"L 359.893478 215.454682 \r\n", | |
"L 369.597826 200.135468 \r\n", | |
"L 379.302174 203.4272 \r\n", | |
"L 389.006522 206.212512 \r\n", | |
"L 398.71087 185.575884 \r\n", | |
"L 408.415217 181.98874 \r\n", | |
"L 418.119565 178.401596 \r\n", | |
"L 427.823913 174.814452 \r\n", | |
"L 437.528261 195.071265 \r\n", | |
"L 447.232609 217.860179 \r\n", | |
"L 456.936957 192.665768 \r\n", | |
"L 466.641304 194.94466 \r\n", | |
"L 476.345652 198.742812 \r\n", | |
"L 486.05 202.540964 \r\n", | |
"L 495.754348 206.339117 \r\n", | |
"L 505.458696 191.779533 \r\n", | |
"L 515.163043 186.208909 \r\n", | |
"L 524.867391 185.069464 \r\n", | |
"L 534.571739 162.153945 \r\n", | |
"L 544.276087 154.135623 \r\n", | |
"L 553.980435 146.117302 \r\n", | |
"L 563.684783 138.09898 \r\n", | |
"L 573.38913 121.64032 \r\n", | |
"L 583.093478 113.15778 \r\n", | |
"L 592.797826 60.869883 \r\n", | |
"L 602.502174 82.392746 \r\n", | |
"L 612.206522 83.363385 \r\n", | |
"L 621.91087 84.334024 \r\n", | |
"L 631.615217 85.304663 \r\n", | |
"L 641.319565 93.280783 \r\n", | |
"L 651.023913 76.062492 \r\n", | |
"L 660.728261 38.967205 \r\n", | |
"L 670.432609 110.752283 \r\n", | |
"L 680.136957 124.256825 \r\n", | |
"L 689.841304 137.761366 \r\n", | |
"L 699.545652 151.265908 \r\n", | |
"L 709.25 104.92845 \r\n", | |
"L 718.954348 154.81085 \r\n", | |
"L 728.658696 135.187063 \r\n", | |
"L 738.363043 154.55764 \r\n", | |
"L 748.067391 157.596162 \r\n", | |
"L 757.771739 160.634684 \r\n", | |
"L 767.476087 163.673206 \r\n", | |
"L 777.180435 149.999857 \r\n", | |
"L 786.884783 143.796209 \r\n", | |
"L 796.58913 174.941058 \r\n", | |
"L 806.293478 179.75205 \r\n", | |
"L 815.997826 181.904337 \r\n", | |
"L 825.702174 184.056623 \r\n", | |
"L 835.406522 186.208909 \r\n", | |
"L 845.11087 189.247431 \r\n", | |
"L 854.815217 158.988818 \r\n", | |
"L 864.519565 185.196069 \r\n", | |
"L 874.223913 163.419995 \r\n", | |
"L 883.928261 151.687925 \r\n", | |
"L 893.632609 139.955854 \r\n", | |
"L 903.336957 128.223784 \r\n", | |
"L 913.041304 102.902769 \r\n", | |
"L 922.745652 95.179859 \r\n", | |
"L 932.45 103.915609 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 315.725903 \r\n", | |
"L 49.354348 309.39565 \r\n", | |
"L 59.058696 299.520454 \r\n", | |
"L 68.763043 292.135157 \r\n", | |
"L 78.467391 284.749861 \r\n", | |
"L 88.171739 277.364565 \r\n", | |
"L 97.876087 272.933387 \r\n", | |
"L 107.580435 283.694819 \r\n", | |
"L 117.284783 286.733341 \r\n", | |
"L 126.98913 277.99759 \r\n", | |
"L 136.693478 272.342564 \r\n", | |
"L 146.397826 266.687537 \r\n", | |
"L 156.102174 261.03251 \r\n", | |
"L 165.806522 293.44341 \r\n", | |
"L 175.51087 285.97371 \r\n", | |
"L 185.215217 292.177359 \r\n", | |
"L 194.919565 280.403087 \r\n", | |
"L 204.623913 276.647136 \r\n", | |
"L 214.328261 272.891186 \r\n", | |
"L 224.032609 269.135235 \r\n", | |
"L 233.736957 272.173757 \r\n", | |
"L 243.441304 269.51505 \r\n", | |
"L 253.145652 265.463688 \r\n", | |
"L 262.85 286.353525 \r\n", | |
"L 272.554348 287.155358 \r\n", | |
"L 282.258696 287.95719 \r\n", | |
"L 291.963043 288.759022 \r\n", | |
"L 301.667391 270.401286 \r\n", | |
"L 311.371739 271.034311 \r\n", | |
"L 321.076087 255.461887 \r\n", | |
"L 330.780435 226.849139 \r\n", | |
"L 340.484783 219.843658 \r\n", | |
"L 350.18913 212.838177 \r\n", | |
"L 359.893478 205.832696 \r\n", | |
"L 369.597826 205.199671 \r\n", | |
"L 379.302174 207.731773 \r\n", | |
"L 389.006522 195.577685 \r\n", | |
"L 398.71087 182.157547 \r\n", | |
"L 408.415217 189.627246 \r\n", | |
"L 418.119565 197.096946 \r\n", | |
"L 427.823913 204.566646 \r\n", | |
"L 437.528261 211.529925 \r\n", | |
"L 447.232609 198.869417 \r\n", | |
"L 456.936957 194.69145 \r\n", | |
"L 466.641304 205.326276 \r\n", | |
"L 476.345652 200.219871 \r\n", | |
"L 486.05 195.113466 \r\n", | |
"L 495.754348 190.007062 \r\n", | |
"L 505.458696 189.627246 \r\n", | |
"L 515.163043 181.524522 \r\n", | |
"L 524.867391 170.76309 \r\n", | |
"L 534.571739 141.897132 \r\n", | |
"L 544.276087 138.816409 \r\n", | |
"L 553.980435 135.735685 \r\n", | |
"L 563.684783 132.654962 \r\n", | |
"L 573.38913 121.89353 \r\n", | |
"L 583.093478 83.785402 \r\n", | |
"L 592.797826 82.392746 \r\n", | |
"L 602.502174 93.913808 \r\n", | |
"L 612.206522 94.504632 \r\n", | |
"L 621.91087 95.095455 \r\n", | |
"L 631.615217 95.686279 \r\n", | |
"L 641.319565 89.862446 \r\n", | |
"L 651.023913 58.717597 \r\n", | |
"L 660.728261 87.710159 \r\n", | |
"L 670.432609 155.823691 \r\n", | |
"L 680.136957 144.007217 \r\n", | |
"L 689.841304 132.190743 \r\n", | |
"L 699.545652 120.374269 \r\n", | |
"L 709.25 141.897132 \r\n", | |
"L 718.954348 140.757687 \r\n", | |
"L 728.658696 138.478795 \r\n", | |
"L 738.363043 173.548402 \r\n", | |
"L 748.067391 167.007139 \r\n", | |
"L 757.771739 160.465877 \r\n", | |
"L 767.476087 153.924615 \r\n", | |
"L 777.180435 144.555839 \r\n", | |
"L 786.884783 152.025539 \r\n", | |
"L 796.58913 180.891496 \r\n", | |
"L 806.293478 186.208909 \r\n", | |
"L 815.997826 189.163028 \r\n", | |
"L 825.702174 192.117146 \r\n", | |
"L 835.406522 195.071265 \r\n", | |
"L 845.11087 169.370434 \r\n", | |
"L 854.815217 160.001658 \r\n", | |
"L 864.519565 161.520919 \r\n", | |
"L 874.223913 142.150343 \r\n", | |
"L 883.928261 130.249465 \r\n", | |
"L 893.632609 118.348588 \r\n", | |
"L 903.336957 106.447711 \r\n", | |
"L 913.041304 94.800044 \r\n", | |
"L 922.745652 103.915609 \r\n", | |
"L 932.45 97.71196 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <path clip-path=\"url(#p881ebd92ba)\" d=\"M 39.65 324.081839 \r\n", | |
"L 49.354348 309.775465 \r\n", | |
"L 59.058696 305.470892 \r\n", | |
"L 68.763043 298.169999 \r\n", | |
"L 78.467391 290.869107 \r\n", | |
"L 88.171739 283.568214 \r\n", | |
"L 97.876087 279.010431 \r\n", | |
"L 107.580435 289.645257 \r\n", | |
"L 117.284783 279.137036 \r\n", | |
"L 126.98913 278.504011 \r\n", | |
"L 136.693478 274.283841 \r\n", | |
"L 146.397826 270.063672 \r\n", | |
"L 156.102174 265.843503 \r\n", | |
"L 165.806522 292.050754 \r\n", | |
"L 175.51087 278.377406 \r\n", | |
"L 185.215217 287.366366 \r\n", | |
"L 194.919565 282.048953 \r\n", | |
"L 204.623913 280.951709 \r\n", | |
"L 214.328261 279.854465 \r\n", | |
"L 224.032609 278.757221 \r\n", | |
"L 233.736957 259.386644 \r\n", | |
"L 243.441304 273.693018 \r\n", | |
"L 253.145652 264.071032 \r\n", | |
"L 262.85 293.063595 \r\n", | |
"L 272.554348 291.966351 \r\n", | |
"L 282.258696 290.869107 \r\n", | |
"L 291.963043 289.771863 \r\n", | |
"L 301.667391 276.73154 \r\n", | |
"L 311.371739 276.858145 \r\n", | |
"L 321.076087 263.438007 \r\n", | |
"L 330.780435 231.913342 \r\n", | |
"L 340.484783 224.739055 \r\n", | |
"L 350.18913 217.564767 \r\n", | |
"L 359.893478 210.390479 \r\n", | |
"L 369.597826 201.148308 \r\n", | |
"L 379.302174 201.781334 \r\n", | |
"L 389.006522 199.375837 \r\n", | |
"L 398.71087 180.891496 \r\n", | |
"L 408.415217 184.858455 \r\n", | |
"L 418.119565 188.825414 \r\n", | |
"L 427.823913 192.792373 \r\n", | |
"L 437.528261 203.4272 \r\n", | |
"L 447.232609 211.783135 \r\n", | |
"L 456.936957 196.717131 \r\n", | |
"L 466.641304 200.515283 \r\n", | |
"L 476.345652 199.038224 \r\n", | |
"L 486.05 197.561165 \r\n", | |
"L 495.754348 196.084105 \r\n", | |
"L 505.458696 191.019902 \r\n", | |
"L 515.163043 183.170388 \r\n", | |
"L 524.867391 180.638286 \r\n", | |
"L 534.571739 153.038379 \r\n", | |
"L 544.276087 146.370512 \r\n", | |
"L 553.980435 139.702644 \r\n", | |
"L 563.684783 133.034777 \r\n", | |
"L 573.38913 125.185262 \r\n", | |
"L 583.093478 103.662399 \r\n", | |
"L 592.797826 84.291822 \r\n", | |
"L 602.502174 92.900967 \r\n", | |
"L 612.206522 92.900967 \r\n", | |
"L 621.91087 92.900967 \r\n", | |
"L 631.615217 92.900967 \r\n", | |
"L 641.319565 112.018334 \r\n", | |
"L 651.023913 60.996488 \r\n", | |
"L 660.728261 63.52859 \r\n", | |
"L 670.432609 126.831128 \r\n", | |
"L 680.136957 127.421952 \r\n", | |
"L 689.841304 128.012776 \r\n", | |
"L 699.545652 128.603599 \r\n", | |
"L 709.25 133.414592 \r\n", | |
"L 718.954348 149.873252 \r\n", | |
"L 728.658696 139.111821 \r\n", | |
"L 738.363043 164.432836 \r\n", | |
"L 748.067391 163.29339 \r\n", | |
"L 757.771739 162.153945 \r\n", | |
"L 767.476087 161.014499 \r\n", | |
"L 777.180435 148.733807 \r\n", | |
"L 786.884783 144.935654 \r\n", | |
"L 796.58913 179.24563 \r\n", | |
"L 806.293478 176.840134 \r\n", | |
"L 815.997826 184.605245 \r\n", | |
"L 825.702174 192.370356 \r\n", | |
"L 835.406522 200.135468 \r\n", | |
"L 845.11087 174.687847 \r\n", | |
"L 854.815217 151.265908 \r\n", | |
"L 864.519565 174.181427 \r\n", | |
"L 874.223913 154.937455 \r\n", | |
"L 883.928261 141.221905 \r\n", | |
"L 893.632609 127.506355 \r\n", | |
"L 903.336957 113.790805 \r\n", | |
"L 913.041304 93.027573 \r\n", | |
"L 922.745652 109.106417 \r\n", | |
"L 932.45 100.370667 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 39.65 350.30175 \r\n", | |
"L 39.65 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 932.45 350.30175 \r\n", | |
"L 932.45 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 39.65 350.30175 \r\n", | |
"L 932.45 350.30175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 39.65 24.14175 \r\n", | |
"L 932.45 24.14175 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- blah -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"M 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 75.984375 \r\n", | |
"L 18.109375 75.984375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-98\"/>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 75.984375 \r\n", | |
"L 18.109375 75.984375 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-104\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(470.503625 18.14175)scale(0.144 -0.144)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-98\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" <use x=\"91.259766\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"152.539062\" xlink:href=\"#DejaVuSans-104\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 847.5 76.176125 \r\n", | |
"L 925.45 76.176125 \r\n", | |
"Q 927.45 76.176125 927.45 74.176125 \r\n", | |
"L 927.45 31.14175 \r\n", | |
"Q 927.45 29.14175 925.45 29.14175 \r\n", | |
"L 847.5 29.14175 \r\n", | |
"Q 845.5 29.14175 845.5 31.14175 \r\n", | |
"L 845.5 74.176125 \r\n", | |
"Q 845.5 76.176125 847.5 76.176125 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <path d=\"M 849.5 37.240187 \r\n", | |
"L 869.5 37.240187 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_36\"/>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- OPEN -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 37.40625 \r\n", | |
"L 32.078125 37.40625 \r\n", | |
"Q 38.96875 37.40625 42.71875 40.96875 \r\n", | |
"Q 46.484375 44.53125 46.484375 51.125 \r\n", | |
"Q 46.484375 57.671875 42.71875 61.234375 \r\n", | |
"Q 38.96875 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.34375 72.90625 50.609375 67.359375 \r\n", | |
"Q 56.890625 61.8125 56.890625 51.125 \r\n", | |
"Q 56.890625 40.328125 50.609375 34.8125 \r\n", | |
"Q 44.34375 29.296875 32.078125 29.296875 \r\n", | |
"L 19.671875 29.296875 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-80\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(877.5 40.740187)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-80\"/>\r\n", | |
" <use x=\"139.013672\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"202.197266\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <path d=\"M 849.5 51.918312 \r\n", | |
"L 869.5 51.918312 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_38\"/>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- CLOSE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 64.40625 67.28125 \r\n", | |
"L 64.40625 56.890625 \r\n", | |
"Q 59.421875 61.53125 53.78125 63.8125 \r\n", | |
"Q 48.140625 66.109375 41.796875 66.109375 \r\n", | |
"Q 29.296875 66.109375 22.65625 58.46875 \r\n", | |
"Q 16.015625 50.828125 16.015625 36.375 \r\n", | |
"Q 16.015625 21.96875 22.65625 14.328125 \r\n", | |
"Q 29.296875 6.6875 41.796875 6.6875 \r\n", | |
"Q 48.140625 6.6875 53.78125 8.984375 \r\n", | |
"Q 59.421875 11.28125 64.40625 15.921875 \r\n", | |
"L 64.40625 5.609375 \r\n", | |
"Q 59.234375 2.09375 53.4375 0.328125 \r\n", | |
"Q 47.65625 -1.421875 41.21875 -1.421875 \r\n", | |
"Q 24.65625 -1.421875 15.125 8.703125 \r\n", | |
"Q 5.609375 18.84375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.953125 15.125 64.078125 \r\n", | |
"Q 24.65625 74.21875 41.21875 74.21875 \r\n", | |
"Q 47.75 74.21875 53.53125 72.484375 \r\n", | |
"Q 59.328125 70.75 64.40625 67.28125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-67\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 55.171875 8.296875 \r\n", | |
"L 55.171875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-76\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(877.5 55.418312)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n", | |
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-76\"/>\r\n", | |
" <use x=\"125.490234\" xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"204.201172\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"267.677734\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <path d=\"M 849.5 66.596437 \r\n", | |
"L 869.5 66.596437 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_40\"/>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- WAPRICE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 3.328125 72.90625 \r\n", | |
"L 13.28125 72.90625 \r\n", | |
"L 28.609375 11.28125 \r\n", | |
"L 43.890625 72.90625 \r\n", | |
"L 54.984375 72.90625 \r\n", | |
"L 70.3125 11.28125 \r\n", | |
"L 85.59375 72.90625 \r\n", | |
"L 95.609375 72.90625 \r\n", | |
"L 77.296875 0 \r\n", | |
"L 64.890625 0 \r\n", | |
"L 49.515625 63.28125 \r\n", | |
"L 33.984375 0 \r\n", | |
"L 21.578125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-87\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-73\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(877.5 70.096437)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-87\"/>\r\n", | |
" <use x=\"98.798828\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"167.207031\" xlink:href=\"#DejaVuSans-80\"/>\r\n", | |
" <use x=\"227.509766\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"296.992188\" xlink:href=\"#DejaVuSans-73\"/>\r\n", | |
" <use x=\"326.484375\" xlink:href=\"#DejaVuSans-67\"/>\r\n", | |
" <use x=\"396.308594\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"p881ebd92ba\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"39.65\" y=\"24.14175\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"dfs['FXIT'].loc['2020-7-1':'2020-10-1'].plot(y='OPEN,CLOSE,WAPRICE'.split(','), kind='line', title='blah');" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 14, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"407.4501pt\" version=\"1.1\" viewBox=\"0 0 930.103125 407.4501\" width=\"930.103125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 407.4501 \r\n", | |
"L 930.103125 407.4501 \r\n", | |
"L 930.103125 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 30.103125 334.364788 \r\n", | |
"L 922.903125 334.364788 \r\n", | |
"L 922.903125 8.204788 \r\n", | |
"L 30.103125 8.204788 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 334.364788 \r\n", | |
"L 30.103125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m2abc4ac1f9\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m2abc4ac1f9\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 327.703125 334.364788 \r\n", | |
"L 327.703125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"327.703125\" xlink:href=\"#m2abc4ac1f9\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(327.703125 348.963225)scale(0.1 -0.1)\"/>\r\n", | |
" <!-- -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(327.703125 360.161038)scale(0.1 -0.1)\"/>\r\n", | |
" <!-- Aug -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 45.40625 27.984375 \r\n", | |
"Q 45.40625 37.75 41.375 43.109375 \r\n", | |
"Q 37.359375 48.484375 30.078125 48.484375 \r\n", | |
"Q 22.859375 48.484375 18.828125 43.109375 \r\n", | |
"Q 14.796875 37.75 14.796875 27.984375 \r\n", | |
"Q 14.796875 18.265625 18.828125 12.890625 \r\n", | |
"Q 22.859375 7.515625 30.078125 7.515625 \r\n", | |
"Q 37.359375 7.515625 41.375 12.890625 \r\n", | |
"Q 45.40625 18.265625 45.40625 27.984375 \r\n", | |
"z\r\n", | |
"M 54.390625 6.78125 \r\n", | |
"Q 54.390625 -7.171875 48.1875 -13.984375 \r\n", | |
"Q 42 -20.796875 29.203125 -20.796875 \r\n", | |
"Q 24.46875 -20.796875 20.265625 -20.09375 \r\n", | |
"Q 16.0625 -19.390625 12.109375 -17.921875 \r\n", | |
"L 12.109375 -9.1875 \r\n", | |
"Q 16.0625 -11.328125 19.921875 -12.34375 \r\n", | |
"Q 23.78125 -13.375 27.78125 -13.375 \r\n", | |
"Q 36.625 -13.375 41.015625 -8.765625 \r\n", | |
"Q 45.40625 -4.15625 45.40625 5.171875 \r\n", | |
"L 45.40625 9.625 \r\n", | |
"Q 42.625 4.78125 38.28125 2.390625 \r\n", | |
"Q 33.9375 0 27.875 0 \r\n", | |
"Q 17.828125 0 11.671875 7.65625 \r\n", | |
"Q 5.515625 15.328125 5.515625 27.984375 \r\n", | |
"Q 5.515625 40.671875 11.671875 48.328125 \r\n", | |
"Q 17.828125 56 27.875 56 \r\n", | |
"Q 33.9375 56 38.28125 53.609375 \r\n", | |
"Q 42.625 51.21875 45.40625 46.390625 \r\n", | |
"L 45.40625 54.6875 \r\n", | |
"L 54.390625 54.6875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-103\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(317.939844 371.35885)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"131.787109\" xlink:href=\"#DejaVuSans-103\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(314.978125 382.556663)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 635.223125 334.364788 \r\n", | |
"L 635.223125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"635.223125\" xlink:href=\"#m2abc4ac1f9\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(635.223125 348.963225)scale(0.1 -0.1)\"/>\r\n", | |
" <!-- -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(635.223125 360.161038)scale(0.1 -0.1)\"/>\r\n", | |
" <!-- Sep -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" <path d=\"M 56.203125 29.59375 \r\n", | |
"L 56.203125 25.203125 \r\n", | |
"L 14.890625 25.203125 \r\n", | |
"Q 15.484375 15.921875 20.484375 11.0625 \r\n", | |
"Q 25.484375 6.203125 34.421875 6.203125 \r\n", | |
"Q 39.59375 6.203125 44.453125 7.46875 \r\n", | |
"Q 49.3125 8.734375 54.109375 11.28125 \r\n", | |
"L 54.109375 2.78125 \r\n", | |
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n", | |
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n", | |
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n", | |
"Q 5.515625 13.8125 5.515625 26.8125 \r\n", | |
"Q 5.515625 40.234375 12.765625 48.109375 \r\n", | |
"Q 20.015625 56 32.328125 56 \r\n", | |
"Q 43.359375 56 49.78125 48.890625 \r\n", | |
"Q 56.203125 41.796875 56.203125 29.59375 \r\n", | |
"z\r\n", | |
"M 47.21875 32.234375 \r\n", | |
"Q 47.125 39.59375 43.09375 43.984375 \r\n", | |
"Q 39.0625 48.390625 32.421875 48.390625 \r\n", | |
"Q 24.90625 48.390625 20.390625 44.140625 \r\n", | |
"Q 15.875 39.890625 15.1875 32.171875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-101\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(625.798125 371.35885)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-101\"/>\r\n", | |
" <use x=\"125\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 922.903125 334.364788 \r\n", | |
"L 922.903125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"922.903125\" xlink:href=\"#m2abc4ac1f9\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"me3e0c1d65c\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"40.023125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"49.943125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"59.863125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"69.783125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- 06 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 33.015625 40.375 \r\n", | |
"Q 26.375 40.375 22.484375 35.828125 \r\n", | |
"Q 18.609375 31.296875 18.609375 23.390625 \r\n", | |
"Q 18.609375 15.53125 22.484375 10.953125 \r\n", | |
"Q 26.375 6.390625 33.015625 6.390625 \r\n", | |
"Q 39.65625 6.390625 43.53125 10.953125 \r\n", | |
"Q 47.40625 15.53125 47.40625 23.390625 \r\n", | |
"Q 47.40625 31.296875 43.53125 35.828125 \r\n", | |
"Q 39.65625 40.375 33.015625 40.375 \r\n", | |
"z\r\n", | |
"M 52.59375 71.296875 \r\n", | |
"L 52.59375 62.3125 \r\n", | |
"Q 48.875 64.0625 45.09375 64.984375 \r\n", | |
"Q 41.3125 65.921875 37.59375 65.921875 \r\n", | |
"Q 27.828125 65.921875 22.671875 59.328125 \r\n", | |
"Q 17.53125 52.734375 16.796875 39.40625 \r\n", | |
"Q 19.671875 43.65625 24.015625 45.921875 \r\n", | |
"Q 28.375 48.1875 33.59375 48.1875 \r\n", | |
"Q 44.578125 48.1875 50.953125 41.515625 \r\n", | |
"Q 57.328125 34.859375 57.328125 23.390625 \r\n", | |
"Q 57.328125 12.15625 50.6875 5.359375 \r\n", | |
"Q 44.046875 -1.421875 33.015625 -1.421875 \r\n", | |
"Q 20.359375 -1.421875 13.671875 8.265625 \r\n", | |
"Q 6.984375 17.96875 6.984375 36.375 \r\n", | |
"Q 6.984375 53.65625 15.1875 63.9375 \r\n", | |
"Q 23.390625 74.21875 37.203125 74.21875 \r\n", | |
"Q 40.921875 74.21875 44.703125 73.484375 \r\n", | |
"Q 48.484375 72.75 52.59375 71.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-54\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(63.420625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"79.703125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"89.623125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"99.543125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"109.463125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"119.383125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"129.303125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"139.223125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- 13 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" <path d=\"M 40.578125 39.3125 \r\n", | |
"Q 47.65625 37.796875 51.625 33 \r\n", | |
"Q 55.609375 28.21875 55.609375 21.1875 \r\n", | |
"Q 55.609375 10.40625 48.1875 4.484375 \r\n", | |
"Q 40.765625 -1.421875 27.09375 -1.421875 \r\n", | |
"Q 22.515625 -1.421875 17.65625 -0.515625 \r\n", | |
"Q 12.796875 0.390625 7.625 2.203125 \r\n", | |
"L 7.625 11.71875 \r\n", | |
"Q 11.71875 9.328125 16.59375 8.109375 \r\n", | |
"Q 21.484375 6.890625 26.8125 6.890625 \r\n", | |
"Q 36.078125 6.890625 40.9375 10.546875 \r\n", | |
"Q 45.796875 14.203125 45.796875 21.1875 \r\n", | |
"Q 45.796875 27.640625 41.28125 31.265625 \r\n", | |
"Q 36.765625 34.90625 28.71875 34.90625 \r\n", | |
"L 20.21875 34.90625 \r\n", | |
"L 20.21875 43.015625 \r\n", | |
"L 29.109375 43.015625 \r\n", | |
"Q 36.375 43.015625 40.234375 45.921875 \r\n", | |
"Q 44.09375 48.828125 44.09375 54.296875 \r\n", | |
"Q 44.09375 59.90625 40.109375 62.90625 \r\n", | |
"Q 36.140625 65.921875 28.71875 65.921875 \r\n", | |
"Q 24.65625 65.921875 20.015625 65.03125 \r\n", | |
"Q 15.375 64.15625 9.8125 62.3125 \r\n", | |
"L 9.8125 71.09375 \r\n", | |
"Q 15.4375 72.65625 20.34375 73.4375 \r\n", | |
"Q 25.25 74.21875 29.59375 74.21875 \r\n", | |
"Q 40.828125 74.21875 47.359375 69.109375 \r\n", | |
"Q 53.90625 64.015625 53.90625 55.328125 \r\n", | |
"Q 53.90625 49.265625 50.4375 45.09375 \r\n", | |
"Q 46.96875 40.921875 40.578125 39.3125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-51\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(132.860625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-51\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"149.143125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"159.063125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"168.983125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"178.903125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"188.823125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"198.743125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"208.663125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- 20 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(202.300625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"218.583125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"228.503125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_25\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"238.423125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_26\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"248.343125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_27\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"258.263125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_28\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"268.183125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_29\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"278.103125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- 27 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 8.203125 72.90625 \r\n", | |
"L 55.078125 72.90625 \r\n", | |
"L 55.078125 68.703125 \r\n", | |
"L 28.609375 0 \r\n", | |
"L 18.3125 0 \r\n", | |
"L 43.21875 64.59375 \r\n", | |
"L 8.203125 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-55\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(271.740625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-55\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_30\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"288.023125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_31\">\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"297.943125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_32\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"307.863125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_33\">\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"317.783125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_34\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"337.623125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_35\">\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"347.543125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- 03 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(341.180625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-51\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_36\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"357.463125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_37\">\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"367.383125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_38\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"377.303125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_39\">\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"387.223125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_40\">\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"397.143125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_41\">\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"407.063125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_42\">\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"416.983125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- 10 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(410.620625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_43\">\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"426.903125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_44\">\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"436.823125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_45\">\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"446.743125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_46\">\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"456.663125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_47\">\r\n", | |
" <g id=\"line2d_51\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"466.583125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_48\">\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"476.503125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_49\">\r\n", | |
" <g id=\"line2d_53\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"486.423125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- 17 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(480.060625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-55\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_50\">\r\n", | |
" <g id=\"line2d_54\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"496.343125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_51\">\r\n", | |
" <g id=\"line2d_55\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"506.263125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_52\">\r\n", | |
" <g id=\"line2d_56\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"516.183125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_53\">\r\n", | |
" <g id=\"line2d_57\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"526.103125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_54\">\r\n", | |
" <g id=\"line2d_58\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"536.023125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_55\">\r\n", | |
" <g id=\"line2d_59\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"545.943125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_56\">\r\n", | |
" <g id=\"line2d_60\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"555.863125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- 24 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 37.796875 64.3125 \r\n", | |
"L 12.890625 25.390625 \r\n", | |
"L 37.796875 25.390625 \r\n", | |
"z\r\n", | |
"M 35.203125 72.90625 \r\n", | |
"L 47.609375 72.90625 \r\n", | |
"L 47.609375 25.390625 \r\n", | |
"L 58.015625 25.390625 \r\n", | |
"L 58.015625 17.1875 \r\n", | |
"L 47.609375 17.1875 \r\n", | |
"L 47.609375 0 \r\n", | |
"L 37.796875 0 \r\n", | |
"L 37.796875 17.1875 \r\n", | |
"L 4.890625 17.1875 \r\n", | |
"L 4.890625 26.703125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-52\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(549.500625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-52\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_57\">\r\n", | |
" <g id=\"line2d_61\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"565.783125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_58\">\r\n", | |
" <g id=\"line2d_62\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"575.703125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_59\">\r\n", | |
" <g id=\"line2d_63\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"585.623125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_60\">\r\n", | |
" <g id=\"line2d_64\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"595.543125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_61\">\r\n", | |
" <g id=\"line2d_65\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"605.463125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_62\">\r\n", | |
" <g id=\"line2d_66\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"615.383125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_63\">\r\n", | |
" <g id=\"line2d_67\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"625.303125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- 31 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(618.940625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-51\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_64\">\r\n", | |
" <g id=\"line2d_68\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"645.143125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_65\">\r\n", | |
" <g id=\"line2d_69\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"655.063125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_66\">\r\n", | |
" <g id=\"line2d_70\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"664.983125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_67\">\r\n", | |
" <g id=\"line2d_71\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"674.903125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_68\">\r\n", | |
" <g id=\"line2d_72\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"684.823125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_69\">\r\n", | |
" <g id=\"line2d_73\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"694.743125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- 07 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(688.380625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-55\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_70\">\r\n", | |
" <g id=\"line2d_74\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"704.663125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_71\">\r\n", | |
" <g id=\"line2d_75\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"714.583125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_72\">\r\n", | |
" <g id=\"line2d_76\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"724.503125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_73\">\r\n", | |
" <g id=\"line2d_77\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"734.423125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_74\">\r\n", | |
" <g id=\"line2d_78\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"744.343125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_75\">\r\n", | |
" <g id=\"line2d_79\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"754.263125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_76\">\r\n", | |
" <g id=\"line2d_80\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"764.183125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- 14 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(757.820625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-52\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_77\">\r\n", | |
" <g id=\"line2d_81\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"774.103125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_78\">\r\n", | |
" <g id=\"line2d_82\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"784.023125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_79\">\r\n", | |
" <g id=\"line2d_83\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"793.943125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_80\">\r\n", | |
" <g id=\"line2d_84\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"803.863125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_81\">\r\n", | |
" <g id=\"line2d_85\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"813.783125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_82\">\r\n", | |
" <g id=\"line2d_86\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"823.703125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_83\">\r\n", | |
" <g id=\"line2d_87\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"833.623125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- 21 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(827.260625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_84\">\r\n", | |
" <g id=\"line2d_88\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"843.543125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_85\">\r\n", | |
" <g id=\"line2d_89\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"853.463125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_86\">\r\n", | |
" <g id=\"line2d_90\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"863.383125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_87\">\r\n", | |
" <g id=\"line2d_91\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"873.303125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_88\">\r\n", | |
" <g id=\"line2d_92\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"883.223125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_89\">\r\n", | |
" <g id=\"line2d_93\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"893.143125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_90\">\r\n", | |
" <g id=\"line2d_94\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"903.063125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- 28 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 31.78125 34.625 \r\n", | |
"Q 24.75 34.625 20.71875 30.859375 \r\n", | |
"Q 16.703125 27.09375 16.703125 20.515625 \r\n", | |
"Q 16.703125 13.921875 20.71875 10.15625 \r\n", | |
"Q 24.75 6.390625 31.78125 6.390625 \r\n", | |
"Q 38.8125 6.390625 42.859375 10.171875 \r\n", | |
"Q 46.921875 13.96875 46.921875 20.515625 \r\n", | |
"Q 46.921875 27.09375 42.890625 30.859375 \r\n", | |
"Q 38.875 34.625 31.78125 34.625 \r\n", | |
"z\r\n", | |
"M 21.921875 38.8125 \r\n", | |
"Q 15.578125 40.375 12.03125 44.71875 \r\n", | |
"Q 8.5 49.078125 8.5 55.328125 \r\n", | |
"Q 8.5 64.0625 14.71875 69.140625 \r\n", | |
"Q 20.953125 74.21875 31.78125 74.21875 \r\n", | |
"Q 42.671875 74.21875 48.875 69.140625 \r\n", | |
"Q 55.078125 64.0625 55.078125 55.328125 \r\n", | |
"Q 55.078125 49.078125 51.53125 44.71875 \r\n", | |
"Q 48 40.375 41.703125 38.8125 \r\n", | |
"Q 48.828125 37.15625 52.796875 32.3125 \r\n", | |
"Q 56.78125 27.484375 56.78125 20.515625 \r\n", | |
"Q 56.78125 9.90625 50.3125 4.234375 \r\n", | |
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.734375 -1.421875 13.25 4.234375 \r\n", | |
"Q 6.78125 9.90625 6.78125 20.515625 \r\n", | |
"Q 6.78125 27.484375 10.78125 32.3125 \r\n", | |
"Q 14.796875 37.15625 21.921875 38.8125 \r\n", | |
"z\r\n", | |
"M 18.3125 54.390625 \r\n", | |
"Q 18.3125 48.734375 21.84375 45.5625 \r\n", | |
"Q 25.390625 42.390625 31.78125 42.390625 \r\n", | |
"Q 38.140625 42.390625 41.71875 45.5625 \r\n", | |
"Q 45.3125 48.734375 45.3125 54.390625 \r\n", | |
"Q 45.3125 60.0625 41.71875 63.234375 \r\n", | |
"Q 38.140625 66.40625 31.78125 66.40625 \r\n", | |
"Q 25.390625 66.40625 21.84375 63.234375 \r\n", | |
"Q 18.3125 60.0625 18.3125 54.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-56\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(896.700625 347.363225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_91\">\r\n", | |
" <g id=\"line2d_95\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"912.983125\" xlink:href=\"#me3e0c1d65c\" y=\"334.364788\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(439.984688 397.754475)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_96\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 270.274319 \r\n", | |
"L 922.903125 270.274319 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_97\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m5ebc8029ad\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m5ebc8029ad\" y=\"270.274319\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- 1.0 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 274.073538)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_98\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 205.455544 \r\n", | |
"L 922.903125 205.455544 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_99\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m5ebc8029ad\" y=\"205.455544\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_18\">\r\n", | |
" <!-- 1.2 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 209.254763)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_100\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 140.636769 \r\n", | |
"L 922.903125 140.636769 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_101\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m5ebc8029ad\" y=\"140.636769\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_19\">\r\n", | |
" <!-- 1.4 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 144.435988)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-52\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_102\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 75.817994 \r\n", | |
"L 922.903125 75.817994 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_103\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m5ebc8029ad\" y=\"75.817994\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_20\">\r\n", | |
" <!-- 1.6 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 79.617213)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_104\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 10.999219 \r\n", | |
"L 922.903125 10.999219 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_105\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m5ebc8029ad\" y=\"10.999219\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_21\">\r\n", | |
" <!-- 1.8 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 14.798438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_106\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 197.210191 \r\n", | |
"L 59.863125 190.653109 \r\n", | |
"L 89.623125 193.320649 \r\n", | |
"L 119.383125 185.847066 \r\n", | |
"L 149.143125 185.80981 \r\n", | |
"L 178.903125 157.375917 \r\n", | |
"L 208.663125 152.011031 \r\n", | |
"L 238.423125 145.193156 \r\n", | |
"L 268.183125 141.661273 \r\n", | |
"L 297.943125 128.249059 \r\n", | |
"L 327.703125 119.844072 \r\n", | |
"L 357.463125 112.512062 \r\n", | |
"L 387.223125 103.302342 \r\n", | |
"L 416.983125 117.340459 \r\n", | |
"L 446.743125 95.813856 \r\n", | |
"L 476.503125 95.582867 \r\n", | |
"L 506.263125 84.167583 \r\n", | |
"L 536.023125 58.751438 \r\n", | |
"L 565.783125 39.527265 \r\n", | |
"L 595.543125 52.134746 \r\n", | |
"L 625.303125 23.030242 \r\n", | |
"L 655.063125 37.291896 \r\n", | |
"L 684.823125 46.419653 \r\n", | |
"L 714.583125 68.520001 \r\n", | |
"L 744.343125 72.804458 \r\n", | |
"L 774.103125 64.473983 \r\n", | |
"L 803.863125 80.21098 \r\n", | |
"L 833.623125 87.945357 \r\n", | |
"L 863.383125 48.647571 \r\n", | |
"L 893.143125 37.657007 \r\n", | |
"L 922.903125 28.52925 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_107\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 291.661697 \r\n", | |
"L 59.863125 284.044701 \r\n", | |
"L 89.623125 288.054412 \r\n", | |
"L 119.383125 289.237446 \r\n", | |
"L 149.143125 293.159884 \r\n", | |
"L 178.903125 287.618047 \r\n", | |
"L 208.663125 286.876226 \r\n", | |
"L 238.423125 277.698013 \r\n", | |
"L 268.183125 279.792565 \r\n", | |
"L 297.943125 277.538012 \r\n", | |
"L 327.703125 271.482234 \r\n", | |
"L 357.463125 264.010693 \r\n", | |
"L 387.223125 265.392516 \r\n", | |
"L 416.983125 265.436152 \r\n", | |
"L 446.743125 243.356076 \r\n", | |
"L 476.503125 246.77427 \r\n", | |
"L 506.263125 247.094271 \r\n", | |
"L 536.023125 257.1937 \r\n", | |
"L 565.783125 260.956137 \r\n", | |
"L 595.543125 264.810696 \r\n", | |
"L 625.303125 264.301603 \r\n", | |
"L 655.063125 272.287085 \r\n", | |
"L 684.823125 272.641026 \r\n", | |
"L 714.583125 277.276193 \r\n", | |
"L 744.343125 270.522231 \r\n", | |
"L 774.103125 259.399768 \r\n", | |
"L 803.863125 259.152494 \r\n", | |
"L 833.623125 265.08706 \r\n", | |
"L 863.383125 262.076141 \r\n", | |
"L 893.143125 262.512506 \r\n", | |
"L 922.903125 263.647055 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_108\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 208.347112 \r\n", | |
"L 59.863125 202.104948 \r\n", | |
"L 89.623125 196.654255 \r\n", | |
"L 119.383125 194.048375 \r\n", | |
"L 149.143125 201.111876 \r\n", | |
"L 178.903125 184.177394 \r\n", | |
"L 208.663125 171.879734 \r\n", | |
"L 238.423125 163.726094 \r\n", | |
"L 268.183125 168.489851 \r\n", | |
"L 297.943125 160.948481 \r\n", | |
"L 327.703125 151.674835 \r\n", | |
"L 357.463125 140.004379 \r\n", | |
"L 387.223125 144.462 \r\n", | |
"L 416.983125 143.565996 \r\n", | |
"L 446.743125 111.981842 \r\n", | |
"L 476.503125 116.297596 \r\n", | |
"L 506.263125 125.91471 \r\n", | |
"L 536.023125 127.684318 \r\n", | |
"L 565.783125 117.133867 \r\n", | |
"L 595.543125 117.514669 \r\n", | |
"L 625.303125 113.057047 \r\n", | |
"L 655.063125 130.484332 \r\n", | |
"L 684.823125 135.711024 \r\n", | |
"L 714.583125 135.412356 \r\n", | |
"L 744.343125 126.347779 \r\n", | |
"L 774.103125 125.780309 \r\n", | |
"L 803.863125 130.349931 \r\n", | |
"L 833.623125 141.997988 \r\n", | |
"L 863.383125 112.093842 \r\n", | |
"L 893.143125 118.022405 \r\n", | |
"L 922.903125 119.642679 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_109\">\r\n", | |
" <path clip-path=\"url(#pa7502d0857)\" d=\"M 30.103125 280.390656 \r\n", | |
"L 59.863125 274.66472 \r\n", | |
"L 89.623125 273.490581 \r\n", | |
"L 119.383125 274.525324 \r\n", | |
"L 149.143125 282.497672 \r\n", | |
"L 178.903125 298.324417 \r\n", | |
"L 208.663125 294.383815 \r\n", | |
"L 238.423125 294.367731 \r\n", | |
"L 268.183125 296.667756 \r\n", | |
"L 297.943125 297.777558 \r\n", | |
"L 327.703125 299.997163 \r\n", | |
"L 357.463125 299.852406 \r\n", | |
"L 387.223125 293.676115 \r\n", | |
"L 416.983125 292.035538 \r\n", | |
"L 446.743125 283.736147 \r\n", | |
"L 476.503125 285.827079 \r\n", | |
"L 506.263125 288.239692 \r\n", | |
"L 536.023125 296.147704 \r\n", | |
"L 565.783125 295.381029 \r\n", | |
"L 595.543125 299.096454 \r\n", | |
"L 625.303125 302.088095 \r\n", | |
"L 655.063125 304.452456 \r\n", | |
"L 684.823125 308.275108 \r\n", | |
"L 714.583125 314.907115 \r\n", | |
"L 744.343125 309.154372 \r\n", | |
"L 774.103125 302.908383 \r\n", | |
"L 803.863125 300.640527 \r\n", | |
"L 833.623125 308.264386 \r\n", | |
"L 863.383125 311.368615 \r\n", | |
"L 893.143125 316.810399 \r\n", | |
"L 922.903125 319.539333 \r\n", | |
"\" style=\"fill:none;stroke:#777777;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 30.103125 334.364788 \r\n", | |
"L 30.103125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 922.903125 334.364788 \r\n", | |
"L 922.903125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 30.103125 334.364788 \r\n", | |
"L 922.903125 334.364788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 30.103125 8.204788 \r\n", | |
"L 922.903125 8.204788 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 37.103125 74.917288 \r\n", | |
"L 97.242188 74.917288 \r\n", | |
"Q 99.242188 74.917288 99.242188 72.917288 \r\n", | |
"L 99.242188 15.204788 \r\n", | |
"Q 99.242188 13.204788 97.242188 13.204788 \r\n", | |
"L 37.103125 13.204788 \r\n", | |
"Q 35.103125 13.204788 35.103125 15.204788 \r\n", | |
"L 35.103125 72.917288 \r\n", | |
"Q 35.103125 74.917288 37.103125 74.917288 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_110\">\r\n", | |
" <path d=\"M 39.103125 21.303225 \r\n", | |
"L 59.103125 21.303225 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_111\"/>\r\n", | |
" <g id=\"text_22\">\r\n", | |
" <!-- YNDX -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.203125 72.90625 \r\n", | |
"L 10.40625 72.90625 \r\n", | |
"L 30.609375 42.921875 \r\n", | |
"L 50.6875 72.90625 \r\n", | |
"L 61.28125 72.90625 \r\n", | |
"L 35.5 34.71875 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 34.71875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-89\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 24.803225)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-89\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"135.888672\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"212.890625\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_112\">\r\n", | |
" <path d=\"M 39.103125 35.98135 \r\n", | |
"L 59.103125 35.98135 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_113\"/>\r\n", | |
" <g id=\"text_23\">\r\n", | |
" <!-- SBER -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.671875 34.8125 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 35.5 8.109375 \r\n", | |
"Q 43.453125 8.109375 47.28125 11.40625 \r\n", | |
"Q 51.125 14.703125 51.125 21.484375 \r\n", | |
"Q 51.125 28.328125 47.28125 31.5625 \r\n", | |
"Q 43.453125 34.8125 35.5 34.8125 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 42.828125 \r\n", | |
"L 34.28125 42.828125 \r\n", | |
"Q 41.5 42.828125 45.03125 45.53125 \r\n", | |
"Q 48.578125 48.25 48.578125 53.8125 \r\n", | |
"Q 48.578125 59.328125 45.03125 62.0625 \r\n", | |
"Q 41.5 64.796875 34.28125 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 35.015625 72.90625 \r\n", | |
"Q 46.296875 72.90625 52.390625 68.21875 \r\n", | |
"Q 58.5 63.53125 58.5 54.890625 \r\n", | |
"Q 58.5 48.1875 55.375 44.234375 \r\n", | |
"Q 52.25 40.28125 46.1875 39.3125 \r\n", | |
"Q 53.46875 37.75 57.5 32.78125 \r\n", | |
"Q 61.53125 27.828125 61.53125 20.40625 \r\n", | |
"Q 61.53125 10.640625 54.890625 5.3125 \r\n", | |
"Q 48.25 0 35.984375 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-66\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 39.48135)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"63.476562\" xlink:href=\"#DejaVuSans-66\"/>\r\n", | |
" <use x=\"132.080078\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"195.263672\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_114\">\r\n", | |
" <path d=\"M 39.103125 50.659475 \r\n", | |
"L 59.103125 50.659475 \r\n", | |
"\" style=\"fill:none;stroke:#988ed5;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_115\"/>\r\n", | |
" <g id=\"text_24\">\r\n", | |
" <!-- AFKS -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 51.703125 72.90625 \r\n", | |
"L 51.703125 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.109375 \r\n", | |
"L 48.578125 43.109375 \r\n", | |
"L 48.578125 34.8125 \r\n", | |
"L 19.671875 34.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-70\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 42.09375 \r\n", | |
"L 52.390625 72.90625 \r\n", | |
"L 65.09375 72.90625 \r\n", | |
"L 28.90625 38.921875 \r\n", | |
"L 67.671875 0 \r\n", | |
"L 54.6875 0 \r\n", | |
"L 19.671875 35.109375 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-75\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 54.159475)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-70\"/>\r\n", | |
" <use x=\"125.927734\" xlink:href=\"#DejaVuSans-75\"/>\r\n", | |
" <use x=\"191.503906\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_116\">\r\n", | |
" <path d=\"M 39.103125 65.3376 \r\n", | |
"L 59.103125 65.3376 \r\n", | |
"\" style=\"fill:none;stroke:#777777;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_117\"/>\r\n", | |
" <g id=\"text_25\">\r\n", | |
" <!-- GAZP -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 59.515625 10.40625 \r\n", | |
"L 59.515625 29.984375 \r\n", | |
"L 43.40625 29.984375 \r\n", | |
"L 43.40625 38.09375 \r\n", | |
"L 69.28125 38.09375 \r\n", | |
"L 69.28125 6.78125 \r\n", | |
"Q 63.578125 2.734375 56.6875 0.65625 \r\n", | |
"Q 49.8125 -1.421875 42 -1.421875 \r\n", | |
"Q 24.90625 -1.421875 15.25 8.5625 \r\n", | |
"Q 5.609375 18.5625 5.609375 36.375 \r\n", | |
"Q 5.609375 54.25 15.25 64.234375 \r\n", | |
"Q 24.90625 74.21875 42 74.21875 \r\n", | |
"Q 49.125 74.21875 55.546875 72.453125 \r\n", | |
"Q 61.96875 70.703125 67.390625 67.28125 \r\n", | |
"L 67.390625 56.78125 \r\n", | |
"Q 61.921875 61.421875 55.765625 63.765625 \r\n", | |
"Q 49.609375 66.109375 42.828125 66.109375 \r\n", | |
"Q 29.4375 66.109375 22.71875 58.640625 \r\n", | |
"Q 16.015625 51.171875 16.015625 36.375 \r\n", | |
"Q 16.015625 21.625 22.71875 14.15625 \r\n", | |
"Q 29.4375 6.6875 42.828125 6.6875 \r\n", | |
"Q 48.046875 6.6875 52.140625 7.59375 \r\n", | |
"Q 56.25 8.5 59.515625 10.40625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-71\"/>\r\n", | |
" <path d=\"M 5.609375 72.90625 \r\n", | |
"L 62.890625 72.90625 \r\n", | |
"L 62.890625 65.375 \r\n", | |
"L 16.796875 8.296875 \r\n", | |
"L 64.015625 8.296875 \r\n", | |
"L 64.015625 0 \r\n", | |
"L 4.5 0 \r\n", | |
"L 4.5 7.515625 \r\n", | |
"L 50.59375 64.59375 \r\n", | |
"L 5.609375 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-90\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 37.40625 \r\n", | |
"L 32.078125 37.40625 \r\n", | |
"Q 38.96875 37.40625 42.71875 40.96875 \r\n", | |
"Q 46.484375 44.53125 46.484375 51.125 \r\n", | |
"Q 46.484375 57.671875 42.71875 61.234375 \r\n", | |
"Q 38.96875 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.34375 72.90625 50.609375 67.359375 \r\n", | |
"Q 56.890625 61.8125 56.890625 51.125 \r\n", | |
"Q 56.890625 40.328125 50.609375 34.8125 \r\n", | |
"Q 44.34375 29.296875 32.078125 29.296875 \r\n", | |
"L 19.671875 29.296875 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-80\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 68.8376)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-71\"/>\r\n", | |
" <use x=\"77.490234\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"145.898438\" xlink:href=\"#DejaVuSans-90\"/>\r\n", | |
" <use x=\"214.404297\" xlink:href=\"#DejaVuSans-80\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"pa7502d0857\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"30.103125\" y=\"8.204788\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"xxdf.resample('3D').interpolate(method='time').loc['2020-7-1':'2020-10-1'].plot(y='YNDX,SBER,AFKS,GAZP'.split(','));" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 15, | |
"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>ADMITTEDQUOTE</th>\n", | |
" <th>ADMITTEDVALUE</th>\n", | |
" <th>BEICLOSE</th>\n", | |
" <th>BID</th>\n", | |
" <th>BOARDID</th>\n", | |
" <th>BOARDNAME</th>\n", | |
" <th>BUYBACKDATE</th>\n", | |
" <th>CBRCLOSE</th>\n", | |
" <th>CLOSE</th>\n", | |
" <th>CLOSEAUCTIONPRICE</th>\n", | |
" <th>...</th>\n", | |
" <th>TRENDCLSPR</th>\n", | |
" <th>TRENDWAP</th>\n", | |
" <th>TRENDWAPPR</th>\n", | |
" <th>TYPE</th>\n", | |
" <th>VALUE</th>\n", | |
" <th>VOLUME</th>\n", | |
" <th>WAPRICE</th>\n", | |
" <th>WAVAL</th>\n", | |
" <th>YIELDLASTCOUPON</th>\n", | |
" <th>YIELDTOOFFER</th>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>TRADEDATE</th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" <th></th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>2019-01-03</th>\n", | |
" <td>4046.0</td>\n", | |
" <td>1.325337e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>4025.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>12946032.0</td>\n", | |
" <td>3151.0</td>\n", | |
" <td>4110.0</td>\n", | |
" <td>2.668797e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2019-01-04</th>\n", | |
" <td>4048.0</td>\n", | |
" <td>1.250230e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>4051.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>12469461.0</td>\n", | |
" <td>3123.0</td>\n", | |
" <td>3993.0</td>\n", | |
" <td>2.668797e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2019-01-08</th>\n", | |
" <td>4082.0</td>\n", | |
" <td>6.874060e+06</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>4090.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>6869816.0</td>\n", | |
" <td>1675.0</td>\n", | |
" <td>4101.0</td>\n", | |
" <td>2.668797e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2019-01-09</th>\n", | |
" <td>4134.0</td>\n", | |
" <td>7.866304e+06</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>4131.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>7772200.0</td>\n", | |
" <td>1883.0</td>\n", | |
" <td>4129.0</td>\n", | |
" <td>2.668797e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2019-01-10</th>\n", | |
" <td>4163.0</td>\n", | |
" <td>1.357051e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>4154.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>135626431.0</td>\n", | |
" <td>32796.0</td>\n", | |
" <td>4131.0</td>\n", | |
" <td>2.668797e+07</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>...</th>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2020-11-06</th>\n", | |
" <td>9398.0</td>\n", | |
" <td>1.339329e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>9380.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>125475980.0</td>\n", | |
" <td>13417.0</td>\n", | |
" <td>9359.0</td>\n", | |
" <td>1.511726e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2020-11-09</th>\n", | |
" <td>9540.0</td>\n", | |
" <td>3.180135e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>9360.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>287500396.0</td>\n", | |
" <td>30174.0</td>\n", | |
" <td>9538.0</td>\n", | |
" <td>1.511726e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2020-11-10</th>\n", | |
" <td>9050.0</td>\n", | |
" <td>2.615823e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>9150.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>276017331.0</td>\n", | |
" <td>30176.0</td>\n", | |
" <td>9150.0</td>\n", | |
" <td>1.511726e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2020-11-11</th>\n", | |
" <td>9238.0</td>\n", | |
" <td>1.176499e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>9350.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>137726481.0</td>\n", | |
" <td>15002.0</td>\n", | |
" <td>9181.0</td>\n", | |
" <td>1.511726e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2020-11-12</th>\n", | |
" <td>9320.0</td>\n", | |
" <td>1.685188e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>None</td>\n", | |
" <td>TQTF</td>\n", | |
" <td>None</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" <td>9250.0</td>\n", | |
" <td>None</td>\n", | |
" <td>...</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>None</td>\n", | |
" <td>177933766.0</td>\n", | |
" <td>19089.0</td>\n", | |
" <td>9317.0</td>\n", | |
" <td>1.511726e+08</td>\n", | |
" <td>NaN</td>\n", | |
" <td>NaN</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>477 rows × 63 columns</p>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" ADMITTEDQUOTE ADMITTEDVALUE BEICLOSE BID BOARDID BOARDNAME \\\n", | |
"TRADEDATE \n", | |
"2019-01-03 4046.0 1.325337e+07 NaN None TQTF None \n", | |
"2019-01-04 4048.0 1.250230e+07 NaN None TQTF None \n", | |
"2019-01-08 4082.0 6.874060e+06 NaN None TQTF None \n", | |
"2019-01-09 4134.0 7.866304e+06 NaN None TQTF None \n", | |
"2019-01-10 4163.0 1.357051e+08 NaN None TQTF None \n", | |
"... ... ... ... ... ... ... \n", | |
"2020-11-06 9398.0 1.339329e+08 NaN None TQTF None \n", | |
"2020-11-09 9540.0 3.180135e+08 NaN None TQTF None \n", | |
"2020-11-10 9050.0 2.615823e+08 NaN None TQTF None \n", | |
"2020-11-11 9238.0 1.176499e+08 NaN None TQTF None \n", | |
"2020-11-12 9320.0 1.685188e+08 NaN None TQTF None \n", | |
"\n", | |
" BUYBACKDATE CBRCLOSE CLOSE CLOSEAUCTIONPRICE ... TRENDCLSPR \\\n", | |
"TRADEDATE ... \n", | |
"2019-01-03 NaN NaN 4025.0 None ... None \n", | |
"2019-01-04 NaN NaN 4051.0 None ... None \n", | |
"2019-01-08 NaN NaN 4090.0 None ... None \n", | |
"2019-01-09 NaN NaN 4131.0 None ... None \n", | |
"2019-01-10 NaN NaN 4154.0 None ... None \n", | |
"... ... ... ... ... ... ... \n", | |
"2020-11-06 NaN NaN 9380.0 None ... None \n", | |
"2020-11-09 NaN NaN 9360.0 None ... None \n", | |
"2020-11-10 NaN NaN 9150.0 None ... None \n", | |
"2020-11-11 NaN NaN 9350.0 None ... None \n", | |
"2020-11-12 NaN NaN 9250.0 None ... None \n", | |
"\n", | |
" TRENDWAP TRENDWAPPR TYPE VALUE VOLUME WAPRICE \\\n", | |
"TRADEDATE \n", | |
"2019-01-03 None None None 12946032.0 3151.0 4110.0 \n", | |
"2019-01-04 None None None 12469461.0 3123.0 3993.0 \n", | |
"2019-01-08 None None None 6869816.0 1675.0 4101.0 \n", | |
"2019-01-09 None None None 7772200.0 1883.0 4129.0 \n", | |
"2019-01-10 None None None 135626431.0 32796.0 4131.0 \n", | |
"... ... ... ... ... ... ... \n", | |
"2020-11-06 None None None 125475980.0 13417.0 9359.0 \n", | |
"2020-11-09 None None None 287500396.0 30174.0 9538.0 \n", | |
"2020-11-10 None None None 276017331.0 30176.0 9150.0 \n", | |
"2020-11-11 None None None 137726481.0 15002.0 9181.0 \n", | |
"2020-11-12 None None None 177933766.0 19089.0 9317.0 \n", | |
"\n", | |
" WAVAL YIELDLASTCOUPON YIELDTOOFFER \n", | |
"TRADEDATE \n", | |
"2019-01-03 2.668797e+07 NaN NaN \n", | |
"2019-01-04 2.668797e+07 NaN NaN \n", | |
"2019-01-08 2.668797e+07 NaN NaN \n", | |
"2019-01-09 2.668797e+07 NaN NaN \n", | |
"2019-01-10 2.668797e+07 NaN NaN \n", | |
"... ... ... ... \n", | |
"2020-11-06 1.511726e+08 NaN NaN \n", | |
"2020-11-09 1.511726e+08 NaN NaN \n", | |
"2020-11-10 1.511726e+08 NaN NaN \n", | |
"2020-11-11 1.511726e+08 NaN NaN \n", | |
"2020-11-12 1.511726e+08 NaN NaN \n", | |
"\n", | |
"[477 rows x 63 columns]" | |
] | |
}, | |
"execution_count": 15, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"rawdata['FXIT'].where(rawdata['FXIT']['BOARDID'] == 'TQTF').dropna(how='all')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 16, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"N_YNDX = web.DataReader('YNDX', 'stooq', start='2019-01-01', end='2020-12-31')\n", | |
"N_YNDX.to_parquet(\"D:\\\\data2\\\\Documents\\\\notebooks\\\\N_YNDX-2020.parquet\", engine='fastparquet')" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 17, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import pandas_datareader\n", | |
"tbl = pandas_datareader.nasdaq_trader.get_nasdaq_symbols()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 18, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"Nasdaq Traded True\n", | |
"Security Name Yandex N.V. - Class A Ordinary Shares\n", | |
"Listing Exchange Q\n", | |
"Market Category Q\n", | |
"ETF False\n", | |
"Round Lot Size 100\n", | |
"Test Issue False\n", | |
"Financial Status N\n", | |
"CQS Symbol NaN\n", | |
"NASDAQ Symbol YNDX\n", | |
"NextShares False\n", | |
"Name: YNDX, dtype: object" | |
] | |
}, | |
"execution_count": 18, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"tbl.loc['YNDX']" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 19, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n", | |
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n", | |
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n", | |
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n", | |
"<svg height=\"384.049688pt\" version=\"1.1\" viewBox=\"0 0 930.103125 384.049688\" width=\"930.103125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n", | |
" <defs>\r\n", | |
" <style type=\"text/css\">\r\n", | |
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n", | |
" </style>\r\n", | |
" </defs>\r\n", | |
" <g id=\"figure_1\">\r\n", | |
" <g id=\"patch_1\">\r\n", | |
" <path d=\"M 0 384.049688 \r\n", | |
"L 930.103125 384.049688 \r\n", | |
"L 930.103125 0 \r\n", | |
"L 0 0 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#ffffff;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"axes_1\">\r\n", | |
" <g id=\"patch_2\">\r\n", | |
" <path d=\"M 30.103125 333.36 \r\n", | |
"L 922.903125 333.36 \r\n", | |
"L 922.903125 7.2 \r\n", | |
"L 30.103125 7.2 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_1\">\r\n", | |
" <g id=\"xtick_1\">\r\n", | |
" <g id=\"line2d_1\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 333.36 \r\n", | |
"L 30.103125 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_2\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 3.5 \r\n", | |
"\" id=\"m5215927f22\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_2\">\r\n", | |
" <g id=\"line2d_3\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 144.928559 333.36 \r\n", | |
"L 144.928559 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_4\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"144.928559\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_1\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.1875 63.1875 \r\n", | |
"L 20.796875 26.90625 \r\n", | |
"L 47.609375 26.90625 \r\n", | |
"z\r\n", | |
"M 28.609375 72.90625 \r\n", | |
"L 39.796875 72.90625 \r\n", | |
"L 67.578125 0 \r\n", | |
"L 57.328125 0 \r\n", | |
"L 50.6875 18.703125 \r\n", | |
"L 17.828125 18.703125 \r\n", | |
"L 11.1875 0 \r\n", | |
"L 0.78125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-65\"/>\r\n", | |
" <path d=\"M 18.109375 8.203125 \r\n", | |
"L 18.109375 -20.796875 \r\n", | |
"L 9.078125 -20.796875 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.390625 \r\n", | |
"Q 20.953125 51.265625 25.265625 53.625 \r\n", | |
"Q 29.59375 56 35.59375 56 \r\n", | |
"Q 45.5625 56 51.78125 48.09375 \r\n", | |
"Q 58.015625 40.1875 58.015625 27.296875 \r\n", | |
"Q 58.015625 14.40625 51.78125 6.484375 \r\n", | |
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n", | |
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n", | |
"Q 20.953125 3.328125 18.109375 8.203125 \r\n", | |
"z\r\n", | |
"M 48.6875 27.296875 \r\n", | |
"Q 48.6875 37.203125 44.609375 42.84375 \r\n", | |
"Q 40.53125 48.484375 33.40625 48.484375 \r\n", | |
"Q 26.265625 48.484375 22.1875 42.84375 \r\n", | |
"Q 18.109375 37.203125 18.109375 27.296875 \r\n", | |
"Q 18.109375 17.390625 22.1875 11.75 \r\n", | |
"Q 26.265625 6.109375 33.40625 6.109375 \r\n", | |
"Q 40.53125 6.109375 44.609375 11.75 \r\n", | |
"Q 48.6875 17.390625 48.6875 27.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-112\"/>\r\n", | |
" <path d=\"M 41.109375 46.296875 \r\n", | |
"Q 39.59375 47.171875 37.8125 47.578125 \r\n", | |
"Q 36.03125 48 33.890625 48 \r\n", | |
"Q 26.265625 48 22.1875 43.046875 \r\n", | |
"Q 18.109375 38.09375 18.109375 28.8125 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 20.953125 51.171875 25.484375 53.578125 \r\n", | |
"Q 30.03125 56 36.53125 56 \r\n", | |
"Q 37.453125 56 38.578125 55.875 \r\n", | |
"Q 39.703125 55.765625 41.0625 55.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-114\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(136.278559 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_3\">\r\n", | |
" <g id=\"line2d_5\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 262.334339 333.36 \r\n", | |
"L 262.334339 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_6\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"262.334339\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_2\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 19.671875 72.90625 \r\n", | |
"L 19.671875 5.078125 \r\n", | |
"Q 19.671875 -8.109375 14.671875 -14.0625 \r\n", | |
"Q 9.671875 -20.015625 -1.421875 -20.015625 \r\n", | |
"L -5.171875 -20.015625 \r\n", | |
"L -5.171875 -11.71875 \r\n", | |
"L -2.09375 -11.71875 \r\n", | |
"Q 4.4375 -11.71875 7.125 -8.046875 \r\n", | |
"Q 9.8125 -4.390625 9.8125 5.078125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-74\"/>\r\n", | |
" <path d=\"M 8.5 21.578125 \r\n", | |
"L 8.5 54.6875 \r\n", | |
"L 17.484375 54.6875 \r\n", | |
"L 17.484375 21.921875 \r\n", | |
"Q 17.484375 14.15625 20.5 10.265625 \r\n", | |
"Q 23.53125 6.390625 29.59375 6.390625 \r\n", | |
"Q 36.859375 6.390625 41.078125 11.03125 \r\n", | |
"Q 45.3125 15.671875 45.3125 23.6875 \r\n", | |
"L 45.3125 54.6875 \r\n", | |
"L 54.296875 54.6875 \r\n", | |
"L 54.296875 0 \r\n", | |
"L 45.3125 0 \r\n", | |
"L 45.3125 8.40625 \r\n", | |
"Q 42.046875 3.421875 37.71875 1 \r\n", | |
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n", | |
"Q 18.265625 -1.421875 13.375 4.4375 \r\n", | |
"Q 8.5 10.296875 8.5 21.578125 \r\n", | |
"z\r\n", | |
"M 31.109375 56 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-117\"/>\r\n", | |
" <path d=\"M 9.421875 75.984375 \r\n", | |
"L 18.40625 75.984375 \r\n", | |
"L 18.40625 0 \r\n", | |
"L 9.421875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-108\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(256.301526 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_4\">\r\n", | |
" <g id=\"line2d_7\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 381.030293 333.36 \r\n", | |
"L 381.030293 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_8\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"381.030293\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_3\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 19.140625 63.90625 8.859375 \r\n", | |
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n", | |
"Q 5.609375 19.09375 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-79\"/>\r\n", | |
" <path d=\"M 48.78125 52.59375 \r\n", | |
"L 48.78125 44.1875 \r\n", | |
"Q 44.96875 46.296875 41.140625 47.34375 \r\n", | |
"Q 37.3125 48.390625 33.40625 48.390625 \r\n", | |
"Q 24.65625 48.390625 19.8125 42.84375 \r\n", | |
"Q 14.984375 37.3125 14.984375 27.296875 \r\n", | |
"Q 14.984375 17.28125 19.8125 11.734375 \r\n", | |
"Q 24.65625 6.203125 33.40625 6.203125 \r\n", | |
"Q 37.3125 6.203125 41.140625 7.25 \r\n", | |
"Q 44.96875 8.296875 48.78125 10.40625 \r\n", | |
"L 48.78125 2.09375 \r\n", | |
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n", | |
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n", | |
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n", | |
"Q 5.515625 14.109375 5.515625 27.296875 \r\n", | |
"Q 5.515625 40.671875 12.859375 48.328125 \r\n", | |
"Q 20.21875 56 33.015625 56 \r\n", | |
"Q 37.15625 56 41.109375 55.140625 \r\n", | |
"Q 45.0625 54.296875 48.78125 52.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-99\"/>\r\n", | |
" <path d=\"M 18.3125 70.21875 \r\n", | |
"L 18.3125 54.6875 \r\n", | |
"L 36.8125 54.6875 \r\n", | |
"L 36.8125 47.703125 \r\n", | |
"L 18.3125 47.703125 \r\n", | |
"L 18.3125 18.015625 \r\n", | |
"Q 18.3125 11.328125 20.140625 9.421875 \r\n", | |
"Q 21.96875 7.515625 27.59375 7.515625 \r\n", | |
"L 36.8125 7.515625 \r\n", | |
"L 36.8125 0 \r\n", | |
"L 27.59375 0 \r\n", | |
"Q 17.1875 0 13.234375 3.875 \r\n", | |
"Q 9.28125 7.765625 9.28125 18.015625 \r\n", | |
"L 9.28125 47.703125 \r\n", | |
"L 2.6875 47.703125 \r\n", | |
"L 2.6875 54.6875 \r\n", | |
"L 9.28125 54.6875 \r\n", | |
"L 9.28125 70.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-116\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(372.38498 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_5\">\r\n", | |
" <g id=\"line2d_9\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 499.726246 333.36 \r\n", | |
"L 499.726246 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_10\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"499.726246\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_4\">\r\n", | |
" <!-- Jan -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 34.28125 27.484375 \r\n", | |
"Q 23.390625 27.484375 19.1875 25 \r\n", | |
"Q 14.984375 22.515625 14.984375 16.5 \r\n", | |
"Q 14.984375 11.71875 18.140625 8.90625 \r\n", | |
"Q 21.296875 6.109375 26.703125 6.109375 \r\n", | |
"Q 34.1875 6.109375 38.703125 11.40625 \r\n", | |
"Q 43.21875 16.703125 43.21875 25.484375 \r\n", | |
"L 43.21875 27.484375 \r\n", | |
"z\r\n", | |
"M 52.203125 31.203125 \r\n", | |
"L 52.203125 0 \r\n", | |
"L 43.21875 0 \r\n", | |
"L 43.21875 8.296875 \r\n", | |
"Q 40.140625 3.328125 35.546875 0.953125 \r\n", | |
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n", | |
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n", | |
"Q 6 8.015625 6 15.921875 \r\n", | |
"Q 6 25.140625 12.171875 29.828125 \r\n", | |
"Q 18.359375 34.515625 30.609375 34.515625 \r\n", | |
"L 43.21875 34.515625 \r\n", | |
"L 43.21875 35.40625 \r\n", | |
"Q 43.21875 41.609375 39.140625 45 \r\n", | |
"Q 35.0625 48.390625 27.6875 48.390625 \r\n", | |
"Q 23 48.390625 18.546875 47.265625 \r\n", | |
"Q 14.109375 46.140625 10.015625 43.890625 \r\n", | |
"L 10.015625 52.203125 \r\n", | |
"Q 14.9375 54.109375 19.578125 55.046875 \r\n", | |
"Q 24.21875 56 28.609375 56 \r\n", | |
"Q 40.484375 56 46.34375 49.84375 \r\n", | |
"Q 52.203125 43.703125 52.203125 31.203125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-97\"/>\r\n", | |
" <path d=\"M 54.890625 33.015625 \r\n", | |
"L 54.890625 0 \r\n", | |
"L 45.90625 0 \r\n", | |
"L 45.90625 32.71875 \r\n", | |
"Q 45.90625 40.484375 42.875 44.328125 \r\n", | |
"Q 39.84375 48.1875 33.796875 48.1875 \r\n", | |
"Q 26.515625 48.1875 22.3125 43.546875 \r\n", | |
"Q 18.109375 38.921875 18.109375 30.90625 \r\n", | |
"L 18.109375 0 \r\n", | |
"L 9.078125 0 \r\n", | |
"L 9.078125 54.6875 \r\n", | |
"L 18.109375 54.6875 \r\n", | |
"L 18.109375 46.1875 \r\n", | |
"Q 21.34375 51.125 25.703125 53.5625 \r\n", | |
"Q 30.078125 56 35.796875 56 \r\n", | |
"Q 45.21875 56 50.046875 50.171875 \r\n", | |
"Q 54.890625 44.34375 54.890625 33.015625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-110\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(492.018434 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-97\"/>\r\n", | |
" <use x=\"90.771484\" xlink:href=\"#DejaVuSans-110\"/>\r\n", | |
" </g>\r\n", | |
" <!-- 2020 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 19.1875 8.296875 \r\n", | |
"L 53.609375 8.296875 \r\n", | |
"L 53.609375 0 \r\n", | |
"L 7.328125 0 \r\n", | |
"L 7.328125 8.296875 \r\n", | |
"Q 12.9375 14.109375 22.625 23.890625 \r\n", | |
"Q 32.328125 33.6875 34.8125 36.53125 \r\n", | |
"Q 39.546875 41.84375 41.421875 45.53125 \r\n", | |
"Q 43.3125 49.21875 43.3125 52.78125 \r\n", | |
"Q 43.3125 58.59375 39.234375 62.25 \r\n", | |
"Q 35.15625 65.921875 28.609375 65.921875 \r\n", | |
"Q 23.96875 65.921875 18.8125 64.3125 \r\n", | |
"Q 13.671875 62.703125 7.8125 59.421875 \r\n", | |
"L 7.8125 69.390625 \r\n", | |
"Q 13.765625 71.78125 18.9375 73 \r\n", | |
"Q 24.125 74.21875 28.421875 74.21875 \r\n", | |
"Q 39.75 74.21875 46.484375 68.546875 \r\n", | |
"Q 53.21875 62.890625 53.21875 53.421875 \r\n", | |
"Q 53.21875 48.921875 51.53125 44.890625 \r\n", | |
"Q 49.859375 40.875 45.40625 35.40625 \r\n", | |
"Q 44.1875 33.984375 37.640625 27.21875 \r\n", | |
"Q 31.109375 20.453125 19.1875 8.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-50\"/>\r\n", | |
" <path d=\"M 31.78125 66.40625 \r\n", | |
"Q 24.171875 66.40625 20.328125 58.90625 \r\n", | |
"Q 16.5 51.421875 16.5 36.375 \r\n", | |
"Q 16.5 21.390625 20.328125 13.890625 \r\n", | |
"Q 24.171875 6.390625 31.78125 6.390625 \r\n", | |
"Q 39.453125 6.390625 43.28125 13.890625 \r\n", | |
"Q 47.125 21.390625 47.125 36.375 \r\n", | |
"Q 47.125 51.421875 43.28125 58.90625 \r\n", | |
"Q 39.453125 66.40625 31.78125 66.40625 \r\n", | |
"z\r\n", | |
"M 31.78125 74.21875 \r\n", | |
"Q 44.046875 74.21875 50.515625 64.515625 \r\n", | |
"Q 56.984375 54.828125 56.984375 36.375 \r\n", | |
"Q 56.984375 17.96875 50.515625 8.265625 \r\n", | |
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n", | |
"Q 6.59375 17.96875 6.59375 36.375 \r\n", | |
"Q 6.59375 54.828125 13.0625 64.515625 \r\n", | |
"Q 19.53125 74.21875 31.78125 74.21875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-48\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(487.001246 359.15625)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"127.246094\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_6\">\r\n", | |
" <g id=\"line2d_11\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 617.132027 333.36 \r\n", | |
"L 617.132027 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_12\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"617.132027\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_5\">\r\n", | |
" <!-- Apr -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(608.482027 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-112\"/>\r\n", | |
" <use x=\"131.884766\" xlink:href=\"#DejaVuSans-114\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_7\">\r\n", | |
" <g id=\"line2d_13\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 734.537807 333.36 \r\n", | |
"L 734.537807 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_14\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"734.537807\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_6\">\r\n", | |
" <!-- Jul -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(728.504995 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-74\"/>\r\n", | |
" <use x=\"29.492188\" xlink:href=\"#DejaVuSans-117\"/>\r\n", | |
" <use x=\"92.871094\" xlink:href=\"#DejaVuSans-108\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_8\">\r\n", | |
" <g id=\"line2d_15\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 853.233761 333.36 \r\n", | |
"L 853.233761 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_16\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"853.233761\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_7\">\r\n", | |
" <!-- Oct -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(844.588448 347.958438)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"78.710938\" xlink:href=\"#DejaVuSans-99\"/>\r\n", | |
" <use x=\"133.691406\" xlink:href=\"#DejaVuSans-116\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_9\">\r\n", | |
" <g id=\"line2d_17\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 922.903125 333.36 \r\n", | |
"L 922.903125 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_18\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"922.903125\" xlink:href=\"#m5215927f22\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_10\">\r\n", | |
" <g id=\"line2d_19\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L 0 2 \r\n", | |
"\" id=\"m317388f38d\" style=\"stroke:#555555;stroke-width:0.6;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"68.808327\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_11\">\r\n", | |
" <g id=\"line2d_20\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"104.933183\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_12\">\r\n", | |
" <g id=\"line2d_21\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"183.633761\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_13\">\r\n", | |
" <g id=\"line2d_22\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"223.629137\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_14\">\r\n", | |
" <g id=\"line2d_23\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"302.329715\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_15\">\r\n", | |
" <g id=\"line2d_24\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"342.32509\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_16\">\r\n", | |
" <g id=\"line2d_25\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"421.025668\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_17\">\r\n", | |
" <g id=\"line2d_26\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"459.730871\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_18\">\r\n", | |
" <g id=\"line2d_27\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"539.721622\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_19\">\r\n", | |
" <g id=\"line2d_28\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"577.136651\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_20\">\r\n", | |
" <g id=\"line2d_29\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"655.837229\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_21\">\r\n", | |
" <g id=\"line2d_30\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"695.832605\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_22\">\r\n", | |
" <g id=\"line2d_31\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"774.533183\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_23\">\r\n", | |
" <g id=\"line2d_32\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"814.528559\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"xtick_24\">\r\n", | |
" <g id=\"line2d_33\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.6;\" x=\"893.229137\" xlink:href=\"#m317388f38d\" y=\"333.36\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_8\">\r\n", | |
" <!-- TRADEDATE -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M -0.296875 72.90625 \r\n", | |
"L 61.375 72.90625 \r\n", | |
"L 61.375 64.59375 \r\n", | |
"L 35.5 64.59375 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 64.59375 \r\n", | |
"L -0.296875 64.59375 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-84\"/>\r\n", | |
" <path d=\"M 44.390625 34.1875 \r\n", | |
"Q 47.5625 33.109375 50.5625 29.59375 \r\n", | |
"Q 53.5625 26.078125 56.59375 19.921875 \r\n", | |
"L 66.609375 0 \r\n", | |
"L 56 0 \r\n", | |
"L 46.6875 18.703125 \r\n", | |
"Q 43.0625 26.03125 39.671875 28.421875 \r\n", | |
"Q 36.28125 30.8125 30.421875 30.8125 \r\n", | |
"L 19.671875 30.8125 \r\n", | |
"L 19.671875 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"L 9.8125 72.90625 \r\n", | |
"L 32.078125 72.90625 \r\n", | |
"Q 44.578125 72.90625 50.734375 67.671875 \r\n", | |
"Q 56.890625 62.453125 56.890625 51.90625 \r\n", | |
"Q 56.890625 45.015625 53.6875 40.46875 \r\n", | |
"Q 50.484375 35.9375 44.390625 34.1875 \r\n", | |
"z\r\n", | |
"M 19.671875 64.796875 \r\n", | |
"L 19.671875 38.921875 \r\n", | |
"L 32.078125 38.921875 \r\n", | |
"Q 39.203125 38.921875 42.84375 42.21875 \r\n", | |
"Q 46.484375 45.515625 46.484375 51.90625 \r\n", | |
"Q 46.484375 58.296875 42.84375 61.546875 \r\n", | |
"Q 39.203125 64.796875 32.078125 64.796875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-82\"/>\r\n", | |
" <path d=\"M 19.671875 64.796875 \r\n", | |
"L 19.671875 8.109375 \r\n", | |
"L 31.59375 8.109375 \r\n", | |
"Q 46.6875 8.109375 53.6875 14.9375 \r\n", | |
"Q 60.6875 21.78125 60.6875 36.53125 \r\n", | |
"Q 60.6875 51.171875 53.6875 57.984375 \r\n", | |
"Q 46.6875 64.796875 31.59375 64.796875 \r\n", | |
"z\r\n", | |
"M 9.8125 72.90625 \r\n", | |
"L 30.078125 72.90625 \r\n", | |
"Q 51.265625 72.90625 61.171875 64.09375 \r\n", | |
"Q 71.09375 55.28125 71.09375 36.53125 \r\n", | |
"Q 71.09375 17.671875 61.125 8.828125 \r\n", | |
"Q 51.171875 0 30.078125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-68\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 55.90625 72.90625 \r\n", | |
"L 55.90625 64.59375 \r\n", | |
"L 19.671875 64.59375 \r\n", | |
"L 19.671875 43.015625 \r\n", | |
"L 54.390625 43.015625 \r\n", | |
"L 54.390625 34.71875 \r\n", | |
"L 19.671875 34.71875 \r\n", | |
"L 19.671875 8.296875 \r\n", | |
"L 56.78125 8.296875 \r\n", | |
"L 56.78125 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-69\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(439.984688 374.354062)scale(0.12 -0.12)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"61.083984\" xlink:href=\"#DejaVuSans-82\"/>\r\n", | |
" <use x=\"130.503906\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"198.912109\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"275.914062\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"339.097656\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"416.083984\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"484.382812\" xlink:href=\"#DejaVuSans-84\"/>\r\n", | |
" <use x=\"545.466797\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"matplotlib.axis_2\">\r\n", | |
" <g id=\"ytick_1\">\r\n", | |
" <g id=\"line2d_34\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 326.224299 \r\n", | |
"L 922.903125 326.224299 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_35\">\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 0 0 \r\n", | |
"L -3.5 0 \r\n", | |
"\" id=\"m496f6c7f38\" style=\"stroke:#555555;stroke-width:0.8;\"/>\r\n", | |
" </defs>\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"326.224299\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_9\">\r\n", | |
" <!-- 0.6 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 10.6875 12.40625 \r\n", | |
"L 21 12.40625 \r\n", | |
"L 21 0 \r\n", | |
"L 10.6875 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-46\"/>\r\n", | |
" <path d=\"M 33.015625 40.375 \r\n", | |
"Q 26.375 40.375 22.484375 35.828125 \r\n", | |
"Q 18.609375 31.296875 18.609375 23.390625 \r\n", | |
"Q 18.609375 15.53125 22.484375 10.953125 \r\n", | |
"Q 26.375 6.390625 33.015625 6.390625 \r\n", | |
"Q 39.65625 6.390625 43.53125 10.953125 \r\n", | |
"Q 47.40625 15.53125 47.40625 23.390625 \r\n", | |
"Q 47.40625 31.296875 43.53125 35.828125 \r\n", | |
"Q 39.65625 40.375 33.015625 40.375 \r\n", | |
"z\r\n", | |
"M 52.59375 71.296875 \r\n", | |
"L 52.59375 62.3125 \r\n", | |
"Q 48.875 64.0625 45.09375 64.984375 \r\n", | |
"Q 41.3125 65.921875 37.59375 65.921875 \r\n", | |
"Q 27.828125 65.921875 22.671875 59.328125 \r\n", | |
"Q 17.53125 52.734375 16.796875 39.40625 \r\n", | |
"Q 19.671875 43.65625 24.015625 45.921875 \r\n", | |
"Q 28.375 48.1875 33.59375 48.1875 \r\n", | |
"Q 44.578125 48.1875 50.953125 41.515625 \r\n", | |
"Q 57.328125 34.859375 57.328125 23.390625 \r\n", | |
"Q 57.328125 12.15625 50.6875 5.359375 \r\n", | |
"Q 44.046875 -1.421875 33.015625 -1.421875 \r\n", | |
"Q 20.359375 -1.421875 13.671875 8.265625 \r\n", | |
"Q 6.984375 17.96875 6.984375 36.375 \r\n", | |
"Q 6.984375 53.65625 15.1875 63.9375 \r\n", | |
"Q 23.390625 74.21875 37.203125 74.21875 \r\n", | |
"Q 40.921875 74.21875 44.703125 73.484375 \r\n", | |
"Q 48.484375 72.75 52.59375 71.296875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-54\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 330.023518)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_2\">\r\n", | |
" <g id=\"line2d_36\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 275.799216 \r\n", | |
"L 922.903125 275.799216 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_37\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"275.799216\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_10\">\r\n", | |
" <!-- 0.8 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 31.78125 34.625 \r\n", | |
"Q 24.75 34.625 20.71875 30.859375 \r\n", | |
"Q 16.703125 27.09375 16.703125 20.515625 \r\n", | |
"Q 16.703125 13.921875 20.71875 10.15625 \r\n", | |
"Q 24.75 6.390625 31.78125 6.390625 \r\n", | |
"Q 38.8125 6.390625 42.859375 10.171875 \r\n", | |
"Q 46.921875 13.96875 46.921875 20.515625 \r\n", | |
"Q 46.921875 27.09375 42.890625 30.859375 \r\n", | |
"Q 38.875 34.625 31.78125 34.625 \r\n", | |
"z\r\n", | |
"M 21.921875 38.8125 \r\n", | |
"Q 15.578125 40.375 12.03125 44.71875 \r\n", | |
"Q 8.5 49.078125 8.5 55.328125 \r\n", | |
"Q 8.5 64.0625 14.71875 69.140625 \r\n", | |
"Q 20.953125 74.21875 31.78125 74.21875 \r\n", | |
"Q 42.671875 74.21875 48.875 69.140625 \r\n", | |
"Q 55.078125 64.0625 55.078125 55.328125 \r\n", | |
"Q 55.078125 49.078125 51.53125 44.71875 \r\n", | |
"Q 48 40.375 41.703125 38.8125 \r\n", | |
"Q 48.828125 37.15625 52.796875 32.3125 \r\n", | |
"Q 56.78125 27.484375 56.78125 20.515625 \r\n", | |
"Q 56.78125 9.90625 50.3125 4.234375 \r\n", | |
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n", | |
"Q 19.734375 -1.421875 13.25 4.234375 \r\n", | |
"Q 6.78125 9.90625 6.78125 20.515625 \r\n", | |
"Q 6.78125 27.484375 10.78125 32.3125 \r\n", | |
"Q 14.796875 37.15625 21.921875 38.8125 \r\n", | |
"z\r\n", | |
"M 18.3125 54.390625 \r\n", | |
"Q 18.3125 48.734375 21.84375 45.5625 \r\n", | |
"Q 25.390625 42.390625 31.78125 42.390625 \r\n", | |
"Q 38.140625 42.390625 41.71875 45.5625 \r\n", | |
"Q 45.3125 48.734375 45.3125 54.390625 \r\n", | |
"Q 45.3125 60.0625 41.71875 63.234375 \r\n", | |
"Q 38.140625 66.40625 31.78125 66.40625 \r\n", | |
"Q 25.390625 66.40625 21.84375 63.234375 \r\n", | |
"Q 18.3125 60.0625 18.3125 54.390625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-56\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 279.598435)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_3\">\r\n", | |
" <g id=\"line2d_38\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 225.374133 \r\n", | |
"L 922.903125 225.374133 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_39\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"225.374133\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_11\">\r\n", | |
" <!-- 1.0 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 12.40625 8.296875 \r\n", | |
"L 28.515625 8.296875 \r\n", | |
"L 28.515625 63.921875 \r\n", | |
"L 10.984375 60.40625 \r\n", | |
"L 10.984375 69.390625 \r\n", | |
"L 28.421875 72.90625 \r\n", | |
"L 38.28125 72.90625 \r\n", | |
"L 38.28125 8.296875 \r\n", | |
"L 54.390625 8.296875 \r\n", | |
"L 54.390625 0 \r\n", | |
"L 12.40625 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-49\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 229.173352)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_4\">\r\n", | |
" <g id=\"line2d_40\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 174.94905 \r\n", | |
"L 922.903125 174.94905 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_41\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"174.94905\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_12\">\r\n", | |
" <!-- 1.2 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 178.748269)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_5\">\r\n", | |
" <g id=\"line2d_42\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 124.523967 \r\n", | |
"L 922.903125 124.523967 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_43\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"124.523967\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_13\">\r\n", | |
" <!-- 1.4 -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 37.796875 64.3125 \r\n", | |
"L 12.890625 25.390625 \r\n", | |
"L 37.796875 25.390625 \r\n", | |
"z\r\n", | |
"M 35.203125 72.90625 \r\n", | |
"L 47.609375 72.90625 \r\n", | |
"L 47.609375 25.390625 \r\n", | |
"L 58.015625 25.390625 \r\n", | |
"L 58.015625 17.1875 \r\n", | |
"L 47.609375 17.1875 \r\n", | |
"L 47.609375 0 \r\n", | |
"L 37.796875 0 \r\n", | |
"L 37.796875 17.1875 \r\n", | |
"L 4.890625 17.1875 \r\n", | |
"L 4.890625 26.703125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-52\"/>\r\n", | |
" </defs>\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 128.323186)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-52\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_6\">\r\n", | |
" <g id=\"line2d_44\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 74.098884 \r\n", | |
"L 922.903125 74.098884 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_45\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"74.098884\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_14\">\r\n", | |
" <!-- 1.6 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 77.898103)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-54\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"ytick_7\">\r\n", | |
" <g id=\"line2d_46\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 23.673801 \r\n", | |
"L 922.903125 23.673801 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-width:0.8;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_47\">\r\n", | |
" <g>\r\n", | |
" <use style=\"fill:#555555;stroke:#555555;stroke-width:0.8;\" x=\"30.103125\" xlink:href=\"#m496f6c7f38\" y=\"23.673801\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"text_15\">\r\n", | |
" <!-- 1.8 -->\r\n", | |
" <g style=\"fill:#555555;\" transform=\"translate(7.2 27.47302)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-49\"/>\r\n", | |
" <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\r\n", | |
" <use x=\"95.410156\" xlink:href=\"#DejaVuSans-56\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_48\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 31.393298 313.730944 \r\n", | |
"L 37.844165 309.122643 \r\n", | |
"L 39.134339 307.94883 \r\n", | |
"L 40.424512 306.209848 \r\n", | |
"L 41.714686 304.731714 \r\n", | |
"L 45.585206 305.383832 \r\n", | |
"L 46.875379 304.12307 \r\n", | |
"L 49.455726 305.253408 \r\n", | |
"L 50.7459 299.992988 \r\n", | |
"L 55.906593 299.601718 \r\n", | |
"L 57.196767 298.688752 \r\n", | |
"L 58.48694 296.775872 \r\n", | |
"L 59.777113 293.254434 \r\n", | |
"L 63.647634 289.254776 \r\n", | |
"L 64.937807 288.472235 \r\n", | |
"L 66.22798 290.428589 \r\n", | |
"L 67.518154 286.559355 \r\n", | |
"L 68.808327 286.681083 \r\n", | |
"L 72.678848 285.602915 \r\n", | |
"L 73.969021 282.716205 \r\n", | |
"L 75.259194 282.507527 \r\n", | |
"L 76.549368 285.863762 \r\n", | |
"L 77.839541 289.602573 \r\n", | |
"L 81.710061 285.759423 \r\n", | |
"L 83.000235 284.194339 \r\n", | |
"L 85.580582 282.959662 \r\n", | |
"L 86.870755 280.977223 \r\n", | |
"L 90.741275 290.76769 \r\n", | |
"L 92.031449 291.689351 \r\n", | |
"L 93.321622 288.94176 \r\n", | |
"L 94.611796 291.898029 \r\n", | |
"L 95.901969 293.776129 \r\n", | |
"L 99.772489 286.246338 \r\n", | |
"L 101.062663 287.498405 \r\n", | |
"L 102.352836 288.367896 \r\n", | |
"L 103.643009 288.072269 \r\n", | |
"L 104.933183 282.385798 \r\n", | |
"L 108.803703 278.40353 \r\n", | |
"L 110.093876 276.734108 \r\n", | |
"L 111.38405 270.960689 \r\n", | |
"L 112.674223 273.534382 \r\n", | |
"L 117.834917 273.482212 \r\n", | |
"L 119.12509 271.951908 \r\n", | |
"L 120.415264 273.290924 \r\n", | |
"L 121.705437 274.856008 \r\n", | |
"L 122.995611 273.743059 \r\n", | |
"L 126.866131 273.464822 \r\n", | |
"L 128.156304 275.116855 \r\n", | |
"L 129.446478 276.281973 \r\n", | |
"L 130.736651 276.716718 \r\n", | |
"L 132.026824 278.40353 \r\n", | |
"L 135.897345 279.255631 \r\n", | |
"L 137.187518 276.368922 \r\n", | |
"L 138.477691 278.107903 \r\n", | |
"L 139.767865 278.125293 \r\n", | |
"L 141.058038 276.56021 \r\n", | |
"L 144.928559 280.977223 \r\n", | |
"L 146.218732 283.359628 \r\n", | |
"L 147.508905 280.142512 \r\n", | |
"L 150.089252 278.525259 \r\n", | |
"L 153.959772 277.44709 \r\n", | |
"L 155.249946 275.655939 \r\n", | |
"L 156.540119 274.908177 \r\n", | |
"L 157.830293 268.108759 \r\n", | |
"L 159.120466 265.274218 \r\n", | |
"L 162.990986 262.231 \r\n", | |
"L 164.28116 260.405069 \r\n", | |
"L 165.571333 261.813645 \r\n", | |
"L 166.861507 268.00442 \r\n", | |
"L 169.441853 267.946454 \r\n", | |
"L 172.0222 267.795742 \r\n", | |
"L 173.312374 268.230487 \r\n", | |
"L 174.602547 267.93486 \r\n", | |
"L 175.89272 268.230487 \r\n", | |
"L 177.182894 269.604283 \r\n", | |
"L 181.053414 269.013029 \r\n", | |
"L 182.343587 269.412995 \r\n", | |
"L 184.923934 264.039541 \r\n", | |
"L 186.214108 267.708793 \r\n", | |
"L 190.084628 270.143367 \r\n", | |
"L 191.374801 269.343436 \r\n", | |
"L 192.664975 271.221536 \r\n", | |
"L 195.245322 272.247535 \r\n", | |
"L 199.115842 275.377702 \r\n", | |
"L 200.406015 277.725327 \r\n", | |
"L 201.696189 278.907835 \r\n", | |
"L 202.986362 271.951908 \r\n", | |
"L 204.276535 268.700012 \r\n", | |
"L 208.147056 267.04798 \r\n", | |
"L 209.437229 269.395605 \r\n", | |
"L 210.727402 268.265267 \r\n", | |
"L 212.017576 269.708622 \r\n", | |
"L 213.307749 270.299875 \r\n", | |
"L 217.17827 268.526114 \r\n", | |
"L 218.468443 276.925396 \r\n", | |
"L 219.758616 275.777668 \r\n", | |
"L 221.04879 271.951908 \r\n", | |
"L 222.338963 273.482212 \r\n", | |
"L 226.209483 275.516821 \r\n", | |
"L 227.499657 276.351532 \r\n", | |
"L 228.78983 273.030077 \r\n", | |
"L 230.080004 270.943299 \r\n", | |
"L 231.370177 267.187098 \r\n", | |
"L 235.240697 266.474116 \r\n", | |
"L 236.530871 262.178831 \r\n", | |
"L 239.111217 260.457239 \r\n", | |
"L 240.401391 262.178831 \r\n", | |
"L 244.271911 263.100491 \r\n", | |
"L 245.562085 261.744085 \r\n", | |
"L 246.852258 261.152832 \r\n", | |
"L 248.142431 259.535579 \r\n", | |
"L 249.432605 262.352729 \r\n", | |
"L 253.303125 262.909203 \r\n", | |
"L 255.883472 268.543504 \r\n", | |
"L 257.173645 269.117368 \r\n", | |
"L 258.463819 267.100149 \r\n", | |
"L 262.334339 263.587406 \r\n", | |
"L 264.914686 259.222562 \r\n", | |
"L 266.204859 261.170221 \r\n", | |
"L 267.495033 261.796255 \r\n", | |
"L 271.365553 262.144051 \r\n", | |
"L 272.655726 263.430898 \r\n", | |
"L 273.9459 259.483409 \r\n", | |
"L 275.236073 259.500799 \r\n", | |
"L 276.526246 255.779378 \r\n", | |
"L 280.396767 255.466361 \r\n", | |
"L 281.68694 256.144564 \r\n", | |
"L 282.977113 257.570529 \r\n", | |
"L 284.267287 260.874595 \r\n", | |
"L 285.55746 257.883546 \r\n", | |
"L 289.42798 261.448459 \r\n", | |
"L 290.718154 260.422459 \r\n", | |
"L 292.008327 260.196392 \r\n", | |
"L 293.298501 261.378899 \r\n", | |
"L 294.588674 256.040225 \r\n", | |
"L 298.459194 265.778523 \r\n", | |
"L 299.749368 259.292121 \r\n", | |
"L 301.039541 261.935373 \r\n", | |
"L 302.329715 257.379241 \r\n", | |
"L 303.619888 261.883204 \r\n", | |
"L 307.490408 268.978249 \r\n", | |
"L 308.780582 267.378386 \r\n", | |
"L 310.070755 267.308827 \r\n", | |
"L 312.651102 267.604454 \r\n", | |
"L 316.521622 267.604454 \r\n", | |
"L 317.811796 267.726183 \r\n", | |
"L 319.101969 269.134758 \r\n", | |
"L 320.392142 271.308485 \r\n", | |
"L 321.682316 270.178147 \r\n", | |
"L 325.552836 266.02198 \r\n", | |
"L 326.843009 265.413337 \r\n", | |
"L 328.133183 266.282828 \r\n", | |
"L 329.423356 268.613063 \r\n", | |
"L 330.71353 268.456555 \r\n", | |
"L 334.58405 269.465164 \r\n", | |
"L 335.874223 267.134929 \r\n", | |
"L 337.164397 266.908861 \r\n", | |
"L 338.45457 266.317607 \r\n", | |
"L 339.744743 263.709135 \r\n", | |
"L 344.905437 262.144051 \r\n", | |
"L 346.195611 261.239781 \r\n", | |
"L 347.485784 260.126832 \r\n", | |
"L 348.775957 259.36168 \r\n", | |
"L 352.646478 261.657136 \r\n", | |
"L 353.936651 264.14388 \r\n", | |
"L 355.226824 262.857034 \r\n", | |
"L 356.516998 263.257 \r\n", | |
"L 357.807171 264.769914 \r\n", | |
"L 361.677691 265.395947 \r\n", | |
"L 362.967865 265.030761 \r\n", | |
"L 364.258038 265.204659 \r\n", | |
"L 365.548212 267.656623 \r\n", | |
"L 366.838385 271.030248 \r\n", | |
"L 370.708905 274.821228 \r\n", | |
"L 373.289252 276.803667 \r\n", | |
"L 374.579426 274.073466 \r\n", | |
"L 375.869599 275.5516 \r\n", | |
"L 379.740119 279.41214 \r\n", | |
"L 381.030293 278.003565 \r\n", | |
"L 382.320466 280.959833 \r\n", | |
"L 383.610639 283.15095 \r\n", | |
"L 384.900813 280.072953 \r\n", | |
"L 388.771333 278.977394 \r\n", | |
"L 390.061507 278.786106 \r\n", | |
"L 391.35168 276.195024 \r\n", | |
"L 392.641853 276.594989 \r\n", | |
"L 393.932027 304.436087 \r\n", | |
"L 397.802547 305.618594 \r\n", | |
"L 399.09272 304.731714 \r\n", | |
"L 400.382894 306.209848 \r\n", | |
"L 401.673067 309.948659 \r\n", | |
"L 402.963241 308.035779 \r\n", | |
"L 406.833761 296.836737 \r\n", | |
"L 408.123934 296.767177 \r\n", | |
"L 409.414108 299.010464 \r\n", | |
"L 411.994454 294.906467 \r\n", | |
"L 415.864975 294.836908 \r\n", | |
"L 417.155148 292.280605 \r\n", | |
"L 418.445322 290.402504 \r\n", | |
"L 421.025668 291.7763 \r\n", | |
"L 426.186362 289.306946 \r\n", | |
"L 427.476535 287.202778 \r\n", | |
"L 428.766709 287.202778 \r\n", | |
"L 430.056882 289.498234 \r\n", | |
"L 435.217576 287.828811 \r\n", | |
"L 436.507749 288.437455 \r\n", | |
"L 437.797923 287.637523 \r\n", | |
"L 439.088096 283.846543 \r\n", | |
"L 442.958616 264.682965 \r\n", | |
"L 444.24879 259.518189 \r\n", | |
"L 445.538963 260.874595 \r\n", | |
"L 446.829137 256.683649 \r\n", | |
"L 448.11931 255.275073 \r\n", | |
"L 451.98983 251.971008 \r\n", | |
"L 454.570177 245.780233 \r\n", | |
"L 455.86035 249.153858 \r\n", | |
"L 457.150524 246.580165 \r\n", | |
"L 461.021044 243.919523 \r\n", | |
"L 462.311217 249.797281 \r\n", | |
"L 463.601391 250.214637 \r\n", | |
"L 464.891564 253.970837 \r\n", | |
"L 466.181738 254.057786 \r\n", | |
"L 470.052258 252.892668 \r\n", | |
"L 471.342431 254.457752 \r\n", | |
"L 472.632605 252.527482 \r\n", | |
"L 473.922778 249.275586 \r\n", | |
"L 475.212952 249.049519 \r\n", | |
"L 479.083472 243.18915 \r\n", | |
"L 480.373645 245.415047 \r\n", | |
"L 481.663819 248.493045 \r\n", | |
"L 482.953992 248.214808 \r\n", | |
"L 484.244165 245.1542 \r\n", | |
"L 488.114686 243.363049 \r\n", | |
"L 489.404859 243.171761 \r\n", | |
"L 490.695033 244.458607 \r\n", | |
"L 491.985206 242.458778 \r\n", | |
"L 493.275379 239.606848 \r\n", | |
"L 497.1459 242.215321 \r\n", | |
"L 502.306593 243.032642 \r\n", | |
"L 506.177113 245.623725 \r\n", | |
"L 508.75746 244.945522 \r\n", | |
"L 510.047634 241.432779 \r\n", | |
"L 511.337807 240.076373 \r\n", | |
"L 515.208327 241.589287 \r\n", | |
"L 516.498501 241.606677 \r\n", | |
"L 517.788674 244.023862 \r\n", | |
"L 519.078848 236.980986 \r\n", | |
"L 520.369021 238.093934 \r\n", | |
"L 524.239541 233.624751 \r\n", | |
"L 525.529715 236.007156 \r\n", | |
"L 526.819888 237.954815 \r\n", | |
"L 528.110061 234.546411 \r\n", | |
"L 529.400235 234.546411 \r\n", | |
"L 533.270755 236.928816 \r\n", | |
"L 534.560928 234.529021 \r\n", | |
"L 535.851102 229.381635 \r\n", | |
"L 537.141275 226.390587 \r\n", | |
"L 538.431449 226.199299 \r\n", | |
"L 542.301969 226.512316 \r\n", | |
"L 544.882316 213.243885 \r\n", | |
"L 546.172489 212.443953 \r\n", | |
"L 547.462663 209.93982 \r\n", | |
"L 551.333183 207.400906 \r\n", | |
"L 552.623356 208.148669 \r\n", | |
"L 553.91353 211.452734 \r\n", | |
"L 555.203703 210.791921 \r\n", | |
"L 556.493876 215.435002 \r\n", | |
"L 560.364397 219.538999 \r\n", | |
"L 561.65457 221.225811 \r\n", | |
"L 562.944743 220.999744 \r\n", | |
"L 564.234917 219.086864 \r\n", | |
"L 565.52509 220.982354 \r\n", | |
"L 570.685784 236.233223 \r\n", | |
"L 571.975957 247.832232 \r\n", | |
"L 573.266131 244.580336 \r\n", | |
"L 574.556304 250.927619 \r\n", | |
"L 579.716998 239.172103 \r\n", | |
"L 581.007171 245.206369 \r\n", | |
"L 582.297345 242.945693 \r\n", | |
"L 583.587518 248.145248 \r\n", | |
"L 588.748212 246.910571 \r\n", | |
"L 590.038385 252.666601 \r\n", | |
"L 591.328559 262.804864 \r\n", | |
"L 592.618732 258.787816 \r\n", | |
"L 596.489252 274.577771 \r\n", | |
"L 597.779426 273.377873 \r\n", | |
"L 599.069599 275.255973 \r\n", | |
"L 600.359772 273.447432 \r\n", | |
"L 601.649946 260.405069 \r\n", | |
"L 605.520466 271.186756 \r\n", | |
"L 606.810639 266.682794 \r\n", | |
"L 608.100813 256.57931 \r\n", | |
"L 609.390986 253.223075 \r\n", | |
"L 610.68116 251.240636 \r\n", | |
"L 614.55168 248.145248 \r\n", | |
"L 615.841853 242.476168 \r\n", | |
"L 617.132027 248.406096 \r\n", | |
"L 618.4222 253.6926 \r\n", | |
"L 619.712374 256.092395 \r\n", | |
"L 623.582894 253.536092 \r\n", | |
"L 624.873067 247.171419 \r\n", | |
"L 626.163241 245.675894 \r\n", | |
"L 627.453414 242.702236 \r\n", | |
"L 630.033761 244.673081 \r\n", | |
"L 632.614108 246.771453 \r\n", | |
"L 633.904281 240.285051 \r\n", | |
"L 635.194454 247.849621 \r\n", | |
"L 636.484628 249.171248 \r\n", | |
"L 637.774801 247.327927 \r\n", | |
"L 641.645322 242.806574 \r\n", | |
"L 642.935495 246.788843 \r\n", | |
"L 644.225668 245.536776 \r\n", | |
"L 646.806015 249.066909 \r\n", | |
"L 650.676535 244.458607 \r\n", | |
"L 651.966709 235.937597 \r\n", | |
"L 653.256882 231.485803 \r\n", | |
"L 654.547056 228.459975 \r\n", | |
"L 659.707749 233.068277 \r\n", | |
"L 660.997923 229.572923 \r\n", | |
"L 662.288096 229.294686 \r\n", | |
"L 663.57827 226.547095 \r\n", | |
"L 664.868443 219.678117 \r\n", | |
"L 670.029137 220.35632 \r\n", | |
"L 671.31931 223.956013 \r\n", | |
"L 672.609483 231.085838 \r\n", | |
"L 673.899657 229.729432 \r\n", | |
"L 677.770177 224.338588 \r\n", | |
"L 679.06035 220.860625 \r\n", | |
"L 680.350524 218.565169 \r\n", | |
"L 681.640697 222.651776 \r\n", | |
"L 682.930871 224.599436 \r\n", | |
"L 688.091564 220.756286 \r\n", | |
"L 689.381738 227.138349 \r\n", | |
"L 690.671911 226.529705 \r\n", | |
"L 691.962085 230.303296 \r\n", | |
"L 695.832605 230.442414 \r\n", | |
"L 697.122778 230.042449 \r\n", | |
"L 698.412952 229.103398 \r\n", | |
"L 699.703125 228.581704 \r\n", | |
"L 700.993298 227.433976 \r\n", | |
"L 704.863819 225.642825 \r\n", | |
"L 706.153992 226.877502 \r\n", | |
"L 707.444165 225.868892 \r\n", | |
"L 708.734339 230.146787 \r\n", | |
"L 713.895033 224.373368 \r\n", | |
"L 715.185206 216.008866 \r\n", | |
"L 716.475379 212.026598 \r\n", | |
"L 717.765553 210.339786 \r\n", | |
"L 719.055726 203.470808 \r\n", | |
"L 722.926246 199.105964 \r\n", | |
"L 724.21642 188.498175 \r\n", | |
"L 726.796767 177.59476 \r\n", | |
"L 728.08694 176.134015 \r\n", | |
"L 731.95746 179.907605 \r\n", | |
"L 733.247634 175.177575 \r\n", | |
"L 735.82798 168.534665 \r\n", | |
"L 737.118154 169.056359 \r\n", | |
"L 740.988674 160.622298 \r\n", | |
"L 742.278848 163.213381 \r\n", | |
"L 743.569021 165.508837 \r\n", | |
"L 744.859194 163.665516 \r\n", | |
"L 746.149368 160.657078 \r\n", | |
"L 750.019888 157.770368 \r\n", | |
"L 751.310061 159.665858 \r\n", | |
"L 752.600235 143.910684 \r\n", | |
"L 753.890408 143.962853 \r\n", | |
"L 755.180582 137.546011 \r\n", | |
"L 759.051102 133.372454 \r\n", | |
"L 760.341275 126.033952 \r\n", | |
"L 761.631449 132.276896 \r\n", | |
"L 762.921622 128.06856 \r\n", | |
"L 764.211796 129.98144 \r\n", | |
"L 768.082316 122.990734 \r\n", | |
"L 769.372489 123.129852 \r\n", | |
"L 770.662663 114.887079 \r\n", | |
"L 771.952836 116.939077 \r\n", | |
"L 773.243009 110.539624 \r\n", | |
"L 777.11353 103.966273 \r\n", | |
"L 778.403703 102.644647 \r\n", | |
"L 779.693876 100.592649 \r\n", | |
"L 780.98405 96.436483 \r\n", | |
"L 782.274223 95.480043 \r\n", | |
"L 786.144743 106.400848 \r\n", | |
"L 787.434917 108.852812 \r\n", | |
"L 788.72509 106.800814 \r\n", | |
"L 790.015264 89.654454 \r\n", | |
"L 791.305437 93.81062 \r\n", | |
"L 795.175957 87.306829 \r\n", | |
"L 796.466131 86.019982 \r\n", | |
"L 797.756304 80.594359 \r\n", | |
"L 800.336651 62.143763 \r\n", | |
"L 804.207171 58.178885 \r\n", | |
"L 805.497345 45.866894 \r\n", | |
"L 806.787518 41.623779 \r\n", | |
"L 808.077691 50.9795 \r\n", | |
"L 809.367865 55.674751 \r\n", | |
"L 813.238385 33.033209 \r\n", | |
"L 814.528559 35.7808 \r\n", | |
"L 815.818732 39.676119 \r\n", | |
"L 817.108905 44.127912 \r\n", | |
"L 818.399079 52.631533 \r\n", | |
"L 822.269599 50.527365 \r\n", | |
"L 823.559772 58.822308 \r\n", | |
"L 824.849946 68.421487 \r\n", | |
"L 826.140119 71.429925 \r\n", | |
"L 827.430293 73.742771 \r\n", | |
"L 831.300813 67.778064 \r\n", | |
"L 832.590986 65.27393 \r\n", | |
"L 833.88116 72.768941 \r\n", | |
"L 835.171333 82.159443 \r\n", | |
"L 836.461507 77.516361 \r\n", | |
"L 840.332027 83.533238 \r\n", | |
"L 841.6222 71.325586 \r\n", | |
"L 842.912374 22.025455 \r\n", | |
"L 844.202547 52.961939 \r\n", | |
"L 845.49272 57.083326 \r\n", | |
"L 849.363241 38.076256 \r\n", | |
"L 850.653414 38.180595 \r\n", | |
"L 851.943587 37.311104 \r\n", | |
"L 853.233761 41.849846 \r\n", | |
"L 854.523934 50.04045 \r\n", | |
"L 859.684628 47.484147 \r\n", | |
"L 860.974801 58.978816 \r\n", | |
"L 863.555148 69.934401 \r\n", | |
"L 867.425668 64.213151 \r\n", | |
"L 868.715842 59.257053 \r\n", | |
"L 870.006015 57.587631 \r\n", | |
"L 872.586362 75.047007 \r\n", | |
"L 876.456882 85.063542 \r\n", | |
"L 877.747056 93.306315 \r\n", | |
"L 879.037229 98.297193 \r\n", | |
"L 880.327402 91.410825 \r\n", | |
"L 881.617576 88.245879 \r\n", | |
"L 885.488096 87.776354 \r\n", | |
"L 886.77827 82.107273 \r\n", | |
"L 888.068443 81.550799 \r\n", | |
"L 889.358616 76.125176 \r\n", | |
"L 890.64879 81.759477 \r\n", | |
"L 894.51931 76.316464 \r\n", | |
"L 895.809483 79.168394 \r\n", | |
"L 898.38983 61.274272 \r\n", | |
"L 899.680004 55.657361 \r\n", | |
"L 903.550524 42.528049 \r\n", | |
"L 904.840697 57.500682 \r\n", | |
"L 906.130871 66.004302 \r\n", | |
"L 907.421044 65.030473 \r\n", | |
"L 922.903125 65.030473 \r\n", | |
"L 922.903125 65.030473 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_49\">\r\n", | |
" <path clip-path=\"url(#p5f7fe7c5d9)\" d=\"M 30.103125 314.323159 \r\n", | |
"L 31.393298 318.534545 \r\n", | |
"L 32.683472 308.095053 \r\n", | |
"L 36.553992 305.366549 \r\n", | |
"L 37.844165 304.951342 \r\n", | |
"L 39.134339 300.858586 \r\n", | |
"L 40.424512 301.333109 \r\n", | |
"L 41.714686 300.206118 \r\n", | |
"L 45.585206 302.222838 \r\n", | |
"L 46.875379 302.282153 \r\n", | |
"L 48.165553 300.68064 \r\n", | |
"L 49.455726 293.444174 \r\n", | |
"L 50.7459 294.689795 \r\n", | |
"L 55.906593 296.409939 \r\n", | |
"L 58.48694 287.571959 \r\n", | |
"L 59.777113 278.200142 \r\n", | |
"L 63.647634 281.403168 \r\n", | |
"L 64.937807 286.029761 \r\n", | |
"L 66.22798 277.073151 \r\n", | |
"L 67.518154 278.318772 \r\n", | |
"L 68.808327 277.725619 \r\n", | |
"L 72.678848 274.285332 \r\n", | |
"L 73.969021 273.336287 \r\n", | |
"L 75.259194 277.191782 \r\n", | |
"L 76.549368 281.581114 \r\n", | |
"L 77.839541 280.394808 \r\n", | |
"L 81.710061 278.793295 \r\n", | |
"L 83.000235 275.768215 \r\n", | |
"L 84.290408 276.657944 \r\n", | |
"L 85.580582 273.395603 \r\n", | |
"L 86.870755 290.834301 \r\n", | |
"L 92.031449 282.76742 \r\n", | |
"L 93.321622 282.589474 \r\n", | |
"L 94.611796 288.936211 \r\n", | |
"L 95.901969 277.666304 \r\n", | |
"L 99.772489 278.259457 \r\n", | |
"L 101.062663 279.505078 \r\n", | |
"L 102.352836 281.284537 \r\n", | |
"L 103.643009 273.454918 \r\n", | |
"L 104.933183 272.031351 \r\n", | |
"L 108.803703 269.896 \r\n", | |
"L 110.093876 263.015425 \r\n", | |
"L 111.38405 264.083101 \r\n", | |
"L 112.674223 268.650379 \r\n", | |
"L 113.964397 269.302847 \r\n", | |
"L 117.834917 263.96447 \r\n", | |
"L 119.12509 266.455712 \r\n", | |
"L 120.415264 265.625298 \r\n", | |
"L 121.705437 265.803244 \r\n", | |
"L 122.995611 264.083101 \r\n", | |
"L 126.866131 264.142416 \r\n", | |
"L 128.156304 264.379677 \r\n", | |
"L 129.446478 265.388037 \r\n", | |
"L 130.736651 264.676254 \r\n", | |
"L 132.026824 268.057226 \r\n", | |
"L 135.897345 265.565983 \r\n", | |
"L 137.187518 266.396397 \r\n", | |
"L 138.477691 270.845045 \r\n", | |
"L 139.767865 266.337082 \r\n", | |
"L 141.058038 273.81081 \r\n", | |
"L 144.928559 276.005476 \r\n", | |
"L 146.218732 270.311207 \r\n", | |
"L 147.508905 271.260252 \r\n", | |
"L 148.799079 272.031351 \r\n", | |
"L 150.089252 268.650379 \r\n", | |
"L 153.959772 265.447352 \r\n", | |
"L 155.249946 264.083101 \r\n", | |
"L 156.540119 255.363751 \r\n", | |
"L 157.830293 253.287716 \r\n", | |
"L 159.120466 246.763033 \r\n", | |
"L 162.990986 246.16988 \r\n", | |
"L 164.28116 247.17824 \r\n", | |
"L 165.571333 250.915104 \r\n", | |
"L 166.861507 256.01622 \r\n", | |
"L 172.0222 255.423067 \r\n", | |
"L 173.312374 253.228401 \r\n", | |
"L 174.602547 254.355391 \r\n", | |
"L 175.89272 257.321156 \r\n", | |
"L 177.182894 259.871714 \r\n", | |
"L 181.053414 256.13485 \r\n", | |
"L 182.343587 255.482382 \r\n", | |
"L 183.633761 251.626888 \r\n", | |
"L 184.923934 260.998705 \r\n", | |
"L 186.214108 256.609373 \r\n", | |
"L 190.084628 258.092255 \r\n", | |
"L 191.374801 262.06638 \r\n", | |
"L 192.664975 260.998705 \r\n", | |
"L 193.955148 261.235966 \r\n", | |
"L 195.245322 262.481587 \r\n", | |
"L 199.115842 270.90436 \r\n", | |
"L 200.406015 269.480793 \r\n", | |
"L 201.696189 262.125696 \r\n", | |
"L 202.986362 256.431427 \r\n", | |
"L 204.276535 253.347031 \r\n", | |
"L 208.147056 258.804039 \r\n", | |
"L 209.437229 255.541697 \r\n", | |
"L 210.727402 254.177446 \r\n", | |
"L 212.017576 261.651173 \r\n", | |
"L 213.307749 256.194166 \r\n", | |
"L 218.468443 265.150776 \r\n", | |
"L 219.758616 262.007065 \r\n", | |
"L 221.04879 261.651173 \r\n", | |
"L 222.338963 264.438992 \r\n", | |
"L 226.209483 267.286127 \r\n", | |
"L 227.499657 262.362957 \r\n", | |
"L 228.78983 262.303642 \r\n", | |
"L 230.080004 257.202526 \r\n", | |
"L 231.370177 256.372112 \r\n", | |
"L 235.240697 253.465662 \r\n", | |
"L 236.530871 250.20332 \r\n", | |
"L 237.821044 250.262636 \r\n", | |
"L 239.111217 247.05961 \r\n", | |
"L 240.401391 252.397987 \r\n", | |
"L 244.271911 249.966059 \r\n", | |
"L 245.562085 247.534132 \r\n", | |
"L 246.852258 246.229195 \r\n", | |
"L 248.142431 243.678637 \r\n", | |
"L 249.432605 246.051249 \r\n", | |
"L 253.303125 245.636042 \r\n", | |
"L 254.593298 254.533337 \r\n", | |
"L 255.883472 254.058815 \r\n", | |
"L 257.173645 247.118925 \r\n", | |
"L 258.463819 252.10141 \r\n", | |
"L 262.334339 244.805628 \r\n", | |
"L 263.624512 242.077124 \r\n", | |
"L 264.914686 244.212475 \r\n", | |
"L 267.495033 244.983574 \r\n", | |
"L 271.365553 247.830708 \r\n", | |
"L 272.655726 243.500692 \r\n", | |
"L 273.9459 241.306026 \r\n", | |
"L 275.236073 240.416296 \r\n", | |
"L 276.526246 238.280945 \r\n", | |
"L 280.396767 237.391216 \r\n", | |
"L 281.68694 238.636837 \r\n", | |
"L 282.977113 242.788908 \r\n", | |
"L 284.267287 242.551647 \r\n", | |
"L 285.55746 246.16988 \r\n", | |
"L 289.42798 242.670277 \r\n", | |
"L 290.718154 242.433016 \r\n", | |
"L 292.008327 240.297665 \r\n", | |
"L 293.298501 249.669483 \r\n", | |
"L 294.588674 257.795679 \r\n", | |
"L 298.459194 244.15316 \r\n", | |
"L 299.749368 246.940979 \r\n", | |
"L 301.039541 244.864943 \r\n", | |
"L 302.329715 250.618528 \r\n", | |
"L 303.619888 254.829914 \r\n", | |
"L 307.490408 261.94775 \r\n", | |
"L 308.780582 257.439787 \r\n", | |
"L 310.070755 260.761444 \r\n", | |
"L 311.360928 255.897589 \r\n", | |
"L 312.651102 258.270201 \r\n", | |
"L 316.521622 262.362957 \r\n", | |
"L 317.811796 254.889229 \r\n", | |
"L 319.101969 264.735569 \r\n", | |
"L 320.392142 264.794884 \r\n", | |
"L 321.682316 261.117336 \r\n", | |
"L 325.552836 261.532543 \r\n", | |
"L 326.843009 261.117336 \r\n", | |
"L 328.133183 261.235966 \r\n", | |
"L 329.423356 260.702128 \r\n", | |
"L 330.71353 265.210091 \r\n", | |
"L 334.58405 263.07474 \r\n", | |
"L 335.874223 261.05802 \r\n", | |
"L 337.164397 262.718849 \r\n", | |
"L 338.45457 258.863354 \r\n", | |
"L 339.744743 257.439787 \r\n", | |
"L 344.905437 257.439787 \r\n", | |
"L 346.195611 252.338671 \r\n", | |
"L 347.485784 251.626888 \r\n", | |
"L 348.775957 252.160725 \r\n", | |
"L 352.646478 255.185806 \r\n", | |
"L 353.936651 255.185806 \r\n", | |
"L 355.226824 254.11813 \r\n", | |
"L 356.516998 253.643608 \r\n", | |
"L 357.807171 252.813194 \r\n", | |
"L 361.677691 251.923464 \r\n", | |
"L 364.258038 256.075535 \r\n", | |
"L 365.548212 255.423067 \r\n", | |
"L 366.838385 265.328722 \r\n", | |
"L 370.708905 260.494525 \r\n", | |
"L 371.999079 263.905155 \r\n", | |
"L 373.289252 261.117336 \r\n", | |
"L 374.579426 262.95611 \r\n", | |
"L 375.869599 268.353802 \r\n", | |
"L 379.740119 269.836685 \r\n", | |
"L 381.030293 271.319567 \r\n", | |
"L 382.320466 275.649584 \r\n", | |
"L 383.610639 270.311207 \r\n", | |
"L 384.900813 267.760649 \r\n", | |
"L 388.771333 268.235171 \r\n", | |
"L 390.061507 267.523388 \r\n", | |
"L 391.35168 265.98119 \r\n", | |
"L 392.641853 266.574343 \r\n", | |
"L 393.932027 299.612965 \r\n", | |
"L 397.802547 297.774191 \r\n", | |
"L 399.09272 296.469254 \r\n", | |
"L 400.382894 298.367344 \r\n", | |
"L 401.673067 297.833506 \r\n", | |
"L 402.963241 300.977217 \r\n", | |
"L 406.833761 283.182627 \r\n", | |
"L 408.123934 286.622914 \r\n", | |
"L 409.414108 287.80922 \r\n", | |
"L 410.704281 283.538519 \r\n", | |
"L 411.994454 286.089077 \r\n", | |
"L 415.864975 278.318772 \r\n", | |
"L 417.155148 277.84425 \r\n", | |
"L 418.445322 278.378088 \r\n", | |
"L 419.735495 279.445763 \r\n", | |
"L 421.025668 276.717259 \r\n", | |
"L 424.896189 274.403963 \r\n", | |
"L 426.186362 272.743134 \r\n", | |
"L 427.476535 274.641224 \r\n", | |
"L 428.766709 275.412323 \r\n", | |
"L 430.056882 274.878485 \r\n", | |
"L 433.927402 274.463278 \r\n", | |
"L 435.217576 276.598629 \r\n", | |
"L 436.507749 276.539313 \r\n", | |
"L 437.797923 272.505873 \r\n", | |
"L 439.088096 265.210091 \r\n", | |
"L 442.958616 239.823143 \r\n", | |
"L 444.24879 243.619322 \r\n", | |
"L 445.538963 239.348621 \r\n", | |
"L 446.829137 239.704512 \r\n", | |
"L 448.11931 237.509846 \r\n", | |
"L 451.98983 233.891613 \r\n", | |
"L 453.280004 231.519001 \r\n", | |
"L 454.570177 229.620912 \r\n", | |
"L 457.150524 228.553236 \r\n", | |
"L 461.021044 233.595037 \r\n", | |
"L 462.311217 236.620117 \r\n", | |
"L 464.891564 238.874098 \r\n", | |
"L 466.181738 237.509846 \r\n", | |
"L 470.052258 238.340261 \r\n", | |
"L 471.342431 237.539504 \r\n", | |
"L 472.632605 231.578316 \r\n", | |
"L 473.922778 229.858173 \r\n", | |
"L 475.212952 220.960878 \r\n", | |
"L 479.083472 223.422463 \r\n", | |
"L 480.373645 228.731182 \r\n", | |
"L 481.663819 228.612551 \r\n", | |
"L 482.953992 224.104589 \r\n", | |
"L 484.244165 221.494715 \r\n", | |
"L 488.114686 219.003473 \r\n", | |
"L 489.404859 218.469635 \r\n", | |
"L 491.985206 218.113743 \r\n", | |
"L 493.275379 217.105383 \r\n", | |
"L 497.1459 219.833887 \r\n", | |
"L 498.436073 219.537311 \r\n", | |
"L 501.01642 216.037708 \r\n", | |
"L 502.306593 221.198139 \r\n", | |
"L 506.177113 221.850607 \r\n", | |
"L 507.467287 221.465058 \r\n", | |
"L 508.75746 217.876482 \r\n", | |
"L 510.047634 213.309204 \r\n", | |
"L 511.337807 216.156339 \r\n", | |
"L 515.208327 214.732771 \r\n", | |
"L 516.498501 219.300049 \r\n", | |
"L 517.788674 221.079508 \r\n", | |
"L 519.078848 215.741131 \r\n", | |
"L 520.369021 208.208088 \r\n", | |
"L 525.529715 210.284124 \r\n", | |
"L 526.819888 208.475007 \r\n", | |
"L 528.110061 211.173853 \r\n", | |
"L 529.400235 208.326719 \r\n", | |
"L 533.270755 213.160916 \r\n", | |
"L 534.560928 207.199728 \r\n", | |
"L 535.851102 203.996702 \r\n", | |
"L 537.141275 205.242323 \r\n", | |
"L 538.431449 211.707691 \r\n", | |
"L 542.301969 204.64917 \r\n", | |
"L 543.592142 192.726795 \r\n", | |
"L 544.882316 191.303228 \r\n", | |
"L 546.172489 191.599805 \r\n", | |
"L 547.462663 189.879661 \r\n", | |
"L 551.333183 192.489534 \r\n", | |
"L 552.623356 191.184597 \r\n", | |
"L 553.91353 189.523769 \r\n", | |
"L 555.203703 189.108562 \r\n", | |
"L 556.493876 201.268198 \r\n", | |
"L 561.65457 208.148773 \r\n", | |
"L 562.944743 203.759441 \r\n", | |
"L 564.234917 200.675045 \r\n", | |
"L 565.52509 213.309204 \r\n", | |
"L 569.395611 228.25666 \r\n", | |
"L 570.685784 239.882458 \r\n", | |
"L 571.975957 231.341055 \r\n", | |
"L 573.266131 239.467251 \r\n", | |
"L 574.556304 236.620117 \r\n", | |
"L 578.426824 234.840658 \r\n", | |
"L 579.716998 241.12808 \r\n", | |
"L 581.007171 231.756262 \r\n", | |
"L 583.587518 243.1448 \r\n", | |
"L 587.458038 274.403963 \r\n", | |
"L 588.748212 258.507462 \r\n", | |
"L 590.038385 264.735569 \r\n", | |
"L 591.328559 286.978806 \r\n", | |
"L 592.618732 276.183422 \r\n", | |
"L 596.489252 294.808426 \r\n", | |
"L 597.779426 289.70731 \r\n", | |
"L 599.069599 306.019017 \r\n", | |
"L 600.359772 295.876101 \r\n", | |
"L 601.649946 300.087487 \r\n", | |
"L 605.520466 304.654765 \r\n", | |
"L 606.810639 288.343058 \r\n", | |
"L 609.390986 270.963675 \r\n", | |
"L 610.68116 281.87769 \r\n", | |
"L 614.55168 276.539313 \r\n", | |
"L 615.841853 275.530953 \r\n", | |
"L 617.132027 285.140032 \r\n", | |
"L 618.4222 284.072356 \r\n", | |
"L 619.712374 285.436608 \r\n", | |
"L 623.582894 276.598629 \r\n", | |
"L 624.873067 272.861765 \r\n", | |
"L 626.163241 264.379677 \r\n", | |
"L 627.453414 263.134056 \r\n", | |
"L 633.904281 258.922669 \r\n", | |
"L 635.194454 270.548468 \r\n", | |
"L 636.484628 270.073946 \r\n", | |
"L 637.774801 260.286921 \r\n", | |
"L 641.645322 267.49373 \r\n", | |
"L 642.935495 275.708899 \r\n", | |
"L 644.225668 270.192576 \r\n", | |
"L 645.515842 268.413117 \r\n", | |
"L 646.806015 263.96447 \r\n", | |
"L 650.676535 258.270201 \r\n", | |
"L 651.966709 254.533337 \r\n", | |
"L 653.256882 242.551647 \r\n", | |
"L 654.547056 253.406347 \r\n", | |
"L 655.837229 255.63067 \r\n", | |
"L 659.707749 252.10141 \r\n", | |
"L 660.997923 249.847429 \r\n", | |
"L 662.288096 249.07633 \r\n", | |
"L 663.57827 238.458891 \r\n", | |
"L 664.868443 235.849018 \r\n", | |
"L 670.029137 240.23835 \r\n", | |
"L 671.31931 247.890024 \r\n", | |
"L 672.609483 247.17824 \r\n", | |
"L 673.899657 246.229195 \r\n", | |
"L 677.770177 234.781343 \r\n", | |
"L 679.06035 236.145594 \r\n", | |
"L 680.350524 232.468046 \r\n", | |
"L 681.640697 236.501486 \r\n", | |
"L 682.930871 238.696152 \r\n", | |
"L 688.091564 237.687792 \r\n", | |
"L 689.381738 236.264225 \r\n", | |
"L 690.671911 236.442171 \r\n", | |
"L 691.962085 238.874098 \r\n", | |
"L 695.832605 234.30682 \r\n", | |
"L 697.122778 234.069559 \r\n", | |
"L 698.412952 231.519001 \r\n", | |
"L 699.703125 232.408731 \r\n", | |
"L 700.993298 226.477201 \r\n", | |
"L 704.863819 225.706102 \r\n", | |
"L 706.153992 228.434606 \r\n", | |
"L 707.444165 227.36693 \r\n", | |
"L 708.734339 238.518206 \r\n", | |
"L 710.024512 227.307615 \r\n", | |
"L 713.895033 223.155544 \r\n", | |
"L 715.185206 219.240734 \r\n", | |
"L 716.475379 216.749492 \r\n", | |
"L 717.765553 213.190574 \r\n", | |
"L 719.055726 206.903152 \r\n", | |
"L 722.926246 199.073532 \r\n", | |
"L 724.21642 186.854581 \r\n", | |
"L 725.506593 179.143592 \r\n", | |
"L 726.796767 177.660709 \r\n", | |
"L 728.08694 186.676635 \r\n", | |
"L 731.95746 185.431013 \r\n", | |
"L 733.247634 180.80442 \r\n", | |
"L 734.537807 183.948131 \r\n", | |
"L 735.82798 180.211267 \r\n", | |
"L 740.988674 178.372493 \r\n", | |
"L 742.278848 181.100997 \r\n", | |
"L 743.569021 179.558799 \r\n", | |
"L 744.859194 172.737539 \r\n", | |
"L 746.149368 173.034116 \r\n", | |
"L 750.019888 170.720819 \r\n", | |
"L 751.310061 161.052425 \r\n", | |
"L 752.600235 152.333076 \r\n", | |
"L 753.890408 160.222011 \r\n", | |
"L 755.180582 152.807599 \r\n", | |
"L 759.051102 144.20688 \r\n", | |
"L 760.341275 145.21524 \r\n", | |
"L 761.631449 142.19016 \r\n", | |
"L 762.921622 144.08825 \r\n", | |
"L 764.211796 144.028934 \r\n", | |
"L 768.082316 134.123279 \r\n", | |
"L 769.372489 139.402341 \r\n", | |
"L 770.662663 135.784108 \r\n", | |
"L 771.952836 138.038089 \r\n", | |
"L 774.533183 134.182595 \r\n", | |
"L 777.11353 130.149154 \r\n", | |
"L 778.403703 129.378055 \r\n", | |
"L 779.693876 122.794057 \r\n", | |
"L 780.98405 121.607751 \r\n", | |
"L 782.274223 126.590236 \r\n", | |
"L 786.144743 139.402341 \r\n", | |
"L 787.434917 139.402341 \r\n", | |
"L 788.72509 133.945333 \r\n", | |
"L 790.015264 124.632831 \r\n", | |
"L 791.305437 121.340832 \r\n", | |
"L 795.175957 117.989518 \r\n", | |
"L 796.466131 113.303609 \r\n", | |
"L 797.756304 107.016187 \r\n", | |
"L 799.046478 100.076297 \r\n", | |
"L 800.336651 100.432189 \r\n", | |
"L 804.207171 90.407904 \r\n", | |
"L 805.497345 80.264987 \r\n", | |
"L 806.787518 88.925021 \r\n", | |
"L 808.077691 94.382029 \r\n", | |
"L 809.367865 90.467219 \r\n", | |
"L 813.238385 72.79126 \r\n", | |
"L 814.528559 75.163872 \r\n", | |
"L 815.818732 76.646754 \r\n", | |
"L 817.108905 90.467219 \r\n", | |
"L 823.559772 114.905122 \r\n", | |
"L 824.849946 106.304404 \r\n", | |
"L 826.140119 115.972798 \r\n", | |
"L 827.430293 110.812367 \r\n", | |
"L 831.300813 106.304404 \r\n", | |
"L 832.590986 108.143178 \r\n", | |
"L 833.88116 112.53251 \r\n", | |
"L 835.171333 116.210059 \r\n", | |
"L 836.461507 115.854167 \r\n", | |
"L 840.332027 127.005443 \r\n", | |
"L 841.6222 85.66268 \r\n", | |
"L 842.912374 93.136407 \r\n", | |
"L 844.202547 111.346204 \r\n", | |
"L 845.49272 101.855756 \r\n", | |
"L 849.363241 96.63601 \r\n", | |
"L 850.653414 94.204083 \r\n", | |
"L 851.943587 90.467219 \r\n", | |
"L 853.233761 100.491505 \r\n", | |
"L 854.523934 106.778926 \r\n", | |
"L 858.394454 99.898352 \r\n", | |
"L 859.684628 110.456475 \r\n", | |
"L 860.974801 116.565951 \r\n", | |
"L 862.264975 116.921842 \r\n", | |
"L 863.555148 116.091428 \r\n", | |
"L 867.425668 112.41388 \r\n", | |
"L 868.715842 105.651936 \r\n", | |
"L 870.006015 113.54087 \r\n", | |
"L 871.296189 117.277734 \r\n", | |
"L 872.586362 133.530126 \r\n", | |
"L 876.456882 139.698917 \r\n", | |
"L 877.747056 144.562772 \r\n", | |
"L 879.037229 138.097404 \r\n", | |
"L 880.327402 133.470811 \r\n", | |
"L 881.617576 126.827497 \r\n", | |
"L 885.488096 126.768182 \r\n", | |
"L 886.77827 124.39557 \r\n", | |
"L 888.068443 134.419856 \r\n", | |
"L 889.358616 128.132434 \r\n", | |
"L 890.64879 136.021369 \r\n", | |
"L 894.51931 140.114125 \r\n", | |
"L 895.809483 135.190955 \r\n", | |
"L 897.099657 114.252654 \r\n", | |
"L 898.38983 103.160693 \r\n", | |
"L 899.680004 99.008622 \r\n", | |
"L 903.550524 91.772155 \r\n", | |
"L 904.840697 113.837447 \r\n", | |
"L 906.130871 114.54923 \r\n", | |
"L 907.421044 115.735536 \r\n", | |
"L 908.711217 109.092223 \r\n", | |
"L 912.581738 109.151538 \r\n", | |
"L 913.871911 112.769772 \r\n", | |
"L 915.162085 111.40552 \r\n", | |
"L 916.452258 106.60098 \r\n", | |
"L 917.742431 110.100583 \r\n", | |
"L 921.612952 112.888402 \r\n", | |
"L 922.903125 89.69612 \r\n", | |
"L 922.903125 89.69612 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_3\">\r\n", | |
" <path d=\"M 30.103125 333.36 \r\n", | |
"L 30.103125 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_4\">\r\n", | |
" <path d=\"M 922.903125 333.36 \r\n", | |
"L 922.903125 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_5\">\r\n", | |
" <path d=\"M 30.103125 333.36 \r\n", | |
"L 922.903125 333.36 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"patch_6\">\r\n", | |
" <path d=\"M 30.103125 7.2 \r\n", | |
"L 922.903125 7.2 \r\n", | |
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:square;stroke-linejoin:miter;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"legend_1\">\r\n", | |
" <g id=\"patch_7\">\r\n", | |
" <path d=\"M 37.103125 44.55625 \r\n", | |
"L 143.690625 44.55625 \r\n", | |
"Q 145.690625 44.55625 145.690625 42.55625 \r\n", | |
"L 145.690625 14.2 \r\n", | |
"Q 145.690625 12.2 143.690625 12.2 \r\n", | |
"L 37.103125 12.2 \r\n", | |
"Q 35.103125 12.2 35.103125 14.2 \r\n", | |
"L 35.103125 42.55625 \r\n", | |
"Q 35.103125 44.55625 37.103125 44.55625 \r\n", | |
"z\r\n", | |
"\" style=\"fill:#e5e5e5;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_50\">\r\n", | |
" <path d=\"M 39.103125 20.298437 \r\n", | |
"L 59.103125 20.298437 \r\n", | |
"\" style=\"fill:none;stroke:#e24a33;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_51\"/>\r\n", | |
" <g id=\"text_16\">\r\n", | |
" <!-- MOEX:YNDX -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 24.515625 72.90625 \r\n", | |
"L 43.109375 23.296875 \r\n", | |
"L 61.8125 72.90625 \r\n", | |
"L 76.515625 72.90625 \r\n", | |
"L 76.515625 0 \r\n", | |
"L 66.890625 0 \r\n", | |
"L 66.890625 64.015625 \r\n", | |
"L 48.09375 14.015625 \r\n", | |
"L 38.1875 14.015625 \r\n", | |
"L 19.390625 64.015625 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-77\"/>\r\n", | |
" <path d=\"M 6.296875 72.90625 \r\n", | |
"L 16.890625 72.90625 \r\n", | |
"L 35.015625 45.796875 \r\n", | |
"L 53.21875 72.90625 \r\n", | |
"L 63.8125 72.90625 \r\n", | |
"L 40.375 37.890625 \r\n", | |
"L 65.375 0 \r\n", | |
"L 54.78125 0 \r\n", | |
"L 34.28125 31 \r\n", | |
"L 13.625 0 \r\n", | |
"L 2.984375 0 \r\n", | |
"L 29 38.921875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-88\"/>\r\n", | |
" <path d=\"M 11.71875 12.40625 \r\n", | |
"L 22.015625 12.40625 \r\n", | |
"L 22.015625 0 \r\n", | |
"L 11.71875 0 \r\n", | |
"z\r\n", | |
"M 11.71875 51.703125 \r\n", | |
"L 22.015625 51.703125 \r\n", | |
"L 22.015625 39.3125 \r\n", | |
"L 11.71875 39.3125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-58\"/>\r\n", | |
" <path d=\"M -0.203125 72.90625 \r\n", | |
"L 10.40625 72.90625 \r\n", | |
"L 30.609375 42.921875 \r\n", | |
"L 50.6875 72.90625 \r\n", | |
"L 61.28125 72.90625 \r\n", | |
"L 35.5 34.71875 \r\n", | |
"L 35.5 0 \r\n", | |
"L 25.59375 0 \r\n", | |
"L 25.59375 34.71875 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-89\"/>\r\n", | |
" <path d=\"M 9.8125 72.90625 \r\n", | |
"L 23.09375 72.90625 \r\n", | |
"L 55.421875 11.921875 \r\n", | |
"L 55.421875 72.90625 \r\n", | |
"L 64.984375 72.90625 \r\n", | |
"L 64.984375 0 \r\n", | |
"L 51.703125 0 \r\n", | |
"L 19.390625 60.984375 \r\n", | |
"L 19.390625 0 \r\n", | |
"L 9.8125 0 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-78\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 23.798437)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-77\"/>\r\n", | |
" <use x=\"86.279297\" xlink:href=\"#DejaVuSans-79\"/>\r\n", | |
" <use x=\"164.990234\" xlink:href=\"#DejaVuSans-69\"/>\r\n", | |
" <use x=\"228.173828\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" <use x=\"296.679688\" xlink:href=\"#DejaVuSans-58\"/>\r\n", | |
" <use x=\"330.371094\" xlink:href=\"#DejaVuSans-89\"/>\r\n", | |
" <use x=\"391.455078\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"466.259766\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"543.261719\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_52\">\r\n", | |
" <path d=\"M 39.103125 34.976562 \r\n", | |
"L 59.103125 34.976562 \r\n", | |
"\" style=\"fill:none;stroke:#348abd;stroke-linecap:square;stroke-width:1.5;\"/>\r\n", | |
" </g>\r\n", | |
" <g id=\"line2d_53\"/>\r\n", | |
" <g id=\"text_17\">\r\n", | |
" <!-- NASDAQ:YNDX -->\r\n", | |
" <defs>\r\n", | |
" <path d=\"M 53.515625 70.515625 \r\n", | |
"L 53.515625 60.890625 \r\n", | |
"Q 47.90625 63.578125 42.921875 64.890625 \r\n", | |
"Q 37.9375 66.21875 33.296875 66.21875 \r\n", | |
"Q 25.25 66.21875 20.875 63.09375 \r\n", | |
"Q 16.5 59.96875 16.5 54.203125 \r\n", | |
"Q 16.5 49.359375 19.40625 46.890625 \r\n", | |
"Q 22.3125 44.4375 30.421875 42.921875 \r\n", | |
"L 36.375 41.703125 \r\n", | |
"Q 47.40625 39.59375 52.65625 34.296875 \r\n", | |
"Q 57.90625 29 57.90625 20.125 \r\n", | |
"Q 57.90625 9.515625 50.796875 4.046875 \r\n", | |
"Q 43.703125 -1.421875 29.984375 -1.421875 \r\n", | |
"Q 24.8125 -1.421875 18.96875 -0.25 \r\n", | |
"Q 13.140625 0.921875 6.890625 3.21875 \r\n", | |
"L 6.890625 13.375 \r\n", | |
"Q 12.890625 10.015625 18.65625 8.296875 \r\n", | |
"Q 24.421875 6.59375 29.984375 6.59375 \r\n", | |
"Q 38.421875 6.59375 43.015625 9.90625 \r\n", | |
"Q 47.609375 13.234375 47.609375 19.390625 \r\n", | |
"Q 47.609375 24.75 44.3125 27.78125 \r\n", | |
"Q 41.015625 30.8125 33.5 32.328125 \r\n", | |
"L 27.484375 33.5 \r\n", | |
"Q 16.453125 35.6875 11.515625 40.375 \r\n", | |
"Q 6.59375 45.0625 6.59375 53.421875 \r\n", | |
"Q 6.59375 63.09375 13.40625 68.65625 \r\n", | |
"Q 20.21875 74.21875 32.171875 74.21875 \r\n", | |
"Q 37.3125 74.21875 42.625 73.28125 \r\n", | |
"Q 47.953125 72.359375 53.515625 70.515625 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-83\"/>\r\n", | |
" <path d=\"M 39.40625 66.21875 \r\n", | |
"Q 28.65625 66.21875 22.328125 58.203125 \r\n", | |
"Q 16.015625 50.203125 16.015625 36.375 \r\n", | |
"Q 16.015625 22.609375 22.328125 14.59375 \r\n", | |
"Q 28.65625 6.59375 39.40625 6.59375 \r\n", | |
"Q 50.140625 6.59375 56.421875 14.59375 \r\n", | |
"Q 62.703125 22.609375 62.703125 36.375 \r\n", | |
"Q 62.703125 50.203125 56.421875 58.203125 \r\n", | |
"Q 50.140625 66.21875 39.40625 66.21875 \r\n", | |
"z\r\n", | |
"M 53.21875 1.3125 \r\n", | |
"L 66.21875 -12.890625 \r\n", | |
"L 54.296875 -12.890625 \r\n", | |
"L 43.5 -1.21875 \r\n", | |
"Q 41.890625 -1.3125 41.03125 -1.359375 \r\n", | |
"Q 40.1875 -1.421875 39.40625 -1.421875 \r\n", | |
"Q 24.03125 -1.421875 14.8125 8.859375 \r\n", | |
"Q 5.609375 19.140625 5.609375 36.375 \r\n", | |
"Q 5.609375 53.65625 14.8125 63.9375 \r\n", | |
"Q 24.03125 74.21875 39.40625 74.21875 \r\n", | |
"Q 54.734375 74.21875 63.90625 63.9375 \r\n", | |
"Q 73.09375 53.65625 73.09375 36.375 \r\n", | |
"Q 73.09375 23.6875 67.984375 14.640625 \r\n", | |
"Q 62.890625 5.609375 53.21875 1.3125 \r\n", | |
"z\r\n", | |
"\" id=\"DejaVuSans-81\"/>\r\n", | |
" </defs>\r\n", | |
" <g transform=\"translate(67.103125 38.476562)scale(0.1 -0.1)\">\r\n", | |
" <use xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"74.804688\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"143.212891\" xlink:href=\"#DejaVuSans-83\"/>\r\n", | |
" <use x=\"206.689453\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"283.675781\" xlink:href=\"#DejaVuSans-65\"/>\r\n", | |
" <use x=\"352.068359\" xlink:href=\"#DejaVuSans-81\"/>\r\n", | |
" <use x=\"430.779297\" xlink:href=\"#DejaVuSans-58\"/>\r\n", | |
" <use x=\"464.470703\" xlink:href=\"#DejaVuSans-89\"/>\r\n", | |
" <use x=\"525.554688\" xlink:href=\"#DejaVuSans-78\"/>\r\n", | |
" <use x=\"600.359375\" xlink:href=\"#DejaVuSans-68\"/>\r\n", | |
" <use x=\"677.361328\" xlink:href=\"#DejaVuSans-88\"/>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" </g>\r\n", | |
" <defs>\r\n", | |
" <clipPath id=\"p5f7fe7c5d9\">\r\n", | |
" <rect height=\"326.16\" width=\"892.8\" x=\"30.103125\" y=\"7.2\"/>\r\n", | |
" </clipPath>\r\n", | |
" </defs>\r\n", | |
"</svg>\r\n" | |
], | |
"text/plain": [ | |
"<Figure size 1152x432 with 1 Axes>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"# переименование колонки\n", | |
"M_YNDX = xxdf[['YNDX']].copy()\n", | |
"M_YNDX['MOEX:YNDX'] = M_YNDX['YNDX']\n", | |
"M_YNDX = M_YNDX[['MOEX:YNDX']]\n", | |
"\n", | |
"# готовим данные для слияния\n", | |
"P_YNDX = N_YNDX.copy()\n", | |
"P_YNDX = P_YNDX.rename_axis('TRADEDATE') # переименование индекса\n", | |
"P_YNDX['BOARDID'] = 'TQBR' # для подготовки\n", | |
"P_YNDX = prepare_data(P_YNDX)\n", | |
"P_YNDX['WAPRICE'] = P_YNDX['Close']\n", | |
"P_YNDX['NASDAQ:YNDX'] = calc_wdm(P_YNDX)\n", | |
"\n", | |
"# слияние таблиц\n", | |
"X_YNDX = M_YNDX.merge(P_YNDX['NASDAQ:YNDX'], how='outer', on='TRADEDATE')\n", | |
"X_YNDX.drop_duplicates(inplace=True)\n", | |
"X_YNDX = X_YNDX.resample('D').interpolate(method='time')\n", | |
"\n", | |
"X_YNDX.plot();" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [] | |
} | |
], | |
"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.4" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment