Last active
April 16, 2025 10:07
-
-
Save khaeru/59e362941f3eb84afcf08d66d3f36c72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "id": "dc7753d5-1d20-47e3-8ab2-774766013f5f", | |
| "metadata": {}, | |
| "source": [ | |
| "# `growth_new_capacity_up`, `historical_new_capacity`, and `CAP_NEW`\n", | |
| "\n", | |
| "Example notebook for https://github.com/iiasa/message_ix/issues/932\n", | |
| "\n", | |
| "## Deriving the relationship\n", | |
| "\n", | |
| "Consider:\n", | |
| "- Continuous time $t$ in units of years.\n", | |
| "- A continuous function $n(t)$ which is *additions to capacity per unit time*.\n", | |
| "- Two consecutive periods:\n", | |
| " - Period $a$ spanning time $t_0$ to $t_a$ with duration $d_a$ (in years).\n", | |
| " - Period $b$ spanning time $t_a$ to $t_b$ with duration $d_b$.\n", | |
| "- Growth rates $r_a$ and $r_b$ (equivalent to ``growth_new_capacity_up``), each of which may be 0 or positive.\n", | |
| "- An initial value $n(t_0) = N_0$." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 1, | |
| "id": "887523fe-6a36-4d1b-a49a-515e08fa702b", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "from sympy import Symbol, integrate, log, simplify, symbols\n", | |
| "\n", | |
| "t = Symbol(\"t\")\n", | |
| "d_a, d_b = symbols(\"d_a d_b\", positive=True)\n", | |
| "t_0 = Symbol(\"t_0\", nonnegative=True)\n", | |
| "t_a = t_0 + d_a\n", | |
| "t_b = t_a + d_b\n", | |
| "\n", | |
| "r_a, r_b = symbols(\"r_a r_b\", nonnegative=True)\n", | |
| "\n", | |
| "N_0 = Symbol(\"N_0\", nonnegative=True)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "33f743ba-7e97-4eff-9355-cc4ad6840c35", | |
| "metadata": {}, | |
| "source": [ | |
| "Express $n_a(t)$, the upper bound on $n(t)$ in the period $a$.\n", | |
| "This is the exponential growth function with initial value $N_0$, rate $r_a$, and duration measured from the start of period $a$, i.e. $t_0$:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 2, | |
| "id": "45dd5781-216c-4a93-9356-841116a46546", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle N_{0} \\left(r_{a} + 1\\right)^{t - t_{0}}$" | |
| ], | |
| "text/plain": [ | |
| "N_0*(r_a + 1)**(t - t_0)" | |
| ] | |
| }, | |
| "execution_count": 2, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "n_a = N_0 * (1 + r_a) ** (t - t_0)\n", | |
| "n_a" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "dd1ca0fc-00f7-46d3-a331-b41729355ec8", | |
| "metadata": {}, | |
| "source": [ | |
| "Likewise, $n_b(t)$ is the upper bound on $n(t)$ in the period $b$.\n", | |
| "It has a similar form, with its maximum *initial* value being $n_a(t_a)$,\n", | |
| "its rate $r_b$,\n", | |
| "and the duration measured from the start of period $b$, i.e. $t_a$:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 3, | |
| "id": "68dc3b4c-7e9a-4c11-9618-d6f43bc6979d", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle N_{0} \\left(r_{a} + 1\\right)^{d_{a}} \\left(r_{b} + 1\\right)^{- d_{a} + t - t_{0}}$" | |
| ], | |
| "text/plain": [ | |
| "N_0*(r_a + 1)**d_a*(r_b + 1)**(-d_a + t - t_0)" | |
| ] | |
| }, | |
| "execution_count": 3, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "n_b = n_a.subs(t, t_a) * (1 + r_b) ** (t - t_a)\n", | |
| "n_b" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "c9ae905a-cfac-4adb-a7d9-30d38fc6779f", | |
| "metadata": {}, | |
| "source": [ | |
| "The maximum *total* addition to capacity over period $a$ is the integral of $n_a(t)$ on the interval $(t_0, t_a)$." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 4, | |
| "id": "cd64afa1-1a8d-4366-9773-da3a26a54394", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle \\begin{cases} \\frac{N_{0} \\left(r_{a} + 1\\right)^{d_{a}}}{\\log{\\left(r_{a} + 1 \\right)}} - \\frac{N_{0}}{\\log{\\left(r_{a} + 1 \\right)}} & \\text{for}\\: r_{a} \\neq 0 \\\\- N_{0} t_{0} + N_{0} \\left(d_{a} + t_{0}\\right) & \\text{otherwise} \\end{cases}$" | |
| ], | |
| "text/plain": [ | |
| "Piecewise((N_0*(r_a + 1)**d_a/log(r_a + 1) - N_0/log(r_a + 1), Ne(r_a, 0)), (-N_0*t_0 + N_0*(d_a + t_0), True))" | |
| ] | |
| }, | |
| "execution_count": 4, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "integrate(n_a, (t, t_0, t_a))" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "ab16ed1f-63f5-47cb-9ca5-6b506e63fcd7", | |
| "metadata": {}, | |
| "source": [ | |
| "The MESSAGE variable ``CAP_NEW`` measures the *average or mean* additions to capacity within a period;\n", | |
| "in other words, the value of a constant $n(t)$ that has the same integral.\n", | |
| "We call this $N_a$:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 5, | |
| "id": "d300521a-fe59-47e4-9c61-ec5b3491639b", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle \\frac{\\begin{cases} \\frac{N_{0} \\left(r_{a} + 1\\right)^{d_{a}}}{\\log{\\left(r_{a} + 1 \\right)}} - \\frac{N_{0}}{\\log{\\left(r_{a} + 1 \\right)}} & \\text{for}\\: r_{a} \\neq 0 \\\\- N_{0} t_{0} + N_{0} \\left(d_{a} + t_{0}\\right) & \\text{otherwise} \\end{cases}}{d_{a}}$" | |
| ], | |
| "text/plain": [ | |
| "Piecewise((N_0*(r_a + 1)**d_a/log(r_a + 1) - N_0/log(r_a + 1), Ne(r_a, 0)), (-N_0*t_0 + N_0*(d_a + t_0), True))/d_a" | |
| ] | |
| }, | |
| "execution_count": 5, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "N_a = integrate(n_a, (t, t_0, t_a)) / d_a\n", | |
| "N_a" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "028f7beb-90d0-4914-a327-5bc6703f7d78", | |
| "metadata": {}, | |
| "source": [ | |
| "Likewise for period $b$:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 6, | |
| "id": "80148475-1e51-4dad-943b-3cfc37e21f04", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle \\frac{\\begin{cases} \\frac{N_{0} \\left(r_{a} + 1\\right)^{d_{a}} \\left(r_{b} + 1\\right)^{d_{b}}}{\\log{\\left(r_{b} + 1 \\right)}} - \\frac{N_{0} \\left(r_{a} + 1\\right)^{d_{a}}}{\\log{\\left(r_{b} + 1 \\right)}} & \\text{for}\\: r_{b} \\neq 0 \\\\- N_{0} \\left(d_{a} + t_{0}\\right) \\left(r_{a} + 1\\right)^{d_{a}} + N_{0} \\left(r_{a} + 1\\right)^{d_{a}} \\left(d_{a} + d_{b} + t_{0}\\right) & \\text{otherwise} \\end{cases}}{d_{b}}$" | |
| ], | |
| "text/plain": [ | |
| "Piecewise((N_0*(r_a + 1)**d_a*(r_b + 1)**d_b/log(r_b + 1) - N_0*(r_a + 1)**d_a/log(r_b + 1), Ne(r_b, 0)), (-N_0*(d_a + t_0)*(r_a + 1)**d_a + N_0*(r_a + 1)**d_a*(d_a + d_b + t_0), True))/d_b" | |
| ] | |
| }, | |
| "execution_count": 6, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "N_b = integrate(n_b, (t, t_a, t_b)) / d_b\n", | |
| "N_b" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "f54854fb-d757-4844-8ee5-4630e97846d1", | |
| "metadata": {}, | |
| "source": [ | |
| "The MESSAGE GAMS implementation constrains $N_b$ (``CAP_NEW(b)``) as a function of $N_a$ (``CAP_NEW(a)``).\n", | |
| "In particular we compute a ratio $k = N_b / N_a$." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 7, | |
| "id": "7b9b0b26-3e43-48cd-9512-d5d217e54e3d", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle \\begin{cases} \\frac{d_{a} \\left(r_{a} + 1\\right)^{d_{a}} \\left(\\left(r_{b} + 1\\right)^{d_{b}} - 1\\right) \\log{\\left(r_{a} + 1 \\right)}}{d_{b} \\left(\\left(r_{a} + 1\\right)^{d_{a}} - 1\\right) \\log{\\left(r_{b} + 1 \\right)}} & \\text{for}\\: r_{a} \\neq 0 \\wedge r_{b} \\neq 0 \\\\\\frac{d_{a} \\left(r_{a} + 1\\right)^{d_{a}} \\log{\\left(r_{a} + 1 \\right)}}{\\left(r_{a} + 1\\right)^{d_{a}} - 1} & \\text{for}\\: r_{a} \\neq 0 \\\\\\frac{\\left(r_{a} + 1\\right)^{d_{a}} \\left(\\left(r_{b} + 1\\right)^{d_{b}} - 1\\right)}{d_{b} \\log{\\left(r_{b} + 1 \\right)}} & \\text{for}\\: r_{b} \\neq 0 \\\\\\left(r_{a} + 1\\right)^{d_{a}} & \\text{otherwise} \\end{cases}$" | |
| ], | |
| "text/plain": [ | |
| "Piecewise((d_a*(r_a + 1)**d_a*((r_b + 1)**d_b - 1)*log(r_a + 1)/(d_b*((r_a + 1)**d_a - 1)*log(r_b + 1)), Ne(r_a, 0) & Ne(r_b, 0)), (d_a*(r_a + 1)**d_a*log(r_a + 1)/((r_a + 1)**d_a - 1), Ne(r_a, 0)), ((r_a + 1)**d_a*((r_b + 1)**d_b - 1)/(d_b*log(r_b + 1)), Ne(r_b, 0)), ((r_a + 1)**d_a, True))" | |
| ] | |
| }, | |
| "execution_count": 7, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k = simplify(N_b / N_a)\n", | |
| "k" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "84300794-35ea-4d1e-aab8-3af6c39595d6", | |
| "metadata": {}, | |
| "source": [ | |
| "We can further simplify by a series of substitutions:\n", | |
| "- $x_a = (1 + r_a) ^ {d_a}$\n", | |
| "- $y_a = \\frac{x_a - 1}{d_a \\log{(1 + r_a)}}$" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 8, | |
| "id": "a19170c3-d693-4ab7-94d5-6750b899f590", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle \\begin{cases} \\frac{d_{a} x_{a} \\left(x_{b} - 1\\right) \\log{\\left(r_{a} + 1 \\right)}}{d_{b} \\left(x_{a} - 1\\right) \\log{\\left(r_{b} + 1 \\right)}} & \\text{for}\\: r_{a} \\neq 0 \\wedge r_{b} \\neq 0 \\\\\\frac{d_{a} x_{a} \\log{\\left(r_{a} + 1 \\right)}}{x_{a} - 1} & \\text{for}\\: r_{a} \\neq 0 \\\\\\frac{x_{a} \\left(x_{b} - 1\\right)}{d_{b} \\log{\\left(r_{b} + 1 \\right)}} & \\text{for}\\: r_{b} \\neq 0 \\\\x_{a} & \\text{otherwise} \\end{cases}$" | |
| ], | |
| "text/plain": [ | |
| "Piecewise((d_a*x_a*(x_b - 1)*log(r_a + 1)/(d_b*(x_a - 1)*log(r_b + 1)), Ne(r_a, 0) & Ne(r_b, 0)), (d_a*x_a*log(r_a + 1)/(x_a - 1), Ne(r_a, 0)), (x_a*(x_b - 1)/(d_b*log(r_b + 1)), Ne(r_b, 0)), (x_a, True))" | |
| ] | |
| }, | |
| "execution_count": 8, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "x_a, x_b = symbols(\"x_a x_b\")\n", | |
| "k1 = k.subs((1 + r_a) ** d_a, x_a).subs((1 + r_b) ** d_b, x_b)\n", | |
| "k1" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 9, | |
| "id": "558a24a2-0203-4e73-9474-438d72ce91ce", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle \\begin{cases} \\frac{x_{a} y_{b}}{y_{a}} & \\text{for}\\: r_{a} \\neq 0 \\wedge r_{b} \\neq 0 \\\\\\frac{x_{a}}{y_{a}} & \\text{for}\\: r_{a} \\neq 0 \\\\x_{a} y_{b} & \\text{for}\\: r_{b} \\neq 0 \\\\x_{a} & \\text{otherwise} \\end{cases}$" | |
| ], | |
| "text/plain": [ | |
| "Piecewise((x_a*y_b/y_a, Ne(r_a, 0) & Ne(r_b, 0)), (x_a/y_a, Ne(r_a, 0)), (x_a*y_b, Ne(r_b, 0)), (x_a, True))" | |
| ] | |
| }, | |
| "execution_count": 9, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "y_a, y_b = symbols(\"y_a y_b\")\n", | |
| "k2 = k1.subs((d_a * log(1 + r_a)) / (x_a - 1), 1 / y_a).subs((x_b - 1) / (d_b * log(1 + r_b)), y_b)\n", | |
| "k2" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "b0f53e73-10e7-4074-b538-c8512ed8f15d", | |
| "metadata": {}, | |
| "source": [ | |
| "If we make $y_a$ a conditional expression such that $y_a = 1$ when $r_a = 0$\n", | |
| "(this is simple to construct using the GAMS language)\n", | |
| "we can always use the first expression in this 4-way conditional." | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "463c9d16-86f5-4884-878b-9cbabc1d8d38", | |
| "metadata": {}, | |
| "source": [ | |
| "### Examples\n", | |
| "\n", | |
| "We consider some concrete / quantified examples based on this formulation.\n", | |
| "\n", | |
| "**Example 1:** Two periods of equal duration:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 10, | |
| "id": "28d2e1f0-395a-4296-8e47-1f5c2edeea9e", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.0510100501$" | |
| ], | |
| "text/plain": [ | |
| "1.05101005010000" | |
| ] | |
| }, | |
| "execution_count": 10, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "subs_1 = [(d_a, 5), (d_b, 5), (r_a, 0.01), (r_b, 0.01)]\n", | |
| "k.subs(subs_1)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "4db03302-84f1-4b83-a26f-68e88340c6a7", | |
| "metadata": {}, | |
| "source": [ | |
| "Note that this *happens* to be the same as:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 11, | |
| "id": "16196e00-7a0c-453e-b3ac-352d19c5b7c7", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "1.0510100501000001" | |
| ] | |
| }, | |
| "execution_count": 11, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "(1 + 0.01) ** 5" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "cf478b40-6739-4e0a-9380-0b878a674d84", | |
| "metadata": {}, | |
| "source": [ | |
| "This is because $n_a(t) = N_a$ occurs at the same point within interval $a$ as $n_b(t) = N_b$ within interval $b$,\n", | |
| "and both intervals are of equal size, so the distance between these two points is exactly $d_a = d_b = 5$." | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "740f03b1-3653-44f4-986e-ae53303776ed", | |
| "metadata": {}, | |
| "source": [ | |
| "**Example 2:** Two periods of equal duration, but double the duration in Example 1: " | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 12, | |
| "id": "d3e03870-28f3-4ed3-b05a-76c628f32a9d", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.1046221254112$" | |
| ], | |
| "text/plain": [ | |
| "1.10462212541120" | |
| ] | |
| }, | |
| "execution_count": 12, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k.subs([(d_a, 10), (d_b, 10), (r_a, 0.01), (r_b, 0.01)])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "aee6f742-ae02-4e51-b47f-83452624db45", | |
| "metadata": {}, | |
| "source": [ | |
| "Similar to Example (1), this is $(1 + 0.01) ^ {10}$.\n", | |
| "\n", | |
| "**Example 3:** Period $b$ twice as long as period $a$:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 13, | |
| "id": "dd41cd17-39fa-4b73-be18-5e7a614cd222", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.0778160877556$" | |
| ], | |
| "text/plain": [ | |
| "1.07781608775560" | |
| ] | |
| }, | |
| "execution_count": 13, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k.subs([(d_a, 5), (d_b, 10), (r_a, 0.01), (r_b, 0.01)])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "c1bcb0ac-f8c6-4d20-a6da-32dfe6d6f1f9", | |
| "metadata": {}, | |
| "source": [ | |
| "**Example 4:** Period $b$ half the length of period $a$:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 14, | |
| "id": "3d40951d-e7a4-4256-a32c-c4d488504ec5", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.07714940290746$" | |
| ], | |
| "text/plain": [ | |
| "1.07714940290746" | |
| ] | |
| }, | |
| "execution_count": 14, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k.subs([(d_a, 10), (d_b, 5), (r_a, 0.01), (r_b, 0.01)])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "dd6caf6c-6de0-4dcf-b58c-072fc4f99022", | |
| "metadata": {}, | |
| "source": [ | |
| "**Example 5:** Same total duration as Examples (3) and (4), with periods of equal duration:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 15, | |
| "id": "2ba4a693-3d6d-4a71-b9a3-5e32260ba883", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.07748269376821$" | |
| ], | |
| "text/plain": [ | |
| "1.07748269376821" | |
| ] | |
| }, | |
| "execution_count": 15, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k.subs([(d_a, 7.5), (d_b, 7.5), (r_a, 0.01), (r_b, 0.01)])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "3b5c9166-9597-48e5-bda7-a91d2c60f1de", | |
| "metadata": {}, | |
| "source": [ | |
| "Two points to observe:\n", | |
| "1. The values in Example (3), (4), and (5) all differ.\n", | |
| "2. https://github.com/iiasa/message_ix/pull/654 introduced an adjustment factor like $d_a / d_b$ to the existing ratio $N_b / N_a = (1 + r_b) ^ {d_b}$, but the values in Examples (3), (4), and (5) cannot be computed in this way." | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "1d29d59d-2103-4900-8553-94d8c7b42428", | |
| "metadata": {}, | |
| "source": [ | |
| "**Example 6:** Same total duration as Example (2), but one short and one long period:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 16, | |
| "id": "f782555f-d92a-463a-9dbf-e35124682068", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.10626336814719$" | |
| ], | |
| "text/plain": [ | |
| "1.10626336814719" | |
| ] | |
| }, | |
| "execution_count": 16, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k.subs([(d_a, 1), (d_b, 19), (r_a, 0.01), (r_b, 0.01)])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "7588648e-e912-4aa0-a750-e46090ff806a", | |
| "metadata": {}, | |
| "source": [ | |
| "**Example 7:** One long and one short period:" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 17, | |
| "id": "5debeeaf-bd35-4464-8968-278cc907b579", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/latex": [ | |
| "$\\displaystyle 1.1029833176087$" | |
| ], | |
| "text/plain": [ | |
| "1.10298331760870" | |
| ] | |
| }, | |
| "execution_count": 17, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "k.subs([(d_a, 19), (d_b, 1), (r_a, 0.01), (r_b, 0.01)])" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "db7a882e-0765-4d01-b943-01a53da8c461", | |
| "metadata": {}, | |
| "source": [ | |
| "## Graphical version\n", | |
| "\n", | |
| "Here we graphically examine previous and current values for CAP_NEW in the test suite.\n", | |
| "\n", | |
| "First some common code that computes the total CAP created in each period and cumulatively,\n", | |
| "and draws a plot for comparison." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 18, | |
| "id": "3aa04b74-271b-4e3e-94fd-8e35e59f82d6", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "import numpy as np\n", | |
| "import pandas as pd\n", | |
| "import plotnine as p9\n", | |
| "\n", | |
| "p9.options.set_option(\"figure_format\", \"svg\")\n", | |
| "\n", | |
| "def plot(data, r=0.01, t_max=720):\n", | |
| " tm1, t0, CN0 = 680, 690, 10.0 / 3\n", | |
| " data = (\n", | |
| " pd.concat([pd.DataFrame([[t0, CN0]]), data])\n", | |
| " .set_axis([\"year\", \"CAP_NEW\"], axis=1)\n", | |
| " )\n", | |
| " print(\n", | |
| " data.rename(columns={\"year\": \"period\"})\n", | |
| " .assign(ystart=lambda df: df.period.shift(fill_value=tm1))\n", | |
| " .eval(\"duration_period = period - ystart\")\n", | |
| " .eval(\"CAP = duration_period * CAP_NEW\")\n", | |
| " .assign(CAP_cumulative=lambda df: df.CAP.cumsum() - df.CAP.iloc[0])\n", | |
| " .set_index(\"period\")[[\"duration_period\", \"CAP_NEW\", \"CAP\", \"CAP_cumulative\"]]\n", | |
| " )\n", | |
| "\n", | |
| " data_rect = data.assign(ystart=lambda df: df.year.shift(fill_value=tm1) + 1)\n", | |
| " data_line = (\n", | |
| " pd.Series(np.linspace(t0 + 0.99, t_max + 1), name=\"t\")\n", | |
| " .to_frame()\n", | |
| " .eval(\"CAP_NEW = 3.333333 * (1.0 + @r) ** (t - (@t0 + 1))\")\n", | |
| " ) \n", | |
| " (\n", | |
| " p9.ggplot()\n", | |
| " + p9.geom_rect(\n", | |
| " p9.aes(xmin=\"ystart\", xmax=\"year + 0.99\", ymin=0, ymax=\"CAP_NEW\"),\n", | |
| " data_rect,\n", | |
| " color=\"black\",\n", | |
| " )\n", | |
| " + p9.geom_line(\n", | |
| " p9.aes(x=\"t\", y=\"CAP_NEW\"),\n", | |
| " data_line,\n", | |
| " color=\"red\",\n", | |
| " )\n", | |
| " + p9.lims(y=(0, 10))\n", | |
| " + p9.scale_x_continuous(breaks=range(680, t_max+1, 5), minor_breaks=4)\n", | |
| " + p9.labs(y=\"Additions to capacity\", x=\"Time [years]\")\n", | |
| " + p9.theme_bw()\n", | |
| " ).show()" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "ca165753-4cda-42cd-a198-298c75b18b18", | |
| "metadata": {}, | |
| "source": [ | |
| "The value $r = 0.01$ used in the test suite is quite small.\n", | |
| "Here's an example plot with a larger $r$ to show that the code correctly computes the exponential,\n", | |
| "and also:\n", | |
| "\n", | |
| "1. Automatically adds the fixed/constant `historical_new_capacity` for the period \"690\".\n", | |
| "2. Draws the periods precisely, e.g. such that \"690\" starts at 0681-01-01 and ends 0690-12-31\n", | |
| " (the calendar year \"690\" is the final year within the multi-year period).\n", | |
| "4. Does compute exponential growth until after the end of the final historical period." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 19, | |
| "id": "0c434c9c-0335-448b-8c95-9714f03de13f", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.0\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:10.551208</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m0e46eb1153\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m0e46eb1153\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"mb5295e0bf3\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mb5295e0bf3\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mb5295e0bf3\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mb5295e0bf3\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mb5295e0bf3\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mb5295e0bf3\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <defs>\n", | |
| " <path id=\"m43b160994d\" d=\"M 62.932338 -47.122474 L 62.932338 -140.414387 L 156.471958 -140.414387 L 156.471958 -47.122474 z \" style=\"stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </defs>\n", | |
| " <g clip-path=\"url(#p46add7b09b)\">\n", | |
| " <use xlink:href=\"#m43b160994d\" x=\"0\" y=\"345.6\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.21771 L 162.206517 203.231963 L 167.941076 201.203933 L 173.675635 199.132722 L 179.410194 197.017409 L 185.144753 194.857055 L 190.879312 192.650701 L 196.613871 190.397369 L 202.34843 188.096057 L 208.082989 185.745744 L 213.817548 183.345387 L 219.552107 180.89392 L 225.286666 178.390255 L 231.021225 175.83328 L 236.755784 173.22186 L 242.490343 170.554836 L 248.224902 167.831025 L 253.959461 165.049216 L 259.69402 162.208175 L 265.428579 159.306641 L 271.163138 156.343325 L 276.897697 153.316913 L 282.632256 150.22606 L 288.366815 147.069395 L 294.101374 143.845516 L 299.835933 140.552993 L 305.570492 137.190363 L 311.305051 133.756133 L 317.03961 130.24878 L 322.774169 126.666746 L 328.508728 123.008441 L 334.243287 119.272241 L 339.977846 115.456487 L 345.712405 111.559486 L 351.446964 107.579508 L 357.181523 103.514785 L 362.916082 99.363514 L 368.650641 95.123851 L 374.3852 90.793914 L 380.119759 86.371782 L 385.854318 81.855491 L 391.588877 77.243036 L 397.323436 72.53237 L 403.057995 67.721401 L 408.792554 62.807994 L 414.527113 57.789968 L 420.261672 52.665094 L 425.996231 47.431099 L 431.73079 42.085658 L 437.465349 36.626398 \" clip-path=\"url(#p46add7b09b)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p46add7b09b\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "plot(pd.DataFrame(), r=0.035)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "82ecbe3e-c9d5-4b53-9c58-ac26bef94105", | |
| "metadata": {}, | |
| "source": [ | |
| "Consider the values that were previously used as expectations in test_growth_new_capacity_up()." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 20, | |
| "id": "136afb9b-2b55-4792-9add-f3af47275f39", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.00000\n", | |
| "695 5 3.560014 17.800070 17.80007\n", | |
| "700 5 3.746712 18.733560 36.53363\n", | |
| "710 10 2.074581 20.745810 57.27944\n", | |
| "720 10 2.302091 23.020910 80.30035\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:10.664913</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"mbcf3f7ee27\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mbcf3f7ee27\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"md9442be555\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#md9442be555\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#md9442be555\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#md9442be555\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#md9442be555\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#md9442be555\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#p59c03f7707)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 198.841371 L 203.288584 198.841371 L 203.288584 298.477526 z \" clip-path=\"url(#p59c03f7707)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 203.382217 298.477526 L 203.382217 193.616147 L 250.10521 193.616147 L 250.10521 298.477526 z \" clip-path=\"url(#p59c03f7707)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 250.198844 298.477526 L 250.198844 240.415037 L 343.738463 240.415037 L 343.738463 298.477526 z \" clip-path=\"url(#p59c03f7707)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 343.832097 298.477526 L 343.832097 234.047584 L 437.371716 234.047584 L 437.371716 298.477526 z \" clip-path=\"url(#p59c03f7707)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#p59c03f7707)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p59c03f7707\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_prev0 = pd.DataFrame([\n", | |
| " [695, 3.560014],\n", | |
| " [700, 3.746712],\n", | |
| " [710, 2.074581],\n", | |
| " [720, 2.302091],\n", | |
| "])\n", | |
| "\n", | |
| "plot(data_prev0)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 21, | |
| "id": "78f8bee5-a287-47ef-abec-d2a69a458e99", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.000000\n", | |
| "700 10 3.746712 37.467120 37.467120\n", | |
| "710 10 4.149163 41.491630 78.958750\n", | |
| "715 5 8.731826 43.659130 122.617880\n", | |
| "720 5 9.182337 45.911685 168.529565\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:10.788302</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m293cc730c1\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m293cc730c1\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"m98271aed76\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m98271aed76\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m98271aed76\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m98271aed76\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m98271aed76\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m98271aed76\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#p77715dc46f)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 193.616147 L 250.10521 193.616147 L 250.10521 298.477526 z \" clip-path=\"url(#p77715dc46f)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 250.198844 298.477526 L 250.198844 182.35252 L 343.738463 182.35252 L 343.738463 298.477526 z \" clip-path=\"url(#p77715dc46f)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 343.832097 298.477526 L 343.832097 54.0949 L 390.55509 54.0949 L 390.55509 298.477526 z \" clip-path=\"url(#p77715dc46f)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 390.648723 298.477526 L 390.648723 41.486191 L 437.371716 41.486191 L 437.371716 298.477526 z \" clip-path=\"url(#p77715dc46f)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#p77715dc46f)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p77715dc46f\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_prev1 = pd.DataFrame([\n", | |
| " [700, 3.746712],\n", | |
| " [710, 4.149163],\n", | |
| " [715, 8.731826],\n", | |
| " [720, 9.182337],\n", | |
| "])\n", | |
| "plot(data_prev1)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "a8994e03-8064-4f08-baef-c49abaabf8c9", | |
| "metadata": {}, | |
| "source": [ | |
| "Notice that the total `CAP` constructed in `data_prev1` is more than double\n", | |
| "the total `CAP` constructed in `data_prev0`.\n", | |
| "\n", | |
| "Next `CAP_NEW` that is obtained with the revised code and 5 test cases on the #924 branch.\n", | |
| "Observe that:\n", | |
| "\n", | |
| "- Total `CAP` added over the interval 0691-01-01 to 0720-12-31 is the same in all cases.\n", | |
| "- The red line intersects the CAP_NEW value within each period,\n", | |
| " and is higher at the end of each period.\n", | |
| "- Case 4 (`data_case4`) has the same set of periods as `data_prev0` above.\n", | |
| "- Case 5 (`data_case5`) has the same set of periods as `data_prev1` above." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 22, | |
| "id": "c0606931-7d0f-4108-a396-b55a112d9845", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.00000\n", | |
| "720 30 3.884281 116.528430 116.52843\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:10.912095</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"me2a826e32b\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me2a826e32b\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"m27d7ace32a\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m27d7ace32a\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m27d7ace32a\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m27d7ace32a\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m27d7ace32a\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m27d7ace32a\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#pe743b9686d)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 189.765924 L 437.371716 189.765924 L 437.371716 298.477526 z \" clip-path=\"url(#pe743b9686d)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#pe743b9686d)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"pe743b9686d\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_case0 = pd.DataFrame([\n", | |
| " [720, 3.884281]\n", | |
| "])\n", | |
| "plot(data_case0)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 23, | |
| "id": "a613ef88-2888-4b65-9d0e-3427c08fb63a", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.000000\n", | |
| "691 1 3.349972 3.349972 3.349972\n", | |
| "720 29 3.902705 113.178445 116.528417\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:11.039909</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m2feafb4a31\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m2feafb4a31\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"m7d6b9d11d2\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m7d6b9d11d2\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m7d6b9d11d2\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m7d6b9d11d2\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m7d6b9d11d2\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m7d6b9d11d2\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#p8889d625a9)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 204.719937 L 165.835283 204.719937 L 165.835283 298.477526 z \" clip-path=\"url(#p8889d625a9)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 165.928916 298.477526 L 165.928916 189.250281 L 437.371716 189.250281 L 437.371716 298.477526 z \" clip-path=\"url(#p8889d625a9)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#p8889d625a9)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p8889d625a9\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_case1 = pd.DataFrame([\n", | |
| " [691, 3.349972],\n", | |
| " [720, 3.902705],\n", | |
| "])\n", | |
| "plot(data_case1)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 24, | |
| "id": "5b48ece5-db54-4853-a062-1f156e2cf458", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.00000\n", | |
| "700 10 3.504812 35.048120 35.04812\n", | |
| "720 20 4.074015 81.480300 116.52842\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:11.159117</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m4c3128a24f\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m4c3128a24f\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"mf1d58fb079\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf1d58fb079\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf1d58fb079\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf1d58fb079\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf1d58fb079\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf1d58fb079\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 200.386341 L 250.10521 200.386341 L 250.10521 298.477526 z \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 250.198844 298.477526 L 250.198844 184.45573 L 437.371716 184.45573 L 437.371716 298.477526 z \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#pc19aa97ee5)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"pc19aa97ee5\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_case2 = pd.DataFrame([\n", | |
| " [700, 3.504812],\n", | |
| " [720, 4.074015],\n", | |
| "])\n", | |
| "plot(data_case2)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 25, | |
| "id": "4215803e-1545-4b72-9139-08b8c9bd3b01", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.000000\n", | |
| "719 29 3.864065 112.057885 112.057885\n", | |
| "720 1 4.470551 4.470551 116.528436\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:11.375427</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m989df1ae6c\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m989df1ae6c\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"m28a69ee032\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m28a69ee032\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m28a69ee032\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m28a69ee032\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m28a69ee032\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m28a69ee032\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 190.331721 L 428.008391 190.331721 L 428.008391 298.477526 z \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 428.102024 298.477526 L 428.102024 173.357649 L 437.371716 173.357649 L 437.371716 298.477526 z \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#p39bcd463ad)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p39bcd463ad\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_case3 = pd.DataFrame([\n", | |
| " [719, 3.864065],\n", | |
| " [720, 4.470551],\n", | |
| "])\n", | |
| "plot(data_case3)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 26, | |
| "id": "be184a0b-14aa-4b24-a337-1e7088ce994b", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.000000\n", | |
| "695 5 3.417645 17.088225 17.088225\n", | |
| "700 5 3.591979 17.959895 35.048120\n", | |
| "710 10 3.871493 38.714930 73.763050\n", | |
| "720 10 4.276537 42.765370 116.528420\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:11.490539</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m465c4a50bd\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m465c4a50bd\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"mf39a64ad6c\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf39a64ad6c\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf39a64ad6c\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf39a64ad6c\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf39a64ad6c\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#mf39a64ad6c\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#p997977bb77)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 202.825934 L 203.288584 202.825934 L 203.288584 298.477526 z \" clip-path=\"url(#p997977bb77)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 203.382217 298.477526 L 203.382217 197.946748 L 250.10521 197.946748 L 250.10521 298.477526 z \" clip-path=\"url(#p997977bb77)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 250.198844 298.477526 L 250.198844 190.123829 L 343.738463 190.123829 L 343.738463 298.477526 z \" clip-path=\"url(#p997977bb77)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 343.832097 298.477526 L 343.832097 178.78763 L 437.371716 178.78763 L 437.371716 298.477526 z \" clip-path=\"url(#p997977bb77)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#p997977bb77)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p997977bb77\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_case4 = pd.DataFrame([\n", | |
| " [695, 3.417645],\n", | |
| " [700, 3.591979],\n", | |
| " [710, 3.871493],\n", | |
| " [720, 4.276537],\n", | |
| "])\n", | |
| "plot(data_case4)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 27, | |
| "id": "546658b4-4c3c-4204-aa16-6b113c742132", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "name": "stdout", | |
| "output_type": "stream", | |
| "text": [ | |
| " duration_period CAP_NEW CAP CAP_cumulative\n", | |
| "period \n", | |
| "690 10 3.333333 33.333333 0.000000\n", | |
| "700 10 3.504812 35.048120 35.048120\n", | |
| "710 10 3.871493 38.714930 73.763050\n", | |
| "715 5 4.170177 20.850885 94.613935\n", | |
| "720 5 4.382897 21.914485 116.528420\n" | |
| ] | |
| }, | |
| { | |
| "data": { | |
| "image/svg+xml": [ | |
| "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" width=\"460.8pt\" height=\"345.6pt\" viewBox=\"0 0 460.8 345.6\" 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>2025-04-16T12:05:11.604846</dc:date>\n", | |
| " <dc:format>image/svg+xml</dc:format>\n", | |
| " <dc:creator>\n", | |
| " <cc:Agent>\n", | |
| " <dc:title>Matplotlib v3.10.1, 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 345.6 L 460.8 345.6 L 460.8 0 L 0 0 z \" style=\"fill: #ffffff; stroke: #ffffff; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"axes_1\">\n", | |
| " <g id=\"patch_2\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 z \" style=\"fill: #ffffff\"/>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_1\">\n", | |
| " <g id=\"xtick_1\">\n", | |
| " <g id=\"line2d_1\">\n", | |
| " <path d=\"M 53.569013 312.471312 L 53.569013 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_2\">\n", | |
| " <defs>\n", | |
| " <path id=\"m9084657594\" d=\"M 0 0 L 0 2.75 \" style=\"stroke: #000000\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"53.569013\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_1\">\n", | |
| " <!-- 680 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(45.170513 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-36\" d=\"M 2113 2584 Q 1688 2584 1439 2293 Q 1191 2003 1191 1497 Q 1191 994 1439 701 Q 1688 409 2113 409 Q 2538 409 2786 701 Q 3034 994 3034 1497 Q 3034 2003 2786 2293 Q 2538 2584 2113 2584 z M 3366 4563 L 3366 3988 Q 3128 4100 2886 4159 Q 2644 4219 2406 4219 Q 1781 4219 1451 3797 Q 1122 3375 1075 2522 Q 1259 2794 1537 2939 Q 1816 3084 2150 3084 Q 2853 3084 3261 2657 Q 3669 2231 3669 1497 Q 3669 778 3244 343 Q 2819 -91 2113 -91 Q 1303 -91 875 529 Q 447 1150 447 2328 Q 447 3434 972 4092 Q 1497 4750 2381 4750 Q 2619 4750 2861 4703 Q 3103 4656 3366 4563 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-38\" d=\"M 2034 2216 Q 1584 2216 1326 1975 Q 1069 1734 1069 1313 Q 1069 891 1326 650 Q 1584 409 2034 409 Q 2484 409 2743 651 Q 3003 894 3003 1313 Q 3003 1734 2745 1975 Q 2488 2216 2034 2216 z M 1403 2484 Q 997 2584 770 2862 Q 544 3141 544 3541 Q 544 4100 942 4425 Q 1341 4750 2034 4750 Q 2731 4750 3128 4425 Q 3525 4100 3525 3541 Q 3525 3141 3298 2862 Q 3072 2584 2669 2484 Q 3125 2378 3379 2068 Q 3634 1759 3634 1313 Q 3634 634 3220 271 Q 2806 -91 2034 -91 Q 1263 -91 848 271 Q 434 634 434 1313 Q 434 1759 690 2068 Q 947 2378 1403 2484 z M 1172 3481 Q 1172 3119 1398 2916 Q 1625 2713 2034 2713 Q 2441 2713 2670 2916 Q 2900 3119 2900 3481 Q 2900 3844 2670 4047 Q 2441 4250 2034 4250 Q 1625 4250 1398 4047 Q 1172 3844 1172 3481 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-30\" d=\"M 2034 4250 Q 1547 4250 1301 3770 Q 1056 3291 1056 2328 Q 1056 1369 1301 889 Q 1547 409 2034 409 Q 2525 409 2770 889 Q 3016 1369 3016 2328 Q 3016 3291 2770 3770 Q 2525 4250 2034 4250 z M 2034 4750 Q 2819 4750 3233 4129 Q 3647 3509 3647 2328 Q 3647 1150 3233 529 Q 2819 -91 2034 -91 Q 1250 -91 836 529 Q 422 1150 422 2328 Q 422 3509 836 4129 Q 1250 4750 2034 4750 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_2\">\n", | |
| " <g id=\"line2d_3\">\n", | |
| " <path d=\"M 100.385639 312.471312 L 100.385639 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_4\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"100.385639\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_2\">\n", | |
| " <!-- 685 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(91.987139 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-35\" d=\"M 691 4666 L 3169 4666 L 3169 4134 L 1269 4134 L 1269 2991 Q 1406 3038 1543 3061 Q 1681 3084 1819 3084 Q 2600 3084 3056 2656 Q 3513 2228 3513 1497 Q 3513 744 3044 326 Q 2575 -91 1722 -91 Q 1428 -91 1123 -41 Q 819 9 494 109 L 494 744 Q 775 591 1075 516 Q 1375 441 1709 441 Q 2250 441 2565 725 Q 2881 1009 2881 1497 Q 2881 1984 2565 2268 Q 2250 2553 1709 2553 Q 1456 2553 1204 2497 Q 953 2441 691 2322 L 691 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-38\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_3\">\n", | |
| " <g id=\"line2d_5\">\n", | |
| " <path d=\"M 147.202266 312.471312 L 147.202266 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_6\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"147.202266\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_3\">\n", | |
| " <!-- 690 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(138.803766 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-39\" d=\"M 703 97 L 703 672 Q 941 559 1184 500 Q 1428 441 1663 441 Q 2288 441 2617 861 Q 2947 1281 2994 2138 Q 2813 1869 2534 1725 Q 2256 1581 1919 1581 Q 1219 1581 811 2004 Q 403 2428 403 3163 Q 403 3881 828 4315 Q 1253 4750 1959 4750 Q 2769 4750 3195 4129 Q 3622 3509 3622 2328 Q 3622 1225 3098 567 Q 2575 -91 1691 -91 Q 1453 -91 1209 -44 Q 966 3 703 97 z M 1959 2075 Q 2384 2075 2632 2365 Q 2881 2656 2881 3163 Q 2881 3666 2632 3958 Q 2384 4250 1959 4250 Q 1534 4250 1286 3958 Q 1038 3666 1038 3163 Q 1038 2656 1286 2365 Q 1534 2075 1959 2075 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_4\">\n", | |
| " <g id=\"line2d_7\">\n", | |
| " <path d=\"M 194.018892 312.471312 L 194.018892 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_8\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"194.018892\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_4\">\n", | |
| " <!-- 695 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(185.620392 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-36\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-39\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_5\">\n", | |
| " <g id=\"line2d_9\">\n", | |
| " <path d=\"M 240.835518 312.471312 L 240.835518 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_10\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"240.835518\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_5\">\n", | |
| " <!-- 700 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(232.437018 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-37\" d=\"M 525 4666 L 3525 4666 L 3525 4397 L 1831 0 L 1172 0 L 2766 4134 L 525 4134 L 525 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_6\">\n", | |
| " <g id=\"line2d_11\">\n", | |
| " <path d=\"M 287.652145 312.471312 L 287.652145 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_12\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"287.652145\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_6\">\n", | |
| " <!-- 705 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(279.253645 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_7\">\n", | |
| " <g id=\"line2d_13\">\n", | |
| " <path d=\"M 334.468771 312.471312 L 334.468771 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_14\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"334.468771\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_7\">\n", | |
| " <!-- 710 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(326.070271 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-31\" d=\"M 794 531 L 1825 531 L 1825 4091 L 703 3866 L 703 4441 L 1819 4666 L 2450 4666 L 2450 531 L 3481 531 L 3481 0 L 794 0 L 794 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_8\">\n", | |
| " <g id=\"line2d_15\">\n", | |
| " <path d=\"M 381.285398 312.471312 L 381.285398 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_16\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"381.285398\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_8\">\n", | |
| " <!-- 715 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(372.886898 323.907938) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-31\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_9\">\n", | |
| " <g id=\"line2d_17\">\n", | |
| " <path d=\"M 428.102024 312.471312 L 428.102024 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_18\">\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#m9084657594\" x=\"428.102024\" y=\"312.471312\" style=\"stroke: #000000\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_9\">\n", | |
| " <!-- 720 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(419.703524 323.907938) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-32\" d=\"M 1228 531 L 3431 531 L 3431 0 L 469 0 L 469 531 Q 828 903 1448 1529 Q 2069 2156 2228 2338 Q 2531 2678 2651 2914 Q 2772 3150 2772 3378 Q 2772 3750 2511 3984 Q 2250 4219 1831 4219 Q 1534 4219 1204 4116 Q 875 4013 500 3803 L 500 4441 Q 881 4594 1212 4672 Q 1544 4750 1819 4750 Q 2544 4750 2975 4387 Q 3406 4025 3406 3419 Q 3406 3131 3298 2873 Q 3191 2616 2906 2266 Q 2828 2175 2409 1742 Q 1991 1309 1228 531 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-32\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(127.246094 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_10\">\n", | |
| " <g id=\"line2d_19\">\n", | |
| " <path d=\"M 44.205687 312.471312 L 44.205687 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_11\">\n", | |
| " <g id=\"line2d_20\">\n", | |
| " <path d=\"M 62.932338 312.471312 L 62.932338 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_12\">\n", | |
| " <g id=\"line2d_21\">\n", | |
| " <path d=\"M 72.295663 312.471312 L 72.295663 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_13\">\n", | |
| " <g id=\"line2d_22\">\n", | |
| " <path d=\"M 81.658989 312.471312 L 81.658989 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_14\">\n", | |
| " <g id=\"line2d_23\">\n", | |
| " <path d=\"M 91.022314 312.471312 L 91.022314 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_15\">\n", | |
| " <g id=\"line2d_24\">\n", | |
| " <path d=\"M 109.748964 312.471312 L 109.748964 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_16\">\n", | |
| " <g id=\"line2d_25\">\n", | |
| " <path d=\"M 119.11229 312.471312 L 119.11229 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_17\">\n", | |
| " <g id=\"line2d_26\">\n", | |
| " <path d=\"M 128.475615 312.471312 L 128.475615 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_18\">\n", | |
| " <g id=\"line2d_27\">\n", | |
| " <path d=\"M 137.83894 312.471312 L 137.83894 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_19\">\n", | |
| " <g id=\"line2d_28\">\n", | |
| " <path d=\"M 156.565591 312.471312 L 156.565591 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_20\">\n", | |
| " <g id=\"line2d_29\">\n", | |
| " <path d=\"M 165.928916 312.471312 L 165.928916 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_21\">\n", | |
| " <g id=\"line2d_30\">\n", | |
| " <path d=\"M 175.292241 312.471312 L 175.292241 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_22\">\n", | |
| " <g id=\"line2d_31\">\n", | |
| " <path d=\"M 184.655567 312.471312 L 184.655567 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_23\">\n", | |
| " <g id=\"line2d_32\">\n", | |
| " <path d=\"M 203.382217 312.471312 L 203.382217 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_24\">\n", | |
| " <g id=\"line2d_33\">\n", | |
| " <path d=\"M 212.745543 312.471312 L 212.745543 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_25\">\n", | |
| " <g id=\"line2d_34\">\n", | |
| " <path d=\"M 222.108868 312.471312 L 222.108868 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_26\">\n", | |
| " <g id=\"line2d_35\">\n", | |
| " <path d=\"M 231.472193 312.471312 L 231.472193 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_27\">\n", | |
| " <g id=\"line2d_36\">\n", | |
| " <path d=\"M 250.198844 312.471312 L 250.198844 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_28\">\n", | |
| " <g id=\"line2d_37\">\n", | |
| " <path d=\"M 259.562169 312.471312 L 259.562169 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_29\">\n", | |
| " <g id=\"line2d_38\">\n", | |
| " <path d=\"M 268.925494 312.471312 L 268.925494 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_30\">\n", | |
| " <g id=\"line2d_39\">\n", | |
| " <path d=\"M 278.28882 312.471312 L 278.28882 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_31\">\n", | |
| " <g id=\"line2d_40\">\n", | |
| " <path d=\"M 297.01547 312.471312 L 297.01547 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_32\">\n", | |
| " <g id=\"line2d_41\">\n", | |
| " <path d=\"M 306.378795 312.471312 L 306.378795 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_33\">\n", | |
| " <g id=\"line2d_42\">\n", | |
| " <path d=\"M 315.742121 312.471312 L 315.742121 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_34\">\n", | |
| " <g id=\"line2d_43\">\n", | |
| " <path d=\"M 325.105446 312.471312 L 325.105446 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_35\">\n", | |
| " <g id=\"line2d_44\">\n", | |
| " <path d=\"M 343.832097 312.471312 L 343.832097 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_36\">\n", | |
| " <g id=\"line2d_45\">\n", | |
| " <path d=\"M 353.195422 312.471312 L 353.195422 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_37\">\n", | |
| " <g id=\"line2d_46\">\n", | |
| " <path d=\"M 362.558747 312.471312 L 362.558747 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_38\">\n", | |
| " <g id=\"line2d_47\">\n", | |
| " <path d=\"M 371.922072 312.471312 L 371.922072 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_39\">\n", | |
| " <g id=\"line2d_48\">\n", | |
| " <path d=\"M 390.648723 312.471312 L 390.648723 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_40\">\n", | |
| " <g id=\"line2d_49\">\n", | |
| " <path d=\"M 400.012048 312.471312 L 400.012048 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_41\">\n", | |
| " <g id=\"line2d_50\">\n", | |
| " <path d=\"M 409.375374 312.471312 L 409.375374 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_42\">\n", | |
| " <g id=\"line2d_51\">\n", | |
| " <path d=\"M 418.738699 312.471312 L 418.738699 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_43\">\n", | |
| " <g id=\"line2d_52\">\n", | |
| " <path d=\"M 437.465349 312.471312 L 437.465349 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_44\">\n", | |
| " <g id=\"line2d_53\">\n", | |
| " <path d=\"M 446.828675 312.471312 L 446.828675 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"xtick_45\">\n", | |
| " <g id=\"line2d_54\">\n", | |
| " <path d=\"M 456.192 312.471312 L 456.192 4.608 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"matplotlib.axis_2\">\n", | |
| " <g id=\"ytick_1\">\n", | |
| " <g id=\"line2d_55\">\n", | |
| " <path d=\"M 44.205688 298.477526 L 456.192 298.477526 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_56\">\n", | |
| " <path d=\"M 44.205688 298.477526 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <defs>\n", | |
| " <path id=\"me53a58d029\" d=\"M 0 0 L -2.75 0 \" style=\"stroke: #333333\"/>\n", | |
| " </defs>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me53a58d029\" x=\"44.205688\" y=\"298.477526\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_10\">\n", | |
| " <!-- 0.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 301.820838) scale(0.088 -0.088)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-2e\" d=\"M 684 794 L 1344 794 L 1344 0 L 684 0 L 684 794 z \" 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-30\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_2\">\n", | |
| " <g id=\"line2d_57\">\n", | |
| " <path d=\"M 44.205688 228.508591 L 456.192 228.508591 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_58\">\n", | |
| " <path d=\"M 44.205688 228.508591 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me53a58d029\" x=\"44.205688\" y=\"228.508591\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_11\">\n", | |
| " <!-- 2.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 231.851903) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-32\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_3\">\n", | |
| " <g id=\"line2d_59\">\n", | |
| " <path d=\"M 44.205688 158.539656 L 456.192 158.539656 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_60\">\n", | |
| " <path d=\"M 44.205688 158.539656 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me53a58d029\" x=\"44.205688\" y=\"158.539656\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_12\">\n", | |
| " <!-- 5.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 161.882969) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-35\"/>\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_4\">\n", | |
| " <g id=\"line2d_61\">\n", | |
| " <path d=\"M 44.205688 88.570722 L 456.192 88.570722 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_62\">\n", | |
| " <path d=\"M 44.205688 88.570722 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me53a58d029\" x=\"44.205688\" y=\"88.570722\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_13\">\n", | |
| " <!-- 7.5 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(25.460938 91.914034) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-37\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-35\" transform=\"translate(95.410156 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_5\">\n", | |
| " <g id=\"line2d_63\">\n", | |
| " <path d=\"M 44.205688 18.601787 L 456.192 18.601787 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #e5e5e5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_64\">\n", | |
| " <path d=\"M 44.205688 18.601787 \" style=\"fill: none; stroke: #333333; stroke-width: 1.5; stroke-linecap: square\"/>\n", | |
| " <g>\n", | |
| " <use xlink:href=\"#me53a58d029\" x=\"44.205688\" y=\"18.601787\" style=\"fill: #333333; stroke: #333333\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_14\">\n", | |
| " <!-- 10.0 -->\n", | |
| " <g style=\"fill: #4d4d4d\" transform=\"translate(19.861938 21.945099) scale(0.088 -0.088)\">\n", | |
| " <use xlink:href=\"#DejaVuSans-31\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(63.623047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-2e\" transform=\"translate(127.246094 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-30\" transform=\"translate(159.033203 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_6\">\n", | |
| " <g id=\"line2d_65\">\n", | |
| " <path d=\"M 44.205688 263.493058 L 456.192 263.493058 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_7\">\n", | |
| " <g id=\"line2d_66\">\n", | |
| " <path d=\"M 44.205688 193.524124 L 456.192 193.524124 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_8\">\n", | |
| " <g id=\"line2d_67\">\n", | |
| " <path d=\"M 44.205688 123.555189 L 456.192 123.555189 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"ytick_9\">\n", | |
| " <g id=\"line2d_68\">\n", | |
| " <path d=\"M 44.205688 53.586254 L 456.192 53.586254 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #fafafa; stroke-width: 0.5; stroke-linecap: square\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"PolyCollection_1\">\n", | |
| " <path d=\"M 62.932338 298.477526 L 62.932338 205.185613 L 156.471958 205.185613 L 156.471958 298.477526 z \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 156.565591 298.477526 L 156.565591 200.386341 L 250.10521 200.386341 L 250.10521 298.477526 z \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 250.198844 298.477526 L 250.198844 190.123829 L 343.738463 190.123829 L 343.738463 298.477526 z \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 343.832097 298.477526 L 343.832097 181.764389 L 390.55509 181.764389 L 390.55509 298.477526 z \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " <path d=\"M 390.648723 298.477526 L 390.648723 175.810872 L 437.371716 175.810872 L 437.371716 298.477526 z \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: #595959; stroke: #000000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " <g id=\"line2d_69\">\n", | |
| " <path d=\"M 156.471958 205.194904 L 162.206517 204.624698 L 167.941076 204.051006 L 173.675635 203.473807 L 179.410194 202.89308 L 185.144753 202.308803 L 190.879312 201.720955 L 196.613871 201.129513 L 202.34843 200.534457 L 208.082989 199.935762 L 213.817548 199.333408 L 219.552107 198.727372 L 225.286666 198.117632 L 231.021225 197.504164 L 236.755784 196.886947 L 242.490343 196.265956 L 248.224902 195.64117 L 253.959461 195.012565 L 259.69402 194.380117 L 265.428579 193.743803 L 271.163138 193.1036 L 276.897697 192.459483 L 282.632256 191.811429 L 288.366815 191.159414 L 294.101374 190.503413 L 299.835933 189.843402 L 305.570492 189.179357 L 311.305051 188.511252 L 317.03961 187.839064 L 322.774169 187.162767 L 328.508728 186.482336 L 334.243287 185.797745 L 339.977846 185.10897 L 345.712405 184.415985 L 351.446964 183.718764 L 357.181523 183.017281 L 362.916082 182.311509 L 368.650641 181.601424 L 374.3852 180.886998 L 380.119759 180.168205 L 385.854318 179.445019 L 391.588877 178.717412 L 397.323436 177.985357 L 403.057995 177.248827 L 408.792554 176.507795 L 414.527113 175.762234 L 420.261672 175.012115 L 425.996231 174.257411 L 431.73079 173.498093 L 437.465349 172.734135 \" clip-path=\"url(#p05bc7b75b0)\" style=\"fill: none; stroke: #ff0000; stroke-width: 0.886227\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"patch_3\">\n", | |
| " <path d=\"M 44.205688 312.471312 L 456.192 312.471312 L 456.192 4.608 L 44.205688 4.608 L 44.205688 312.471312 z \" style=\"fill: none; stroke: #7f7f7f; stroke-linejoin: miter\"/>\n", | |
| " </g>\n", | |
| " <g id=\"text_15\">\n", | |
| " <!-- Time [years] -->\n", | |
| " <g transform=\"translate(215.566031 338.704344) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-54\" d=\"M -19 4666 L 3928 4666 L 3928 4134 L 2272 4134 L 2272 0 L 1638 0 L 1638 4134 L -19 4134 L -19 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-69\" d=\"M 603 3500 L 1178 3500 L 1178 0 L 603 0 L 603 3500 z M 603 4863 L 1178 4863 L 1178 4134 L 603 4134 L 603 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6d\" d=\"M 3328 2828 Q 3544 3216 3844 3400 Q 4144 3584 4550 3584 Q 5097 3584 5394 3201 Q 5691 2819 5691 2113 L 5691 0 L 5113 0 L 5113 2094 Q 5113 2597 4934 2840 Q 4756 3084 4391 3084 Q 3944 3084 3684 2787 Q 3425 2491 3425 1978 L 3425 0 L 2847 0 L 2847 2094 Q 2847 2600 2669 2842 Q 2491 3084 2119 3084 Q 1678 3084 1418 2786 Q 1159 2488 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1356 3278 1631 3431 Q 1906 3584 2284 3584 Q 2666 3584 2933 3390 Q 3200 3197 3328 2828 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-65\" d=\"M 3597 1894 L 3597 1613 L 953 1613 Q 991 1019 1311 708 Q 1631 397 2203 397 Q 2534 397 2845 478 Q 3156 559 3463 722 L 3463 178 Q 3153 47 2828 -22 Q 2503 -91 2169 -91 Q 1331 -91 842 396 Q 353 884 353 1716 Q 353 2575 817 3079 Q 1281 3584 2069 3584 Q 2775 3584 3186 3129 Q 3597 2675 3597 1894 z M 3022 2063 Q 3016 2534 2758 2815 Q 2500 3097 2075 3097 Q 1594 3097 1305 2825 Q 1016 2553 972 2059 L 3022 2063 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5b\" d=\"M 550 4863 L 1875 4863 L 1875 4416 L 1125 4416 L 1125 -397 L 1875 -397 L 1875 -844 L 550 -844 L 550 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-79\" d=\"M 2059 -325 Q 1816 -950 1584 -1140 Q 1353 -1331 966 -1331 L 506 -1331 L 506 -850 L 844 -850 Q 1081 -850 1212 -737 Q 1344 -625 1503 -206 L 1606 56 L 191 3500 L 800 3500 L 1894 763 L 2988 3500 L 3597 3500 L 2059 -325 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-61\" d=\"M 2194 1759 Q 1497 1759 1228 1600 Q 959 1441 959 1056 Q 959 750 1161 570 Q 1363 391 1709 391 Q 2188 391 2477 730 Q 2766 1069 2766 1631 L 2766 1759 L 2194 1759 z M 3341 1997 L 3341 0 L 2766 0 L 2766 531 Q 2569 213 2275 61 Q 1981 -91 1556 -91 Q 1019 -91 701 211 Q 384 513 384 1019 Q 384 1609 779 1909 Q 1175 2209 1959 2209 L 2766 2209 L 2766 2266 Q 2766 2663 2505 2880 Q 2244 3097 1772 3097 Q 1472 3097 1187 3025 Q 903 2953 641 2809 L 641 3341 Q 956 3463 1253 3523 Q 1550 3584 1831 3584 Q 2591 3584 2966 3190 Q 3341 2797 3341 1997 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-72\" d=\"M 2631 2963 Q 2534 3019 2420 3045 Q 2306 3072 2169 3072 Q 1681 3072 1420 2755 Q 1159 2438 1159 1844 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1341 3275 1631 3429 Q 1922 3584 2338 3584 Q 2397 3584 2469 3576 Q 2541 3569 2628 3553 L 2631 2963 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-73\" d=\"M 2834 3397 L 2834 2853 Q 2591 2978 2328 3040 Q 2066 3103 1784 3103 Q 1356 3103 1142 2972 Q 928 2841 928 2578 Q 928 2378 1081 2264 Q 1234 2150 1697 2047 L 1894 2003 Q 2506 1872 2764 1633 Q 3022 1394 3022 966 Q 3022 478 2636 193 Q 2250 -91 1575 -91 Q 1294 -91 989 -36 Q 684 19 347 128 L 347 722 Q 666 556 975 473 Q 1284 391 1588 391 Q 1994 391 2212 530 Q 2431 669 2431 922 Q 2431 1156 2273 1281 Q 2116 1406 1581 1522 L 1381 1569 Q 847 1681 609 1914 Q 372 2147 372 2553 Q 372 3047 722 3315 Q 1072 3584 1716 3584 Q 2034 3584 2315 3537 Q 2597 3491 2834 3397 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-5d\" d=\"M 1947 4863 L 1947 -844 L 622 -844 L 622 -397 L 1369 -397 L 1369 4416 L 622 4416 L 622 4863 L 1947 4863 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-54\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(57.958984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6d\" transform=\"translate(85.742188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(183.154297 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(244.677734 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5b\" transform=\"translate(276.464844 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(315.478516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-65\" transform=\"translate(374.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(436.181641 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-72\" transform=\"translate(497.460938 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(538.574219 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-5d\" transform=\"translate(590.673828 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <g id=\"text_16\">\n", | |
| " <!-- Additions to capacity -->\n", | |
| " <g transform=\"translate(12.966281 216.354969) rotate(-90) scale(0.11 -0.11)\">\n", | |
| " <defs>\n", | |
| " <path id=\"DejaVuSans-41\" d=\"M 2188 4044 L 1331 1722 L 3047 1722 L 2188 4044 z M 1831 4666 L 2547 4666 L 4325 0 L 3669 0 L 3244 1197 L 1141 1197 L 716 0 L 50 0 L 1831 4666 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-64\" d=\"M 2906 2969 L 2906 4863 L 3481 4863 L 3481 0 L 2906 0 L 2906 525 Q 2725 213 2448 61 Q 2172 -91 1784 -91 Q 1150 -91 751 415 Q 353 922 353 1747 Q 353 2572 751 3078 Q 1150 3584 1784 3584 Q 2172 3584 2448 3432 Q 2725 3281 2906 2969 z M 947 1747 Q 947 1113 1208 752 Q 1469 391 1925 391 Q 2381 391 2643 752 Q 2906 1113 2906 1747 Q 2906 2381 2643 2742 Q 2381 3103 1925 3103 Q 1469 3103 1208 2742 Q 947 2381 947 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-74\" d=\"M 1172 4494 L 1172 3500 L 2356 3500 L 2356 3053 L 1172 3053 L 1172 1153 Q 1172 725 1289 603 Q 1406 481 1766 481 L 2356 481 L 2356 0 L 1766 0 Q 1100 0 847 248 Q 594 497 594 1153 L 594 3053 L 172 3053 L 172 3500 L 594 3500 L 594 4494 L 1172 4494 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6f\" d=\"M 1959 3097 Q 1497 3097 1228 2736 Q 959 2375 959 1747 Q 959 1119 1226 758 Q 1494 397 1959 397 Q 2419 397 2687 759 Q 2956 1122 2956 1747 Q 2956 2369 2687 2733 Q 2419 3097 1959 3097 z M 1959 3584 Q 2709 3584 3137 3096 Q 3566 2609 3566 1747 Q 3566 888 3137 398 Q 2709 -91 1959 -91 Q 1206 -91 779 398 Q 353 888 353 1747 Q 353 2609 779 3096 Q 1206 3584 1959 3584 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-6e\" d=\"M 3513 2113 L 3513 0 L 2938 0 L 2938 2094 Q 2938 2591 2744 2837 Q 2550 3084 2163 3084 Q 1697 3084 1428 2787 Q 1159 2491 1159 1978 L 1159 0 L 581 0 L 581 3500 L 1159 3500 L 1159 2956 Q 1366 3272 1645 3428 Q 1925 3584 2291 3584 Q 2894 3584 3203 3211 Q 3513 2838 3513 2113 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-63\" d=\"M 3122 3366 L 3122 2828 Q 2878 2963 2633 3030 Q 2388 3097 2138 3097 Q 1578 3097 1268 2742 Q 959 2388 959 1747 Q 959 1106 1268 751 Q 1578 397 2138 397 Q 2388 397 2633 464 Q 2878 531 3122 666 L 3122 134 Q 2881 22 2623 -34 Q 2366 -91 2075 -91 Q 1284 -91 818 406 Q 353 903 353 1747 Q 353 2603 823 3093 Q 1294 3584 2113 3584 Q 2378 3584 2631 3529 Q 2884 3475 3122 3366 z \" transform=\"scale(0.015625)\"/>\n", | |
| " <path id=\"DejaVuSans-70\" d=\"M 1159 525 L 1159 -1331 L 581 -1331 L 581 3500 L 1159 3500 L 1159 2969 Q 1341 3281 1617 3432 Q 1894 3584 2278 3584 Q 2916 3584 3314 3078 Q 3713 2572 3713 1747 Q 3713 922 3314 415 Q 2916 -91 2278 -91 Q 1894 -91 1617 61 Q 1341 213 1159 525 z M 3116 1747 Q 3116 2381 2855 2742 Q 2594 3103 2138 3103 Q 1681 3103 1420 2742 Q 1159 2381 1159 1747 Q 1159 1113 1420 752 Q 1681 391 2138 391 Q 2594 391 2855 752 Q 3116 1113 3116 1747 z \" transform=\"scale(0.015625)\"/>\n", | |
| " </defs>\n", | |
| " <use xlink:href=\"#DejaVuSans-41\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(66.658203 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-64\" transform=\"translate(130.134766 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(193.611328 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(221.394531 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(260.603516 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(288.386719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6e\" transform=\"translate(349.568359 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-73\" transform=\"translate(412.947266 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(465.046875 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(496.833984 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-6f\" transform=\"translate(536.042969 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-20\" transform=\"translate(597.224609 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(629.011719 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(683.992188 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-70\" transform=\"translate(745.271484 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-61\" transform=\"translate(808.748047 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-63\" transform=\"translate(870.027344 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-69\" transform=\"translate(925.007812 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-74\" transform=\"translate(952.791016 0)\"/>\n", | |
| " <use xlink:href=\"#DejaVuSans-79\" transform=\"translate(992 0)\"/>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " </g>\n", | |
| " <defs>\n", | |
| " <clipPath id=\"p05bc7b75b0\">\n", | |
| " <rect x=\"44.205688\" y=\"4.608\" width=\"411.986312\" height=\"307.863312\"/>\n", | |
| " </clipPath>\n", | |
| " </defs>\n", | |
| "</svg>" | |
| ] | |
| }, | |
| "metadata": {}, | |
| "output_type": "display_data" | |
| } | |
| ], | |
| "source": [ | |
| "data_case5 = pd.DataFrame([\n", | |
| " [700, 3.504812],\n", | |
| " [710, 3.871493],\n", | |
| " [715, 4.170177],\n", | |
| " [720, 4.382897],\n", | |
| "])\n", | |
| "plot(data_case5)" | |
| ] | |
| } | |
| ], | |
| "metadata": { | |
| "kernelspec": { | |
| "display_name": "Python 3 (ipykernel)", | |
| "language": "python", | |
| "name": "python3" | |
| }, | |
| "language_info": { | |
| "codemirror_mode": { | |
| "name": "ipython", | |
| "version": 3 | |
| }, | |
| "file_extension": ".py", | |
| "mimetype": "text/x-python", | |
| "name": "python", | |
| "nbconvert_exporter": "python", | |
| "pygments_lexer": "ipython3", | |
| "version": "3.13.0" | |
| } | |
| }, | |
| "nbformat": 4, | |
| "nbformat_minor": 5 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment