1
0
This repository has been archived on 2025-01-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
stock_learning/2_B站课程跟学/0_时间序列基本处理.ipynb
2024-12-30 22:37:50 +08:00

1227 lines
567 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"cells": [
{
"metadata": {},
"cell_type": "raw",
"source": "课程地址https://www.bilibili.com/video/BV18M4y1x7FC",
"id": "3513184200ddb334"
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.452488Z",
"start_time": "2024-12-29T05:43:42.445497Z"
}
},
"cell_type": "code",
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"\n",
"%matplotlib inline\n",
"%config InlineBackend.figure_format = 'svg'"
],
"id": "e4ed301b47929483",
"outputs": [],
"execution_count": 185
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.480654Z",
"start_time": "2024-12-29T05:43:42.463155Z"
}
},
"cell_type": "code",
"source": [
"# 设置索引时间格式化选择指定的列优先级比设置索引高先选列再根据选择的列来设置索引列命名也在index前面命名列名\n",
"df = pd.read_csv(\n",
" '../document/SZ000001.csv',\n",
" usecols=[1, 4],\n",
" names=['date', 'price'],\n",
" index_col='date',\n",
" parse_dates=True,\n",
" date_format='%Y-%m-%d'\n",
")\n",
"# 截取2020至2024年的数据\n",
"df = df.loc['2023':'2024']\n",
"df"
],
"id": "525040c36ae50cdc",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"date \n",
"2023-01-03 12.52\n",
"2023-01-04 13.07\n",
"2023-01-05 13.23\n",
"2023-01-06 13.37\n",
"2023-01-09 13.55\n",
"... ...\n",
"2024-12-23 11.73\n",
"2024-12-24 11.86\n",
"2024-12-25 11.92\n",
"2024-12-26 11.86\n",
"2024-12-27 11.82\n",
"\n",
"[482 rows x 1 columns]"
],
"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>price</th>\n",
" </tr>\n",
" <tr>\n",
" <th>date</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2023-01-03</th>\n",
" <td>12.52</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-04</th>\n",
" <td>13.07</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-05</th>\n",
" <td>13.23</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-06</th>\n",
" <td>13.37</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-09</th>\n",
" <td>13.55</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-23</th>\n",
" <td>11.73</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-24</th>\n",
" <td>11.86</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-25</th>\n",
" <td>11.92</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-26</th>\n",
" <td>11.86</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-27</th>\n",
" <td>11.82</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>482 rows × 1 columns</p>\n",
"</div>"
]
},
"execution_count": 186,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 186
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.605385Z",
"start_time": "2024-12-29T05:43:42.515740Z"
}
},
"cell_type": "code",
"source": [
"# plot按列数据来绘制如果有多个列就会把多个列绘制在一起\n",
"df.plot(figsize=(10, 6), subplots=False)"
],
"id": "41129f84b03175a6",
"outputs": [
{
"data": {
"text/plain": [
"<Axes: xlabel='date'>"
]
},
"execution_count": 187,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 1000x600 with 1 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"592.125pt\" height=\"358.111033pt\" viewBox=\"0 0 592.125 358.111033\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:43:42.584634</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 358.111033 \nL 592.125 358.111033 \nL 592.125 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 26.925 300.96 \nL 584.925 300.96 \nL 584.925 7.2 \nL 26.925 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m79283b136f\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"50.88733\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 2023-01 -->\n <g transform=\"translate(13.66251 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2d\" d=\"M 313 2009 \nL 1997 2009 \nL 1997 1497 \nL 313 1497 \nL 313 2009 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"113.946095\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 2023-04 -->\n <g transform=\"translate(76.721274 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \nL 825 1625 \nL 2419 1625 \nL 2419 4116 \nz\nM 2253 4666 \nL 3047 4666 \nL 3047 1625 \nL 3713 1625 \nL 3713 1100 \nL 3047 1100 \nL 3047 0 \nL 2419 0 \nL 2419 1100 \nL 313 1100 \nL 313 1709 \nL 2253 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"177.705512\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 2023-07 -->\n <g transform=\"translate(140.480691 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-37\" d=\"M 525 4666 \nL 3525 4666 \nL 3525 4397 \nL 1831 0 \nL 1172 0 \nL 2766 4134 \nL 525 4134 \nL 525 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"242.165583\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 2023-10 -->\n <g transform=\"translate(204.940762 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"306.625653\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 2024-01 -->\n <g transform=\"translate(269.400832 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"370.38507\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 2024-04 -->\n <g transform=\"translate(333.160249 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"434.144488\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 2024-07 -->\n <g transform=\"translate(396.919667 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"498.604558\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 2024-10 -->\n <g transform=\"translate(461.379737 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#m79283b136f\" x=\"563.064628\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 2025-01 -->\n <g transform=\"translate(525.839808 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-35\" d=\"M 691 4666 \nL 3169 4666 \nL 3169 4134 \nL 1269 4134 \nL 1269 2991 \nQ 1406 3038 1543 3061 \nQ 1681 3084 1819 3084 \nQ 2600 3084 3056 2656 \nQ 3513 2228 3513 1497 \nQ 3513 744 3044 326 \nQ 2575 -91 1722 -91 \nQ 1428 -91 1123 -41 \nQ 819 9 494 109 \nL 494 744 \nQ 775 591 1075 516 \nQ 1375 441 1709 441 \nQ 2250 441 2565 725 \nQ 2881 1009 2881 1497 \nQ 2881 1984 2565 2268 \nQ 2250 2553 1709 2553 \nQ 1456 2553 1204 2497 \nQ 953 2441 691 2322 \nL 691 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- date -->\n <g transform=\"translate(294.65 348.831346) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-64\" d=\"M 2906 2969 \nL 2906 4863 \nL 3481 4863 \nL 3481 0 \nL 2906 0 \nL 2906 525 \nQ 2725 213 2448 61 \nQ 2172 -91 1784 -91 \nQ 1150 -91 751 415 \nQ 353 922 353 1747 \nQ 353 2572 751 3078 \nQ 1150 3584 1784 3584 \nQ 2172 3584 2448 3432 \nQ 2725 3281 2906 2969 \nz\nM 947 1747 \nQ 947 1113 1208 752 \nQ 1469 391 1925 391 \nQ 2381 391 2643 752 \nQ 2906 1113 2906 1747 \nQ 2906 2381 2643 2742 \nQ 2381 3103 1925 3103 \nQ 1469 3103 1208 2742 \nQ 947 2381 947 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-61\" d=\"M 2194 1759 \nQ 1497 1759 1228 1600 \nQ 959 1441 959 1056 \nQ 959 750 1161 570 \nQ 1363 391 1709 391 \nQ 2188 391 2477 730 \nQ 2766 1069 2766 1631 \nL 2766 1759 \nL 2194 1759 \nz\nM 3341 1997 \nL 3341 0 \nL 2766 0 \nL 2766 531 \nQ 2569 213 2275 61 \nQ 1981 -91 1556 -91 \nQ 1019 -91 701 211 \nQ 384 513 384 1019 \nQ 384 1609 779 1909 \nQ 1175 2209 1959 2209 \nL 2766 2209 \nL 2766 2266 \nQ 2766 2663 2505 2880 \nQ 2244 3097 1772 3097 \nQ 1472 3097 1187 3025 \nQ 903 2953 641 2809 \nL 641 3341 \nQ 956 3463 1253 3523 \nQ 1550 3584 1831 3584 \nQ 2591 3584 2966 3190 \nQ 3341 2797 3341 1997 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-74\" d=\"M 1172 4494 \nL 1172 3500 \nL 2356 3500 \nL 2356 3053 \nL 1172 3053 \nL 1172 1153 \nQ 1172 725 1289 603 \nQ 1406 481 1766 481 \nL 2356 481 \nL 2356 0 \nL 1766 0 \nQ 1100 0 847 248 \nQ 594 497 594 1153 \nL 594 3053 \nL 172 3053 \nL 172 3500 \nL 594 3500 \nL 594 4494 \nL 1172 4494 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \nL 3597 1613 \nL 953 1613 \nQ 991 1019 1311 708 \nQ 1631 397 2203 397 \nQ 2534 397 2845 478 \nQ 3156 559 3463 722 \nL 3463 178 \nQ 3153 47 2828 -22 \nQ 2503 -91 2169 -91 \nQ 1331 -91 842 396 \nQ 353 884 353 1716 \nQ 353 2575 817 3079 \nQ 1281 3584 2069 3584 \nQ 2775 3584 3186 3129 \nQ 3597 2675 3597 1894 \nz\nM 3022 2063 \nQ 3016 2534 2758 2815 \nQ 2500 3097 2075 3097 \nQ 1594 3097 1305 2825 \nQ 1016 2553 972 2059 \nL 3022 2063 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-64\"/>\n <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(124.755859 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(163.964844 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_10\">\n <defs>\n <path id=\"m80d15eb727\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"290.81376\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 8 -->\n <g transform=\"translate(13.5625 294.612978) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"245.006805\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 9 -->\n <g transform=\"translate(13.5625 248.806024) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"199.19985\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 10 -->\n <g transform=\"translate(7.2 202.999069) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"153.392896\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 11 -->\n <g transform=\"translate(7.2 157.192114) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"107.585941\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 12 -->\n <g transform=\"translate(7.2 111.38516) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_15\">\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"61.778986\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 13 -->\n <g transform=\"translate(7.2 65.578205) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_16\">\n <g>\n <use xlink:href=\"#m80d15eb727\" x=\"26.925\" y=\"15.972032\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- 14 -->\n <g transform=\"translate(7.2 19.771251) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_17\">\n <path d=\"M 52.288636 83.766325 \nL 52.989289 58.5725 \nL 54.390595 44.830413 \nL 56.492554 36.585161 \nL 57.193207 53.075665 \nL 57.89386 42.540065 \nL 58.594513 42.540065 \nL 59.295166 29.714118 \nL 61.397125 23.759214 \nL 62.097777 28.797979 \nL 62.79843 22.385005 \nL 63.499083 23.301145 \nL 64.199736 21.468866 \nL 71.206266 20.552727 \nL 71.906919 27.88184 \nL 72.607572 41.165857 \nL 73.308225 45.746552 \nL 74.008877 58.5725 \nL 76.110836 73.230725 \nL 76.811489 63.611265 \nL 77.512142 71.398447 \nL 78.212795 67.275821 \nL 78.913448 74.146864 \nL 81.015407 81.475977 \nL 81.71606 75.063003 \nL 82.416713 88.34702 \nL 83.117366 91.553507 \nL 83.818019 99.340689 \nL 85.919977 66.359682 \nL 86.62063 68.65003 \nL 87.321283 72.314586 \nL 88.021936 70.940377 \nL 88.722589 79.643699 \nL 90.824548 87.430881 \nL 91.525201 83.308255 \nL 92.225854 65.443543 \nL 92.926507 62.237056 \nL 93.62716 59.946708 \nL 96.429771 87.430881 \nL 97.130424 94.759994 \nL 97.831077 109.876289 \nL 98.53173 112.624706 \nL 100.633689 116.747332 \nL 101.334342 124.992584 \nL 102.034995 116.747332 \nL 102.735648 127.282932 \nL 103.436301 130.489418 \nL 105.53826 138.73467 \nL 106.238913 132.779766 \nL 106.939566 128.65714 \nL 107.640218 123.618375 \nL 108.340871 127.282932 \nL 110.44283 137.360462 \nL 111.143483 135.528183 \nL 111.844136 140.566948 \nL 112.544789 133.695905 \nL 113.245442 140.566948 \nL 115.347401 134.153975 \nL 116.048054 135.070114 \nL 117.44936 138.276601 \nL 118.150013 136.444322 \nL 120.251971 133.695905 \nL 120.952624 140.108879 \nL 121.653277 142.857296 \nL 122.35393 139.19274 \nL 123.054583 133.237836 \nL 125.857195 119.03768 \nL 126.557848 125.908723 \nL 127.258501 130.489418 \nL 127.959154 141.941157 \nL 130.061113 160.263939 \nL 130.761765 152.018687 \nL 131.462418 159.3478 \nL 132.163071 152.934826 \nL 132.863724 139.650809 \nL 137.067642 131.405557 \nL 137.768295 123.160306 \nL 139.870254 104.379454 \nL 140.570907 111.708567 \nL 141.27156 126.366792 \nL 141.972212 125.908723 \nL 142.672865 136.444322 \nL 144.774824 126.824862 \nL 145.475477 136.444322 \nL 146.17613 142.399227 \nL 146.876783 142.399227 \nL 147.577436 149.27027 \nL 149.679395 147.437992 \nL 150.380048 155.225174 \nL 151.080701 164.386565 \nL 151.781354 168.051121 \nL 152.482007 160.263939 \nL 154.583965 165.760773 \nL 155.284618 170.799538 \nL 155.985271 183.167416 \nL 156.685924 183.625486 \nL 157.386577 168.051121 \nL 159.488536 168.96726 \nL 160.189189 172.173747 \nL 160.889842 167.593052 \nL 161.590495 159.3478 \nL 162.291148 170.341469 \nL 164.393106 174.464095 \nL 165.093759 175.380234 \nL 165.794412 175.838303 \nL 166.495065 169.42533 \nL 167.195718 168.509191 \nL 169.297677 176.754443 \nL 169.99833 180.877068 \nL 170.698983 181.335138 \nL 174.202248 189.12232 \nL 174.902901 184.541625 \nL 175.603553 183.625486 \nL 176.304206 189.12232 \nL 177.004859 186.831973 \nL 179.106818 174.922164 \nL 179.807471 179.04479 \nL 180.508124 181.793208 \nL 181.208777 186.373903 \nL 181.90943 188.206181 \nL 184.011389 188.206181 \nL 184.712042 187.748112 \nL 185.412695 186.373903 \nL 186.113348 177.670582 \nL 186.814001 176.296373 \nL 188.915959 183.167416 \nL 189.616612 185.915833 \nL 190.317265 183.167416 \nL 191.017918 182.709347 \nL 191.718571 181.793208 \nL 193.82053 185.457764 \nL 194.521183 164.386565 \nL 195.221836 166.676913 \nL 195.922489 163.012356 \nL 196.623142 139.650809 \nL 198.7251 136.902392 \nL 199.425753 144.231505 \nL 200.126406 150.186409 \nL 200.827059 136.444322 \nL 201.527712 137.818531 \nL 203.629671 144.231505 \nL 204.330324 146.979922 \nL 205.030977 143.773435 \nL 205.73163 144.231505 \nL 206.432283 156.599383 \nL 208.534242 166.676913 \nL 209.234895 163.928495 \nL 209.935547 163.928495 \nL 210.6362 171.257608 \nL 211.336853 171.715678 \nL 213.438812 182.709347 \nL 214.139465 180.418999 \nL 215.540771 191.412668 \nL 218.343383 173.547956 \nL 219.744689 191.412668 \nL 220.445342 191.412668 \nL 221.145994 182.709347 \nL 223.247953 171.715678 \nL 223.948606 179.50286 \nL 224.649259 177.670582 \nL 225.349912 182.251277 \nL 226.050565 184.999694 \nL 228.152524 181.793208 \nL 228.853177 184.541625 \nL 229.55383 185.915833 \nL 230.254483 184.083555 \nL 230.955136 187.290042 \nL 233.057094 186.831973 \nL 233.757747 187.748112 \nL 234.4584 190.496529 \nL 235.159053 195.077224 \nL 235.859706 186.373903 \nL 237.961665 187.290042 \nL 238.662318 190.038459 \nL 239.362971 189.58039 \nL 240.063624 188.206181 \nL 247.770806 192.328807 \nL 248.471459 196.451433 \nL 249.172112 198.283711 \nL 249.872765 192.328807 \nL 250.573418 197.367572 \nL 252.675377 196.909503 \nL 253.37603 196.451433 \nL 254.076683 199.65792 \nL 254.777336 215.690354 \nL 255.477988 215.690354 \nL 257.579947 220.271049 \nL 258.2806 217.980702 \nL 258.981253 225.767884 \nL 259.681906 224.393675 \nL 260.382559 222.561397 \nL 262.484518 222.561397 \nL 263.185171 222.103328 \nL 263.885824 221.187189 \nL 265.28713 221.187189 \nL 267.389088 211.567728 \nL 268.790394 220.271049 \nL 269.491047 220.729119 \nL 270.1917 229.43244 \nL 272.293659 231.722788 \nL 272.994312 230.806649 \nL 273.694965 226.225954 \nL 274.395618 232.180858 \nL 275.096271 236.303484 \nL 277.19823 234.471205 \nL 277.898882 230.348579 \nL 278.599535 235.845414 \nL 279.300188 236.303484 \nL 280.000841 238.593831 \nL 282.1028 242.716457 \nL 282.803453 245.464874 \nL 283.504106 256.000474 \nL 284.204759 257.832752 \nL 284.905412 258.748891 \nL 287.007371 260.1231 \nL 287.708024 266.994143 \nL 288.408677 266.078004 \nL 289.109329 268.826421 \nL 289.809982 275.239395 \nL 291.911941 272.949047 \nL 292.612594 269.74256 \nL 293.313247 281.652369 \nL 294.0139 282.110438 \nL 294.714553 279.362021 \nL 297.517165 284.400786 \nL 298.217818 287.607273 \nL 298.918471 281.194299 \nL 299.619124 279.82009 \nL 301.721082 280.27816 \nL 302.421735 284.400786 \nL 303.122388 283.484647 \nL 303.823041 268.368352 \nL 304.523694 271.116769 \nL 307.326306 279.362021 \nL 308.026959 279.82009 \nL 308.727612 283.942716 \nL 309.428265 276.613604 \nL 311.530224 282.110438 \nL 312.230876 280.73623 \nL 312.931529 284.858855 \nL 313.632182 281.194299 \nL 314.332835 280.27816 \nL 316.434794 279.362021 \nL 317.135447 273.407117 \nL 317.8361 278.445882 \nL 319.237406 281.194299 \nL 321.339365 284.400786 \nL 322.040018 281.652369 \nL 323.441323 266.078004 \nL 324.141976 260.581169 \nL 326.243935 256.916613 \nL 326.944588 266.078004 \nL 327.645241 267.910282 \nL 328.345894 270.20063 \nL 329.046547 276.613604 \nL 331.148506 271.574839 \nL 331.849159 257.832752 \nL 332.549812 261.039239 \nL 333.250465 258.290822 \nL 341.6583 251.419779 \nL 342.358953 206.528963 \nL 343.059606 201.948268 \nL 343.760259 204.238615 \nL 345.862217 218.896841 \nL 346.56287 220.271049 \nL 347.263523 220.729119 \nL 347.964176 216.148424 \nL 348.664829 220.729119 \nL 350.766788 228.058232 \nL 351.467441 223.477536 \nL 352.168094 228.058232 \nL 352.868747 225.767884 \nL 353.5694 225.767884 \nL 355.671359 221.645258 \nL 356.372012 217.522632 \nL 357.072664 228.058232 \nL 357.773317 232.638927 \nL 358.47397 215.690354 \nL 360.575929 218.438771 \nL 361.276582 224.851745 \nL 361.977235 222.561397 \nL 362.677888 221.645258 \nL 363.378541 226.684023 \nL 365.4805 224.851745 \nL 366.181153 215.690354 \nL 366.881806 218.896841 \nL 367.582459 220.729119 \nL 368.283112 219.35491 \nL 370.38507 213.858076 \nL 371.786376 222.103328 \nL 375.289641 223.477536 \nL 375.990294 224.851745 \nL 376.690947 230.348579 \nL 377.3916 231.722788 \nL 378.092253 240.426109 \nL 380.194211 229.89051 \nL 380.894864 230.348579 \nL 381.595517 214.774215 \nL 382.29617 206.528963 \nL 382.996823 211.567728 \nL 385.098782 220.271049 \nL 385.799435 218.438771 \nL 386.500088 218.896841 \nL 387.200741 215.232284 \nL 387.901394 215.690354 \nL 390.003353 206.070893 \nL 390.704006 206.987033 \nL 394.907923 202.406337 \nL 395.608576 202.864407 \nL 396.309229 209.73545 \nL 397.009882 208.361241 \nL 397.710535 200.115989 \nL 399.812494 198.741781 \nL 400.513147 201.490198 \nL 401.2138 205.154754 \nL 401.914453 189.58039 \nL 402.615105 178.128651 \nL 404.717064 179.960929 \nL 405.417717 172.173747 \nL 406.11837 171.715678 \nL 406.819023 179.04479 \nL 407.519676 183.167416 \nL 409.621635 174.006025 \nL 410.322288 179.04479 \nL 411.723594 191.870738 \nL 412.424247 192.328807 \nL 414.526205 198.283711 \nL 415.226858 196.451433 \nL 415.927511 203.322476 \nL 416.628164 201.948268 \nL 417.328817 197.825642 \nL 420.131429 203.322476 \nL 420.832082 202.864407 \nL 421.532735 206.528963 \nL 422.233388 202.406337 \nL 424.335347 206.070893 \nL 425.035999 206.987033 \nL 425.736652 203.780546 \nL 426.437305 208.361241 \nL 427.137958 210.651589 \nL 429.239917 211.567728 \nL 429.94057 206.987033 \nL 430.641223 206.987033 \nL 431.341876 204.696685 \nL 432.042529 203.780546 \nL 434.144488 194.619155 \nL 434.845141 192.328807 \nL 435.545794 196.451433 \nL 436.246447 198.741781 \nL 436.947099 212.025798 \nL 439.049058 213.858076 \nL 439.749711 207.445102 \nL 440.450364 204.238615 \nL 441.151017 204.696685 \nL 441.85167 196.451433 \nL 443.953629 195.535294 \nL 444.654282 196.909503 \nL 445.354935 192.328807 \nL 446.055588 191.870738 \nL 446.756241 193.703016 \nL 450.960158 206.528963 \nL 451.660811 209.27738 \nL 453.76277 205.612824 \nL 454.463423 206.987033 \nL 455.164076 198.283711 \nL 455.864729 198.283711 \nL 456.565382 204.238615 \nL 458.667341 208.361241 \nL 459.367993 213.858076 \nL 460.068646 213.858076 \nL 460.769299 213.400006 \nL 461.469952 208.819311 \nL 463.571911 210.193519 \nL 464.272564 212.941937 \nL 464.973217 214.316145 \nL 466.374523 204.696685 \nL 469.177135 195.077224 \nL 469.877788 194.619155 \nL 470.57844 193.244946 \nL 471.279093 189.12232 \nL 473.381052 188.206181 \nL 474.081705 190.954598 \nL 474.782358 195.535294 \nL 475.483011 204.696685 \nL 476.183664 203.322476 \nL 478.285623 205.612824 \nL 478.986276 206.987033 \nL 479.686929 209.73545 \nL 480.387582 207.445102 \nL 481.088235 206.987033 \nL 483.190193 217.522632 \nL 483.890846 215.232284 \nL 484.591499 226.684023 \nL 485.292152 222.561397 \nL 485.992805 224.393675 \nL 489.49607 221.187189 \nL 490.196723 219.35491 \nL 490.897376 215.232284 \nL 492.999335 208.819311 \nL 493.699987 193.703016 \nL 494.40064 187.748112 \nL 495.101293 157.973591 \nL 497.903905 109.418219 \nL 503.509129 78.72756 \nL 504.209782 133.695905 \nL 504.910434 108.50208 \nL 505.611087 120.411888 \nL 507.713046 106.669802 \nL 508.413699 112.166637 \nL 509.114352 104.837524 \nL 509.815005 109.876289 \nL 510.515658 105.753663 \nL 512.617617 116.289262 \nL 513.31827 117.205402 \nL 514.018923 113.998915 \nL 514.719576 119.03768 \nL 515.420229 120.869958 \nL 517.522187 124.076445 \nL 518.22284 128.65714 \nL 518.923493 138.73467 \nL 519.624146 135.986253 \nL 520.324799 133.695905 \nL 522.426758 132.321697 \nL 523.127411 123.618375 \nL 523.828064 128.199071 \nL 524.528717 111.708567 \nL 525.22937 120.411888 \nL 527.331328 125.908723 \nL 528.031981 128.65714 \nL 528.732634 125.450653 \nL 529.433287 128.65714 \nL 530.13394 133.237836 \nL 532.235899 119.03768 \nL 532.936552 122.244167 \nL 533.637205 124.076445 \nL 534.337858 126.366792 \nL 535.038511 140.566948 \nL 537.14047 145.147644 \nL 537.841123 141.025018 \nL 538.541775 135.528183 \nL 539.242428 137.818531 \nL 539.943081 135.986253 \nL 542.04504 135.528183 \nL 542.745693 130.947488 \nL 543.446346 132.321697 \nL 544.146999 133.237836 \nL 544.847652 123.160306 \nL 546.949611 122.702236 \nL 547.650264 117.205402 \nL 548.350917 119.953819 \nL 549.05157 114.456984 \nL 549.752223 127.741001 \nL 551.854181 127.282932 \nL 552.554834 129.11521 \nL 553.255487 123.618375 \nL 553.95614 126.366792 \nL 554.656793 124.992584 \nL 556.758752 119.953819 \nL 557.459405 113.998915 \nL 558.160058 111.250497 \nL 558.860711 113.998915 \nL 559.561364 115.831193 \nL 559.561364 115.831193 \n\" clip-path=\"url(#p28a33b8f19)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 26.925 300.96 \nL 26.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 584.925 300.96 \nL 584.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 26.925 300.96 \nL 584.925 300.96 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 26.925 7.2 \nL 584.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"legend_1\">\n <g id=\"patch_7\">\n <path d=\"M 521.035937 29.878125 \nL 577.925 29.878125 \nQ 579.925 29.878125 579.925 27.878125 \nL 579.925 14.2 \nQ 579.925 12.2 577.925 12.2 \nL 521.035937 12.2 \nQ 519.035937 12.2 519.035937 14.2 \nL 519.035937 27.878125 \nQ 519.035937 29.878125 521.035937 29.878125 \nz\n\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n </g>\n <g id=\"line2d_18\">\n <path d=\"M 523.035937 20.298438 \nL 533.035937 20.298438 \nL 543.035937 20.298438 \n\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_18\">\n <!-- price -->\n <g transform=\"translate(551.035937 23.798438) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-70\" d=\"M 1159 525 \nL 1159 -1331 \nL 581 -1331 \nL 581 3500 \nL 1159 3500 \nL 1159 2969 \nQ 1341 3281 1617 3432 \nQ 1894 3584 2278 3584 \nQ 2916 3584 3314 3078 \nQ 3713 2572 3713 1747 \nQ 3713 922 3314 415 \nQ 2916 -91 2278 -91 \nQ 1894 -91 1617 61 \nQ 1341 213 1159 525 \nz\nM 3116 1747 \nQ 3116 2381 2855 2742 \nQ 2594 3103 2138 3103 \nQ 1681 3103 1420 2742 \nQ 1159 2381 1159 1747 \nQ 1159 1113 1420 752 \nQ 1681 391 2138 391 \nQ 2594 391 2855 752 \nQ 3116 1113 3116 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \nQ 2534 3019 2420 3045 \nQ 2306 3072 2169 3072 \nQ 1681 3072 1420 2755 \nQ 1159 2438 1159 1844 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1341 3275 1631 3429 \nQ 1922 3584 2338 3584 \nQ 2397 3584 2469 3576 \nQ 2541 3569 2628 3553 \nL 2631 2963 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-69\" d=\"M 603 3500 \nL 1178 3500 \nL 1178 0 \nL 603 0 \nL 603 3500 \nz\nM 603 4863 \nL 1178 4863 \nL 1178 4134 \nL 603 4134 \nL 603 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-63\" d=\"M 3122 3366 \nL 3122 2828 \nQ 2878 2963 2633 3030 \nQ 2388 3097 2138 3097 \nQ 1578 3097 1268 2742 \nQ 959 2388 959 1747 \nQ 959 1106 1268 751 \nQ 1578 397 2138 397 \nQ 2388 397 2633 464 \nQ 2878 531 3122 666 \nL 3122 134 \nQ 2881 22 2623 -34 \nQ 2366 -91 2075 -91 \nQ 1284 -91 818 406 \nQ 353 903 353 1747 \nQ 353 2603 823 3093 \nQ 1294 3584 2113 3584 \nQ 2378 3584 2631 3529 \nQ 2884 3475 3122 3366 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-70\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(104.589844 0)\"/>\n <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(132.373047 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(187.353516 0)\"/>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"p28a33b8f19\">\n <rect x=\"26.925\" y=\"7.2\" width=\"558\" height=\"293.76\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 187
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.638722Z",
"start_time": "2024-12-29T05:43:42.629987Z"
}
},
"cell_type": "code",
"source": [
"# 保留2位小数\n",
"df.describe().round(2)"
],
"id": "6956cbc9873a8e7a",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"count 482.00\n",
"mean 10.45\n",
"std 1.27\n",
"min 8.07\n",
"25% 9.64\n",
"50% 10.25\n",
"75% 11.39\n",
"max 13.90"
],
"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>price</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>count</th>\n",
" <td>482.00</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mean</th>\n",
" <td>10.45</td>\n",
" </tr>\n",
" <tr>\n",
" <th>std</th>\n",
" <td>1.27</td>\n",
" </tr>\n",
" <tr>\n",
" <th>min</th>\n",
" <td>8.07</td>\n",
" </tr>\n",
" <tr>\n",
" <th>25%</th>\n",
" <td>9.64</td>\n",
" </tr>\n",
" <tr>\n",
" <th>50%</th>\n",
" <td>10.25</td>\n",
" </tr>\n",
" <tr>\n",
" <th>75%</th>\n",
" <td>11.39</td>\n",
" </tr>\n",
" <tr>\n",
" <th>max</th>\n",
" <td>13.90</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
]
},
"execution_count": 188,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 188
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.741755Z",
"start_time": "2024-12-29T05:43:42.734722Z"
}
},
"cell_type": "code",
"source": [
"# 计算各种累计值,也可以传入函数\n",
"df.aggregate(['min', 'max', 'std', 'mean', 'median'])"
],
"id": "4fae9992ff3b233a",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"min 8.070000\n",
"max 13.900000\n",
"std 1.273458\n",
"mean 10.454066\n",
"median 10.250000"
],
"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>price</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>min</th>\n",
" <td>8.070000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>max</th>\n",
" <td>13.900000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>std</th>\n",
" <td>1.273458</td>\n",
" </tr>\n",
" <tr>\n",
" <th>mean</th>\n",
" <td>10.454066</td>\n",
" </tr>\n",
" <tr>\n",
" <th>median</th>\n",
" <td>10.250000</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
]
},
"execution_count": 189,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 189
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.811128Z",
"start_time": "2024-12-29T05:43:42.802866Z"
}
},
"cell_type": "code",
"source": [
"# 计算差异值(后一天比前一天的变化)\n",
"# periods=3表示3天前的数据\n",
"# df.diff(periods=3)\n",
"df.diff()"
],
"id": "9a126039c26384bf",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"date \n",
"2023-01-03 NaN\n",
"2023-01-04 0.55\n",
"2023-01-05 0.16\n",
"2023-01-06 0.14\n",
"2023-01-09 0.18\n",
"... ...\n",
"2024-12-23 0.11\n",
"2024-12-24 0.13\n",
"2024-12-25 0.06\n",
"2024-12-26 -0.06\n",
"2024-12-27 -0.04\n",
"\n",
"[482 rows x 1 columns]"
],
"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>price</th>\n",
" </tr>\n",
" <tr>\n",
" <th>date</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2023-01-03</th>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-04</th>\n",
" <td>0.55</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-05</th>\n",
" <td>0.16</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-06</th>\n",
" <td>0.14</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-09</th>\n",
" <td>0.18</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-23</th>\n",
" <td>0.11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-24</th>\n",
" <td>0.13</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-25</th>\n",
" <td>0.06</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-26</th>\n",
" <td>-0.06</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-27</th>\n",
" <td>-0.04</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>482 rows × 1 columns</p>\n",
"</div>"
]
},
"execution_count": 190,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 190
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:42.933849Z",
"start_time": "2024-12-29T05:43:42.925610Z"
}
},
"cell_type": "code",
"source": [
"# 计算增长率\n",
"df.pct_change().round(3)"
],
"id": "268f80de9fd5d9ef",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"date \n",
"2023-01-03 NaN\n",
"2023-01-04 0.044\n",
"2023-01-05 0.012\n",
"2023-01-06 0.011\n",
"2023-01-09 0.013\n",
"... ...\n",
"2024-12-23 0.009\n",
"2024-12-24 0.011\n",
"2024-12-25 0.005\n",
"2024-12-26 -0.005\n",
"2024-12-27 -0.003\n",
"\n",
"[482 rows x 1 columns]"
],
"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>price</th>\n",
" </tr>\n",
" <tr>\n",
" <th>date</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2023-01-03</th>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-04</th>\n",
" <td>0.044</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-05</th>\n",
" <td>0.012</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-06</th>\n",
" <td>0.011</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-09</th>\n",
" <td>0.013</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-23</th>\n",
" <td>0.009</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-24</th>\n",
" <td>0.011</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-25</th>\n",
" <td>0.005</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-26</th>\n",
" <td>-0.005</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-27</th>\n",
" <td>-0.003</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>482 rows × 1 columns</p>\n",
"</div>"
]
},
"execution_count": 191,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 191
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.094945Z",
"start_time": "2024-12-29T05:43:43.061508Z"
}
},
"cell_type": "code",
"source": [
"# 用kind来指定统计图的样子\n",
"df.pct_change().mean().plot(kind='bar', figsize=(10, 6))"
],
"id": "58412eac5f71069c",
"outputs": [
{
"data": {
"text/plain": [
"<Axes: >"
]
},
"execution_count": 192,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 1000x600 with 1 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"585.7625pt\" height=\"389.5275pt\" viewBox=\"0 0 585.7625 389.5275\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:43:43.087036</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 389.5275 \nL 585.7625 389.5275 \nL 585.7625 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 20.5625 350.438437 \nL 578.5625 350.438437 \nL 578.5625 17.798437 \nL 20.5625 17.798437 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 160.0625 350.438437 \nL 439.0625 350.438437 \nL 439.0625 33.638437 \nL 160.0625 33.638437 \nz\n\" clip-path=\"url(#pa23d95e7da)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"mfec0a29595\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#mfec0a29595\" x=\"299.5625\" y=\"350.438437\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- price -->\n <g transform=\"translate(302.321875 382.3275) rotate(-90) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-70\" d=\"M 1159 525 \nL 1159 -1331 \nL 581 -1331 \nL 581 3500 \nL 1159 3500 \nL 1159 2969 \nQ 1341 3281 1617 3432 \nQ 1894 3584 2278 3584 \nQ 2916 3584 3314 3078 \nQ 3713 2572 3713 1747 \nQ 3713 922 3314 415 \nQ 2916 -91 2278 -91 \nQ 1894 -91 1617 61 \nQ 1341 213 1159 525 \nz\nM 3116 1747 \nQ 3116 2381 2855 2742 \nQ 2594 3103 2138 3103 \nQ 1681 3103 1420 2742 \nQ 1159 2381 1159 1747 \nQ 1159 1113 1420 752 \nQ 1681 391 2138 391 \nQ 2594 391 2855 752 \nQ 3116 1113 3116 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \nQ 2534 3019 2420 3045 \nQ 2306 3072 2169 3072 \nQ 1681 3072 1420 2755 \nQ 1159 2438 1159 1844 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1341 3275 1631 3429 \nQ 1922 3584 2338 3584 \nQ 2397 3584 2469 3576 \nQ 2541 3569 2628 3553 \nL 2631 2963 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-69\" d=\"M 603 3500 \nL 1178 3500 \nL 1178 0 \nL 603 0 \nL 603 3500 \nz\nM 603 4863 \nL 1178 4863 \nL 1178 4134 \nL 603 4134 \nL 603 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-63\" d=\"M 3122 3366 \nL 3122 2828 \nQ 2878 2963 2633 3030 \nQ 2388 3097 2138 3097 \nQ 1578 3097 1268 2742 \nQ 959 2388 959 1747 \nQ 959 1106 1268 751 \nQ 1578 397 2138 397 \nQ 2388 397 2633 464 \nQ 2878 531 3122 666 \nL 3122 134 \nQ 2881 22 2623 -34 \nQ 2366 -91 2075 -91 \nQ 1284 -91 818 406 \nQ 353 903 353 1747 \nQ 353 2603 823 3093 \nQ 1294 3584 2113 3584 \nQ 2378 3584 2631 3529 \nQ 2884 3475 3122 3366 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \nL 3597 1613 \nL 953 1613 \nQ 991 1019 1311 708 \nQ 1631 397 2203 397 \nQ 2534 397 2845 478 \nQ 3156 559 3463 722 \nL 3463 178 \nQ 3153 47 2828 -22 \nQ 2503 -91 2169 -91 \nQ 1331 -91 842 396 \nQ 353 884 353 1716 \nQ 353 2575 817 3079 \nQ 1281 3584 2069 3584 \nQ 2775 3584 3186 3129 \nQ 3597 2675 3597 1894 \nz\nM 3022 2063 \nQ 3016 2534 2758 2815 \nQ 2500 3097 2075 3097 \nQ 1594 3097 1305 2825 \nQ 1016 2553 972 2059 \nL 3022 2063 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-70\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(104.589844 0)\"/>\n <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(132.373047 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(187.353516 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_2\">\n <defs>\n <path id=\"md0c17705b3\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#md0c17705b3\" x=\"20.5625\" y=\"350.438437\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 0 -->\n <g transform=\"translate(7.2 354.237656) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-30\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#md0c17705b3\" x=\"20.5625\" y=\"278.202457\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 2 -->\n <g transform=\"translate(7.2 282.001675) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#md0c17705b3\" x=\"20.5625\" y=\"205.966476\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 4 -->\n <g transform=\"translate(7.2 209.765695) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \nL 825 1625 \nL 2419 1625 \nL 2419 4116 \nz\nM 2253 4666 \nL 3047 4666 \nL 3047 1625 \nL 3713 1625 \nL 3713 1100 \nL 3047 1100 \nL 3047 0 \nL 2419 0 \nL 2419 1100 \nL 313 1100 \nL 313 1709 \nL 2253 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-34\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#md0c17705b3\" x=\"20.5625\" y=\"133.730495\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 6 -->\n <g transform=\"translate(7.2 137.529714) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-36\" d=\"M 2113 2584 \nQ 1688 2584 1439 2293 \nQ 1191 2003 1191 1497 \nQ 1191 994 1439 701 \nQ 1688 409 2113 409 \nQ 2538 409 2786 701 \nQ 3034 994 3034 1497 \nQ 3034 2003 2786 2293 \nQ 2538 2584 2113 2584 \nz\nM 3366 4563 \nL 3366 3988 \nQ 3128 4100 2886 4159 \nQ 2644 4219 2406 4219 \nQ 1781 4219 1451 3797 \nQ 1122 3375 1075 2522 \nQ 1259 2794 1537 2939 \nQ 1816 3084 2150 3084 \nQ 2853 3084 3261 2657 \nQ 3669 2231 3669 1497 \nQ 3669 778 3244 343 \nQ 2819 -91 2113 -91 \nQ 1303 -91 875 529 \nQ 447 1150 447 2328 \nQ 447 3434 972 4092 \nQ 1497 4750 2381 4750 \nQ 2619 4750 2861 4703 \nQ 3103 4656 3366 4563 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-36\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#md0c17705b3\" x=\"20.5625\" y=\"61.494514\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 8 -->\n <g transform=\"translate(7.2 65.293733) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 1e6 -->\n <g transform=\"translate(20.5625 14.798437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2212\" d=\"M 678 2272 \nL 4684 2272 \nL 4684 1741 \nL 678 1741 \nL 678 2272 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-2212\" transform=\"translate(125.146484 0)\"/>\n <use xlink:href=\"#DejaVuSans-36\" transform=\"translate(208.935547 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 20.5625 350.438437 \nL 20.5625 17.798437 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 578.5625 350.438437 \nL 578.5625 17.798437 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 20.5625 350.438437 \nL 578.5625 350.438437 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_7\">\n <path d=\"M 20.5625 17.798437 \nL 578.5625 17.798437 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"pa23d95e7da\">\n <rect x=\"20.5625\" y=\"17.798437\" width=\"558\" height=\"332.64\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 192
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.253586Z",
"start_time": "2024-12-29T05:43:43.176762Z"
}
},
"cell_type": "code",
"source": [
"# 连续增长率计算\n",
"# df/df.shift(1)当前一天和前一天的相互操作\n",
"# 增长率需要用对数进行累加cumsum\n",
"# np.exp用于还原对数计算\n",
"np.cumsum(np.log(df / df.shift(1))).apply(np.exp).plot(figsize=(10, 6))"
],
"id": "a3b0cb1549229355",
"outputs": [
{
"data": {
"text/plain": [
"<Axes: xlabel='date'>"
]
},
"execution_count": 193,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 1000x600 with 1 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"595.303125pt\" height=\"358.111033pt\" viewBox=\"0 0 595.303125 358.111033\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:43:43.235348</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M -0 358.111033 \nL 595.303125 358.111033 \nL 595.303125 0 \nL -0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 30.103125 300.96 \nL 588.103125 300.96 \nL 588.103125 7.2 \nL 30.103125 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m7e0a3441e5\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"53.361895\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 2023-01 -->\n <g transform=\"translate(16.137074 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2d\" d=\"M 313 2009 \nL 1997 2009 \nL 1997 1497 \nL 313 1497 \nL 313 2009 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"116.507878\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 2023-04 -->\n <g transform=\"translate(79.283057 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \nL 825 1625 \nL 2419 1625 \nL 2419 4116 \nz\nM 2253 4666 \nL 3047 4666 \nL 3047 1625 \nL 3713 1625 \nL 3713 1100 \nL 3047 1100 \nL 3047 0 \nL 2419 0 \nL 2419 1100 \nL 313 1100 \nL 313 1709 \nL 2253 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"180.355483\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 2023-07 -->\n <g transform=\"translate(143.130662 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-37\" d=\"M 525 4666 \nL 3525 4666 \nL 3525 4397 \nL 1831 0 \nL 1172 0 \nL 2766 4134 \nL 525 4134 \nL 525 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"244.904709\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 2023-10 -->\n <g transform=\"translate(207.679888 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"309.453936\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 2024-01 -->\n <g transform=\"translate(272.229115 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"373.301541\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 2024-04 -->\n <g transform=\"translate(336.07672 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"437.149145\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 2024-07 -->\n <g transform=\"translate(399.924325 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"501.698372\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 2024-10 -->\n <g transform=\"translate(464.473551 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#m7e0a3441e5\" x=\"566.247599\" y=\"300.96\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 2025-01 -->\n <g transform=\"translate(529.022778 335.431846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-35\" d=\"M 691 4666 \nL 3169 4666 \nL 3169 4134 \nL 1269 4134 \nL 1269 2991 \nQ 1406 3038 1543 3061 \nQ 1681 3084 1819 3084 \nQ 2600 3084 3056 2656 \nQ 3513 2228 3513 1497 \nQ 3513 744 3044 326 \nQ 2575 -91 1722 -91 \nQ 1428 -91 1123 -41 \nQ 819 9 494 109 \nL 494 744 \nQ 775 591 1075 516 \nQ 1375 441 1709 441 \nQ 2250 441 2565 725 \nQ 2881 1009 2881 1497 \nQ 2881 1984 2565 2268 \nQ 2250 2553 1709 2553 \nQ 1456 2553 1204 2497 \nQ 953 2441 691 2322 \nL 691 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- date -->\n <g transform=\"translate(297.828125 348.831346) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-64\" d=\"M 2906 2969 \nL 2906 4863 \nL 3481 4863 \nL 3481 0 \nL 2906 0 \nL 2906 525 \nQ 2725 213 2448 61 \nQ 2172 -91 1784 -91 \nQ 1150 -91 751 415 \nQ 353 922 353 1747 \nQ 353 2572 751 3078 \nQ 1150 3584 1784 3584 \nQ 2172 3584 2448 3432 \nQ 2725 3281 2906 2969 \nz\nM 947 1747 \nQ 947 1113 1208 752 \nQ 1469 391 1925 391 \nQ 2381 391 2643 752 \nQ 2906 1113 2906 1747 \nQ 2906 2381 2643 2742 \nQ 2381 3103 1925 3103 \nQ 1469 3103 1208 2742 \nQ 947 2381 947 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-61\" d=\"M 2194 1759 \nQ 1497 1759 1228 1600 \nQ 959 1441 959 1056 \nQ 959 750 1161 570 \nQ 1363 391 1709 391 \nQ 2188 391 2477 730 \nQ 2766 1069 2766 1631 \nL 2766 1759 \nL 2194 1759 \nz\nM 3341 1997 \nL 3341 0 \nL 2766 0 \nL 2766 531 \nQ 2569 213 2275 61 \nQ 1981 -91 1556 -91 \nQ 1019 -91 701 211 \nQ 384 513 384 1019 \nQ 384 1609 779 1909 \nQ 1175 2209 1959 2209 \nL 2766 2209 \nL 2766 2266 \nQ 2766 2663 2505 2880 \nQ 2244 3097 1772 3097 \nQ 1472 3097 1187 3025 \nQ 903 2953 641 2809 \nL 641 3341 \nQ 956 3463 1253 3523 \nQ 1550 3584 1831 3584 \nQ 2591 3584 2966 3190 \nQ 3341 2797 3341 1997 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-74\" d=\"M 1172 4494 \nL 1172 3500 \nL 2356 3500 \nL 2356 3053 \nL 1172 3053 \nL 1172 1153 \nQ 1172 725 1289 603 \nQ 1406 481 1766 481 \nL 2356 481 \nL 2356 0 \nL 1766 0 \nQ 1100 0 847 248 \nQ 594 497 594 1153 \nL 594 3053 \nL 172 3053 \nL 172 3500 \nL 594 3500 \nL 594 4494 \nL 1172 4494 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \nL 3597 1613 \nL 953 1613 \nQ 991 1019 1311 708 \nQ 1631 397 2203 397 \nQ 2534 397 2845 478 \nQ 3156 559 3463 722 \nL 3463 178 \nQ 3153 47 2828 -22 \nQ 2503 -91 2169 -91 \nQ 1331 -91 842 396 \nQ 353 884 353 1716 \nQ 353 2575 817 3079 \nQ 1281 3584 2069 3584 \nQ 2775 3584 3186 3129 \nQ 3597 2675 3597 1894 \nz\nM 3022 2063 \nQ 3016 2534 2758 2815 \nQ 2500 3097 2075 3097 \nQ 1594 3097 1305 2825 \nQ 1016 2553 972 2059 \nL 3022 2063 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-64\"/>\n <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(124.755859 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(163.964844 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_10\">\n <defs>\n <path id=\"m667eac4836\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m667eac4836\" x=\"30.103125\" y=\"255.817246\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 0.7 -->\n <g transform=\"translate(7.2 259.616465) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-2e\" d=\"M 684 794 \nL 1344 794 \nL 1344 0 \nL 684 0 \nL 684 794 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(95.410156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#m667eac4836\" x=\"30.103125\" y=\"198.466939\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 0.8 -->\n <g transform=\"translate(7.2 202.266158) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(95.410156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#m667eac4836\" x=\"30.103125\" y=\"141.116632\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 0.9 -->\n <g transform=\"translate(7.2 144.915851) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(95.410156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#m667eac4836\" x=\"30.103125\" y=\"83.766325\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 1.0 -->\n <g transform=\"translate(7.2 87.565543) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(95.410156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#m667eac4836\" x=\"30.103125\" y=\"26.416017\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 1.1 -->\n <g transform=\"translate(7.2 30.215236) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(95.410156 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_15\">\n <path d=\"M 55.466761 58.5725 \nL 56.870005 44.830413 \nL 58.974872 36.585161 \nL 59.676494 53.075665 \nL 60.378116 42.540065 \nL 61.079738 42.540065 \nL 61.78136 29.714118 \nL 63.886226 23.759214 \nL 64.587848 28.797979 \nL 65.28947 22.385005 \nL 65.991092 23.301145 \nL 66.692714 21.468866 \nL 73.708934 20.552727 \nL 74.410556 27.88184 \nL 75.112178 41.165857 \nL 75.8138 45.746552 \nL 76.515422 58.5725 \nL 78.620288 73.230725 \nL 79.32191 63.611265 \nL 80.023532 71.398447 \nL 80.725154 67.275821 \nL 81.426776 74.146864 \nL 83.531643 81.475977 \nL 84.233265 75.063003 \nL 84.934887 88.34702 \nL 85.636509 91.553507 \nL 86.338131 99.340689 \nL 88.442997 66.359682 \nL 89.144619 68.65003 \nL 89.846241 72.314586 \nL 90.547863 70.940377 \nL 91.249485 79.643699 \nL 93.354351 87.430881 \nL 94.055973 83.308255 \nL 94.757595 65.443543 \nL 95.459217 62.237056 \nL 96.160839 59.946708 \nL 98.967327 87.430881 \nL 99.668949 94.759994 \nL 100.370571 109.876289 \nL 101.072193 112.624706 \nL 103.177059 116.747332 \nL 103.878681 124.992584 \nL 104.580303 116.747332 \nL 105.281925 127.282932 \nL 105.983547 130.489418 \nL 108.088414 138.73467 \nL 108.790036 132.779766 \nL 109.491658 128.65714 \nL 110.19328 123.618375 \nL 110.894902 127.282932 \nL 112.999768 137.360462 \nL 113.70139 135.528183 \nL 114.403012 140.566948 \nL 115.104634 133.695905 \nL 115.806256 140.566948 \nL 117.911122 134.153975 \nL 118.612744 135.070114 \nL 120.015988 138.276601 \nL 120.71761 136.444322 \nL 122.822476 133.695905 \nL 123.524098 140.108879 \nL 124.22572 142.857296 \nL 124.927342 139.19274 \nL 125.628964 133.237836 \nL 128.435452 119.03768 \nL 129.137074 125.908723 \nL 129.838696 130.489418 \nL 130.540319 141.941157 \nL 132.645185 160.263939 \nL 133.346807 152.018687 \nL 134.048429 159.3478 \nL 134.750051 152.934826 \nL 135.451673 139.650809 \nL 139.661405 131.405557 \nL 140.363027 123.160306 \nL 142.467893 104.379454 \nL 143.169515 111.708567 \nL 143.871137 126.366792 \nL 144.572759 125.908723 \nL 145.274381 136.444322 \nL 147.379247 126.824862 \nL 148.080869 136.444322 \nL 148.782491 142.399227 \nL 149.484113 142.399227 \nL 150.185735 149.27027 \nL 152.290601 147.437992 \nL 152.992223 155.225174 \nL 153.693845 164.386565 \nL 154.395468 168.051121 \nL 155.09709 160.263939 \nL 157.201956 165.760773 \nL 157.903578 170.799538 \nL 158.6052 183.167416 \nL 159.306822 183.625486 \nL 160.008444 168.051121 \nL 162.11331 168.96726 \nL 162.814932 172.173747 \nL 163.516554 167.593052 \nL 164.218176 159.3478 \nL 164.919798 170.341469 \nL 167.024664 174.464095 \nL 167.726286 175.380234 \nL 168.427908 175.838303 \nL 169.12953 169.42533 \nL 169.831152 168.509191 \nL 171.936018 176.754443 \nL 172.63764 180.877068 \nL 173.339262 181.335138 \nL 176.847372 189.12232 \nL 177.548994 184.541625 \nL 178.250617 183.625486 \nL 178.952239 189.12232 \nL 179.653861 186.831973 \nL 181.758727 174.922164 \nL 182.460349 179.04479 \nL 183.161971 181.793208 \nL 183.863593 186.373903 \nL 184.565215 188.206181 \nL 186.670081 188.206181 \nL 187.371703 187.748112 \nL 188.073325 186.373903 \nL 188.774947 177.670582 \nL 189.476569 176.296373 \nL 191.581435 183.167416 \nL 192.283057 185.915833 \nL 192.984679 183.167416 \nL 193.686301 182.709347 \nL 194.387923 181.793208 \nL 196.492789 185.457764 \nL 197.194411 164.386565 \nL 197.896033 166.676913 \nL 198.597655 163.012356 \nL 199.299277 139.650809 \nL 201.404143 136.902392 \nL 202.105766 144.231505 \nL 202.807388 150.186409 \nL 203.50901 136.444322 \nL 204.210632 137.818531 \nL 206.315498 144.231505 \nL 207.01712 146.979922 \nL 207.718742 143.773435 \nL 208.420364 144.231505 \nL 209.121986 156.599383 \nL 211.226852 166.676913 \nL 211.928474 163.928495 \nL 212.630096 163.928495 \nL 213.331718 171.257608 \nL 214.03334 171.715678 \nL 216.138206 182.709347 \nL 216.839828 180.418999 \nL 218.243072 191.412668 \nL 221.04956 173.547956 \nL 222.452804 191.412668 \nL 223.154426 191.412668 \nL 223.856048 182.709347 \nL 225.960915 171.715678 \nL 226.662537 179.50286 \nL 227.364159 177.670582 \nL 228.065781 182.251277 \nL 228.767403 184.999694 \nL 230.872269 181.793208 \nL 231.573891 184.541625 \nL 232.275513 185.915833 \nL 232.977135 184.083555 \nL 233.678757 187.290042 \nL 235.783623 186.831973 \nL 236.485245 187.748112 \nL 237.186867 190.496529 \nL 237.888489 195.077224 \nL 238.590111 186.373903 \nL 240.694977 187.290042 \nL 241.396599 190.038459 \nL 242.098221 189.58039 \nL 242.799843 188.206181 \nL 250.517686 192.328807 \nL 251.219308 196.451433 \nL 251.92093 198.283711 \nL 252.622552 192.328807 \nL 253.324174 197.367572 \nL 255.42904 196.909503 \nL 256.130662 196.451433 \nL 256.832284 199.65792 \nL 257.533906 215.690354 \nL 258.235528 215.690354 \nL 260.340394 220.271049 \nL 261.042016 217.980702 \nL 261.743638 225.767884 \nL 262.44526 224.393675 \nL 263.146882 222.561397 \nL 265.251748 222.561397 \nL 265.95337 222.103328 \nL 266.654992 221.187189 \nL 268.058236 221.187189 \nL 270.163102 211.567728 \nL 271.566346 220.271049 \nL 272.267968 220.729119 \nL 272.96959 229.43244 \nL 275.074457 231.722788 \nL 275.776079 230.806649 \nL 276.477701 226.225954 \nL 277.179323 232.180858 \nL 277.880945 236.303484 \nL 279.985811 234.471205 \nL 280.687433 230.348579 \nL 281.389055 235.845414 \nL 282.090677 236.303484 \nL 282.792299 238.593831 \nL 284.897165 242.716457 \nL 285.598787 245.464874 \nL 286.300409 256.000474 \nL 287.002031 257.832752 \nL 287.703653 258.748891 \nL 289.808519 260.1231 \nL 290.510141 266.994143 \nL 291.211763 266.078004 \nL 291.913385 268.826421 \nL 292.615007 275.239395 \nL 294.719873 272.949047 \nL 295.421495 269.74256 \nL 296.123117 281.652369 \nL 296.824739 282.110438 \nL 297.526362 279.362021 \nL 300.33285 284.400786 \nL 301.034472 287.607273 \nL 301.736094 281.194299 \nL 302.437716 279.82009 \nL 304.542582 280.27816 \nL 305.244204 284.400786 \nL 305.945826 283.484647 \nL 306.647448 268.368352 \nL 307.34907 271.116769 \nL 310.155558 279.362021 \nL 310.85718 279.82009 \nL 311.558802 283.942716 \nL 312.260424 276.613604 \nL 314.36529 282.110438 \nL 315.066912 280.73623 \nL 315.768534 284.858855 \nL 316.470156 281.194299 \nL 317.171778 280.27816 \nL 319.276644 279.362021 \nL 319.978266 273.407117 \nL 320.679888 278.445882 \nL 322.083133 281.194299 \nL 324.187999 284.400786 \nL 324.889621 281.652369 \nL 326.292865 266.078004 \nL 326.994487 260.581169 \nL 329.099353 256.916613 \nL 329.800975 266.078004 \nL 330.502597 267.910282 \nL 331.204219 270.20063 \nL 331.905841 276.613604 \nL 334.010707 271.574839 \nL 334.712329 257.832752 \nL 335.413951 261.039239 \nL 336.115573 258.290822 \nL 344.535037 251.419779 \nL 345.23666 206.528963 \nL 345.938282 201.948268 \nL 346.639904 204.238615 \nL 348.74477 218.896841 \nL 349.446392 220.271049 \nL 350.148014 220.729119 \nL 350.849636 216.148424 \nL 351.551258 220.729119 \nL 353.656124 228.058232 \nL 354.357746 223.477536 \nL 355.059368 228.058232 \nL 355.76099 225.767884 \nL 356.462612 225.767884 \nL 358.567478 221.645258 \nL 359.2691 217.522632 \nL 359.970722 228.058232 \nL 360.672344 232.638927 \nL 361.373966 215.690354 \nL 363.478832 218.438771 \nL 364.180454 224.851745 \nL 364.882076 222.561397 \nL 365.583698 221.645258 \nL 366.28532 226.684023 \nL 368.390186 224.851745 \nL 369.091809 215.690354 \nL 369.793431 218.896841 \nL 370.495053 220.729119 \nL 371.196675 219.35491 \nL 373.301541 213.858076 \nL 374.704785 222.103328 \nL 378.212895 223.477536 \nL 378.914517 224.851745 \nL 379.616139 230.348579 \nL 380.317761 231.722788 \nL 381.019383 240.426109 \nL 383.124249 229.89051 \nL 383.825871 230.348579 \nL 384.527493 214.774215 \nL 385.229115 206.528963 \nL 385.930737 211.567728 \nL 388.035603 220.271049 \nL 388.737225 218.438771 \nL 389.438847 218.896841 \nL 390.140469 215.232284 \nL 390.842091 215.690354 \nL 392.946958 206.070893 \nL 393.64858 206.987033 \nL 397.858312 202.406337 \nL 398.559934 202.864407 \nL 399.261556 209.73545 \nL 399.963178 208.361241 \nL 400.6648 200.115989 \nL 402.769666 198.741781 \nL 403.471288 201.490198 \nL 404.17291 205.154754 \nL 404.874532 189.58039 \nL 405.576154 178.128651 \nL 407.68102 179.960929 \nL 408.382642 172.173747 \nL 409.084264 171.715678 \nL 409.785886 179.04479 \nL 410.487508 183.167416 \nL 412.592374 174.006025 \nL 413.293996 179.04479 \nL 414.69724 191.870738 \nL 415.398862 192.328807 \nL 417.503729 198.283711 \nL 418.205351 196.451433 \nL 418.906973 203.322476 \nL 419.608595 201.948268 \nL 420.310217 197.825642 \nL 423.116705 203.322476 \nL 423.818327 202.864407 \nL 424.519949 206.528963 \nL 425.221571 202.406337 \nL 427.326437 206.070893 \nL 428.028059 206.987033 \nL 428.729681 203.780546 \nL 429.431303 208.361241 \nL 430.132925 210.651589 \nL 432.237791 211.567728 \nL 432.939413 206.987033 \nL 433.641035 206.987033 \nL 434.342657 204.696685 \nL 435.044279 203.780546 \nL 437.149145 194.619155 \nL 437.850767 192.328807 \nL 438.552389 196.451433 \nL 439.254011 198.741781 \nL 439.955633 212.025798 \nL 442.0605 213.858076 \nL 442.762122 207.445102 \nL 443.463744 204.238615 \nL 444.165366 204.696685 \nL 444.866988 196.451433 \nL 446.971854 195.535294 \nL 447.673476 196.909503 \nL 448.375098 192.328807 \nL 449.07672 191.870738 \nL 449.778342 193.703016 \nL 453.988074 206.528963 \nL 454.689696 209.27738 \nL 456.794562 205.612824 \nL 457.496184 206.987033 \nL 458.197806 198.283711 \nL 458.899428 198.283711 \nL 459.60105 204.238615 \nL 461.705916 208.361241 \nL 462.407538 213.858076 \nL 463.10916 213.858076 \nL 463.810782 213.400006 \nL 464.512405 208.819311 \nL 466.617271 210.193519 \nL 467.318893 212.941937 \nL 468.020515 214.316145 \nL 469.423759 204.696685 \nL 472.230247 195.077224 \nL 472.931869 194.619155 \nL 473.633491 193.244946 \nL 474.335113 189.12232 \nL 476.439979 188.206181 \nL 477.141601 190.954598 \nL 477.843223 195.535294 \nL 478.544845 204.696685 \nL 479.246467 203.322476 \nL 481.351333 205.612824 \nL 482.052955 206.987033 \nL 482.754577 209.73545 \nL 483.456199 207.445102 \nL 484.157821 206.987033 \nL 486.262687 217.522632 \nL 486.964309 215.232284 \nL 487.665931 226.684023 \nL 488.367554 222.561397 \nL 489.069176 224.393675 \nL 492.577286 221.187189 \nL 493.278908 219.35491 \nL 493.98053 215.232284 \nL 496.085396 208.819311 \nL 496.787018 193.703016 \nL 497.48864 187.748112 \nL 498.190262 157.973591 \nL 500.99675 109.418219 \nL 506.609726 78.72756 \nL 507.311348 133.695905 \nL 508.01297 108.50208 \nL 508.714592 120.411888 \nL 510.819458 106.669802 \nL 511.52108 112.166637 \nL 512.222703 104.837524 \nL 512.924325 109.876289 \nL 513.625947 105.753663 \nL 515.730813 116.289262 \nL 516.432435 117.205402 \nL 517.134057 113.998915 \nL 517.835679 119.03768 \nL 518.537301 120.869958 \nL 520.642167 124.076445 \nL 521.343789 128.65714 \nL 522.045411 138.73467 \nL 522.747033 135.986253 \nL 523.448655 133.695905 \nL 525.553521 132.321697 \nL 526.255143 123.618375 \nL 526.956765 128.199071 \nL 527.658387 111.708567 \nL 528.360009 120.411888 \nL 530.464875 125.908723 \nL 531.166497 128.65714 \nL 531.868119 125.450653 \nL 532.569741 128.65714 \nL 533.271363 133.237836 \nL 535.376229 119.03768 \nL 536.077852 122.244167 \nL 536.779474 124.076445 \nL 537.481096 126.366792 \nL 538.182718 140.566948 \nL 540.287584 145.147644 \nL 540.989206 141.025018 \nL 541.690828 135.528183 \nL 542.39245 137.818531 \nL 543.094072 135.986253 \nL 545.198938 135.528183 \nL 545.90056 130.947488 \nL 546.602182 132.321697 \nL 547.303804 133.237836 \nL 548.005426 123.160306 \nL 550.110292 122.702236 \nL 550.811914 117.205402 \nL 551.513536 119.953819 \nL 552.215158 114.456984 \nL 552.91678 127.741001 \nL 555.021646 127.282932 \nL 555.723268 129.11521 \nL 556.42489 123.618375 \nL 557.126512 126.366792 \nL 557.828134 124.992584 \nL 559.933001 119.953819 \nL 560.634623 113.998915 \nL 561.336245 111.250497 \nL 562.037867 113.998915 \nL 562.739489 115.831193 \nL 562.739489 115.831193 \n\" clip-path=\"url(#p7f893ef943)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 30.103125 300.96 \nL 30.103125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 588.103125 300.96 \nL 588.103125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 30.103125 300.96 \nL 588.103125 300.96 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 30.103125 7.2 \nL 588.103125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"legend_1\">\n <g id=\"patch_7\">\n <path d=\"M 524.214062 29.878125 \nL 581.103125 29.878125 \nQ 583.103125 29.878125 583.103125 27.878125 \nL 583.103125 14.2 \nQ 583.103125 12.2 581.103125 12.2 \nL 524.214062 12.2 \nQ 522.214062 12.2 522.214062 14.2 \nL 522.214062 27.878125 \nQ 522.214062 29.878125 524.214062 29.878125 \nz\n\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n </g>\n <g id=\"line2d_16\">\n <path d=\"M 526.214062 20.298438 \nL 536.214062 20.298438 \nL 546.214062 20.298438 \n\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_16\">\n <!-- price -->\n <g transform=\"translate(554.214062 23.798438) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-70\" d=\"M 1159 525 \nL 1159 -1331 \nL 581 -1331 \nL 581 3500 \nL 1159 3500 \nL 1159 2969 \nQ 1341 3281 1617 3432 \nQ 1894 3584 2278 3584 \nQ 2916 3584 3314 3078 \nQ 3713 2572 3713 1747 \nQ 3713 922 3314 415 \nQ 2916 -91 2278 -91 \nQ 1894 -91 1617 61 \nQ 1341 213 1159 525 \nz\nM 3116 1747 \nQ 3116 2381 2855 2742 \nQ 2594 3103 2138 3103 \nQ 1681 3103 1420 2742 \nQ 1159 2381 1159 1747 \nQ 1159 1113 1420 752 \nQ 1681 391 2138 391 \nQ 2594 391 2855 752 \nQ 3116 1113 3116 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \nQ 2534 3019 2420 3045 \nQ 2306 3072 2169 3072 \nQ 1681 3072 1420 2755 \nQ 1159 2438 1159 1844 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1341 3275 1631 3429 \nQ 1922 3584 2338 3584 \nQ 2397 3584 2469 3576 \nQ 2541 3569 2628 3553 \nL 2631 2963 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-69\" d=\"M 603 3500 \nL 1178 3500 \nL 1178 0 \nL 603 0 \nL 603 3500 \nz\nM 603 4863 \nL 1178 4863 \nL 1178 4134 \nL 603 4134 \nL 603 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-63\" d=\"M 3122 3366 \nL 3122 2828 \nQ 2878 2963 2633 3030 \nQ 2388 3097 2138 3097 \nQ 1578 3097 1268 2742 \nQ 959 2388 959 1747 \nQ 959 1106 1268 751 \nQ 1578 397 2138 397 \nQ 2388 397 2633 464 \nQ 2878 531 3122 666 \nL 3122 134 \nQ 2881 22 2623 -34 \nQ 2366 -91 2075 -91 \nQ 1284 -91 818 406 \nQ 353 903 353 1747 \nQ 353 2603 823 3093 \nQ 1294 3584 2113 3584 \nQ 2378 3584 2631 3529 \nQ 2884 3475 3122 3366 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-70\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(104.589844 0)\"/>\n <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(132.373047 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(187.353516 0)\"/>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"p7f893ef943\">\n <rect x=\"30.103125\" y=\"7.2\" width=\"558\" height=\"293.76\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 193
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.289315Z",
"start_time": "2024-12-29T05:43:43.280775Z"
}
},
"cell_type": "code",
"source": [
"# 时间序列重新采样\n",
"# label指定从时间周期的前面还是后面开始\n",
"df.resample('ME').mean()"
],
"id": "586fbb01abef8112",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"date \n",
"2023-01-31 13.515000\n",
"2023-02-28 12.755500\n",
"2023-03-31 11.854783\n",
"2023-04-30 11.318947\n",
"2023-05-31 11.214000\n",
"2023-06-30 10.500000\n",
"2023-07-31 10.502857\n",
"2023-08-31 10.733478\n",
"2023-09-30 10.305500\n",
"2023-10-31 9.781176\n",
"2023-11-30 9.291818\n",
"2023-12-31 8.334286\n",
"2024-01-31 8.316818\n",
"2024-02-29 9.127333\n",
"2024-03-31 9.482381\n",
"2024-04-30 9.546500\n",
"2024-05-31 10.195000\n",
"2024-06-30 9.887368\n",
"2024-07-31 9.958696\n",
"2024-08-31 9.918636\n",
"2024-09-30 9.980000\n",
"2024-10-31 11.807222\n",
"2024-11-30 11.521429\n",
"2024-12-31 11.659500"
],
"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>price</th>\n",
" </tr>\n",
" <tr>\n",
" <th>date</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2023-01-31</th>\n",
" <td>13.515000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-02-28</th>\n",
" <td>12.755500</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-03-31</th>\n",
" <td>11.854783</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-04-30</th>\n",
" <td>11.318947</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-05-31</th>\n",
" <td>11.214000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-06-30</th>\n",
" <td>10.500000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-07-31</th>\n",
" <td>10.502857</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-08-31</th>\n",
" <td>10.733478</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-09-30</th>\n",
" <td>10.305500</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-10-31</th>\n",
" <td>9.781176</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-11-30</th>\n",
" <td>9.291818</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-12-31</th>\n",
" <td>8.334286</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-01-31</th>\n",
" <td>8.316818</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-02-29</th>\n",
" <td>9.127333</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-03-31</th>\n",
" <td>9.482381</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-04-30</th>\n",
" <td>9.546500</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-05-31</th>\n",
" <td>10.195000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-06-30</th>\n",
" <td>9.887368</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-07-31</th>\n",
" <td>9.958696</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-08-31</th>\n",
" <td>9.918636</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-09-30</th>\n",
" <td>9.980000</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-10-31</th>\n",
" <td>11.807222</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-11-30</th>\n",
" <td>11.521429</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-31</th>\n",
" <td>11.659500</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
]
},
"execution_count": 194,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 194
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.336423Z",
"start_time": "2024-12-29T05:43:43.330685Z"
}
},
"cell_type": "code",
"source": [
"# 时间窗口重采样\n",
"df.rolling(window=5).mean().round(2)"
],
"id": "37b699c8884de4f0",
"outputs": [
{
"data": {
"text/plain": [
" price\n",
"date \n",
"2023-01-03 NaN\n",
"2023-01-04 NaN\n",
"2023-01-05 NaN\n",
"2023-01-06 NaN\n",
"2023-01-09 13.15\n",
"... ...\n",
"2024-12-23 11.62\n",
"2024-12-24 11.69\n",
"2024-12-25 11.74\n",
"2024-12-26 11.80\n",
"2024-12-27 11.84\n",
"\n",
"[482 rows x 1 columns]"
],
"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>price</th>\n",
" </tr>\n",
" <tr>\n",
" <th>date</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2023-01-03</th>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-04</th>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-05</th>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-06</th>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2023-01-09</th>\n",
" <td>13.15</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-23</th>\n",
" <td>11.62</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-24</th>\n",
" <td>11.69</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-25</th>\n",
" <td>11.74</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-26</th>\n",
" <td>11.80</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2024-12-27</th>\n",
" <td>11.84</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>482 rows × 1 columns</p>\n",
"</div>"
]
},
"execution_count": 195,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 195
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.482871Z",
"start_time": "2024-12-29T05:43:43.395745Z"
}
},
"cell_type": "code",
"source": [
"# 滑动平均线计算\n",
"df['m10'] = df['price'].rolling(window=10).mean()\n",
"df['m30'] = df['price'].rolling(window=30).mean()\n",
"df.plot(figsize=(20, 10))"
],
"id": "e6395d0a50951195",
"outputs": [
{
"data": {
"text/plain": [
"<Axes: xlabel='date'>"
]
},
"execution_count": 196,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 2000x1000 with 1 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1150.125pt\" height=\"553.951033pt\" viewBox=\"0 0 1150.125 553.951033\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:43:43.462552</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 553.951033 \nL 1150.125 553.951033 \nL 1150.125 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 26.925 496.8 \nL 1142.925 496.8 \nL 1142.925 7.2 \nL 26.925 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"ma8359e359c\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"74.849661\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 2023-01 -->\n <g transform=\"translate(37.62484 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2d\" d=\"M 313 2009 \nL 1997 2009 \nL 1997 1497 \nL 313 1497 \nL 313 2009 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"200.96719\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 2023-04 -->\n <g transform=\"translate(163.742369 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \nL 825 1625 \nL 2419 1625 \nL 2419 4116 \nz\nM 2253 4666 \nL 3047 4666 \nL 3047 1625 \nL 3713 1625 \nL 3713 1100 \nL 3047 1100 \nL 3047 0 \nL 2419 0 \nL 2419 1100 \nL 313 1100 \nL 313 1709 \nL 2253 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"328.486025\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 2023-07 -->\n <g transform=\"translate(291.261204 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-37\" d=\"M 525 4666 \nL 3525 4666 \nL 3525 4397 \nL 1831 0 \nL 1172 0 \nL 2766 4134 \nL 525 4134 \nL 525 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"457.406165\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 2023-10 -->\n <g transform=\"translate(420.181344 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"586.326306\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 2024-01 -->\n <g transform=\"translate(549.101485 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"713.845141\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 2024-04 -->\n <g transform=\"translate(676.62032 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"841.363975\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 2024-07 -->\n <g transform=\"translate(804.139155 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"970.284116\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 2024-10 -->\n <g transform=\"translate(933.059295 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#ma8359e359c\" x=\"1099.204257\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 2025-01 -->\n <g transform=\"translate(1061.979436 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-35\" d=\"M 691 4666 \nL 3169 4666 \nL 3169 4134 \nL 1269 4134 \nL 1269 2991 \nQ 1406 3038 1543 3061 \nQ 1681 3084 1819 3084 \nQ 2600 3084 3056 2656 \nQ 3513 2228 3513 1497 \nQ 3513 744 3044 326 \nQ 2575 -91 1722 -91 \nQ 1428 -91 1123 -41 \nQ 819 9 494 109 \nL 494 744 \nQ 775 591 1075 516 \nQ 1375 441 1709 441 \nQ 2250 441 2565 725 \nQ 2881 1009 2881 1497 \nQ 2881 1984 2565 2268 \nQ 2250 2553 1709 2553 \nQ 1456 2553 1204 2497 \nQ 953 2441 691 2322 \nL 691 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- date -->\n <g transform=\"translate(573.65 544.671346) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-64\" d=\"M 2906 2969 \nL 2906 4863 \nL 3481 4863 \nL 3481 0 \nL 2906 0 \nL 2906 525 \nQ 2725 213 2448 61 \nQ 2172 -91 1784 -91 \nQ 1150 -91 751 415 \nQ 353 922 353 1747 \nQ 353 2572 751 3078 \nQ 1150 3584 1784 3584 \nQ 2172 3584 2448 3432 \nQ 2725 3281 2906 2969 \nz\nM 947 1747 \nQ 947 1113 1208 752 \nQ 1469 391 1925 391 \nQ 2381 391 2643 752 \nQ 2906 1113 2906 1747 \nQ 2906 2381 2643 2742 \nQ 2381 3103 1925 3103 \nQ 1469 3103 1208 2742 \nQ 947 2381 947 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-61\" d=\"M 2194 1759 \nQ 1497 1759 1228 1600 \nQ 959 1441 959 1056 \nQ 959 750 1161 570 \nQ 1363 391 1709 391 \nQ 2188 391 2477 730 \nQ 2766 1069 2766 1631 \nL 2766 1759 \nL 2194 1759 \nz\nM 3341 1997 \nL 3341 0 \nL 2766 0 \nL 2766 531 \nQ 2569 213 2275 61 \nQ 1981 -91 1556 -91 \nQ 1019 -91 701 211 \nQ 384 513 384 1019 \nQ 384 1609 779 1909 \nQ 1175 2209 1959 2209 \nL 2766 2209 \nL 2766 2266 \nQ 2766 2663 2505 2880 \nQ 2244 3097 1772 3097 \nQ 1472 3097 1187 3025 \nQ 903 2953 641 2809 \nL 641 3341 \nQ 956 3463 1253 3523 \nQ 1550 3584 1831 3584 \nQ 2591 3584 2966 3190 \nQ 3341 2797 3341 1997 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-74\" d=\"M 1172 4494 \nL 1172 3500 \nL 2356 3500 \nL 2356 3053 \nL 1172 3053 \nL 1172 1153 \nQ 1172 725 1289 603 \nQ 1406 481 1766 481 \nL 2356 481 \nL 2356 0 \nL 1766 0 \nQ 1100 0 847 248 \nQ 594 497 594 1153 \nL 594 3053 \nL 172 3053 \nL 172 3500 \nL 594 3500 \nL 594 4494 \nL 1172 4494 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \nL 3597 1613 \nL 953 1613 \nQ 991 1019 1311 708 \nQ 1631 397 2203 397 \nQ 2534 397 2845 478 \nQ 3156 559 3463 722 \nL 3463 178 \nQ 3153 47 2828 -22 \nQ 2503 -91 2169 -91 \nQ 1331 -91 842 396 \nQ 353 884 353 1716 \nQ 353 2575 817 3079 \nQ 1281 3584 2069 3584 \nQ 2775 3584 3186 3129 \nQ 3597 2675 3597 1894 \nz\nM 3022 2063 \nQ 3016 2534 2758 2815 \nQ 2500 3097 2075 3097 \nQ 1594 3097 1305 2825 \nQ 1016 2553 972 2059 \nL 3022 2063 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-64\"/>\n <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(124.755859 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(163.964844 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_10\">\n <defs>\n <path id=\"m47a2bd0aea\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"479.889599\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 8 -->\n <g transform=\"translate(13.5625 483.688818) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"403.544675\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 9 -->\n <g transform=\"translate(13.5625 407.343894) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"327.199751\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 10 -->\n <g transform=\"translate(7.2 330.998969) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"250.854826\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 11 -->\n <g transform=\"translate(7.2 254.654045) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"174.509902\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 12 -->\n <g transform=\"translate(7.2 178.309121) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_15\">\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"98.164977\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 13 -->\n <g transform=\"translate(7.2 101.964196) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_16\">\n <g>\n <use xlink:href=\"#m47a2bd0aea\" x=\"26.925\" y=\"21.820053\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- 14 -->\n <g transform=\"translate(7.2 25.619272) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_17\">\n <path d=\"M 77.652273 134.810541 \nL 79.053579 92.820833 \nL 80.454884 80.605645 \nL 81.85619 69.917355 \nL 86.060108 56.175269 \nL 87.461414 83.659442 \nL 88.86272 66.100109 \nL 90.264026 66.100109 \nL 91.665331 44.72353 \nL 95.869249 34.79869 \nL 97.270555 43.196632 \nL 98.671861 32.508342 \nL 100.073167 34.035241 \nL 101.474473 30.981444 \nL 115.487531 29.454545 \nL 116.888837 41.669733 \nL 118.290143 63.809761 \nL 119.691449 71.444254 \nL 121.092755 92.820833 \nL 125.296673 117.251208 \nL 126.697978 101.218774 \nL 128.099284 114.197412 \nL 129.50059 107.326368 \nL 130.901896 118.778107 \nL 135.105814 130.993295 \nL 136.50712 120.305005 \nL 137.908425 142.445034 \nL 139.309731 147.789178 \nL 140.711037 160.767815 \nL 144.914955 105.79947 \nL 146.316261 109.616716 \nL 147.717567 115.72431 \nL 149.118872 113.433962 \nL 150.520178 127.939498 \nL 154.724096 140.918135 \nL 156.125402 134.047092 \nL 157.526708 104.272571 \nL 158.928014 98.928427 \nL 160.329319 95.11118 \nL 164.533237 128.702947 \nL 167.335849 153.133323 \nL 168.737155 178.327148 \nL 170.138461 182.907843 \nL 174.342378 189.778887 \nL 175.743684 203.520973 \nL 177.14499 189.778887 \nL 178.546296 207.338219 \nL 179.947602 212.682364 \nL 184.151519 226.42445 \nL 185.552825 216.49961 \nL 186.954131 209.628567 \nL 188.355437 201.230625 \nL 189.756743 207.338219 \nL 193.96066 224.134103 \nL 195.361966 221.080306 \nL 196.763272 229.478247 \nL 198.164578 218.026509 \nL 199.565884 229.478247 \nL 203.769802 218.789958 \nL 205.171107 220.316856 \nL 207.973719 225.661001 \nL 209.375025 222.607204 \nL 213.578943 218.026509 \nL 214.980249 228.714798 \nL 216.381554 233.295494 \nL 217.78286 227.1879 \nL 219.184166 217.263059 \nL 223.388084 198.940278 \nL 224.78939 193.596133 \nL 226.190696 205.047872 \nL 227.592002 212.682364 \nL 228.993307 231.768595 \nL 233.197225 262.306565 \nL 234.598531 248.564478 \nL 235.999837 260.779666 \nL 237.401143 250.091377 \nL 238.802449 227.951349 \nL 247.210284 214.209262 \nL 248.61159 200.467176 \nL 252.815507 169.165757 \nL 254.216813 181.380945 \nL 255.618119 205.811321 \nL 257.019425 205.047872 \nL 258.420731 222.607204 \nL 262.624648 206.57477 \nL 264.025954 222.607204 \nL 265.42726 232.532044 \nL 266.828566 232.532044 \nL 268.229872 243.983783 \nL 272.43379 240.929986 \nL 273.835095 253.908623 \nL 275.236401 269.177608 \nL 276.637707 275.285202 \nL 278.039013 262.306565 \nL 282.242931 271.467956 \nL 283.644237 279.865897 \nL 285.045542 300.479027 \nL 286.446848 301.242476 \nL 287.848154 275.285202 \nL 292.052072 276.8121 \nL 293.453378 282.156245 \nL 294.854684 274.521753 \nL 296.255989 260.779666 \nL 297.657295 279.102448 \nL 301.861213 285.973491 \nL 303.262519 287.50039 \nL 304.663825 288.263839 \nL 306.065131 277.57555 \nL 307.466436 276.048651 \nL 311.670354 289.790738 \nL 313.07166 296.661781 \nL 314.472966 297.42523 \nL 321.479495 310.403867 \nL 322.880801 302.769375 \nL 324.282107 301.242476 \nL 325.683413 310.403867 \nL 327.084719 306.586621 \nL 331.288636 286.736941 \nL 332.689942 293.607984 \nL 334.091248 298.188679 \nL 335.492554 305.823172 \nL 336.89386 308.876969 \nL 341.097777 308.876969 \nL 342.499083 308.113519 \nL 343.900389 305.823172 \nL 345.301695 291.317636 \nL 346.703001 289.027288 \nL 350.906919 300.479027 \nL 352.308225 305.059722 \nL 353.70953 300.479027 \nL 355.110836 299.715578 \nL 356.512142 298.188679 \nL 360.71606 304.296273 \nL 362.117366 269.177608 \nL 363.518672 272.994854 \nL 364.919977 266.88726 \nL 366.321283 227.951349 \nL 370.525201 223.370653 \nL 371.926507 235.585841 \nL 373.327813 245.510681 \nL 374.729119 222.607204 \nL 376.130424 224.897552 \nL 380.334342 235.585841 \nL 381.735648 240.166537 \nL 383.136954 234.822392 \nL 384.53826 235.585841 \nL 385.939566 256.198971 \nL 390.143483 272.994854 \nL 391.544789 268.414159 \nL 392.946095 268.414159 \nL 394.347401 280.629347 \nL 395.748707 281.392796 \nL 399.952624 299.715578 \nL 401.35393 295.898332 \nL 404.156542 314.221113 \nL 405.557848 306.586621 \nL 409.761765 284.446593 \nL 411.163071 300.479027 \nL 412.564377 314.221113 \nL 413.965683 314.221113 \nL 415.366989 299.715578 \nL 419.570907 281.392796 \nL 420.972212 294.371433 \nL 422.373518 291.317636 \nL 423.774824 298.952128 \nL 425.17613 303.532824 \nL 429.380048 298.188679 \nL 430.781354 302.769375 \nL 432.182659 305.059722 \nL 433.583965 302.005925 \nL 434.985271 307.35007 \nL 439.189189 306.586621 \nL 440.590495 308.113519 \nL 441.991801 312.694215 \nL 443.393106 320.328707 \nL 444.794412 305.823172 \nL 448.99833 307.35007 \nL 450.399636 311.930766 \nL 451.800942 311.167316 \nL 453.202248 308.876969 \nL 468.616612 315.748012 \nL 470.017918 322.619055 \nL 471.419224 325.672852 \nL 472.82053 315.748012 \nL 474.221836 324.145954 \nL 478.425753 323.382504 \nL 479.827059 322.619055 \nL 481.228365 327.9632 \nL 482.629671 354.683923 \nL 484.030977 354.683923 \nL 488.234895 362.318416 \nL 489.6362 358.501169 \nL 491.037506 371.479807 \nL 492.438812 369.189459 \nL 493.840118 366.135662 \nL 498.044036 366.135662 \nL 499.445342 365.372213 \nL 500.846647 363.845314 \nL 503.649259 363.845314 \nL 507.853177 347.81288 \nL 509.254483 354.683923 \nL 510.655789 362.318416 \nL 512.057094 363.081865 \nL 513.4584 377.587401 \nL 517.662318 381.404647 \nL 519.063624 379.877748 \nL 520.46493 372.243256 \nL 521.866236 382.168096 \nL 523.267541 389.039139 \nL 527.471459 385.985342 \nL 528.872765 379.114299 \nL 530.274071 388.27569 \nL 531.675377 389.039139 \nL 533.076683 392.856385 \nL 537.2806 399.727429 \nL 538.681906 404.308124 \nL 540.083212 421.867457 \nL 541.484518 424.921254 \nL 542.885824 426.448152 \nL 547.089741 428.7385 \nL 548.491047 440.190239 \nL 549.892353 438.66334 \nL 551.293659 443.244036 \nL 552.694965 453.932325 \nL 556.898882 450.115079 \nL 558.300188 444.770934 \nL 559.701494 464.620614 \nL 561.1028 465.384064 \nL 562.504106 460.803368 \nL 566.708024 466.910962 \nL 568.109329 469.20131 \nL 569.510635 474.545455 \nL 570.911941 463.857165 \nL 572.313247 461.566817 \nL 576.517165 462.330267 \nL 577.918471 469.20131 \nL 579.319776 467.674411 \nL 580.721082 442.480586 \nL 582.122388 447.061282 \nL 587.727612 460.803368 \nL 589.128918 461.566817 \nL 590.530224 468.437861 \nL 591.931529 456.222673 \nL 596.135447 465.384064 \nL 597.536753 463.093716 \nL 598.938059 469.964759 \nL 600.339365 463.857165 \nL 601.740671 462.330267 \nL 605.944588 460.803368 \nL 607.345894 450.878528 \nL 608.7472 459.27647 \nL 611.549812 463.857165 \nL 615.753729 469.20131 \nL 617.155035 464.620614 \nL 619.957647 438.66334 \nL 621.358953 429.501949 \nL 625.56287 423.394355 \nL 626.964176 438.66334 \nL 628.365482 441.717137 \nL 629.766788 445.534383 \nL 631.168094 456.222673 \nL 635.372012 447.824731 \nL 636.773317 424.921254 \nL 638.174623 430.265398 \nL 639.575929 425.684703 \nL 654.990294 414.996414 \nL 656.3916 414.232964 \nL 657.792906 339.414938 \nL 659.194211 331.780446 \nL 660.595517 335.597692 \nL 664.799435 360.028068 \nL 666.200741 362.318416 \nL 667.602047 363.081865 \nL 669.003353 355.447373 \nL 670.404658 363.081865 \nL 674.608576 375.297053 \nL 676.009882 367.66256 \nL 677.411188 375.297053 \nL 678.812494 371.479807 \nL 680.2138 371.479807 \nL 684.417717 364.608763 \nL 685.819023 357.73772 \nL 687.220329 375.297053 \nL 688.621635 382.931545 \nL 690.022941 354.683923 \nL 694.226858 359.264619 \nL 695.628164 369.952908 \nL 697.02947 366.135662 \nL 698.430776 364.608763 \nL 699.832082 373.006705 \nL 704.035999 369.952908 \nL 705.437305 354.683923 \nL 706.838611 360.028068 \nL 708.239917 363.081865 \nL 709.641223 360.791517 \nL 713.845141 351.630126 \nL 716.647752 365.372213 \nL 723.654282 367.66256 \nL 725.055588 369.952908 \nL 726.456894 379.114299 \nL 727.858199 381.404647 \nL 729.259505 395.910182 \nL 733.463423 378.35085 \nL 734.864729 379.114299 \nL 736.266035 353.157025 \nL 737.667341 339.414938 \nL 739.068646 347.81288 \nL 743.272564 362.318416 \nL 744.67387 359.264619 \nL 746.075176 360.028068 \nL 747.476482 353.920474 \nL 748.877788 354.683923 \nL 753.081705 338.651489 \nL 754.483011 340.178388 \nL 762.890846 332.543895 \nL 764.292152 333.307344 \nL 765.693458 344.759083 \nL 767.094764 342.468735 \nL 768.49607 328.726649 \nL 772.699987 326.436301 \nL 774.101293 331.016997 \nL 775.502599 337.124591 \nL 776.903905 311.167316 \nL 778.305211 292.081085 \nL 782.509129 295.134882 \nL 783.910434 282.156245 \nL 785.31174 281.392796 \nL 786.713046 293.607984 \nL 788.114352 300.479027 \nL 792.31827 285.210042 \nL 793.719576 293.607984 \nL 796.522187 314.984563 \nL 797.923493 315.748012 \nL 802.127411 325.672852 \nL 803.528717 322.619055 \nL 804.930023 334.070794 \nL 806.331328 331.780446 \nL 807.732634 324.909403 \nL 813.337858 334.070794 \nL 814.739164 333.307344 \nL 816.14047 339.414938 \nL 817.541775 332.543895 \nL 821.745693 338.651489 \nL 823.146999 340.178388 \nL 824.548305 334.834243 \nL 825.949611 342.468735 \nL 827.350917 346.285982 \nL 831.554834 347.81288 \nL 832.95614 340.178388 \nL 834.357446 340.178388 \nL 835.758752 336.361141 \nL 837.160058 334.834243 \nL 841.363975 319.565258 \nL 842.765281 315.748012 \nL 844.166587 322.619055 \nL 845.567893 326.436301 \nL 846.969199 348.576329 \nL 851.173117 351.630126 \nL 852.574422 340.941837 \nL 853.975728 335.597692 \nL 855.377034 336.361141 \nL 856.77834 322.619055 \nL 860.982258 321.092157 \nL 862.383564 323.382504 \nL 863.784869 315.748012 \nL 865.186175 314.984563 \nL 866.587481 318.03836 \nL 872.192705 332.543895 \nL 873.594011 336.361141 \nL 874.995316 339.414938 \nL 876.396622 343.995634 \nL 880.60054 337.88804 \nL 882.001846 340.178388 \nL 883.403152 325.672852 \nL 884.804458 325.672852 \nL 886.205763 335.597692 \nL 890.409681 342.468735 \nL 891.810987 351.630126 \nL 893.212293 351.630126 \nL 894.613599 350.866677 \nL 896.014905 343.232185 \nL 900.218822 345.522532 \nL 901.620128 350.103228 \nL 903.021434 352.393576 \nL 904.42274 343.995634 \nL 905.824046 336.361141 \nL 911.429269 320.328707 \nL 912.830575 319.565258 \nL 914.231881 317.27491 \nL 915.633187 310.403867 \nL 919.837104 308.876969 \nL 921.23841 313.457664 \nL 922.639716 321.092157 \nL 924.041022 336.361141 \nL 925.442328 334.070794 \nL 929.646246 337.88804 \nL 931.047551 340.178388 \nL 932.448857 344.759083 \nL 933.850163 340.941837 \nL 935.251469 340.178388 \nL 939.455387 357.73772 \nL 940.856693 353.920474 \nL 942.257998 373.006705 \nL 943.659304 366.135662 \nL 945.06061 369.189459 \nL 952.06714 363.845314 \nL 953.468446 360.791517 \nL 954.869751 353.920474 \nL 959.073669 343.232185 \nL 960.474975 318.03836 \nL 961.876281 308.113519 \nL 963.277587 258.489319 \nL 968.88281 177.563699 \nL 980.093257 126.412599 \nL 981.494563 218.026509 \nL 982.895869 176.0368 \nL 984.297175 195.886481 \nL 988.501092 172.983003 \nL 989.902398 182.144394 \nL 991.303704 169.929206 \nL 992.70501 178.327148 \nL 994.106316 171.456105 \nL 998.310234 189.015437 \nL 999.711539 190.542336 \nL 1001.112845 185.198191 \nL 1002.514151 193.596133 \nL 1003.915457 196.64993 \nL 1008.119375 201.994075 \nL 1009.520681 209.628567 \nL 1010.921986 226.42445 \nL 1012.323292 221.843755 \nL 1013.724598 218.026509 \nL 1017.928516 215.736161 \nL 1019.329822 201.230625 \nL 1020.731128 208.865118 \nL 1022.132433 181.380945 \nL 1023.533739 195.886481 \nL 1027.737657 205.047872 \nL 1029.138963 209.628567 \nL 1030.540269 204.284422 \nL 1031.941575 209.628567 \nL 1033.34288 217.263059 \nL 1037.546798 193.596133 \nL 1038.948104 198.940278 \nL 1040.34941 201.994075 \nL 1041.750716 205.811321 \nL 1043.152022 229.478247 \nL 1047.355939 237.11274 \nL 1048.757245 230.241697 \nL 1050.158551 221.080306 \nL 1051.559857 224.897552 \nL 1052.961163 221.843755 \nL 1057.16508 221.080306 \nL 1058.566386 213.445813 \nL 1059.967692 215.736161 \nL 1061.368998 217.263059 \nL 1062.770304 200.467176 \nL 1066.974221 199.703727 \nL 1068.375527 190.542336 \nL 1069.776833 195.123031 \nL 1071.178139 185.96164 \nL 1072.579445 208.101668 \nL 1076.783363 207.338219 \nL 1078.184669 210.392016 \nL 1079.585974 201.230625 \nL 1080.98728 205.811321 \nL 1082.388586 203.520973 \nL 1086.592504 195.123031 \nL 1087.99381 185.198191 \nL 1089.395116 180.617496 \nL 1090.796421 185.198191 \nL 1092.197727 188.251988 \nL 1092.197727 188.251988 \n\" clip-path=\"url(#pe203883121)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"line2d_18\">\n <path d=\"M 95.869249 72.971152 \nL 97.270555 63.809761 \nL 98.671861 57.778512 \nL 100.073167 53.121472 \nL 101.474473 49.227881 \nL 115.487531 46.555809 \nL 116.888837 42.356838 \nL 118.290143 42.127803 \nL 119.691449 42.662217 \nL 121.092755 47.471948 \nL 125.296673 55.717199 \nL 126.697978 61.519414 \nL 128.099284 69.688321 \nL 129.50059 77.017433 \nL 130.901896 85.7971 \nL 135.105814 95.950975 \nL 139.309731 119.312521 \nL 140.711037 126.10722 \nL 144.914955 124.962046 \nL 146.316261 125.80184 \nL 147.717567 125.95453 \nL 149.118872 126.565289 \nL 150.520178 127.481428 \nL 154.724096 128.473912 \nL 156.125402 129.848121 \nL 157.526708 126.030875 \nL 158.928014 121.1448 \nL 160.329319 114.579136 \nL 164.533237 116.869484 \nL 165.934543 119.999626 \nL 167.335849 123.740527 \nL 168.737155 130.229846 \nL 170.138461 135.72668 \nL 174.342378 140.612755 \nL 175.743684 147.560143 \nL 177.14499 156.110775 \nL 178.546296 166.951754 \nL 179.947602 178.708873 \nL 184.151519 188.481023 \nL 185.552825 196.03917 \nL 186.954131 201.688695 \nL 189.756743 206.42208 \nL 193.96066 209.857602 \nL 195.361966 211.613535 \nL 196.763272 215.583471 \nL 198.164578 216.6523 \nL 199.565884 218.331888 \nL 203.769802 217.568439 \nL 205.171107 217.950164 \nL 207.973719 219.553407 \nL 209.375025 221.691065 \nL 214.980249 223.217964 \nL 216.381554 224.439482 \nL 217.78286 224.210448 \nL 219.184166 224.134103 \nL 223.388084 221.080306 \nL 224.78939 218.560923 \nL 226.190696 217.034025 \nL 227.592002 215.736161 \nL 228.993307 216.6523 \nL 233.197225 221.080306 \nL 234.598531 223.065274 \nL 235.999837 225.813691 \nL 237.401143 228.104039 \nL 238.802449 229.172868 \nL 247.210284 230.699766 \nL 248.61159 231.38687 \nL 252.815507 227.798659 \nL 254.216813 224.668517 \nL 255.618119 222.07279 \nL 257.019425 216.34692 \nL 258.420731 213.751193 \nL 262.624648 208.330703 \nL 264.025954 205.582286 \nL 265.42726 206.040356 \nL 266.828566 207.872634 \nL 268.229872 212.224294 \nL 272.43379 219.400717 \nL 273.835095 226.653485 \nL 275.236401 232.990114 \nL 276.637707 240.013847 \nL 278.039013 243.983783 \nL 282.242931 250.473102 \nL 283.644237 256.198971 \nL 286.446848 269.864712 \nL 287.848154 272.994854 \nL 292.052072 276.583066 \nL 293.453378 279.407828 \nL 294.854684 279.942242 \nL 296.255989 278.491689 \nL 297.657295 280.171277 \nL 301.861213 281.621831 \nL 303.262519 282.38528 \nL 304.663825 281.163761 \nL 306.065131 278.797068 \nL 307.466436 278.873413 \nL 311.670354 280.171277 \nL 313.07166 281.621831 \nL 314.472966 283.912178 \nL 321.479495 288.874598 \nL 322.880801 291.241291 \nL 324.282107 292.76819 \nL 325.683413 295.058537 \nL 327.084719 296.890816 \nL 331.288636 297.806955 \nL 332.689942 299.562888 \nL 335.492554 301.318821 \nL 336.89386 302.463995 \nL 341.097777 302.311305 \nL 343.900389 303.303789 \nL 346.703001 299.639233 \nL 350.906919 301.013441 \nL 352.308225 302.158615 \nL 353.70953 302.38765 \nL 355.110836 301.776891 \nL 356.512142 300.708062 \nL 360.71606 300.249992 \nL 362.117366 296.356401 \nL 363.518672 293.073569 \nL 364.919977 290.630532 \nL 366.321283 284.522938 \nL 370.525201 276.8121 \nL 371.926507 269.864712 \nL 373.327813 264.367878 \nL 376.130424 249.327928 \nL 380.334342 242.456884 \nL 381.735648 239.555777 \nL 383.136954 235.738531 \nL 384.53826 232.608389 \nL 385.939566 235.433151 \nL 390.143483 240.395571 \nL 391.544789 243.678403 \nL 392.946095 245.968751 \nL 395.748707 257.42049 \nL 399.952624 263.833463 \nL 401.35393 269.406643 \nL 402.755236 276.430376 \nL 404.156542 284.293903 \nL 405.557848 289.332668 \nL 409.761765 290.477842 \nL 411.163071 293.684329 \nL 412.564377 298.265024 \nL 413.965683 301.624201 \nL 415.366989 303.456479 \nL 419.570907 301.624201 \nL 420.972212 301.471511 \nL 423.774824 298.570404 \nL 425.17613 298.265024 \nL 429.380048 299.639233 \nL 430.781354 299.868268 \nL 432.182659 298.952128 \nL 433.583965 297.73061 \nL 434.985271 298.494059 \nL 439.189189 301.013441 \nL 440.590495 302.38765 \nL 443.393106 306.662966 \nL 444.794412 306.892001 \nL 448.99833 307.80814 \nL 450.399636 308.724279 \nL 453.202248 310.022143 \nL 468.616612 310.861937 \nL 471.419224 314.221113 \nL 474.221836 314.908218 \nL 478.425753 316.664151 \nL 481.228365 319.794293 \nL 484.030977 328.726649 \nL 488.234895 333.383689 \nL 489.6362 336.971901 \nL 491.037506 341.552596 \nL 492.438812 346.896741 \nL 493.840118 351.095712 \nL 498.044036 355.371028 \nL 499.445342 359.646343 \nL 500.846647 363.234555 \nL 503.649259 365.066833 \nL 509.254483 363.234555 \nL 510.655789 362.318416 \nL 512.057094 361.707656 \nL 513.4584 362.85283 \nL 517.662318 364.379729 \nL 519.063624 365.830282 \nL 520.46493 366.670076 \nL 521.866236 368.502355 \nL 523.267541 371.021737 \nL 527.471459 374.838983 \nL 530.274071 379.877748 \nL 531.675377 382.473476 \nL 533.076683 384.000374 \nL 537.2806 385.832652 \nL 538.681906 388.27569 \nL 540.083212 393.23811 \nL 541.484518 397.513426 \nL 542.885824 401.254327 \nL 547.089741 405.529643 \nL 548.491047 411.637237 \nL 551.293659 422.096492 \nL 552.694965 428.204085 \nL 556.898882 433.24285 \nL 561.1028 445.610728 \nL 562.504106 449.04625 \nL 566.708024 452.863496 \nL 568.109329 455.764603 \nL 569.510635 459.352815 \nL 570.911941 461.414128 \nL 572.313247 462.177577 \nL 576.517165 463.399096 \nL 577.918471 465.842133 \nL 579.319776 466.147513 \nL 580.721082 463.857165 \nL 582.122388 462.482956 \nL 587.727612 461.872197 \nL 589.128918 461.108748 \nL 590.530224 460.497988 \nL 591.931529 459.734539 \nL 598.938059 460.268954 \nL 600.339365 459.887229 \nL 601.740671 461.872197 \nL 605.944588 463.246406 \nL 607.345894 462.253922 \nL 608.7472 462.024887 \nL 610.148506 461.337783 \nL 611.549812 462.101232 \nL 617.155035 462.635646 \nL 618.556341 460.803368 \nL 619.957647 458.283986 \nL 621.358953 455.001154 \nL 626.964176 450.038734 \nL 629.766788 446.679557 \nL 631.168094 445.916108 \nL 635.372012 443.77845 \nL 636.773317 439.808514 \nL 638.174623 437.670856 \nL 639.575929 436.372992 \nL 654.990294 434.922439 \nL 656.3916 434.0063 \nL 657.792906 424.08146 \nL 660.595517 402.094121 \nL 664.799435 392.474661 \nL 666.200741 383.924029 \nL 667.602047 377.74009 \nL 669.003353 370.258288 \nL 670.404658 363.998004 \nL 674.608576 360.028068 \nL 676.009882 355.371028 \nL 677.411188 358.959239 \nL 678.812494 362.929175 \nL 680.2138 366.517387 \nL 684.417717 366.975456 \nL 685.819023 366.517387 \nL 687.220329 367.738905 \nL 688.621635 370.487323 \nL 690.022941 369.647528 \nL 694.226858 368.044285 \nL 695.628164 368.27332 \nL 697.02947 367.357181 \nL 698.430776 366.670076 \nL 704.035999 367.357181 \nL 705.437305 367.051801 \nL 706.838611 365.524903 \nL 708.239917 363.539935 \nL 709.641223 364.150694 \nL 713.845141 363.387245 \nL 715.246447 362.242071 \nL 716.647752 362.165726 \nL 723.654282 362.471106 \nL 725.055588 362.165726 \nL 726.456894 363.081865 \nL 727.858199 365.753937 \nL 729.259505 369.342149 \nL 733.463423 370.869047 \nL 734.864729 372.701325 \nL 736.266035 372.854015 \nL 739.068646 369.189459 \nL 743.272564 368.655044 \nL 744.67387 367.586215 \nL 746.075176 365.677592 \nL 747.476482 362.929175 \nL 748.877788 358.806549 \nL 753.081705 354.836613 \nL 754.483011 350.943022 \nL 762.890846 348.881709 \nL 764.292152 348.27095 \nL 765.693458 347.96557 \nL 767.094764 345.980602 \nL 768.49607 342.926805 \nL 772.699987 339.567628 \nL 774.101293 337.277281 \nL 775.502599 335.521347 \nL 776.903905 332.77293 \nL 778.305211 327.9632 \nL 782.509129 324.222298 \nL 783.910434 319.107189 \nL 785.31174 312.77056 \nL 786.713046 307.884485 \nL 788.114352 305.059722 \nL 792.31827 300.937097 \nL 793.719576 297.196195 \nL 795.120881 293.913363 \nL 796.522187 294.295088 \nL 797.923493 296.661781 \nL 802.127411 299.715578 \nL 803.528717 303.761859 \nL 804.930023 309.029659 \nL 806.331328 312.846905 \nL 807.732634 315.289942 \nL 813.337858 320.176017 \nL 814.739164 324.145954 \nL 816.14047 327.65782 \nL 817.541775 329.413753 \nL 821.745693 331.704101 \nL 823.146999 333.154655 \nL 824.548305 334.376173 \nL 825.949611 335.215968 \nL 827.350917 336.666521 \nL 831.554834 338.956869 \nL 834.357446 340.254733 \nL 835.758752 339.949353 \nL 837.160058 340.178388 \nL 841.363975 338.269765 \nL 842.765281 335.826727 \nL 844.166587 334.605208 \nL 845.567893 333.001965 \nL 846.969199 333.231 \nL 852.574422 333.689069 \nL 853.975728 333.231 \nL 855.377034 333.231 \nL 856.77834 332.009481 \nL 860.982258 332.162171 \nL 862.383564 332.92562 \nL 863.784869 332.238516 \nL 865.186175 331.093342 \nL 866.587481 328.039545 \nL 872.192705 324.909403 \nL 873.594011 324.985748 \nL 874.995316 325.291127 \nL 876.396622 327.428785 \nL 880.60054 329.108374 \nL 882.001846 330.787962 \nL 884.804458 332.849275 \nL 886.205763 334.605208 \nL 890.409681 335.979417 \nL 891.810987 337.88804 \nL 893.212293 339.414938 \nL 894.613599 340.560112 \nL 896.014905 340.483767 \nL 900.218822 341.247217 \nL 901.620128 342.239701 \nL 903.021434 344.911773 \nL 904.42274 346.744051 \nL 905.824046 346.820396 \nL 910.027963 344.988118 \nL 912.830575 338.651489 \nL 915.633187 332.009481 \nL 919.837104 328.344924 \nL 921.23841 324.680368 \nL 922.639716 321.550226 \nL 924.041022 320.786777 \nL 925.442328 320.557742 \nL 929.646246 321.931951 \nL 931.047551 323.916919 \nL 933.850163 328.802994 \nL 935.251469 331.780446 \nL 939.455387 336.666521 \nL 940.856693 340.712802 \nL 942.257998 345.904257 \nL 943.659304 348.881709 \nL 945.06061 352.393576 \nL 952.06714 354.989303 \nL 953.468446 357.050616 \nL 954.869751 357.966755 \nL 959.073669 358.19579 \nL 960.474975 355.981787 \nL 961.876281 351.019367 \nL 963.277587 341.476251 \nL 964.678893 327.9632 \nL 968.88281 309.106003 \nL 980.093257 284.828317 \nL 981.494563 270.246437 \nL 982.895869 251.770965 \nL 984.297175 235.967566 \nL 988.501092 218.942648 \nL 991.303704 191.53482 \nL 992.70501 183.518603 \nL 994.106316 176.876594 \nL 998.310234 178.021768 \nL 999.711539 184.434742 \nL 1001.112845 181.15191 \nL 1002.514151 182.907843 \nL 1003.915457 182.984188 \nL 1008.119375 185.885295 \nL 1009.520681 188.633713 \nL 1010.921986 194.283237 \nL 1013.724598 203.291938 \nL 1017.928516 205.964011 \nL 1019.329822 207.03284 \nL 1020.731128 209.399532 \nL 1022.132433 208.178013 \nL 1023.533739 208.101668 \nL 1029.138963 208.407048 \nL 1030.540269 206.193045 \nL 1031.941575 204.971527 \nL 1033.34288 204.895182 \nL 1037.546798 202.681179 \nL 1038.948104 202.452144 \nL 1040.34941 201.76504 \nL 1041.750716 204.208077 \nL 1043.152022 207.567254 \nL 1047.355939 210.773741 \nL 1048.757245 212.835054 \nL 1051.559857 216.041541 \nL 1052.961163 216.49961 \nL 1057.16508 219.248027 \nL 1059.967692 222.07279 \nL 1061.368998 223.217964 \nL 1062.770304 220.316856 \nL 1066.974221 216.575955 \nL 1068.375527 212.606019 \nL 1069.776833 210.010292 \nL 1071.178139 206.1167 \nL 1072.579445 204.742492 \nL 1076.783363 203.368283 \nL 1078.184669 203.062903 \nL 1079.585974 201.61235 \nL 1080.98728 200.467176 \nL 1082.388586 200.772556 \nL 1086.592504 200.314486 \nL 1087.99381 199.780072 \nL 1089.395116 198.329518 \nL 1090.796421 198.253173 \nL 1092.197727 196.268205 \nL 1092.197727 196.268205 \n\" clip-path=\"url(#pe203883121)\" style=\"fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"line2d_19\">\n <path d=\"M 144.914955 84.550133 \nL 146.316261 83.710338 \nL 147.717567 84.473788 \nL 149.118872 85.568065 \nL 150.520178 87.502136 \nL 154.724096 90.326898 \nL 156.125402 92.006487 \nL 157.526708 93.278902 \nL 158.928014 94.373179 \nL 160.329319 96.052768 \nL 164.533237 99.18291 \nL 165.934543 102.440293 \nL 167.335849 106.461126 \nL 170.138461 116.335069 \nL 174.342378 121.679214 \nL 175.743684 127.074255 \nL 179.947602 139.798409 \nL 184.151519 143.437518 \nL 185.552825 147.280212 \nL 188.355437 153.591392 \nL 189.756743 156.543396 \nL 193.96066 159.64809 \nL 195.361966 163.007266 \nL 196.763272 165.908374 \nL 199.565884 170.539966 \nL 203.769802 174.306315 \nL 205.171107 177.99632 \nL 207.973719 181.660876 \nL 209.375025 185.299984 \nL 213.578943 188.302885 \nL 214.980249 191.22944 \nL 216.381554 194.53772 \nL 219.184166 202.579386 \nL 223.388084 206.040356 \nL 227.592002 212.326088 \nL 228.993307 214.107469 \nL 233.197225 216.754093 \nL 237.401143 222.632652 \nL 238.802449 223.319757 \nL 247.210284 223.370653 \nL 248.61159 222.505411 \nL 252.815507 220.927616 \nL 254.216813 219.986028 \nL 255.618119 220.138718 \nL 258.420731 220.011477 \nL 264.025954 219.298924 \nL 265.42726 219.782442 \nL 266.828566 219.884235 \nL 268.229872 220.724029 \nL 272.43379 221.411134 \nL 273.835095 222.352721 \nL 275.236401 223.905068 \nL 276.637707 225.813691 \nL 278.039013 226.933416 \nL 282.242931 228.205832 \nL 283.644237 229.961765 \nL 285.045542 232.735631 \nL 286.446848 236.145704 \nL 287.848154 238.868673 \nL 292.052072 241.260814 \nL 293.453378 243.57661 \nL 294.854684 245.001715 \nL 296.255989 244.950819 \nL 297.657295 245.968751 \nL 301.861213 246.808545 \nL 303.262519 248.055512 \nL 306.065131 252.178138 \nL 307.466436 254.697521 \nL 311.670354 258.718353 \nL 313.07166 262.561048 \nL 314.472966 265.614845 \nL 321.479495 269.126711 \nL 322.880801 271.798784 \nL 325.683413 277.880929 \nL 327.084719 280.349415 \nL 331.288636 282.156245 \nL 332.689942 283.810385 \nL 335.492554 287.449493 \nL 336.89386 288.772805 \nL 341.097777 289.892531 \nL 342.499083 291.419429 \nL 343.900389 292.564603 \nL 345.301695 292.946328 \nL 346.703001 292.564603 \nL 350.906919 292.539155 \nL 352.308225 293.531639 \nL 353.70953 294.320536 \nL 355.110836 294.905847 \nL 356.512142 295.694745 \nL 360.71606 297.145299 \nL 363.518672 296.381849 \nL 364.919977 295.694745 \nL 366.321283 293.684329 \nL 370.525201 291.877499 \nL 373.327813 289.052737 \nL 376.130424 284.166661 \nL 380.334342 281.672727 \nL 383.136954 277.371963 \nL 384.53826 274.878029 \nL 385.939566 273.198441 \nL 390.143483 272.740371 \nL 391.544789 271.900577 \nL 392.946095 270.908093 \nL 395.748707 269.15216 \nL 399.952624 268.84678 \nL 401.35393 268.439607 \nL 402.755236 268.414159 \nL 404.156542 269.177608 \nL 405.557848 269.762919 \nL 411.163071 269.075815 \nL 413.965683 270.017402 \nL 415.366989 270.068299 \nL 419.570907 269.30485 \nL 420.972212 270.144644 \nL 422.373518 270.755403 \nL 423.774824 271.824232 \nL 425.17613 274.343615 \nL 429.380048 276.837549 \nL 430.781354 279.077 \nL 432.182659 281.061968 \nL 434.985271 286.457009 \nL 439.189189 288.823702 \nL 440.590495 291.088601 \nL 443.393106 296.509091 \nL 444.794412 298.163231 \nL 448.99833 299.308405 \nL 451.800942 302.184064 \nL 453.202248 303.125651 \nL 468.616612 304.270825 \nL 470.017918 305.034274 \nL 471.419224 306.026758 \nL 474.221836 306.713862 \nL 478.425753 307.273725 \nL 479.827059 308.546141 \nL 481.228365 309.46228 \nL 484.030977 312.1598 \nL 488.234895 314.246562 \nL 492.438812 321.982847 \nL 493.840118 324.222298 \nL 498.044036 326.30906 \nL 500.846647 330.584375 \nL 503.649259 334.605208 \nL 507.853177 335.953969 \nL 509.254483 337.557212 \nL 513.4584 342.952253 \nL 517.662318 345.471636 \nL 519.063624 347.889225 \nL 520.46493 349.899641 \nL 521.866236 352.266334 \nL 523.267541 354.938406 \nL 527.471459 357.279651 \nL 528.872765 359.162826 \nL 530.274071 361.249587 \nL 533.076683 365.982972 \nL 537.2806 368.527803 \nL 538.681906 371.250772 \nL 540.083212 374.380914 \nL 542.885824 379.114299 \nL 547.089741 381.328302 \nL 548.491047 384.051271 \nL 549.892353 386.290722 \nL 551.293659 388.759208 \nL 552.694965 391.685763 \nL 556.898882 394.485077 \nL 558.300188 397.131701 \nL 562.504106 407.107438 \nL 566.708024 411.077374 \nL 569.510635 418.635522 \nL 570.911941 421.994698 \nL 572.313247 424.794012 \nL 576.517165 427.491533 \nL 579.319776 433.650023 \nL 582.122388 437.594511 \nL 587.727612 440.088445 \nL 590.530224 445.508935 \nL 591.931529 447.748386 \nL 596.135447 450.165975 \nL 598.938059 454.466739 \nL 601.740671 457.113363 \nL 605.944588 458.258537 \nL 610.148506 460.396195 \nL 611.549812 461.0833 \nL 615.753729 461.592266 \nL 617.155035 462.075784 \nL 618.556341 462.304818 \nL 619.957647 461.439576 \nL 621.358953 460.243505 \nL 625.56287 458.996538 \nL 629.766788 456.171776 \nL 631.168094 455.917293 \nL 635.372012 455.459223 \nL 638.174623 452.914393 \nL 639.575929 451.514736 \nL 654.990294 450.598597 \nL 656.3916 449.504319 \nL 659.194211 441.131826 \nL 660.595517 436.70382 \nL 664.799435 433.497334 \nL 670.404658 419.551661 \nL 674.608576 416.650554 \nL 676.009882 413.54586 \nL 677.411188 411.026477 \nL 680.2138 405.097022 \nL 684.417717 401.788742 \nL 685.819023 398.073289 \nL 687.220329 395.095837 \nL 688.621635 392.805489 \nL 690.022941 390.006175 \nL 694.226858 387.664931 \nL 695.628164 385.883549 \nL 699.832082 378.478091 \nL 704.035999 375.602433 \nL 705.437305 372.497739 \nL 709.641223 365.932075 \nL 713.845141 363.819866 \nL 715.246447 361.962139 \nL 716.647752 362.827382 \nL 723.654282 364.023452 \nL 725.055588 365.168626 \nL 727.858199 366.441042 \nL 729.259505 367.535319 \nL 733.463423 368.298768 \nL 734.864729 368.833183 \nL 736.266035 368.095182 \nL 739.068646 366.237455 \nL 743.272564 365.932075 \nL 744.67387 365.524903 \nL 747.476482 365.244971 \nL 748.877788 364.557867 \nL 754.483011 362.598347 \nL 762.890846 361.707656 \nL 764.292152 360.486138 \nL 767.094764 359.035584 \nL 768.49607 357.559582 \nL 772.699987 356.109029 \nL 775.502599 354.556682 \nL 776.903905 352.826197 \nL 778.305211 350.535849 \nL 782.509129 348.652674 \nL 783.910434 346.107843 \nL 785.31174 343.30853 \nL 788.114352 338.524248 \nL 792.31827 335.394106 \nL 795.120881 329.413753 \nL 797.923493 325.189334 \nL 802.127411 324.273195 \nL 804.930023 323.255263 \nL 807.732634 321.092157 \nL 813.337858 320.226914 \nL 814.739164 319.53981 \nL 816.14047 319.030844 \nL 817.541775 318.827257 \nL 821.745693 318.776361 \nL 823.146999 319.030844 \nL 824.548305 319.08174 \nL 825.949611 319.005395 \nL 827.350917 319.132637 \nL 831.554834 319.768845 \nL 832.95614 320.226914 \nL 834.357446 320.532294 \nL 835.758752 320.506845 \nL 837.160058 321.295743 \nL 841.363975 322.211882 \nL 842.765281 322.898986 \nL 845.567893 325.749197 \nL 846.969199 327.581475 \nL 851.173117 329.286512 \nL 852.574422 331.144238 \nL 853.975728 332.543895 \nL 855.377034 333.612724 \nL 856.77834 333.867207 \nL 860.982258 334.045345 \nL 862.383564 333.969 \nL 863.784869 333.739966 \nL 865.186175 333.103758 \nL 866.587481 332.645688 \nL 874.995316 332.823827 \nL 876.396622 333.205551 \nL 882.001846 333.180103 \nL 883.403152 332.874723 \nL 884.804458 332.31486 \nL 886.205763 331.958584 \nL 890.409681 331.780446 \nL 896.014905 333.307344 \nL 900.218822 334.172587 \nL 901.620128 335.317761 \nL 903.021434 336.310245 \nL 904.42274 336.895556 \nL 905.824046 336.488383 \nL 910.027963 335.572244 \nL 911.429269 334.88514 \nL 915.633187 333.307344 \nL 919.837104 332.900172 \nL 921.23841 332.569344 \nL 922.639716 332.747482 \nL 924.041022 333.460034 \nL 925.442328 333.994449 \nL 929.646246 334.299828 \nL 932.448857 334.834243 \nL 933.850163 334.88514 \nL 935.251469 334.757898 \nL 939.455387 335.419554 \nL 940.856693 335.877624 \nL 942.257998 337.455419 \nL 943.659304 338.804179 \nL 945.06061 339.923905 \nL 952.06714 340.636457 \nL 953.468446 340.941837 \nL 954.869751 341.018182 \nL 959.073669 340.763699 \nL 960.474975 339.923905 \nL 961.876281 338.676937 \nL 963.277587 335.62314 \nL 964.678893 331.805894 \nL 968.88281 326.258163 \nL 980.093257 319.259878 \nL 981.494563 315.722564 \nL 982.895869 310.912833 \nL 984.297175 306.790207 \nL 988.501092 301.980477 \nL 991.303704 293.073569 \nL 992.70501 288.569219 \nL 994.106316 283.58135 \nL 998.310234 278.669827 \nL 1001.112845 268.795883 \nL 1003.915457 258.972836 \nL 1008.119375 254.341244 \nL 1012.323292 241.209917 \nL 1013.724598 236.043911 \nL 1017.928516 231.030594 \nL 1023.533739 209.017808 \nL 1027.737657 204.411664 \nL 1030.540269 197.337034 \nL 1031.941575 195.708342 \nL 1033.34288 195.021238 \nL 1037.546798 195.555653 \nL 1038.948104 197.973242 \nL 1040.34941 197.438827 \nL 1043.152022 199.551037 \nL 1047.355939 201.688695 \nL 1052.961163 208.22891 \nL 1057.16508 209.297739 \nL 1058.566386 210.061188 \nL 1059.967692 211.079121 \nL 1061.368998 211.868018 \nL 1062.770304 211.99526 \nL 1066.974221 211.918915 \nL 1068.375527 211.282707 \nL 1069.776833 210.239326 \nL 1071.178139 209.043256 \nL 1072.579445 208.712428 \nL 1076.783363 208.432496 \nL 1078.184669 208.737876 \nL 1079.585974 208.483393 \nL 1080.98728 209.297739 \nL 1082.388586 209.552222 \nL 1086.592504 209.221394 \nL 1092.197727 205.836769 \nL 1092.197727 205.836769 \n\" clip-path=\"url(#pe203883121)\" style=\"fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 26.925 496.8 \nL 26.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 1142.925 496.8 \nL 1142.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 26.925 496.8 \nL 1142.925 496.8 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 26.925 7.2 \nL 1142.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"legend_1\">\n <g id=\"patch_7\">\n <path d=\"M 1079.035938 59.234375 \nL 1135.925 59.234375 \nQ 1137.925 59.234375 1137.925 57.234375 \nL 1137.925 14.2 \nQ 1137.925 12.2 1135.925 12.2 \nL 1079.035938 12.2 \nQ 1077.035938 12.2 1077.035938 14.2 \nL 1077.035938 57.234375 \nQ 1077.035938 59.234375 1079.035938 59.234375 \nz\n\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n </g>\n <g id=\"line2d_20\">\n <path d=\"M 1081.035938 20.298438 \nL 1091.035938 20.298438 \nL 1101.035938 20.298438 \n\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_18\">\n <!-- price -->\n <g transform=\"translate(1109.035938 23.798438) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-70\" d=\"M 1159 525 \nL 1159 -1331 \nL 581 -1331 \nL 581 3500 \nL 1159 3500 \nL 1159 2969 \nQ 1341 3281 1617 3432 \nQ 1894 3584 2278 3584 \nQ 2916 3584 3314 3078 \nQ 3713 2572 3713 1747 \nQ 3713 922 3314 415 \nQ 2916 -91 2278 -91 \nQ 1894 -91 1617 61 \nQ 1341 213 1159 525 \nz\nM 3116 1747 \nQ 3116 2381 2855 2742 \nQ 2594 3103 2138 3103 \nQ 1681 3103 1420 2742 \nQ 1159 2381 1159 1747 \nQ 1159 1113 1420 752 \nQ 1681 391 2138 391 \nQ 2594 391 2855 752 \nQ 3116 1113 3116 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \nQ 2534 3019 2420 3045 \nQ 2306 3072 2169 3072 \nQ 1681 3072 1420 2755 \nQ 1159 2438 1159 1844 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1341 3275 1631 3429 \nQ 1922 3584 2338 3584 \nQ 2397 3584 2469 3576 \nQ 2541 3569 2628 3553 \nL 2631 2963 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-69\" d=\"M 603 3500 \nL 1178 3500 \nL 1178 0 \nL 603 0 \nL 603 3500 \nz\nM 603 4863 \nL 1178 4863 \nL 1178 4134 \nL 603 4134 \nL 603 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-63\" d=\"M 3122 3366 \nL 3122 2828 \nQ 2878 2963 2633 3030 \nQ 2388 3097 2138 3097 \nQ 1578 3097 1268 2742 \nQ 959 2388 959 1747 \nQ 959 1106 1268 751 \nQ 1578 397 2138 397 \nQ 2388 397 2633 464 \nQ 2878 531 3122 666 \nL 3122 134 \nQ 2881 22 2623 -34 \nQ 2366 -91 2075 -91 \nQ 1284 -91 818 406 \nQ 353 903 353 1747 \nQ 353 2603 823 3093 \nQ 1294 3584 2113 3584 \nQ 2378 3584 2631 3529 \nQ 2884 3475 3122 3366 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-70\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(104.589844 0)\"/>\n <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(132.373047 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(187.353516 0)\"/>\n </g>\n </g>\n <g id=\"line2d_21\">\n <path d=\"M 1081.035938 34.976563 \nL 1091.035938 34.976563 \nL 1101.035938 34.976563 \n\" style=\"fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_19\">\n <!-- m10 -->\n <g transform=\"translate(1109.035938 38.476563) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 \nQ 3544 3216 3844 3400 \nQ 4144 3584 4550 3584 \nQ 5097 3584 5394 3201 \nQ 5691 2819 5691 2113 \nL 5691 0 \nL 5113 0 \nL 5113 2094 \nQ 5113 2597 4934 2840 \nQ 4756 3084 4391 3084 \nQ 3944 3084 3684 2787 \nQ 3425 2491 3425 1978 \nL 3425 0 \nL 2847 0 \nL 2847 2094 \nQ 2847 2600 2669 2842 \nQ 2491 3084 2119 3084 \nQ 1678 3084 1418 2786 \nQ 1159 2488 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1356 3278 1631 3431 \nQ 1906 3584 2284 3584 \nQ 2666 3584 2933 3390 \nQ 3200 3197 3328 2828 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n <g id=\"line2d_22\">\n <path d=\"M 1081.035938 49.654688 \nL 1091.035938 49.654688 \nL 1101.035938 49.654688 \n\" style=\"fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_20\">\n <!-- m30 -->\n <g transform=\"translate(1109.035938 53.154688) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"pe203883121\">\n <rect x=\"26.925\" y=\"7.2\" width=\"1116\" height=\"489.6\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 196
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.690226Z",
"start_time": "2024-12-29T05:43:43.562721Z"
}
},
"cell_type": "code",
"source": [
"df['check'] = np.where(df['m10'] > df['m30'], 1, -1)\n",
"# 绘制第二坐标轴\n",
"df.plot(figsize=(20, 10), secondary_y='check')"
],
"id": "d4729649db0e2d0d",
"outputs": [
{
"data": {
"text/plain": [
"<Axes: xlabel='date'>"
]
},
"execution_count": 197,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 2000x1000 with 2 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1187.770313pt\" height=\"553.951033pt\" viewBox=\"0 0 1187.770313 553.951033\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:43:43.662187</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 553.951033 \nL 1187.770313 553.951033 \nL 1187.770313 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 26.925 496.8 \nL 1142.925 496.8 \nL 1142.925 7.2 \nL 26.925 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m9d174a1f53\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"74.849661\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 2023-01 -->\n <g transform=\"translate(37.62484 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2d\" d=\"M 313 2009 \nL 1997 2009 \nL 1997 1497 \nL 313 1497 \nL 313 2009 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"200.96719\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 2023-04 -->\n <g transform=\"translate(163.742369 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \nL 825 1625 \nL 2419 1625 \nL 2419 4116 \nz\nM 2253 4666 \nL 3047 4666 \nL 3047 1625 \nL 3713 1625 \nL 3713 1100 \nL 3047 1100 \nL 3047 0 \nL 2419 0 \nL 2419 1100 \nL 313 1100 \nL 313 1709 \nL 2253 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"328.486025\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 2023-07 -->\n <g transform=\"translate(291.261204 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-37\" d=\"M 525 4666 \nL 3525 4666 \nL 3525 4397 \nL 1831 0 \nL 1172 0 \nL 2766 4134 \nL 525 4134 \nL 525 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"457.406165\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 2023-10 -->\n <g transform=\"translate(420.181344 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"586.326306\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 2024-01 -->\n <g transform=\"translate(549.101485 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"713.845141\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 2024-04 -->\n <g transform=\"translate(676.62032 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"841.363975\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 2024-07 -->\n <g transform=\"translate(804.139155 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"970.284116\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 2024-10 -->\n <g transform=\"translate(933.059295 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#m9d174a1f53\" x=\"1099.204257\" y=\"496.8\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 2025-01 -->\n <g transform=\"translate(1061.979436 531.271846) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-35\" d=\"M 691 4666 \nL 3169 4666 \nL 3169 4134 \nL 1269 4134 \nL 1269 2991 \nQ 1406 3038 1543 3061 \nQ 1681 3084 1819 3084 \nQ 2600 3084 3056 2656 \nQ 3513 2228 3513 1497 \nQ 3513 744 3044 326 \nQ 2575 -91 1722 -91 \nQ 1428 -91 1123 -41 \nQ 819 9 494 109 \nL 494 744 \nQ 775 591 1075 516 \nQ 1375 441 1709 441 \nQ 2250 441 2565 725 \nQ 2881 1009 2881 1497 \nQ 2881 1984 2565 2268 \nQ 2250 2553 1709 2553 \nQ 1456 2553 1204 2497 \nQ 953 2441 691 2322 \nL 691 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- date -->\n <g transform=\"translate(573.65 544.671346) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-64\" d=\"M 2906 2969 \nL 2906 4863 \nL 3481 4863 \nL 3481 0 \nL 2906 0 \nL 2906 525 \nQ 2725 213 2448 61 \nQ 2172 -91 1784 -91 \nQ 1150 -91 751 415 \nQ 353 922 353 1747 \nQ 353 2572 751 3078 \nQ 1150 3584 1784 3584 \nQ 2172 3584 2448 3432 \nQ 2725 3281 2906 2969 \nz\nM 947 1747 \nQ 947 1113 1208 752 \nQ 1469 391 1925 391 \nQ 2381 391 2643 752 \nQ 2906 1113 2906 1747 \nQ 2906 2381 2643 2742 \nQ 2381 3103 1925 3103 \nQ 1469 3103 1208 2742 \nQ 947 2381 947 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-61\" d=\"M 2194 1759 \nQ 1497 1759 1228 1600 \nQ 959 1441 959 1056 \nQ 959 750 1161 570 \nQ 1363 391 1709 391 \nQ 2188 391 2477 730 \nQ 2766 1069 2766 1631 \nL 2766 1759 \nL 2194 1759 \nz\nM 3341 1997 \nL 3341 0 \nL 2766 0 \nL 2766 531 \nQ 2569 213 2275 61 \nQ 1981 -91 1556 -91 \nQ 1019 -91 701 211 \nQ 384 513 384 1019 \nQ 384 1609 779 1909 \nQ 1175 2209 1959 2209 \nL 2766 2209 \nL 2766 2266 \nQ 2766 2663 2505 2880 \nQ 2244 3097 1772 3097 \nQ 1472 3097 1187 3025 \nQ 903 2953 641 2809 \nL 641 3341 \nQ 956 3463 1253 3523 \nQ 1550 3584 1831 3584 \nQ 2591 3584 2966 3190 \nQ 3341 2797 3341 1997 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-74\" d=\"M 1172 4494 \nL 1172 3500 \nL 2356 3500 \nL 2356 3053 \nL 1172 3053 \nL 1172 1153 \nQ 1172 725 1289 603 \nQ 1406 481 1766 481 \nL 2356 481 \nL 2356 0 \nL 1766 0 \nQ 1100 0 847 248 \nQ 594 497 594 1153 \nL 594 3053 \nL 172 3053 \nL 172 3500 \nL 594 3500 \nL 594 4494 \nL 1172 4494 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \nL 3597 1613 \nL 953 1613 \nQ 991 1019 1311 708 \nQ 1631 397 2203 397 \nQ 2534 397 2845 478 \nQ 3156 559 3463 722 \nL 3463 178 \nQ 3153 47 2828 -22 \nQ 2503 -91 2169 -91 \nQ 1331 -91 842 396 \nQ 353 884 353 1716 \nQ 353 2575 817 3079 \nQ 1281 3584 2069 3584 \nQ 2775 3584 3186 3129 \nQ 3597 2675 3597 1894 \nz\nM 3022 2063 \nQ 3016 2534 2758 2815 \nQ 2500 3097 2075 3097 \nQ 1594 3097 1305 2825 \nQ 1016 2553 972 2059 \nL 3022 2063 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-64\"/>\n <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(124.755859 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(163.964844 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_10\">\n <defs>\n <path id=\"ma4b9c678cb\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"479.889599\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 8 -->\n <g transform=\"translate(13.5625 483.688818) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"403.544675\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 9 -->\n <g transform=\"translate(13.5625 407.343894) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"327.199751\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 10 -->\n <g transform=\"translate(7.2 330.998969) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"250.854826\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 11 -->\n <g transform=\"translate(7.2 254.654045) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"174.509902\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 12 -->\n <g transform=\"translate(7.2 178.309121) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_15\">\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"98.164977\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 13 -->\n <g transform=\"translate(7.2 101.964196) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_16\">\n <g>\n <use xlink:href=\"#ma4b9c678cb\" x=\"26.925\" y=\"21.820053\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- 14 -->\n <g transform=\"translate(7.2 25.619272) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_17\">\n <path d=\"M 77.652273 134.810541 \nL 79.053579 92.820833 \nL 80.454884 80.605645 \nL 81.85619 69.917355 \nL 86.060108 56.175269 \nL 87.461414 83.659442 \nL 88.86272 66.100109 \nL 90.264026 66.100109 \nL 91.665331 44.72353 \nL 95.869249 34.79869 \nL 97.270555 43.196632 \nL 98.671861 32.508342 \nL 100.073167 34.035241 \nL 101.474473 30.981444 \nL 115.487531 29.454545 \nL 116.888837 41.669733 \nL 118.290143 63.809761 \nL 119.691449 71.444254 \nL 121.092755 92.820833 \nL 125.296673 117.251208 \nL 126.697978 101.218774 \nL 128.099284 114.197412 \nL 129.50059 107.326368 \nL 130.901896 118.778107 \nL 135.105814 130.993295 \nL 136.50712 120.305005 \nL 137.908425 142.445034 \nL 139.309731 147.789178 \nL 140.711037 160.767815 \nL 144.914955 105.79947 \nL 146.316261 109.616716 \nL 147.717567 115.72431 \nL 149.118872 113.433962 \nL 150.520178 127.939498 \nL 154.724096 140.918135 \nL 156.125402 134.047092 \nL 157.526708 104.272571 \nL 158.928014 98.928427 \nL 160.329319 95.11118 \nL 164.533237 128.702947 \nL 167.335849 153.133323 \nL 168.737155 178.327148 \nL 170.138461 182.907843 \nL 174.342378 189.778887 \nL 175.743684 203.520973 \nL 177.14499 189.778887 \nL 178.546296 207.338219 \nL 179.947602 212.682364 \nL 184.151519 226.42445 \nL 185.552825 216.49961 \nL 186.954131 209.628567 \nL 188.355437 201.230625 \nL 189.756743 207.338219 \nL 193.96066 224.134103 \nL 195.361966 221.080306 \nL 196.763272 229.478247 \nL 198.164578 218.026509 \nL 199.565884 229.478247 \nL 203.769802 218.789958 \nL 205.171107 220.316856 \nL 207.973719 225.661001 \nL 209.375025 222.607204 \nL 213.578943 218.026509 \nL 214.980249 228.714798 \nL 216.381554 233.295494 \nL 217.78286 227.1879 \nL 219.184166 217.263059 \nL 223.388084 198.940278 \nL 224.78939 193.596133 \nL 226.190696 205.047872 \nL 227.592002 212.682364 \nL 228.993307 231.768595 \nL 233.197225 262.306565 \nL 234.598531 248.564478 \nL 235.999837 260.779666 \nL 237.401143 250.091377 \nL 238.802449 227.951349 \nL 247.210284 214.209262 \nL 248.61159 200.467176 \nL 252.815507 169.165757 \nL 254.216813 181.380945 \nL 255.618119 205.811321 \nL 257.019425 205.047872 \nL 258.420731 222.607204 \nL 262.624648 206.57477 \nL 264.025954 222.607204 \nL 265.42726 232.532044 \nL 266.828566 232.532044 \nL 268.229872 243.983783 \nL 272.43379 240.929986 \nL 273.835095 253.908623 \nL 275.236401 269.177608 \nL 276.637707 275.285202 \nL 278.039013 262.306565 \nL 282.242931 271.467956 \nL 283.644237 279.865897 \nL 285.045542 300.479027 \nL 286.446848 301.242476 \nL 287.848154 275.285202 \nL 292.052072 276.8121 \nL 293.453378 282.156245 \nL 294.854684 274.521753 \nL 296.255989 260.779666 \nL 297.657295 279.102448 \nL 301.861213 285.973491 \nL 303.262519 287.50039 \nL 304.663825 288.263839 \nL 306.065131 277.57555 \nL 307.466436 276.048651 \nL 311.670354 289.790738 \nL 313.07166 296.661781 \nL 314.472966 297.42523 \nL 321.479495 310.403867 \nL 322.880801 302.769375 \nL 324.282107 301.242476 \nL 325.683413 310.403867 \nL 327.084719 306.586621 \nL 331.288636 286.736941 \nL 332.689942 293.607984 \nL 334.091248 298.188679 \nL 335.492554 305.823172 \nL 336.89386 308.876969 \nL 341.097777 308.876969 \nL 342.499083 308.113519 \nL 343.900389 305.823172 \nL 345.301695 291.317636 \nL 346.703001 289.027288 \nL 350.906919 300.479027 \nL 352.308225 305.059722 \nL 353.70953 300.479027 \nL 355.110836 299.715578 \nL 356.512142 298.188679 \nL 360.71606 304.296273 \nL 362.117366 269.177608 \nL 363.518672 272.994854 \nL 364.919977 266.88726 \nL 366.321283 227.951349 \nL 370.525201 223.370653 \nL 371.926507 235.585841 \nL 373.327813 245.510681 \nL 374.729119 222.607204 \nL 376.130424 224.897552 \nL 380.334342 235.585841 \nL 381.735648 240.166537 \nL 383.136954 234.822392 \nL 384.53826 235.585841 \nL 385.939566 256.198971 \nL 390.143483 272.994854 \nL 391.544789 268.414159 \nL 392.946095 268.414159 \nL 394.347401 280.629347 \nL 395.748707 281.392796 \nL 399.952624 299.715578 \nL 401.35393 295.898332 \nL 404.156542 314.221113 \nL 405.557848 306.586621 \nL 409.761765 284.446593 \nL 411.163071 300.479027 \nL 412.564377 314.221113 \nL 413.965683 314.221113 \nL 415.366989 299.715578 \nL 419.570907 281.392796 \nL 420.972212 294.371433 \nL 422.373518 291.317636 \nL 423.774824 298.952128 \nL 425.17613 303.532824 \nL 429.380048 298.188679 \nL 430.781354 302.769375 \nL 432.182659 305.059722 \nL 433.583965 302.005925 \nL 434.985271 307.35007 \nL 439.189189 306.586621 \nL 440.590495 308.113519 \nL 441.991801 312.694215 \nL 443.393106 320.328707 \nL 444.794412 305.823172 \nL 448.99833 307.35007 \nL 450.399636 311.930766 \nL 451.800942 311.167316 \nL 453.202248 308.876969 \nL 468.616612 315.748012 \nL 470.017918 322.619055 \nL 471.419224 325.672852 \nL 472.82053 315.748012 \nL 474.221836 324.145954 \nL 478.425753 323.382504 \nL 479.827059 322.619055 \nL 481.228365 327.9632 \nL 482.629671 354.683923 \nL 484.030977 354.683923 \nL 488.234895 362.318416 \nL 489.6362 358.501169 \nL 491.037506 371.479807 \nL 492.438812 369.189459 \nL 493.840118 366.135662 \nL 498.044036 366.135662 \nL 499.445342 365.372213 \nL 500.846647 363.845314 \nL 503.649259 363.845314 \nL 507.853177 347.81288 \nL 509.254483 354.683923 \nL 510.655789 362.318416 \nL 512.057094 363.081865 \nL 513.4584 377.587401 \nL 517.662318 381.404647 \nL 519.063624 379.877748 \nL 520.46493 372.243256 \nL 521.866236 382.168096 \nL 523.267541 389.039139 \nL 527.471459 385.985342 \nL 528.872765 379.114299 \nL 530.274071 388.27569 \nL 531.675377 389.039139 \nL 533.076683 392.856385 \nL 537.2806 399.727429 \nL 538.681906 404.308124 \nL 540.083212 421.867457 \nL 541.484518 424.921254 \nL 542.885824 426.448152 \nL 547.089741 428.7385 \nL 548.491047 440.190239 \nL 549.892353 438.66334 \nL 551.293659 443.244036 \nL 552.694965 453.932325 \nL 556.898882 450.115079 \nL 558.300188 444.770934 \nL 559.701494 464.620614 \nL 561.1028 465.384064 \nL 562.504106 460.803368 \nL 566.708024 466.910962 \nL 568.109329 469.20131 \nL 569.510635 474.545455 \nL 570.911941 463.857165 \nL 572.313247 461.566817 \nL 576.517165 462.330267 \nL 577.918471 469.20131 \nL 579.319776 467.674411 \nL 580.721082 442.480586 \nL 582.122388 447.061282 \nL 587.727612 460.803368 \nL 589.128918 461.566817 \nL 590.530224 468.437861 \nL 591.931529 456.222673 \nL 596.135447 465.384064 \nL 597.536753 463.093716 \nL 598.938059 469.964759 \nL 600.339365 463.857165 \nL 601.740671 462.330267 \nL 605.944588 460.803368 \nL 607.345894 450.878528 \nL 608.7472 459.27647 \nL 611.549812 463.857165 \nL 615.753729 469.20131 \nL 617.155035 464.620614 \nL 619.957647 438.66334 \nL 621.358953 429.501949 \nL 625.56287 423.394355 \nL 626.964176 438.66334 \nL 628.365482 441.717137 \nL 629.766788 445.534383 \nL 631.168094 456.222673 \nL 635.372012 447.824731 \nL 636.773317 424.921254 \nL 638.174623 430.265398 \nL 639.575929 425.684703 \nL 654.990294 414.996414 \nL 656.3916 414.232964 \nL 657.792906 339.414938 \nL 659.194211 331.780446 \nL 660.595517 335.597692 \nL 664.799435 360.028068 \nL 666.200741 362.318416 \nL 667.602047 363.081865 \nL 669.003353 355.447373 \nL 670.404658 363.081865 \nL 674.608576 375.297053 \nL 676.009882 367.66256 \nL 677.411188 375.297053 \nL 678.812494 371.479807 \nL 680.2138 371.479807 \nL 684.417717 364.608763 \nL 685.819023 357.73772 \nL 687.220329 375.297053 \nL 688.621635 382.931545 \nL 690.022941 354.683923 \nL 694.226858 359.264619 \nL 695.628164 369.952908 \nL 697.02947 366.135662 \nL 698.430776 364.608763 \nL 699.832082 373.006705 \nL 704.035999 369.952908 \nL 705.437305 354.683923 \nL 706.838611 360.028068 \nL 708.239917 363.081865 \nL 709.641223 360.791517 \nL 713.845141 351.630126 \nL 716.647752 365.372213 \nL 723.654282 367.66256 \nL 725.055588 369.952908 \nL 726.456894 379.114299 \nL 727.858199 381.404647 \nL 729.259505 395.910182 \nL 733.463423 378.35085 \nL 734.864729 379.114299 \nL 736.266035 353.157025 \nL 737.667341 339.414938 \nL 739.068646 347.81288 \nL 743.272564 362.318416 \nL 744.67387 359.264619 \nL 746.075176 360.028068 \nL 747.476482 353.920474 \nL 748.877788 354.683923 \nL 753.081705 338.651489 \nL 754.483011 340.178388 \nL 762.890846 332.543895 \nL 764.292152 333.307344 \nL 765.693458 344.759083 \nL 767.094764 342.468735 \nL 768.49607 328.726649 \nL 772.699987 326.436301 \nL 774.101293 331.016997 \nL 775.502599 337.124591 \nL 776.903905 311.167316 \nL 778.305211 292.081085 \nL 782.509129 295.134882 \nL 783.910434 282.156245 \nL 785.31174 281.392796 \nL 786.713046 293.607984 \nL 788.114352 300.479027 \nL 792.31827 285.210042 \nL 793.719576 293.607984 \nL 796.522187 314.984563 \nL 797.923493 315.748012 \nL 802.127411 325.672852 \nL 803.528717 322.619055 \nL 804.930023 334.070794 \nL 806.331328 331.780446 \nL 807.732634 324.909403 \nL 813.337858 334.070794 \nL 814.739164 333.307344 \nL 816.14047 339.414938 \nL 817.541775 332.543895 \nL 821.745693 338.651489 \nL 823.146999 340.178388 \nL 824.548305 334.834243 \nL 825.949611 342.468735 \nL 827.350917 346.285982 \nL 831.554834 347.81288 \nL 832.95614 340.178388 \nL 834.357446 340.178388 \nL 835.758752 336.361141 \nL 837.160058 334.834243 \nL 841.363975 319.565258 \nL 842.765281 315.748012 \nL 844.166587 322.619055 \nL 845.567893 326.436301 \nL 846.969199 348.576329 \nL 851.173117 351.630126 \nL 852.574422 340.941837 \nL 853.975728 335.597692 \nL 855.377034 336.361141 \nL 856.77834 322.619055 \nL 860.982258 321.092157 \nL 862.383564 323.382504 \nL 863.784869 315.748012 \nL 865.186175 314.984563 \nL 866.587481 318.03836 \nL 872.192705 332.543895 \nL 873.594011 336.361141 \nL 874.995316 339.414938 \nL 876.396622 343.995634 \nL 880.60054 337.88804 \nL 882.001846 340.178388 \nL 883.403152 325.672852 \nL 884.804458 325.672852 \nL 886.205763 335.597692 \nL 890.409681 342.468735 \nL 891.810987 351.630126 \nL 893.212293 351.630126 \nL 894.613599 350.866677 \nL 896.014905 343.232185 \nL 900.218822 345.522532 \nL 901.620128 350.103228 \nL 903.021434 352.393576 \nL 904.42274 343.995634 \nL 905.824046 336.361141 \nL 911.429269 320.328707 \nL 912.830575 319.565258 \nL 914.231881 317.27491 \nL 915.633187 310.403867 \nL 919.837104 308.876969 \nL 921.23841 313.457664 \nL 922.639716 321.092157 \nL 924.041022 336.361141 \nL 925.442328 334.070794 \nL 929.646246 337.88804 \nL 931.047551 340.178388 \nL 932.448857 344.759083 \nL 933.850163 340.941837 \nL 935.251469 340.178388 \nL 939.455387 357.73772 \nL 940.856693 353.920474 \nL 942.257998 373.006705 \nL 943.659304 366.135662 \nL 945.06061 369.189459 \nL 952.06714 363.845314 \nL 953.468446 360.791517 \nL 954.869751 353.920474 \nL 959.073669 343.232185 \nL 960.474975 318.03836 \nL 961.876281 308.113519 \nL 963.277587 258.489319 \nL 968.88281 177.563699 \nL 980.093257 126.412599 \nL 981.494563 218.026509 \nL 982.895869 176.0368 \nL 984.297175 195.886481 \nL 988.501092 172.983003 \nL 989.902398 182.144394 \nL 991.303704 169.929206 \nL 992.70501 178.327148 \nL 994.106316 171.456105 \nL 998.310234 189.015437 \nL 999.711539 190.542336 \nL 1001.112845 185.198191 \nL 1002.514151 193.596133 \nL 1003.915457 196.64993 \nL 1008.119375 201.994075 \nL 1009.520681 209.628567 \nL 1010.921986 226.42445 \nL 1012.323292 221.843755 \nL 1013.724598 218.026509 \nL 1017.928516 215.736161 \nL 1019.329822 201.230625 \nL 1020.731128 208.865118 \nL 1022.132433 181.380945 \nL 1023.533739 195.886481 \nL 1027.737657 205.047872 \nL 1029.138963 209.628567 \nL 1030.540269 204.284422 \nL 1031.941575 209.628567 \nL 1033.34288 217.263059 \nL 1037.546798 193.596133 \nL 1038.948104 198.940278 \nL 1040.34941 201.994075 \nL 1041.750716 205.811321 \nL 1043.152022 229.478247 \nL 1047.355939 237.11274 \nL 1048.757245 230.241697 \nL 1050.158551 221.080306 \nL 1051.559857 224.897552 \nL 1052.961163 221.843755 \nL 1057.16508 221.080306 \nL 1058.566386 213.445813 \nL 1059.967692 215.736161 \nL 1061.368998 217.263059 \nL 1062.770304 200.467176 \nL 1066.974221 199.703727 \nL 1068.375527 190.542336 \nL 1069.776833 195.123031 \nL 1071.178139 185.96164 \nL 1072.579445 208.101668 \nL 1076.783363 207.338219 \nL 1078.184669 210.392016 \nL 1079.585974 201.230625 \nL 1080.98728 205.811321 \nL 1082.388586 203.520973 \nL 1086.592504 195.123031 \nL 1087.99381 185.198191 \nL 1089.395116 180.617496 \nL 1090.796421 185.198191 \nL 1092.197727 188.251988 \nL 1092.197727 188.251988 \n\" clip-path=\"url(#pd38232b532)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"line2d_18\">\n <path d=\"M 95.869249 72.971152 \nL 97.270555 63.809761 \nL 98.671861 57.778512 \nL 100.073167 53.121472 \nL 101.474473 49.227881 \nL 115.487531 46.555809 \nL 116.888837 42.356838 \nL 118.290143 42.127803 \nL 119.691449 42.662217 \nL 121.092755 47.471948 \nL 125.296673 55.717199 \nL 126.697978 61.519414 \nL 128.099284 69.688321 \nL 129.50059 77.017433 \nL 130.901896 85.7971 \nL 135.105814 95.950975 \nL 139.309731 119.312521 \nL 140.711037 126.10722 \nL 144.914955 124.962046 \nL 146.316261 125.80184 \nL 147.717567 125.95453 \nL 149.118872 126.565289 \nL 150.520178 127.481428 \nL 154.724096 128.473912 \nL 156.125402 129.848121 \nL 157.526708 126.030875 \nL 158.928014 121.1448 \nL 160.329319 114.579136 \nL 164.533237 116.869484 \nL 165.934543 119.999626 \nL 167.335849 123.740527 \nL 168.737155 130.229846 \nL 170.138461 135.72668 \nL 174.342378 140.612755 \nL 175.743684 147.560143 \nL 177.14499 156.110775 \nL 178.546296 166.951754 \nL 179.947602 178.708873 \nL 184.151519 188.481023 \nL 185.552825 196.03917 \nL 186.954131 201.688695 \nL 189.756743 206.42208 \nL 193.96066 209.857602 \nL 195.361966 211.613535 \nL 196.763272 215.583471 \nL 198.164578 216.6523 \nL 199.565884 218.331888 \nL 203.769802 217.568439 \nL 205.171107 217.950164 \nL 207.973719 219.553407 \nL 209.375025 221.691065 \nL 214.980249 223.217964 \nL 216.381554 224.439482 \nL 217.78286 224.210448 \nL 219.184166 224.134103 \nL 223.388084 221.080306 \nL 224.78939 218.560923 \nL 226.190696 217.034025 \nL 227.592002 215.736161 \nL 228.993307 216.6523 \nL 233.197225 221.080306 \nL 234.598531 223.065274 \nL 235.999837 225.813691 \nL 237.401143 228.104039 \nL 238.802449 229.172868 \nL 247.210284 230.699766 \nL 248.61159 231.38687 \nL 252.815507 227.798659 \nL 254.216813 224.668517 \nL 255.618119 222.07279 \nL 257.019425 216.34692 \nL 258.420731 213.751193 \nL 262.624648 208.330703 \nL 264.025954 205.582286 \nL 265.42726 206.040356 \nL 266.828566 207.872634 \nL 268.229872 212.224294 \nL 272.43379 219.400717 \nL 273.835095 226.653485 \nL 275.236401 232.990114 \nL 276.637707 240.013847 \nL 278.039013 243.983783 \nL 282.242931 250.473102 \nL 283.644237 256.198971 \nL 286.446848 269.864712 \nL 287.848154 272.994854 \nL 292.052072 276.583066 \nL 293.453378 279.407828 \nL 294.854684 279.942242 \nL 296.255989 278.491689 \nL 297.657295 280.171277 \nL 301.861213 281.621831 \nL 303.262519 282.38528 \nL 304.663825 281.163761 \nL 306.065131 278.797068 \nL 307.466436 278.873413 \nL 311.670354 280.171277 \nL 313.07166 281.621831 \nL 314.472966 283.912178 \nL 321.479495 288.874598 \nL 322.880801 291.241291 \nL 324.282107 292.76819 \nL 325.683413 295.058537 \nL 327.084719 296.890816 \nL 331.288636 297.806955 \nL 332.689942 299.562888 \nL 335.492554 301.318821 \nL 336.89386 302.463995 \nL 341.097777 302.311305 \nL 343.900389 303.303789 \nL 346.703001 299.639233 \nL 350.906919 301.013441 \nL 352.308225 302.158615 \nL 353.70953 302.38765 \nL 355.110836 301.776891 \nL 356.512142 300.708062 \nL 360.71606 300.249992 \nL 362.117366 296.356401 \nL 363.518672 293.073569 \nL 364.919977 290.630532 \nL 366.321283 284.522938 \nL 370.525201 276.8121 \nL 371.926507 269.864712 \nL 373.327813 264.367878 \nL 376.130424 249.327928 \nL 380.334342 242.456884 \nL 381.735648 239.555777 \nL 383.136954 235.738531 \nL 384.53826 232.608389 \nL 385.939566 235.433151 \nL 390.143483 240.395571 \nL 391.544789 243.678403 \nL 392.946095 245.968751 \nL 395.748707 257.42049 \nL 399.952624 263.833463 \nL 401.35393 269.406643 \nL 402.755236 276.430376 \nL 404.156542 284.293903 \nL 405.557848 289.332668 \nL 409.761765 290.477842 \nL 411.163071 293.684329 \nL 412.564377 298.265024 \nL 413.965683 301.624201 \nL 415.366989 303.456479 \nL 419.570907 301.624201 \nL 420.972212 301.471511 \nL 423.774824 298.570404 \nL 425.17613 298.265024 \nL 429.380048 299.639233 \nL 430.781354 299.868268 \nL 432.182659 298.952128 \nL 433.583965 297.73061 \nL 434.985271 298.494059 \nL 439.189189 301.013441 \nL 440.590495 302.38765 \nL 443.393106 306.662966 \nL 444.794412 306.892001 \nL 448.99833 307.80814 \nL 450.399636 308.724279 \nL 453.202248 310.022143 \nL 468.616612 310.861937 \nL 471.419224 314.221113 \nL 474.221836 314.908218 \nL 478.425753 316.664151 \nL 481.228365 319.794293 \nL 484.030977 328.726649 \nL 488.234895 333.383689 \nL 489.6362 336.971901 \nL 491.037506 341.552596 \nL 492.438812 346.896741 \nL 493.840118 351.095712 \nL 498.044036 355.371028 \nL 499.445342 359.646343 \nL 500.846647 363.234555 \nL 503.649259 365.066833 \nL 509.254483 363.234555 \nL 510.655789 362.318416 \nL 512.057094 361.707656 \nL 513.4584 362.85283 \nL 517.662318 364.379729 \nL 519.063624 365.830282 \nL 520.46493 366.670076 \nL 521.866236 368.502355 \nL 523.267541 371.021737 \nL 527.471459 374.838983 \nL 530.274071 379.877748 \nL 531.675377 382.473476 \nL 533.076683 384.000374 \nL 537.2806 385.832652 \nL 538.681906 388.27569 \nL 540.083212 393.23811 \nL 541.484518 397.513426 \nL 542.885824 401.254327 \nL 547.089741 405.529643 \nL 548.491047 411.637237 \nL 551.293659 422.096492 \nL 552.694965 428.204085 \nL 556.898882 433.24285 \nL 561.1028 445.610728 \nL 562.504106 449.04625 \nL 566.708024 452.863496 \nL 568.109329 455.764603 \nL 569.510635 459.352815 \nL 570.911941 461.414128 \nL 572.313247 462.177577 \nL 576.517165 463.399096 \nL 577.918471 465.842133 \nL 579.319776 466.147513 \nL 580.721082 463.857165 \nL 582.122388 462.482956 \nL 587.727612 461.872197 \nL 589.128918 461.108748 \nL 590.530224 460.497988 \nL 591.931529 459.734539 \nL 598.938059 460.268954 \nL 600.339365 459.887229 \nL 601.740671 461.872197 \nL 605.944588 463.246406 \nL 607.345894 462.253922 \nL 608.7472 462.024887 \nL 610.148506 461.337783 \nL 611.549812 462.101232 \nL 617.155035 462.635646 \nL 618.556341 460.803368 \nL 619.957647 458.283986 \nL 621.358953 455.001154 \nL 626.964176 450.038734 \nL 629.766788 446.679557 \nL 631.168094 445.916108 \nL 635.372012 443.77845 \nL 636.773317 439.808514 \nL 638.174623 437.670856 \nL 639.575929 436.372992 \nL 654.990294 434.922439 \nL 656.3916 434.0063 \nL 657.792906 424.08146 \nL 660.595517 402.094121 \nL 664.799435 392.474661 \nL 666.200741 383.924029 \nL 667.602047 377.74009 \nL 669.003353 370.258288 \nL 670.404658 363.998004 \nL 674.608576 360.028068 \nL 676.009882 355.371028 \nL 677.411188 358.959239 \nL 678.812494 362.929175 \nL 680.2138 366.517387 \nL 684.417717 366.975456 \nL 685.819023 366.517387 \nL 687.220329 367.738905 \nL 688.621635 370.487323 \nL 690.022941 369.647528 \nL 694.226858 368.044285 \nL 695.628164 368.27332 \nL 697.02947 367.357181 \nL 698.430776 366.670076 \nL 704.035999 367.357181 \nL 705.437305 367.051801 \nL 706.838611 365.524903 \nL 708.239917 363.539935 \nL 709.641223 364.150694 \nL 713.845141 363.387245 \nL 715.246447 362.242071 \nL 716.647752 362.165726 \nL 723.654282 362.471106 \nL 725.055588 362.165726 \nL 726.456894 363.081865 \nL 727.858199 365.753937 \nL 729.259505 369.342149 \nL 733.463423 370.869047 \nL 734.864729 372.701325 \nL 736.266035 372.854015 \nL 739.068646 369.189459 \nL 743.272564 368.655044 \nL 744.67387 367.586215 \nL 746.075176 365.677592 \nL 747.476482 362.929175 \nL 748.877788 358.806549 \nL 753.081705 354.836613 \nL 754.483011 350.943022 \nL 762.890846 348.881709 \nL 764.292152 348.27095 \nL 765.693458 347.96557 \nL 767.094764 345.980602 \nL 768.49607 342.926805 \nL 772.699987 339.567628 \nL 774.101293 337.277281 \nL 775.502599 335.521347 \nL 776.903905 332.77293 \nL 778.305211 327.9632 \nL 782.509129 324.222298 \nL 783.910434 319.107189 \nL 785.31174 312.77056 \nL 786.713046 307.884485 \nL 788.114352 305.059722 \nL 792.31827 300.937097 \nL 793.719576 297.196195 \nL 795.120881 293.913363 \nL 796.522187 294.295088 \nL 797.923493 296.661781 \nL 802.127411 299.715578 \nL 803.528717 303.761859 \nL 804.930023 309.029659 \nL 806.331328 312.846905 \nL 807.732634 315.289942 \nL 813.337858 320.176017 \nL 814.739164 324.145954 \nL 816.14047 327.65782 \nL 817.541775 329.413753 \nL 821.745693 331.704101 \nL 823.146999 333.154655 \nL 824.548305 334.376173 \nL 825.949611 335.215968 \nL 827.350917 336.666521 \nL 831.554834 338.956869 \nL 834.357446 340.254733 \nL 835.758752 339.949353 \nL 837.160058 340.178388 \nL 841.363975 338.269765 \nL 842.765281 335.826727 \nL 844.166587 334.605208 \nL 845.567893 333.001965 \nL 846.969199 333.231 \nL 852.574422 333.689069 \nL 853.975728 333.231 \nL 855.377034 333.231 \nL 856.77834 332.009481 \nL 860.982258 332.162171 \nL 862.383564 332.92562 \nL 863.784869 332.238516 \nL 865.186175 331.093342 \nL 866.587481 328.039545 \nL 872.192705 324.909403 \nL 873.594011 324.985748 \nL 874.995316 325.291127 \nL 876.396622 327.428785 \nL 880.60054 329.108374 \nL 882.001846 330.787962 \nL 884.804458 332.849275 \nL 886.205763 334.605208 \nL 890.409681 335.979417 \nL 891.810987 337.88804 \nL 893.212293 339.414938 \nL 894.613599 340.560112 \nL 896.014905 340.483767 \nL 900.218822 341.247217 \nL 901.620128 342.239701 \nL 903.021434 344.911773 \nL 904.42274 346.744051 \nL 905.824046 346.820396 \nL 910.027963 344.988118 \nL 912.830575 338.651489 \nL 915.633187 332.009481 \nL 919.837104 328.344924 \nL 921.23841 324.680368 \nL 922.639716 321.550226 \nL 924.041022 320.786777 \nL 925.442328 320.557742 \nL 929.646246 321.931951 \nL 931.047551 323.916919 \nL 933.850163 328.802994 \nL 935.251469 331.780446 \nL 939.455387 336.666521 \nL 940.856693 340.712802 \nL 942.257998 345.904257 \nL 943.659304 348.881709 \nL 945.06061 352.393576 \nL 952.06714 354.989303 \nL 953.468446 357.050616 \nL 954.869751 357.966755 \nL 959.073669 358.19579 \nL 960.474975 355.981787 \nL 961.876281 351.019367 \nL 963.277587 341.476251 \nL 964.678893 327.9632 \nL 968.88281 309.106003 \nL 980.093257 284.828317 \nL 981.494563 270.246437 \nL 982.895869 251.770965 \nL 984.297175 235.967566 \nL 988.501092 218.942648 \nL 991.303704 191.53482 \nL 992.70501 183.518603 \nL 994.106316 176.876594 \nL 998.310234 178.021768 \nL 999.711539 184.434742 \nL 1001.112845 181.15191 \nL 1002.514151 182.907843 \nL 1003.915457 182.984188 \nL 1008.119375 185.885295 \nL 1009.520681 188.633713 \nL 1010.921986 194.283237 \nL 1013.724598 203.291938 \nL 1017.928516 205.964011 \nL 1019.329822 207.03284 \nL 1020.731128 209.399532 \nL 1022.132433 208.178013 \nL 1023.533739 208.101668 \nL 1029.138963 208.407048 \nL 1030.540269 206.193045 \nL 1031.941575 204.971527 \nL 1033.34288 204.895182 \nL 1037.546798 202.681179 \nL 1038.948104 202.452144 \nL 1040.34941 201.76504 \nL 1041.750716 204.208077 \nL 1043.152022 207.567254 \nL 1047.355939 210.773741 \nL 1048.757245 212.835054 \nL 1051.559857 216.041541 \nL 1052.961163 216.49961 \nL 1057.16508 219.248027 \nL 1059.967692 222.07279 \nL 1061.368998 223.217964 \nL 1062.770304 220.316856 \nL 1066.974221 216.575955 \nL 1068.375527 212.606019 \nL 1069.776833 210.010292 \nL 1071.178139 206.1167 \nL 1072.579445 204.742492 \nL 1076.783363 203.368283 \nL 1078.184669 203.062903 \nL 1079.585974 201.61235 \nL 1080.98728 200.467176 \nL 1082.388586 200.772556 \nL 1086.592504 200.314486 \nL 1087.99381 199.780072 \nL 1089.395116 198.329518 \nL 1090.796421 198.253173 \nL 1092.197727 196.268205 \nL 1092.197727 196.268205 \n\" clip-path=\"url(#pd38232b532)\" style=\"fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"line2d_19\">\n <path d=\"M 144.914955 84.550133 \nL 146.316261 83.710338 \nL 147.717567 84.473788 \nL 149.118872 85.568065 \nL 150.520178 87.502136 \nL 154.724096 90.326898 \nL 156.125402 92.006487 \nL 157.526708 93.278902 \nL 158.928014 94.373179 \nL 160.329319 96.052768 \nL 164.533237 99.18291 \nL 165.934543 102.440293 \nL 167.335849 106.461126 \nL 170.138461 116.335069 \nL 174.342378 121.679214 \nL 175.743684 127.074255 \nL 179.947602 139.798409 \nL 184.151519 143.437518 \nL 185.552825 147.280212 \nL 188.355437 153.591392 \nL 189.756743 156.543396 \nL 193.96066 159.64809 \nL 195.361966 163.007266 \nL 196.763272 165.908374 \nL 199.565884 170.539966 \nL 203.769802 174.306315 \nL 205.171107 177.99632 \nL 207.973719 181.660876 \nL 209.375025 185.299984 \nL 213.578943 188.302885 \nL 214.980249 191.22944 \nL 216.381554 194.53772 \nL 219.184166 202.579386 \nL 223.388084 206.040356 \nL 227.592002 212.326088 \nL 228.993307 214.107469 \nL 233.197225 216.754093 \nL 237.401143 222.632652 \nL 238.802449 223.319757 \nL 247.210284 223.370653 \nL 248.61159 222.505411 \nL 252.815507 220.927616 \nL 254.216813 219.986028 \nL 255.618119 220.138718 \nL 258.420731 220.011477 \nL 264.025954 219.298924 \nL 265.42726 219.782442 \nL 266.828566 219.884235 \nL 268.229872 220.724029 \nL 272.43379 221.411134 \nL 273.835095 222.352721 \nL 275.236401 223.905068 \nL 276.637707 225.813691 \nL 278.039013 226.933416 \nL 282.242931 228.205832 \nL 283.644237 229.961765 \nL 285.045542 232.735631 \nL 286.446848 236.145704 \nL 287.848154 238.868673 \nL 292.052072 241.260814 \nL 293.453378 243.57661 \nL 294.854684 245.001715 \nL 296.255989 244.950819 \nL 297.657295 245.968751 \nL 301.861213 246.808545 \nL 303.262519 248.055512 \nL 306.065131 252.178138 \nL 307.466436 254.697521 \nL 311.670354 258.718353 \nL 313.07166 262.561048 \nL 314.472966 265.614845 \nL 321.479495 269.126711 \nL 322.880801 271.798784 \nL 325.683413 277.880929 \nL 327.084719 280.349415 \nL 331.288636 282.156245 \nL 332.689942 283.810385 \nL 335.492554 287.449493 \nL 336.89386 288.772805 \nL 341.097777 289.892531 \nL 342.499083 291.419429 \nL 343.900389 292.564603 \nL 345.301695 292.946328 \nL 346.703001 292.564603 \nL 350.906919 292.539155 \nL 352.308225 293.531639 \nL 353.70953 294.320536 \nL 355.110836 294.905847 \nL 356.512142 295.694745 \nL 360.71606 297.145299 \nL 363.518672 296.381849 \nL 364.919977 295.694745 \nL 366.321283 293.684329 \nL 370.525201 291.877499 \nL 373.327813 289.052737 \nL 376.130424 284.166661 \nL 380.334342 281.672727 \nL 383.136954 277.371963 \nL 384.53826 274.878029 \nL 385.939566 273.198441 \nL 390.143483 272.740371 \nL 391.544789 271.900577 \nL 392.946095 270.908093 \nL 395.748707 269.15216 \nL 399.952624 268.84678 \nL 401.35393 268.439607 \nL 402.755236 268.414159 \nL 404.156542 269.177608 \nL 405.557848 269.762919 \nL 411.163071 269.075815 \nL 413.965683 270.017402 \nL 415.366989 270.068299 \nL 419.570907 269.30485 \nL 420.972212 270.144644 \nL 422.373518 270.755403 \nL 423.774824 271.824232 \nL 425.17613 274.343615 \nL 429.380048 276.837549 \nL 430.781354 279.077 \nL 432.182659 281.061968 \nL 434.985271 286.457009 \nL 439.189189 288.823702 \nL 440.590495 291.088601 \nL 443.393106 296.509091 \nL 444.794412 298.163231 \nL 448.99833 299.308405 \nL 451.800942 302.184064 \nL 453.202248 303.125651 \nL 468.616612 304.270825 \nL 470.017918 305.034274 \nL 471.419224 306.026758 \nL 474.221836 306.713862 \nL 478.425753 307.273725 \nL 479.827059 308.546141 \nL 481.228365 309.46228 \nL 484.030977 312.1598 \nL 488.234895 314.246562 \nL 492.438812 321.982847 \nL 493.840118 324.222298 \nL 498.044036 326.30906 \nL 500.846647 330.584375 \nL 503.649259 334.605208 \nL 507.853177 335.953969 \nL 509.254483 337.557212 \nL 513.4584 342.952253 \nL 517.662318 345.471636 \nL 519.063624 347.889225 \nL 520.46493 349.899641 \nL 521.866236 352.266334 \nL 523.267541 354.938406 \nL 527.471459 357.279651 \nL 528.872765 359.162826 \nL 530.274071 361.249587 \nL 533.076683 365.982972 \nL 537.2806 368.527803 \nL 538.681906 371.250772 \nL 540.083212 374.380914 \nL 542.885824 379.114299 \nL 547.089741 381.328302 \nL 548.491047 384.051271 \nL 549.892353 386.290722 \nL 551.293659 388.759208 \nL 552.694965 391.685763 \nL 556.898882 394.485077 \nL 558.300188 397.131701 \nL 562.504106 407.107438 \nL 566.708024 411.077374 \nL 569.510635 418.635522 \nL 570.911941 421.994698 \nL 572.313247 424.794012 \nL 576.517165 427.491533 \nL 579.319776 433.650023 \nL 582.122388 437.594511 \nL 587.727612 440.088445 \nL 590.530224 445.508935 \nL 591.931529 447.748386 \nL 596.135447 450.165975 \nL 598.938059 454.466739 \nL 601.740671 457.113363 \nL 605.944588 458.258537 \nL 610.148506 460.396195 \nL 611.549812 461.0833 \nL 615.753729 461.592266 \nL 617.155035 462.075784 \nL 618.556341 462.304818 \nL 619.957647 461.439576 \nL 621.358953 460.243505 \nL 625.56287 458.996538 \nL 629.766788 456.171776 \nL 631.168094 455.917293 \nL 635.372012 455.459223 \nL 638.174623 452.914393 \nL 639.575929 451.514736 \nL 654.990294 450.598597 \nL 656.3916 449.504319 \nL 659.194211 441.131826 \nL 660.595517 436.70382 \nL 664.799435 433.497334 \nL 670.404658 419.551661 \nL 674.608576 416.650554 \nL 676.009882 413.54586 \nL 677.411188 411.026477 \nL 680.2138 405.097022 \nL 684.417717 401.788742 \nL 685.819023 398.073289 \nL 687.220329 395.095837 \nL 688.621635 392.805489 \nL 690.022941 390.006175 \nL 694.226858 387.664931 \nL 695.628164 385.883549 \nL 699.832082 378.478091 \nL 704.035999 375.602433 \nL 705.437305 372.497739 \nL 709.641223 365.932075 \nL 713.845141 363.819866 \nL 715.246447 361.962139 \nL 716.647752 362.827382 \nL 723.654282 364.023452 \nL 725.055588 365.168626 \nL 727.858199 366.441042 \nL 729.259505 367.535319 \nL 733.463423 368.298768 \nL 734.864729 368.833183 \nL 736.266035 368.095182 \nL 739.068646 366.237455 \nL 743.272564 365.932075 \nL 744.67387 365.524903 \nL 747.476482 365.244971 \nL 748.877788 364.557867 \nL 754.483011 362.598347 \nL 762.890846 361.707656 \nL 764.292152 360.486138 \nL 767.094764 359.035584 \nL 768.49607 357.559582 \nL 772.699987 356.109029 \nL 775.502599 354.556682 \nL 776.903905 352.826197 \nL 778.305211 350.535849 \nL 782.509129 348.652674 \nL 783.910434 346.107843 \nL 785.31174 343.30853 \nL 788.114352 338.524248 \nL 792.31827 335.394106 \nL 795.120881 329.413753 \nL 797.923493 325.189334 \nL 802.127411 324.273195 \nL 804.930023 323.255263 \nL 807.732634 321.092157 \nL 813.337858 320.226914 \nL 814.739164 319.53981 \nL 816.14047 319.030844 \nL 817.541775 318.827257 \nL 821.745693 318.776361 \nL 823.146999 319.030844 \nL 824.548305 319.08174 \nL 825.949611 319.005395 \nL 827.350917 319.132637 \nL 831.554834 319.768845 \nL 832.95614 320.226914 \nL 834.357446 320.532294 \nL 835.758752 320.506845 \nL 837.160058 321.295743 \nL 841.363975 322.211882 \nL 842.765281 322.898986 \nL 845.567893 325.749197 \nL 846.969199 327.581475 \nL 851.173117 329.286512 \nL 852.574422 331.144238 \nL 853.975728 332.543895 \nL 855.377034 333.612724 \nL 856.77834 333.867207 \nL 860.982258 334.045345 \nL 862.383564 333.969 \nL 863.784869 333.739966 \nL 865.186175 333.103758 \nL 866.587481 332.645688 \nL 874.995316 332.823827 \nL 876.396622 333.205551 \nL 882.001846 333.180103 \nL 883.403152 332.874723 \nL 884.804458 332.31486 \nL 886.205763 331.958584 \nL 890.409681 331.780446 \nL 896.014905 333.307344 \nL 900.218822 334.172587 \nL 901.620128 335.317761 \nL 903.021434 336.310245 \nL 904.42274 336.895556 \nL 905.824046 336.488383 \nL 910.027963 335.572244 \nL 911.429269 334.88514 \nL 915.633187 333.307344 \nL 919.837104 332.900172 \nL 921.23841 332.569344 \nL 922.639716 332.747482 \nL 924.041022 333.460034 \nL 925.442328 333.994449 \nL 929.646246 334.299828 \nL 932.448857 334.834243 \nL 933.850163 334.88514 \nL 935.251469 334.757898 \nL 939.455387 335.419554 \nL 940.856693 335.877624 \nL 942.257998 337.455419 \nL 943.659304 338.804179 \nL 945.06061 339.923905 \nL 952.06714 340.636457 \nL 953.468446 340.941837 \nL 954.869751 341.018182 \nL 959.073669 340.763699 \nL 960.474975 339.923905 \nL 961.876281 338.676937 \nL 963.277587 335.62314 \nL 964.678893 331.805894 \nL 968.88281 326.258163 \nL 980.093257 319.259878 \nL 981.494563 315.722564 \nL 982.895869 310.912833 \nL 984.297175 306.790207 \nL 988.501092 301.980477 \nL 991.303704 293.073569 \nL 992.70501 288.569219 \nL 994.106316 283.58135 \nL 998.310234 278.669827 \nL 1001.112845 268.795883 \nL 1003.915457 258.972836 \nL 1008.119375 254.341244 \nL 1012.323292 241.209917 \nL 1013.724598 236.043911 \nL 1017.928516 231.030594 \nL 1023.533739 209.017808 \nL 1027.737657 204.411664 \nL 1030.540269 197.337034 \nL 1031.941575 195.708342 \nL 1033.34288 195.021238 \nL 1037.546798 195.555653 \nL 1038.948104 197.973242 \nL 1040.34941 197.438827 \nL 1043.152022 199.551037 \nL 1047.355939 201.688695 \nL 1052.961163 208.22891 \nL 1057.16508 209.297739 \nL 1058.566386 210.061188 \nL 1059.967692 211.079121 \nL 1061.368998 211.868018 \nL 1062.770304 211.99526 \nL 1066.974221 211.918915 \nL 1068.375527 211.282707 \nL 1069.776833 210.239326 \nL 1071.178139 209.043256 \nL 1072.579445 208.712428 \nL 1076.783363 208.432496 \nL 1078.184669 208.737876 \nL 1079.585974 208.483393 \nL 1080.98728 209.297739 \nL 1082.388586 209.552222 \nL 1086.592504 209.221394 \nL 1092.197727 205.836769 \nL 1092.197727 205.836769 \n\" clip-path=\"url(#pd38232b532)\" style=\"fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 26.925 496.8 \nL 26.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 1142.925 496.8 \nL 1142.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 26.925 496.8 \nL 1142.925 496.8 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 26.925 7.2 \nL 1142.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"legend_1\">\n <g id=\"patch_7\">\n <path d=\"M 1040.170312 73.9125 \nL 1135.925 73.9125 \nQ 1137.925 73.9125 1137.925 71.9125 \nL 1137.925 14.2 \nQ 1137.925 12.2 1135.925 12.2 \nL 1040.170312 12.2 \nQ 1038.170312 12.2 1038.170312 14.2 \nL 1038.170312 71.9125 \nQ 1038.170312 73.9125 1040.170312 73.9125 \nz\n\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n </g>\n <g id=\"line2d_20\">\n <path d=\"M 1042.170312 20.298437 \nL 1052.170312 20.298437 \nL 1062.170312 20.298437 \n\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_18\">\n <!-- price -->\n <g transform=\"translate(1070.170312 23.798437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-70\" d=\"M 1159 525 \nL 1159 -1331 \nL 581 -1331 \nL 581 3500 \nL 1159 3500 \nL 1159 2969 \nQ 1341 3281 1617 3432 \nQ 1894 3584 2278 3584 \nQ 2916 3584 3314 3078 \nQ 3713 2572 3713 1747 \nQ 3713 922 3314 415 \nQ 2916 -91 2278 -91 \nQ 1894 -91 1617 61 \nQ 1341 213 1159 525 \nz\nM 3116 1747 \nQ 3116 2381 2855 2742 \nQ 2594 3103 2138 3103 \nQ 1681 3103 1420 2742 \nQ 1159 2381 1159 1747 \nQ 1159 1113 1420 752 \nQ 1681 391 2138 391 \nQ 2594 391 2855 752 \nQ 3116 1113 3116 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \nQ 2534 3019 2420 3045 \nQ 2306 3072 2169 3072 \nQ 1681 3072 1420 2755 \nQ 1159 2438 1159 1844 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1341 3275 1631 3429 \nQ 1922 3584 2338 3584 \nQ 2397 3584 2469 3576 \nQ 2541 3569 2628 3553 \nL 2631 2963 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-69\" d=\"M 603 3500 \nL 1178 3500 \nL 1178 0 \nL 603 0 \nL 603 3500 \nz\nM 603 4863 \nL 1178 4863 \nL 1178 4134 \nL 603 4134 \nL 603 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-63\" d=\"M 3122 3366 \nL 3122 2828 \nQ 2878 2963 2633 3030 \nQ 2388 3097 2138 3097 \nQ 1578 3097 1268 2742 \nQ 959 2388 959 1747 \nQ 959 1106 1268 751 \nQ 1578 397 2138 397 \nQ 2388 397 2633 464 \nQ 2878 531 3122 666 \nL 3122 134 \nQ 2881 22 2623 -34 \nQ 2366 -91 2075 -91 \nQ 1284 -91 818 406 \nQ 353 903 353 1747 \nQ 353 2603 823 3093 \nQ 1294 3584 2113 3584 \nQ 2378 3584 2631 3529 \nQ 2884 3475 3122 3366 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-70\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(104.589844 0)\"/>\n <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(132.373047 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(187.353516 0)\"/>\n </g>\n </g>\n <g id=\"line2d_21\">\n <path d=\"M 1042.170312 34.976562 \nL 1052.170312 34.976562 \nL 1062.170312 34.976562 \n\" style=\"fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_19\">\n <!-- m10 -->\n <g transform=\"translate(1070.170312 38.476562) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 \nQ 3544 3216 3844 3400 \nQ 4144 3584 4550 3584 \nQ 5097 3584 5394 3201 \nQ 5691 2819 5691 2113 \nL 5691 0 \nL 5113 0 \nL 5113 2094 \nQ 5113 2597 4934 2840 \nQ 4756 3084 4391 3084 \nQ 3944 3084 3684 2787 \nQ 3425 2491 3425 1978 \nL 3425 0 \nL 2847 0 \nL 2847 2094 \nQ 2847 2600 2669 2842 \nQ 2491 3084 2119 3084 \nQ 1678 3084 1418 2786 \nQ 1159 2488 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1356 3278 1631 3431 \nQ 1906 3584 2284 3584 \nQ 2666 3584 2933 3390 \nQ 3200 3197 3328 2828 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n <g id=\"line2d_22\">\n <path d=\"M 1042.170312 49.654687 \nL 1052.170312 49.654687 \nL 1062.170312 49.654687 \n\" style=\"fill: none; stroke: #2ca02c; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_20\">\n <!-- m30 -->\n <g transform=\"translate(1070.170312 53.154687) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n <g id=\"line2d_23\">\n <path d=\"M 1042.170312 64.332812 \nL 1052.170312 64.332812 \nL 1062.170312 64.332812 \n\" style=\"fill: none; stroke: #d62728; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_21\">\n <!-- check (right) -->\n <g transform=\"translate(1070.170312 67.832812) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-68\" d=\"M 3513 2113 \nL 3513 0 \nL 2938 0 \nL 2938 2094 \nQ 2938 2591 2744 2837 \nQ 2550 3084 2163 3084 \nQ 1697 3084 1428 2787 \nQ 1159 2491 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 4863 \nL 1159 4863 \nL 1159 2956 \nQ 1366 3272 1645 3428 \nQ 1925 3584 2291 3584 \nQ 2894 3584 3203 3211 \nQ 3513 2838 3513 2113 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-6b\" d=\"M 581 4863 \nL 1159 4863 \nL 1159 1991 \nL 2875 3500 \nL 3609 3500 \nL 1753 1863 \nL 3688 0 \nL 2938 0 \nL 1159 1709 \nL 1159 0 \nL 581 0 \nL 581 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-28\" d=\"M 1984 4856 \nQ 1566 4138 1362 3434 \nQ 1159 2731 1159 2009 \nQ 1159 1288 1364 580 \nQ 1569 -128 1984 -844 \nL 1484 -844 \nQ 1016 -109 783 600 \nQ 550 1309 550 2009 \nQ 550 2706 781 3412 \nQ 1013 4119 1484 4856 \nL 1984 4856 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-67\" d=\"M 2906 1791 \nQ 2906 2416 2648 2759 \nQ 2391 3103 1925 3103 \nQ 1463 3103 1205 2759 \nQ 947 2416 947 1791 \nQ 947 1169 1205 825 \nQ 1463 481 1925 481 \nQ 2391 481 2648 825 \nQ 2906 1169 2906 1791 \nz\nM 3481 434 \nQ 3481 -459 3084 -895 \nQ 2688 -1331 1869 -1331 \nQ 1566 -1331 1297 -1286 \nQ 1028 -1241 775 -1147 \nL 775 -588 \nQ 1028 -725 1275 -790 \nQ 1522 -856 1778 -856 \nQ 2344 -856 2625 -561 \nQ 2906 -266 2906 331 \nL 2906 616 \nQ 2728 306 2450 153 \nQ 2172 0 1784 0 \nQ 1141 0 747 490 \nQ 353 981 353 1791 \nQ 353 2603 747 3093 \nQ 1141 3584 1784 3584 \nQ 2172 3584 2450 3431 \nQ 2728 3278 2906 2969 \nL 2906 3500 \nL 3481 3500 \nL 3481 434 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-29\" d=\"M 513 4856 \nL 1013 4856 \nQ 1481 4119 1714 3412 \nQ 1947 2706 1947 2009 \nQ 1947 1309 1714 600 \nQ 1481 -109 1013 -844 \nL 513 -844 \nQ 928 -128 1133 580 \nQ 1338 1288 1338 2009 \nQ 1338 2731 1133 3434 \nQ 928 4138 513 4856 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-63\"/>\n <use xlink:href=\"#DejaVuSans-68\" transform=\"translate(54.980469 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(118.359375 0)\"/>\n <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(179.882812 0)\"/>\n <use xlink:href=\"#DejaVuSans-6b\" transform=\"translate(234.863281 0)\"/>\n <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(292.773438 0)\"/>\n <use xlink:href=\"#DejaVuSans-28\" transform=\"translate(324.560547 0)\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(363.574219 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(404.6875 0)\"/>\n <use xlink:href=\"#DejaVuSans-67\" transform=\"translate(432.470703 0)\"/>\n <use xlink:href=\"#DejaVuSans-68\" transform=\"translate(495.947266 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(559.326172 0)\"/>\n <use xlink:href=\"#DejaVuSans-29\" transform=\"translate(598.535156 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"axes_2\">\n <g id=\"matplotlib.axis_3\">\n <g id=\"ytick_8\">\n <g id=\"line2d_24\">\n <defs>\n <path id=\"m87aa486859\" d=\"M 0 0 \nL 3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"474.545455\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_22\">\n <!-- 1.00 -->\n <g transform=\"translate(1149.925 478.344673) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-2212\" d=\"M 678 2272 \nL 4684 2272 \nL 4684 1741 \nL 678 1741 \nL 678 2272 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2e\" d=\"M 684 794 \nL 1344 794 \nL 1344 0 \nL 684 0 \nL 684 794 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-2212\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(83.789062 0)\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(147.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(179.199219 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(242.822266 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_9\">\n <g id=\"line2d_25\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"418.909091\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_23\">\n <!-- 0.75 -->\n <g transform=\"translate(1149.925 422.70831) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-2212\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(83.789062 0)\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(147.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(179.199219 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(242.822266 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_10\">\n <g id=\"line2d_26\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"363.272727\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_24\">\n <!-- 0.50 -->\n <g transform=\"translate(1149.925 367.071946) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-2212\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(83.789062 0)\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(147.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(179.199219 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(242.822266 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_11\">\n <g id=\"line2d_27\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"307.636364\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_25\">\n <!-- 0.25 -->\n <g transform=\"translate(1149.925 311.435582) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-2212\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(83.789062 0)\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(147.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(179.199219 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(242.822266 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_12\">\n <g id=\"line2d_28\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"252\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_26\">\n <!-- 0.00 -->\n <g transform=\"translate(1149.925 255.799219) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(95.410156 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_13\">\n <g id=\"line2d_29\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"196.363636\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_27\">\n <!-- 0.25 -->\n <g transform=\"translate(1149.925 200.162855) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(95.410156 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(159.033203 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_14\">\n <g id=\"line2d_30\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"140.727273\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_28\">\n <!-- 0.50 -->\n <g transform=\"translate(1149.925 144.526491) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_15\">\n <g id=\"line2d_31\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"85.090909\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_29\">\n <!-- 0.75 -->\n <g transform=\"translate(1149.925 88.890128) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-30\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(95.410156 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(159.033203 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_16\">\n <g id=\"line2d_32\">\n <g>\n <use xlink:href=\"#m87aa486859\" x=\"1142.925\" y=\"29.454545\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_30\">\n <!-- 1.00 -->\n <g transform=\"translate(1149.925 33.253764) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(95.410156 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_33\">\n <path d=\"M 77.652273 474.545455 \nL 255.618119 474.545455 \nL 257.019425 29.454545 \nL 272.43379 29.454545 \nL 273.835095 474.545455 \nL 360.71606 474.545455 \nL 362.117366 29.454545 \nL 399.952624 29.454545 \nL 401.35393 474.545455 \nL 617.155035 474.545455 \nL 618.556341 29.454545 \nL 713.845141 29.454545 \nL 715.246447 474.545455 \nL 716.647752 29.454545 \nL 727.858199 29.454545 \nL 729.259505 474.545455 \nL 746.075176 474.545455 \nL 747.476482 29.454545 \nL 813.337858 29.454545 \nL 814.739164 474.545455 \nL 853.975728 474.545455 \nL 855.377034 29.454545 \nL 883.403152 29.454545 \nL 884.804458 474.545455 \nL 914.231881 474.545455 \nL 915.633187 29.454545 \nL 935.251469 29.454545 \nL 939.455387 474.545455 \nL 963.277587 474.545455 \nL 964.678893 29.454545 \nL 1023.533739 29.454545 \nL 1027.737657 474.545455 \nL 1068.375527 474.545455 \nL 1069.776833 29.454545 \nL 1092.197727 29.454545 \nL 1092.197727 29.454545 \n\" clip-path=\"url(#pd38232b532)\" style=\"fill: none; stroke: #d62728; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_8\">\n <path d=\"M 26.925 496.8 \nL 26.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_9\">\n <path d=\"M 1142.925 496.8 \nL 1142.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_10\">\n <path d=\"M 26.925 496.8 \nL 1142.925 496.8 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_11\">\n <path d=\"M 26.925 7.2 \nL 1142.925 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"pd38232b532\">\n <rect x=\"26.925\" y=\"7.2\" width=\"1116\" height=\"489.6\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 197
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:43:43.807150Z",
"start_time": "2024-12-29T05:43:43.696734Z"
}
},
"cell_type": "code",
"source": [
"# 默认第一列是第一坐标轴\n",
"df[['m10', 'm30']].plot(figsize=(10, 6), secondary_y='m30')"
],
"id": "3c6ee8f302e52d71",
"outputs": [
{
"data": {
"text/plain": [
"<Axes: xlabel='date'>"
]
},
"execution_count": 198,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 1000x600 with 2 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"618.487359pt\" height=\"361.347678pt\" viewBox=\"0 0 618.487359 361.347678\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:43:43.784139</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 361.347678 \nL 618.487359 361.347678 \nL 618.487359 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 33.562359 304.196644 \nL 591.562359 304.196644 \nL 591.562359 10.436644 \nL 33.562359 10.436644 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m56144b7404\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"48.22404\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 2023-01 -->\n <g transform=\"translate(10.999219 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-2d\" d=\"M 313 2009 \nL 1997 2009 \nL 1997 1497 \nL 313 1497 \nL 313 2009 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"112.435777\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 2023-04 -->\n <g transform=\"translate(75.210956 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-34\" d=\"M 2419 4116 \nL 825 1625 \nL 2419 1625 \nL 2419 4116 \nz\nM 2253 4666 \nL 3047 4666 \nL 3047 1625 \nL 3713 1625 \nL 3713 1100 \nL 3047 1100 \nL 3047 0 \nL 2419 0 \nL 2419 1100 \nL 313 1100 \nL 313 1709 \nL 2253 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"177.360979\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 2023-07 -->\n <g transform=\"translate(140.136158 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-37\" d=\"M 525 4666 \nL 3525 4666 \nL 3525 4397 \nL 1831 0 \nL 1172 0 \nL 2766 4134 \nL 525 4134 \nL 525 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"242.999644\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 2023-10 -->\n <g transform=\"translate(205.774823 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"308.638309\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 2024-01 -->\n <g transform=\"translate(271.413488 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"373.56351\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 2024-04 -->\n <g transform=\"translate(336.338689 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"438.488712\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 2024-07 -->\n <g transform=\"translate(401.263891 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-37\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"504.127377\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 2024-10 -->\n <g transform=\"translate(466.902556 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#m56144b7404\" x=\"569.766042\" y=\"304.196644\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 2025-01 -->\n <g transform=\"translate(532.541221 338.668491) rotate(-30) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-35\" d=\"M 691 4666 \nL 3169 4666 \nL 3169 4134 \nL 1269 4134 \nL 1269 2991 \nQ 1406 3038 1543 3061 \nQ 1681 3084 1819 3084 \nQ 2600 3084 3056 2656 \nQ 3513 2228 3513 1497 \nQ 3513 744 3044 326 \nQ 2575 -91 1722 -91 \nQ 1428 -91 1123 -41 \nQ 819 9 494 109 \nL 494 744 \nQ 775 591 1075 516 \nQ 1375 441 1709 441 \nQ 2250 441 2565 725 \nQ 2881 1009 2881 1497 \nQ 2881 1984 2565 2268 \nQ 2250 2553 1709 2553 \nQ 1456 2553 1204 2497 \nQ 953 2441 691 2322 \nL 691 4666 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-32\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(127.246094 0)\"/>\n <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(190.869141 0)\"/>\n <use xlink:href=\"#DejaVuSans-2d\" transform=\"translate(254.492188 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(290.576172 0)\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(354.199219 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- date -->\n <g transform=\"translate(301.287359 352.06799) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-64\" d=\"M 2906 2969 \nL 2906 4863 \nL 3481 4863 \nL 3481 0 \nL 2906 0 \nL 2906 525 \nQ 2725 213 2448 61 \nQ 2172 -91 1784 -91 \nQ 1150 -91 751 415 \nQ 353 922 353 1747 \nQ 353 2572 751 3078 \nQ 1150 3584 1784 3584 \nQ 2172 3584 2448 3432 \nQ 2725 3281 2906 2969 \nz\nM 947 1747 \nQ 947 1113 1208 752 \nQ 1469 391 1925 391 \nQ 2381 391 2643 752 \nQ 2906 1113 2906 1747 \nQ 2906 2381 2643 2742 \nQ 2381 3103 1925 3103 \nQ 1469 3103 1208 2742 \nQ 947 2381 947 1747 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-61\" d=\"M 2194 1759 \nQ 1497 1759 1228 1600 \nQ 959 1441 959 1056 \nQ 959 750 1161 570 \nQ 1363 391 1709 391 \nQ 2188 391 2477 730 \nQ 2766 1069 2766 1631 \nL 2766 1759 \nL 2194 1759 \nz\nM 3341 1997 \nL 3341 0 \nL 2766 0 \nL 2766 531 \nQ 2569 213 2275 61 \nQ 1981 -91 1556 -91 \nQ 1019 -91 701 211 \nQ 384 513 384 1019 \nQ 384 1609 779 1909 \nQ 1175 2209 1959 2209 \nL 2766 2209 \nL 2766 2266 \nQ 2766 2663 2505 2880 \nQ 2244 3097 1772 3097 \nQ 1472 3097 1187 3025 \nQ 903 2953 641 2809 \nL 641 3341 \nQ 956 3463 1253 3523 \nQ 1550 3584 1831 3584 \nQ 2591 3584 2966 3190 \nQ 3341 2797 3341 1997 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-74\" d=\"M 1172 4494 \nL 1172 3500 \nL 2356 3500 \nL 2356 3053 \nL 1172 3053 \nL 1172 1153 \nQ 1172 725 1289 603 \nQ 1406 481 1766 481 \nL 2356 481 \nL 2356 0 \nL 1766 0 \nQ 1100 0 847 248 \nQ 594 497 594 1153 \nL 594 3053 \nL 172 3053 \nL 172 3500 \nL 594 3500 \nL 594 4494 \nL 1172 4494 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-65\" d=\"M 3597 1894 \nL 3597 1613 \nL 953 1613 \nQ 991 1019 1311 708 \nQ 1631 397 2203 397 \nQ 2534 397 2845 478 \nQ 3156 559 3463 722 \nL 3463 178 \nQ 3153 47 2828 -22 \nQ 2503 -91 2169 -91 \nQ 1331 -91 842 396 \nQ 353 884 353 1716 \nQ 353 2575 817 3079 \nQ 1281 3584 2069 3584 \nQ 2775 3584 3186 3129 \nQ 3597 2675 3597 1894 \nz\nM 3022 2063 \nQ 3016 2534 2758 2815 \nQ 2500 3097 2075 3097 \nQ 1594 3097 1305 2825 \nQ 1016 2553 972 2059 \nL 3022 2063 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-64\"/>\n <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(63.476562 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(124.755859 0)\"/>\n <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(163.964844 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_10\">\n <defs>\n <path id=\"mb2fc2bdf33\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"299.498908\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 8 -->\n <g transform=\"translate(20.199859 303.298127) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"251.415626\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 9 -->\n <g transform=\"translate(20.199859 255.214845) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"203.332345\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 10 -->\n <g transform=\"translate(13.837359 207.131564) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"155.249063\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 11 -->\n <g transform=\"translate(13.837359 159.048282) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"107.165782\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 12 -->\n <g transform=\"translate(13.837359 110.965001) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_15\">\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"59.0825\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 13 -->\n <g transform=\"translate(13.837359 62.881719) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_16\">\n <g>\n <use xlink:href=\"#mb2fc2bdf33\" x=\"33.562359\" y=\"10.999219\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- 14 -->\n <g transform=\"translate(13.837359 14.798437) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-34\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_17\">\n <path d=\"M 58.925996 43.215017 \nL 59.63946 37.445024 \nL 60.352923 33.646444 \nL 61.066387 30.713364 \nL 61.779851 28.261117 \nL 68.914488 26.578202 \nL 69.627952 23.933621 \nL 70.341416 23.789372 \nL 71.05488 24.125955 \nL 71.768343 27.155201 \nL 73.908735 32.348196 \nL 74.622198 36.002525 \nL 76.76259 51.293009 \nL 78.902981 57.688085 \nL 81.043372 72.401569 \nL 81.756836 76.680981 \nL 83.897227 75.959732 \nL 84.610691 76.488648 \nL 85.324155 76.584815 \nL 86.037618 76.969481 \nL 86.751082 77.54648 \nL 88.891473 78.171563 \nL 89.604937 79.037062 \nL 90.318401 76.632898 \nL 91.031865 73.555568 \nL 91.745328 69.420406 \nL 93.88572 70.862904 \nL 94.599183 72.834319 \nL 95.312647 75.1904 \nL 96.739575 82.739475 \nL 98.879966 85.816805 \nL 99.59343 90.192383 \nL 100.306893 95.577711 \nL 101.733821 109.810362 \nL 103.874212 115.965022 \nL 104.587676 120.725267 \nL 105.30114 124.28343 \nL 106.728067 127.264593 \nL 108.868458 129.428341 \nL 109.581922 130.534257 \nL 110.295386 133.034587 \nL 111.00885 133.707753 \nL 111.722313 134.765585 \nL 113.862705 134.284753 \nL 114.576168 134.525169 \nL 116.003096 135.534918 \nL 116.71656 136.88125 \nL 119.570415 137.842915 \nL 120.283878 138.612248 \nL 121.710806 138.419915 \nL 123.851197 136.496583 \nL 124.564661 134.909835 \nL 125.991588 133.130754 \nL 126.705052 133.707753 \nL 128.845443 136.496583 \nL 129.558907 137.746749 \nL 130.985835 140.920245 \nL 131.699298 141.593411 \nL 135.980081 142.555077 \nL 136.693545 142.987826 \nL 138.833936 140.727912 \nL 139.5474 138.756498 \nL 140.260864 137.121666 \nL 140.974327 133.51542 \nL 141.687791 131.880588 \nL 143.828182 128.466675 \nL 144.541646 126.735677 \nL 145.25511 127.024177 \nL 145.968574 128.178176 \nL 146.682037 130.918923 \nL 148.822429 135.438751 \nL 150.249356 143.997575 \nL 150.96282 148.421237 \nL 151.676284 150.921568 \nL 153.816675 155.008647 \nL 154.530139 158.614893 \nL 155.957066 167.2218 \nL 156.67053 169.193215 \nL 158.810921 171.453129 \nL 159.524385 173.232211 \nL 160.237849 173.568794 \nL 160.951312 172.655211 \nL 161.664776 173.713043 \nL 163.805167 174.626626 \nL 164.518631 175.107459 \nL 165.232095 174.338126 \nL 165.945559 172.847544 \nL 166.659022 172.895628 \nL 168.799414 173.713043 \nL 169.512877 174.626626 \nL 170.226341 176.069124 \nL 173.79366 179.194537 \nL 174.507124 180.685119 \nL 175.220587 181.646785 \nL 175.934051 183.089283 \nL 176.647515 184.243282 \nL 178.787906 184.820281 \nL 179.50137 185.926197 \nL 180.928297 187.032112 \nL 181.641761 187.753362 \nL 183.782152 187.657195 \nL 185.20908 188.282278 \nL 186.636007 185.97428 \nL 188.776399 186.839779 \nL 189.489862 187.561028 \nL 190.203326 187.705278 \nL 190.91679 187.320612 \nL 191.630254 186.647446 \nL 193.770645 186.358946 \nL 195.197572 181.839118 \nL 195.911036 180.300453 \nL 196.6245 176.45379 \nL 198.764891 171.597379 \nL 199.478355 167.2218 \nL 200.191819 163.759804 \nL 201.618746 154.287398 \nL 203.759137 149.959902 \nL 204.472601 148.132738 \nL 205.186065 145.728574 \nL 205.899529 143.757159 \nL 206.612992 145.53624 \nL 208.753384 148.661654 \nL 209.466847 150.729235 \nL 210.180311 152.171733 \nL 211.607239 159.384225 \nL 213.74763 163.423221 \nL 214.461094 166.933301 \nL 215.888021 176.309541 \nL 216.601485 179.483037 \nL 218.741876 180.204286 \nL 219.45534 182.223784 \nL 220.168804 185.108781 \nL 220.882267 187.224445 \nL 221.595731 188.378444 \nL 223.736122 187.224445 \nL 224.449586 187.128279 \nL 225.876514 185.301114 \nL 226.589977 185.108781 \nL 228.730369 185.97428 \nL 229.443832 186.11853 \nL 230.157296 185.541531 \nL 230.87076 184.772198 \nL 231.584224 185.253031 \nL 233.724615 186.839779 \nL 234.438079 187.705278 \nL 235.865006 190.397942 \nL 236.57847 190.542192 \nL 238.718861 191.119191 \nL 239.432325 191.696191 \nL 240.859252 192.513606 \nL 248.707354 193.042523 \nL 250.134281 195.158187 \nL 251.561209 195.590936 \nL 253.7016 196.696852 \nL 255.128527 198.668266 \nL 256.555455 204.29401 \nL 258.695846 207.227091 \nL 259.40931 209.487005 \nL 260.122774 212.372002 \nL 260.836237 215.737831 \nL 261.549701 218.382412 \nL 263.690093 221.075076 \nL 265.11702 226.027654 \nL 266.543948 227.181652 \nL 269.397803 226.027654 \nL 270.111266 225.450654 \nL 270.82473 225.065988 \nL 271.538194 225.787237 \nL 273.678585 226.748903 \nL 274.392049 227.662485 \nL 275.105513 228.191401 \nL 275.818976 229.3454 \nL 276.53244 230.932148 \nL 278.672831 233.336312 \nL 280.813223 238.144641 \nL 281.526686 239.106306 \nL 283.667078 240.260305 \nL 284.380541 241.79897 \nL 285.807469 247.617047 \nL 286.520933 249.973128 \nL 288.661324 252.665792 \nL 289.374788 256.512454 \nL 290.801715 263.099864 \nL 291.515179 266.946526 \nL 293.65557 270.120023 \nL 296.509425 280.073262 \nL 298.649816 282.477426 \nL 299.36328 284.304591 \nL 300.076744 286.564505 \nL 300.790208 287.862754 \nL 301.503671 288.343586 \nL 303.644063 289.112919 \nL 304.357526 290.651584 \nL 305.07099 290.843917 \nL 305.784454 289.401419 \nL 306.497918 288.53592 \nL 309.351773 288.151253 \nL 311.492164 286.804921 \nL 315.059483 287.141504 \nL 315.772946 286.901088 \nL 316.48641 288.151253 \nL 318.626801 289.016752 \nL 319.340265 288.39167 \nL 320.053729 288.24742 \nL 320.767193 287.81467 \nL 321.480656 288.295503 \nL 324.334511 288.632086 \nL 325.047975 287.478087 \nL 325.761439 285.891339 \nL 326.474903 283.823758 \nL 329.328758 280.698345 \nL 330.755685 278.58268 \nL 333.60954 276.755516 \nL 334.323004 274.255185 \nL 335.036468 272.908853 \nL 335.749931 272.091437 \nL 343.598033 271.177855 \nL 344.311496 270.600856 \nL 345.738424 257.426036 \nL 346.451888 250.502044 \nL 348.592279 244.44355 \nL 349.305743 239.058223 \nL 350.019206 235.163477 \nL 350.73267 230.451316 \nL 351.446134 226.508486 \nL 353.586525 224.008156 \nL 354.299989 221.075076 \nL 356.44038 228.095235 \nL 358.580771 228.383734 \nL 359.294235 228.095235 \nL 360.007699 228.864567 \nL 360.721163 230.595565 \nL 361.434626 230.066649 \nL 363.575018 229.0569 \nL 364.288481 229.20115 \nL 365.001945 228.624151 \nL 365.715409 228.191401 \nL 368.569264 228.624151 \nL 369.282728 228.431818 \nL 369.996191 227.470152 \nL 370.709655 226.219987 \nL 371.423119 226.604653 \nL 373.56351 226.12382 \nL 374.276974 225.402571 \nL 374.990438 225.354488 \nL 378.557756 225.546821 \nL 379.27122 225.354488 \nL 379.984684 225.931487 \nL 380.698148 227.614402 \nL 381.411611 229.874316 \nL 383.552003 230.835982 \nL 384.265466 231.989981 \nL 384.97893 232.086147 \nL 386.405858 229.77815 \nL 388.546249 229.441567 \nL 389.259713 228.768401 \nL 389.973177 227.566319 \nL 390.68664 225.83532 \nL 391.400104 223.238823 \nL 393.540495 220.738493 \nL 394.253959 218.286245 \nL 398.534742 216.987997 \nL 399.248205 216.60333 \nL 399.961669 216.410997 \nL 400.675133 215.160832 \nL 401.388597 213.237501 \nL 403.528988 211.121836 \nL 404.242452 209.679338 \nL 404.955915 208.573422 \nL 405.669379 206.842424 \nL 406.382843 203.813178 \nL 408.523234 201.457097 \nL 409.236698 198.235517 \nL 409.950162 194.244605 \nL 410.663625 191.167275 \nL 411.377089 189.388193 \nL 413.51748 186.791696 \nL 414.944408 182.368034 \nL 415.657872 182.60845 \nL 416.371335 184.099032 \nL 418.511727 186.022363 \nL 419.22519 188.570777 \nL 419.938654 191.888524 \nL 420.652118 194.292688 \nL 421.365582 195.831353 \nL 424.219437 198.908683 \nL 425.646364 203.620844 \nL 426.359828 204.72676 \nL 428.500219 206.169258 \nL 429.927147 207.852173 \nL 430.64061 208.381089 \nL 431.354074 209.294672 \nL 434.207929 211.121836 \nL 434.921393 211.554586 \nL 435.634857 211.362253 \nL 436.34832 211.506503 \nL 438.488712 210.304421 \nL 439.202175 208.765756 \nL 439.915639 207.996423 \nL 440.629103 206.986674 \nL 441.342567 207.130924 \nL 444.196422 207.419424 \nL 444.909885 207.130924 \nL 445.623349 207.130924 \nL 446.336813 206.361591 \nL 448.477204 206.457758 \nL 449.190668 206.938591 \nL 449.904132 206.505841 \nL 450.617595 205.784592 \nL 451.331059 203.861261 \nL 454.184914 201.889846 \nL 454.898378 201.93793 \nL 455.611842 202.130263 \nL 456.325305 203.476595 \nL 458.465697 204.534427 \nL 459.17916 205.592259 \nL 460.606088 206.890508 \nL 461.319552 207.996423 \nL 463.459943 208.861922 \nL 464.173407 210.064004 \nL 464.88687 211.02567 \nL 465.600334 211.746919 \nL 466.313798 211.698836 \nL 468.454189 212.179669 \nL 469.167653 212.804751 \nL 469.881117 214.487666 \nL 470.59458 215.641665 \nL 471.308044 215.689748 \nL 473.448435 214.535749 \nL 476.30229 206.361591 \nL 478.442682 204.053594 \nL 479.869609 199.774182 \nL 480.583073 199.293349 \nL 481.296537 199.149099 \nL 483.436928 200.014598 \nL 484.150392 201.264764 \nL 486.290783 206.217342 \nL 488.431174 209.294672 \nL 489.144638 211.843086 \nL 489.858102 215.112749 \nL 490.571565 216.987997 \nL 491.285029 219.199828 \nL 494.852348 220.834659 \nL 495.565812 222.132908 \nL 496.279275 222.709907 \nL 498.419667 222.854157 \nL 499.13313 221.459742 \nL 499.846594 218.334329 \nL 500.560058 212.323918 \nL 501.273522 203.813178 \nL 503.413913 191.936607 \nL 509.121623 176.646124 \nL 509.835087 167.462217 \nL 511.262014 145.872823 \nL 513.402406 135.150252 \nL 514.829333 117.888354 \nL 515.542797 112.839609 \nL 516.256261 108.656363 \nL 518.396652 109.377613 \nL 519.110116 113.416608 \nL 519.823579 111.349027 \nL 520.537043 112.454943 \nL 521.250507 112.503026 \nL 523.390898 114.330191 \nL 524.104362 116.061189 \nL 524.817826 119.619352 \nL 526.244753 125.293179 \nL 529.098608 127.64926 \nL 529.812072 129.139841 \nL 530.525536 128.370509 \nL 531.238999 128.322426 \nL 534.092854 128.514759 \nL 534.806318 127.120344 \nL 535.519782 126.351011 \nL 536.233246 126.302928 \nL 538.373637 124.908513 \nL 539.087101 124.764263 \nL 539.800564 124.331513 \nL 540.514028 125.870178 \nL 541.227492 127.985843 \nL 543.367883 130.00534 \nL 544.081347 131.303589 \nL 545.508274 133.323087 \nL 546.221738 133.611587 \nL 548.362129 135.342585 \nL 549.789057 137.121666 \nL 550.502521 137.842915 \nL 551.215984 136.015751 \nL 553.356376 133.65967 \nL 554.069839 131.159339 \nL 554.783303 129.524508 \nL 555.496767 127.07226 \nL 556.210231 126.206761 \nL 559.064086 125.148929 \nL 559.777549 124.235347 \nL 560.491013 123.514097 \nL 561.204477 123.706431 \nL 563.344868 123.417931 \nL 564.058332 123.081348 \nL 564.771796 122.167766 \nL 565.485259 122.119682 \nL 566.198723 120.869517 \nL 566.198723 120.869517 \n\" clip-path=\"url(#pa5aa6a9d43)\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 33.562359 304.196644 \nL 33.562359 10.436644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 591.562359 304.196644 \nL 591.562359 10.436644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 33.562359 304.196644 \nL 591.562359 304.196644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 33.562359 10.436644 \nL 591.562359 10.436644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"legend_1\">\n <g id=\"patch_7\">\n <path d=\"M 495.620172 47.792894 \nL 584.562359 47.792894 \nQ 586.562359 47.792894 586.562359 45.792894 \nL 586.562359 17.436644 \nQ 586.562359 15.436644 584.562359 15.436644 \nL 495.620172 15.436644 \nQ 493.620172 15.436644 493.620172 17.436644 \nL 493.620172 45.792894 \nQ 493.620172 47.792894 495.620172 47.792894 \nz\n\" style=\"fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter\"/>\n </g>\n <g id=\"line2d_18\">\n <path d=\"M 497.620172 23.535082 \nL 507.620172 23.535082 \nL 517.620172 23.535082 \n\" style=\"fill: none; stroke: #1f77b4; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_18\">\n <!-- m10 -->\n <g transform=\"translate(525.620172 27.035082) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 \nQ 3544 3216 3844 3400 \nQ 4144 3584 4550 3584 \nQ 5097 3584 5394 3201 \nQ 5691 2819 5691 2113 \nL 5691 0 \nL 5113 0 \nL 5113 2094 \nQ 5113 2597 4934 2840 \nQ 4756 3084 4391 3084 \nQ 3944 3084 3684 2787 \nQ 3425 2491 3425 1978 \nL 3425 0 \nL 2847 0 \nL 2847 2094 \nQ 2847 2600 2669 2842 \nQ 2491 3084 2119 3084 \nQ 1678 3084 1418 2786 \nQ 1159 2488 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1356 3278 1631 3431 \nQ 1906 3584 2284 3584 \nQ 2666 3584 2933 3390 \nQ 3200 3197 3328 2828 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n <g id=\"line2d_19\">\n <path d=\"M 497.620172 38.213207 \nL 507.620172 38.213207 \nL 517.620172 38.213207 \n\" style=\"fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"text_19\">\n <!-- m30 (right) -->\n <g transform=\"translate(525.620172 41.713207) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-28\" d=\"M 1984 4856 \nQ 1566 4138 1362 3434 \nQ 1159 2731 1159 2009 \nQ 1159 1288 1364 580 \nQ 1569 -128 1984 -844 \nL 1484 -844 \nQ 1016 -109 783 600 \nQ 550 1309 550 2009 \nQ 550 2706 781 3412 \nQ 1013 4119 1484 4856 \nL 1984 4856 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-72\" d=\"M 2631 2963 \nQ 2534 3019 2420 3045 \nQ 2306 3072 2169 3072 \nQ 1681 3072 1420 2755 \nQ 1159 2438 1159 1844 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1341 3275 1631 3429 \nQ 1922 3584 2338 3584 \nQ 2397 3584 2469 3576 \nQ 2541 3569 2628 3553 \nL 2631 2963 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-69\" d=\"M 603 3500 \nL 1178 3500 \nL 1178 0 \nL 603 0 \nL 603 3500 \nz\nM 603 4863 \nL 1178 4863 \nL 1178 4134 \nL 603 4134 \nL 603 4863 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-67\" d=\"M 2906 1791 \nQ 2906 2416 2648 2759 \nQ 2391 3103 1925 3103 \nQ 1463 3103 1205 2759 \nQ 947 2416 947 1791 \nQ 947 1169 1205 825 \nQ 1463 481 1925 481 \nQ 2391 481 2648 825 \nQ 2906 1169 2906 1791 \nz\nM 3481 434 \nQ 3481 -459 3084 -895 \nQ 2688 -1331 1869 -1331 \nQ 1566 -1331 1297 -1286 \nQ 1028 -1241 775 -1147 \nL 775 -588 \nQ 1028 -725 1275 -790 \nQ 1522 -856 1778 -856 \nQ 2344 -856 2625 -561 \nQ 2906 -266 2906 331 \nL 2906 616 \nQ 2728 306 2450 153 \nQ 2172 0 1784 0 \nQ 1141 0 747 490 \nQ 353 981 353 1791 \nQ 353 2603 747 3093 \nQ 1141 3584 1784 3584 \nQ 2172 3584 2450 3431 \nQ 2728 3278 2906 2969 \nL 2906 3500 \nL 3481 3500 \nL 3481 434 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-68\" d=\"M 3513 2113 \nL 3513 0 \nL 2938 0 \nL 2938 2094 \nQ 2938 2591 2744 2837 \nQ 2550 3084 2163 3084 \nQ 1697 3084 1428 2787 \nQ 1159 2491 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 4863 \nL 1159 4863 \nL 1159 2956 \nQ 1366 3272 1645 3428 \nQ 1925 3584 2291 3584 \nQ 2894 3584 3203 3211 \nQ 3513 2838 3513 2113 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-29\" d=\"M 513 4856 \nL 1013 4856 \nQ 1481 4119 1714 3412 \nQ 1947 2706 1947 2009 \nQ 1947 1309 1714 600 \nQ 1481 -109 1013 -844 \nL 513 -844 \nQ 928 -128 1133 580 \nQ 1338 1288 1338 2009 \nQ 1338 2731 1133 3434 \nQ 928 4138 513 4856 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(224.658203 0)\"/>\n <use xlink:href=\"#DejaVuSans-28\" transform=\"translate(256.445312 0)\"/>\n <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(295.458984 0)\"/>\n <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(336.572266 0)\"/>\n <use xlink:href=\"#DejaVuSans-67\" transform=\"translate(364.355469 0)\"/>\n <use xlink:href=\"#DejaVuSans-68\" transform=\"translate(427.832031 0)\"/>\n <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(491.210938 0)\"/>\n <use xlink:href=\"#DejaVuSans-29\" transform=\"translate(530.419922 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"axes_2\">\n <g id=\"matplotlib.axis_3\">\n <g id=\"ytick_8\">\n <g id=\"line2d_20\">\n <defs>\n <path id=\"m35722a670c\" d=\"M 0 0 \nL 3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m35722a670c\" x=\"591.562359\" y=\"303.247943\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_20\">\n <!-- 8 -->\n <g transform=\"translate(598.562359 307.047162) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_9\">\n <g id=\"line2d_21\">\n <g>\n <use xlink:href=\"#m35722a670c\" x=\"591.562359\" y=\"249.395443\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_21\">\n <!-- 9 -->\n <g transform=\"translate(598.562359 253.194662) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_10\">\n <g id=\"line2d_22\">\n <g>\n <use xlink:href=\"#m35722a670c\" x=\"591.562359\" y=\"195.542944\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_22\">\n <!-- 10 -->\n <g transform=\"translate(598.562359 199.342162) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_11\">\n <g id=\"line2d_23\">\n <g>\n <use xlink:href=\"#m35722a670c\" x=\"591.562359\" y=\"141.690444\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_23\">\n <!-- 11 -->\n <g transform=\"translate(598.562359 145.489663) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_12\">\n <g id=\"line2d_24\">\n <g>\n <use xlink:href=\"#m35722a670c\" x=\"591.562359\" y=\"87.837944\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_24\">\n <!-- 12 -->\n <g transform=\"translate(598.562359 91.637163) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_13\">\n <g id=\"line2d_25\">\n <g>\n <use xlink:href=\"#m35722a670c\" x=\"591.562359\" y=\"33.985445\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_25\">\n <!-- 13 -->\n <g transform=\"translate(598.562359 37.784664) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n </g>\n <g id=\"line2d_26\">\n <path d=\"M 83.897227 24.381749 \nL 84.610691 23.789372 \nL 85.324155 24.327897 \nL 86.037618 25.099782 \nL 86.751082 26.464046 \nL 88.891473 28.456588 \nL 89.604937 29.641343 \nL 91.745328 32.495526 \nL 93.88572 34.703478 \nL 94.599183 37.001185 \nL 95.312647 39.837417 \nL 96.739575 46.80234 \nL 98.879966 50.572015 \nL 99.59343 54.377591 \nL 101.733821 63.353008 \nL 103.874212 65.919977 \nL 104.587676 68.630553 \nL 106.728067 75.164656 \nL 108.868458 77.354658 \nL 110.295386 81.770563 \nL 111.722313 85.037614 \nL 113.862705 87.694338 \nL 114.576168 90.297209 \nL 116.003096 92.882129 \nL 116.71656 95.449098 \nL 118.856951 97.567296 \nL 120.283878 101.96525 \nL 121.710806 107.637713 \nL 123.851197 110.079027 \nL 125.991588 114.512883 \nL 126.705052 115.769441 \nL 128.845443 117.636328 \nL 130.985835 121.78297 \nL 131.699298 122.267643 \nL 135.980081 122.303544 \nL 136.693545 121.693216 \nL 138.833936 120.580264 \nL 139.5474 119.916083 \nL 140.260864 120.023788 \nL 141.687791 119.934034 \nL 144.541646 119.431411 \nL 145.25511 119.772477 \nL 145.968574 119.84428 \nL 146.682037 120.436658 \nL 148.822429 120.92133 \nL 149.535892 121.585511 \nL 150.249356 122.680512 \nL 150.96282 124.026824 \nL 151.676284 124.816661 \nL 153.816675 125.714203 \nL 154.530139 126.95281 \nL 155.243602 128.909451 \nL 155.957066 131.314862 \nL 156.67053 133.235602 \nL 158.810921 134.92298 \nL 159.524385 136.556506 \nL 160.237849 137.561752 \nL 160.951312 137.525851 \nL 161.664776 138.243884 \nL 163.805167 138.836262 \nL 164.518631 139.715852 \nL 165.945559 142.623887 \nL 166.659022 144.40102 \nL 168.799414 147.237252 \nL 169.512877 149.947827 \nL 170.226341 152.101927 \nL 173.79366 154.579142 \nL 174.507124 156.46398 \nL 175.934051 160.754229 \nL 176.647515 162.49546 \nL 178.787906 163.769969 \nL 180.214834 166.283086 \nL 180.928297 167.503742 \nL 181.641761 168.437186 \nL 183.782152 169.227022 \nL 184.495616 170.304072 \nL 185.20908 171.11186 \nL 185.922544 171.381122 \nL 186.636007 171.11186 \nL 188.776399 171.093909 \nL 190.203326 172.350467 \nL 190.91679 172.763336 \nL 191.630254 173.319812 \nL 193.770645 174.34301 \nL 195.197572 173.804485 \nL 195.911036 173.319812 \nL 196.6245 171.901696 \nL 198.764891 170.627187 \nL 200.191819 168.634645 \nL 201.618746 165.188085 \nL 203.759137 163.428903 \nL 205.186065 160.395212 \nL 205.899529 158.636031 \nL 206.612992 157.451276 \nL 208.753384 157.128161 \nL 210.893775 155.243323 \nL 211.607239 154.597093 \nL 213.74763 154.381683 \nL 214.461094 154.09447 \nL 215.174557 154.076519 \nL 216.601485 155.027913 \nL 219.45534 154.543241 \nL 220.882267 155.207421 \nL 221.595731 155.243323 \nL 223.736122 154.704798 \nL 224.449586 155.297176 \nL 225.16305 155.727996 \nL 225.876514 156.481931 \nL 226.589977 158.259063 \nL 228.730369 160.018245 \nL 230.87076 164.86497 \nL 231.584224 166.80366 \nL 233.724615 168.473087 \nL 235.151542 171.901696 \nL 235.865006 173.894239 \nL 236.57847 175.061043 \nL 238.718861 175.86883 \nL 240.145789 177.897275 \nL 240.859252 178.561455 \nL 248.707354 179.369243 \nL 249.420817 179.907768 \nL 250.134281 180.60785 \nL 251.561209 181.092523 \nL 253.7016 181.487441 \nL 254.415064 182.384983 \nL 255.128527 183.031213 \nL 256.555455 184.934001 \nL 258.695846 186.40597 \nL 261.549701 193.442696 \nL 263.690093 194.914664 \nL 265.11702 197.930404 \nL 266.543948 200.766636 \nL 268.684339 201.71803 \nL 270.82473 205.308197 \nL 271.538194 206.654509 \nL 273.678585 208.431642 \nL 275.105513 211.555087 \nL 276.53244 215.109352 \nL 278.672831 216.760828 \nL 280.099759 219.561158 \nL 281.526686 222.900013 \nL 283.667078 224.695097 \nL 286.520933 232.162643 \nL 288.661324 233.724366 \nL 289.374788 235.645105 \nL 290.801715 238.966009 \nL 291.515179 241.030355 \nL 293.65557 243.004947 \nL 294.369034 244.871833 \nL 296.509425 251.90856 \nL 298.649816 254.70889 \nL 300.790208 262.409797 \nL 301.503671 264.384389 \nL 303.644063 266.287177 \nL 305.07099 270.631279 \nL 306.497918 273.413658 \nL 309.351773 275.17284 \nL 310.7787 278.996367 \nL 311.492164 280.57604 \nL 313.632555 282.28137 \nL 315.059483 285.31506 \nL 316.48641 287.181947 \nL 318.626801 287.989735 \nL 321.480656 289.982277 \nL 323.621048 290.341294 \nL 324.334511 290.68236 \nL 325.047975 290.843917 \nL 325.761439 290.233589 \nL 326.474903 289.3899 \nL 328.615294 288.510309 \nL 330.755685 286.517766 \nL 331.469149 286.338258 \nL 333.60954 286.015143 \nL 335.749931 283.232764 \nL 343.598033 282.586534 \nL 344.311496 281.814648 \nL 345.738424 275.908824 \nL 346.451888 272.785379 \nL 348.592279 270.523574 \nL 351.446134 260.686517 \nL 353.586525 258.640122 \nL 354.299989 256.450121 \nL 355.726916 252.608642 \nL 356.44038 250.490444 \nL 358.580771 248.156836 \nL 359.294235 245.536014 \nL 360.007699 243.435767 \nL 360.721163 241.820192 \nL 361.434626 239.8456 \nL 363.575018 238.194123 \nL 364.288481 236.937565 \nL 366.428873 231.713873 \nL 368.569264 229.685428 \nL 369.282728 227.495427 \nL 371.423119 222.864112 \nL 373.56351 221.374193 \nL 374.276974 220.063782 \nL 374.990438 220.67411 \nL 378.557756 221.517799 \nL 379.27122 222.325587 \nL 380.698148 223.223128 \nL 381.411611 223.995014 \nL 383.552003 224.533539 \nL 384.265466 224.910507 \nL 384.97893 224.389933 \nL 386.405858 223.079522 \nL 388.546249 222.864112 \nL 389.259713 222.576898 \nL 390.68664 222.379439 \nL 391.400104 221.894767 \nL 394.253959 220.512553 \nL 398.534742 219.884273 \nL 399.248205 219.022633 \nL 400.675133 217.999436 \nL 401.388597 216.958288 \nL 403.528988 215.93509 \nL 404.955915 214.840089 \nL 405.669379 213.619433 \nL 406.382843 212.003858 \nL 408.523234 210.675496 \nL 411.377089 203.531064 \nL 413.51748 201.323112 \nL 414.944408 197.104666 \nL 416.371335 194.124828 \nL 418.511727 193.478598 \nL 419.938654 192.760565 \nL 421.365582 191.234744 \nL 424.219437 190.624415 \nL 425.646364 189.780726 \nL 426.359828 189.63712 \nL 428.500219 189.601218 \nL 429.213683 189.780726 \nL 431.354074 189.85253 \nL 433.494465 190.3013 \nL 434.921393 190.839825 \nL 435.634857 190.821875 \nL 436.34832 191.37835 \nL 438.488712 192.02458 \nL 439.202175 192.509253 \nL 440.629103 194.519746 \nL 441.342567 195.812206 \nL 443.482958 197.014912 \nL 444.196422 198.325323 \nL 444.909885 199.312619 \nL 445.623349 200.066554 \nL 446.336813 200.246062 \nL 449.190668 200.317865 \nL 449.904132 200.156308 \nL 451.331059 199.384422 \nL 455.611842 199.510078 \nL 456.325305 199.77934 \nL 459.17916 199.761389 \nL 459.892624 199.545979 \nL 460.606088 199.151061 \nL 461.319552 198.899749 \nL 463.459943 198.774094 \nL 466.313798 199.851144 \nL 468.454189 200.461472 \nL 469.881117 201.969342 \nL 470.59458 202.382211 \nL 471.308044 202.094998 \nL 473.448435 201.448768 \nL 474.875363 200.587128 \nL 475.588827 200.138357 \nL 476.30229 199.851144 \nL 478.442682 199.56393 \nL 479.156145 199.330569 \nL 479.869609 199.456225 \nL 481.296537 200.335816 \nL 484.150392 200.730734 \nL 484.863855 200.928194 \nL 485.577319 200.964095 \nL 486.290783 200.874341 \nL 488.431174 201.341063 \nL 489.144638 201.664178 \nL 490.571565 203.728524 \nL 491.285029 204.51836 \nL 494.852348 205.020984 \nL 495.565812 205.236394 \nL 496.279275 205.290246 \nL 498.419667 205.110738 \nL 499.13313 204.51836 \nL 499.846594 203.638769 \nL 500.560058 201.484669 \nL 501.273522 198.792044 \nL 503.413913 194.878763 \nL 509.121623 189.942284 \nL 509.835087 187.447118 \nL 511.262014 181.146375 \nL 513.402406 177.753668 \nL 515.542797 168.293579 \nL 516.256261 164.775216 \nL 518.396652 161.310705 \nL 521.250507 147.41676 \nL 523.390898 144.149708 \nL 525.531289 134.887078 \nL 526.244753 131.243059 \nL 528.385144 127.706745 \nL 531.238999 112.179274 \nL 533.379391 108.930173 \nL 534.806318 103.939842 \nL 535.519782 102.790989 \nL 536.233246 102.306316 \nL 538.373637 102.683284 \nL 539.087101 104.388613 \nL 539.800564 104.011645 \nL 541.227492 105.501564 \nL 543.367883 107.009434 \nL 546.221738 111.622798 \nL 548.362129 112.376733 \nL 549.075593 112.915258 \nL 549.789057 113.633292 \nL 550.502521 114.189768 \nL 551.215984 114.279522 \nL 553.356376 114.225669 \nL 554.069839 113.776898 \nL 555.496767 112.197225 \nL 556.210231 111.963864 \nL 558.350622 111.766405 \nL 559.064086 111.981815 \nL 559.777549 111.802307 \nL 560.491013 112.376733 \nL 561.204477 112.556242 \nL 563.344868 112.322881 \nL 566.198723 109.93542 \nL 566.198723 109.93542 \n\" clip-path=\"url(#pa5aa6a9d43)\" style=\"fill: none; stroke: #ff7f0e; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_8\">\n <path d=\"M 33.562359 304.196644 \nL 33.562359 10.436644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_9\">\n <path d=\"M 591.562359 304.196644 \nL 591.562359 10.436644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_10\">\n <path d=\"M 33.562359 304.196644 \nL 591.562359 304.196644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_11\">\n <path d=\"M 33.562359 10.436644 \nL 591.562359 10.436644 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"pa5aa6a9d43\">\n <rect x=\"33.562359\" y=\"10.436644\" width=\"558\" height=\"293.76\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 198
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:48:28.066351Z",
"start_time": "2024-12-29T05:48:27.860390Z"
}
},
"cell_type": "code",
"source": [
"df_test = df[['m10', 'm30']].copy()\n",
"pd.plotting.scatter_matrix(\n",
" df_test,\n",
" alpha=0.5,\n",
" diagonal='hist',\n",
" hist_kwds={'bins': 100},\n",
" figsize=(18, 10),\n",
")"
],
"id": "1ed94510b4e8746c",
"outputs": [
{
"data": {
"text/plain": [
"array([[<Axes: xlabel='m10', ylabel='m10'>,\n",
" <Axes: xlabel='m30', ylabel='m10'>],\n",
" [<Axes: xlabel='m10', ylabel='m30'>,\n",
" <Axes: xlabel='m30', ylabel='m30'>]], dtype=object)"
]
},
"execution_count": 206,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 1800x1000 with 4 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1049.658125pt\" height=\"599.658125pt\" viewBox=\"0 0 1049.658125 599.658125\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:48:28.020561</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 599.658125 \nL 1049.658125 599.658125 \nL 1049.658125 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 38.058125 284.4 \nL 540.258125 284.4 \nL 540.258125 7.2 \nL 38.058125 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 50.015268 284.4 \nL 54.798125 284.4 \nL 54.798125 146.66087 \nL 50.015268 146.66087 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 54.798125 284.4 \nL 59.580982 284.4 \nL 59.580982 123.704348 \nL 54.798125 123.704348 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 59.580982 284.4 \nL 64.363839 284.4 \nL 64.363839 261.443478 \nL 59.580982 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 64.363839 284.4 \nL 69.146696 284.4 \nL 69.146696 249.965217 \nL 64.363839 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_7\">\n <path d=\"M 69.146696 284.4 \nL 73.929554 284.4 \nL 73.929554 227.008696 \nL 69.146696 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_8\">\n <path d=\"M 73.929554 284.4 \nL 78.712411 284.4 \nL 78.712411 261.443478 \nL 73.929554 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_9\">\n <path d=\"M 78.712411 284.4 \nL 83.495268 284.4 \nL 83.495268 249.965217 \nL 78.712411 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_10\">\n <path d=\"M 83.495268 284.4 \nL 88.278125 284.4 \nL 88.278125 238.486957 \nL 83.495268 238.486957 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_11\">\n <path d=\"M 88.278125 284.4 \nL 93.060982 284.4 \nL 93.060982 272.921739 \nL 88.278125 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_12\">\n <path d=\"M 93.060982 284.4 \nL 97.843839 284.4 \nL 97.843839 272.921739 \nL 93.060982 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_13\">\n <path d=\"M 97.843839 284.4 \nL 102.626696 284.4 \nL 102.626696 272.921739 \nL 97.843839 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_14\">\n <path d=\"M 102.626696 284.4 \nL 107.409554 284.4 \nL 107.409554 272.921739 \nL 102.626696 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_15\">\n <path d=\"M 107.409554 284.4 \nL 112.192411 284.4 \nL 112.192411 261.443478 \nL 107.409554 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_16\">\n <path d=\"M 112.192411 284.4 \nL 116.975268 284.4 \nL 116.975268 284.4 \nL 112.192411 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_17\">\n <path d=\"M 116.975268 284.4 \nL 121.758125 284.4 \nL 121.758125 272.921739 \nL 116.975268 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_18\">\n <path d=\"M 121.758125 284.4 \nL 126.540982 284.4 \nL 126.540982 261.443478 \nL 121.758125 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_19\">\n <path d=\"M 126.540982 284.4 \nL 131.323839 284.4 \nL 131.323839 272.921739 \nL 126.540982 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_20\">\n <path d=\"M 131.323839 284.4 \nL 136.106696 284.4 \nL 136.106696 261.443478 \nL 131.323839 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_21\">\n <path d=\"M 136.106696 284.4 \nL 140.889554 284.4 \nL 140.889554 261.443478 \nL 136.106696 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_22\">\n <path d=\"M 140.889554 284.4 \nL 145.672411 284.4 \nL 145.672411 249.965217 \nL 140.889554 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_23\">\n <path d=\"M 145.672411 284.4 \nL 150.455268 284.4 \nL 150.455268 249.965217 \nL 145.672411 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_24\">\n <path d=\"M 150.455268 284.4 \nL 155.238125 284.4 \nL 155.238125 272.921739 \nL 150.455268 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_25\">\n <path d=\"M 155.238125 284.4 \nL 160.020982 284.4 \nL 160.020982 158.13913 \nL 155.238125 158.13913 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_26\">\n <path d=\"M 160.020982 284.4 \nL 164.803839 284.4 \nL 164.803839 66.313043 \nL 160.020982 66.313043 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_27\">\n <path d=\"M 164.803839 284.4 \nL 169.586696 284.4 \nL 169.586696 66.313043 \nL 164.803839 66.313043 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_28\">\n <path d=\"M 169.586696 284.4 \nL 174.369554 284.4 \nL 174.369554 192.573913 \nL 169.586696 192.573913 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_29\">\n <path d=\"M 174.369554 284.4 \nL 179.152411 284.4 \nL 179.152411 227.008696 \nL 174.369554 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_30\">\n <path d=\"M 179.152411 284.4 \nL 183.935268 284.4 \nL 183.935268 204.052174 \nL 179.152411 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_31\">\n <path d=\"M 183.935268 284.4 \nL 188.718125 284.4 \nL 188.718125 204.052174 \nL 183.935268 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_32\">\n <path d=\"M 188.718125 284.4 \nL 193.500982 284.4 \nL 193.500982 100.747826 \nL 188.718125 100.747826 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_33\">\n <path d=\"M 193.500982 284.4 \nL 198.283839 284.4 \nL 198.283839 146.66087 \nL 193.500982 146.66087 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_34\">\n <path d=\"M 198.283839 284.4 \nL 203.066696 284.4 \nL 203.066696 20.4 \nL 198.283839 20.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_35\">\n <path d=\"M 203.066696 284.4 \nL 207.849554 284.4 \nL 207.849554 158.13913 \nL 203.066696 158.13913 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_36\">\n <path d=\"M 207.849554 284.4 \nL 212.632411 284.4 \nL 212.632411 181.095652 \nL 207.849554 181.095652 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_37\">\n <path d=\"M 212.632411 284.4 \nL 217.415268 284.4 \nL 217.415268 192.573913 \nL 212.632411 192.573913 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_38\">\n <path d=\"M 217.415268 284.4 \nL 222.198125 284.4 \nL 222.198125 227.008696 \nL 217.415268 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_39\">\n <path d=\"M 222.198125 284.4 \nL 226.980982 284.4 \nL 226.980982 215.530435 \nL 222.198125 215.530435 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_40\">\n <path d=\"M 226.980982 284.4 \nL 231.763839 284.4 \nL 231.763839 192.573913 \nL 226.980982 192.573913 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_41\">\n <path d=\"M 231.763839 284.4 \nL 236.546696 284.4 \nL 236.546696 66.313043 \nL 231.763839 66.313043 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_42\">\n <path d=\"M 236.546696 284.4 \nL 241.329554 284.4 \nL 241.329554 66.313043 \nL 236.546696 66.313043 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_43\">\n <path d=\"M 241.329554 284.4 \nL 246.112411 284.4 \nL 246.112411 204.052174 \nL 241.329554 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_44\">\n <path d=\"M 246.112411 284.4 \nL 250.895268 284.4 \nL 250.895268 227.008696 \nL 246.112411 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_45\">\n <path d=\"M 250.895268 284.4 \nL 255.678125 284.4 \nL 255.678125 238.486957 \nL 250.895268 238.486957 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_46\">\n <path d=\"M 255.678125 284.4 \nL 260.460982 284.4 \nL 260.460982 204.052174 \nL 255.678125 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_47\">\n <path d=\"M 260.460982 284.4 \nL 265.243839 284.4 \nL 265.243839 204.052174 \nL 260.460982 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_48\">\n <path d=\"M 265.243839 284.4 \nL 270.026696 284.4 \nL 270.026696 272.921739 \nL 265.243839 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_49\">\n <path d=\"M 270.026696 284.4 \nL 274.809554 284.4 \nL 274.809554 238.486957 \nL 270.026696 238.486957 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_50\">\n <path d=\"M 274.809554 284.4 \nL 279.592411 284.4 \nL 279.592411 249.965217 \nL 274.809554 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_51\">\n <path d=\"M 279.592411 284.4 \nL 284.375268 284.4 \nL 284.375268 284.4 \nL 279.592411 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_52\">\n <path d=\"M 284.375268 284.4 \nL 289.158125 284.4 \nL 289.158125 249.965217 \nL 284.375268 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_53\">\n <path d=\"M 289.158125 284.4 \nL 293.940982 284.4 \nL 293.940982 249.965217 \nL 289.158125 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_54\">\n <path d=\"M 293.940982 284.4 \nL 298.723839 284.4 \nL 298.723839 261.443478 \nL 293.940982 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_55\">\n <path d=\"M 298.723839 284.4 \nL 303.506696 284.4 \nL 303.506696 249.965217 \nL 298.723839 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_56\">\n <path d=\"M 303.506696 284.4 \nL 308.289554 284.4 \nL 308.289554 249.965217 \nL 303.506696 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_57\">\n <path d=\"M 308.289554 284.4 \nL 313.072411 284.4 \nL 313.072411 238.486957 \nL 308.289554 238.486957 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_58\">\n <path d=\"M 313.072411 284.4 \nL 317.855268 284.4 \nL 317.855268 238.486957 \nL 313.072411 238.486957 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_59\">\n <path d=\"M 317.855268 284.4 \nL 322.638125 284.4 \nL 322.638125 227.008696 \nL 317.855268 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_60\">\n <path d=\"M 322.638125 284.4 \nL 327.420982 284.4 \nL 327.420982 123.704348 \nL 322.638125 123.704348 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_61\">\n <path d=\"M 327.420982 284.4 \nL 332.203839 284.4 \nL 332.203839 112.226087 \nL 327.420982 112.226087 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_62\">\n <path d=\"M 332.203839 284.4 \nL 336.986696 284.4 \nL 336.986696 204.052174 \nL 332.203839 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_63\">\n <path d=\"M 336.986696 284.4 \nL 341.769554 284.4 \nL 341.769554 146.66087 \nL 336.986696 146.66087 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_64\">\n <path d=\"M 341.769554 284.4 \nL 346.552411 284.4 \nL 346.552411 112.226087 \nL 341.769554 112.226087 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_65\">\n <path d=\"M 346.552411 284.4 \nL 351.335268 284.4 \nL 351.335268 169.617391 \nL 346.552411 169.617391 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_66\">\n <path d=\"M 351.335268 284.4 \nL 356.118125 284.4 \nL 356.118125 227.008696 \nL 351.335268 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_67\">\n <path d=\"M 356.118125 284.4 \nL 360.900982 284.4 \nL 360.900982 261.443478 \nL 356.118125 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_68\">\n <path d=\"M 360.900982 284.4 \nL 365.683839 284.4 \nL 365.683839 261.443478 \nL 360.900982 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_69\">\n <path d=\"M 365.683839 284.4 \nL 370.466696 284.4 \nL 370.466696 227.008696 \nL 365.683839 227.008696 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_70\">\n <path d=\"M 370.466696 284.4 \nL 375.249554 284.4 \nL 375.249554 249.965217 \nL 370.466696 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_71\">\n <path d=\"M 375.249554 284.4 \nL 380.032411 284.4 \nL 380.032411 272.921739 \nL 375.249554 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_72\">\n <path d=\"M 380.032411 284.4 \nL 384.815268 284.4 \nL 384.815268 284.4 \nL 380.032411 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_73\">\n <path d=\"M 384.815268 284.4 \nL 389.598125 284.4 \nL 389.598125 272.921739 \nL 384.815268 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_74\">\n <path d=\"M 389.598125 284.4 \nL 394.380982 284.4 \nL 394.380982 284.4 \nL 389.598125 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_75\">\n <path d=\"M 394.380982 284.4 \nL 399.163839 284.4 \nL 399.163839 284.4 \nL 394.380982 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_76\">\n <path d=\"M 399.163839 284.4 \nL 403.946696 284.4 \nL 403.946696 272.921739 \nL 399.163839 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_77\">\n <path d=\"M 403.946696 284.4 \nL 408.729554 284.4 \nL 408.729554 284.4 \nL 403.946696 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_78\">\n <path d=\"M 408.729554 284.4 \nL 413.512411 284.4 \nL 413.512411 272.921739 \nL 408.729554 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_79\">\n <path d=\"M 413.512411 284.4 \nL 418.295268 284.4 \nL 418.295268 272.921739 \nL 413.512411 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_80\">\n <path d=\"M 418.295268 284.4 \nL 423.078125 284.4 \nL 423.078125 272.921739 \nL 418.295268 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_81\">\n <path d=\"M 423.078125 284.4 \nL 427.860982 284.4 \nL 427.860982 284.4 \nL 423.078125 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_82\">\n <path d=\"M 427.860982 284.4 \nL 432.643839 284.4 \nL 432.643839 238.486957 \nL 427.860982 238.486957 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_83\">\n <path d=\"M 432.643839 284.4 \nL 437.426696 284.4 \nL 437.426696 204.052174 \nL 432.643839 204.052174 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_84\">\n <path d=\"M 437.426696 284.4 \nL 442.209554 284.4 \nL 442.209554 249.965217 \nL 437.426696 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_85\">\n <path d=\"M 442.209554 284.4 \nL 446.992411 284.4 \nL 446.992411 261.443478 \nL 442.209554 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_86\">\n <path d=\"M 446.992411 284.4 \nL 451.775268 284.4 \nL 451.775268 272.921739 \nL 446.992411 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_87\">\n <path d=\"M 451.775268 284.4 \nL 456.558125 284.4 \nL 456.558125 284.4 \nL 451.775268 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_88\">\n <path d=\"M 456.558125 284.4 \nL 461.340982 284.4 \nL 461.340982 272.921739 \nL 456.558125 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_89\">\n <path d=\"M 461.340982 284.4 \nL 466.123839 284.4 \nL 466.123839 284.4 \nL 461.340982 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_90\">\n <path d=\"M 466.123839 284.4 \nL 470.906696 284.4 \nL 470.906696 272.921739 \nL 466.123839 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_91\">\n <path d=\"M 470.906696 284.4 \nL 475.689554 284.4 \nL 475.689554 284.4 \nL 470.906696 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_92\">\n <path d=\"M 475.689554 284.4 \nL 480.472411 284.4 \nL 480.472411 272.921739 \nL 475.689554 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_93\">\n <path d=\"M 480.472411 284.4 \nL 485.255268 284.4 \nL 485.255268 284.4 \nL 480.472411 284.4 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_94\">\n <path d=\"M 485.255268 284.4 \nL 490.038125 284.4 \nL 490.038125 272.921739 \nL 485.255268 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_95\">\n <path d=\"M 490.038125 284.4 \nL 494.820982 284.4 \nL 494.820982 272.921739 \nL 490.038125 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_96\">\n <path d=\"M 494.820982 284.4 \nL 499.603839 284.4 \nL 499.603839 272.921739 \nL 494.820982 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_97\">\n <path d=\"M 499.603839 284.4 \nL 504.386696 284.4 \nL 504.386696 272.921739 \nL 499.603839 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_98\">\n <path d=\"M 504.386696 284.4 \nL 509.169554 284.4 \nL 509.169554 272.921739 \nL 504.386696 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_99\">\n <path d=\"M 509.169554 284.4 \nL 513.952411 284.4 \nL 513.952411 261.443478 \nL 509.169554 261.443478 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_100\">\n <path d=\"M 513.952411 284.4 \nL 518.735268 284.4 \nL 518.735268 272.921739 \nL 513.952411 272.921739 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_101\">\n <path d=\"M 518.735268 284.4 \nL 523.518125 284.4 \nL 523.518125 249.965217 \nL 518.735268 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_102\">\n <path d=\"M 523.518125 284.4 \nL 528.300982 284.4 \nL 528.300982 249.965217 \nL 523.518125 249.965217 \nz\n\" clip-path=\"url(#pef091b8817)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"ytick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m2425a82b14\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"238.822686\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 9 -->\n <g transform=\"translate(25.968125 241.862061) scale(0.08 -0.08)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"191.289377\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 10 -->\n <g transform=\"translate(20.878125 194.328752) scale(0.08 -0.08)\">\n <defs>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"143.756068\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 11 -->\n <g transform=\"translate(20.878125 146.795443) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"96.222758\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 12 -->\n <g transform=\"translate(20.878125 99.262133) scale(0.08 -0.08)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"48.689449\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 13 -->\n <g transform=\"translate(20.878125 51.728824) scale(0.08 -0.08)\">\n <defs>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- m10 -->\n <g transform=\"translate(14.798438 157.032813) rotate(-90) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 \nQ 3544 3216 3844 3400 \nQ 4144 3584 4550 3584 \nQ 5097 3584 5394 3201 \nQ 5691 2819 5691 2113 \nL 5691 0 \nL 5113 0 \nL 5113 2094 \nQ 5113 2597 4934 2840 \nQ 4756 3084 4391 3084 \nQ 3944 3084 3684 2787 \nQ 3425 2491 3425 1978 \nL 3425 0 \nL 2847 0 \nL 2847 2094 \nQ 2847 2600 2669 2842 \nQ 2491 3084 2119 3084 \nQ 1678 3084 1418 2786 \nQ 1159 2488 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1356 3278 1631 3431 \nQ 1906 3584 2284 3584 \nQ 2666 3584 2933 3390 \nQ 3200 3197 3328 2828 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_103\">\n <path d=\"M 38.058125 284.4 \nL 38.058125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_104\">\n <path d=\"M 540.258125 284.4 \nL 540.258125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_105\">\n <path d=\"M 38.058125 284.4 \nL 540.258125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_106\">\n <path d=\"M 38.058125 7.2 \nL 540.258125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n <g id=\"axes_2\">\n <g id=\"patch_107\">\n <path d=\"M 540.258125 284.4 \nL 1042.458125 284.4 \nL 1042.458125 7.2 \nL 540.258125 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"PathCollection_1\">\n <defs>\n <path id=\"C0_0_8169ed7cf8\" d=\"M 0 1.5 \nC 0.397805 1.5 0.77937 1.341951 1.06066 1.06066 \nC 1.341951 0.77937 1.5 0.397805 1.5 -0 \nC 1.5 -0.397805 1.341951 -0.77937 1.06066 -1.06066 \nC 0.77937 -1.341951 0.397805 -1.5 0 -1.5 \nC -0.397805 -1.5 -0.77937 -1.341951 -1.06066 -1.06066 \nC -1.341951 -0.77937 -1.5 -0.397805 -1.5 0 \nC -1.5 0.397805 -1.341951 0.77937 -1.06066 1.06066 \nC -0.77937 1.341951 -0.397805 1.5 0 1.5 \nz\n\"/>\n </defs>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1029.440054\" y=\"65.373641\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1030.500982\" y=\"65.896507\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1029.536502\" y=\"65.991574\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1028.15408\" y=\"66.37184\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1025.710731\" y=\"66.94224\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1022.142154\" y=\"67.560173\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1020.020298\" y=\"68.415772\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1018.412831\" y=\"66.039107\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1017.030409\" y=\"62.996975\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1014.908553\" y=\"58.909111\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1010.954184\" y=\"60.33511\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1006.839069\" y=\"62.283976\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"1001.759473\" y=\"64.613108\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"995.683248\" y=\"68.653439\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"989.28553\" y=\"72.075837\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"982.534169\" y=\"75.117969\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"975.718509\" y=\"79.4435\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"970.413868\" y=\"84.767231\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"964.691285\" y=\"91.516961\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"959.643839\" y=\"98.83709\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"955.046484\" y=\"104.921354\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"950.191934\" y=\"109.627152\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"946.173266\" y=\"113.144616\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"942.218898\" y=\"114.570616\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"938.489574\" y=\"116.091682\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"934.567355\" y=\"118.230681\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"930.323642\" y=\"119.323947\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"926.658618\" y=\"121.795679\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"923.700878\" y=\"122.461145\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"920.807438\" y=\"123.506878\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"916.049336\" y=\"123.031545\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"911.387682\" y=\"123.269211\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"906.758177\" y=\"124.267411\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"902.160821\" y=\"125.598344\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"898.367199\" y=\"126.26381\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"894.670025\" y=\"126.54901\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"890.490611\" y=\"127.309543\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"885.314568\" y=\"127.166943\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"880.33142\" y=\"127.119409\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"875.95911\" y=\"125.218077\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"873.226416\" y=\"123.649478\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"870.525872\" y=\"122.698812\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"868.018224\" y=\"121.890745\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"865.76777\" y=\"122.461145\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"862.424239\" y=\"125.218077\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"859.948739\" y=\"126.453943\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"857.537539\" y=\"128.165142\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"854.997741\" y=\"129.591142\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"854.129709\" y=\"130.256608\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"854.06541\" y=\"131.207274\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"855.158488\" y=\"131.635074\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"857.151747\" y=\"129.401008\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.341273\" y=\"127.452143\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.148376\" y=\"125.83601\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.244825\" y=\"122.271012\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.309123\" y=\"120.654879\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.919961\" y=\"117.280014\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"859.209305\" y=\"115.568815\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.598467\" y=\"115.854015\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"858.46987\" y=\"116.994815\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"857.408942\" y=\"119.704213\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"856.54091\" y=\"124.172344\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"855.351384\" y=\"128.688009\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"853.390274\" y=\"132.633273\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"850.979074\" y=\"137.006338\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"849.564503\" y=\"139.47807\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"847.957036\" y=\"143.518401\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"845.738732\" y=\"147.083399\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"842.234454\" y=\"151.313864\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"837.926442\" y=\"155.591862\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"834.486463\" y=\"157.540727\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"831.464425\" y=\"159.774793\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"828.538835\" y=\"161.533525\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"826.738472\" y=\"161.866259\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"826.802771\" y=\"160.963126\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"825.516798\" y=\"162.008858\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"824.455869\" y=\"162.911991\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"822.880552\" y=\"163.387324\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"820.340754\" y=\"162.626792\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"817.672359\" y=\"161.153259\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"814.489574\" y=\"161.200792\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"809.409979\" y=\"162.008858\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"804.555429\" y=\"162.911991\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"800.697508\" y=\"164.337991\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.260899\" y=\"167.427656\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"792.885219\" y=\"168.901188\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"788.898701\" y=\"169.851855\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"785.201527\" y=\"171.277854\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"782.083041\" y=\"172.418653\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"779.800438\" y=\"172.989053\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"777.710731\" y=\"174.082319\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"775.29953\" y=\"174.605185\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"773.113375\" y=\"175.175585\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"771.44161\" y=\"175.888585\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"770.027039\" y=\"175.793518\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"768.098078\" y=\"176.126251\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"766.651358\" y=\"176.411451\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"766.169118\" y=\"175.223118\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"766.651358\" y=\"174.129852\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"766.683507\" y=\"174.985452\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"765.429683\" y=\"175.698452\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"764.433054\" y=\"175.841051\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"763.693619\" y=\"175.460785\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"762.696989\" y=\"174.795319\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"760.864477\" y=\"174.510119\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"761.282418\" y=\"172.08592\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"761.828957\" y=\"170.041988\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"762.696989\" y=\"168.520922\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"765.236787\" y=\"164.718257\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"767.51939\" y=\"159.917393\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"769.223305\" y=\"155.591862\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"771.087967\" y=\"152.169463\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"774.206453\" y=\"147.368599\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"777.26064\" y=\"142.805402\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"780.411275\" y=\"138.527404\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"783.047521\" y=\"136.721138\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"785.844513\" y=\"134.344472\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"788.995149\" y=\"132.395607\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"791.117005\" y=\"134.154339\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"791.695693\" y=\"137.244004\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"792.756621\" y=\"139.287937\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"794.010445\" y=\"140.713936\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"795.071374\" y=\"144.326467\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.22875\" y=\"147.843932\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.614542\" y=\"151.83673\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"797.128931\" y=\"155.306662\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"797.161081\" y=\"159.679726\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.1966\" y=\"164.575657\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"795.457166\" y=\"167.712856\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.132302\" y=\"168.425855\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.325198\" y=\"170.422254\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"795.74651\" y=\"173.274253\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"795.135672\" y=\"175.365718\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"795.071374\" y=\"176.506518\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.035854\" y=\"175.365718\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"794.974926\" y=\"175.270652\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"794.203341\" y=\"174.415052\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"792.853069\" y=\"173.464386\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"789.670285\" y=\"173.274253\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"786.51965\" y=\"174.129852\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"783.690508\" y=\"174.272452\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"781.182859\" y=\"173.702053\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"777.839328\" y=\"172.94152\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"774.367199\" y=\"173.416853\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"771.377311\" y=\"174.985452\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"768.51602\" y=\"175.841051\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"765.236787\" y=\"177.171984\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"761.668211\" y=\"178.502917\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"759.578504\" y=\"178.645517\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"758.131783\" y=\"179.215916\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"756.299271\" y=\"179.786316\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"754.498908\" y=\"180.166583\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"753.309382\" y=\"180.594382\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"751.862662\" y=\"181.117249\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"750.898182\" y=\"182.115448\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"749.644358\" y=\"183.208714\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"749.194267\" y=\"183.398848\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"748.776326\" y=\"183.636514\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"748.06904\" y=\"184.72978\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"746.461573\" y=\"185.680447\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"745.304197\" y=\"186.678646\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"743.600282\" y=\"189.388045\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"741.896367\" y=\"192.240043\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"739.260121\" y=\"195.139575\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"736.013038\" y=\"197.373641\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"732.765955\" y=\"200.225639\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"729.486722\" y=\"203.552971\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"726.657581\" y=\"206.167303\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"724.021335\" y=\"208.829168\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"721.192193\" y=\"211.491033\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"718.620246\" y=\"213.725099\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.144747\" y=\"214.295499\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.54065\" y=\"214.865898\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"711.836735\" y=\"213.962766\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"709.811327\" y=\"213.725099\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"707.528724\" y=\"213.154699\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"705.406868\" y=\"212.774433\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"702.995667\" y=\"213.487432\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"699.812883\" y=\"214.438099\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"696.758695\" y=\"215.341232\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"694.218898\" y=\"215.864098\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"691.229009\" y=\"217.004897\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"687.853329\" y=\"218.573497\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"684.895589\" y=\"220.950162\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"682.516538\" y=\"222.471228\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"679.880292\" y=\"224.08736\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"676.793956\" y=\"225.703493\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"673.900515\" y=\"226.654159\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"670.685582\" y=\"227.794959\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"667.245602\" y=\"229.316024\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"663.291234\" y=\"232.40569\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"660.333494\" y=\"235.067555\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"657.311457\" y=\"237.396687\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"654.514464\" y=\"240.058552\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"651.074485\" y=\"243.861217\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"648.245343\" y=\"246.998416\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"645.126857\" y=\"250.373281\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"641.429683\" y=\"254.175945\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"637.893256\" y=\"257.313144\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"634.549725\" y=\"259.832409\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"630.306012\" y=\"262.494274\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"626.03015\" y=\"265.01354\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"621.947184\" y=\"267.152539\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"616.931887\" y=\"269.529204\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"612.109486\" y=\"271.33547\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"607.383533\" y=\"273.569535\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"603.139821\" y=\"274.852935\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"599.603393\" y=\"275.328268\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"596.195563\" y=\"276.088801\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"592.434091\" y=\"277.609867\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"588.415423\" y=\"277.8\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"585.875626\" y=\"276.374001\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"583.432276\" y=\"275.518401\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"580.281641\" y=\"275.138135\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"576.809512\" y=\"274.662802\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"573.433832\" y=\"274.282535\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"570.60469\" y=\"273.807202\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"567.550502\" y=\"274.044869\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"564.882107\" y=\"274.092402\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"562.117264\" y=\"274.139935\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"560.349051\" y=\"273.902269\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"558.773733\" y=\"275.138135\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"557.327013\" y=\"275.993734\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"556.394682\" y=\"275.375801\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"555.590948\" y=\"275.233201\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"554.626468\" y=\"274.805402\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"553.758436\" y=\"275.280735\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"553.115449\" y=\"275.518401\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"552.504612\" y=\"275.613468\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"552.215268\" y=\"274.472668\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"553.308345\" y=\"272.904069\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"554.819364\" y=\"270.860137\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"556.394682\" y=\"268.531005\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"557.584207\" y=\"267.770472\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"558.741584\" y=\"266.677206\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"559.963259\" y=\"265.679006\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"560.284752\" y=\"265.203673\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"560.86344\" y=\"263.87274\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"562.438758\" y=\"261.401008\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"564.078374\" y=\"260.070076\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"565.846588\" y=\"259.262009\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"567.003964\" y=\"258.358876\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"568.386385\" y=\"257.788477\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"573.49813\" y=\"251.609147\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"578.963518\" y=\"244.76435\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"584.557503\" y=\"237.919553\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"588.608319\" y=\"231.930356\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"592.94848\" y=\"226.606626\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"597.160044\" y=\"222.756428\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"601.982444\" y=\"218.098163\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"606.226157\" y=\"214.200432\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"609.891182\" y=\"211.7287\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"613.813401\" y=\"208.829168\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"616.996186\" y=\"211.063234\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"620.69336\" y=\"213.534966\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"624.486982\" y=\"215.769031\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"628.666396\" y=\"216.054231\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"633.360199\" y=\"215.769031\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"637.121672\" y=\"216.529564\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"640.015112\" y=\"218.240763\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"643.55154\" y=\"217.717897\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"646.509279\" y=\"216.719698\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"648.759732\" y=\"216.862297\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"651.81392\" y=\"216.291898\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"655.061003\" y=\"215.864098\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"658.11519\" y=\"215.959165\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"661.748065\" y=\"216.291898\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"665.670285\" y=\"216.101764\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"668.402979\" y=\"215.151098\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"671.23212\" y=\"213.915232\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"673.964814\" y=\"214.295499\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"676.633209\" y=\"213.820166\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"678.980111\" y=\"213.107166\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"677.887033\" y=\"213.059633\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"676.376015\" y=\"213.249766\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"674.929294\" y=\"213.059633\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"674.125561\" y=\"213.630032\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"673.321827\" y=\"215.293698\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"671.939406\" y=\"217.527764\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"670.974926\" y=\"218.47843\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"670.29979\" y=\"219.619229\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"671.23212\" y=\"219.714296\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"672.421646\" y=\"218.525963\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"673.579022\" y=\"217.432697\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"673.964814\" y=\"217.099964\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"674.479204\" y=\"216.434498\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"674.6721\" y=\"215.246165\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"674.832846\" y=\"213.534966\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"675.700878\" y=\"210.968167\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"677.56554\" y=\"208.496435\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"678.176378\" y=\"206.072236\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"679.301604\" y=\"204.788837\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"680.844773\" y=\"204.40857\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"681.744954\" y=\"204.218437\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"682.677285\" y=\"202.982571\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"684.541947\" y=\"201.081239\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"686.374459\" y=\"198.989773\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"687.371088\" y=\"197.563774\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"688.335569\" y=\"196.470508\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"690.521724\" y=\"194.759309\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"693.415164\" y=\"191.76471\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"695.794215\" y=\"189.435578\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"699.009149\" y=\"186.250846\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"702.545576\" y=\"182.305582\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"705.664062\" y=\"179.26345\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"708.589652\" y=\"177.504717\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"712.544021\" y=\"174.937919\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.241195\" y=\"172.608786\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"720.099115\" y=\"170.564854\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"722.767511\" y=\"170.802521\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"725.435906\" y=\"172.276053\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"726.593282\" y=\"174.177386\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"727.300567\" y=\"176.696651\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"727.879255\" y=\"179.976449\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"729.165229\" y=\"182.353115\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"730.611949\" y=\"183.874181\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"731.705027\" y=\"186.916313\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"732.573059\" y=\"189.388045\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.216046\" y=\"191.574577\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.47324\" y=\"192.667843\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.537539\" y=\"194.093842\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.216046\" y=\"194.996975\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.151747\" y=\"195.757508\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.248195\" y=\"196.280375\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"733.087448\" y=\"197.183507\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"732.283715\" y=\"198.609507\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"731.705027\" y=\"198.989773\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"731.319235\" y=\"199.417573\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"731.351384\" y=\"199.22744\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"730.354755\" y=\"199.37004\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"729.197378\" y=\"198.181707\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"728.329346\" y=\"196.660641\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"726.625431\" y=\"195.900108\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"724.72862\" y=\"194.901909\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"722.413868\" y=\"195.044508\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"720.259862\" y=\"195.282175\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"717.91296\" y=\"195.329708\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.144747\" y=\"195.044508\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.794474\" y=\"195.044508\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.472981\" y=\"194.283976\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.247936\" y=\"194.379042\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.344384\" y=\"194.854375\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.633728\" y=\"194.426575\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.437461\" y=\"193.713576\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.016149\" y=\"191.812243\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.855403\" y=\"190.386244\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.919701\" y=\"189.863378\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.791104\" y=\"189.910911\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.791104\" y=\"190.101044\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.308864\" y=\"191.431977\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.341013\" y=\"192.47771\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.341013\" y=\"193.523443\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.726805\" y=\"194.141376\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.434091\" y=\"194.806842\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.884182\" y=\"195.900108\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"717.109227\" y=\"196.755708\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.626987\" y=\"197.94404\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.144747\" y=\"198.894707\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.533909\" y=\"199.607706\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.180267\" y=\"199.560173\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.087189\" y=\"200.035506\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"712.640469\" y=\"200.653439\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"711.386645\" y=\"202.317105\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"710.64721\" y=\"203.457904\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"711.161599\" y=\"203.505438\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"712.318975\" y=\"202.364638\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.187008\" y=\"200.415772\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.862144\" y=\"198.419373\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.665877\" y=\"196.327908\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.180267\" y=\"194.283976\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.694656\" y=\"192.002377\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"716.112597\" y=\"189.720778\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"715.887552\" y=\"187.771912\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.987371\" y=\"187.296579\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"714.312234\" y=\"187.153979\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.926442\" y=\"188.009579\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.604949\" y=\"189.245445\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.251306\" y=\"190.814044\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.187008\" y=\"192.287577\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"713.347754\" y=\"194.141376\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"712.511871\" y=\"197.183507\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"711.933183\" y=\"199.702773\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"709.939924\" y=\"202.935038\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"708.236009\" y=\"204.788837\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"706.821438\" y=\"206.975369\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"705.921257\" y=\"208.591502\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"705.535465\" y=\"209.874901\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"705.439017\" y=\"210.445301\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"705.76051\" y=\"210.587901\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"706.821438\" y=\"209.209435\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"708.396756\" y=\"206.11977\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"712.254677\" y=\"200.178106\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"717.077078\" y=\"191.76471\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"724.085633\" y=\"180.023983\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"732.926702\" y=\"164.90839\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"737.39546\" y=\"155.829528\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"743.471685\" y=\"144.326467\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"748.679878\" y=\"134.487072\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"754.756103\" y=\"123.887144\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"760.157192\" y=\"115.426215\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"766.008371\" y=\"106.822686\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"771.698804\" y=\"101.831689\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"778.000075\" y=\"97.696291\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"784.204897\" y=\"98.409291\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"790.248973\" y=\"102.402089\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"796.678841\" y=\"100.358156\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"802.851514\" y=\"101.451422\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"809.088485\" y=\"101.498956\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"814.939665\" y=\"103.305221\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"820.437202\" y=\"105.016421\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"825.966888\" y=\"108.533885\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"831.528724\" y=\"111.243284\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"838.05504\" y=\"114.142816\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"844.388459\" y=\"115.806482\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"851.461314\" y=\"116.471948\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"857.98763\" y=\"117.945481\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"865.542724\" y=\"117.184948\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.197638\" y=\"117.137414\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"878.016668\" y=\"117.327548\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"882.581874\" y=\"117.327548\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"886.954184\" y=\"115.949082\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"889.011742\" y=\"115.188549\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"889.879774\" y=\"115.141015\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"889.204638\" y=\"113.76255\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"886.150451\" y=\"113.61995\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"886.825587\" y=\"113.19215\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"885.571763\" y=\"114.713216\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"884.157192\" y=\"116.804681\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"881.456647\" y=\"118.80108\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"879.431239\" y=\"120.08448\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"877.277233\" y=\"121.130212\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"875.316123\" y=\"122.080879\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"873.194267\" y=\"122.366079\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"871.843995\" y=\"124.077278\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"870.879515\" y=\"124.980411\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"869.593541\" y=\"125.83601\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"868.596912\" y=\"126.54901\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"868.436165\" y=\"124.742744\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"868.532613\" y=\"122.413612\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"869.336346\" y=\"119.94188\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"870.654469\" y=\"118.325747\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.165488\" y=\"115.901548\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.58343\" y=\"115.045949\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.937072\" y=\"114.190349\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.55128\" y=\"114.000216\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.872774\" y=\"113.097083\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"871.843995\" y=\"112.384084\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"871.522501\" y=\"112.574217\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"871.940443\" y=\"112.289017\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"872.969222\" y=\"111.956284\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"873.965851\" y=\"111.053151\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"874.99463\" y=\"111.005618\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p181b0491f1)\">\n <use xlink:href=\"#C0_0_8169ed7cf8\" x=\"876.216305\" y=\"109.769752\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n </g>\n <g id=\"patch_108\">\n <path d=\"M 540.258125 284.4 \nL 540.258125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_109\">\n <path d=\"M 1042.458125 284.4 \nL 1042.458125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_110\">\n <path d=\"M 540.258125 284.4 \nL 1042.458125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_111\">\n <path d=\"M 540.258125 7.2 \nL 1042.458125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n <g id=\"axes_3\">\n <g id=\"patch_112\">\n <path d=\"M 38.058125 561.6 \nL 540.258125 561.6 \nL 540.258125 284.4 \nL 38.058125 284.4 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"PathCollection_2\">\n <defs>\n <path id=\"C1_0_24a5e5dcb6\" d=\"M 0 1.5 \nC 0.397805 1.5 0.77937 1.341951 1.06066 1.06066 \nC 1.341951 0.77937 1.5 0.397805 1.5 -0 \nC 1.5 -0.397805 1.341951 -0.77937 1.06066 -1.06066 \nC 0.77937 -1.341951 0.397805 -1.5 0 -1.5 \nC -0.397805 -1.5 -0.77937 -1.341951 -1.06066 -1.06066 \nC -1.341951 -0.77937 -1.5 -0.397805 -1.5 0 \nC -1.5 0.397805 -1.341951 0.77937 -1.06066 1.06066 \nC -0.77937 1.341951 -0.397805 1.5 0 1.5 \nz\n\"/>\n </defs>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"434.86562\" y=\"291.585602\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"433.918349\" y=\"291\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"433.746118\" y=\"291.532365\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"433.057194\" y=\"292.295422\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"432.023807\" y=\"293.644081\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"430.904305\" y=\"295.613833\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"429.354226\" y=\"296.785037\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"433.660003\" y=\"297.672313\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"439.171397\" y=\"298.43537\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"446.577334\" y=\"299.606574\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"443.993868\" y=\"301.789272\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"440.46313\" y=\"304.060698\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"436.243469\" y=\"306.864489\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"428.923648\" y=\"310.218391\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"422.723329\" y=\"313.749748\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"417.211934\" y=\"317.476306\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"409.37542\" y=\"321.238355\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"399.73048\" y=\"324.166364\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"387.502073\" y=\"327.325066\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"374.240279\" y=\"330.111111\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"363.21749\" y=\"332.648719\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"354.692052\" y=\"335.328292\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"348.319502\" y=\"337.546481\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"345.736035\" y=\"339.729179\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"342.980338\" y=\"341.787659\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"339.105139\" y=\"343.952611\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"337.124481\" y=\"346.295019\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"332.646473\" y=\"348.318008\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"331.440856\" y=\"349.950595\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"329.546314\" y=\"351.547691\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"330.407469\" y=\"354.174027\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"329.976891\" y=\"356.747126\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"328.168465\" y=\"359.30248\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"325.75723\" y=\"361.840089\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"324.551612\" y=\"363.934059\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"324.034919\" y=\"365.974793\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"322.65707\" y=\"368.28171\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"322.915417\" y=\"371.138738\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"323.001533\" y=\"373.889292\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"326.446154\" y=\"376.302682\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"329.287967\" y=\"377.811051\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"331.010278\" y=\"379.301674\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"332.474242\" y=\"380.685824\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"331.440856\" y=\"381.92801\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"326.446154\" y=\"383.773543\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"324.20715\" y=\"385.139948\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"321.106991\" y=\"386.470861\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"318.523524\" y=\"387.872757\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"317.317907\" y=\"388.351885\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"315.595596\" y=\"388.387376\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"314.820556\" y=\"387.784029\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"318.867987\" y=\"386.683807\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"322.398724\" y=\"386.027223\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"325.326652\" y=\"386.133696\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"331.785318\" y=\"386.08046\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"334.713246\" y=\"386.044969\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"340.82745\" y=\"385.707804\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"343.927609\" y=\"385.548094\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"343.410916\" y=\"385.885259\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"341.344143\" y=\"385.956241\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"336.435557\" y=\"386.541843\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"328.340696\" y=\"387.020972\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"320.15972\" y=\"387.677556\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"313.01213\" y=\"388.760032\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"305.0895\" y=\"390.090946\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"300.611492\" y=\"390.871748\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"293.291671\" y=\"391.759024\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"286.833005\" y=\"392.983464\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"279.168722\" y=\"394.917725\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"271.418324\" y=\"397.295624\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"267.887586\" y=\"399.194394\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"263.840156\" y=\"400.862472\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"260.653881\" y=\"402.477314\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"260.051072\" y=\"403.471063\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"261.687267\" y=\"403.435572\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"259.792726\" y=\"404.145392\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"258.15653\" y=\"404.730994\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"257.295375\" y=\"405.600524\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"258.673224\" y=\"407.00242\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"261.342805\" y=\"408.475297\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"261.25669\" y=\"410.232103\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"259.792726\" y=\"413.035894\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"258.15653\" y=\"415.715467\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"255.573064\" y=\"417.844928\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"249.975554\" y=\"420.293809\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"247.305972\" y=\"422.157088\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"245.583661\" y=\"424.357532\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"243.000195\" y=\"426.398266\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"240.933422\" y=\"428.119581\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"239.900036\" y=\"429.379512\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.919378\" y=\"430.53297\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"236.972107\" y=\"431.863884\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"235.938721\" y=\"433.070579\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"234.646988\" y=\"433.993345\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"234.819219\" y=\"434.774148\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"234.21641\" y=\"435.838879\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"233.699717\" y=\"436.637427\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"235.852605\" y=\"436.90361\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.833263\" y=\"436.637427\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"236.283183\" y=\"436.619681\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"234.99145\" y=\"437.311756\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"234.733103\" y=\"437.861867\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"235.422027\" y=\"438.270014\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"236.627645\" y=\"438.820125\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.144338\" y=\"439.831619\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"241.536231\" y=\"439.600928\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"245.239199\" y=\"439.299254\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"247.994896\" y=\"438.820125\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"254.88414\" y=\"437.418229\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"263.581809\" y=\"436.158298\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"271.418324\" y=\"435.217786\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"277.618643\" y=\"434.188546\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"286.316312\" y=\"432.467231\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"294.583404\" y=\"430.781408\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"302.333803\" y=\"429.042347\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"305.606193\" y=\"427.587215\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"309.91197\" y=\"426.043356\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"313.442708\" y=\"424.304295\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"310.256433\" y=\"423.133091\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"304.658922\" y=\"422.813672\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"300.955954\" y=\"422.22807\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"298.372488\" y=\"421.535995\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"291.827707\" y=\"420.950393\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"285.455157\" y=\"420.311555\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"278.221451\" y=\"420.098609\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"271.935017\" y=\"419.81468\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"264.012387\" y=\"419.796935\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"255.142486\" y=\"420.3293\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"249.458861\" y=\"420.737447\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"248.167128\" y=\"420.364791\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"244.550275\" y=\"420.258318\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"239.383342\" y=\"420.577737\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"235.594259\" y=\"420.914902\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"233.527486\" y=\"420.950393\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"235.594259\" y=\"420.418028\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"235.76649\" y=\"421.00363\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.316569\" y=\"421.429522\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"239.03888\" y=\"422.174834\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"239.383342\" y=\"423.931639\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.833263\" y=\"425.6707\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.574916\" y=\"427.232305\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"238.608302\" y=\"428.616455\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"239.986151\" y=\"430.461988\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"239.124996\" y=\"432.378504\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"236.283183\" y=\"434.028836\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"234.733103\" y=\"435.608187\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"232.321868\" y=\"437.418229\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"229.910633\" y=\"439.387981\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"229.652286\" y=\"440.54144\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"228.6189\" y=\"441.339988\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"227.585513\" y=\"442.351482\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"226.896589\" y=\"443.345231\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"226.121549\" y=\"444.001815\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"225.174278\" y=\"444.800363\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"223.365852\" y=\"445.332728\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"221.385194\" y=\"446.024803\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"221.040732\" y=\"446.273241\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"220.610154\" y=\"446.503932\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"218.629497\" y=\"446.894334\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"216.907186\" y=\"447.781609\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"215.09876\" y=\"448.420448\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"210.190174\" y=\"449.36096\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"205.023242\" y=\"450.301472\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"199.770194\" y=\"451.756604\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"195.722763\" y=\"453.548901\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"190.555831\" y=\"455.341198\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"184.527743\" y=\"457.15124\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"179.791388\" y=\"458.712845\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"174.968918\" y=\"460.167977\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"170.146447\" y=\"461.729583\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.099017\" y=\"463.149224\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"165.065631\" y=\"464.515628\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"164.032244\" y=\"465.953015\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"165.668439\" y=\"466.893527\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.099017\" y=\"468.011494\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"167.132404\" y=\"469.271426\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"167.821328\" y=\"470.44263\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.529595\" y=\"471.773543\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"164.807284\" y=\"473.530349\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"163.171089\" y=\"475.216173\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"162.223818\" y=\"476.618068\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"160.157045\" y=\"478.268401\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"157.315232\" y=\"480.13168\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"153.009455\" y=\"481.764267\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"150.253757\" y=\"483.077435\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"147.325829\" y=\"484.532567\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"144.397901\" y=\"486.236136\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"142.67559\" y=\"487.833233\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"140.608817\" y=\"489.607784\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"137.85312\" y=\"491.506554\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"132.255609\" y=\"493.689252\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"127.433139\" y=\"495.321839\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"123.213478\" y=\"496.989917\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"118.391007\" y=\"498.533777\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"111.501764\" y=\"500.432547\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"105.818138\" y=\"501.994152\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"99.703935\" y=\"503.715467\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"92.814692\" y=\"505.756201\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"87.131066\" y=\"507.708207\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"82.566942\" y=\"509.553741\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"77.744472\" y=\"511.896148\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"73.180348\" y=\"514.256302\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"69.305149\" y=\"516.509982\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"64.999372\" y=\"519.278282\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"61.726981\" y=\"521.940109\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"57.679551\" y=\"524.548699\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"55.354431\" y=\"526.891107\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.493276\" y=\"528.843114\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"53.115427\" y=\"530.724138\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"50.35973\" y=\"532.800363\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"50.015268\" y=\"535.018552\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"52.598734\" y=\"536.420448\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.148814\" y=\"537.769107\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.837738\" y=\"539.508167\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"55.698894\" y=\"541.424682\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"56.387818\" y=\"543.287961\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"57.248973\" y=\"544.849566\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"56.818396\" y=\"546.53539\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"56.73228\" y=\"548.008268\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"56.646165\" y=\"549.534382\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"57.076742\" y=\"550.510385\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.837738\" y=\"551.379915\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"53.287658\" y=\"552.178463\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.40716\" y=\"552.693083\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.665507\" y=\"553.136721\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"55.440547\" y=\"553.669087\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.579392\" y=\"554.148215\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"54.148814\" y=\"554.503126\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"53.976583\" y=\"554.84029\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"56.043356\" y=\"555\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"58.885169\" y=\"554.396653\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"62.588137\" y=\"553.562613\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"66.807798\" y=\"552.693083\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"68.185647\" y=\"552.036499\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"70.166304\" y=\"551.397661\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"71.974731\" y=\"550.723331\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"72.835886\" y=\"550.545876\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"75.247121\" y=\"550.226457\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"79.725129\" y=\"549.356927\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"82.136365\" y=\"548.451906\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"83.600329\" y=\"547.475902\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"85.236524\" y=\"546.837064\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"86.269911\" y=\"546.074007\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"97.464931\" y=\"543.25247\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"109.865569\" y=\"540.235733\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"122.266207\" y=\"537.148014\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"133.116765\" y=\"534.912079\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"142.761705\" y=\"532.516435\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"149.737064\" y=\"530.191773\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"158.176387\" y=\"527.529946\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"165.237862\" y=\"525.187538\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"169.71587\" y=\"523.164549\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"174.968918\" y=\"520.999597\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"170.921487\" y=\"519.242791\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.443479\" y=\"517.202057\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"162.396049\" y=\"515.108086\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"161.879356\" y=\"512.80117\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"162.396049\" y=\"510.210325\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"161.0182\" y=\"508.1341\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"157.918041\" y=\"506.537003\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"158.865312\" y=\"504.584997\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"160.673738\" y=\"502.95241\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"160.415391\" y=\"501.710224\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"161.448778\" y=\"500.0244\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"162.223818\" y=\"498.232103\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"162.051587\" y=\"496.546279\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"161.448778\" y=\"494.541036\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"161.79324\" y=\"492.376084\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"163.515551\" y=\"490.867715\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"165.754555\" y=\"489.30611\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"165.065631\" y=\"487.797741\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"165.926786\" y=\"486.324864\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"167.218519\" y=\"485.029441\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"167.304635\" y=\"485.632789\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.960172\" y=\"486.466828\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"167.304635\" y=\"487.265376\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.271248\" y=\"487.709014\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"163.257204\" y=\"488.152652\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"159.209774\" y=\"488.915709\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"157.487463\" y=\"489.448074\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"155.42069\" y=\"489.82073\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"155.248459\" y=\"489.30611\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"157.401347\" y=\"488.649526\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"159.382005\" y=\"488.010688\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"159.984814\" y=\"487.797741\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"161.190431\" y=\"487.513813\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"163.34332\" y=\"487.40734\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"166.443479\" y=\"487.318613\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"171.093718\" y=\"486.839484\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"175.571727\" y=\"485.810244\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"179.963619\" y=\"485.473079\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"182.288739\" y=\"484.851986\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"182.977663\" y=\"484.000202\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"183.322125\" y=\"483.503327\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"185.561129\" y=\"482.988707\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"189.005751\" y=\"481.959468\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"192.794835\" y=\"480.947973\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"195.378301\" y=\"480.397862\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"197.358958\" y=\"479.865497\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"200.459118\" y=\"478.658802\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"205.884397\" y=\"477.061706\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"210.104058\" y=\"475.748538\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"215.8738\" y=\"473.973987\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"223.02139\" y=\"472.02198\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"228.532784\" y=\"470.300665\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"231.719059\" y=\"468.685824\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"236.369298\" y=\"466.503126\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"240.58896\" y=\"464.462392\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"244.291928\" y=\"462.33293\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"243.86135\" y=\"460.860052\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"241.191769\" y=\"459.387175\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"237.747147\" y=\"458.748336\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"233.183023\" y=\"458.357935\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"227.241051\" y=\"458.038516\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"222.935274\" y=\"457.328695\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"220.179577\" y=\"456.530147\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"214.668182\" y=\"455.9268\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"210.190174\" y=\"455.447671\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"206.228859\" y=\"455.092761\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"204.248202\" y=\"454.950797\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.664735\" y=\"454.915306\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"200.02854\" y=\"455.092761\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"198.650691\" y=\"455.128252\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"197.703421\" y=\"455.075015\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"196.067225\" y=\"455.163743\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"193.483759\" y=\"455.607381\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"192.794835\" y=\"455.9268\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"192.019795\" y=\"456.139746\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"192.364257\" y=\"456.122\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"192.10591\" y=\"456.672111\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"194.258799\" y=\"457.31095\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"197.014496\" y=\"457.790079\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"198.392345\" y=\"458.730591\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"200.200771\" y=\"459.777576\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"199.942425\" y=\"461.055253\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"199.511847\" y=\"462.244202\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"199.425731\" y=\"463.539625\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"199.942425\" y=\"464.515628\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"199.942425\" y=\"465.26094\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.320273\" y=\"465.438395\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.148042\" y=\"465.562613\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"200.286887\" y=\"465.509377\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.061927\" y=\"465.349667\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"202.35366\" y=\"464.906029\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"205.798281\" y=\"464.58661\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"208.381748\" y=\"464.675338\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"209.329019\" y=\"464.639847\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"209.242903\" y=\"464.710829\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"208.898441\" y=\"464.710829\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"206.487206\" y=\"464.977011\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"204.592664\" y=\"464.959266\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"202.698122\" y=\"464.959266\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.57862\" y=\"464.74632\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"200.373002\" y=\"464.355919\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"198.392345\" y=\"464.107481\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"196.842265\" y=\"463.983263\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"194.689377\" y=\"464.249445\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"192.967066\" y=\"464.515628\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"191.675333\" y=\"464.852793\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"191.761448\" y=\"465.047994\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"190.900293\" y=\"465.651341\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"189.780791\" y=\"466.449889\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"186.766747\" y=\"467.141964\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"184.699974\" y=\"467.550111\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"184.613858\" y=\"467.266183\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"186.680631\" y=\"466.627344\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"190.211368\" y=\"466.148215\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"193.828221\" y=\"465.77556\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"197.617305\" y=\"465.331922\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.320273\" y=\"465.047994\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"205.453819\" y=\"464.764065\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"209.587365\" y=\"464.533374\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"213.118102\" y=\"464.657592\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"213.979258\" y=\"465.154467\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"214.237604\" y=\"465.527122\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"212.687525\" y=\"465.740069\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"210.448521\" y=\"465.917524\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"207.606708\" y=\"466.112724\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"204.937126\" y=\"466.148215\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"201.57862\" y=\"466.059488\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"196.067225\" y=\"466.520871\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"191.503102\" y=\"466.84029\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"185.647245\" y=\"467.940512\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"182.288739\" y=\"468.881024\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"178.327424\" y=\"469.661827\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"175.399495\" y=\"470.158701\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"173.074376\" y=\"470.371648\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"172.040989\" y=\"470.424884\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"171.782643\" y=\"470.247429\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"174.279993\" y=\"469.661827\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"179.877504\" y=\"468.792297\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"190.641946\" y=\"466.662835\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"205.884397\" y=\"464.001008\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"227.154936\" y=\"460.132486\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"254.539678\" y=\"455.25247\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"270.987746\" y=\"452.785844\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"291.827707\" y=\"449.431942\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"309.653624\" y=\"446.557169\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"328.857389\" y=\"443.203267\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"344.185956\" y=\"440.222021\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"359.772869\" y=\"436.992337\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"368.815\" y=\"433.851381\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"376.307052\" y=\"430.373261\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"375.015319\" y=\"426.948377\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"367.781614\" y=\"423.61222\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"371.484582\" y=\"420.063118\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"369.503925\" y=\"416.655979\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"369.417809\" y=\"413.213349\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"366.145419\" y=\"409.983666\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"363.045259\" y=\"406.949183\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"356.672709\" y=\"403.896955\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"351.764123\" y=\"400.826981\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"346.511075\" y=\"397.224642\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"343.497031\" y=\"393.728776\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"342.291414\" y=\"389.824763\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"339.621832\" y=\"386.222424\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"340.999681\" y=\"382.052228\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"341.085796\" y=\"378.378907\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"340.741334\" y=\"375.166969\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"340.741334\" y=\"372.647106\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"343.238685\" y=\"370.233716\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"344.616533\" y=\"369.098004\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"344.702649\" y=\"368.618875\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"347.2\" y=\"368.991531\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"347.458346\" y=\"370.677354\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"348.233386\" y=\"370.304699\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"345.477689\" y=\"370.996774\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"341.688605\" y=\"371.777576\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"338.071752\" y=\"373.268199\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"335.746633\" y=\"374.386167\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"333.852091\" y=\"375.575116\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"332.12978\" y=\"376.657592\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"331.613087\" y=\"377.828796\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"328.512927\" y=\"378.574108\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"326.876732\" y=\"379.106473\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"325.326652\" y=\"379.816294\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"324.034919\" y=\"380.366405\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"327.30731\" y=\"380.455132\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"331.526971\" y=\"380.401896\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"336.004979\" y=\"379.958258\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"338.932908\" y=\"379.230692\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"343.3248\" y=\"378.396653\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"344.87488\" y=\"378.165961\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"346.42496\" y=\"377.97076\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"346.769422\" y=\"378.183706\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"348.405617\" y=\"378.006251\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"349.69735\" y=\"378.574108\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"349.352888\" y=\"378.751563\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"349.869581\" y=\"378.520871\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"350.47239\" y=\"377.953015\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"352.108585\" y=\"377.402904\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"352.194701\" y=\"376.835047\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n <g clip-path=\"url(#p2d06c53310)\">\n <use xlink:href=\"#C1_0_24a5e5dcb6\" x=\"354.433705\" y=\"376.160718\" style=\"fill: #1f77b4; fill-opacity: 0.5\"/>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"xtick_1\">\n <g id=\"line2d_6\">\n <defs>\n <path id=\"mbf255e534c\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"120.630011\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 9 -->\n <g transform=\"translate(122.837511 573.69) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"206.745552\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 10 -->\n <g transform=\"translate(208.953052 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"292.861093\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 11 -->\n <g transform=\"translate(295.068593 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"378.976634\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- 12 -->\n <g transform=\"translate(381.184134 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_10\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"465.092175\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 13 -->\n <g transform=\"translate(467.299675 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- m10 -->\n <g transform=\"translate(277.925312 590.378438) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_3\">\n <g id=\"ytick_6\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"514.02561\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 9 -->\n <g transform=\"translate(25.968125 517.064985) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_7\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"460.78907\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 10 -->\n <g transform=\"translate(20.878125 463.828445) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_8\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"407.552531\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 11 -->\n <g transform=\"translate(20.878125 410.591906) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_9\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"354.315991\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 12 -->\n <g transform=\"translate(20.878125 357.355366) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_10\">\n <g id=\"line2d_15\">\n <g>\n <use xlink:href=\"#m2425a82b14\" x=\"38.058125\" y=\"301.079452\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- 13 -->\n <g transform=\"translate(20.878125 304.118827) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_18\">\n <!-- m30 -->\n <g transform=\"translate(14.798438 434.232813) rotate(-90) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_113\">\n <path d=\"M 38.058125 561.6 \nL 38.058125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_114\">\n <path d=\"M 540.258125 561.6 \nL 540.258125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_115\">\n <path d=\"M 38.058125 561.6 \nL 540.258125 561.6 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_116\">\n <path d=\"M 38.058125 284.4 \nL 540.258125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n <g id=\"axes_4\">\n <g id=\"patch_117\">\n <path d=\"M 540.258125 561.6 \nL 1042.458125 561.6 \nL 1042.458125 284.4 \nL 540.258125 284.4 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"patch_118\">\n <path d=\"M 552.215268 561.6 \nL 556.998125 561.6 \nL 556.998125 467.314286 \nL 552.215268 467.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_119\">\n <path d=\"M 556.998125 561.6 \nL 561.780982 561.6 \nL 561.780982 486.171429 \nL 556.998125 486.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_120\">\n <path d=\"M 561.780982 561.6 \nL 566.563839 561.6 \nL 566.563839 514.457143 \nL 561.780982 514.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_121\">\n <path d=\"M 566.563839 561.6 \nL 571.346696 561.6 \nL 571.346696 523.885714 \nL 566.563839 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_122\">\n <path d=\"M 571.346696 561.6 \nL 576.129554 561.6 \nL 576.129554 542.742857 \nL 571.346696 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_123\">\n <path d=\"M 576.129554 561.6 \nL 580.912411 561.6 \nL 580.912411 533.314286 \nL 576.129554 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_124\">\n <path d=\"M 580.912411 561.6 \nL 585.695268 561.6 \nL 585.695268 542.742857 \nL 580.912411 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_125\">\n <path d=\"M 585.695268 561.6 \nL 590.478125 561.6 \nL 590.478125 533.314286 \nL 585.695268 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_126\">\n <path d=\"M 590.478125 561.6 \nL 595.260982 561.6 \nL 595.260982 542.742857 \nL 590.478125 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_127\">\n <path d=\"M 595.260982 561.6 \nL 600.043839 561.6 \nL 600.043839 533.314286 \nL 595.260982 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_128\">\n <path d=\"M 600.043839 561.6 \nL 604.826696 561.6 \nL 604.826696 542.742857 \nL 600.043839 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_129\">\n <path d=\"M 604.826696 561.6 \nL 609.609554 561.6 \nL 609.609554 542.742857 \nL 604.826696 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_130\">\n <path d=\"M 609.609554 561.6 \nL 614.392411 561.6 \nL 614.392411 533.314286 \nL 609.609554 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_131\">\n <path d=\"M 614.392411 561.6 \nL 619.175268 561.6 \nL 619.175268 542.742857 \nL 614.392411 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_132\">\n <path d=\"M 619.175268 561.6 \nL 623.958125 561.6 \nL 623.958125 542.742857 \nL 619.175268 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_133\">\n <path d=\"M 623.958125 561.6 \nL 628.740982 561.6 \nL 628.740982 533.314286 \nL 623.958125 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_134\">\n <path d=\"M 628.740982 561.6 \nL 633.523839 561.6 \nL 633.523839 542.742857 \nL 628.740982 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_135\">\n <path d=\"M 633.523839 561.6 \nL 638.306696 561.6 \nL 638.306696 533.314286 \nL 633.523839 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_136\">\n <path d=\"M 638.306696 561.6 \nL 643.089554 561.6 \nL 643.089554 542.742857 \nL 638.306696 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_137\">\n <path d=\"M 643.089554 561.6 \nL 647.872411 561.6 \nL 647.872411 533.314286 \nL 643.089554 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_138\">\n <path d=\"M 647.872411 561.6 \nL 652.655268 561.6 \nL 652.655268 523.885714 \nL 647.872411 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_139\">\n <path d=\"M 652.655268 561.6 \nL 657.438125 561.6 \nL 657.438125 533.314286 \nL 652.655268 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_140\">\n <path d=\"M 657.438125 561.6 \nL 662.220982 561.6 \nL 662.220982 533.314286 \nL 657.438125 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_141\">\n <path d=\"M 662.220982 561.6 \nL 667.003839 561.6 \nL 667.003839 542.742857 \nL 662.220982 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_142\">\n <path d=\"M 667.003839 561.6 \nL 671.786696 561.6 \nL 671.786696 495.6 \nL 667.003839 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_143\">\n <path d=\"M 671.786696 561.6 \nL 676.569554 561.6 \nL 676.569554 429.6 \nL 671.786696 429.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_144\">\n <path d=\"M 676.569554 561.6 \nL 681.352411 561.6 \nL 681.352411 476.742857 \nL 676.569554 476.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_145\">\n <path d=\"M 681.352411 561.6 \nL 686.135268 561.6 \nL 686.135268 514.457143 \nL 681.352411 514.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_146\">\n <path d=\"M 686.135268 561.6 \nL 690.918125 561.6 \nL 690.918125 514.457143 \nL 686.135268 514.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_147\">\n <path d=\"M 690.918125 561.6 \nL 695.700982 561.6 \nL 695.700982 533.314286 \nL 690.918125 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_148\">\n <path d=\"M 695.700982 561.6 \nL 700.483839 561.6 \nL 700.483839 523.885714 \nL 695.700982 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_149\">\n <path d=\"M 700.483839 561.6 \nL 705.266696 561.6 \nL 705.266696 542.742857 \nL 700.483839 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_150\">\n <path d=\"M 705.266696 561.6 \nL 710.049554 561.6 \nL 710.049554 429.6 \nL 705.266696 429.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_151\">\n <path d=\"M 710.049554 561.6 \nL 714.832411 561.6 \nL 714.832411 316.457143 \nL 710.049554 316.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_152\">\n <path d=\"M 714.832411 561.6 \nL 719.615268 561.6 \nL 719.615268 297.6 \nL 714.832411 297.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_153\">\n <path d=\"M 719.615268 561.6 \nL 724.398125 561.6 \nL 724.398125 495.6 \nL 719.615268 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_154\">\n <path d=\"M 724.398125 561.6 \nL 729.180982 561.6 \nL 729.180982 476.742857 \nL 724.398125 476.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_155\">\n <path d=\"M 729.180982 561.6 \nL 733.963839 561.6 \nL 733.963839 382.457143 \nL 729.180982 382.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_156\">\n <path d=\"M 733.963839 561.6 \nL 738.746696 561.6 \nL 738.746696 542.742857 \nL 733.963839 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_157\">\n <path d=\"M 738.746696 561.6 \nL 743.529554 561.6 \nL 743.529554 533.314286 \nL 738.746696 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_158\">\n <path d=\"M 743.529554 561.6 \nL 748.312411 561.6 \nL 748.312411 523.885714 \nL 743.529554 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_159\">\n <path d=\"M 748.312411 561.6 \nL 753.095268 561.6 \nL 753.095268 505.028571 \nL 748.312411 505.028571 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_160\">\n <path d=\"M 753.095268 561.6 \nL 757.878125 561.6 \nL 757.878125 523.885714 \nL 753.095268 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_161\">\n <path d=\"M 757.878125 561.6 \nL 762.660982 561.6 \nL 762.660982 495.6 \nL 757.878125 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_162\">\n <path d=\"M 762.660982 561.6 \nL 767.443839 561.6 \nL 767.443839 448.457143 \nL 762.660982 448.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_163\">\n <path d=\"M 767.443839 561.6 \nL 772.226696 561.6 \nL 772.226696 476.742857 \nL 767.443839 476.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_164\">\n <path d=\"M 772.226696 561.6 \nL 777.009554 561.6 \nL 777.009554 523.885714 \nL 772.226696 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_165\">\n <path d=\"M 777.009554 561.6 \nL 781.792411 561.6 \nL 781.792411 495.6 \nL 777.009554 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_166\">\n <path d=\"M 781.792411 561.6 \nL 786.575268 561.6 \nL 786.575268 495.6 \nL 781.792411 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_167\">\n <path d=\"M 786.575268 561.6 \nL 791.358125 561.6 \nL 791.358125 514.457143 \nL 786.575268 514.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_168\">\n <path d=\"M 791.358125 561.6 \nL 796.140982 561.6 \nL 796.140982 429.6 \nL 791.358125 429.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_169\">\n <path d=\"M 796.140982 561.6 \nL 800.923839 561.6 \nL 800.923839 476.742857 \nL 796.140982 476.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_170\">\n <path d=\"M 800.923839 561.6 \nL 805.706696 561.6 \nL 805.706696 542.742857 \nL 800.923839 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_171\">\n <path d=\"M 805.706696 561.6 \nL 810.489554 561.6 \nL 810.489554 542.742857 \nL 805.706696 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_172\">\n <path d=\"M 810.489554 561.6 \nL 815.272411 561.6 \nL 815.272411 542.742857 \nL 810.489554 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_173\">\n <path d=\"M 815.272411 561.6 \nL 820.055268 561.6 \nL 820.055268 552.171429 \nL 815.272411 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_174\">\n <path d=\"M 820.055268 561.6 \nL 824.838125 561.6 \nL 824.838125 523.885714 \nL 820.055268 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_175\">\n <path d=\"M 824.838125 561.6 \nL 829.620982 561.6 \nL 829.620982 514.457143 \nL 824.838125 514.457143 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_176\">\n <path d=\"M 829.620982 561.6 \nL 834.403839 561.6 \nL 834.403839 542.742857 \nL 829.620982 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_177\">\n <path d=\"M 834.403839 561.6 \nL 839.186696 561.6 \nL 839.186696 533.314286 \nL 834.403839 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_178\">\n <path d=\"M 839.186696 561.6 \nL 843.969554 561.6 \nL 843.969554 552.171429 \nL 839.186696 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_179\">\n <path d=\"M 843.969554 561.6 \nL 848.752411 561.6 \nL 848.752411 533.314286 \nL 843.969554 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_180\">\n <path d=\"M 848.752411 561.6 \nL 853.535268 561.6 \nL 853.535268 523.885714 \nL 848.752411 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_181\">\n <path d=\"M 853.535268 561.6 \nL 858.318125 561.6 \nL 858.318125 439.028571 \nL 853.535268 439.028571 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_182\">\n <path d=\"M 858.318125 561.6 \nL 863.100982 561.6 \nL 863.100982 495.6 \nL 858.318125 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_183\">\n <path d=\"M 863.100982 561.6 \nL 867.883839 561.6 \nL 867.883839 542.742857 \nL 863.100982 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_184\">\n <path d=\"M 867.883839 561.6 \nL 872.666696 561.6 \nL 872.666696 401.314286 \nL 867.883839 401.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_185\">\n <path d=\"M 872.666696 561.6 \nL 877.449554 561.6 \nL 877.449554 457.885714 \nL 872.666696 457.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_186\">\n <path d=\"M 877.449554 561.6 \nL 882.232411 561.6 \nL 882.232411 523.885714 \nL 877.449554 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_187\">\n <path d=\"M 882.232411 561.6 \nL 887.015268 561.6 \nL 887.015268 495.6 \nL 882.232411 495.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_188\">\n <path d=\"M 887.015268 561.6 \nL 891.798125 561.6 \nL 891.798125 523.885714 \nL 887.015268 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_189\">\n <path d=\"M 891.798125 561.6 \nL 896.580982 561.6 \nL 896.580982 552.171429 \nL 891.798125 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_190\">\n <path d=\"M 896.580982 561.6 \nL 901.363839 561.6 \nL 901.363839 552.171429 \nL 896.580982 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_191\">\n <path d=\"M 901.363839 561.6 \nL 906.146696 561.6 \nL 906.146696 552.171429 \nL 901.363839 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_192\">\n <path d=\"M 906.146696 561.6 \nL 910.929554 561.6 \nL 910.929554 552.171429 \nL 906.146696 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_193\">\n <path d=\"M 910.929554 561.6 \nL 915.712411 561.6 \nL 915.712411 552.171429 \nL 910.929554 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_194\">\n <path d=\"M 915.712411 561.6 \nL 920.495268 561.6 \nL 920.495268 552.171429 \nL 915.712411 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_195\">\n <path d=\"M 920.495268 561.6 \nL 925.278125 561.6 \nL 925.278125 542.742857 \nL 920.495268 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_196\">\n <path d=\"M 925.278125 561.6 \nL 930.060982 561.6 \nL 930.060982 552.171429 \nL 925.278125 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_197\">\n <path d=\"M 930.060982 561.6 \nL 934.843839 561.6 \nL 934.843839 542.742857 \nL 930.060982 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_198\">\n <path d=\"M 934.843839 561.6 \nL 939.626696 561.6 \nL 939.626696 552.171429 \nL 934.843839 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_199\">\n <path d=\"M 939.626696 561.6 \nL 944.409554 561.6 \nL 944.409554 552.171429 \nL 939.626696 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_200\">\n <path d=\"M 944.409554 561.6 \nL 949.192411 561.6 \nL 949.192411 552.171429 \nL 944.409554 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_201\">\n <path d=\"M 949.192411 561.6 \nL 953.975268 561.6 \nL 953.975268 552.171429 \nL 949.192411 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_202\">\n <path d=\"M 953.975268 561.6 \nL 958.758125 561.6 \nL 958.758125 552.171429 \nL 953.975268 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_203\">\n <path d=\"M 958.758125 561.6 \nL 963.540982 561.6 \nL 963.540982 552.171429 \nL 958.758125 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_204\">\n <path d=\"M 963.540982 561.6 \nL 968.323839 561.6 \nL 968.323839 552.171429 \nL 963.540982 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_205\">\n <path d=\"M 968.323839 561.6 \nL 973.106696 561.6 \nL 973.106696 552.171429 \nL 968.323839 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_206\">\n <path d=\"M 973.106696 561.6 \nL 977.889554 561.6 \nL 977.889554 552.171429 \nL 973.106696 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_207\">\n <path d=\"M 977.889554 561.6 \nL 982.672411 561.6 \nL 982.672411 552.171429 \nL 977.889554 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_208\">\n <path d=\"M 982.672411 561.6 \nL 987.455268 561.6 \nL 987.455268 561.6 \nL 982.672411 561.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_209\">\n <path d=\"M 987.455268 561.6 \nL 992.238125 561.6 \nL 992.238125 552.171429 \nL 987.455268 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_210\">\n <path d=\"M 992.238125 561.6 \nL 997.020982 561.6 \nL 997.020982 552.171429 \nL 992.238125 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_211\">\n <path d=\"M 997.020982 561.6 \nL 1001.803839 561.6 \nL 1001.803839 552.171429 \nL 997.020982 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_212\">\n <path d=\"M 1001.803839 561.6 \nL 1006.586696 561.6 \nL 1006.586696 561.6 \nL 1001.803839 561.6 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_213\">\n <path d=\"M 1006.586696 561.6 \nL 1011.369554 561.6 \nL 1011.369554 542.742857 \nL 1006.586696 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_214\">\n <path d=\"M 1011.369554 561.6 \nL 1016.152411 561.6 \nL 1016.152411 552.171429 \nL 1011.369554 552.171429 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_215\">\n <path d=\"M 1016.152411 561.6 \nL 1020.935268 561.6 \nL 1020.935268 533.314286 \nL 1016.152411 533.314286 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_216\">\n <path d=\"M 1020.935268 561.6 \nL 1025.718125 561.6 \nL 1025.718125 542.742857 \nL 1020.935268 542.742857 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"patch_217\">\n <path d=\"M 1025.718125 561.6 \nL 1030.500982 561.6 \nL 1030.500982 523.885714 \nL 1025.718125 523.885714 \nz\n\" clip-path=\"url(#p48d8440180)\" style=\"fill: #1f77b4\"/>\n </g>\n <g id=\"matplotlib.axis_4\">\n <g id=\"xtick_6\">\n <g id=\"line2d_16\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"626.448091\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_19\">\n <!-- 9 -->\n <g transform=\"translate(628.655591 573.69) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_17\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"722.896108\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_20\">\n <!-- 10 -->\n <g transform=\"translate(725.103608 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_18\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"819.344124\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_21\">\n <!-- 11 -->\n <g transform=\"translate(821.551624 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_19\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"915.792141\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_22\">\n <!-- 12 -->\n <g transform=\"translate(917.999641 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_10\">\n <g id=\"line2d_20\">\n <g>\n <use xlink:href=\"#mbf255e534c\" x=\"1012.240158\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_23\">\n <!-- 13 -->\n <g transform=\"translate(1014.447658 578.78) rotate(-90) scale(0.08 -0.08)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_24\">\n <!-- m30 -->\n <g transform=\"translate(780.125312 590.378438) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_218\">\n <path d=\"M 540.258125 561.6 \nL 540.258125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_219\">\n <path d=\"M 1042.458125 561.6 \nL 1042.458125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_220\">\n <path d=\"M 540.258125 561.6 \nL 1042.458125 561.6 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_221\">\n <path d=\"M 540.258125 284.4 \nL 1042.458125 284.4 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"pef091b8817\">\n <rect x=\"38.058125\" y=\"7.2\" width=\"502.2\" height=\"277.2\"/>\n </clipPath>\n <clipPath id=\"p181b0491f1\">\n <rect x=\"540.258125\" y=\"7.2\" width=\"502.2\" height=\"277.2\"/>\n </clipPath>\n <clipPath id=\"p2d06c53310\">\n <rect x=\"38.058125\" y=\"284.4\" width=\"502.2\" height=\"277.2\"/>\n </clipPath>\n <clipPath id=\"p48d8440180\">\n <rect x=\"540.258125\" y=\"284.4\" width=\"502.2\" height=\"277.2\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 206
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:52:08.565634Z",
"start_time": "2024-12-29T05:52:08.557923Z"
}
},
"cell_type": "code",
"source": [
"# 构建回归方程(解方程)\n",
"df_test.dropna(inplace=True)\n",
"reg = np.polyfit(\n",
" df_test['m10'],\n",
" df_test['m30'],\n",
" # 多项式方程的最高次方\n",
" deg=3,\n",
")\n",
"reg"
],
"id": "aae5696d251e43fd",
"outputs": [
{
"data": {
"text/plain": [
"array([ 0.01308501, -0.37629985, 4.52481977, -10.67969834])"
]
},
"execution_count": 215,
"metadata": {},
"output_type": "execute_result"
}
],
"execution_count": 215
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-12-29T05:52:10.430030Z",
"start_time": "2024-12-29T05:52:10.358538Z"
}
},
"cell_type": "code",
"source": "df_test.plot(kind='scatter', x='m10', y='m30', figsize=(18, 10)).plot(df_test['m10'], np.polyval(reg, df_test['m10']), color='red')",
"id": "489b794346056bb0",
"outputs": [
{
"data": {
"text/plain": [
"[<matplotlib.lines.Line2D at 0x2c4efc80410>]"
]
},
"execution_count": 216,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"text/plain": [
"<Figure size 1800x1000 with 1 Axes>"
],
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1055.541817pt\" height=\"599.15625pt\" viewBox=\"0 0 1055.541817 599.15625\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2024-12-29T13:52:10.412166</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.10.0, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 599.15625 \nL 1055.541817 599.15625 \nL 1055.541817 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 40.603125 561.6 \nL 1045.003125 561.6 \nL 1045.003125 7.2 \nL 40.603125 7.2 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"PathCollection_1\">\n <defs>\n <path id=\"m8526a4cf45\" d=\"M 0 2.236068 \nC 0.593012 2.236068 1.161816 2.000462 1.581139 1.581139 \nC 2.000462 1.161816 2.236068 0.593012 2.236068 0 \nC 2.236068 -0.593012 2.000462 -1.161816 1.581139 -1.581139 \nC 1.161816 -2.000462 0.593012 -2.236068 0 -2.236068 \nC -0.593012 -2.236068 -1.161816 -2.000462 -1.581139 -1.581139 \nC -2.000462 -1.161816 -2.236068 -0.593012 -2.236068 0 \nC -2.236068 0.593012 -2.000462 1.161816 -1.581139 1.581139 \nC -1.161816 2.000462 -0.593012 2.236068 0 2.236068 \nz\n\" style=\"stroke: #1f77b4\"/>\n </defs>\n <g clip-path=\"url(#pe69a0d106a)\">\n <use xlink:href=\"#m8526a4cf45\" x=\"972.38216\" y=\"33.517967\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"970.201052\" y=\"32.4\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"969.804487\" y=\"33.416334\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"968.218227\" y=\"34.873079\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"965.838837\" y=\"37.447792\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"963.261165\" y=\"41.208227\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"959.69208\" y=\"43.444162\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"969.606205\" y=\"45.138052\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"982.296285\" y=\"46.594797\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"999.34858\" y=\"48.830732\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"993.400105\" y=\"52.997701\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"985.270522\" y=\"57.334059\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"975.55468\" y=\"62.686751\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"958.700667\" y=\"69.089655\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"944.424327\" y=\"75.831337\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"931.734247\" y=\"82.945675\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"913.69054\" y=\"90.127768\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"891.4829\" y=\"95.717604\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"863.326785\" y=\"101.747852\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"832.79128\" y=\"107.066667\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"807.41112\" y=\"111.911192\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"787.781153\" y=\"117.026739\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"773.108248\" y=\"121.261464\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"767.159773\" y=\"125.428433\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"760.814733\" y=\"129.358258\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"751.89202\" y=\"133.491349\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"747.331523\" y=\"137.963218\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"737.020833\" y=\"141.825287\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"734.244878\" y=\"144.942045\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"729.882663\" y=\"147.991047\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"731.865488\" y=\"153.004961\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"730.874076\" y=\"157.917241\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"726.710143\" y=\"162.795644\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"721.158233\" y=\"167.640169\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"718.382278\" y=\"171.63775\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"717.192583\" y=\"175.533696\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"714.020063\" y=\"179.93781\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"714.614911\" y=\"185.392136\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"714.813193\" y=\"190.643194\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"722.744493\" y=\"195.250575\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"729.287816\" y=\"198.130188\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"733.253466\" y=\"200.975923\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"736.624268\" y=\"203.618391\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"734.244878\" y=\"205.989837\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"722.744493\" y=\"209.513128\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"717.589148\" y=\"212.121718\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"710.450978\" y=\"214.662553\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"704.502503\" y=\"217.338899\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"701.726548\" y=\"218.2536\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"697.760898\" y=\"218.321355\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"695.976356\" y=\"217.16951\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"705.295633\" y=\"215.069087\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"713.425216\" y=\"213.815608\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"720.166821\" y=\"214.018875\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"735.038008\" y=\"213.917241\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"741.779613\" y=\"213.849486\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"755.85767\" y=\"213.205808\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"762.99584\" y=\"212.900907\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"761.806145\" y=\"213.544586\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"757.047365\" y=\"213.680097\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"745.745263\" y=\"214.798064\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"727.106708\" y=\"215.712765\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"708.269871\" y=\"216.966243\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"691.812423\" y=\"219.032789\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"673.570433\" y=\"221.573624\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"663.259743\" y=\"223.064247\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"646.405731\" y=\"224.758137\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"631.534543\" y=\"227.095705\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"613.887401\" y=\"230.788385\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"596.041976\" y=\"235.32801\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"587.912394\" y=\"238.952934\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"578.593116\" y=\"242.137447\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"571.256664\" y=\"245.220327\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"569.868686\" y=\"247.117483\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"573.636054\" y=\"247.049728\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"569.273839\" y=\"248.40484\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"565.506471\" y=\"249.522807\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"563.523646\" y=\"251.182819\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"566.696166\" y=\"253.859165\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"572.842924\" y=\"256.671022\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"572.644641\" y=\"260.024924\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"569.273839\" y=\"265.377616\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"565.506471\" y=\"270.493164\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"559.557996\" y=\"274.5585\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"546.669634\" y=\"279.233636\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"540.522876\" y=\"282.790805\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"536.557226\" y=\"286.991652\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"530.608751\" y=\"290.887598\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"525.849971\" y=\"294.173745\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"523.470581\" y=\"296.579068\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"518.910084\" y=\"298.781125\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"516.728976\" y=\"301.32196\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"514.349586\" y=\"303.62565\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"511.375349\" y=\"305.387296\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"511.771914\" y=\"306.877919\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"510.383936\" y=\"308.910587\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"509.194241\" y=\"310.435088\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"514.151304\" y=\"310.943255\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"518.711801\" y=\"310.435088\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"515.142716\" y=\"310.40121\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"512.168479\" y=\"311.722444\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"511.573631\" y=\"312.772656\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"513.159891\" y=\"313.551845\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"515.935846\" y=\"314.602057\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"517.125541\" y=\"316.533091\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"527.237949\" y=\"316.09268\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"535.764096\" y=\"315.516757\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"542.109136\" y=\"314.602057\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"557.971736\" y=\"311.925711\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"577.998269\" y=\"309.520387\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"596.041976\" y=\"307.724864\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"610.318316\" y=\"305.759952\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"630.344848\" y=\"302.473805\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"649.379968\" y=\"299.255414\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"667.225393\" y=\"295.93539\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"674.760128\" y=\"293.157411\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"684.674253\" y=\"290.210042\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"692.803836\" y=\"286.890018\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"685.467383\" y=\"284.654083\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"672.579021\" y=\"284.044283\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"664.052873\" y=\"282.926316\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"658.104398\" y=\"281.605082\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"643.034928\" y=\"280.487114\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"628.362023\" y=\"279.267514\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"611.706293\" y=\"278.86098\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"597.231671\" y=\"278.318935\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"578.989681\" y=\"278.285057\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"558.566584\" y=\"279.301391\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"545.479939\" y=\"280.080581\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"542.505701\" y=\"279.369147\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"534.177836\" y=\"279.16588\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"522.280886\" y=\"279.775681\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"513.556456\" y=\"280.419359\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"508.797676\" y=\"280.487114\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"513.556456\" y=\"279.47078\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"513.953021\" y=\"280.588748\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"517.522106\" y=\"281.401815\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"521.487756\" y=\"282.824682\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"522.280886\" y=\"286.178584\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"518.711801\" y=\"289.498609\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"518.116954\" y=\"292.479855\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"520.496344\" y=\"295.122323\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"523.668864\" y=\"298.645614\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"521.686039\" y=\"302.304416\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"515.142716\" y=\"305.455051\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"511.573631\" y=\"308.470175\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"506.021721\" y=\"311.925711\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"500.469811\" y=\"315.686146\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"499.874964\" y=\"317.888203\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"497.495574\" y=\"319.412704\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"495.116184\" y=\"321.343739\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"493.529924\" y=\"323.240895\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"491.745381\" y=\"324.494374\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"489.564274\" y=\"326.018875\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"485.400341\" y=\"327.035209\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"480.839844\" y=\"328.356443\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"480.046714\" y=\"328.830732\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"479.055301\" y=\"329.271143\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"474.494804\" y=\"330.016455\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"470.529154\" y=\"331.710345\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"466.365222\" y=\"332.929946\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"455.063119\" y=\"334.725469\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"443.166169\" y=\"336.520992\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"431.070937\" y=\"339.298972\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"421.751659\" y=\"342.720629\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"409.854709\" y=\"346.142287\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"395.974934\" y=\"349.597822\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"385.069397\" y=\"352.579068\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"373.965577\" y=\"355.357048\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"362.861757\" y=\"358.338294\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"353.542479\" y=\"361.048518\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"351.163089\" y=\"363.657108\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"348.783699\" y=\"366.40121\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"352.551067\" y=\"368.196733\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"353.542479\" y=\"370.331034\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"355.921869\" y=\"372.736358\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"357.508129\" y=\"374.972293\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"354.533892\" y=\"377.513128\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"350.568242\" y=\"380.86703\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"346.800874\" y=\"384.08542\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"344.619767\" y=\"386.761766\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"339.860987\" y=\"389.912402\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"333.317665\" y=\"393.46957\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"323.40354\" y=\"396.586328\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"317.0585\" y=\"399.093285\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"310.316895\" y=\"401.871264\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"303.57529\" y=\"405.123533\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"299.60964\" y=\"408.172535\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"294.85086\" y=\"411.560315\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"288.50582\" y=\"415.185239\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"275.617457\" y=\"419.352208\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"264.513637\" y=\"422.468966\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"254.797795\" y=\"425.653479\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"243.693975\" y=\"428.600847\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"227.831375\" y=\"432.225771\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"214.74473\" y=\"435.207018\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"200.666673\" y=\"438.493164\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"184.804073\" y=\"442.389111\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"171.717428\" y=\"446.115668\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"161.208455\" y=\"449.638959\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"150.104635\" y=\"454.110829\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"139.595663\" y=\"458.616576\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"130.67295\" y=\"462.919056\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"120.758825\" y=\"468.203993\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"113.22409\" y=\"473.285662\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"103.904813\" y=\"478.265699\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"98.551185\" y=\"482.737568\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"96.56836\" y=\"486.464126\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"93.39584\" y=\"490.055172\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"87.0508\" y=\"494.018875\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"86.25767\" y=\"498.2536\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"92.206145\" y=\"500.929946\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"95.77523\" y=\"503.504658\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"97.36149\" y=\"506.824682\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"99.344315\" y=\"510.483485\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"100.930575\" y=\"514.040653\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"102.9134\" y=\"517.0219\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"101.921988\" y=\"520.24029\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"101.723705\" y=\"523.052148\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"101.525423\" y=\"525.965638\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"102.516835\" y=\"527.828917\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"97.36149\" y=\"529.488929\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"93.792405\" y=\"531.01343\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"96.370078\" y=\"531.995886\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"96.964925\" y=\"532.842831\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"98.749468\" y=\"533.859165\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"96.766643\" y=\"534.773866\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"95.77523\" y=\"535.451422\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"95.378665\" y=\"536.0951\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"100.137445\" y=\"536.4\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"106.680768\" y=\"535.248155\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"115.206915\" y=\"533.655898\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"124.922758\" y=\"531.995886\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"128.095278\" y=\"530.742408\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"132.655775\" y=\"529.522807\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"136.819708\" y=\"528.235451\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"138.802533\" y=\"527.896673\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"144.354443\" y=\"527.286872\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"154.665133\" y=\"525.62686\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"160.217043\" y=\"523.899093\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"163.587845\" y=\"522.035814\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"167.355213\" y=\"520.816213\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"169.734603\" y=\"519.359468\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"195.511328\" y=\"513.972898\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"224.064007\" y=\"508.213672\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"252.616687\" y=\"502.318935\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"277.600282\" y=\"498.050333\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"299.807922\" y=\"493.47683\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"315.868805\" y=\"489.038838\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"335.30049\" y=\"483.957169\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"351.559654\" y=\"479.485299\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"361.870344\" y=\"475.62323\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"373.965577\" y=\"471.490139\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"364.646299\" y=\"468.136237\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"354.335609\" y=\"464.24029\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"345.016332\" y=\"460.24271\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"343.826637\" y=\"455.838596\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"345.016332\" y=\"450.892438\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"341.843812\" y=\"446.928736\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"334.705642\" y=\"443.879734\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"336.88675\" y=\"440.153176\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"341.050682\" y=\"437.036419\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"340.455835\" y=\"434.664973\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"342.835224\" y=\"431.446582\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"344.619767\" y=\"428.024924\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"344.223202\" y=\"424.806534\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"342.835224\" y=\"420.978342\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"343.628354\" y=\"416.845251\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"347.594004\" y=\"413.965638\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"352.749349\" y=\"410.984392\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"351.163089\" y=\"408.104779\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"353.145914\" y=\"405.292922\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"356.120152\" y=\"402.819843\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"356.318434\" y=\"403.971688\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"355.525304\" y=\"405.563944\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"356.318434\" y=\"407.088445\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"353.939044\" y=\"407.93539\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"346.999157\" y=\"408.782335\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"337.67988\" y=\"410.23908\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"333.71423\" y=\"411.255414\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"328.95545\" y=\"411.966848\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"328.558885\" y=\"410.984392\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"333.515947\" y=\"409.730913\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"338.076445\" y=\"408.511313\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"339.464422\" y=\"408.104779\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"342.240377\" y=\"407.562734\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"347.197439\" y=\"407.359468\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"354.335609\" y=\"407.190079\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"365.042864\" y=\"406.275378\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"375.353554\" y=\"404.310466\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"385.465962\" y=\"403.666788\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"390.819589\" y=\"402.481065\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"392.405849\" y=\"400.85493\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"393.198979\" y=\"399.906352\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"398.354324\" y=\"398.923896\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"406.285624\" y=\"396.958984\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"415.010054\" y=\"395.027949\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"420.958529\" y=\"393.977737\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"425.519027\" y=\"392.961404\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"432.657197\" y=\"390.657713\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"445.148994\" y=\"387.608711\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"454.864837\" y=\"385.101754\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"468.149764\" y=\"381.713975\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"484.607211\" y=\"377.987417\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"497.297291\" y=\"374.70127\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"504.633744\" y=\"371.618391\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"515.340999\" y=\"367.451422\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"525.056841\" y=\"363.555475\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"533.582989\" y=\"359.490139\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"532.591576\" y=\"356.678282\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"526.444819\" y=\"353.866425\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"518.513519\" y=\"352.646824\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"508.004546\" y=\"351.901512\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"494.323054\" y=\"351.291712\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"484.408929\" y=\"349.9366\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"478.063889\" y=\"348.412099\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"465.373809\" y=\"347.260254\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"455.063119\" y=\"346.345554\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"445.942124\" y=\"345.667998\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"441.381627\" y=\"345.396975\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"435.433152\" y=\"345.32922\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"431.665784\" y=\"345.667998\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"428.493264\" y=\"345.735753\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"426.312157\" y=\"345.63412\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"422.544789\" y=\"345.803509\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"416.596314\" y=\"346.650454\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"415.010054\" y=\"347.260254\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"413.225512\" y=\"347.666788\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"414.018642\" y=\"347.63291\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"413.423794\" y=\"348.683122\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"418.380857\" y=\"349.902722\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"424.725897\" y=\"350.817423\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"427.898417\" y=\"352.612946\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"432.062349\" y=\"354.611736\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"431.467502\" y=\"357.050938\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"430.476089\" y=\"359.32075\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"430.277807\" y=\"361.793829\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"431.467502\" y=\"363.657108\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"431.467502\" y=\"365.079976\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"434.640022\" y=\"365.418754\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"434.243457\" y=\"365.655898\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"432.260632\" y=\"365.554265\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"434.045174\" y=\"365.249365\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"437.019412\" y=\"364.40242\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"444.950712\" y=\"363.792619\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"450.899187\" y=\"363.962008\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"453.080294\" y=\"363.894253\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"452.882012\" y=\"364.029764\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"452.088882\" y=\"364.029764\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"446.536972\" y=\"364.537931\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"442.174757\" y=\"364.504053\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"437.812542\" y=\"364.504053\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"435.234869\" y=\"364.09752\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"432.458914\" y=\"363.352208\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"427.898417\" y=\"362.877919\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"424.329332\" y=\"362.640774\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"419.372269\" y=\"363.148941\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"415.406619\" y=\"363.657108\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"412.432382\" y=\"364.300786\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"412.630664\" y=\"364.673442\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"410.647839\" y=\"365.825287\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"408.070167\" y=\"367.349788\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"401.130279\" y=\"368.671022\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"396.371499\" y=\"369.450212\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"396.173217\" y=\"368.908167\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"400.931997\" y=\"367.688566\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"409.061579\" y=\"366.773866\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"417.389444\" y=\"366.062432\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"426.113874\" y=\"365.215487\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"434.640022\" y=\"364.673442\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"444.157582\" y=\"364.131397\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"453.675142\" y=\"363.690986\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"461.804724\" y=\"363.928131\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"463.787549\" y=\"364.876709\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"464.382397\" y=\"365.588143\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"460.813312\" y=\"365.994676\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"455.657967\" y=\"366.333454\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"449.114644\" y=\"366.70611\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"442.967887\" y=\"366.773866\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"435.234869\" y=\"366.604477\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"422.544789\" y=\"367.485299\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"412.035817\" y=\"368.0951\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"398.552607\" y=\"370.195523\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"390.819589\" y=\"371.991047\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"381.698594\" y=\"373.48167\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"374.956989\" y=\"374.430248\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"369.603362\" y=\"374.836782\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"367.223972\" y=\"374.938415\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"366.629124\" y=\"374.599637\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"372.379317\" y=\"373.48167\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"385.267679\" y=\"371.821658\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"410.052992\" y=\"367.756322\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"445.148994\" y=\"362.674652\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"494.124771\" y=\"355.289292\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"557.178606\" y=\"345.972898\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"595.050564\" y=\"341.263884\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"643.034928\" y=\"334.86098\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"684.079406\" y=\"329.372777\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"728.296403\" y=\"322.969873\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"763.590688\" y=\"317.278403\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"799.47982\" y=\"311.112644\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"820.299483\" y=\"305.116273\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"837.55006\" y=\"298.476225\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"834.575823\" y=\"291.93781\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"817.920093\" y=\"285.568784\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"826.44624\" y=\"278.793224\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"821.885743\" y=\"272.288687\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"821.68746\" y=\"265.716394\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"814.152725\" y=\"259.550635\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"807.014555\" y=\"253.757532\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"792.34165\" y=\"247.930551\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"781.039548\" y=\"242.069691\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"768.944315\" y=\"235.192498\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"762.004428\" y=\"228.518572\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"759.228473\" y=\"221.065457\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"753.081715\" y=\"214.188264\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"756.254235\" y=\"206.226981\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"756.452518\" y=\"199.214277\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"755.659388\" y=\"193.082396\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"755.659388\" y=\"188.271748\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"761.40958\" y=\"183.664368\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"764.5821\" y=\"181.496189\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"764.780383\" y=\"180.581488\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"770.530575\" y=\"181.292922\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"771.125423\" y=\"184.511313\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"772.909965\" y=\"183.799879\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"766.564925\" y=\"185.121113\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"757.840495\" y=\"186.611736\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"749.51263\" y=\"189.457471\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"744.159003\" y=\"191.591773\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"739.796788\" y=\"193.861585\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"735.831138\" y=\"195.928131\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"734.641443\" y=\"198.164065\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"727.503273\" y=\"199.586933\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"723.735906\" y=\"200.603267\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"720.166821\" y=\"201.958379\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"717.192583\" y=\"203.00859\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"724.727318\" y=\"203.177979\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"734.443161\" y=\"203.076346\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"744.75385\" y=\"202.229401\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"751.495455\" y=\"200.840411\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"761.607863\" y=\"199.248155\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"765.176948\" y=\"198.807743\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"768.746033\" y=\"198.435088\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"769.539163\" y=\"198.841621\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"773.30653\" y=\"198.502843\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"776.280768\" y=\"199.586933\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"775.487638\" y=\"199.925711\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"776.677333\" y=\"199.485299\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"778.06531\" y=\"198.40121\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"781.832678\" y=\"197.350998\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"782.03096\" y=\"196.266909\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n <use xlink:href=\"#m8526a4cf45\" x=\"787.186305\" y=\"194.979552\" style=\"fill: #1f77b4; stroke: #1f77b4\"/>\n </g>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m83aedba886\" d=\"M 0 0 \nL 0 3.5 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m83aedba886\" x=\"50.566821\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 8 -->\n <g transform=\"translate(47.385571 576.198437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-38\" d=\"M 2034 2216 \nQ 1584 2216 1326 1975 \nQ 1069 1734 1069 1313 \nQ 1069 891 1326 650 \nQ 1584 409 2034 409 \nQ 2484 409 2743 651 \nQ 3003 894 3003 1313 \nQ 3003 1734 2745 1975 \nQ 2488 2216 2034 2216 \nz\nM 1403 2484 \nQ 997 2584 770 2862 \nQ 544 3141 544 3541 \nQ 544 4100 942 4425 \nQ 1341 4750 2034 4750 \nQ 2731 4750 3128 4425 \nQ 3525 4100 3525 3541 \nQ 3525 3141 3298 2862 \nQ 3072 2584 2669 2484 \nQ 3125 2378 3379 2068 \nQ 3634 1759 3634 1313 \nQ 3634 634 3220 271 \nQ 2806 -91 2034 -91 \nQ 1263 -91 848 271 \nQ 434 634 434 1313 \nQ 434 1759 690 2068 \nQ 947 2378 1403 2484 \nz\nM 1172 3481 \nQ 1172 3119 1398 2916 \nQ 1625 2713 2034 2713 \nQ 2441 2713 2670 2916 \nQ 2900 3119 2900 3481 \nQ 2900 3844 2670 4047 \nQ 2441 4250 2034 4250 \nQ 1625 4250 1398 4047 \nQ 1172 3844 1172 3481 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m83aedba886\" x=\"248.84932\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 9 -->\n <g transform=\"translate(245.66807 576.198437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-39\" d=\"M 703 97 \nL 703 672 \nQ 941 559 1184 500 \nQ 1428 441 1663 441 \nQ 2288 441 2617 861 \nQ 2947 1281 2994 2138 \nQ 2813 1869 2534 1725 \nQ 2256 1581 1919 1581 \nQ 1219 1581 811 2004 \nQ 403 2428 403 3163 \nQ 403 3881 828 4315 \nQ 1253 4750 1959 4750 \nQ 2769 4750 3195 4129 \nQ 3622 3509 3622 2328 \nQ 3622 1225 3098 567 \nQ 2575 -91 1691 -91 \nQ 1453 -91 1209 -44 \nQ 966 3 703 97 \nz\nM 1959 2075 \nQ 2384 2075 2632 2365 \nQ 2881 2656 2881 3163 \nQ 2881 3666 2632 3958 \nQ 2384 4250 1959 4250 \nQ 1534 4250 1286 3958 \nQ 1038 3666 1038 3163 \nQ 1038 2656 1286 2365 \nQ 1534 2075 1959 2075 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m83aedba886\" x=\"447.131819\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 10 -->\n <g transform=\"translate(440.769319 576.198437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-31\" d=\"M 794 531 \nL 1825 531 \nL 1825 4091 \nL 703 3866 \nL 703 4441 \nL 1819 4666 \nL 2450 4666 \nL 2450 531 \nL 3481 531 \nL 3481 0 \nL 794 0 \nL 794 531 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"DejaVuSans-30\" d=\"M 2034 4250 \nQ 1547 4250 1301 3770 \nQ 1056 3291 1056 2328 \nQ 1056 1369 1301 889 \nQ 1547 409 2034 409 \nQ 2525 409 2770 889 \nQ 3016 1369 3016 2328 \nQ 3016 3291 2770 3770 \nQ 2525 4250 2034 4250 \nz\nM 2034 4750 \nQ 2819 4750 3233 4129 \nQ 3647 3509 3647 2328 \nQ 3647 1150 3233 529 \nQ 2819 -91 2034 -91 \nQ 1250 -91 836 529 \nQ 422 1150 422 2328 \nQ 422 3509 836 4129 \nQ 1250 4750 2034 4750 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m83aedba886\" x=\"645.414318\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 11 -->\n <g transform=\"translate(639.051818 576.198437) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m83aedba886\" x=\"843.696818\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 12 -->\n <g transform=\"translate(837.334318 576.198437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-32\" d=\"M 1228 531 \nL 3431 531 \nL 3431 0 \nL 469 0 \nL 469 531 \nQ 828 903 1448 1529 \nQ 2069 2156 2228 2338 \nQ 2531 2678 2651 2914 \nQ 2772 3150 2772 3378 \nQ 2772 3750 2511 3984 \nQ 2250 4219 1831 4219 \nQ 1534 4219 1204 4116 \nQ 875 4013 500 3803 \nL 500 4441 \nQ 881 4594 1212 4672 \nQ 1544 4750 1819 4750 \nQ 2544 4750 2975 4387 \nQ 3406 4025 3406 3419 \nQ 3406 3131 3298 2873 \nQ 3191 2616 2906 2266 \nQ 2828 2175 2409 1742 \nQ 1991 1309 1228 531 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#m83aedba886\" x=\"1041.979317\" y=\"561.6\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 13 -->\n <g transform=\"translate(1035.616817 576.198437) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-33\" d=\"M 2597 2516 \nQ 3050 2419 3304 2112 \nQ 3559 1806 3559 1356 \nQ 3559 666 3084 287 \nQ 2609 -91 1734 -91 \nQ 1441 -91 1130 -33 \nQ 819 25 488 141 \nL 488 750 \nQ 750 597 1062 519 \nQ 1375 441 1716 441 \nQ 2309 441 2620 675 \nQ 2931 909 2931 1356 \nQ 2931 1769 2642 2001 \nQ 2353 2234 1838 2234 \nL 1294 2234 \nL 1294 2753 \nL 1863 2753 \nQ 2328 2753 2575 2939 \nQ 2822 3125 2822 3475 \nQ 2822 3834 2567 4026 \nQ 2313 4219 1838 4219 \nQ 1578 4219 1281 4162 \nQ 984 4106 628 3988 \nL 628 4550 \nQ 988 4650 1302 4700 \nQ 1616 4750 1894 4750 \nQ 2613 4750 3031 4423 \nQ 3450 4097 3450 3541 \nQ 3450 3153 3228 2886 \nQ 3006 2619 2597 2516 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- m10 -->\n <g transform=\"translate(531.570313 589.876562) scale(0.1 -0.1)\">\n <defs>\n <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 \nQ 3544 3216 3844 3400 \nQ 4144 3584 4550 3584 \nQ 5097 3584 5394 3201 \nQ 5691 2819 5691 2113 \nL 5691 0 \nL 5113 0 \nL 5113 2094 \nQ 5113 2597 4934 2840 \nQ 4756 3084 4391 3084 \nQ 3944 3084 3684 2787 \nQ 3425 2491 3425 1978 \nL 3425 0 \nL 2847 0 \nL 2847 2094 \nQ 2847 2600 2669 2842 \nQ 2491 3084 2119 3084 \nQ 1678 3084 1418 2786 \nQ 1159 2488 1159 1978 \nL 1159 0 \nL 581 0 \nL 581 3500 \nL 1159 3500 \nL 1159 2956 \nQ 1356 3278 1631 3431 \nQ 1906 3584 2284 3584 \nQ 2666 3584 2933 3390 \nQ 3200 3197 3328 2828 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_7\">\n <defs>\n <path id=\"m68d49ca65d\" d=\"M 0 0 \nL -3.5 0 \n\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </defs>\n <g>\n <use xlink:href=\"#m68d49ca65d\" x=\"40.603125\" y=\"559.809558\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 8 -->\n <g transform=\"translate(27.240625 563.608777) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-38\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#m68d49ca65d\" x=\"40.603125\" y=\"458.176165\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 9 -->\n <g transform=\"translate(27.240625 461.975383) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-39\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#m68d49ca65d\" x=\"40.603125\" y=\"356.542771\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- 10 -->\n <g transform=\"translate(20.878125 360.341989) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_10\">\n <g>\n <use xlink:href=\"#m68d49ca65d\" x=\"40.603125\" y=\"254.909377\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 11 -->\n <g transform=\"translate(20.878125 258.708596) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#m68d49ca65d\" x=\"40.603125\" y=\"153.275983\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 12 -->\n <g transform=\"translate(20.878125 157.075202) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_6\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#m68d49ca65d\" x=\"40.603125\" y=\"51.642589\" style=\"stroke: #000000; stroke-width: 0.8\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 13 -->\n <g transform=\"translate(20.878125 55.441808) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-31\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(63.623047 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- m30 -->\n <g transform=\"translate(14.798438 295.632812) rotate(-90) scale(0.1 -0.1)\">\n <use xlink:href=\"#DejaVuSans-6d\"/>\n <use xlink:href=\"#DejaVuSans-33\" transform=\"translate(97.412109 0)\"/>\n <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(161.035156 0)\"/>\n </g>\n </g>\n </g>\n <g id=\"line2d_13\">\n <path d=\"M 972.38216 68.989045 \nL 959.69208 77.303395 \nL 982.296285 62.423911 \nL 999.34858 50.98606 \nL 975.55468 66.894898 \nL 958.700667 77.948799 \nL 931.734247 95.278067 \nL 913.69054 106.636614 \nL 891.4829 120.366013 \nL 863.326785 137.392325 \nL 832.79128 155.401191 \nL 807.41112 170.028637 \nL 773.108248 189.338174 \nL 747.331523 203.522566 \nL 717.192583 219.778943 \nL 695.976356 231.02456 \nL 741.779613 206.543037 \nL 762.99584 194.934931 \nL 727.106708 214.468957 \nL 691.812423 233.213438 \nL 663.259743 248.070556 \nL 631.534543 264.287648 \nL 596.041976 282.106685 \nL 559.557996 300.11347 \nL 516.728976 320.917403 \nL 509.194241 324.545612 \nL 542.109136 308.628676 \nL 577.998269 291.048454 \nL 610.318316 274.977629 \nL 649.379968 255.201409 \nL 684.674253 236.952349 \nL 692.803836 232.692805 \nL 664.052873 247.661329 \nL 643.034928 258.442389 \nL 611.706293 274.281845 \nL 578.989681 290.559045 \nL 534.177836 312.480657 \nL 489.564274 333.959814 \nL 443.166169 356.030332 \nL 373.965577 388.658781 \nL 275.617457 435.037185 \nL 227.831375 457.831231 \nL 184.804073 478.626557 \nL 150.104635 495.641941 \nL 113.22409 514.018243 \nL 86.25767 527.673658 \nL 138.802533 501.239211 \nL 169.734603 485.986297 \nL 195.511328 473.422934 \nL 252.616687 445.975617 \nL 315.868805 416.003963 \nL 468.149764 344.174111 \nL 515.340999 321.586406 \nL 533.582989 312.769111 \nL 484.408929 336.423773 \nL 435.433152 359.689256 \nL 366.629124 392.10947 \nL 464.382397 345.965779 \nL 445.148994 355.091395 \nL 494.124771 331.777339 \nL 557.178606 301.278082 \nL 595.050564 282.599935 \nL 643.034928 258.442389 \nL 684.079406 237.263168 \nL 728.296403 213.82933 \nL 763.590688 194.606873 \nL 799.47982 174.539115 \nL 820.299483 162.638137 \nL 837.55006 152.624716 \nL 807.014555 170.254833 \nL 781.039548 184.918728 \nL 749.51263 202.332662 \nL 723.735906 216.278389 \nL 717.192583 219.778943 \nL 744.75385 204.926417 \nL 773.30653 189.22801 \nL 787.186305 181.475262 \nL 787.186305 181.475262 \n\" clip-path=\"url(#pe69a0d106a)\" style=\"fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 40.603125 561.6 \nL 40.603125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 1045.003125 561.6 \nL 1045.003125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 40.603125 561.6 \nL 1045.003125 561.6 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 40.603125 7.2 \nL 1045.003125 7.2 \n\" style=\"fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"pe69a0d106a\">\n <rect x=\"40.603125\" y=\"7.2\" width=\"1004.4\" height=\"554.4\"/>\n </clipPath>\n </defs>\n</svg>\n"
},
"metadata": {},
"output_type": "display_data"
}
],
"execution_count": 216
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}