Skip to content

Instantly share code, notes, and snippets.

@mschauer
Last active April 11, 2020 05:51
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mschauer/9da19ea563d072cb683aba80ab61efb4 to your computer and use it in GitHub Desktop.
Save mschauer/9da19ea563d072cb683aba80ab61efb4 to your computer and use it in GitHub Desktop.
SIR
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Parameter inference for a simple SIR model with the package `Bridge`\n",
"\n",
"## Introduction\n",
"\n",
"Mathieu Besançon made a nice blog post on Chris' `DifferentialEquations` ecosystem,\n",
"https://mbesancon.github.io/post/2017-12-14-diffeq-julia/ . \n",
"\n",
"One of the examples is a simple model tracking individuals in a population with three states $S$, $I$, $R$. \n",
"\n",
"Let $u = (u_1, u_2, u_2)$ be the vector of individuals in these states.\n",
"\n",
"* At any moment an individual of state $I$ can \"convince\" an individual of state $S$ to join the fraction $I$\n",
"$$\n",
"S,I \\mapsto 2I\n",
"$$\n",
"This transition happens proportional to the number of possible pairs $I, S$ which can match up, so proportional\n",
"to $u_1 u_2$ \n",
"with some proportionality constant $\\alpha$.\n",
"\n",
"* At any moment an individual of state $I$ can attain state $R$\n",
"$$\n",
"I \\mapsto R\n",
"$$\n",
"This reaction happens proportional to the number of individuals in state $I$, so proportional to $u_2$\n",
"with proportionality constant $\\beta$.\n",
"\n",
"In the SIR interpretation of the model, where $I$, $S$ and $R$ stand for\n",
"(S)usceptible, (I)nfected, and (R)ecovered individuals, the $I,S \\mapsto 2I$ is understood as infection and $I \\mapsto R$ as recovery (with subsequent immunity) of the individual. \n",
"\n",
"Intepreting these transitions as continuous processes, the population can be modeled by an\n",
"ordinary differential equation\n",
"\n",
"$$\n",
"\\frac{d}{dt} u(t) = \\begin{bmatrix} -\\alpha u_1(t)u_2(t)\\\\ \\alpha u_1(t)u_2(t) - \\beta u_2(t)\\\\ \\beta u_2(t)\\end{bmatrix}\n",
"$$\n",
"\n",
"In the following I show how to estimate the model parameters $\\alpha$ and $\\beta$ from observations of a noisy version of the model.\n",
"\n",
"\n",
"I am using my package `Bridge` and `StaticArray`'s and some more."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"] add Bridge Plots LaTeXStrings"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"using Bridge\n",
"using Plots\n",
"using LaTeXStrings\n",
"using StaticArrays\n",
"using LinearAlgebra\n",
"using Statistics"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Stochastic model\n",
"\n",
"\n",
"\n",
"The dynamics of the population is given by a stochastic differential equation\n",
"\n",
"$$\n",
" d X_t = b(t, X_t)\\,dt + \\sigma(t, X_t)\\, d W_t\\qquad (\\star)\n",
"$$\n",
"\n",
"with drift vector $b$ and dispersion coefficient $\\sigma$\n",
"\n",
"$$\n",
" b(t, u) = \\begin{bmatrix} -\\alpha u_1u_2\\\\ \\alpha u_1u_2 - \\beta u_2\\\\ \\beta u_2\\end{bmatrix}\n",
"\\qquad\n",
"\\sigma(t, u)= \\begin{bmatrix}\n",
"\\sigma_1 u_1 u_2 & 0\\\\\n",
"-\\sigma_1u_1u_2& -\\sigma_2 u_2\\\\\n",
"0& \\sigma_2 u_2\n",
"\\end{bmatrix}.\n",
"$$\n",
"\n",
"with $\\alpha = 0.8, \\beta = 3.0, \\sigma_1 = 0.07, \\sigma_2 = 0.4$.\n",
"\n",
"\n",
"\n",
"Because $\\sigma$ is a $3x2$ matrix, there is a 2 dimensional noise process $W$ acting on all three components.\n",
"\n",
"This equation models a *closed system*, because of the entries of $b$ and the columns of $\\sigma$ add up to $0$. The population $u_1 + u_2 + u_3$ stays constant. See Mathieu's explanations.\n",
"\n",
"\n",
"In Julia, using `Bridge` and `StaticArray`s, this SDE model reads as follows."
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"σ (generic function with 24 methods)"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import Bridge: b, σ, a\n",
"\n",
"struct CIR <: ContinuousTimeProcess{SVector{3,Float64}}\n",
" α::Float64\n",
" β::Float64\n",
" σ1::Float64\n",
" σ2::Float64\n",
"end\n",
"Ptrue = P = CIR(0.8, 3.0, 0.07, 0.4)\n",
"\n",
"b(t, u, P::CIR) = @SVector [-P.α*u[1]*u[2], P.α*u[1]*u[2] - P.β*u[2], P.β*u[2]]\n",
"σ(t, u, P::CIR) = @SMatrix Float64[\n",
" P.σ1*u[1]*u[2] 0.0 \n",
" -P.σ1*u[1]*u[2] -P.σ2*u[2]\n",
" 0.0 P.σ2*u[2]\n",
" ]\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Solving the system\n",
"\n",
"The interpretation of eq. $(\\star)$ is that the population\n",
"follows an ordinary differential equation as\n",
"$ d u_t = b(t, u_t)\\, dt$ above, \n",
"but with superimposed Gaussian noise, such that\n",
"\n",
"$$\n",
" X_{t+\\Delta} \\approx X_{t} + b(t, X_t) d\\Delta + \\sigma(t, X_t) \\sqrt{\\Delta} Z,\n",
"$$\n",
"\n",
"where $Z$ is a *two*-dimensional standard normal vector. $\\sqrt{\\Delta}$ is the scaling of the noise typical for stochastic differential equations. This approximation is the so called Euler-Maruyama scheme implemented in `Bridge`.\n",
"\n",
"The following lines simulate and plot a 2d Brownian motion (Wiener process) $W$ with `Bridge`."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip4500\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip4500)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4501\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip4500)\" d=\"\n",
"M208.77 1425.62 L2352.76 1425.62 L2352.76 47.2441 L208.77 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4502\">\n",
" <rect x=\"208\" y=\"47\" width=\"2145\" height=\"1379\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 269.449,1425.62 269.449,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 775.106,1425.62 775.106,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1280.76,1425.62 1280.76,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1786.42,1425.62 1786.42,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2292.08,1425.62 2292.08,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,1367.38 2352.76,1367.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,1177.49 2352.76,1177.49 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,987.591 2352.76,987.591 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,797.696 2352.76,797.696 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,607.801 2352.76,607.801 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,417.907 2352.76,417.907 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 208.77,228.012 2352.76,228.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,1425.62 2352.76,1425.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,1425.62 208.77,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 269.449,1425.62 269.449,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 775.106,1425.62 775.106,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1280.76,1425.62 1280.76,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1786.42,1425.62 1786.42,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2292.08,1425.62 2292.08,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,1367.38 234.498,1367.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,1177.49 234.498,1177.49 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,987.591 234.498,987.591 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,797.696 234.498,797.696 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,607.801 234.498,607.801 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,417.907 234.498,417.907 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 208.77,228.012 234.498,228.012 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 269.449, 1479.62)\" x=\"269.449\" y=\"1479.62\">0.00</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 775.106, 1479.62)\" x=\"775.106\" y=\"1479.62\">0.25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1280.76, 1479.62)\" x=\"1280.76\" y=\"1479.62\">0.50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1786.42, 1479.62)\" x=\"1786.42\" y=\"1479.62\">0.75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2292.08, 1479.62)\" x=\"2292.08\" y=\"1479.62\">1.00</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 1384.88)\" x=\"184.77\" y=\"1384.88\">-0.75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 1194.99)\" x=\"184.77\" y=\"1194.99\">-0.50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 1005.09)\" x=\"184.77\" y=\"1005.09\">-0.25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 815.196)\" x=\"184.77\" y=\"815.196\">0.00</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 625.301)\" x=\"184.77\" y=\"625.301\">0.25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 435.407)\" x=\"184.77\" y=\"435.407\">0.50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 184.77, 245.512)\" x=\"184.77\" y=\"245.512\">0.75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;\" transform=\"rotate(0, 1280.76, 1559.48)\" x=\"1280.76\" y=\"1559.48\">t</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 269.449,797.696 271.472,819.694 273.494,844.144 275.517,868.719 277.54,874.535 279.562,886.337 281.585,851.752 283.608,846.517 285.63,799.265 287.653,779.443 \n",
" 289.676,755.513 291.698,770.559 293.721,787.05 295.743,799.521 297.766,860.563 299.789,886.064 301.811,917.73 303.834,904.845 305.857,891.047 307.879,868.128 \n",
" 309.902,899.23 311.924,915.854 313.947,950.956 315.97,971.644 317.992,966.33 320.015,985.371 322.038,995.189 324.06,1028.93 326.083,1032.99 328.105,1071.16 \n",
" 330.128,1066.44 332.151,1077.08 334.173,1034.66 336.196,1000.12 338.219,1020.15 340.241,993.628 342.264,972.541 344.286,977.769 346.309,985.291 348.332,1056.15 \n",
" 350.354,991.317 352.377,989.85 354.4,983.611 356.422,990.382 358.445,970.756 360.467,964.221 362.49,980.585 364.513,1013.63 366.535,986.258 368.558,962.064 \n",
" 370.581,1005.36 372.603,1007.9 374.626,989.611 376.649,992.852 378.671,1011.32 380.694,1026.91 382.716,1032.22 384.739,1059.08 386.762,1072.04 388.784,1092.71 \n",
" 390.807,1081.15 392.83,1069.35 394.852,1035.27 396.875,1054.5 398.897,1108.96 400.92,1100.47 402.943,1132.46 404.965,1167.46 406.988,1183.54 409.011,1150.36 \n",
" 411.033,1137.11 413.056,1157.64 415.078,1175.18 417.101,1158.31 419.124,1143.37 421.146,1121.43 423.169,1153.07 425.192,1133.51 427.214,1131.8 429.237,1127.91 \n",
" 431.259,1132.84 433.282,1103.77 435.305,1123.17 437.327,1112.96 439.35,1058.34 441.373,1035.73 443.395,1071.8 445.418,1083.87 447.44,1104.99 449.463,1103.89 \n",
" 451.486,1076.34 453.508,1029.69 455.531,1059.66 457.554,1032.33 459.576,1039.26 461.599,1081.83 463.622,1074.7 465.644,1058.58 467.667,1019.75 469.689,1004.56 \n",
" 471.712,1016.39 473.735,1013.11 475.757,989.885 477.78,993.199 479.803,1010.04 481.825,990.869 483.848,994.412 485.87,963.574 487.893,971.775 489.916,970.743 \n",
" 491.938,959.687 493.961,954.664 495.984,951.345 498.006,924.965 500.029,928.729 502.051,898.769 504.074,859.784 506.097,878.739 508.119,880.438 510.142,893.997 \n",
" 512.165,936.681 514.187,991.627 516.21,1021.19 518.232,1004.27 520.255,1022.69 522.278,1025.63 524.3,994.011 526.323,1012.48 528.346,986.259 530.368,978.412 \n",
" 532.391,951.76 534.413,956.976 536.436,972.109 538.459,994.591 540.481,983.465 542.504,977.328 544.527,973.364 546.549,961.396 548.572,963.065 550.595,996.362 \n",
" 552.617,1001.72 554.64,991.274 556.662,1002.15 558.685,1045.68 560.708,1003.86 562.73,1018.99 564.753,953.944 566.776,996.131 568.798,1003.2 570.821,986.198 \n",
" 572.843,984.794 574.866,978.72 576.889,952.227 578.911,961.275 580.934,947.349 582.957,916.894 584.979,895.685 587.002,865.83 589.024,862.488 591.047,897.827 \n",
" 593.07,864.909 595.092,811.503 597.115,821.268 599.138,816.397 601.16,820.691 603.183,815.924 605.205,816.863 607.228,833.108 609.251,840.748 611.273,894.535 \n",
" 613.296,864.154 615.319,877.727 617.341,881.204 619.364,895.133 621.386,867.92 623.409,894.277 625.432,896.628 627.454,917.345 629.477,883.057 631.5,922.779 \n",
" 633.522,941.635 635.545,918.409 637.568,905.125 639.59,911.907 641.613,912.621 643.635,940.96 645.658,946.597 647.681,926.416 649.703,960.952 651.726,929.524 \n",
" 653.749,927.64 655.771,934.171 657.794,911.296 659.816,934.395 661.839,960.969 663.862,934.344 665.884,933.875 667.907,896.918 669.93,890.504 671.952,944.654 \n",
" 673.975,966.595 675.997,968.021 678.02,1035.53 680.043,1016.8 682.065,1034.65 684.088,1023.59 686.111,1010.6 688.133,1006.7 690.156,965.187 692.178,952.613 \n",
" 694.201,965.904 696.224,962.248 698.246,960.235 700.269,957.495 702.292,945.053 704.314,918.007 706.337,905.295 708.359,901.903 710.382,893.546 712.405,917.747 \n",
" 714.427,913.33 716.45,893.63 718.473,881.091 720.495,881.16 722.518,912.296 724.54,933.999 726.563,923.892 728.586,929.275 730.608,954.857 732.631,976.362 \n",
" 734.654,989.599 736.676,1010.71 738.699,984.457 740.722,983.041 742.744,1040.07 744.767,1055.99 746.789,1086.6 748.812,1090.93 750.835,1066.92 752.857,1063.03 \n",
" 754.88,1022.96 756.903,1033.61 758.925,1048.25 760.948,1008.51 762.97,997.87 764.993,980.743 767.016,1017.62 769.038,1014.08 771.061,1005.9 773.084,991.193 \n",
" 775.106,972.172 777.129,962.05 779.151,977.457 781.174,916.105 783.197,896.337 785.219,940.17 787.242,912.765 789.265,901.224 791.287,912.335 793.31,890.763 \n",
" 795.332,894.244 797.355,877.731 799.378,884.428 801.4,867.189 803.423,848.844 805.446,836.086 807.468,869.456 809.491,834.05 811.513,824.141 813.536,833.236 \n",
" 815.559,845.53 817.581,879.321 819.604,838.201 821.627,830.152 823.649,839.619 825.672,814.235 827.695,776.909 829.717,810.001 831.74,806.649 833.762,792.865 \n",
" 835.785,815.257 837.808,846.55 839.83,793.735 841.853,766.036 843.876,803.547 845.898,805.378 847.921,777.794 849.943,768.277 851.966,756.43 853.989,746.945 \n",
" 856.011,757.106 858.034,783.084 860.057,767.402 862.079,778.398 864.102,788.201 866.124,799.365 868.147,807.591 870.17,776.356 872.192,720.287 874.215,698.962 \n",
" 876.238,701.555 878.26,725.693 880.283,718 882.305,685.564 884.328,668.444 886.351,653.536 888.373,625.07 890.396,626.673 892.419,635.622 894.441,591.483 \n",
" 896.464,571.29 898.486,551.54 900.509,502.291 902.532,551.476 904.554,546.488 906.577,570.05 908.6,558.853 910.622,544.226 912.645,543.64 914.668,574.148 \n",
" 916.69,584.459 918.713,571.487 920.735,560.4 922.758,539.946 924.781,515.34 926.803,515.428 928.826,524.102 930.849,626.615 932.871,644.477 934.894,625.858 \n",
" 936.916,594.124 938.939,611.778 940.962,583.284 942.984,599.051 945.007,576.23 947.03,580.964 949.052,603.548 951.075,594.419 953.097,553.397 955.12,598.582 \n",
" 957.143,584.556 959.165,584.037 961.188,594.22 963.211,559.348 965.233,532.256 967.256,542.072 969.278,514.038 971.301,546.353 973.324,510.394 975.346,482.359 \n",
" 977.369,472.878 979.392,490.076 981.414,506.164 983.437,539.972 985.459,517.609 987.482,507.386 989.505,508.059 991.527,517.905 993.55,536.904 995.573,555.313 \n",
" 997.595,521.097 999.618,538.591 1001.64,579.372 1003.66,574.54 1005.69,605.518 1007.71,603.441 1009.73,613.628 1011.75,628.847 1013.78,657.849 1015.8,702.425 \n",
" 1017.82,739.502 1019.84,710.355 1021.87,698.715 1023.89,662.246 1025.91,621.14 1027.93,632.952 1029.96,647.777 1031.98,650.318 1034,658.368 1036.03,666.329 \n",
" 1038.05,636.471 1040.07,638.288 1042.09,646.877 1044.12,665.3 1046.14,661.342 1048.16,634.349 1050.18,639.642 1052.21,617.447 1054.23,615.498 1056.25,654.245 \n",
" 1058.27,650.917 1060.3,645.41 1062.32,662.116 1064.34,631.785 1066.36,641.832 1068.39,647.343 1070.41,644.209 1072.43,680.838 1074.46,672.318 1076.48,664.678 \n",
" 1078.5,630.401 1080.52,584.527 1082.55,551.519 1084.57,555.225 1086.59,520.9 1088.61,530.617 1090.64,493.195 1092.66,505.928 1094.68,487.134 1096.7,459.761 \n",
" 1098.73,492.874 1100.75,448.225 1102.77,444.197 1104.79,415.849 1106.82,380.325 1108.84,351.802 1110.86,327.617 1112.89,338.748 1114.91,310.194 1116.93,315.068 \n",
" 1118.95,309.644 1120.98,316.836 1123,307.641 1125.02,317.872 1127.04,303.724 1129.07,284.411 1131.09,261.834 1133.11,275.415 1135.13,298.647 1137.16,286.451 \n",
" 1139.18,281.318 1141.2,291.032 1143.22,293.982 1145.25,274.854 1147.27,261.045 1149.29,261.071 1151.31,296.444 1153.34,284.951 1155.36,263.344 1157.38,276.75 \n",
" 1159.41,286.45 1161.43,267.24 1163.45,213.577 1165.47,185.309 1167.5,169.94 1169.52,167.645 1171.54,146.608 1173.56,185.446 1175.59,149.676 1177.61,193.131 \n",
" 1179.63,209.238 1181.65,218.252 1183.68,193.567 1185.7,198.893 1187.72,215.683 1189.74,211.612 1191.77,218.862 1193.79,205.609 1195.81,216.516 1197.84,228.011 \n",
" 1199.86,233.931 1201.88,248.996 1203.9,215.244 1205.93,188.671 1207.95,202.354 1209.97,222.801 1211.99,231.262 1214.02,213.874 1216.04,219.645 1218.06,221.523 \n",
" 1220.08,223.12 1222.11,254.524 1224.13,241.983 1226.15,246.879 1228.17,208.777 1230.2,189.338 1232.22,194.595 1234.24,236.402 1236.27,286.83 1238.29,300.038 \n",
" 1240.31,287.867 1242.33,318.019 1244.36,342.935 1246.38,325.162 1248.4,314.219 1250.42,326.763 1252.45,353.136 1254.47,392.241 1256.49,396.307 1258.51,411.068 \n",
" 1260.54,423.146 1262.56,435.976 1264.58,471.377 1266.6,438.918 1268.63,402.81 1270.65,362.469 1272.67,391.191 1274.7,311.009 1276.72,316.181 1278.74,330.795 \n",
" 1280.76,333.43 1282.79,325.779 1284.81,325.232 1286.83,325.43 1288.85,320.399 1290.88,344.456 1292.9,329.489 1294.92,304.202 1296.94,333.942 1298.97,314.165 \n",
" 1300.99,290.304 1303.01,278.276 1305.03,276.588 1307.06,297.518 1309.08,341.665 1311.1,328.131 1313.13,321.068 1315.15,300.454 1317.17,287.631 1319.19,307.641 \n",
" 1321.22,314.473 1323.24,322.92 1325.26,296.584 1327.28,304.797 1329.31,281.094 1331.33,295.658 1333.35,296.773 1335.37,265.122 1337.4,272.825 1339.42,299.002 \n",
" 1341.44,286.351 1343.46,300.148 1345.49,320.32 1347.51,298.592 1349.53,277.946 1351.56,289.994 1353.58,272.1 1355.6,305.41 1357.62,292.17 1359.65,274.591 \n",
" 1361.67,222.141 1363.69,187.102 1365.71,176.226 1367.74,163.227 1369.76,156.789 1371.78,151.815 1373.8,163.158 1375.83,163.996 1377.85,176.971 1379.87,163.681 \n",
" 1381.89,169.31 1383.92,193.999 1385.94,193.393 1387.96,187.799 1389.99,129.994 1392.01,156.732 1394.03,155.145 1396.05,187.259 1398.08,150.703 1400.1,144.946 \n",
" 1402.12,150.229 1404.14,161.772 1406.17,177.526 1408.19,167.442 1410.21,170.989 1412.23,160.629 1414.26,131.512 1416.28,103.227 1418.3,86.9346 1420.32,86.2547 \n",
" 1422.35,130.143 1424.37,131.66 1426.39,171.527 1428.41,130.66 1430.44,130.33 1432.46,180.329 1434.48,161.657 1436.51,205.216 1438.53,222.627 1440.55,211.535 \n",
" 1442.57,217.845 1444.6,219.31 1446.62,207.926 1448.64,209.643 1450.66,210.738 1452.69,211.1 1454.71,190.123 1456.73,183.734 1458.75,168.827 1460.78,179.065 \n",
" 1462.8,198.782 1464.82,218.778 1466.84,215.189 1468.87,244.391 1470.89,257.649 1472.91,290.545 1474.94,309.445 1476.96,271.105 1478.98,269.597 1481,252.512 \n",
" 1483.03,220.671 1485.05,244.692 1487.07,288.113 1489.09,283.12 1491.12,249.727 1493.14,279.678 1495.16,282.218 1497.18,265.225 1499.21,265.776 1501.23,241.847 \n",
" 1503.25,225.377 1505.27,259.356 1507.3,270.899 1509.32,245.242 1511.34,241.258 1513.37,253.319 1515.39,278.071 1517.41,291.841 1519.43,259.331 1521.46,224.57 \n",
" 1523.48,206.425 1525.5,187.503 1527.52,204.551 1529.55,196.997 1531.57,212.412 1533.59,206.622 1535.61,196.856 1537.64,177.899 1539.66,228.041 1541.68,228.987 \n",
" 1543.7,201.059 1545.73,257.563 1547.75,270.831 1549.77,262.858 1551.8,240.272 1553.82,232.765 1555.84,252.445 1557.86,235.804 1559.89,239.045 1561.91,298.174 \n",
" 1563.93,302.097 1565.95,282.308 1567.98,236.562 1570,244.912 1572.02,260.018 1574.04,257.755 1576.07,228.685 1578.09,238.741 1580.11,245.586 1582.13,249.819 \n",
" 1584.16,266.237 1586.18,261.253 1588.2,220.507 1590.23,202.42 1592.25,194.354 1594.27,212.001 1596.29,227.54 1598.32,230.81 1600.34,205.64 1602.36,254.678 \n",
" 1604.38,257.418 1606.41,271.27 1608.43,257.244 1610.45,197.125 1612.47,197.993 1614.5,213.215 1616.52,177.904 1618.54,198.549 1620.56,189.162 1622.59,188.298 \n",
" 1624.61,192.675 1626.63,211.64 1628.66,238.461 1630.68,260.352 1632.7,282.7 1634.72,296.218 1636.75,298.944 1638.77,291.778 1640.79,286.063 1642.81,302.602 \n",
" 1644.84,333.21 1646.86,358.836 1648.88,393.88 1650.9,385.581 1652.93,378.961 1654.95,386.033 1656.97,416.836 1658.99,394.678 1661.02,412.517 1663.04,410.405 \n",
" 1665.06,423.205 1667.09,428.113 1669.11,441.751 1671.13,417.09 1673.15,451.757 1675.18,461.706 1677.2,424.151 1679.22,387.261 1681.24,380.844 1683.27,398.05 \n",
" 1685.29,374.671 1687.31,386.269 1689.33,353.593 1691.36,381.19 1693.38,399.877 1695.4,378.543 1697.42,375.378 1699.45,370.705 1701.47,396.37 1703.49,394.549 \n",
" 1705.51,382.985 1707.54,394.028 1709.56,377.723 1711.58,398.366 1713.61,396.533 1715.63,369.604 1717.65,391.37 1719.67,371.52 1721.7,357.349 1723.72,366.433 \n",
" 1725.74,377.301 1727.76,369.448 1729.79,374.71 1731.81,373.982 1733.83,393.825 1735.85,402.798 1737.88,396.072 1739.9,386.448 1741.92,389.591 1743.94,428.581 \n",
" 1745.97,473.281 1747.99,492.69 1750.01,522.354 1752.04,524.862 1754.06,529.259 1756.08,571.611 1758.1,544.86 1760.13,549.468 1762.15,529.664 1764.17,533.424 \n",
" 1766.19,530.067 1768.22,516.493 1770.24,554.911 1772.26,569.261 1774.28,521.676 1776.31,516.672 1778.33,517.156 1780.35,535.311 1782.37,614.408 1784.4,609.839 \n",
" 1786.42,605.51 1788.44,594.537 1790.47,564.615 1792.49,537.196 1794.51,536.765 1796.53,526.183 1798.56,533.809 1800.58,517.918 1802.6,517.789 1804.62,510.515 \n",
" 1806.65,522.994 1808.67,502.23 1810.69,513.607 1812.71,493.769 1814.74,507.645 1816.76,480.363 1818.78,444.306 1820.8,427.621 1822.83,462.254 1824.85,468.71 \n",
" 1826.87,449.948 1828.9,415.304 1830.92,431.7 1832.94,405.093 1834.96,397.841 1836.99,363.673 1839.01,371.499 1841.03,390.416 1843.05,443.123 1845.08,448.412 \n",
" 1847.1,444.886 1849.12,469.079 1851.14,452.917 1853.17,461.367 1855.19,472.268 1857.21,451.566 1859.23,457.36 1861.26,451.938 1863.28,492.047 1865.3,500.184 \n",
" 1867.33,493.399 1869.35,508.062 1871.37,509.277 1873.39,519.487 1875.42,489.206 1877.44,527.574 1879.46,481.947 1881.48,502.135 1883.51,521.869 1885.53,525.042 \n",
" 1887.55,519.949 1889.57,525.947 1891.6,511.794 1893.62,488.845 1895.64,485.014 1897.66,514.544 1899.69,489.434 1901.71,529.995 1903.73,562.581 1905.76,543.866 \n",
" 1907.78,552.241 1909.8,546.742 1911.82,513.374 1913.85,483.704 1915.87,471.803 1917.89,497.448 1919.91,502.674 1921.94,512.391 1923.96,528.672 1925.98,524.23 \n",
" 1928,525.464 1930.03,540.895 1932.05,534.422 1934.07,538.613 1936.09,573.225 1938.12,568.056 1940.14,564.044 1942.16,561.391 1944.19,578.22 1946.21,570.336 \n",
" 1948.23,590.937 1950.25,601.896 1952.28,625.161 1954.3,612.296 1956.32,647.545 1958.34,626.036 1960.37,643.157 1962.39,648.218 1964.41,614.616 1966.43,596.277 \n",
" 1968.46,601.75 1970.48,611.727 1972.5,666.377 1974.52,687.688 1976.55,719.888 1978.57,748.996 1980.59,702.243 1982.62,695.231 1984.64,676.586 1986.66,687.994 \n",
" 1988.68,730.743 1990.71,690.523 1992.73,671.75 1994.75,713.593 1996.77,686.395 1998.8,669.184 2000.82,660.194 2002.84,604.746 2004.86,612.19 2006.89,625.538 \n",
" 2008.91,643.785 2010.93,650.863 2012.95,666.112 2014.98,689.578 2017,703.271 2019.02,689.37 2021.04,684.942 2023.07,679.662 2025.09,653.452 2027.11,627.096 \n",
" 2029.14,651.088 2031.16,667.861 2033.18,660.079 2035.2,621.883 2037.23,624.931 2039.25,629.796 2041.27,665.195 2043.29,623.383 2045.32,649.234 2047.34,653.716 \n",
" 2049.36,651.789 2051.38,677.541 2053.41,673.638 2055.43,693.816 2057.45,697.584 2059.47,676.596 2061.5,688.847 2063.52,657.02 2065.54,678.097 2067.57,667.066 \n",
" 2069.59,668.022 2071.61,682.036 2073.63,642.856 2075.66,626.006 2077.68,632.148 2079.7,651.708 2081.72,637.884 2083.75,663.378 2085.77,674.295 2087.79,671.427 \n",
" 2089.81,675.157 2091.84,683.786 2093.86,665.449 2095.88,693.523 2097.9,687.301 2099.93,674.02 2101.95,677.137 2103.97,647.549 2106,648.067 2108.02,631.46 \n",
" 2110.04,650.772 2112.06,689.66 2114.09,710.705 2116.11,704.058 2118.13,705.616 2120.15,645.328 2122.18,633.663 2124.2,617.348 2126.22,589.868 2128.24,585.451 \n",
" 2130.27,594.019 2132.29,639.672 2134.31,630.489 2136.33,580.792 2138.36,573.943 2140.38,551.539 2142.4,577.887 2144.43,570.443 2146.45,543.524 2148.47,575.507 \n",
" 2150.49,597.398 2152.52,579.311 2154.54,587.147 2156.56,557.909 2158.58,583.97 2160.61,588.524 2162.63,580.958 2164.65,548.692 2166.67,548.544 2168.7,493.724 \n",
" 2170.72,437.44 2172.74,452.664 2174.76,438.957 2176.79,439.819 2178.81,434.601 2180.83,447.186 2182.86,421.68 2184.88,412.544 2186.9,384.96 2188.92,382.723 \n",
" 2190.95,376.92 2192.97,362.518 2194.99,359.154 2197.01,378.263 2199.04,408.654 2201.06,396.229 2203.08,425.716 2205.1,400.329 2207.13,444.474 2209.15,414.401 \n",
" 2211.17,383.457 2213.19,383.606 2215.22,382.245 2217.24,406.396 2219.26,387.256 2221.29,396.574 2223.31,416.297 2225.33,431.256 2227.35,463.144 2229.38,433.981 \n",
" 2231.4,441.031 2233.42,434.447 2235.44,439.607 2237.47,412.204 2239.49,396.466 2241.51,404.847 2243.53,419.598 2245.56,412.211 2247.58,417.982 2249.6,426.95 \n",
" 2251.62,421.48 2253.65,429.273 2255.67,452.983 2257.69,454.678 2259.72,455.789 2261.74,491.901 2263.76,488.974 2265.78,483.403 2267.81,477.953 2269.83,469.415 \n",
" 2271.85,472.336 2273.87,470.206 2275.9,454.381 2277.92,443.662 2279.94,415.611 2281.96,448.108 2283.99,484.579 2286.01,459.951 2288.03,503.564 2290.05,479.228 \n",
" 2292.08,444.008 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 269.449,797.696 271.472,789.121 273.494,812.038 275.517,776.237 277.54,761.968 279.562,778.806 281.585,790.885 283.608,793.162 285.63,827.815 287.653,860.639 \n",
" 289.676,816.713 291.698,844.371 293.721,831.78 295.743,802.678 297.766,792.532 299.789,835.46 301.811,832.731 303.834,856.118 305.857,852.564 307.879,837.724 \n",
" 309.902,834.844 311.924,829.037 313.947,876.23 315.97,836.371 317.992,850.302 320.015,844.487 322.038,794.784 324.06,762.103 326.083,780.62 328.105,815.457 \n",
" 330.128,830.819 332.151,825.954 334.173,836.291 336.196,773.52 338.219,771.124 340.241,765.089 342.264,776.126 344.286,760.485 346.309,772.504 348.332,816.682 \n",
" 350.354,831.718 352.377,812.606 354.4,826.54 356.422,804.672 358.445,801.68 360.467,790.401 362.49,743.973 364.513,736.83 366.535,749.169 368.558,790.283 \n",
" 370.581,790.985 372.603,810.749 374.626,796.146 376.649,821.748 378.671,803.558 380.694,827.218 382.716,897.768 384.739,883.218 386.762,844.446 388.784,836.735 \n",
" 390.807,849.184 392.83,856.868 394.852,879.671 396.875,855.841 398.897,865.339 400.92,895.26 402.943,955.581 404.965,987.809 406.988,1010.69 409.011,992.198 \n",
" 411.033,990.757 413.056,943.534 415.078,949.845 417.101,920.143 419.124,913.568 421.146,879.818 423.169,902.155 425.192,906.306 427.214,889.093 429.237,853.521 \n",
" 431.259,892.335 433.282,874.855 435.305,912.421 437.327,913.811 439.35,941.292 441.373,945.623 443.395,948.118 445.418,958.09 447.44,975.845 449.463,972.913 \n",
" 451.486,970.004 453.508,928.298 455.531,952.264 457.554,978.782 459.576,990.101 461.599,963.571 463.622,973.759 465.644,950.198 467.667,942.077 469.689,957.029 \n",
" 471.712,959.797 473.735,990.705 475.757,949.248 477.78,959.014 479.803,971.739 481.825,1035.29 483.848,1058.89 485.87,1049.14 487.893,1036.9 489.916,1028.54 \n",
" 491.938,1005.42 493.961,951.73 495.984,912.7 498.006,886.695 500.029,874.626 502.051,884.554 504.074,871.84 506.097,869.423 508.119,861.799 510.142,830.069 \n",
" 512.165,835.413 514.187,820.11 516.21,805.931 518.232,823.925 520.255,810.509 522.278,821.574 524.3,824.955 526.323,806.962 528.346,793.059 530.368,821.76 \n",
" 532.391,846.483 534.413,866.771 536.436,901.565 538.459,922.639 540.481,907.271 542.504,887.522 544.527,870.989 546.549,842.997 548.572,774.387 550.595,774.902 \n",
" 552.617,773.293 554.64,804.831 556.662,811.896 558.685,774.756 560.708,783.969 562.73,798.889 564.753,783.043 566.776,755.437 568.798,718.332 570.821,744.095 \n",
" 572.843,744.291 574.866,738.57 576.889,765.621 578.911,753.452 580.934,783.367 582.957,770.58 584.979,723.783 587.002,694.812 589.024,667.629 591.047,661.472 \n",
" 593.07,647.552 595.092,689.895 597.115,674.49 599.138,692.098 601.16,685.095 603.183,679.454 605.205,701.641 607.228,727.754 609.251,713.732 611.273,705.107 \n",
" 613.296,715.615 615.319,690.743 617.341,714.523 619.364,728.509 621.386,728.156 623.409,724.483 625.432,739.463 627.454,728.953 629.477,707.477 631.5,702.273 \n",
" 633.522,720.045 635.545,746.074 637.568,729.284 639.59,751.241 641.613,737.233 643.635,723.168 645.658,710.237 647.681,693.179 649.703,650.411 651.726,676.447 \n",
" 653.749,629.378 655.771,629.648 657.794,587.91 659.816,547.502 661.839,543.797 663.862,508.429 665.884,534.78 667.907,531 669.93,495.632 671.952,449.834 \n",
" 673.975,445.982 675.997,469.019 678.02,519.293 680.043,513.975 682.065,540.203 684.088,574.234 686.111,536.896 688.133,532.479 690.156,555.898 692.178,535.521 \n",
" 694.201,523.657 696.224,578.427 698.246,559.115 700.269,566.189 702.292,599.612 704.314,618.795 706.337,599.191 708.359,587.415 710.382,625.33 712.405,648.267 \n",
" 714.427,678.605 716.45,696.955 718.473,708.228 720.495,728.447 722.518,749.578 724.54,759.426 726.563,760.961 728.586,782.437 730.608,784.742 732.631,810.498 \n",
" 734.654,791.921 736.676,830.395 738.699,872.7 740.722,859.82 742.744,856.902 744.767,801.51 746.789,827.318 748.812,872.402 750.835,868.852 752.857,887.777 \n",
" 754.88,896.539 756.903,886.83 758.925,904.627 760.948,949.913 762.97,940.175 764.993,947.382 767.016,993.404 769.038,1006.73 771.061,960.95 773.084,979.478 \n",
" 775.106,961.521 777.129,919.49 779.151,924.988 781.174,953.79 783.197,931.849 785.219,933.434 787.242,937.806 789.265,938.373 791.287,923.369 793.31,923.574 \n",
" 795.332,949.731 797.355,936.381 799.378,877.15 801.4,900.039 803.423,912.126 805.446,904.477 807.468,931.406 809.491,907.536 811.513,896.617 813.536,888.354 \n",
" 815.559,874.812 817.581,911.974 819.604,900.587 821.627,931.206 823.649,952.516 825.672,965.211 827.695,999.799 829.717,986.252 831.74,969.115 833.762,949.734 \n",
" 835.785,948.202 837.808,1026.22 839.83,1042.98 841.853,1046.63 843.876,1029.54 845.898,1047.33 847.921,1079.24 849.943,1080.85 851.966,1066.9 853.989,1075.89 \n",
" 856.011,1079.98 858.034,1065.34 860.057,1072.05 862.079,1075.98 864.102,1070.79 866.124,1078.67 868.147,1094.45 870.17,1065.07 872.192,1057.16 874.215,1038.5 \n",
" 876.238,1029.75 878.26,1010.55 880.283,1019.26 882.305,1031.98 884.328,1027.05 886.351,1003.65 888.373,1002.18 890.396,1036.53 892.419,1041.48 894.441,1052.72 \n",
" 896.464,1046.38 898.486,1038.15 900.509,1065.65 902.532,1061.52 904.554,1058.4 906.577,1069.44 908.6,1067.62 910.622,1048.97 912.645,1038.65 914.668,1043.36 \n",
" 916.69,1077.15 918.713,1048.18 920.735,1063.31 922.758,1055.81 924.781,1074.22 926.803,1086.11 928.826,1106.19 930.849,1055.84 932.871,1075.31 934.894,1132.8 \n",
" 936.916,1149.26 938.939,1153.03 940.962,1158.45 942.984,1195.38 945.007,1171.39 947.03,1167.91 949.052,1156.69 951.075,1085.02 953.097,1095.45 955.12,1092.57 \n",
" 957.143,1097.3 959.165,1097.81 961.188,1087.81 963.211,1055.96 965.233,1066.91 967.256,1065.17 969.278,1052.78 971.301,1080.02 973.324,1099.7 975.346,1053.43 \n",
" 977.369,1005.08 979.392,1032.76 981.414,1005.25 983.437,992.453 985.459,1004.58 987.482,1016.67 989.505,1032.25 991.527,982.235 993.55,992.913 995.573,976.956 \n",
" 997.595,939.045 999.618,967.661 1001.64,946.851 1003.66,944.373 1005.69,935.122 1007.71,912.268 1009.73,892.682 1011.75,869.801 1013.78,858.933 1015.8,865.942 \n",
" 1017.82,923.145 1019.84,942.129 1021.87,913.395 1023.89,918.681 1025.91,916.851 1027.93,931.015 1029.96,917.574 1031.98,904.001 1034,880.189 1036.03,833.722 \n",
" 1038.05,772.688 1040.07,786.607 1042.09,775.692 1044.12,815.705 1046.14,800.99 1048.16,794.996 1050.18,802.286 1052.21,801.006 1054.23,744.699 1056.25,765.547 \n",
" 1058.27,778.066 1060.3,749.304 1062.32,771.839 1064.34,748.569 1066.36,746.22 1068.39,777.329 1070.41,788.94 1072.43,775.547 1074.46,794.944 1076.48,788.427 \n",
" 1078.5,780.423 1080.52,780.029 1082.55,726.014 1084.57,735.862 1086.59,742.295 1088.61,744.468 1090.64,764.954 1092.66,741.307 1094.68,739.557 1096.7,757.658 \n",
" 1098.73,740.966 1100.75,723.894 1102.77,687.814 1104.79,684.306 1106.82,683.877 1108.84,658.204 1110.86,625.262 1112.89,650.276 1114.91,646.236 1116.93,647.897 \n",
" 1118.95,645.794 1120.98,711.248 1123,750.406 1125.02,762.535 1127.04,738.597 1129.07,777.354 1131.09,780.941 1133.11,775.89 1135.13,762.852 1137.16,799.009 \n",
" 1139.18,800.255 1141.2,803.908 1143.22,793.922 1145.25,766.448 1147.27,729.225 1149.29,723.704 1151.31,731.712 1153.34,743.052 1155.36,733.138 1157.38,747.889 \n",
" 1159.41,762.334 1161.43,746.395 1163.45,702.824 1165.47,683.3 1167.5,683.677 1169.52,717.317 1171.54,710.565 1173.56,739.381 1175.59,730.944 1177.61,700.826 \n",
" 1179.63,733.698 1181.65,762.036 1183.68,732.698 1185.7,700.634 1187.72,692.414 1189.74,716.868 1191.77,682.482 1193.79,661.708 1195.81,685.908 1197.84,677.969 \n",
" 1199.86,667.814 1201.88,695.979 1203.9,685.84 1205.93,715.646 1207.95,700.059 1209.97,721.808 1211.99,729.68 1214.02,729.76 1216.04,706.038 1218.06,678.02 \n",
" 1220.08,691.411 1222.11,704.466 1224.13,705.728 1226.15,693.412 1228.17,674.965 1230.2,675.58 1232.22,697.665 1234.24,688.672 1236.27,659.642 1238.29,656.997 \n",
" 1240.31,666.947 1242.33,689.672 1244.36,710.51 1246.38,695.876 1248.4,684.015 1250.42,657.564 1252.45,672.517 1254.47,634.787 1256.49,631.395 1258.51,618.008 \n",
" 1260.54,589.803 1262.56,623.186 1264.58,613.598 1266.6,661.641 1268.63,679.164 1270.65,703.801 1272.67,718.28 1274.7,719.391 1276.72,744.196 1278.74,737.712 \n",
" 1280.76,758.488 1282.79,778.125 1284.81,757.603 1286.83,765.474 1288.85,764.788 1290.88,728.116 1292.9,720.457 1294.92,713.546 1296.94,703.674 1298.97,674.551 \n",
" 1300.99,678.353 1303.01,658.305 1305.03,639.777 1307.06,640.439 1309.08,643.195 1311.1,654.804 1313.13,660.81 1315.15,665.254 1317.17,678.645 1319.19,672.919 \n",
" 1321.22,688.193 1323.24,664.702 1325.26,673.524 1327.28,641.934 1329.31,642.594 1331.33,664.424 1333.35,699.414 1335.37,698.716 1337.4,653.534 1339.42,615.648 \n",
" 1341.44,630.668 1343.46,655.414 1345.49,652.248 1347.51,684.288 1349.53,701.552 1351.56,737.187 1353.58,743.538 1355.6,765.723 1357.62,782.753 1359.65,749.638 \n",
" 1361.67,716.897 1363.69,733.798 1365.71,715.76 1367.74,696.606 1369.76,694.735 1371.78,713.329 1373.8,717.31 1375.83,719.974 1377.85,757.033 1379.87,728.201 \n",
" 1381.89,736.532 1383.92,772.148 1385.94,793.428 1387.96,751.376 1389.99,768.234 1392.01,728.981 1394.03,749.089 1396.05,719.105 1398.08,688.471 1400.1,707.918 \n",
" 1402.12,687.181 1404.14,657.904 1406.17,663.176 1408.19,640.81 1410.21,657.893 1412.23,665.193 1414.26,670.079 1416.28,676.254 1418.3,674.134 1420.32,705.453 \n",
" 1422.35,753.926 1424.37,739.479 1426.39,744.445 1428.41,746.953 1430.44,730.451 1432.46,712.983 1434.48,697.053 1436.51,678.39 1438.53,675.507 1440.55,660.751 \n",
" 1442.57,647.149 1444.6,627.827 1446.62,661.797 1448.64,670.041 1450.66,684.562 1452.69,659.09 1454.71,680.93 1456.73,705.141 1458.75,740.797 1460.78,716.413 \n",
" 1462.8,754.134 1464.82,753.379 1466.84,767.441 1468.87,782.048 1470.89,773.978 1472.91,749.703 1474.94,737.474 1476.96,760.097 1478.98,751.385 1481,762.195 \n",
" 1483.03,779.899 1485.05,756.43 1487.07,767.396 1489.09,764.223 1491.12,794.895 1493.14,789.778 1495.16,809.084 1497.18,829.845 1499.21,796.787 1501.23,839.314 \n",
" 1503.25,845.896 1505.27,864.908 1507.3,860.517 1509.32,856.462 1511.34,848.105 1513.37,888.356 1515.39,885.805 1517.41,894.68 1519.43,918.742 1521.46,910.012 \n",
" 1523.48,919.467 1525.5,955.057 1527.52,981.135 1529.55,986.049 1531.57,1000.56 1533.59,984.437 1535.61,1008.91 1537.64,996.521 1539.66,980.202 1541.68,981.536 \n",
" 1543.7,968.284 1545.73,958.93 1547.75,951.986 1549.77,984.424 1551.8,1005.19 1553.82,977.394 1555.84,971.246 1557.86,945.672 1559.89,960.407 1561.91,974.112 \n",
" 1563.93,986.321 1565.95,955.187 1567.98,935.497 1570,951.425 1572.02,926.633 1574.04,881.884 1576.07,896.468 1578.09,896.023 1580.11,895.582 1582.13,916.628 \n",
" 1584.16,908.519 1586.18,874.45 1588.2,864.791 1590.23,835.297 1592.25,821.063 1594.27,801.506 1596.29,806.665 1598.32,786.616 1600.34,806.666 1602.36,799.417 \n",
" 1604.38,804.373 1606.41,771.847 1608.43,749.429 1610.45,765.348 1612.47,773.39 1614.5,791.005 1616.52,787.719 1618.54,753.67 1620.56,769.845 1622.59,750.776 \n",
" 1624.61,726.889 1626.63,668.567 1628.66,671.705 1630.68,660.637 1632.7,702.929 1634.72,732.045 1636.75,767.061 1638.77,770.577 1640.79,759.804 1642.81,803.404 \n",
" 1644.84,812.07 1646.86,810.558 1648.88,805.983 1650.9,839.432 1652.93,850.109 1654.95,861.814 1656.97,829.14 1658.99,854.568 1661.02,837.366 1663.04,842.935 \n",
" 1665.06,815.392 1667.09,853.448 1669.11,835.06 1671.13,855.902 1673.15,909.341 1675.18,936.489 1677.2,943.459 1679.22,918.62 1681.24,909.649 1683.27,924.237 \n",
" 1685.29,933.926 1687.31,903.833 1689.33,910.952 1691.36,896.79 1693.38,877.133 1695.4,882.113 1697.42,915.78 1699.45,897.528 1701.47,890.052 1703.49,859.98 \n",
" 1705.51,831.073 1707.54,834.559 1709.56,852.424 1711.58,853.752 1713.61,828.161 1715.63,831.867 1717.65,812.071 1719.67,837.255 1721.7,845.982 1723.72,861.657 \n",
" 1725.74,889.214 1727.76,886.593 1729.79,890.376 1731.81,845.177 1733.83,835.637 1735.85,866.589 1737.88,867.027 1739.9,826.224 1741.92,812.788 1743.94,757.73 \n",
" 1745.97,728.149 1747.99,707.352 1750.01,681.338 1752.04,660.931 1754.06,628.963 1756.08,637.305 1758.1,611.025 1760.13,629.222 1762.15,629.952 1764.17,659.463 \n",
" 1766.19,649.066 1768.22,637.546 1770.24,644.897 1772.26,644.63 1774.28,627.728 1776.31,673.776 1778.33,695.917 1780.35,663.505 1782.37,647.456 1784.4,646.979 \n",
" 1786.42,648.302 1788.44,635.402 1790.47,638.718 1792.49,645.581 1794.51,658.799 1796.53,674.457 1798.56,646.779 1800.58,647.339 1802.6,637.959 1804.62,636.439 \n",
" 1806.65,604.231 1808.67,578.249 1810.69,560.216 1812.71,573.843 1814.74,601.897 1816.76,564.537 1818.78,552.579 1820.8,581.06 1822.83,581.92 1824.85,574.981 \n",
" 1826.87,564.264 1828.9,541.922 1830.92,565.888 1832.94,564.34 1834.96,592.994 1836.99,574.055 1839.01,565.563 1841.03,578.838 1843.05,610.509 1845.08,594.025 \n",
" 1847.1,614.463 1849.12,581.765 1851.14,575.665 1853.17,595.24 1855.19,616.758 1857.21,614.026 1859.23,644.249 1861.26,655.09 1863.28,609.547 1865.3,607.36 \n",
" 1867.33,600.154 1869.35,620.408 1871.37,660.738 1873.39,643.015 1875.42,664.348 1877.44,707.465 1879.46,683.752 1881.48,653.095 1883.51,677.747 1885.53,685.42 \n",
" 1887.55,685.243 1889.57,666.691 1891.6,665.252 1893.62,639.217 1895.64,603.526 1897.66,592.31 1899.69,603.555 1901.71,625.168 1903.73,621.14 1905.76,628.042 \n",
" 1907.78,641.984 1909.8,637.778 1911.82,590.437 1913.85,591.239 1915.87,587.683 1917.89,584.199 1919.91,591.196 1921.94,614.864 1923.96,590.213 1925.98,639.909 \n",
" 1928,645.371 1930.03,607.174 1932.05,615.181 1934.07,625.387 1936.09,643.603 1938.12,657.432 1940.14,687.349 1942.16,690.097 1944.19,674.326 1946.21,675.364 \n",
" 1948.23,638.996 1950.25,678.881 1952.28,685.348 1954.3,635.496 1956.32,610.995 1958.34,612.959 1960.37,598.653 1962.39,615.375 1964.41,650.797 1966.43,664.414 \n",
" 1968.46,612.2 1970.48,638.12 1972.5,600.275 1974.52,609.31 1976.55,645.425 1978.57,638.842 1980.59,669.7 1982.62,668.704 1984.64,652.188 1986.66,670.86 \n",
" 1988.68,663.375 1990.71,691.116 1992.73,662.793 1994.75,633.664 1996.77,609.587 1998.8,612.494 2000.82,580.301 2002.84,577.526 2004.86,614.359 2006.89,585.192 \n",
" 2008.91,541.731 2010.93,577.348 2012.95,573.642 2014.98,599.719 2017,541.286 2019.02,555.284 2021.04,585.672 2023.07,612.132 2025.09,651.21 2027.11,702.93 \n",
" 2029.14,726.503 2031.16,716.609 2033.18,748.813 2035.2,749.531 2037.23,803.682 2039.25,847.425 2041.27,865.737 2043.29,847.891 2045.32,828.91 2047.34,834.352 \n",
" 2049.36,880.751 2051.38,913.446 2053.41,901.495 2055.43,871.176 2057.45,845.188 2059.47,838.539 2061.5,771.512 2063.52,732.759 2065.54,748.027 2067.57,721.957 \n",
" 2069.59,733.83 2071.61,768.653 2073.63,803.16 2075.66,828.978 2077.68,839.187 2079.7,803.124 2081.72,790.594 2083.75,740.034 2085.77,720.437 2087.79,752.373 \n",
" 2089.81,734.117 2091.84,717.886 2093.86,759.251 2095.88,779.876 2097.9,786.777 2099.93,811.237 2101.95,831.539 2103.97,786.636 2106,813.079 2108.02,788.022 \n",
" 2110.04,802.038 2112.06,779.309 2114.09,797.873 2116.11,820.417 2118.13,850.482 2120.15,839.879 2122.18,882.878 2124.2,926.463 2126.22,953.858 2128.24,943.802 \n",
" 2130.27,955.778 2132.29,948.956 2134.31,939.565 2136.33,928.35 2138.36,917.598 2140.38,966.234 2142.4,1000.69 2144.43,1044.25 2146.45,1014.81 2148.47,1048.72 \n",
" 2150.49,1056 2152.52,1102.13 2154.54,1062.69 2156.56,1056.2 2158.58,1057.44 2160.61,1047.39 2162.63,1072.44 2164.65,1077.29 2166.67,1091.63 2168.7,1097.53 \n",
" 2170.72,1122.44 2172.74,1125.75 2174.76,1105.03 2176.79,1106.27 2178.81,1146.67 2180.83,1168.22 2182.86,1231 2184.88,1217.93 2186.9,1242.44 2188.92,1244.93 \n",
" 2190.95,1240.77 2192.97,1266.14 2194.99,1280.58 2197.01,1258.19 2199.04,1307.38 2201.06,1320.1 2203.08,1289.6 2205.1,1276.61 2207.13,1310.41 2209.15,1336.35 \n",
" 2211.17,1348.09 2213.19,1349.74 2215.22,1338.34 2217.24,1310.56 2219.26,1340.43 2221.29,1386.61 2223.31,1384.44 2225.33,1335.83 2227.35,1355.69 2229.38,1332.09 \n",
" 2231.4,1319.92 2233.42,1326.09 2235.44,1318.78 2237.47,1315.09 2239.49,1323.98 2241.51,1286.55 2243.53,1264.99 2245.56,1248.98 2247.58,1247.3 2249.6,1238.48 \n",
" 2251.62,1230.47 2253.65,1213.15 2255.67,1210.53 2257.69,1194.12 2259.72,1208.39 2261.74,1225.11 2263.76,1247.58 2265.78,1259.8 2267.81,1241.86 2269.83,1253.91 \n",
" 2271.85,1255.89 2273.87,1241.84 2275.9,1247.56 2277.92,1253.56 2279.94,1266.02 2281.96,1304.23 2283.99,1270.68 2286.01,1269.63 2288.03,1270.91 2290.05,1276.78 \n",
" 2292.08,1241.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip4500)\" d=\"\n",
"M1928.76 312.204 L2280.76 312.204 L2280.76 130.764 L1928.76 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1928.76,312.204 2280.76,312.204 2280.76,130.764 1928.76,130.764 1928.76,312.204 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1952.76,191.244 2096.76,191.244 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<image width=\"112\" height=\"47\" xlink:href=\"data:image/png;base64,\n",
"iVBORw0KGgoAAAANSUhEUgAAAHAAAAAvCAYAAAA7OE5pAAAHMklEQVR4nO1c/5GiPhT/+J0rIFhC\n",
"vApYSuA6YC2BtQKkBLwKdEtgtgKxBLQCpYRgB/n+sfe4EEBDQLmd2c/Mm3FXeAkv7zeJkFLim/pR\n",
"EARyu93KR/A+n8/SdV15Pp+N+P+HbxijLEv58vIir9cr3t7eZo8YY7FYzJbLJTzPw/F4lHdvmFqb\n",
"vwoJISTnXHLOH2J5OoVhKAHctUTs93sJQAKQjDHJGKsmyjmv/kfXBEHQypBz3slH53FvYjT5Ll4m\n",
"PMYm3/clY0wKIZ42puu6knN+c8wfnuchSRIIIXA6nXA4HHC9XmtW6rouPM8D5xy+77dacpIkyPMc\n",
"RVFUPFQ+jDEEQQDOOTjnWCwWnS4oDEMAwOFwQFEUAFDxIj6+79/kMSbW67U8HA5I0xSO4zxlTABI\n",
"0xQ/f/7EcrlElmXtF92yJAAySZLeGrfdbms8hmiuao02cxlK5KF833/62Kosu5691VWowt/v970n\n",
"rrrloQ9PvB6V9d0jUuih7jpJEskYk1EU9eZDc2gzgsbFQRDUhJ+mae8B8zyv8XBd1/rhgyDojLuP\n",
"JtL+MAwHjX8+n2veqO/9aZp25h+Ni1WXZav56oQBWGdupAjPTByIhBBVwjSG9ZEsbJWR5qJ7xEYd\n",
"yBir/a0nNCagxIMghOjNA/hMZpIkeWriQEiSBNfrdZRk6XA4VJ+7ksB7oMTu9+/f9S/0ldYTEBuf\n",
"7bpujcfnMP14bLfbp9VctzTeJoTopMrB1pqFEK08GheSv4WlyZPg9bqvrxtkjI0iPBtSk7ChvNR8\n",
"wCb+qUTJjGpUo7vQOI6x3W4xn89r/+/jRtfrtfQ8D6+vr093nQDw/v4OwN7dqRjDfRKCIADwd34A\n",
"mhY4JIOMoqgqGXQ3mue5ER9KgJ7ZZdGJ5jxG3amWZUNLIdUzkDw7BUhkGod0wdvWk77vD07bh5Cq\n",
"wKZKZ6IMYymlrlyNC9RgSWQqeNU325Qj+/3+6f1GndSUv899usKaUt84T3GQcpMfup/9k7LLPr45\n",
"yzKZ5zmyLKtilk0sXa1Wk5UNBIpZ+vzvIYqiRoxL0xSn0wnAZz95uVzWvmeM9Y6LrutW/WYATQuU\n",
"8m8KTXTPIjjnDQtTNRkG5cjUZYOu4WP0PseMf0RRFNXWpfWFbp8McrfbScZY4wVnHwssy1JS9jo1\n",
"qAnR1wLbMGYGSlDXpiiKpgsFzIVPglcn2jYQcFsJ4jiG53n49evXZK4TAC6XSxU69Pn3hfo2nTE2\n",
"2qsvznn1uSiK9i0V+uT11hghjmP4vo+Xl5fG5HQl6OJxuVzk+/v7YOsry1K+vr5Kx3F6xW8V+vvL\n",
"IXiE9QH1eXVaoLrKQLv1kOC7LEvn0WXFq9UKURT11tCyLKUQAkVR4OPjA2maWvVtVajPMtQCH7WA\n",
"+rxaLdDEhd7LGE1cKGWvm82m1+Ltdjs5n8+rt9VAU2Fs8BUsUIUQwsyF6sLPskwWRYH1et0peH1h\n",
"bylBXyyXS5zPZwghUJblbLfbzcZYwLHwqPhH/AjX69UuibEVvIrNZtOavZrAcZyZ4ziDxn8kHml9\n",
"updoXcBbScxms5Gcc6NGM2OsNmBZltJxnFlZljJJktbsdUro2m2LRy6gHqeNYiDdRII3zRi7FOFW\n",
"9jol1PnavoQG6gvoed6gOenQFcsoC6Wb4jjGcrk09umc85r1CiFwPB5vZq9TYgwL1OPf2Eqqyo1z\n",
"buZCSfBpmnbWc21oi6VxHE/e7+zCH8WUgL0FmlpflmXydDrdTATboCoW57zdhbZlkDb7U3RFSJIE\n",
"97LXqUHep4+iqsjzvPp8K/6tVisr/roFdjZNob32sGk0q41XWL4+MSV1O+RYDeghzXDceJ+Ypqn1\n",
"9gp6Trq/83SS7v5sWl26BbquO9k2CVOoVqP2Rk2hWm5XbUphxAb0eorm2bmA6uC+71s1mvUHqO3l\n",
"+EehLiAJqw9UxW8LN29vb9b1L/BXQSi+di6gaj22jWb1YcIw/OfKhjaoc7SpU1UFKMuyZsHr9Vqm\n",
"aWpd/2ZZVvGrxrnna232hRKp+0sevU1irBioxkGbIwHqju7tdiuFEHK/30uTo2L3iHIKNX52Xpwk\n",
"yaAzDUTP2t855gKqu79sBC6EkGEYSkpoXNcd5Y087fRTd8s9VKjPpDEXUMq/20qmOhWlk7pbUFWq\n",
"7zPyHaCzCB8fHxPP5BPqZuNacjS1Zv2rFth1FmEqIo+g15bfFtgBx3FmVKs1TgQ9GbvdTl6vVwRB\n",
"0MjkZ1JabyGZFJfLRVJfMM/zWmsqDEMEQYD5fA7GGObzuXXvdbFYyKIoIISYrH97cw5TuwYb0rf/\n",
"0y9Z6ETfDymFpj4jT/trjc/If1OTqP569nE3UtRbyjO5cL4K0e/EPDOhMSn+JxfMVyH1l5qecfiG\n",
"suq7v9Q0tWC+EgkhpOu6D4+HURQZW/t3GdEDjuPMjsfjjDGG3W73kPT9crnIw+GAPM+Ntq78D2pR\n",
"YQNchm0tAAAAAElFTkSuQmCC\n",
"\" transform=\"translate(2121, 168)\"/>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip4500)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1952.76,251.724 2096.76,251.724 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4500)\">\n",
"<image width=\"112\" height=\"47\" xlink:href=\"data:image/png;base64,\n",
"iVBORw0KGgoAAAANSUhEUgAAAHAAAAAvCAYAAAA7OE5pAAAHd0lEQVR4nO1c7ZHaPBB+eCcFiJQg\n",
"UoFwCb6rwFCCuQqMSzCpgKMElwAuwVABUIKhA70/knWE/CXJxuRmsjM7x93Zq7W0H8+uZCClxD+2\n",
"4yAI5Ha7lc+QfT6fpRBCns9nI/n/4R8Z0+12k/P5XN7vd6xWq8kzxpjNZpPlcgnP83A8HmXnDa+2\n",
"5q/CRVFIzrnknD/F83QOw1AC6PRE7Pd7CUACkIwxyRgrFeWcl3+ja4IgqBXIOW+Uo8voUoyUb5Jl\n",
"ImNo9n1fMsZkURSjjSmEkJzz1jG/eZ6HJElQFAVOpxOyLMP9fn/wUiEEPM8D5xy+79d6cpIkyPMc\n",
"1+u1lKHKYYwhCAJwzsE5x2w2awxBYRgCALIsw/V6BYBSFsnxfb9VxpC0Xq9llmVI0xTT6XSUMQEg\n",
"TVP8+PEDy+USh8Oh/qI2TwIgkySxtrjtdvsgo4/lqt7ooktfpgjl+/7oY6tz2fTstaFCnfz9fm+t\n",
"uBqW+z48yXoW6utiMui+4TpJEskYk1EUWcshHeqcoHJxEAQPk5+mqfWAeZ4/yBBCOD98EASNeffZ\n",
"TNYfhmGv8c/n80M0sr0/TdNG/FG5WA1ZrpavKgzAGbmRIYwJHIiLoigB0xDeR3Phaoykix4RK3Ug\n",
"Y+zhdx3QmBABD6KiKKxlAL/ATJIkowIHoiRJcL/fBwFLWZaVn5tAYBcRsPv58+fjP/SV1gGIS8wW\n",
"QjzI+DWMnYztdjtazdVm8S4pRGd1Hly9uSiKWhmVCynewtHlaeL1us82DDLGBpk8F1ZBWF9ZKh5w\n",
"yX8qE5hRnWrwEBrHMbbbLb5///7wd5swul6vped5WCwWo4dOANjtdgDcw51KQ4RPoiAIAPzRD0DV\n",
"A/sgyCiKypJBD6N5nhvJIQA0ZpdFZ9J5iLpTLcv6lkJqZKD5bJxAYtM8pE+8az3p+35v2N6HVQM2\n",
"NToTYxjKKHXjqlygJkti04lXY7NLObLf70fvN+qsQn6b+3SDNWXbPE95kLDJNz3O/obs0iY2Hw4H\n",
"mec5DodDmbNccunHx8fLygYiylm6/l0URVElx6VpitPpBOBXP3m5XD78nzFmnReFEGW/GUDVA6X8\n",
"A6GJuzyCc17xMNWSYVCOvLps0C18iN7nkPmPOIqih3Wp3dC1QZCfn5+SMVbZ4LTxwNvtJgm9vpqo\n",
"CWHrgXU0JAIlUtfmer1WQyhgPvk08aqidQMB7UYQxzE8z8Pb29vLQicAXC6XMnXo+tuSupvOGBts\n",
"64tzXn6+Xq/1Ryp05fXWGFEcx/B9H/P5vKKcbgRNMi6Xi9ztdk7ed7lc5Gq1krPZTE4mEzmdTuXb\n",
"25tcrVbycDhY5XEAlf3LPvQM7wMe9WpcQHWVgXrvoYl/KCpbZDR58cfHB6IosrbQzWYjPc9DURTl\n",
"ZvJutwNjDLvdDu/v75jP51L1qi5Sn7OvBz5rASt6dSVKNBS0vu+3Frp6OVLXRqKywTaR095aU52m\n",
"9nMZY8b1l9pG7As61Gcfsimh1qlRFDVPEFoQ5H6/N0KMqgzU1FV16NX0AbqKbNUITRHlUAs4ZP9T\n",
"Z7XREoZhPQrtAjFUr/WhzWZTi167aLfbgXPe2VuN47j8nGWZ2RG9gehZ4ROo5mlrELPZbCTn3KjR\n",
"rBvC7XaT9DNJksb82UZ0cOr9/R1tQGU6nU6EEOXvdUi5TV+XfdC6sYZeQD1PG3kg3UQTb4oYmwyh\n",
"Db12kTqx1OVoIh1yd5Gqr+smNPC4gJ7nOcupI92wjFAo3RTHMZbLpTFirEOzx+OxFb12UZIkYIxB\n",
"CFHuUjeR+rC6LnU0hAfq9Z+LkbaRalic8/pCvq4IPx6PMk1TI0smqsulcRz36ncuFovJYrEwujbP\n",
"8/KzGk6b6LdhSsDdA02973A4yNPphPV6bTUPFaM0RZBCCGtkpu9ICCEGR2VNrO6d2fRYqRfqepJO\n",
"PdXXVmZxzp32G/VeqPECujSa9XoSDtsnrqxuKNucbVUb0C7jqgejm0qdNE2dDZkMhO5vvFDfkXA5\n",
"4KvXk33Oh7oajm3UUHV2KcDV523axXGpf3UDof1AIwt23VrRD0gNscNtM6bLJKlFuEu0UA2/7v9h\n",
"GPYyZD08N16ohhLXVpCah8Y4JkHjMcacIoY+SS46qzlQ98AoinqdODA6E6Mr4nIulFi15mcfk6CH\n",
"45z37j2S8bp4inqie7vdyqIo5H6/lyavinUxpQY1fzZenCTJIDlrjPOdQ79BpFq6y4QXRSHDMJQq\n",
"oh1iR57SmopenzapYzHlvLZwF4ahdSRRvejVzyjlYxNbNaqXKzbE4nVNshDCOgpQuHrVe4Gm+rxc\n",
"sT6LZwJWyHJtEXDTuwivYooI+nO8fCFcF4+SuRCikdWi2mUcqglfedBYyj8b1EbvB/7trL89ZcJ9\n",
"jiu2vR07Flu9ofu3s94hMuEhXvF+VS6kKGD8jvw/rjIBiLFfd6P83WY8L5+cr8L0PTFjAhqT4v/l\n",
"E/NVWP2mpjHyIXXCOr+p6dUT85W4KAophHh6PqSeqYm3//uyOwuaTqeT4/E4YYzh8/NTPmOMy+Ui\n",
"syxDnudGR1f+B7Dfg7NXQqm0AAAAAElFTkSuQmCC\n",
"\" transform=\"translate(2121, 228)\"/>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"u₀ = @SVector [49.0, 1.0, 0.0]\n",
"tt = 0.0:0.001:1.0\n",
"\n",
"W = sample(tt, Wiener{SVector{2,Float64}}())\n",
"\n",
"plot(W.tt, first.(W.yy), label=L\"W_1(t)\")\n",
"plot!(W.tt, last.(W.yy), label=L\"W_2(t)\")\n",
"\n",
"xlabel!(\"t\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Solve the SDE starting in $u_0$ on the grid $t_i = 0.001i$ using the Euler-Maruyama approximation."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"\n",
"X = solve(Bridge.EulerMaruyama(), u₀, W, P);"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip4900\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip4900)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4901\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip4900)\" d=\"\n",
"M140.517 1425.62 L2352.76 1425.62 L2352.76 47.2441 L140.517 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4902\">\n",
" <rect x=\"140\" y=\"47\" width=\"2213\" height=\"1379\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 203.127,1425.62 203.127,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 724.882,1425.62 724.882,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1246.64,1425.62 1246.64,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1768.39,1425.62 1768.39,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2290.15,1425.62 2290.15,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 140.517,1373.35 2352.76,1373.35 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 140.517,1110.68 2352.76,1110.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 140.517,848.005 2352.76,848.005 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 140.517,585.333 2352.76,585.333 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 140.517,322.66 2352.76,322.66 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 140.517,59.9874 2352.76,59.9874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,1425.62 2352.76,1425.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,1425.62 140.517,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.127,1425.62 203.127,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 724.882,1425.62 724.882,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1246.64,1425.62 1246.64,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1768.39,1425.62 1768.39,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2290.15,1425.62 2290.15,1409.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,1373.35 167.064,1373.35 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,1110.68 167.064,1110.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,848.005 167.064,848.005 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,585.333 167.064,585.333 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,322.66 167.064,322.66 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 140.517,59.9874 167.064,59.9874 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 203.127, 1479.62)\" x=\"203.127\" y=\"1479.62\">0.00</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 724.882, 1479.62)\" x=\"724.882\" y=\"1479.62\">0.25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1246.64, 1479.62)\" x=\"1246.64\" y=\"1479.62\">0.50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1768.39, 1479.62)\" x=\"1768.39\" y=\"1479.62\">0.75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2290.15, 1479.62)\" x=\"2290.15\" y=\"1479.62\">1.00</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 116.517, 1390.85)\" x=\"116.517\" y=\"1390.85\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 116.517, 1128.18)\" x=\"116.517\" y=\"1128.18\">10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 116.517, 865.505)\" x=\"116.517\" y=\"865.505\">20</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 116.517, 602.833)\" x=\"116.517\" y=\"602.833\">30</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 116.517, 340.16)\" x=\"116.517\" y=\"340.16\">40</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 116.517, 77.4874)\" x=\"116.517\" y=\"77.4874\">50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:66px; text-anchor:middle;\" transform=\"rotate(0, 1246.64, 1559.48)\" x=\"1246.64\" y=\"1559.48\">t</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.127,86.2547 205.214,89.8936 207.301,94.3257 209.388,99.4608 211.475,101.974 213.562,105.711 215.649,100.541 217.736,101.154 219.823,94.1995 221.911,92.4966 \n",
" 223.998,90.246 226.085,93.422 228.172,97.1807 230.259,100.656 232.346,112.951 234.433,120.73 236.52,131.413 238.607,130.118 240.694,128.555 242.781,124.319 \n",
" 244.868,135.328 246.955,143.448 249.042,158.854 251.129,171.21 253.216,172.754 255.303,185.685 257.39,195.165 259.477,217.766 261.564,225.46 263.651,255.188 \n",
" 265.738,258.141 267.825,272.781 269.912,245.786 271.999,227.294 274.086,245.274 276.173,233.053 278.26,225.125 280.347,233.657 282.434,243.963 284.521,297.513 \n",
" 286.608,249.424 288.695,254.542 290.782,256.294 292.869,267.512 294.956,259.283 297.043,260.832 299.13,278.874 301.217,310.528 303.304,294.643 305.391,282.152 \n",
" 307.478,322.795 309.565,332.902 311.652,323.912 313.739,334.646 315.826,360.156 317.913,384.322 320,399.22 322.087,439.587 324.174,465.76 326.261,501.887 \n",
" 328.348,498.199 330.435,494.194 332.522,461.731 334.609,496.154 336.696,576.597 338.784,576.856 340.871,633.891 342.958,698.87 345.045,736.738 347.132,698.985 \n",
" 349.219,692.022 351.306,736.299 353.393,775.009 355.48,762.993 357.567,753.943 359.654,734.899 361.741,791.647 363.828,776.321 365.915,786.164 368.002,792.848 \n",
" 370.089,811.374 372.176,783.296 374.263,821.77 376.35,819.67 378.437,756.492 380.524,736.824 382.611,800.044 384.698,829.046 386.785,870.336 388.872,880.642 \n",
" 390.959,855.27 393.046,803.563 395.133,856.016 397.22,831.032 399.307,852.444 401.394,922.17 403.481,924.146 405.568,914.703 407.655,876.694 409.742,868.297 \n",
" 411.829,895.007 413.916,901.9 416.003,883.199 418.09,898.454 420.177,930.614 422.264,917.724 424.351,933.408 426.438,905.164 428.525,927.096 430.612,936.74 \n",
" 432.699,933.796 434.786,938.274 436.873,944.605 438.96,924.329 441.047,938.613 443.134,914.724 445.221,879.917 447.308,912.072 449.395,923.853 451.482,948.693 \n",
" 453.57,1003.73 455.657,1067.59 457.744,1101.62 459.831,1094.9 461.918,1117.5 464.005,1126.54 466.092,1109.09 468.179,1130.74 470.266,1117.74 472.353,1118.37 \n",
" 474.44,1104.54 476.527,1115.75 478.614,1134.53 480.701,1158.17 482.788,1156.44 484.875,1158.23 486.962,1161.48 489.049,1159.26 491.136,1166.16 493.223,1192.4 \n",
" 495.31,1200.27 497.397,1199.32 499.484,1210.06 501.571,1237.3 503.658,1222.79 505.745,1234.17 507.832,1208.83 509.919,1234.8 512.006,1241.65 514.093,1238.26 \n",
" 516.18,1241.33 518.267,1242.4 520.354,1235.17 522.441,1242.79 524.528,1240.66 526.615,1231.59 528.702,1226.12 530.789,1216.85 532.876,1219.26 534.963,1238.56 \n",
" 537.05,1229.1 539.137,1210.83 541.224,1219.29 543.311,1220.95 545.398,1226.57 547.485,1228.21 549.572,1232.16 551.659,1242.27 553.746,1248.56 555.833,1271.4 \n",
" 557.92,1264.79 560.007,1271.97 562.094,1275.6 564.181,1282.21 566.268,1277.1 568.355,1287.22 570.443,1290.08 572.53,1297.54 574.617,1291.63 576.704,1303.42 \n",
" 578.791,1309.2 580.878,1306.36 582.965,1305.42 585.052,1308.6 587.139,1310.46 589.226,1317.54 591.313,1319.96 593.4,1318.11 595.487,1325.2 597.574,1322 \n",
" 599.661,1323.03 601.748,1325.22 603.835,1323.26 605.922,1327.69 608.009,1332.08 610.096,1330.06 612.183,1331.01 614.27,1327.78 616.357,1328.05 618.444,1335.5 \n",
" 620.531,1338.48 622.618,1339.38 624.705,1346.1 626.792,1345.36 628.879,1347.34 630.966,1347.17 633.053,1346.86 635.14,1347.2 637.227,1344.92 639.314,1344.62 \n",
" 641.401,1346.29 643.488,1346.64 645.575,1347.12 647.662,1347.54 649.749,1347.28 651.836,1345.99 653.923,1345.69 656.01,1346.08 658.097,1346.1 660.184,1348.52 \n",
" 662.271,1348.81 664.358,1348.06 666.445,1347.79 668.532,1348.41 670.619,1351.2 672.706,1353.12 674.793,1353.04 676.88,1353.85 678.967,1355.77 681.054,1357.3 \n",
" 683.141,1358.33 685.229,1359.62 687.316,1358.91 689.403,1359.22 691.49,1361.97 693.577,1362.8 695.664,1363.99 697.751,1364.34 699.838,1363.93 701.925,1364.07 \n",
" 704.012,1363.2 706.099,1363.78 708.186,1364.44 710.273,1363.62 712.36,1363.56 714.447,1363.31 716.534,1364.69 718.621,1364.82 720.708,1364.84 722.795,1364.68 \n",
" 724.882,1364.41 726.969,1364.37 729.056,1365 731.143,1363.72 733.23,1363.41 735.317,1364.92 737.404,1364.46 739.491,1364.39 741.578,1364.9 743.665,1364.59 \n",
" 745.752,1364.89 747.839,1364.7 749.926,1365.08 752.013,1364.89 754.1,1364.66 756.187,1364.56 758.274,1365.58 760.361,1365 762.448,1364.97 764.535,1365.38 \n",
" 766.622,1365.83 768.709,1366.69 770.796,1366.1 772.883,1366.11 774.97,1366.47 777.057,1366.16 779.144,1365.58 781.231,1366.5 783.318,1366.6 785.405,1366.5 \n",
" 787.492,1367.08 789.579,1367.76 791.666,1367.07 793.753,1366.73 795.84,1367.59 797.927,1367.76 800.014,1367.46 802.102,1367.45 804.189,1367.4 806.276,1367.38 \n",
" 808.363,1367.7 810.45,1368.25 812.537,1368.15 814.624,1368.44 816.711,1368.69 818.798,1368.95 820.885,1369.15 822.972,1368.89 825.059,1368.31 827.146,1368.14 \n",
" 829.233,1368.3 831.32,1368.74 833.407,1368.75 835.494,1368.46 837.581,1368.35 839.668,1368.27 841.755,1368.01 843.842,1368.15 845.929,1368.39 848.016,1367.93 \n",
" 850.103,1367.77 852.19,1367.61 854.277,1367 856.364,1367.96 858.451,1368.02 860.538,1368.46 862.625,1368.43 864.712,1368.35 866.799,1368.46 868.886,1368.94 \n",
" 870.973,1369.16 873.06,1369.11 875.147,1369.08 877.234,1368.96 879.321,1368.78 881.408,1368.88 883.495,1369.08 885.582,1370.3 887.669,1370.5 889.756,1370.43 \n",
" 891.843,1370.25 893.93,1370.47 896.017,1370.32 898.104,1370.51 900.191,1370.4 902.278,1370.51 904.365,1370.74 906.452,1370.73 908.539,1370.53 910.626,1370.9 \n",
" 912.713,1370.87 914.8,1370.92 916.888,1371.03 918.975,1370.88 921.062,1370.77 923.149,1370.89 925.236,1370.78 927.323,1371.02 929.41,1370.87 931.497,1370.76 \n",
" 933.584,1370.75 935.671,1370.9 937.758,1371.04 939.845,1371.26 941.932,1371.2 944.019,1371.19 946.106,1371.24 948.193,1371.33 950.28,1371.45 952.367,1371.56 \n",
" 954.454,1371.46 956.541,1371.57 958.628,1371.76 960.715,1371.77 962.802,1371.9 964.889,1371.92 966.976,1371.98 969.063,1372.04 971.15,1372.14 973.237,1372.27 \n",
" 975.324,1372.37 977.411,1372.33 979.498,1372.32 981.585,1372.26 983.672,1372.19 985.759,1372.24 987.846,1372.29 989.933,1372.32 992.02,1372.35 994.107,1372.38 \n",
" 996.194,1372.34 998.281,1372.36 1000.37,1372.4 1002.46,1372.44 1004.54,1372.45 1006.63,1372.42 1008.72,1372.44 1010.8,1372.42 1012.89,1372.43 1014.98,1372.51 \n",
" 1017.06,1372.52 1019.15,1372.52 1021.24,1372.56 1023.33,1372.53 1025.41,1372.56 1027.5,1372.57 1029.59,1372.58 1031.67,1372.64 1033.76,1372.64 1035.85,1372.64 \n",
" 1037.93,1372.61 1040.02,1372.57 1042.11,1372.53 1044.2,1372.55 1046.28,1372.52 1048.37,1372.54 1050.46,1372.5 1052.54,1372.53 1054.63,1372.52 1056.72,1372.49 \n",
" 1058.8,1372.55 1060.89,1372.51 1062.98,1372.51 1065.07,1372.49 1067.15,1372.45 1069.24,1372.42 1071.33,1372.4 1073.41,1372.43 1075.5,1372.4 1077.59,1372.42 \n",
" 1079.67,1372.42 1081.76,1372.45 1083.85,1372.45 1085.94,1372.47 1088.02,1372.47 1090.11,1372.45 1092.2,1372.43 1094.28,1372.46 1096.37,1372.51 1098.46,1372.5 \n",
" 1100.55,1372.51 1102.63,1372.53 1104.72,1372.55 1106.81,1372.53 1108.89,1372.53 1110.98,1372.54 1113.07,1372.59 1115.15,1372.59 1117.24,1372.57 1119.33,1372.6 \n",
" 1121.42,1372.62 1123.5,1372.61 1125.59,1372.56 1127.68,1372.54 1129.76,1372.53 1131.85,1372.54 1133.94,1372.52 1136.02,1372.58 1138.11,1372.55 1140.2,1372.61 \n",
" 1142.29,1372.64 1144.37,1372.65 1146.46,1372.64 1148.55,1372.65 1150.63,1372.68 1152.72,1372.68 1154.81,1372.7 1156.89,1372.69 1158.98,1372.71 1161.07,1372.73 \n",
" 1163.16,1372.74 1165.24,1372.76 1167.33,1372.74 1169.42,1372.72 1171.5,1372.74 1173.59,1372.77 1175.68,1372.78 1177.76,1372.77 1179.85,1372.79 1181.94,1372.79 \n",
" 1184.03,1372.8 1186.11,1372.83 1188.2,1372.83 1190.29,1372.84 1192.37,1372.82 1194.46,1372.81 1196.55,1372.82 1198.63,1372.86 1200.72,1372.89 1202.81,1372.91 \n",
" 1204.9,1372.9 1206.98,1372.93 1209.07,1372.94 1211.16,1372.94 1213.24,1372.94 1215.33,1372.95 1217.42,1372.97 1219.51,1372.99 1221.59,1373 1223.68,1373.01 \n",
" 1225.77,1373.01 1227.85,1373.02 1229.94,1373.04 1232.03,1373.03 1234.11,1373.02 1236.2,1373.01 1238.29,1373.02 1240.38,1372.99 1242.46,1373 1244.55,1373.01 \n",
" 1246.64,1373.02 1248.72,1373.02 1250.81,1373.02 1252.9,1373.02 1254.98,1373.03 1257.07,1373.04 1259.16,1373.04 1261.25,1373.03 1263.33,1373.04 1265.42,1373.04 \n",
" 1267.51,1373.03 1269.59,1373.03 1271.68,1373.04 1273.77,1373.05 1275.85,1373.06 1277.94,1373.06 1280.03,1373.06 1282.12,1373.06 1284.2,1373.06 1286.29,1373.07 \n",
" 1288.38,1373.07 1290.46,1373.08 1292.55,1373.07 1294.64,1373.08 1296.72,1373.07 1298.81,1373.08 1300.9,1373.08 1302.99,1373.08 1305.07,1373.08 1307.16,1373.09 \n",
" 1309.25,1373.09 1311.33,1373.1 1313.42,1373.11 1315.51,1373.1 1317.59,1373.1 1319.68,1373.1 1321.77,1373.1 1323.86,1373.11 1325.94,1373.11 1328.03,1373.11 \n",
" 1330.12,1373.1 1332.2,1373.09 1334.29,1373.09 1336.38,1373.09 1338.47,1373.09 1340.55,1373.09 1342.64,1373.1 1344.73,1373.1 1346.81,1373.1 1348.9,1373.1 \n",
" 1350.99,1373.11 1353.07,1373.12 1355.16,1373.12 1357.25,1373.12 1359.34,1373.11 1361.42,1373.12 1363.51,1373.12 1365.6,1373.13 1367.68,1373.12 1369.77,1373.12 \n",
" 1371.86,1373.13 1373.94,1373.13 1376.03,1373.14 1378.12,1373.13 1380.21,1373.14 1382.29,1373.14 1384.38,1373.13 1386.47,1373.13 1388.55,1373.13 1390.64,1373.13 \n",
" 1392.73,1373.14 1394.81,1373.14 1396.9,1373.15 1398.99,1373.15 1401.08,1373.15 1403.16,1373.16 1405.25,1373.16 1407.34,1373.17 1409.42,1373.17 1411.51,1373.17 \n",
" 1413.6,1373.17 1415.68,1373.18 1417.77,1373.18 1419.86,1373.18 1421.95,1373.18 1424.03,1373.18 1426.12,1373.18 1428.21,1373.18 1430.29,1373.18 1432.38,1373.18 \n",
" 1434.47,1373.19 1436.55,1373.19 1438.64,1373.19 1440.73,1373.2 1442.82,1373.2 1444.9,1373.21 1446.99,1373.21 1449.08,1373.21 1451.16,1373.21 1453.25,1373.21 \n",
" 1455.34,1373.2 1457.43,1373.21 1459.51,1373.21 1461.6,1373.21 1463.69,1373.21 1465.77,1373.22 1467.86,1373.22 1469.95,1373.22 1472.03,1373.22 1474.12,1373.22 \n",
" 1476.21,1373.21 1478.3,1373.22 1480.38,1373.22 1482.47,1373.22 1484.56,1373.22 1486.64,1373.22 1488.73,1373.23 1490.82,1373.23 1492.9,1373.23 1494.99,1373.22 \n",
" 1497.08,1373.22 1499.17,1373.22 1501.25,1373.23 1503.34,1373.23 1505.43,1373.23 1507.51,1373.23 1509.6,1373.23 1511.69,1373.23 1513.77,1373.23 1515.86,1373.24 \n",
" 1517.95,1373.23 1520.04,1373.24 1522.12,1373.24 1524.21,1373.24 1526.3,1373.24 1528.38,1373.24 1530.47,1373.24 1532.56,1373.24 1534.64,1373.24 1536.73,1373.25 \n",
" 1538.82,1373.25 1540.91,1373.25 1542.99,1373.25 1545.08,1373.25 1547.17,1373.25 1549.25,1373.25 1551.34,1373.25 1553.43,1373.25 1555.52,1373.25 1557.6,1373.25 \n",
" 1559.69,1373.26 1561.78,1373.26 1563.86,1373.25 1565.95,1373.25 1568.04,1373.25 1570.12,1373.26 1572.21,1373.26 1574.3,1373.26 1576.39,1373.26 1578.47,1373.26 \n",
" 1580.56,1373.26 1582.65,1373.26 1584.73,1373.26 1586.82,1373.26 1588.91,1373.26 1590.99,1373.26 1593.08,1373.26 1595.17,1373.26 1597.26,1373.26 1599.34,1373.26 \n",
" 1601.43,1373.26 1603.52,1373.27 1605.6,1373.27 1607.69,1373.27 1609.78,1373.27 1611.86,1373.27 1613.95,1373.27 1616.04,1373.27 1618.13,1373.27 1620.21,1373.28 \n",
" 1622.3,1373.28 1624.39,1373.28 1626.47,1373.28 1628.56,1373.28 1630.65,1373.28 1632.73,1373.28 1634.82,1373.28 1636.91,1373.28 1639,1373.29 1641.08,1373.29 \n",
" 1643.17,1373.29 1645.26,1373.29 1647.34,1373.29 1649.43,1373.29 1651.52,1373.29 1653.6,1373.29 1655.69,1373.29 1657.78,1373.29 1659.87,1373.29 1661.95,1373.29 \n",
" 1664.04,1373.29 1666.13,1373.29 1668.21,1373.29 1670.3,1373.29 1672.39,1373.29 1674.48,1373.29 1676.56,1373.29 1678.65,1373.29 1680.74,1373.29 1682.82,1373.29 \n",
" 1684.91,1373.29 1687,1373.29 1689.08,1373.29 1691.17,1373.29 1693.26,1373.29 1695.35,1373.29 1697.43,1373.3 1699.52,1373.29 1701.61,1373.29 1703.69,1373.3 \n",
" 1705.78,1373.3 1707.87,1373.3 1709.95,1373.3 1712.04,1373.3 1714.13,1373.3 1716.22,1373.3 1718.3,1373.3 1720.39,1373.3 1722.48,1373.3 1724.56,1373.3 \n",
" 1726.65,1373.3 1728.74,1373.3 1730.82,1373.3 1732.91,1373.3 1735,1373.3 1737.09,1373.31 1739.17,1373.31 1741.26,1373.31 1743.35,1373.31 1745.43,1373.31 \n",
" 1747.52,1373.31 1749.61,1373.31 1751.69,1373.31 1753.78,1373.31 1755.87,1373.31 1757.96,1373.31 1760.04,1373.31 1762.13,1373.31 1764.22,1373.31 1766.3,1373.31 \n",
" 1768.39,1373.31 1770.48,1373.31 1772.56,1373.31 1774.65,1373.31 1776.74,1373.31 1778.83,1373.31 1780.91,1373.31 1783,1373.31 1785.09,1373.31 1787.17,1373.31 \n",
" 1789.26,1373.31 1791.35,1373.31 1793.44,1373.31 1795.52,1373.31 1797.61,1373.31 1799.7,1373.31 1801.78,1373.31 1803.87,1373.31 1805.96,1373.31 1808.04,1373.31 \n",
" 1810.13,1373.31 1812.22,1373.31 1814.31,1373.31 1816.39,1373.31 1818.48,1373.31 1820.57,1373.31 1822.65,1373.31 1824.74,1373.31 1826.83,1373.31 1828.91,1373.31 \n",
" 1831,1373.31 1833.09,1373.31 1835.18,1373.31 1837.26,1373.31 1839.35,1373.31 1841.44,1373.31 1843.52,1373.31 1845.61,1373.31 1847.7,1373.31 1849.78,1373.31 \n",
" 1851.87,1373.31 1853.96,1373.31 1856.05,1373.32 1858.13,1373.32 1860.22,1373.32 1862.31,1373.32 1864.39,1373.32 1866.48,1373.32 1868.57,1373.32 1870.65,1373.32 \n",
" 1872.74,1373.32 1874.83,1373.32 1876.92,1373.32 1879,1373.32 1881.09,1373.32 1883.18,1373.32 1885.26,1373.32 1887.35,1373.32 1889.44,1373.32 1891.52,1373.32 \n",
" 1893.61,1373.32 1895.7,1373.32 1897.79,1373.32 1899.87,1373.32 1901.96,1373.32 1904.05,1373.32 1906.13,1373.32 1908.22,1373.32 1910.31,1373.32 1912.4,1373.32 \n",
" 1914.48,1373.32 1916.57,1373.32 1918.66,1373.32 1920.74,1373.32 1922.83,1373.32 1924.92,1373.32 1927,1373.32 1929.09,1373.32 1931.18,1373.32 1933.27,1373.32 \n",
" 1935.35,1373.32 1937.44,1373.32 1939.53,1373.32 1941.61,1373.32 1943.7,1373.32 1945.79,1373.32 1947.87,1373.32 1949.96,1373.32 1952.05,1373.32 1954.14,1373.32 \n",
" 1956.22,1373.32 1958.31,1373.32 1960.4,1373.32 1962.48,1373.32 1964.57,1373.32 1966.66,1373.32 1968.74,1373.32 1970.83,1373.32 1972.92,1373.32 1975.01,1373.32 \n",
" 1977.09,1373.32 1979.18,1373.32 1981.27,1373.32 1983.35,1373.32 1985.44,1373.32 1987.53,1373.32 1989.61,1373.32 1991.7,1373.32 1993.79,1373.32 1995.88,1373.32 \n",
" 1997.96,1373.32 2000.05,1373.33 2002.14,1373.33 2004.22,1373.33 2006.31,1373.33 2008.4,1373.33 2010.48,1373.33 2012.57,1373.33 2014.66,1373.33 2016.75,1373.33 \n",
" 2018.83,1373.33 2020.92,1373.33 2023.01,1373.33 2025.09,1373.33 2027.18,1373.33 2029.27,1373.33 2031.36,1373.33 2033.44,1373.33 2035.53,1373.33 2037.62,1373.33 \n",
" 2039.7,1373.33 2041.79,1373.33 2043.88,1373.33 2045.96,1373.33 2048.05,1373.33 2050.14,1373.33 2052.23,1373.33 2054.31,1373.33 2056.4,1373.33 2058.49,1373.33 \n",
" 2060.57,1373.33 2062.66,1373.33 2064.75,1373.33 2066.83,1373.33 2068.92,1373.33 2071.01,1373.33 2073.1,1373.33 2075.18,1373.33 2077.27,1373.33 2079.36,1373.33 \n",
" 2081.44,1373.33 2083.53,1373.33 2085.62,1373.33 2087.7,1373.33 2089.79,1373.33 2091.88,1373.33 2093.97,1373.33 2096.05,1373.33 2098.14,1373.33 2100.23,1373.33 \n",
" 2102.31,1373.33 2104.4,1373.33 2106.49,1373.33 2108.57,1373.33 2110.66,1373.33 2112.75,1373.33 2114.84,1373.33 2116.92,1373.33 2119.01,1373.33 2121.1,1373.33 \n",
" 2123.18,1373.33 2125.27,1373.33 2127.36,1373.33 2129.44,1373.33 2131.53,1373.33 2133.62,1373.33 2135.71,1373.33 2137.79,1373.33 2139.88,1373.33 2141.97,1373.33 \n",
" 2144.05,1373.33 2146.14,1373.33 2148.23,1373.33 2150.32,1373.33 2152.4,1373.33 2154.49,1373.33 2156.58,1373.33 2158.66,1373.33 2160.75,1373.33 2162.84,1373.33 \n",
" 2164.92,1373.33 2167.01,1373.33 2169.1,1373.33 2171.19,1373.33 2173.27,1373.33 2175.36,1373.33 2177.45,1373.33 2179.53,1373.33 2181.62,1373.33 2183.71,1373.33 \n",
" 2185.79,1373.33 2187.88,1373.33 2189.97,1373.33 2192.06,1373.33 2194.14,1373.33 2196.23,1373.33 2198.32,1373.33 2200.4,1373.33 2202.49,1373.33 2204.58,1373.33 \n",
" 2206.66,1373.33 2208.75,1373.33 2210.84,1373.33 2212.93,1373.33 2215.01,1373.33 2217.1,1373.33 2219.19,1373.33 2221.27,1373.33 2223.36,1373.33 2225.45,1373.33 \n",
" 2227.53,1373.33 2229.62,1373.33 2231.71,1373.33 2233.8,1373.33 2235.88,1373.33 2237.97,1373.33 2240.06,1373.33 2242.14,1373.33 2244.23,1373.33 2246.32,1373.33 \n",
" 2248.41,1373.33 2250.49,1373.33 2252.58,1373.33 2254.67,1373.33 2256.75,1373.33 2258.84,1373.33 2260.93,1373.33 2263.01,1373.33 2265.1,1373.33 2267.19,1373.33 \n",
" 2269.28,1373.33 2271.36,1373.33 2273.45,1373.33 2275.54,1373.33 2277.62,1373.33 2279.71,1373.33 2281.8,1373.33 2283.88,1373.33 2285.97,1373.33 2288.06,1373.33 \n",
" 2290.15,1373.33 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.127,1347.08 205.214,1343.64 207.301,1338.94 209.388,1334.56 211.475,1332.45 213.562,1328.48 215.649,1333.49 217.736,1332.95 219.823,1339.29 221.911,1340.51 \n",
" 223.998,1343.62 226.085,1340.1 228.172,1336.66 230.259,1333.86 232.346,1321.89 234.433,1313.1 236.52,1302.69 238.607,1303.32 240.694,1305.23 242.781,1310.2 \n",
" 244.868,1299.48 246.955,1291.8 249.042,1274.62 251.129,1264.63 253.216,1262.61 255.303,1250.35 257.39,1244.46 259.477,1224.47 261.564,1215.77 263.651,1183.62 \n",
" 265.738,1179.7 267.825,1166.14 269.912,1192.63 271.999,1217.64 274.086,1200.32 276.173,1213.61 278.26,1221.09 280.347,1214.27 282.434,1203.43 284.521,1146.44 \n",
" 286.608,1193.41 288.695,1190.64 290.782,1188.1 292.869,1179.57 294.956,1188.69 297.043,1188.79 299.13,1175.81 301.217,1145.49 303.304,1160.58 305.391,1169.1 \n",
" 307.478,1129 309.565,1117.08 311.652,1128.81 313.739,1115.51 315.826,1093.25 317.913,1066.43 320,1041.05 322.087,1004.23 324.174,986.698 326.261,953.301 \n",
" 328.348,955.496 330.435,959.064 332.522,987.794 334.609,959.366 336.696,878.095 338.784,871.518 340.871,800.047 342.958,727.058 345.045,683.343 347.132,729.885 \n",
" 349.219,739.267 351.306,712.659 353.393,673.736 355.48,698.794 357.567,712.203 359.654,744.981 361.741,682.726 363.828,698.615 365.915,696.912 368.002,704.929 \n",
" 370.089,674.746 372.176,711.35 374.263,661.766 376.35,665.48 378.437,720.538 380.524,740.675 382.611,678.522 384.698,647.955 386.785,602.06 388.872,595.258 \n",
" 390.959,624.156 393.046,694.565 395.133,635.582 397.22,652.477 399.307,628.931 401.394,571.838 403.481,567.966 405.568,589.819 407.655,633.529 409.742,638.32 \n",
" 411.829,612.744 413.916,595.752 416.003,633.762 418.09,616.923 420.177,581.963 422.264,570.744 424.351,547.49 426.438,582.454 428.525,567.992 430.612,564.308 \n",
" 432.699,579.529 434.786,599.878 436.873,611.766 438.96,644.755 441.047,637.288 443.134,659.537 445.221,701.265 447.308,671.982 449.395,665.12 451.482,654.239 \n",
" 453.57,599.34 455.657,544.036 457.744,518.689 459.831,519.874 461.918,505.865 464.005,494.365 466.092,512.894 468.179,501.97 470.266,523.972 472.353,513.047 \n",
" 474.44,518.259 476.527,500.481 478.614,468.32 480.701,437.361 482.788,449.472 484.875,460.063 486.962,467.503 489.049,485.787 491.136,513.618 493.223,489.73 \n",
" 495.31,485.253 497.397,474.12 499.484,462.736 501.571,456.037 503.658,468.849 505.745,453.079 507.832,488.85 509.919,478.393 512.006,491.714 514.093,485.787 \n",
" 516.18,485.297 518.267,489.564 520.354,486.858 522.441,487.579 524.528,478.411 526.615,496.194 528.702,525.907 530.789,550.647 532.876,562.481 534.963,548.245 \n",
" 537.05,566.227 539.137,568.92 541.224,569.398 543.311,562.7 545.398,562.497 547.485,565.704 549.572,554.735 551.659,535.826 553.746,538.237 555.833,521.695 \n",
" 557.92,526.147 560.007,532.604 562.094,520.962 564.181,510.632 566.268,518.493 568.355,512.597 570.443,505.519 572.53,505.473 574.617,523.803 576.704,516.89 \n",
" 578.791,505.657 580.878,499.207 582.965,510.504 585.052,499.936 587.139,507.135 589.226,509.074 591.313,515.129 593.4,527.261 595.487,541.769 597.574,536.058 \n",
" 599.661,558.298 601.748,558.439 603.835,580.748 605.922,595.565 608.009,595.024 610.096,613.877 612.183,604.669 614.27,611.734 616.357,627.928 618.444,640.699 \n",
" 620.531,641.404 622.618,633.815 624.705,609.739 626.792,614.902 628.879,604.726 630.966,593.425 633.053,611.408 635.14,615.128 637.227,610.336 639.314,621.109 \n",
" 641.401,626.399 643.488,606.74 645.575,616.357 647.662,615.394 649.749,604.586 651.836,600.417 653.923,611.015 656.01,617.638 658.097,604.793 660.184,595.399 \n",
" 662.271,585.016 664.358,580.511 666.445,578.454 668.532,571.751 670.619,562.443 672.706,558.757 674.793,560.624 676.88,553.057 678.967,552.599 681.054,542.401 \n",
" 683.141,551.998 685.229,536.531 687.316,521.107 689.403,529.131 691.49,530.211 693.577,556.506 695.664,546.667 697.751,529.167 699.838,533.687 701.925,527.705 \n",
" 704.012,527.205 706.099,533.487 708.186,527.478 710.273,510.664 712.36,517.734 714.447,517.302 716.534,497.75 718.621,494.096 720.708,517.917 722.795,512.291 \n",
" 724.882,523.287 726.969,544.691 729.056,544.149 731.143,535.339 733.23,547.85 735.317,548.125 737.404,549.158 739.491,551.458 741.578,559.906 743.665,562.569 \n",
" 745.752,553.531 747.839,561.944 749.926,589.309 752.013,582.405 754.1,579.971 756.187,585.645 758.274,575.816 760.361,588.815 762.448,595.708 764.535,601.018 \n",
" 766.622,608.39 768.709,594.858 770.796,602.452 772.883,592.322 774.97,585.54 777.057,582.954 779.144,571.501 781.231,578.714 783.318,588.167 785.405,598.631 \n",
" 787.492,601.002 789.579,570.909 791.666,566.928 793.753,568.137 795.84,576.936 797.927,571.693 800.014,560.923 802.102,562.687 804.189,571.128 806.276,569.749 \n",
" 808.363,570.11 810.45,578.163 812.537,577.838 814.624,578.292 816.711,582.597 818.798,581.433 820.885,577.018 822.972,591.992 825.059,598.172 827.146,608.286 \n",
" 829.233,613.95 831.32,623.467 833.407,622.262 835.494,619.775 837.581,624.098 839.668,635.661 841.755,638.708 843.842,627.478 845.929,627.534 848.016,625.818 \n",
" 850.103,630.719 852.19,636.324 854.277,628.465 856.364,631.361 858.451,634.755 860.538,632.228 862.625,635.195 864.712,644.737 866.799,650.779 868.886,650.667 \n",
" 870.973,639.764 873.06,653.201 875.147,649.651 877.234,654.808 879.321,650.174 881.408,647.712 883.495,642.02 885.582,662.386 887.669,657.027 889.756,637.561 \n",
" 891.843,633.564 893.93,634.104 896.017,634.357 898.104,622.014 900.191,633.865 902.278,637.337 904.365,643.661 906.452,673.394 908.539,671.856 910.626,674.65 \n",
" 912.713,675.038 914.8,676.899 916.888,682.543 918.975,696.347 921.062,694.582 923.149,697.129 925.236,703.681 927.323,695.838 929.41,690.997 931.497,709.788 \n",
" 933.584,728.677 935.671,721.062 937.758,732.33 939.845,738.352 941.932,736.265 944.019,734.13 946.106,730.758 948.193,749.521 950.28,747.762 952.367,754.782 \n",
" 954.454,769.086 956.541,761.688 958.628,770.037 960.715,772.621 962.802,777.218 964.889,786.161 966.976,793.923 969.063,802.577 971.15,807.457 973.237,806.938 \n",
" 975.324,791.477 977.411,787.446 979.498,798.076 981.585,798.258 983.672,800.609 985.759,798.007 987.846,803.753 989.933,809.509 992.02,818.237 994.107,833.454 \n",
" 996.194,852.465 998.281,850.19 1000.37,854.736 1002.46,845.316 1004.54,850.984 1006.63,854.23 1008.72,853.771 1010.8,855.702 1012.89,872.593 1014.98,868.521 \n",
" 1017.06,866.7 1019.15,875.889 1021.24,871.441 1023.33,879.128 1025.41,881.195 1027.5,874.589 1029.59,873.028 1031.67,877.997 1033.76,874.423 1035.85,877.631 \n",
" 1037.93,881.239 1040.02,882.864 1042.11,898.32 1044.2,897.265 1046.28,897.115 1048.37,897.973 1050.46,894.31 1052.54,901.681 1054.63,903.545 1056.72,900.502 \n",
" 1058.8,906.017 1060.89,911.668 1062.98,921.818 1065.07,924.033 1067.15,925.519 1069.24,932.945 1071.33,941.929 1073.41,937.512 1075.5,939.774 1077.59,940.676 \n",
" 1079.67,942.449 1081.76,928.867 1083.85,921.035 1085.94,919.476 1088.02,926.567 1090.11,918.803 1092.2,919.328 1094.28,921.865 1096.37,926.275 1098.46,919.108 \n",
" 1100.55,920.168 1102.63,920.631 1104.72,924.355 1106.81,932.211 1108.89,942.188 1110.98,944.724 1113.07,944.149 1115.15,942.877 1117.24,946.43 1119.33,944.369 \n",
" 1121.42,942.372 1123.5,947.294 1125.59,958.398 1127.68,963.931 1129.76,965.086 1131.85,959.071 1133.94,961.802 1136.02,956.734 1138.11,959.866 1140.2,967.604 \n",
" 1142.29,961.771 1144.37,956.845 1146.46,964.546 1148.55,972.661 1150.63,975.572 1152.72,971.639 1154.81,980.103 1156.89,985.589 1158.98,981.793 1161.07,984.587 \n",
" 1163.16,987.82 1165.24,983.239 1167.33,986.512 1169.42,981.616 1171.5,985.987 1173.59,982.689 1175.68,982.228 1177.76,983.391 1179.85,989.421 1181.94,996.23 \n",
" 1184.03,994.694 1186.11,993.198 1188.2,994.088 1190.29,997.676 1192.37,1002.47 1194.46,1003.47 1196.55,1000.27 1198.63,1003.12 1200.72,1009.85 1202.81,1011.44 \n",
" 1204.9,1010.63 1206.98,1007.35 1209.07,1004.42 1211.16,1008.37 1213.24,1011.75 1215.33,1017.86 1217.42,1016.11 1219.51,1024.26 1221.59,1025.92 1223.68,1029.4 \n",
" 1225.77,1035.53 1227.85,1030.6 1229.94,1033.34 1232.03,1025.77 1234.11,1023.61 1236.2,1020.14 1238.29,1018.49 1240.38,1019.38 1242.46,1015.81 1244.55,1018.09 \n",
" 1246.64,1015.27 1248.72,1012.64 1250.81,1017.61 1252.9,1017.2 1254.98,1018.4 1257.07,1026.3 1259.16,1028.75 1261.25,1031.04 1263.33,1033.83 1265.42,1040.06 \n",
" 1267.51,1040.4 1269.59,1044.92 1271.68,1049.1 1273.77,1049.95 1275.85,1050.43 1277.94,1049.43 1280.03,1049.38 1282.12,1049.6 1284.2,1048.29 1286.29,1050.23 \n",
" 1288.38,1048.6 1290.46,1053.58 1292.55,1053.06 1294.64,1059.35 1296.72,1060.18 1298.81,1057.52 1300.9,1052.64 1302.99,1053.73 1305.07,1062.29 1307.16,1069.41 \n",
" 1309.25,1067.92 1311.33,1064.85 1313.42,1066.29 1315.51,1062.03 1317.59,1060.14 1319.68,1055.19 1321.77,1055.09 1323.86,1052.31 1325.94,1050.4 1328.03,1057 \n",
" 1330.12,1063.41 1332.2,1061.59 1334.29,1065.49 1336.38,1069.52 1338.47,1070.73 1340.55,1068.67 1342.64,1068.94 1344.73,1069.43 1346.81,1064.4 1348.9,1070.02 \n",
" 1350.99,1069.6 1353.07,1064.8 1355.16,1062.27 1357.25,1070.09 1359.34,1068.32 1361.42,1075.53 1363.51,1073.27 1365.6,1078.9 1367.68,1084.54 1369.77,1082.44 \n",
" 1371.86,1086.49 1373.94,1091.77 1376.03,1091.83 1378.12,1095.99 1380.21,1094.32 1382.29,1094.09 1384.38,1094.21 1386.47,1094.14 1388.55,1095.29 1390.64,1091.54 \n",
" 1392.73,1085.18 1394.81,1088.24 1396.9,1088.34 1398.99,1088.82 1401.08,1092.15 1403.16,1095.56 1405.25,1098.73 1407.34,1102.24 1409.42,1103.46 1411.51,1106.37 \n",
" 1413.6,1109.08 1415.68,1112.56 1417.77,1108.68 1419.86,1108.32 1421.95,1107.09 1424.03,1111.46 1426.12,1109.23 1428.21,1106.66 1430.29,1102.45 1432.38,1106.74 \n",
" 1434.47,1102.24 1436.55,1103.16 1438.64,1101.96 1440.73,1100.69 1442.82,1102.66 1444.9,1106.93 1446.99,1109.44 1449.08,1107.09 1451.16,1109.11 1453.25,1108.4 \n",
" 1455.34,1106.73 1457.43,1110.82 1459.51,1110.08 1461.6,1111.31 1463.69,1107.87 1465.77,1109.37 1467.86,1107.48 1469.95,1105.37 1472.03,1110.84 1474.12,1105.75 \n",
" 1476.21,1105.63 1478.3,1103.74 1480.38,1105.17 1482.47,1106.55 1484.56,1108.53 1486.64,1103.71 1488.73,1104.87 1490.82,1104.42 1492.9,1101.82 1494.99,1103.89 \n",
" 1497.08,1103.36 1499.17,1099.11 1501.25,1096.16 1503.34,1096.27 1505.43,1094.99 1507.51,1098.18 1509.6,1095.46 1511.69,1098.11 1513.77,1101.29 1515.86,1101.92 \n",
" 1517.95,1104.63 1520.04,1106.75 1522.12,1108.52 1524.21,1104.8 1526.3,1102.67 1528.38,1107.44 1530.47,1109.1 1532.56,1113.45 1534.64,1112.21 1536.73,1111.1 \n",
" 1538.82,1110.2 1540.91,1115.31 1542.99,1118.76 1545.08,1117.39 1547.17,1121.49 1549.25,1128.18 1551.34,1127.04 1553.43,1127.83 1555.52,1128.63 1557.6,1126.65 \n",
" 1559.69,1128.44 1561.78,1133.57 1563.86,1135.51 1565.95,1139.92 1568.04,1142.37 1570.12,1145.44 1572.21,1145.5 1574.3,1148.59 1576.39,1146.89 1578.47,1148.43 \n",
" 1580.56,1148.52 1582.65,1153.04 1584.73,1156.3 1586.82,1155.14 1588.91,1154.87 1590.99,1153.49 1593.08,1154.54 1595.17,1159.11 1597.26,1157.93 1599.34,1160.74 \n",
" 1601.43,1164.05 1603.52,1171.11 1605.6,1171.38 1607.69,1173.16 1609.78,1169.3 1611.86,1166.78 1613.95,1163.59 1616.04,1163.83 1618.13,1165.65 1620.21,1161.5 \n",
" 1622.3,1161.17 1624.39,1161.97 1626.47,1163.11 1628.56,1160.04 1630.65,1159.48 1632.73,1158.8 1634.82,1163.14 1636.91,1160.95 1639,1163.51 1641.08,1163.53 \n",
" 1643.17,1167.2 1645.26,1163.68 1647.34,1166.34 1649.43,1164.69 1651.52,1159.44 1653.6,1157.03 1655.69,1156.88 1657.78,1160.37 1659.87,1162.01 1661.95,1161.02 \n",
" 1664.04,1160.57 1666.13,1164.58 1668.21,1164.43 1670.3,1166.61 1672.39,1169.37 1674.48,1169.45 1676.56,1166.44 1678.65,1169.05 1680.74,1170.47 1682.82,1174.29 \n",
" 1684.91,1177.92 1687,1178.14 1689.08,1176.89 1691.17,1177.34 1693.26,1180.57 1695.35,1180.78 1697.43,1183.36 1699.52,1181.41 1701.61,1181.11 1703.69,1180.09 \n",
" 1705.78,1177.87 1707.87,1178.73 1709.95,1178.92 1712.04,1184.13 1714.13,1185.65 1716.22,1183.15 1718.3,1183.68 1720.39,1188.32 1722.48,1190.19 1724.56,1196.05 \n",
" 1726.65,1199.34 1728.74,1201.77 1730.82,1204.63 1732.91,1206.95 1735,1210.25 1737.09,1210.02 1739.17,1212.77 1741.26,1211.71 1743.35,1212.14 1745.43,1210.11 \n",
" 1747.52,1211.5 1749.61,1212.97 1751.69,1212.82 1753.78,1213.33 1755.87,1215.23 1757.96,1211.87 1760.04,1210.47 1762.13,1213.74 1764.22,1215.57 1766.3,1216.08 \n",
" 1768.39,1216.44 1770.48,1217.98 1772.56,1218.18 1774.65,1218.08 1776.74,1217.47 1778.83,1216.65 1780.91,1219.4 1783,1219.82 1785.09,1221.04 1787.17,1221.62 \n",
" 1789.26,1224.64 1791.35,1227.13 1793.44,1228.95 1795.52,1228.35 1797.61,1226.64 1799.7,1229.97 1801.78,1231.3 1803.87,1229.6 1805.96,1229.96 1808.04,1230.92 \n",
" 1810.13,1232.15 1812.22,1234.23 1814.31,1232.89 1816.39,1233.43 1818.48,1231.74 1820.57,1233.58 1822.65,1234.62 1824.74,1234.07 1826.83,1232.16 1828.91,1233.81 \n",
" 1831,1232.73 1833.09,1235.57 1835.18,1236.42 1837.26,1235.42 1839.35,1234.27 1841.44,1234.89 1843.52,1233.1 1845.61,1232.72 1847.7,1236.52 1849.78,1237.08 \n",
" 1851.87,1238.01 1853.96,1236.97 1856.05,1234.49 1858.13,1236.2 1860.22,1235.07 1862.31,1232.34 1864.39,1234.53 1866.48,1237.18 1868.57,1235.82 1870.65,1235.68 \n",
" 1872.74,1236.11 1874.83,1237.86 1876.92,1238.37 1879,1240.62 1881.09,1243.52 1883.18,1244.67 1885.26,1244.3 1887.35,1243.22 1889.44,1243.88 1891.52,1243.8 \n",
" 1893.61,1243.24 1895.7,1243.91 1897.79,1247.53 1899.87,1247.85 1901.96,1248.47 1904.05,1249.07 1906.13,1248.98 1908.22,1247.81 1910.31,1249.81 1912.4,1246.95 \n",
" 1914.48,1246.97 1916.57,1249.89 1918.66,1249.74 1920.74,1249.44 1922.83,1248.63 1924.92,1248.09 1927,1246.49 1929.09,1246.69 1931.18,1248.12 1933.27,1248.43 \n",
" 1935.35,1251.2 1937.44,1249 1939.53,1248.95 1941.61,1252.59 1943.7,1254.51 1945.79,1254.74 1947.87,1255.99 1949.96,1255.31 1952.05,1253.46 1954.14,1252.96 \n",
" 1956.22,1256.63 1958.31,1255.39 1960.4,1258.09 1962.48,1257.89 1964.57,1256.04 1966.66,1256.8 1968.74,1255.25 1970.83,1255.67 1972.92,1257.05 1975.01,1256.25 \n",
" 1977.09,1257.06 1979.18,1255.71 1981.27,1257.82 1983.35,1259.94 1985.44,1261.72 1987.53,1261.88 1989.61,1264.11 1991.7,1264.59 1993.79,1262.81 1995.88,1264.84 \n",
" 1997.96,1267.65 2000.05,1265.98 2002.14,1266.51 2004.22,1265.37 2006.31,1269.01 2008.4,1268.56 2010.48,1267.19 2012.57,1266.03 2014.66,1264.15 2016.75,1261.5 \n",
" 2018.83,1260.45 2020.92,1261.37 2023.01,1259.81 2025.09,1260.11 2027.18,1257.22 2029.27,1254.89 2031.36,1254.11 2033.44,1255.58 2035.53,1257.11 2037.62,1257.13 \n",
" 2039.7,1254.64 2041.79,1252.95 2043.88,1254.07 2045.96,1256.33 2048.05,1258.28 2050.14,1259.03 2052.23,1263.41 2054.31,1265.98 2056.4,1265.44 2058.49,1267.25 \n",
" 2060.57,1266.9 2062.66,1265.27 2064.75,1263.63 2066.83,1262.47 2068.92,1262.2 2071.01,1264.65 2073.1,1265.69 2075.18,1268.88 2077.27,1270.27 2079.36,1268.85 \n",
" 2081.44,1270.17 2083.53,1271.36 2085.62,1269.44 2087.7,1268.62 2089.79,1268.56 2091.88,1267.52 2093.97,1266.71 2096.05,1269.55 2098.14,1268.42 2100.23,1270.12 \n",
" 2102.31,1269.66 2104.4,1271.21 2106.49,1270.52 2108.57,1269.61 2110.66,1268.28 2112.75,1269.18 2114.84,1267.13 2116.92,1265.02 2119.01,1263.78 2121.1,1264.69 \n",
" 2123.18,1264.33 2125.27,1265.05 2127.36,1265.91 2129.44,1266.86 2131.53,1267.79 2133.62,1265.4 2135.71,1263.76 2137.79,1261.58 2139.88,1263.65 2141.97,1262.02 \n",
" 2144.05,1261.92 2146.14,1259.55 2148.23,1262.26 2150.32,1262.97 2152.4,1263.23 2154.49,1264.14 2156.58,1263.03 2158.66,1263.08 2160.75,1262.58 2162.84,1262.56 \n",
" 2164.92,1261.44 2167.01,1261.58 2169.1,1263.14 2171.19,1263.4 2173.27,1261.39 2175.36,1260.45 2177.45,1257.06 2179.53,1258.21 2181.62,1257.07 2183.71,1257.26 \n",
" 2185.79,1257.87 2187.88,1256.67 2189.97,1256.13 2192.06,1257.87 2194.14,1255.22 2196.23,1254.78 2198.32,1257.04 2200.4,1258.19 2202.49,1256.48 2204.58,1255.24 \n",
" 2206.66,1254.86 2208.75,1255.12 2210.84,1256.18 2212.93,1258.24 2215.01,1256.78 2217.1,1254.29 2219.19,1254.79 2221.27,1258.18 2223.36,1257.32 2225.45,1259.11 \n",
" 2227.53,1260.18 2229.62,1260.16 2231.71,1260.93 2233.8,1261.49 2235.88,1261.3 2237.97,1263.84 2240.06,1265.42 2242.14,1266.65 2244.23,1267.06 2246.32,1267.88 \n",
" 2248.41,1268.64 2250.49,1269.91 2252.58,1270.36 2254.67,1271.56 2256.75,1271.1 2258.84,1270.5 2260.93,1269.6 2263.01,1269.24 2265.1,1270.54 2267.19,1270.19 \n",
" 2269.28,1270.39 2271.36,1271.46 2273.45,1271.46 2275.54,1271.45 2277.62,1271.08 2279.71,1269.33 2281.8,1271.48 2283.88,1271.84 2285.97,1272.08 2288.06,1272.07 \n",
" 2290.15,1274.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4902)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.127,1373.35 205.214,1373.15 207.301,1373.42 209.388,1372.67 211.475,1372.26 213.562,1372.5 215.649,1372.65 217.736,1372.58 219.823,1373.2 221.911,1373.68 \n",
" 223.998,1372.83 226.085,1373.17 228.172,1372.85 230.259,1372.18 232.346,1371.85 234.433,1372.86 236.52,1372.59 238.607,1373.25 240.694,1372.91 242.781,1372.17 \n",
" 244.868,1371.88 246.955,1371.44 249.042,1373.22 251.129,1370.85 253.216,1371.32 255.303,1370.65 257.39,1367.06 259.477,1364.46 261.564,1365.46 263.651,1367.88 \n",
" 265.738,1368.85 267.825,1367.77 269.912,1368.28 271.999,1361.76 274.086,1361.1 276.173,1360.03 278.26,1360.48 280.347,1358.77 282.434,1359.29 284.521,1362.74 \n",
" 286.608,1363.85 288.695,1361.5 290.782,1362.3 292.869,1359.61 294.956,1358.72 297.043,1357.07 299.13,1352 301.217,1350.67 303.304,1351.46 305.391,1355.43 \n",
" 307.478,1354.9 309.565,1356.71 311.652,1353.97 313.739,1356.53 315.826,1353.29 317.913,1355.94 320,1366.42 322.087,1362.87 324.174,1354.23 326.261,1351.5 \n",
" 328.348,1352.99 330.435,1353.43 332.522,1357.16 334.609,1351.17 336.696,1352 338.784,1358.32 340.871,1372.75 342.958,1380.76 345.045,1386.61 347.132,1377.82 \n",
" 349.219,1375.4 351.306,1357.73 353.393,1357.94 355.48,1344.9 357.567,1340.54 359.654,1326.81 361.741,1332.32 363.828,1331.75 365.915,1323.61 368.002,1308.91 \n",
" 370.089,1320.57 372.176,1312.04 374.263,1323.15 376.35,1321.54 378.437,1329.66 380.524,1329.19 382.611,1328.12 384.698,1329.69 386.785,1334.29 388.872,1330.79 \n",
" 390.959,1327.26 393.046,1308.56 395.133,1315.09 397.22,1323.18 399.307,1325.31 401.394,1312.68 403.481,1314.58 405.568,1302.17 407.655,1296.47 409.742,1300.07 \n",
" 411.829,1298.94 413.916,1309.04 416.003,1289.73 418.09,1291.31 420.177,1294.11 422.264,1318.22 424.351,1325.79 426.438,1319.07 428.525,1311.6 430.612,1305.64 \n",
" 432.699,1293.36 434.786,1268.54 436.873,1250.32 438.96,1237.6 441.047,1230.79 443.134,1232.43 445.221,1225.51 447.308,1222.64 449.395,1217.72 451.482,1203.76 \n",
" 453.57,1203.62 455.657,1195.06 457.744,1186.38 459.831,1191.92 461.918,1183.33 464.005,1185.78 466.092,1184.71 468.179,1173.97 470.266,1164.98 472.353,1175.27 \n",
" 474.44,1183.89 476.527,1190.46 478.614,1203.83 480.701,1211.16 482.788,1200.78 484.875,1188.4 486.962,1177.71 489.049,1161.64 491.136,1126.91 493.223,1124.56 \n",
" 495.31,1121.16 497.397,1133.25 499.484,1133.9 501.571,1113.35 503.658,1115.05 505.745,1119.45 507.832,1109.01 509.919,1093.49 512.006,1073.32 514.093,1082.64 \n",
" 516.18,1080.07 518.267,1074.73 520.354,1084.67 522.441,1076.32 524.528,1087.62 526.615,1078.91 528.702,1054.66 530.789,1039.19 532.876,1024.95 534.963,1019.88 \n",
" 537.05,1011.36 539.137,1026.94 541.224,1018 543.311,1023.04 545.398,1017.62 547.485,1012.78 549.572,1019.79 551.659,1028.59 553.746,1019.9 555.833,1013.6 \n",
" 557.92,1015.75 560.007,1002.12 562.094,1010.12 564.181,1013.84 566.268,1011.09 568.355,1006.88 570.443,1011.08 572.53,1003.68 574.617,991.259 576.704,986.382 \n",
" 578.791,991.829 580.878,1001.12 582.965,990.768 585.052,998.156 587.139,989.093 589.226,980.078 591.313,971.6 593.4,961.316 595.487,939.722 597.574,948.629 \n",
" 599.661,925.363 601.748,923.034 603.835,902.678 605.922,883.434 608.009,879.583 610.096,862.752 612.183,871.013 614.27,867.176 616.357,850.706 618.444,830.492 \n",
" 620.531,826.808 622.618,833.492 624.705,850.852 626.792,846.423 628.879,854.623 630.966,866.092 633.053,848.417 635.14,844.359 637.227,851.435 639.314,840.958 \n",
" 641.401,834.002 643.488,853.305 645.575,843.209 647.662,843.758 649.749,854.825 651.836,860.284 653.923,849.986 656.01,842.971 658.097,855.793 660.184,862.771 \n",
" 662.271,872.866 664.358,878.118 666.445,880.446 668.532,886.526 670.619,893.041 672.706,894.813 674.793,893.028 676.88,899.781 678.967,898.316 681.054,906.986 \n",
" 683.141,896.364 685.229,910.541 687.316,926.673 689.403,918.336 691.49,914.506 693.577,887.383 695.664,896.034 697.751,913.18 699.838,909.07 701.925,914.919 \n",
" 704.012,916.284 706.099,909.419 708.186,914.771 710.273,932.406 712.36,925.393 714.447,926.074 716.534,944.253 718.621,947.77 720.708,923.935 722.795,929.716 \n",
" 724.882,918.99 726.969,897.624 729.056,897.538 731.143,907.627 733.23,895.43 735.317,893.643 737.404,893.067 739.491,890.841 741.578,881.881 743.665,879.529 \n",
" 745.752,888.264 747.839,880.041 749.926,852.298 752.013,859.396 754.1,862.058 756.187,856.482 758.274,865.289 760.361,852.872 762.448,846.007 764.535,840.29 \n",
" 766.622,832.465 768.709,845.141 770.796,838.137 772.883,848.254 774.97,854.676 777.057,857.58 779.144,869.605 781.231,861.479 783.318,851.924 785.405,841.555 \n",
" 787.492,838.605 789.579,868.02 791.666,872.695 793.753,871.824 795.84,862.161 797.927,867.235 800.014,878.302 802.102,876.552 804.189,868.164 806.276,869.557 \n",
" 808.363,868.879 810.45,860.274 812.537,860.698 814.624,859.959 816.711,855.401 818.798,856.308 820.885,860.516 822.972,845.807 825.059,840.206 827.146,830.265 \n",
" 829.233,824.444 831.32,814.485 833.407,815.677 835.494,818.452 837.581,814.238 839.668,802.757 841.755,799.971 843.842,811.059 845.929,810.763 848.016,812.939 \n",
" 850.103,808.202 852.19,802.758 854.277,811.22 856.364,807.364 858.451,803.918 860.538,805.999 862.625,803.064 864.712,793.598 866.799,787.453 868.886,787.079 \n",
" 870.973,797.77 873.06,784.379 875.147,787.955 877.234,782.925 879.321,787.735 881.408,790.096 883.495,795.59 885.582,774.005 887.669,779.162 889.756,798.7 \n",
" 891.843,802.871 893.93,802.119 896.017,802.014 898.104,814.165 900.191,802.42 902.278,798.845 904.365,792.292 906.452,762.562 908.539,764.307 910.626,761.139 \n",
" 912.713,760.783 914.8,758.873 916.888,753.116 918.975,739.459 921.062,741.333 923.149,738.672 925.236,732.233 927.323,739.828 929.41,744.82 931.497,726.144 \n",
" 933.584,707.26 935.671,714.722 937.758,703.315 939.845,697.073 941.932,699.224 944.019,701.366 946.106,704.693 948.193,685.842 950.28,687.478 952.367,680.345 \n",
" 954.454,666.14 956.541,673.433 958.628,664.895 960.715,662.298 962.802,657.569 964.889,648.606 966.976,640.788 969.063,632.068 971.15,627.089 973.237,627.48 \n",
" 975.324,642.843 977.411,646.915 979.498,636.291 981.585,636.167 983.672,633.888 985.759,636.441 987.846,630.643 989.933,624.863 992.02,616.101 994.107,600.852 \n",
" 996.194,581.88 998.281,584.135 1000.37,579.558 1002.46,588.93 1004.54,583.254 1006.63,580.038 1008.72,580.474 1010.8,578.565 1012.89,561.663 1014.98,565.658 \n",
" 1017.06,567.472 1019.15,558.278 1021.24,562.689 1023.33,555.033 1025.41,552.939 1027.5,559.525 1029.59,561.079 1031.67,556.049 1033.76,559.623 1035.85,556.413 \n",
" 1037.93,552.837 1040.02,551.258 1042.11,535.835 1044.2,536.874 1046.28,537.058 1048.37,536.175 1050.46,539.877 1052.54,532.474 1054.63,530.625 1056.72,533.694 \n",
" 1058.8,528.119 1060.89,522.515 1062.98,512.358 1065.07,510.169 1067.15,508.72 1069.24,501.322 1071.33,492.361 1073.41,496.749 1075.5,494.515 1077.59,493.593 \n",
" 1079.67,491.816 1081.76,505.376 1083.85,513.208 1085.94,514.74 1088.02,507.657 1090.11,515.436 1092.2,514.931 1094.28,512.361 1096.37,507.906 1098.46,515.078 \n",
" 1100.55,514.013 1102.63,513.525 1104.72,509.786 1106.81,501.943 1108.89,491.973 1110.98,489.426 1113.07,489.947 1115.15,491.223 1117.24,487.684 1119.33,489.719 \n",
" 1121.42,491.696 1123.5,486.785 1125.59,475.731 1127.68,470.22 1129.76,469.073 1131.85,475.081 1133.94,472.365 1136.02,477.375 1138.11,474.275 1140.2,466.476 \n",
" 1142.29,472.283 1144.37,477.19 1146.46,469.505 1148.55,461.376 1150.63,458.44 1152.72,462.369 1154.81,453.89 1156.89,448.408 1158.98,452.186 1161.07,449.375 \n",
" 1163.16,446.129 1165.24,450.691 1167.33,447.438 1169.42,452.349 1171.5,447.958 1173.59,451.233 1175.68,451.68 1177.76,450.523 1179.85,444.482 1181.94,437.666 \n",
" 1184.03,439.194 1186.11,440.661 1188.2,439.773 1190.29,436.175 1192.37,431.399 1194.46,430.406 1196.55,433.599 1198.63,430.712 1200.72,423.942 1202.81,422.345 \n",
" 1204.9,423.156 1206.98,426.408 1209.07,429.327 1211.16,425.377 1213.24,422.002 1215.33,415.88 1217.42,417.613 1219.51,409.443 1221.59,407.773 1223.68,404.281 \n",
" 1225.77,398.14 1227.85,403.066 1229.94,400.307 1232.03,407.889 1234.11,410.054 1236.2,413.542 1238.29,415.175 1240.38,414.318 1242.46,417.88 1244.55,415.587 \n",
" 1246.64,418.408 1248.72,421.037 1250.81,416.056 1252.9,416.463 1254.98,415.266 1257.07,407.347 1259.16,404.906 1261.25,402.618 1263.33,399.811 1265.42,393.586 \n",
" 1267.51,393.253 1269.59,388.739 1271.68,384.55 1273.77,383.69 1275.85,383.189 1277.94,384.194 1280.03,384.247 1282.12,384.033 1284.2,385.345 1286.29,383.39 \n",
" 1288.38,385.019 1290.46,380.028 1292.55,380.554 1294.64,374.265 1296.72,373.432 1298.81,376.093 1300.9,380.965 1302.99,379.885 1305.07,371.321 1307.16,364.182 \n",
" 1309.25,365.674 1311.33,368.738 1313.42,367.298 1315.51,371.558 1317.59,373.454 1319.68,378.392 1321.77,378.502 1323.86,381.265 1325.94,383.181 1328.03,376.58 \n",
" 1330.12,370.177 1332.2,372.006 1334.29,368.109 1336.38,364.08 1338.47,362.869 1340.55,364.925 1342.64,364.649 1344.73,364.163 1346.81,369.183 1348.9,363.565 \n",
" 1350.99,363.986 1353.07,368.772 1355.16,371.304 1357.25,363.481 1359.34,365.264 1361.42,358.043 1363.51,360.304 1365.6,354.665 1367.68,349.032 1369.77,351.123 \n",
" 1371.86,347.073 1373.94,341.79 1376.03,341.727 1378.12,337.567 1380.21,339.23 1382.29,339.465 1384.38,339.346 1386.47,339.416 1388.55,338.267 1390.64,342.019 \n",
" 1392.73,348.367 1394.81,345.31 1396.9,345.2 1398.99,344.722 1401.08,341.396 1403.16,337.965 1405.25,334.802 1407.34,331.279 1409.42,330.054 1411.51,327.147 \n",
" 1413.6,324.434 1415.68,320.952 1417.77,324.835 1419.86,325.19 1421.95,326.421 1424.03,322.051 1426.12,324.277 1428.21,326.852 1430.29,331.06 1432.38,326.769 \n",
" 1434.47,331.265 1436.55,330.344 1438.64,331.534 1440.73,332.807 1442.82,330.831 1444.9,326.558 1446.99,324.043 1449.08,326.396 1451.16,324.375 1453.25,325.087 \n",
" 1455.34,326.762 1457.43,322.667 1459.51,323.395 1461.6,322.166 1463.69,325.612 1465.77,324.1 1467.86,325.992 1469.95,328.101 1472.03,322.632 1474.12,327.724 \n",
" 1476.21,327.848 1478.3,329.726 1480.38,328.293 1482.47,326.916 1484.56,324.942 1486.64,329.76 1488.73,328.589 1490.82,329.039 1492.9,331.639 1494.99,329.577 \n",
" 1497.08,330.11 1499.17,334.36 1501.25,337.304 1503.34,337.189 1505.43,338.475 1507.51,335.277 1509.6,337.998 1511.69,335.351 1513.77,332.16 1515.86,331.535 \n",
" 1517.95,328.826 1520.04,326.696 1522.12,324.922 1524.21,328.651 1526.3,330.782 1528.38,326.008 1530.47,324.349 1532.56,319.998 1534.64,321.235 1536.73,322.336 \n",
" 1538.82,323.235 1540.91,318.132 1542.99,314.682 1545.08,316.053 1547.17,311.944 1549.25,305.253 1551.34,306.401 1553.43,305.604 1555.52,304.81 1557.6,306.788 \n",
" 1559.69,304.995 1561.78,299.866 1563.86,297.927 1565.95,293.519 1568.04,291.069 1570.12,287.997 1572.21,287.933 1574.3,284.844 1576.39,286.543 1578.47,284.999 \n",
" 1580.56,284.911 1582.65,280.385 1584.73,277.124 1586.82,278.292 1588.91,278.561 1590.99,279.933 1593.08,278.893 1595.17,274.313 1597.26,275.495 1599.34,272.685 \n",
" 1601.43,269.373 1603.52,262.317 1605.6,262.045 1607.69,260.261 1609.78,264.119 1611.86,266.636 1613.95,269.825 1616.04,269.584 1618.13,267.767 1620.21,271.913 \n",
" 1622.3,272.244 1624.39,271.439 1626.47,270.295 1628.56,273.368 1630.65,273.927 1632.73,274.604 1634.82,270.269 1636.91,272.453 1639,269.892 1641.08,269.878 \n",
" 1643.17,266.205 1645.26,269.718 1647.34,267.058 1649.43,268.709 1651.52,273.955 1653.6,276.372 1655.69,276.517 1657.78,273.036 1659.87,271.391 1661.95,272.38 \n",
" 1664.04,272.827 1666.13,268.816 1668.21,268.973 1670.3,266.788 1672.39,264.028 1674.48,263.951 1676.56,266.954 1678.65,264.345 1680.74,262.927 1682.82,259.106 \n",
" 1684.91,255.478 1687,255.251 1689.08,256.502 1691.17,256.05 1693.26,252.82 1695.35,252.618 1697.43,250.033 1699.52,251.983 1701.61,252.289 1703.69,253.299 \n",
" 1705.78,255.524 1707.87,254.668 1709.95,254.471 1712.04,249.26 1714.13,247.742 1716.22,250.238 1718.3,249.712 1720.39,245.067 1722.48,243.203 1724.56,237.343 \n",
" 1726.65,234.049 1728.74,231.621 1730.82,228.756 1732.91,226.436 1735,223.136 1737.09,223.363 1739.17,220.613 1741.26,221.67 1743.35,221.247 1745.43,223.269 \n",
" 1747.52,221.885 1749.61,220.418 1751.69,220.557 1753.78,220.053 1755.87,218.149 1757.96,221.509 1760.04,222.907 1762.13,219.639 1764.22,217.811 1766.3,217.298 \n",
" 1768.39,216.936 1770.48,215.399 1772.56,215.204 1774.65,215.299 1776.74,215.914 1778.83,216.732 1780.91,213.978 1783,213.562 1785.09,212.343 1787.17,211.764 \n",
" 1789.26,208.735 1791.35,206.254 1793.44,204.427 1795.52,205.03 1797.61,206.737 1799.7,203.411 1801.78,202.077 1803.87,203.782 1805.96,203.416 1808.04,202.462 \n",
" 1810.13,201.23 1812.22,199.145 1814.31,200.484 1816.39,199.948 1818.48,201.64 1820.57,199.802 1822.65,198.758 1824.74,199.312 1826.83,201.217 1828.91,199.568 \n",
" 1831,200.651 1833.09,197.808 1835.18,196.952 1837.26,197.952 1839.35,199.101 1841.44,198.484 1843.52,200.272 1845.61,200.652 1847.7,196.858 1849.78,196.29 \n",
" 1851.87,195.364 1853.96,196.401 1856.05,198.889 1858.13,197.176 1860.22,198.305 1862.31,201.03 1864.39,198.846 1866.48,196.189 1868.57,197.548 1870.65,197.691 \n",
" 1872.74,197.265 1874.83,195.513 1876.92,195.003 1879,192.748 1881.09,189.855 1883.18,188.699 1885.26,189.075 1887.35,190.156 1889.44,189.49 1891.52,189.572 \n",
" 1893.61,190.135 1895.7,189.456 1897.79,185.841 1899.87,185.517 1901.96,184.905 1904.05,184.301 1906.13,184.386 1908.22,185.563 1910.31,183.557 1912.4,186.419 \n",
" 1914.48,186.404 1916.57,183.482 1918.66,183.633 1920.74,183.926 1922.83,184.743 1924.92,185.277 1927,186.875 1929.09,186.678 1931.18,185.246 1933.27,184.939 \n",
" 1935.35,182.171 1937.44,184.371 1939.53,184.421 1941.61,180.782 1943.7,178.861 1945.79,178.628 1947.87,177.378 1949.96,178.06 1952.05,179.908 1954.14,180.408 \n",
" 1956.22,176.736 1958.31,177.979 1960.4,175.274 1962.48,175.477 1964.57,177.327 1966.66,176.568 1968.74,178.112 1970.83,177.696 1972.92,176.319 1975.01,177.114 \n",
" 1977.09,176.301 1979.18,177.651 1981.27,175.544 1983.35,173.425 1985.44,171.647 1987.53,171.483 1989.61,169.259 1991.7,168.771 1993.79,170.554 1995.88,168.525 \n",
" 1997.96,165.716 2000.05,167.381 2002.14,166.85 2004.22,167.996 2006.31,164.35 2008.4,164.806 2010.48,166.168 2012.57,167.329 2014.66,169.216 2016.75,171.862 \n",
" 2018.83,172.915 2020.92,171.988 2023.01,173.551 2025.09,173.254 2027.18,176.143 2029.27,178.47 2031.36,179.257 2033.44,177.778 2035.53,176.248 2037.62,176.232 \n",
" 2039.7,178.723 2041.79,180.411 2043.88,179.292 2045.96,177.03 2048.05,175.077 2050.14,174.329 2052.23,169.951 2054.31,167.378 2056.4,167.919 2058.49,166.114 \n",
" 2060.57,166.459 2062.66,168.092 2064.75,169.731 2066.83,170.894 2068.92,171.157 2071.01,168.713 2073.1,167.67 2075.18,164.48 2077.27,163.089 2079.36,164.513 \n",
" 2081.44,163.195 2083.53,162.003 2085.62,163.919 2087.7,164.736 2089.79,164.802 2091.88,165.838 2093.97,166.652 2096.05,163.81 2098.14,164.944 2100.23,163.245 \n",
" 2102.31,163.697 2104.4,162.145 2106.49,162.837 2108.57,163.749 2110.66,165.081 2112.75,164.179 2114.84,166.225 2116.92,168.344 2119.01,169.582 2121.1,168.673 \n",
" 2123.18,169.032 2125.27,168.314 2127.36,167.453 2129.44,166.496 2131.53,165.574 2133.62,167.961 2135.71,169.596 2137.79,171.781 2139.88,169.712 2141.97,171.342 \n",
" 2144.05,171.436 2146.14,173.808 2148.23,171.103 2150.32,170.39 2152.4,170.131 2154.49,169.218 2156.58,170.331 2158.66,170.282 2160.75,170.783 2162.84,170.796 \n",
" 2164.92,171.916 2167.01,171.776 2169.1,170.221 2171.19,169.962 2173.27,171.971 2175.36,172.907 2177.45,176.3 2179.53,175.151 2181.62,176.292 2183.71,176.095 \n",
" 2185.79,175.492 2187.88,176.689 2189.97,177.226 2192.06,175.493 2194.14,178.138 2196.23,178.575 2198.32,176.314 2200.4,175.17 2202.49,176.874 2204.58,178.12 \n",
" 2206.66,178.496 2208.75,178.243 2210.84,177.179 2212.93,175.113 2215.01,176.579 2217.1,179.063 2219.19,178.571 2221.27,175.18 2223.36,176.039 2225.45,174.249 \n",
" 2227.53,173.174 2229.62,173.202 2231.71,172.426 2233.8,171.871 2235.88,172.059 2237.97,169.514 2240.06,167.942 2242.14,166.709 2244.23,166.294 2246.32,165.481 \n",
" 2248.41,164.72 2250.49,163.451 2252.58,162.998 2254.67,161.799 2256.75,162.258 2258.84,162.852 2260.93,163.76 2263.01,164.117 2265.1,162.821 2267.19,163.165 \n",
" 2269.28,162.963 2271.36,161.892 2273.45,161.894 2275.54,161.91 2277.62,162.273 2279.71,164.024 2281.8,161.874 2283.88,161.512 2285.97,161.276 2288.06,161.285 \n",
" 2290.15,159.074 \n",
" \"/>\n",
"<path clip-path=\"url(#clip4900)\" d=\"\n",
"M1092.67 372.684 L2280.76 372.684 L2280.76 130.764 L1092.67 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1092.67,372.684 2280.76,372.684 2280.76,130.764 1092.67,130.764 1092.67,372.684 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1116.67,191.244 1260.67,191.244 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1284.67, 208.744)\" x=\"1284.67\" y=\"208.744\">LaTeXString[L&quot;$X_1$&quot;, L&quot;$X_2$&quot;, L&quot;$X_3$&quot;]</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1116.67,251.724 1260.67,251.724 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1284.67, 269.224)\" x=\"1284.67\" y=\"269.224\">LaTeXString[L&quot;$X_1$&quot;, L&quot;$X_2$&quot;, L&quot;$X_3$&quot;]</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip4900)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1116.67,312.204 1260.67,312.204 \n",
" \"/>\n",
"<g clip-path=\"url(#clip4900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1284.67, 329.704)\" x=\"1284.67\" y=\"329.704\">LaTeXString[L&quot;$X_1$&quot;, L&quot;$X_2$&quot;, L&quot;$X_3$&quot;]</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(X.tt, Bridge.mat(X.yy)', label=[L\"X_1\",L\"X_2\",L\"X_3\"])\n",
"xlabel!(\"t\")"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 0.000093 seconds (10 allocations: 464 bytes)\n"
]
}
],
"source": [
"@time solve!(Bridge.EulerMaruyama(), X, u₀, W, P);"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"*Quite fast. Try to beat that or ask Chris to appreciate. ;-) *"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Parameter inference\n",
"\n",
"Assume that we observe the path shown in the picture and want to now the intensities $\\alpha$ and $\\beta$ of the transitions and also the noise parameters $\\sigma_1$, $\\sigma_2$. In the Bayesian paradigm, we assume that there are Gaussian priors on $\\alpha$ and $\\beta$.\n",
"\n",
"*A nice feature of the model is that $\\alpha$ and $\\beta$ enter as multiplicative constants into the drift $b$. Therefore the posterior of the drift parameters given $\\sigma_1$ and $\\sigma_2$ is conjugate Gaussian.*\n",
"\n",
"The following function samples from the posterior distribution of these parameters. It is written to be generally useful. If your drift is say\n",
"\n",
"```\n",
"b(t, u, ::Example) = m*u + b\n",
"```\n",
"then define\n",
"```\n",
"paramgrad(t, u, ::Example) = u\n",
"paramintercept(t, u, ::Example) = b\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"conjugate_posterior"
]
},
"execution_count": 32,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"paramgrad(t, u, ::CIR) = @SMatrix [-u[1]*u[2] 0.; u[1]*u[2] -u[2]; 0. u[2]]\n",
"paramintercept(t, u, ::CIR) = @SVector [0.0, 0.0, 0.0]\n",
"\"\"\"\n",
" conjugate_posterior(Y, Ξ, P)\n",
"\n",
"Sample the posterior distribution of the conjugate drift parameters from path `Y`,\n",
"prior precision matrix `Ξ` under model `P` with non-conjugate parameters in `P` fixed.\n",
"\"\"\"\n",
"function conjugate_posterior(Y, Ξ, P)\n",
" t, y = Y.tt[1], Y.yy[1]\n",
" ϕ = paramgrad(t, y, P)\n",
" mu = zero(ϕ[1, :])\n",
" G = zero(mu*mu')\n",
"\n",
" for i in 1:length(Y)-1\n",
" ϕ = paramgrad(t, y, P)\n",
" Gϕ = SMatrix{3,2,Float64}(pinv(Matrix(a(t, y, P)))*ϕ) # a is sigma*sigma'. Todo: smoothing like this is very slow\n",
" zi = ϕ'*Gϕ\n",
" t2, y2 = Y.tt[i + 1], Y.yy[i + 1]\n",
" dy = y2 - y \n",
" ds = t2 - t\n",
" mu = mu + Gϕ'*(dy - paramintercept(t, y, P)*ds)\n",
" t, y = t2, y2\n",
" G = G + zi*ds\n",
" end\n",
" WW = G + Ξ\n",
"\n",
" WL = Bridge.cholupper(Hermitian(WW))'\n",
" th° = WL'\\(randn(typeof(mu))+WL\\mu)\n",
"end "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let us visualise that."
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip6900\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip6900)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6901\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip6900)\" d=\"\n",
"M175.438 1425.79 L2352.76 1425.79 L2352.76 47.2441 L175.438 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6902\">\n",
" <rect x=\"175\" y=\"47\" width=\"2178\" height=\"1380\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 375.903,1425.79 375.903,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 829.33,1425.79 829.33,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1282.76,1425.79 1282.76,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1736.18,1425.79 1736.18,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2189.61,1425.79 2189.61,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 175.438,1388.99 2352.76,1388.99 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 175.438,993.803 2352.76,993.803 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 175.438,598.613 2352.76,598.613 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 175.438,203.423 2352.76,203.423 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.438,1425.79 2352.76,1425.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.438,1425.79 175.438,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 375.903,1425.79 375.903,1409.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 829.33,1425.79 829.33,1409.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.76,1425.79 1282.76,1409.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1736.18,1425.79 1736.18,1409.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2189.61,1425.79 2189.61,1409.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.438,1388.99 201.566,1388.99 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.438,993.803 201.566,993.803 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.438,598.613 201.566,598.613 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.438,203.423 201.566,203.423 \n",
" \"/>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 375.903, 1479.79)\" x=\"375.903\" y=\"1479.79\">0.6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 829.33, 1479.79)\" x=\"829.33\" y=\"1479.79\">0.7</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1282.76, 1479.79)\" x=\"1282.76\" y=\"1479.79\">0.8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1736.18, 1479.79)\" x=\"1736.18\" y=\"1479.79\">0.9</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2189.61, 1479.79)\" x=\"2189.61\" y=\"1479.79\">1.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 151.438, 1406.49)\" x=\"151.438\" y=\"1406.49\">1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 151.438, 1011.3)\" x=\"151.438\" y=\"1011.3\">2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 151.438, 616.113)\" x=\"151.438\" y=\"616.113\">3</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 151.438, 220.923)\" x=\"151.438\" y=\"220.923\">4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Symbol; font-size:72px; text-anchor:start;\" transform=\"rotate(0, 1241.62, 1553.31)\" x=\"1241.62\" y=\"1553.31\">α</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Symbol; font-size:72px; text-anchor:start;\" transform=\"rotate(-90, 90.697, 756.074)\" x=\"90.697\" y=\"756.074\">β</text>\n",
"</g>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"308.632\" cy=\"750.534\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"308.632\" cy=\"750.534\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1203.01\" cy=\"565.697\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1203.01\" cy=\"565.697\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1049.87\" cy=\"743.279\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1049.87\" cy=\"743.279\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1141.43\" cy=\"517.93\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1141.43\" cy=\"517.93\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"621.292\" cy=\"839.019\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"621.292\" cy=\"839.019\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1243.99\" cy=\"587.788\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1243.99\" cy=\"587.788\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"944.708\" cy=\"519.585\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"944.708\" cy=\"519.585\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"968.324\" cy=\"887.422\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"968.324\" cy=\"887.422\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1073.07\" cy=\"740.937\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1073.07\" cy=\"740.937\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.8\" cy=\"805.876\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1103.8\" cy=\"805.876\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1561.01\" cy=\"547.233\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1561.01\" cy=\"547.233\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1434.32\" cy=\"641.274\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1434.32\" cy=\"641.274\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"430.862\" cy=\"991.8\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"430.862\" cy=\"991.8\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"882.534\" cy=\"555.535\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"882.534\" cy=\"555.535\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1198.72\" cy=\"344.594\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1198.72\" cy=\"344.594\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1021.62\" cy=\"630.045\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1021.62\" cy=\"630.045\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1117.03\" cy=\"532.299\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1117.03\" cy=\"532.299\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1149.12\" cy=\"389.148\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1149.12\" cy=\"389.148\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1380.17\" cy=\"646.311\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1380.17\" cy=\"646.311\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"941.873\" cy=\"764.448\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"941.873\" cy=\"764.448\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.821\" cy=\"688.917\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"957.821\" cy=\"688.917\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"873.358\" cy=\"571.728\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"873.358\" cy=\"571.728\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1426.26\" cy=\"688.046\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1426.26\" cy=\"688.046\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1442.38\" cy=\"904.396\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1442.38\" cy=\"904.396\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1491.17\" cy=\"547.657\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1491.17\" cy=\"547.657\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1618.82\" cy=\"516.985\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1618.82\" cy=\"516.985\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1005.46\" cy=\"578.103\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1005.46\" cy=\"578.103\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1133.75\" cy=\"908.422\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1133.75\" cy=\"908.422\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"564.15\" cy=\"622.701\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"564.15\" cy=\"622.701\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1794.59\" cy=\"865.518\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1794.59\" cy=\"865.518\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1185.55\" cy=\"521.578\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1185.55\" cy=\"521.578\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1339.6\" cy=\"774.09\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1339.6\" cy=\"774.09\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1334.03\" cy=\"601.589\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1334.03\" cy=\"601.589\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"824.169\" cy=\"383.136\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"824.169\" cy=\"383.136\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"971.197\" cy=\"458.488\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"971.197\" cy=\"458.488\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"794.667\" cy=\"704.142\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"794.667\" cy=\"704.142\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1462.79\" cy=\"816.129\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1462.79\" cy=\"816.129\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"913.718\" cy=\"659.83\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"913.718\" cy=\"659.83\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1013.56\" cy=\"844.119\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1013.56\" cy=\"844.119\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"958.927\" cy=\"523.529\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"958.927\" cy=\"523.529\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"859.063\" cy=\"638.238\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"859.063\" cy=\"638.238\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1487.29\" cy=\"727.947\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1487.29\" cy=\"727.947\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1841.75\" cy=\"982.243\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1841.75\" cy=\"982.243\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1424.89\" cy=\"759.313\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1424.89\" cy=\"759.313\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"621.551\" cy=\"718.73\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"621.551\" cy=\"718.73\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1113.72\" cy=\"636.966\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1113.72\" cy=\"636.966\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1313.78\" cy=\"900.762\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1313.78\" cy=\"900.762\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1886.79\" cy=\"979.27\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1886.79\" cy=\"979.27\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1068.43\" cy=\"770.435\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1068.43\" cy=\"770.435\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"718.515\" cy=\"831.552\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"718.515\" cy=\"831.552\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1253.82\" cy=\"747.422\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1253.82\" cy=\"747.422\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1125.65\" cy=\"795.771\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1125.65\" cy=\"795.771\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1160.19\" cy=\"831.633\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1160.19\" cy=\"831.633\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1065.46\" cy=\"845.277\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1065.46\" cy=\"845.277\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1345.47\" cy=\"622.204\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1345.47\" cy=\"622.204\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1131.19\" cy=\"874.581\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1131.19\" cy=\"874.581\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"780.83\" cy=\"895.258\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"780.83\" cy=\"895.258\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1149.02\" cy=\"854.133\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1149.02\" cy=\"854.133\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"998.191\" cy=\"664.382\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"998.191\" cy=\"664.382\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1295.43\" cy=\"652.384\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1295.43\" cy=\"652.384\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1497.67\" cy=\"586.424\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1497.67\" cy=\"586.424\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1650.55\" cy=\"524.225\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1650.55\" cy=\"524.225\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1573.01\" cy=\"472.432\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1573.01\" cy=\"472.432\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"914.092\" cy=\"577.839\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"914.092\" cy=\"577.839\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1328.58\" cy=\"691.188\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1328.58\" cy=\"691.188\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"729.443\" cy=\"674.107\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"729.443\" cy=\"674.107\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1307.03\" cy=\"551.115\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1307.03\" cy=\"551.115\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"947.639\" cy=\"718.844\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"947.639\" cy=\"718.844\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1124.21\" cy=\"711.15\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1124.21\" cy=\"711.15\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"724.609\" cy=\"636.933\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"724.609\" cy=\"636.933\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1197.08\" cy=\"713.213\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1197.08\" cy=\"713.213\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1464.55\" cy=\"570.936\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1464.55\" cy=\"570.936\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1178.25\" cy=\"799.364\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1178.25\" cy=\"799.364\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1266.82\" cy=\"995.622\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1266.82\" cy=\"995.622\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1597.01\" cy=\"722.231\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1597.01\" cy=\"722.231\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1102.51\" cy=\"805.626\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1102.51\" cy=\"805.626\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"590.261\" cy=\"623.226\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"590.261\" cy=\"623.226\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1527.15\" cy=\"417.575\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1527.15\" cy=\"417.575\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1053.51\" cy=\"363.374\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1053.51\" cy=\"363.374\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"965.044\" cy=\"741.462\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"965.044\" cy=\"741.462\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"625.304\" cy=\"525.397\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"625.304\" cy=\"525.397\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1312.39\" cy=\"517.997\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1312.39\" cy=\"517.997\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1051.12\" cy=\"900.927\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1051.12\" cy=\"900.927\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1111.67\" cy=\"739.396\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1111.67\" cy=\"739.396\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1171.21\" cy=\"717.624\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1171.21\" cy=\"717.624\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"784.651\" cy=\"571.808\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"784.651\" cy=\"571.808\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.39\" cy=\"1031.26\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1560.39\" cy=\"1031.26\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.96\" cy=\"1030.31\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1269.96\" cy=\"1030.31\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1022.48\" cy=\"630.269\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1022.48\" cy=\"630.269\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1510.8\" cy=\"770.4\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1510.8\" cy=\"770.4\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1474.14\" cy=\"651.96\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1474.14\" cy=\"651.96\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"527.866\" cy=\"767.789\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"527.866\" cy=\"767.789\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"613.551\" cy=\"546.284\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"613.551\" cy=\"546.284\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"942.894\" cy=\"716.313\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"942.894\" cy=\"716.313\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1016.83\" cy=\"771.845\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1016.83\" cy=\"771.845\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"803.744\" cy=\"626.479\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"803.744\" cy=\"626.479\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1986.57\" cy=\"812.826\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1986.57\" cy=\"812.826\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"760.439\" cy=\"618.122\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"760.439\" cy=\"618.122\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"943.145\" cy=\"495.655\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"943.145\" cy=\"495.655\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1481.42\" cy=\"952.51\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1481.42\" cy=\"952.51\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1641.21\" cy=\"701.654\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1641.21\" cy=\"701.654\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1460.14\" cy=\"659.644\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1460.14\" cy=\"659.644\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"759.96\" cy=\"830.551\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"759.96\" cy=\"830.551\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"880.612\" cy=\"745.667\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"880.612\" cy=\"745.667\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"947.141\" cy=\"802.019\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"947.141\" cy=\"802.019\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1478.97\" cy=\"929.553\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1478.97\" cy=\"929.553\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1364.17\" cy=\"561.957\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1364.17\" cy=\"561.957\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"849.204\" cy=\"662.197\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"849.204\" cy=\"662.197\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1295.81\" cy=\"929.294\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1295.81\" cy=\"929.294\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1038.99\" cy=\"675.927\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1038.99\" cy=\"675.927\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"872.112\" cy=\"617.999\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"872.112\" cy=\"617.999\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1149.49\" cy=\"651.981\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1149.49\" cy=\"651.981\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"998.199\" cy=\"950.59\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"998.199\" cy=\"950.59\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1225.2\" cy=\"749.386\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1225.2\" cy=\"749.386\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1723.06\" cy=\"588.226\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1723.06\" cy=\"588.226\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"572.548\" cy=\"879.047\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"572.548\" cy=\"879.047\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"890.168\" cy=\"678.345\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"890.168\" cy=\"678.345\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1297.57\" cy=\"428.555\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1297.57\" cy=\"428.555\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1039.28\" cy=\"604.887\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1039.28\" cy=\"604.887\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"705.768\" cy=\"532.84\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"705.768\" cy=\"532.84\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"886.984\" cy=\"432.262\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"886.984\" cy=\"432.262\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1717.03\" cy=\"524.933\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1717.03\" cy=\"524.933\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"997.351\" cy=\"596.853\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"997.351\" cy=\"596.853\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1261.33\" cy=\"687.412\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1261.33\" cy=\"687.412\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1027.1\" cy=\"716.856\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1027.1\" cy=\"716.856\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1015.61\" cy=\"926.79\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1015.61\" cy=\"926.79\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1357.47\" cy=\"910.199\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1357.47\" cy=\"910.199\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"440.213\" cy=\"635.598\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"440.213\" cy=\"635.598\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1118.21\" cy=\"609.986\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1118.21\" cy=\"609.986\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1240.4\" cy=\"564.613\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1240.4\" cy=\"564.613\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1233.39\" cy=\"693.188\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1233.39\" cy=\"693.188\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"946.251\" cy=\"546.101\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"946.251\" cy=\"546.101\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"883.868\" cy=\"644.091\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"883.868\" cy=\"644.091\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"555.668\" cy=\"404.413\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"555.668\" cy=\"404.413\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"880.695\" cy=\"675.606\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"880.695\" cy=\"675.606\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"963.853\" cy=\"535.923\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"963.853\" cy=\"535.923\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1095.27\" cy=\"703.982\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1095.27\" cy=\"703.982\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1294.39\" cy=\"617.833\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1294.39\" cy=\"617.833\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"914.824\" cy=\"752.568\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"914.824\" cy=\"752.568\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1393.25\" cy=\"507.536\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1393.25\" cy=\"507.536\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1272.29\" cy=\"654.922\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1272.29\" cy=\"654.922\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1234.61\" cy=\"738.897\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1234.61\" cy=\"738.897\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"886.217\" cy=\"752.913\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"886.217\" cy=\"752.913\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.16\" cy=\"432.858\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1103.16\" cy=\"432.858\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1469.13\" cy=\"592.208\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1469.13\" cy=\"592.208\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.74\" cy=\"808.149\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1165.74\" cy=\"808.149\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1059.52\" cy=\"688.246\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1059.52\" cy=\"688.246\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1002.41\" cy=\"650.211\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1002.41\" cy=\"650.211\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1321.9\" cy=\"715.617\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1321.9\" cy=\"715.617\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"526.665\" cy=\"671.436\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"526.665\" cy=\"671.436\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1849.51\" cy=\"307.364\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1849.51\" cy=\"307.364\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"881.198\" cy=\"911.651\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"881.198\" cy=\"911.651\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1542.05\" cy=\"640.511\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1542.05\" cy=\"640.511\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1494.72\" cy=\"718.289\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1494.72\" cy=\"718.289\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1079.49\" cy=\"465.855\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1079.49\" cy=\"465.855\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"928.37\" cy=\"762.118\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"928.37\" cy=\"762.118\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1429.53\" cy=\"755.102\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1429.53\" cy=\"755.102\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"869.467\" cy=\"453.403\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"869.467\" cy=\"453.403\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1167.52\" cy=\"772.085\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1167.52\" cy=\"772.085\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1477.36\" cy=\"829.045\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1477.36\" cy=\"829.045\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1162.08\" cy=\"461.413\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1162.08\" cy=\"461.413\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"761.341\" cy=\"559.802\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"761.341\" cy=\"559.802\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1367.24\" cy=\"611.009\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1367.24\" cy=\"611.009\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1257.76\" cy=\"761.664\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1257.76\" cy=\"761.664\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1315.01\" cy=\"856.239\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1315.01\" cy=\"856.239\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.8\" cy=\"663.858\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1519.8\" cy=\"663.858\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"941.196\" cy=\"605.178\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"941.196\" cy=\"605.178\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"922.745\" cy=\"1016.06\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"922.745\" cy=\"1016.06\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1465.21\" cy=\"807.943\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1465.21\" cy=\"807.943\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"842.042\" cy=\"1386.78\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"842.042\" cy=\"1386.78\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.06\" cy=\"827.175\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1498.06\" cy=\"827.175\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1300.27\" cy=\"746.916\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1300.27\" cy=\"746.916\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1784.21\" cy=\"631.032\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1784.21\" cy=\"631.032\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"864.873\" cy=\"585.894\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"864.873\" cy=\"585.894\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1433.12\" cy=\"897.141\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1433.12\" cy=\"897.141\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"645.999\" cy=\"999.391\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"645.999\" cy=\"999.391\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1303.79\" cy=\"629.338\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1303.79\" cy=\"629.338\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.63\" cy=\"467.573\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1269.63\" cy=\"467.573\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1054.05\" cy=\"726.635\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1054.05\" cy=\"726.635\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"995.011\" cy=\"875.801\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"995.011\" cy=\"875.801\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1413.73\" cy=\"759.304\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1413.73\" cy=\"759.304\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1140.87\" cy=\"596.649\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1140.87\" cy=\"596.649\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"678.673\" cy=\"592.034\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"678.673\" cy=\"592.034\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1364.7\" cy=\"1008.75\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1364.7\" cy=\"1008.75\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1201.88\" cy=\"491.708\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1201.88\" cy=\"491.708\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"938.7\" cy=\"529.979\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"938.7\" cy=\"529.979\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1414.17\" cy=\"692.692\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1414.17\" cy=\"692.692\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"669.875\" cy=\"704.367\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"669.875\" cy=\"704.367\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1037.12\" cy=\"709.741\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1037.12\" cy=\"709.741\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1264.19\" cy=\"851.686\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1264.19\" cy=\"851.686\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1497.05\" cy=\"617.533\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1497.05\" cy=\"617.533\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"781.096\" cy=\"497.92\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"781.096\" cy=\"497.92\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1275.26\" cy=\"667.631\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1275.26\" cy=\"667.631\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1090.47\" cy=\"657.689\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1090.47\" cy=\"657.689\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"945.713\" cy=\"807.274\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"945.713\" cy=\"807.274\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1369.1\" cy=\"839.815\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1369.1\" cy=\"839.815\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1213.79\" cy=\"413.154\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1213.79\" cy=\"413.154\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1120.59\" cy=\"642.079\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1120.59\" cy=\"642.079\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"775.533\" cy=\"813.303\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"775.533\" cy=\"813.303\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1450.44\" cy=\"761.703\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1450.44\" cy=\"761.703\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1078.47\" cy=\"435.752\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1078.47\" cy=\"435.752\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"823.092\" cy=\"594.735\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"823.092\" cy=\"594.735\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1059.63\" cy=\"619.222\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1059.63\" cy=\"619.222\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1314.37\" cy=\"818.275\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1314.37\" cy=\"818.275\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1224.84\" cy=\"597.532\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1224.84\" cy=\"597.532\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1511.08\" cy=\"475.785\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1511.08\" cy=\"475.785\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"916.142\" cy=\"918.945\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"916.142\" cy=\"918.945\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1067.17\" cy=\"624.395\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1067.17\" cy=\"624.395\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1406.71\" cy=\"613.047\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1406.71\" cy=\"613.047\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"500.803\" cy=\"639.006\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"500.803\" cy=\"639.006\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"800.306\" cy=\"740.432\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"800.306\" cy=\"740.432\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1198.36\" cy=\"789.861\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1198.36\" cy=\"789.861\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1133.47\" cy=\"1047.55\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1133.47\" cy=\"1047.55\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"517.778\" cy=\"980.088\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"517.778\" cy=\"980.088\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"846.017\" cy=\"816.873\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"846.017\" cy=\"816.873\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1073.17\" cy=\"806.728\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1073.17\" cy=\"806.728\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1130.58\" cy=\"687.572\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1130.58\" cy=\"687.572\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1259.13\" cy=\"1025.53\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1259.13\" cy=\"1025.53\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"696.763\" cy=\"504.958\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"696.763\" cy=\"504.958\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1377.17\" cy=\"533.449\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1377.17\" cy=\"533.449\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"716.307\" cy=\"836.245\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"716.307\" cy=\"836.245\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1393.94\" cy=\"445.46\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1393.94\" cy=\"445.46\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"840.236\" cy=\"589.219\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"840.236\" cy=\"589.219\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1244.19\" cy=\"634.33\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1244.19\" cy=\"634.33\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"937.133\" cy=\"796.584\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"937.133\" cy=\"796.584\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1477.26\" cy=\"740.242\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1477.26\" cy=\"740.242\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1274.76\" cy=\"642.558\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1274.76\" cy=\"642.558\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1599.64\" cy=\"718.325\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1599.64\" cy=\"718.325\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1522.74\" cy=\"690.018\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1522.74\" cy=\"690.018\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"928.734\" cy=\"546.078\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"928.734\" cy=\"546.078\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1325.6\" cy=\"777.445\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1325.6\" cy=\"777.445\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"517.651\" cy=\"675.74\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"517.651\" cy=\"675.74\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"958.507\" cy=\"771.969\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"958.507\" cy=\"771.969\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1518.68\" cy=\"1050.49\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1518.68\" cy=\"1050.49\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"901.275\" cy=\"550.1\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"901.275\" cy=\"550.1\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"944.936\" cy=\"829.048\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"944.936\" cy=\"829.048\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.77\" cy=\"718.472\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1165.77\" cy=\"718.472\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"782.696\" cy=\"722.722\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"782.696\" cy=\"722.722\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"570.62\" cy=\"573.018\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"570.62\" cy=\"573.018\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1385.98\" cy=\"726.084\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1385.98\" cy=\"726.084\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"679.286\" cy=\"523.491\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"679.286\" cy=\"523.491\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"657.809\" cy=\"604.276\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"657.809\" cy=\"604.276\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"787.582\" cy=\"631.24\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"787.582\" cy=\"631.24\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"713.913\" cy=\"769.687\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"713.913\" cy=\"769.687\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1389.18\" cy=\"708.026\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1389.18\" cy=\"708.026\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1314.15\" cy=\"792.942\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1314.15\" cy=\"792.942\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.127\" cy=\"787.687\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"791.127\" cy=\"787.687\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"588.4\" cy=\"714.935\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"588.4\" cy=\"714.935\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1347.54\" cy=\"686.213\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1347.54\" cy=\"686.213\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"385.72\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"385.72\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1467.34\" cy=\"602.455\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1467.34\" cy=\"602.455\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.82\" cy=\"754.634\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1290.82\" cy=\"754.634\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"725.209\" cy=\"666.956\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"725.209\" cy=\"666.956\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"889.586\" cy=\"880.18\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"889.586\" cy=\"880.18\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1130.96\" cy=\"743.395\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1130.96\" cy=\"743.395\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1006.17\" cy=\"696.132\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1006.17\" cy=\"696.132\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1388.48\" cy=\"608.685\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1388.48\" cy=\"608.685\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"608.714\" cy=\"594.378\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"608.714\" cy=\"594.378\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1233.38\" cy=\"666.822\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1233.38\" cy=\"666.822\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1234.8\" cy=\"702.891\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1234.8\" cy=\"702.891\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"882.124\" cy=\"681.591\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"882.124\" cy=\"681.591\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"622.061\" cy=\"826.512\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"622.061\" cy=\"826.512\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1120.05\" cy=\"877.534\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1120.05\" cy=\"877.534\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"483.536\" cy=\"792.794\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"483.536\" cy=\"792.794\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1719.01\" cy=\"855.035\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1719.01\" cy=\"855.035\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1105.83\" cy=\"665.614\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1105.83\" cy=\"665.614\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"988.297\" cy=\"603.773\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"988.297\" cy=\"603.773\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1396.97\" cy=\"741.396\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1396.97\" cy=\"741.396\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1075.25\" cy=\"581.58\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1075.25\" cy=\"581.58\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1856.93\" cy=\"710.421\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1856.93\" cy=\"710.421\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1228.14\" cy=\"845.168\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1228.14\" cy=\"845.168\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1098.02\" cy=\"538.499\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1098.02\" cy=\"538.499\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1112.74\" cy=\"632.71\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1112.74\" cy=\"632.71\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1291.59\" cy=\"650.184\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1291.59\" cy=\"650.184\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"877.259\" cy=\"556.331\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"877.259\" cy=\"556.331\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"962.622\" cy=\"893.961\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"962.622\" cy=\"893.961\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"855.008\" cy=\"751.831\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"855.008\" cy=\"751.831\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1213.42\" cy=\"921.137\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1213.42\" cy=\"921.137\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1455.14\" cy=\"715.457\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1455.14\" cy=\"715.457\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1203.04\" cy=\"935.916\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1203.04\" cy=\"935.916\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1784.17\" cy=\"683.405\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1784.17\" cy=\"683.405\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"900.538\" cy=\"915.514\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"900.538\" cy=\"915.514\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1299.47\" cy=\"738.658\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1299.47\" cy=\"738.658\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"720.531\" cy=\"539.682\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"720.531\" cy=\"539.682\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1260.91\" cy=\"652.64\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1260.91\" cy=\"652.64\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1525.8\" cy=\"692.976\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1525.8\" cy=\"692.976\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"660.569\" cy=\"501.141\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"660.569\" cy=\"501.141\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"698.806\" cy=\"441.983\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"698.806\" cy=\"441.983\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1346.92\" cy=\"768.531\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1346.92\" cy=\"768.531\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"525.61\" cy=\"1056.01\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"525.61\" cy=\"1056.01\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1451.69\" cy=\"597.629\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1451.69\" cy=\"597.629\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"2111.61\" cy=\"666.082\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"2111.61\" cy=\"666.082\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"626.481\" cy=\"778.239\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"626.481\" cy=\"778.239\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1105.33\" cy=\"950.019\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1105.33\" cy=\"950.019\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1606.68\" cy=\"538.983\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1606.68\" cy=\"538.983\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"803.529\" cy=\"829.272\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"803.529\" cy=\"829.272\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1238.03\" cy=\"1053.49\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1238.03\" cy=\"1053.49\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1008.21\" cy=\"1030.69\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1008.21\" cy=\"1030.69\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.44\" cy=\"573.675\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1311.44\" cy=\"573.675\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1275.53\" cy=\"695.123\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1275.53\" cy=\"695.123\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"629.784\" cy=\"599.441\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"629.784\" cy=\"599.441\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1300.17\" cy=\"754.581\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1300.17\" cy=\"754.581\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1112.31\" cy=\"742.409\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1112.31\" cy=\"742.409\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1264.21\" cy=\"578.892\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1264.21\" cy=\"578.892\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1214.88\" cy=\"608.799\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1214.88\" cy=\"608.799\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1432.37\" cy=\"855.81\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1432.37\" cy=\"855.81\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1056.16\" cy=\"847.766\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1056.16\" cy=\"847.766\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1425.18\" cy=\"774.315\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1425.18\" cy=\"774.315\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1504.37\" cy=\"727.889\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1504.37\" cy=\"727.889\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"557.45\" cy=\"822.354\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"557.45\" cy=\"822.354\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"666.708\" cy=\"730.857\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"666.708\" cy=\"730.857\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"677.68\" cy=\"558.402\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"677.68\" cy=\"558.402\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1187.72\" cy=\"824.544\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1187.72\" cy=\"824.544\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1396.01\" cy=\"781.753\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1396.01\" cy=\"781.753\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1629.57\" cy=\"694.833\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1629.57\" cy=\"694.833\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1017.85\" cy=\"725.836\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1017.85\" cy=\"725.836\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1428.47\" cy=\"744.691\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1428.47\" cy=\"744.691\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"614.485\" cy=\"912.405\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"614.485\" cy=\"912.405\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1358.77\" cy=\"697.386\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1358.77\" cy=\"697.386\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1134.54\" cy=\"822.266\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1134.54\" cy=\"822.266\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"850.876\" cy=\"815.585\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"850.876\" cy=\"815.585\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1080.68\" cy=\"670.167\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1080.68\" cy=\"670.167\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"700.239\" cy=\"464.062\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"700.239\" cy=\"464.062\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1461.9\" cy=\"664.712\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1461.9\" cy=\"664.712\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.26\" cy=\"569.563\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1394.26\" cy=\"569.563\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"918.661\" cy=\"913.043\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"918.661\" cy=\"913.043\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"884.995\" cy=\"812.199\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"884.995\" cy=\"812.199\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1142.44\" cy=\"624.125\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1142.44\" cy=\"624.125\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1390.95\" cy=\"579.588\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1390.95\" cy=\"579.588\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1159.05\" cy=\"644.609\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1159.05\" cy=\"644.609\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1075.38\" cy=\"509.963\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1075.38\" cy=\"509.963\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"967.444\" cy=\"616.452\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"967.444\" cy=\"616.452\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1715.91\" cy=\"654.119\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1715.91\" cy=\"654.119\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"762.953\" cy=\"789.221\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"762.953\" cy=\"789.221\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1212.83\" cy=\"733.836\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1212.83\" cy=\"733.836\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1130.08\" cy=\"880.96\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1130.08\" cy=\"880.96\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1079.45\" cy=\"813.811\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1079.45\" cy=\"813.811\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1337.2\" cy=\"655.148\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1337.2\" cy=\"655.148\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1166.14\" cy=\"763.088\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1166.14\" cy=\"763.088\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.95\" cy=\"401.585\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1123.95\" cy=\"401.585\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1132.52\" cy=\"822.22\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1132.52\" cy=\"822.22\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1081.02\" cy=\"623.855\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1081.02\" cy=\"623.855\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1321.54\" cy=\"914.731\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1321.54\" cy=\"914.731\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1129.55\" cy=\"948.683\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1129.55\" cy=\"948.683\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"673.259\" cy=\"669.188\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"673.259\" cy=\"669.188\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1510.79\" cy=\"695.111\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1510.79\" cy=\"695.111\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"921.131\" cy=\"594.622\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"921.131\" cy=\"594.622\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1370.94\" cy=\"591.883\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1370.94\" cy=\"591.883\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"938.617\" cy=\"919.588\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"938.617\" cy=\"919.588\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1055.93\" cy=\"550.089\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1055.93\" cy=\"550.089\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1041\" cy=\"618.859\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1041\" cy=\"618.859\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"952.622\" cy=\"1035.7\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"952.622\" cy=\"1035.7\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"892.093\" cy=\"1012.05\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"892.093\" cy=\"1012.05\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1226.73\" cy=\"726.49\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1226.73\" cy=\"726.49\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"946.087\" cy=\"636.526\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"946.087\" cy=\"636.526\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"971.619\" cy=\"929.079\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"971.619\" cy=\"929.079\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1729.01\" cy=\"728.618\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1729.01\" cy=\"728.618\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"794.159\" cy=\"686.063\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"794.159\" cy=\"686.063\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1499.85\" cy=\"626.957\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1499.85\" cy=\"626.957\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1177.86\" cy=\"601.087\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1177.86\" cy=\"601.087\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1218.24\" cy=\"742.989\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1218.24\" cy=\"742.989\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"968.61\" cy=\"673.609\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"968.61\" cy=\"673.609\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"708.23\" cy=\"993.407\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"708.23\" cy=\"993.407\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"749.81\" cy=\"737.175\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"749.81\" cy=\"737.175\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1255.24\" cy=\"760.44\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1255.24\" cy=\"760.44\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1366.1\" cy=\"499.901\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1366.1\" cy=\"499.901\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1806.37\" cy=\"577.118\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1806.37\" cy=\"577.118\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"442.027\" cy=\"863.234\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"442.027\" cy=\"863.234\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1901.2\" cy=\"759.38\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1901.2\" cy=\"759.38\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1414.45\" cy=\"770.809\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1414.45\" cy=\"770.809\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1031.71\" cy=\"556.754\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1031.71\" cy=\"556.754\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"469.117\" cy=\"689.512\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"469.117\" cy=\"689.512\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1050.61\" cy=\"681.556\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1050.61\" cy=\"681.556\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"315.392\" cy=\"703.249\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"315.392\" cy=\"703.249\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1277.94\" cy=\"625.747\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1277.94\" cy=\"625.747\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1138.99\" cy=\"592.09\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1138.99\" cy=\"592.09\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1532.97\" cy=\"723.296\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1532.97\" cy=\"723.296\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1140.42\" cy=\"701.765\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1140.42\" cy=\"701.765\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1847.49\" cy=\"849.788\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1847.49\" cy=\"849.788\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1320.89\" cy=\"795.759\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1320.89\" cy=\"795.759\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"904.124\" cy=\"972.804\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"904.124\" cy=\"972.804\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1276.66\" cy=\"502.397\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1276.66\" cy=\"502.397\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1206.72\" cy=\"583.252\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1206.72\" cy=\"583.252\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1497.2\" cy=\"826.823\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1497.2\" cy=\"826.823\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"968.932\" cy=\"637.751\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"968.932\" cy=\"637.751\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"966.628\" cy=\"636.227\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"966.628\" cy=\"636.227\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1047.55\" cy=\"688.204\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1047.55\" cy=\"688.204\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"675.051\" cy=\"582.808\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"675.051\" cy=\"582.808\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1035.31\" cy=\"879.508\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1035.31\" cy=\"879.508\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"807.933\" cy=\"1014.07\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"807.933\" cy=\"1014.07\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1153.2\" cy=\"504.795\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1153.2\" cy=\"504.795\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"921.681\" cy=\"819.95\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"921.681\" cy=\"819.95\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1688.99\" cy=\"524.541\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1688.99\" cy=\"524.541\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1384.88\" cy=\"663.283\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1384.88\" cy=\"663.283\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"732.332\" cy=\"794.794\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"732.332\" cy=\"794.794\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"987.469\" cy=\"825.175\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"987.469\" cy=\"825.175\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1045.32\" cy=\"1014.47\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1045.32\" cy=\"1014.47\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"620.863\" cy=\"717.911\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"620.863\" cy=\"717.911\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1680.7\" cy=\"612.562\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1680.7\" cy=\"612.562\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1514.44\" cy=\"1038.79\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1514.44\" cy=\"1038.79\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"237.061\" cy=\"635.289\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"237.061\" cy=\"635.289\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1332.43\" cy=\"1064.98\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1332.43\" cy=\"1064.98\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"935.515\" cy=\"853.69\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"935.515\" cy=\"853.69\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1503.26\" cy=\"176.647\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1503.26\" cy=\"176.647\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"894.006\" cy=\"703.308\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"894.006\" cy=\"703.308\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"769.177\" cy=\"952.917\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"769.177\" cy=\"952.917\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1237.72\" cy=\"859.211\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1237.72\" cy=\"859.211\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1143.69\" cy=\"602.614\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1143.69\" cy=\"602.614\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1062.51\" cy=\"592.052\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1062.51\" cy=\"592.052\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"616.695\" cy=\"449.449\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"616.695\" cy=\"449.449\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1222.19\" cy=\"588.167\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1222.19\" cy=\"588.167\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1009.74\" cy=\"927.666\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1009.74\" cy=\"927.666\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.37\" cy=\"747.013\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1144.37\" cy=\"747.013\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"830.138\" cy=\"836.29\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"830.138\" cy=\"836.29\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1278.83\" cy=\"586.274\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1278.83\" cy=\"586.274\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1067.66\" cy=\"1025.72\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1067.66\" cy=\"1025.72\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"839.745\" cy=\"628.855\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"839.745\" cy=\"628.855\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1206.41\" cy=\"648.297\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1206.41\" cy=\"648.297\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"873.47\" cy=\"589.071\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"873.47\" cy=\"589.071\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"688.571\" cy=\"554.113\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"688.571\" cy=\"554.113\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1415.82\" cy=\"822.11\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1415.82\" cy=\"822.11\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"886.896\" cy=\"674.347\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"886.896\" cy=\"674.347\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1142.12\" cy=\"749.769\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1142.12\" cy=\"749.769\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1666.53\" cy=\"738.878\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1666.53\" cy=\"738.878\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1341.69\" cy=\"644.562\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1341.69\" cy=\"644.562\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1807.03\" cy=\"567.699\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1807.03\" cy=\"567.699\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1298.13\" cy=\"596.833\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1298.13\" cy=\"596.833\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1042.85\" cy=\"795.006\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1042.85\" cy=\"795.006\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1238.78\" cy=\"810.541\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1238.78\" cy=\"810.541\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1253.29\" cy=\"1106.75\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1253.29\" cy=\"1106.75\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.31\" cy=\"1039.57\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1123.31\" cy=\"1039.57\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1559.78\" cy=\"851.183\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1559.78\" cy=\"851.183\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"951.543\" cy=\"685.073\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"951.543\" cy=\"685.073\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"998.201\" cy=\"543.47\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"998.201\" cy=\"543.47\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1409.95\" cy=\"723.662\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1409.95\" cy=\"723.662\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1100.54\" cy=\"835.89\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1100.54\" cy=\"835.89\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1545.16\" cy=\"533.781\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1545.16\" cy=\"533.781\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1149.99\" cy=\"794.402\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1149.99\" cy=\"794.402\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1462.11\" cy=\"716.576\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1462.11\" cy=\"716.576\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"665.262\" cy=\"622.355\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"665.262\" cy=\"622.355\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1232.05\" cy=\"842.28\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1232.05\" cy=\"842.28\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1208.46\" cy=\"399.906\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1208.46\" cy=\"399.906\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1034.64\" cy=\"86.2596\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1034.64\" cy=\"86.2596\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1161.3\" cy=\"840.741\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1161.3\" cy=\"840.741\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1109.66\" cy=\"723.83\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1109.66\" cy=\"723.83\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"533.986\" cy=\"652.532\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"533.986\" cy=\"652.532\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1299.9\" cy=\"513.259\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1299.9\" cy=\"513.259\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1816.98\" cy=\"449.68\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1816.98\" cy=\"449.68\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"837.105\" cy=\"480.592\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"837.105\" cy=\"480.592\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"717.842\" cy=\"596.251\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"717.842\" cy=\"596.251\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1316.56\" cy=\"630.5\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1316.56\" cy=\"630.5\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1139.61\" cy=\"799.877\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1139.61\" cy=\"799.877\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1403.09\" cy=\"637.139\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1403.09\" cy=\"637.139\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"832.808\" cy=\"527.934\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"832.808\" cy=\"527.934\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"952.184\" cy=\"1008.54\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"952.184\" cy=\"1008.54\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1367.6\" cy=\"855.267\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1367.6\" cy=\"855.267\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1546.47\" cy=\"563.065\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1546.47\" cy=\"563.065\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1023.51\" cy=\"656.123\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1023.51\" cy=\"656.123\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1225.23\" cy=\"662.448\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1225.23\" cy=\"662.448\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"942.724\" cy=\"660.637\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"942.724\" cy=\"660.637\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"842.049\" cy=\"585.822\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"842.049\" cy=\"585.822\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"701.852\" cy=\"472.32\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"701.852\" cy=\"472.32\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1129.23\" cy=\"871.58\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1129.23\" cy=\"871.58\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"981.011\" cy=\"437.973\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"981.011\" cy=\"437.973\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"930.97\" cy=\"617.216\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"930.97\" cy=\"617.216\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"743.716\" cy=\"562.185\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"743.716\" cy=\"562.185\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1392.34\" cy=\"712.241\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1392.34\" cy=\"712.241\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1172.93\" cy=\"740.011\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1172.93\" cy=\"740.011\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"873.002\" cy=\"480.378\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"873.002\" cy=\"480.378\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"706.536\" cy=\"657.885\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"706.536\" cy=\"657.885\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"751.695\" cy=\"718.336\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"751.695\" cy=\"718.336\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1301.32\" cy=\"524.598\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1301.32\" cy=\"524.598\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1231.09\" cy=\"747.74\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1231.09\" cy=\"747.74\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1313.99\" cy=\"743.548\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1313.99\" cy=\"743.548\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"553.374\" cy=\"746.905\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"553.374\" cy=\"746.905\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1179.12\" cy=\"901.8\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1179.12\" cy=\"901.8\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"859.948\" cy=\"715.519\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"859.948\" cy=\"715.519\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1305.1\" cy=\"243.401\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1305.1\" cy=\"243.401\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1335.97\" cy=\"1063.24\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1335.97\" cy=\"1063.24\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103\" cy=\"522.683\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1103\" cy=\"522.683\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"884.323\" cy=\"938.24\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"884.323\" cy=\"938.24\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1158.52\" cy=\"437.451\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1158.52\" cy=\"437.451\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1039.11\" cy=\"737.942\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1039.11\" cy=\"737.942\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1217.98\" cy=\"658.386\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1217.98\" cy=\"658.386\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1026.4\" cy=\"567.681\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1026.4\" cy=\"567.681\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1188.5\" cy=\"548.147\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1188.5\" cy=\"548.147\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"656.419\" cy=\"615.51\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"656.419\" cy=\"615.51\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1256.43\" cy=\"386.552\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1256.43\" cy=\"386.552\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1102.75\" cy=\"705.619\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1102.75\" cy=\"705.619\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1003.89\" cy=\"723.409\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1003.89\" cy=\"723.409\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1618.81\" cy=\"890.756\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1618.81\" cy=\"890.756\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"949.255\" cy=\"653.275\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"949.255\" cy=\"653.275\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"370.54\" cy=\"665.378\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"370.54\" cy=\"665.378\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"838.945\" cy=\"828.86\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"838.945\" cy=\"828.86\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1174.7\" cy=\"831.956\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1174.7\" cy=\"831.956\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1074.19\" cy=\"842.009\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1074.19\" cy=\"842.009\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"869.939\" cy=\"751.66\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"869.939\" cy=\"751.66\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"877.008\" cy=\"632.643\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"877.008\" cy=\"632.643\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1315.65\" cy=\"887.235\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1315.65\" cy=\"887.235\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"823.72\" cy=\"1037.94\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"823.72\" cy=\"1037.94\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"967.235\" cy=\"736.627\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"967.235\" cy=\"736.627\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1284.4\" cy=\"777.311\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1284.4\" cy=\"777.311\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1717.95\" cy=\"549.231\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1717.95\" cy=\"549.231\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1413.61\" cy=\"952.901\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1413.61\" cy=\"952.901\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1467.75\" cy=\"685.987\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1467.75\" cy=\"685.987\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1587.38\" cy=\"744.995\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1587.38\" cy=\"744.995\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"711.3\" cy=\"709.397\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"711.3\" cy=\"709.397\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"956.755\" cy=\"730.871\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"956.755\" cy=\"730.871\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"785.681\" cy=\"800.707\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"785.681\" cy=\"800.707\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1164.91\" cy=\"835.686\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1164.91\" cy=\"835.686\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1175.7\" cy=\"783.753\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1175.7\" cy=\"783.753\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"522.918\" cy=\"766.467\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"522.918\" cy=\"766.467\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"709.029\" cy=\"753.151\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"709.029\" cy=\"753.151\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1510.89\" cy=\"508.165\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1510.89\" cy=\"508.165\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1388.76\" cy=\"529.296\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1388.76\" cy=\"529.296\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"834.202\" cy=\"665.459\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"834.202\" cy=\"665.459\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"617.044\" cy=\"739.721\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"617.044\" cy=\"739.721\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"950.302\" cy=\"646.192\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"950.302\" cy=\"646.192\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1203.48\" cy=\"331.295\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1203.48\" cy=\"331.295\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1438.22\" cy=\"551.191\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1438.22\" cy=\"551.191\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1423.41\" cy=\"624.525\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1423.41\" cy=\"624.525\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"535.798\" cy=\"973.941\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"535.798\" cy=\"973.941\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1508.53\" cy=\"925.129\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1508.53\" cy=\"925.129\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1027.6\" cy=\"511.269\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1027.6\" cy=\"511.269\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1549.81\" cy=\"674.497\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1549.81\" cy=\"674.497\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"817.225\" cy=\"489.145\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"817.225\" cy=\"489.145\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1606.6\" cy=\"420.281\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1606.6\" cy=\"420.281\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"855.127\" cy=\"752.538\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"855.127\" cy=\"752.538\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.05\" cy=\"1054.08\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1373.05\" cy=\"1054.08\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"951.707\" cy=\"776.096\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"951.707\" cy=\"776.096\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1694.67\" cy=\"457.52\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1694.67\" cy=\"457.52\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"760.717\" cy=\"426.487\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"760.717\" cy=\"426.487\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1401.59\" cy=\"732.13\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1401.59\" cy=\"732.13\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"559.138\" cy=\"634.791\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"559.138\" cy=\"634.791\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1036.61\" cy=\"841.114\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1036.61\" cy=\"841.114\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1476.87\" cy=\"663.909\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1476.87\" cy=\"663.909\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1180.03\" cy=\"873.588\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1180.03\" cy=\"873.588\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1113.6\" cy=\"819.646\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1113.6\" cy=\"819.646\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1176.96\" cy=\"683.232\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1176.96\" cy=\"683.232\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"722.169\" cy=\"640.305\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"722.169\" cy=\"640.305\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"873.712\" cy=\"914.69\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"873.712\" cy=\"914.69\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1763.5\" cy=\"861.381\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1763.5\" cy=\"861.381\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"770.308\" cy=\"781.43\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"770.308\" cy=\"781.43\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"475.212\" cy=\"624.221\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"475.212\" cy=\"624.221\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1024.82\" cy=\"809.896\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1024.82\" cy=\"809.896\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1226.34\" cy=\"592.879\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1226.34\" cy=\"592.879\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1023.06\" cy=\"671.946\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1023.06\" cy=\"671.946\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1379.13\" cy=\"587.123\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1379.13\" cy=\"587.123\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1262.19\" cy=\"811.782\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1262.19\" cy=\"811.782\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1133.43\" cy=\"962.745\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1133.43\" cy=\"962.745\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.53\" cy=\"710.349\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1019.53\" cy=\"710.349\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1046.12\" cy=\"506.967\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1046.12\" cy=\"506.967\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1052.64\" cy=\"671.209\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1052.64\" cy=\"671.209\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"575.822\" cy=\"664.238\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"575.822\" cy=\"664.238\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1563.59\" cy=\"830.671\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1563.59\" cy=\"830.671\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"831.867\" cy=\"619.133\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"831.867\" cy=\"619.133\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"927.052\" cy=\"814.375\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"927.052\" cy=\"814.375\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1157.73\" cy=\"650.345\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1157.73\" cy=\"650.345\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1360.95\" cy=\"832.186\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1360.95\" cy=\"832.186\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1413.35\" cy=\"641.595\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1413.35\" cy=\"641.595\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1691.35\" cy=\"363.233\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1691.35\" cy=\"363.233\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1254.6\" cy=\"524.566\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1254.6\" cy=\"524.566\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"938.285\" cy=\"708.479\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"938.285\" cy=\"708.479\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1334.01\" cy=\"757.52\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1334.01\" cy=\"757.52\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1191.81\" cy=\"805.568\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1191.81\" cy=\"805.568\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1571.07\" cy=\"689.315\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1571.07\" cy=\"689.315\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"619.813\" cy=\"648.009\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"619.813\" cy=\"648.009\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"928.584\" cy=\"427.912\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"928.584\" cy=\"427.912\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"642.474\" cy=\"743.443\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"642.474\" cy=\"743.443\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1659.37\" cy=\"752.999\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1659.37\" cy=\"752.999\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1454.63\" cy=\"926.53\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1454.63\" cy=\"926.53\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"785.249\" cy=\"909.016\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"785.249\" cy=\"909.016\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1256.5\" cy=\"906.116\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1256.5\" cy=\"906.116\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1451.69\" cy=\"760.85\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1451.69\" cy=\"760.85\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1214.64\" cy=\"935.049\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1214.64\" cy=\"935.049\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1270.98\" cy=\"585.548\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1270.98\" cy=\"585.548\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"849.78\" cy=\"501.191\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"849.78\" cy=\"501.191\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"447.787\" cy=\"708.923\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"447.787\" cy=\"708.923\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1660.42\" cy=\"613.025\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1660.42\" cy=\"613.025\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1503.43\" cy=\"926.065\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1503.43\" cy=\"926.065\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1682.07\" cy=\"886.454\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1682.07\" cy=\"886.454\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1396.23\" cy=\"683.282\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1396.23\" cy=\"683.282\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"910.883\" cy=\"921.46\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"910.883\" cy=\"921.46\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1225.23\" cy=\"966.692\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1225.23\" cy=\"966.692\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1432.88\" cy=\"775.78\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1432.88\" cy=\"775.78\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1493.84\" cy=\"886.461\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1493.84\" cy=\"886.461\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1475.69\" cy=\"641.891\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1475.69\" cy=\"641.891\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"880.741\" cy=\"605.845\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"880.741\" cy=\"605.845\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"950.704\" cy=\"791.349\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"950.704\" cy=\"791.349\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1002.82\" cy=\"821.257\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1002.82\" cy=\"821.257\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1035.45\" cy=\"588.41\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1035.45\" cy=\"588.41\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"761.055\" cy=\"971.573\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"761.055\" cy=\"971.573\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1473.38\" cy=\"755.196\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1473.38\" cy=\"755.196\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1257.02\" cy=\"624.457\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1257.02\" cy=\"624.457\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1326.54\" cy=\"845.921\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1326.54\" cy=\"845.921\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"919.063\" cy=\"798.289\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"919.063\" cy=\"798.289\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1299.99\" cy=\"593.417\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1299.99\" cy=\"593.417\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1507.43\" cy=\"580.331\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1507.43\" cy=\"580.331\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.68\" cy=\"804.577\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1040.68\" cy=\"804.577\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1188.58\" cy=\"692.065\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1188.58\" cy=\"692.065\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1147.06\" cy=\"718.542\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1147.06\" cy=\"718.542\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1114.06\" cy=\"471.321\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1114.06\" cy=\"471.321\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1130.15\" cy=\"831.985\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1130.15\" cy=\"831.985\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1765.78\" cy=\"755.57\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1765.78\" cy=\"755.57\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"603.413\" cy=\"670.448\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"603.413\" cy=\"670.448\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1358.05\" cy=\"850.481\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1358.05\" cy=\"850.481\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1256.13\" cy=\"804.898\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1256.13\" cy=\"804.898\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"248.105\" cy=\"838.745\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"248.105\" cy=\"838.745\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1126.66\" cy=\"409.161\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1126.66\" cy=\"409.161\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1727.37\" cy=\"1013.92\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1727.37\" cy=\"1013.92\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1404.07\" cy=\"606.266\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1404.07\" cy=\"606.266\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.545\" cy=\"638.575\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"957.545\" cy=\"638.575\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1783.46\" cy=\"547.861\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1783.46\" cy=\"547.861\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"736.862\" cy=\"693.248\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"736.862\" cy=\"693.248\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1316.08\" cy=\"903.072\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1316.08\" cy=\"903.072\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1037.95\" cy=\"944.966\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1037.95\" cy=\"944.966\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"964.052\" cy=\"790.1\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"964.052\" cy=\"790.1\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.94\" cy=\"1079.41\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1519.94\" cy=\"1079.41\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"970.512\" cy=\"912.438\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"970.512\" cy=\"912.438\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1526.55\" cy=\"847.957\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1526.55\" cy=\"847.957\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1081.77\" cy=\"846.799\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1081.77\" cy=\"846.799\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1228.82\" cy=\"962.664\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1228.82\" cy=\"962.664\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"863.684\" cy=\"798.325\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"863.684\" cy=\"798.325\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1463.5\" cy=\"750.512\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1463.5\" cy=\"750.512\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1245.78\" cy=\"654.882\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1245.78\" cy=\"654.882\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1075.93\" cy=\"531.721\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1075.93\" cy=\"531.721\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1314.96\" cy=\"786.663\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1314.96\" cy=\"786.663\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1021.11\" cy=\"462.201\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1021.11\" cy=\"462.201\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1969.17\" cy=\"589.27\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1969.17\" cy=\"589.27\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1510\" cy=\"592.613\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1510\" cy=\"592.613\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1262.53\" cy=\"740.79\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1262.53\" cy=\"740.79\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1026.7\" cy=\"374.776\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1026.7\" cy=\"374.776\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"686.741\" cy=\"650.519\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"686.741\" cy=\"650.519\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"912.337\" cy=\"603.261\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"912.337\" cy=\"603.261\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"617.367\" cy=\"773.497\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"617.367\" cy=\"773.497\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1160.2\" cy=\"879.455\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1160.2\" cy=\"879.455\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"640.047\" cy=\"381.85\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"640.047\" cy=\"381.85\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1050.87\" cy=\"398.885\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1050.87\" cy=\"398.885\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"813.952\" cy=\"704.676\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"813.952\" cy=\"704.676\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"782.065\" cy=\"842.348\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"782.065\" cy=\"842.348\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1268.53\" cy=\"414.033\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1268.53\" cy=\"414.033\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1153.06\" cy=\"559.594\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1153.06\" cy=\"559.594\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"836.418\" cy=\"813.376\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"836.418\" cy=\"813.376\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1288.07\" cy=\"776.584\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1288.07\" cy=\"776.584\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1255.71\" cy=\"712.943\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1255.71\" cy=\"712.943\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1057.2\" cy=\"791.261\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1057.2\" cy=\"791.261\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1044.6\" cy=\"825.136\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1044.6\" cy=\"825.136\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1395.02\" cy=\"567.458\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1395.02\" cy=\"567.458\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1551.5\" cy=\"915.807\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1551.5\" cy=\"915.807\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"784.583\" cy=\"824.514\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"784.583\" cy=\"824.514\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"926.029\" cy=\"819.653\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"926.029\" cy=\"819.653\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1455.48\" cy=\"722.488\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1455.48\" cy=\"722.488\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1106.25\" cy=\"907.442\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1106.25\" cy=\"907.442\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1780.21\" cy=\"814.811\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1780.21\" cy=\"814.811\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1246.54\" cy=\"507.9\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1246.54\" cy=\"507.9\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"968.598\" cy=\"1041.49\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"968.598\" cy=\"1041.49\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1124.07\" cy=\"657.647\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1124.07\" cy=\"657.647\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"938.777\" cy=\"824.074\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"938.777\" cy=\"824.074\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1115.73\" cy=\"649.4\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1115.73\" cy=\"649.4\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"889.975\" cy=\"720.521\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"889.975\" cy=\"720.521\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1376.82\" cy=\"622.902\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1376.82\" cy=\"622.902\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1565.99\" cy=\"588.285\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1565.99\" cy=\"588.285\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1600.09\" cy=\"650.039\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1600.09\" cy=\"650.039\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1181.26\" cy=\"595.812\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1181.26\" cy=\"595.812\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1309\" cy=\"720.375\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1309\" cy=\"720.375\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"2097.84\" cy=\"795.592\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"2097.84\" cy=\"795.592\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1508.05\" cy=\"553.223\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1508.05\" cy=\"553.223\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"826.889\" cy=\"640.067\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"826.889\" cy=\"640.067\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"627.15\" cy=\"749.37\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"627.15\" cy=\"749.37\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1281.06\" cy=\"420.716\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1281.06\" cy=\"420.716\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1419.14\" cy=\"654.741\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1419.14\" cy=\"654.741\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"989.683\" cy=\"806.374\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"989.683\" cy=\"806.374\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1024.61\" cy=\"598.855\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1024.61\" cy=\"598.855\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"959.228\" cy=\"891.961\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"959.228\" cy=\"891.961\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"893.55\" cy=\"514.836\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"893.55\" cy=\"514.836\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1319.36\" cy=\"624.54\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1319.36\" cy=\"624.54\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"893.556\" cy=\"465.471\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"893.556\" cy=\"465.471\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"963.744\" cy=\"597.204\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"963.744\" cy=\"597.204\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1563.24\" cy=\"936.306\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1563.24\" cy=\"936.306\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1278.46\" cy=\"625.374\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1278.46\" cy=\"625.374\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"947.238\" cy=\"416.854\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"947.238\" cy=\"416.854\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"533.151\" cy=\"827.01\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"533.151\" cy=\"827.01\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"2259.27\" cy=\"727.139\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"2259.27\" cy=\"727.139\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1055.13\" cy=\"707.649\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1055.13\" cy=\"707.649\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1224.76\" cy=\"420.801\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1224.76\" cy=\"420.801\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1309.92\" cy=\"763.24\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1309.92\" cy=\"763.24\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1171.39\" cy=\"746.338\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1171.39\" cy=\"746.338\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"690.115\" cy=\"538.149\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"690.115\" cy=\"538.149\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1262.23\" cy=\"499.385\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1262.23\" cy=\"499.385\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"934.187\" cy=\"641.754\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"934.187\" cy=\"641.754\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1242.8\" cy=\"529.021\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1242.8\" cy=\"529.021\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1350.69\" cy=\"820.133\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1350.69\" cy=\"820.133\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1170.37\" cy=\"658.665\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1170.37\" cy=\"658.665\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"667.583\" cy=\"919.158\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"667.583\" cy=\"919.158\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"790.877\" cy=\"821.549\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"790.877\" cy=\"821.549\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"920.08\" cy=\"802.822\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"920.08\" cy=\"802.822\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"443.032\" cy=\"804.624\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"443.032\" cy=\"804.624\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1532.43\" cy=\"742.722\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1532.43\" cy=\"742.722\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"948.944\" cy=\"968.178\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"948.944\" cy=\"968.178\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1145.49\" cy=\"725.451\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1145.49\" cy=\"725.451\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1198.4\" cy=\"618.337\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1198.4\" cy=\"618.337\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1281.19\" cy=\"918.622\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1281.19\" cy=\"918.622\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"978.3\" cy=\"504.937\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"978.3\" cy=\"504.937\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1307.42\" cy=\"812.243\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1307.42\" cy=\"812.243\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1308.15\" cy=\"693.635\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1308.15\" cy=\"693.635\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1066.35\" cy=\"792.211\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1066.35\" cy=\"792.211\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1444.22\" cy=\"723.658\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1444.22\" cy=\"723.658\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"798.612\" cy=\"570.58\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"798.612\" cy=\"570.58\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"836.434\" cy=\"645.646\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"836.434\" cy=\"645.646\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"508.226\" cy=\"997.32\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"508.226\" cy=\"997.32\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"978.603\" cy=\"1072.05\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"978.603\" cy=\"1072.05\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1287.09\" cy=\"854.5\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1287.09\" cy=\"854.5\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1167.26\" cy=\"896.356\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1167.26\" cy=\"896.356\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1210.54\" cy=\"988.714\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1210.54\" cy=\"988.714\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"700.6\" cy=\"786.359\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"700.6\" cy=\"786.359\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1694.57\" cy=\"1016.09\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1694.57\" cy=\"1016.09\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"652.143\" cy=\"805.154\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"652.143\" cy=\"805.154\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"909.227\" cy=\"489.774\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"909.227\" cy=\"489.774\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1315.48\" cy=\"683.782\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1315.48\" cy=\"683.782\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"477.638\" cy=\"913.824\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"477.638\" cy=\"913.824\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1225.55\" cy=\"791.068\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1225.55\" cy=\"791.068\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1312.32\" cy=\"750.85\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1312.32\" cy=\"750.85\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1480.1\" cy=\"560.126\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1480.1\" cy=\"560.126\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1278.78\" cy=\"573.061\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1278.78\" cy=\"573.061\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1045.91\" cy=\"1085.47\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1045.91\" cy=\"1085.47\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1642.39\" cy=\"899.809\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1642.39\" cy=\"899.809\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"990.552\" cy=\"649.385\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"990.552\" cy=\"649.385\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1388.99\" cy=\"484.59\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1388.99\" cy=\"484.59\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1173.03\" cy=\"694.443\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1173.03\" cy=\"694.443\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1024.87\" cy=\"599.796\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1024.87\" cy=\"599.796\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"982.591\" cy=\"842.862\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"982.591\" cy=\"842.862\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1056.51\" cy=\"875.638\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1056.51\" cy=\"875.638\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"945.514\" cy=\"864.946\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"945.514\" cy=\"864.946\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1118.69\" cy=\"837.837\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1118.69\" cy=\"837.837\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"756.428\" cy=\"832.425\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"756.428\" cy=\"832.425\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"904.534\" cy=\"382.409\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"904.534\" cy=\"382.409\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"766.582\" cy=\"735.814\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"766.582\" cy=\"735.814\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1300.51\" cy=\"652.026\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1300.51\" cy=\"652.026\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1540.19\" cy=\"698.438\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1540.19\" cy=\"698.438\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1146.95\" cy=\"786.089\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1146.95\" cy=\"786.089\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"513.92\" cy=\"826.054\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"513.92\" cy=\"826.054\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1043.27\" cy=\"668.958\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1043.27\" cy=\"668.958\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1887.89\" cy=\"507.899\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1887.89\" cy=\"507.899\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1225.36\" cy=\"601.919\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1225.36\" cy=\"601.919\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1256.84\" cy=\"814.899\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1256.84\" cy=\"814.899\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1163.98\" cy=\"619.713\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1163.98\" cy=\"619.713\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"882.526\" cy=\"745.773\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"882.526\" cy=\"745.773\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1254.17\" cy=\"411.17\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1254.17\" cy=\"411.17\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"639.147\" cy=\"545.687\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"639.147\" cy=\"545.687\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1452.41\" cy=\"715.563\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1452.41\" cy=\"715.563\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1772.8\" cy=\"668.627\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1772.8\" cy=\"668.627\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1851.36\" cy=\"563.287\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1851.36\" cy=\"563.287\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1257.4\" cy=\"714.252\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1257.4\" cy=\"714.252\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1517.74\" cy=\"596.298\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1517.74\" cy=\"596.298\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1048.36\" cy=\"823.876\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1048.36\" cy=\"823.876\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"885.693\" cy=\"708.28\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"885.693\" cy=\"708.28\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1124.31\" cy=\"670.192\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1124.31\" cy=\"670.192\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1136.36\" cy=\"890.955\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1136.36\" cy=\"890.955\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1167.34\" cy=\"897.807\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1167.34\" cy=\"897.807\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1193.63\" cy=\"576.564\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1193.63\" cy=\"576.564\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1609\" cy=\"809.382\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1609\" cy=\"809.382\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"608.657\" cy=\"743.456\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"608.657\" cy=\"743.456\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"931.733\" cy=\"922.423\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"931.733\" cy=\"922.423\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1264.58\" cy=\"326.377\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1264.58\" cy=\"326.377\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"875.222\" cy=\"725.517\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"875.222\" cy=\"725.517\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"927.889\" cy=\"530.973\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"927.889\" cy=\"530.973\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1157.68\" cy=\"568.427\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1157.68\" cy=\"568.427\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1130.58\" cy=\"324.33\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1130.58\" cy=\"324.33\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1330\" cy=\"692.101\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1330\" cy=\"692.101\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"862.469\" cy=\"620.125\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"862.469\" cy=\"620.125\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"488.666\" cy=\"763.571\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"488.666\" cy=\"763.571\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1187.67\" cy=\"536.927\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1187.67\" cy=\"536.927\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1258.73\" cy=\"637.687\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1258.73\" cy=\"637.687\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"869.372\" cy=\"723.84\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"869.372\" cy=\"723.84\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1054.35\" cy=\"492.831\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1054.35\" cy=\"492.831\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1455.79\" cy=\"593.26\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1455.79\" cy=\"593.26\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"671.447\" cy=\"559.841\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"671.447\" cy=\"559.841\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1292.25\" cy=\"670.156\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1292.25\" cy=\"670.156\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.14\" cy=\"587.495\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1331.14\" cy=\"587.495\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1643.43\" cy=\"939.853\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1643.43\" cy=\"939.853\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1382.31\" cy=\"720.233\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1382.31\" cy=\"720.233\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1336.09\" cy=\"438.374\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1336.09\" cy=\"438.374\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1000.91\" cy=\"160.409\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1000.91\" cy=\"160.409\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1303.45\" cy=\"620.811\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1303.45\" cy=\"620.811\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"890.979\" cy=\"531.348\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"890.979\" cy=\"531.348\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1263.44\" cy=\"774.568\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1263.44\" cy=\"774.568\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"640.109\" cy=\"846.304\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"640.109\" cy=\"846.304\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1304.39\" cy=\"685.42\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1304.39\" cy=\"685.42\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1186.48\" cy=\"507.074\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1186.48\" cy=\"507.074\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1105.02\" cy=\"774.119\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1105.02\" cy=\"774.119\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"901.131\" cy=\"525.056\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"901.131\" cy=\"525.056\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1343.76\" cy=\"673.844\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1343.76\" cy=\"673.844\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1467.13\" cy=\"877.56\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1467.13\" cy=\"877.56\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1113.01\" cy=\"764.209\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1113.01\" cy=\"764.209\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"661.177\" cy=\"705.893\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"661.177\" cy=\"705.893\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1138.72\" cy=\"619.025\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1138.72\" cy=\"619.025\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1202.15\" cy=\"817.707\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1202.15\" cy=\"817.707\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1097.48\" cy=\"540.933\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1097.48\" cy=\"540.933\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1375.06\" cy=\"458.145\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1375.06\" cy=\"458.145\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"782.31\" cy=\"1020.08\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"782.31\" cy=\"1020.08\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"668.02\" cy=\"877.309\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"668.02\" cy=\"877.309\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1115.13\" cy=\"420.344\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1115.13\" cy=\"420.344\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1608.81\" cy=\"272.825\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1608.81\" cy=\"272.825\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"992.697\" cy=\"474.233\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"992.697\" cy=\"474.233\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1472.09\" cy=\"867.76\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1472.09\" cy=\"867.76\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1276.59\" cy=\"904.434\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1276.59\" cy=\"904.434\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1406.06\" cy=\"915.239\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1406.06\" cy=\"915.239\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1443.02\" cy=\"538.483\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1443.02\" cy=\"538.483\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1232.69\" cy=\"778.743\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1232.69\" cy=\"778.743\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"350.354\" cy=\"621.562\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"350.354\" cy=\"621.562\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1612.48\" cy=\"367.708\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1612.48\" cy=\"367.708\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1185.4\" cy=\"828.051\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1185.4\" cy=\"828.051\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1143.31\" cy=\"505.072\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1143.31\" cy=\"505.072\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1134.16\" cy=\"740.816\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1134.16\" cy=\"740.816\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"824.705\" cy=\"969.213\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"824.705\" cy=\"969.213\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"991.37\" cy=\"714.734\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"991.37\" cy=\"714.734\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1509.11\" cy=\"538.478\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1509.11\" cy=\"538.478\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"500.072\" cy=\"720.042\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"500.072\" cy=\"720.042\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1857.22\" cy=\"683.364\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1857.22\" cy=\"683.364\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1142.04\" cy=\"947.289\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1142.04\" cy=\"947.289\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"827.414\" cy=\"462.38\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"827.414\" cy=\"462.38\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"438.786\" cy=\"767.615\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"438.786\" cy=\"767.615\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"945.622\" cy=\"853.578\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"945.622\" cy=\"853.578\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"867.121\" cy=\"626.719\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"867.121\" cy=\"626.719\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"960.35\" cy=\"518.832\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"960.35\" cy=\"518.832\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"962.089\" cy=\"733.432\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"962.089\" cy=\"733.432\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1470.74\" cy=\"531.225\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1470.74\" cy=\"531.225\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1106.9\" cy=\"519.957\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1106.9\" cy=\"519.957\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"862.035\" cy=\"641.707\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"862.035\" cy=\"641.707\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"924.886\" cy=\"606.53\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"924.886\" cy=\"606.53\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1339.29\" cy=\"1037.69\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1339.29\" cy=\"1037.69\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1163.87\" cy=\"815.921\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1163.87\" cy=\"815.921\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1157.58\" cy=\"854.32\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1157.58\" cy=\"854.32\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"979.341\" cy=\"800.824\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"979.341\" cy=\"800.824\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1233.96\" cy=\"620.888\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1233.96\" cy=\"620.888\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1304.77\" cy=\"721.391\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1304.77\" cy=\"721.391\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1214.76\" cy=\"540.878\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1214.76\" cy=\"540.878\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1402\" cy=\"698.869\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1402\" cy=\"698.869\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1706.77\" cy=\"939.333\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1706.77\" cy=\"939.333\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1126.69\" cy=\"590.838\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1126.69\" cy=\"590.838\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1025.58\" cy=\"773.323\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1025.58\" cy=\"773.323\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1396.39\" cy=\"770.011\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1396.39\" cy=\"770.011\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1438.33\" cy=\"686.038\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1438.33\" cy=\"686.038\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1597.61\" cy=\"543.089\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1597.61\" cy=\"543.089\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1196.47\" cy=\"691.071\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1196.47\" cy=\"691.071\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"818.034\" cy=\"837.594\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"818.034\" cy=\"837.594\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"676.704\" cy=\"717.958\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"676.704\" cy=\"717.958\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1541.4\" cy=\"635.867\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1541.4\" cy=\"635.867\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1224.84\" cy=\"883.78\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1224.84\" cy=\"883.78\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"944.808\" cy=\"682.277\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"944.808\" cy=\"682.277\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1251.93\" cy=\"591.005\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1251.93\" cy=\"591.005\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"761.608\" cy=\"1187.28\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"761.608\" cy=\"1187.28\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1411.88\" cy=\"441.071\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1411.88\" cy=\"441.071\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"955.612\" cy=\"890\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"955.612\" cy=\"890\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1015.12\" cy=\"427.308\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1015.12\" cy=\"427.308\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1090.9\" cy=\"719.194\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1090.9\" cy=\"719.194\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1297.78\" cy=\"504.275\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1297.78\" cy=\"504.275\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1187.57\" cy=\"794.509\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1187.57\" cy=\"794.509\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"933.145\" cy=\"892.899\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"933.145\" cy=\"892.899\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1174.47\" cy=\"633.057\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1174.47\" cy=\"633.057\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1092.98\" cy=\"636.916\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1092.98\" cy=\"636.916\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"982.083\" cy=\"695.969\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"982.083\" cy=\"695.969\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"727.933\" cy=\"674.017\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"727.933\" cy=\"674.017\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1769.33\" cy=\"865.474\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1769.33\" cy=\"865.474\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.723\" cy=\"814.934\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"999.723\" cy=\"814.934\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1235.16\" cy=\"434.282\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1235.16\" cy=\"434.282\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1413.01\" cy=\"604.437\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1413.01\" cy=\"604.437\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1035.34\" cy=\"556.022\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1035.34\" cy=\"556.022\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"871.47\" cy=\"683.455\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"871.47\" cy=\"683.455\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1678.39\" cy=\"718.491\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1678.39\" cy=\"718.491\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1719.56\" cy=\"585.456\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1719.56\" cy=\"585.456\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1575.73\" cy=\"585.108\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1575.73\" cy=\"585.108\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"847.715\" cy=\"827.597\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"847.715\" cy=\"827.597\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"932.733\" cy=\"840.864\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"932.733\" cy=\"840.864\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1389.22\" cy=\"769.147\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1389.22\" cy=\"769.147\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1090.79\" cy=\"656.839\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1090.79\" cy=\"656.839\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1089.66\" cy=\"542.753\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1089.66\" cy=\"542.753\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1246.33\" cy=\"675.324\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1246.33\" cy=\"675.324\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1674.35\" cy=\"886.425\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1674.35\" cy=\"886.425\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"943.555\" cy=\"779.163\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"943.555\" cy=\"779.163\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"925.503\" cy=\"624.764\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"925.503\" cy=\"624.764\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1275.52\" cy=\"622.882\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1275.52\" cy=\"622.882\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1361.22\" cy=\"617.725\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1361.22\" cy=\"617.725\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1077.8\" cy=\"776.375\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1077.8\" cy=\"776.375\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1172.23\" cy=\"713.04\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1172.23\" cy=\"713.04\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"2043.28\" cy=\"701.807\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"2043.28\" cy=\"701.807\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1008.33\" cy=\"1294.11\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1008.33\" cy=\"1294.11\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"804.062\" cy=\"712.45\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"804.062\" cy=\"712.45\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"881.767\" cy=\"969.849\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"881.767\" cy=\"969.849\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"488.063\" cy=\"642.955\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"488.063\" cy=\"642.955\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"920.467\" cy=\"677.727\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"920.467\" cy=\"677.727\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1360.58\" cy=\"345.145\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1360.58\" cy=\"345.145\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"827.789\" cy=\"491.456\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"827.789\" cy=\"491.456\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1760.12\" cy=\"666.271\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1760.12\" cy=\"666.271\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"839.273\" cy=\"721.749\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"839.273\" cy=\"721.749\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1101.08\" cy=\"626.811\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1101.08\" cy=\"626.811\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1650.96\" cy=\"605.782\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1650.96\" cy=\"605.782\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"686.282\" cy=\"857.444\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"686.282\" cy=\"857.444\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1347.59\" cy=\"970.981\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1347.59\" cy=\"970.981\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"744.209\" cy=\"557.638\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"744.209\" cy=\"557.638\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1607.19\" cy=\"819.927\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1607.19\" cy=\"819.927\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1486.77\" cy=\"768.889\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1486.77\" cy=\"768.889\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1149.15\" cy=\"454.605\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1149.15\" cy=\"454.605\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"716.382\" cy=\"836.774\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"716.382\" cy=\"836.774\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1445.01\" cy=\"719.015\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1445.01\" cy=\"719.015\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"713.602\" cy=\"751.72\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"713.602\" cy=\"751.72\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1511.02\" cy=\"819.504\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1511.02\" cy=\"819.504\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1704.41\" cy=\"784.305\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1704.41\" cy=\"784.305\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1065.83\" cy=\"579.269\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1065.83\" cy=\"579.269\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1185.03\" cy=\"818.082\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1185.03\" cy=\"818.082\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1312.61\" cy=\"584.53\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1312.61\" cy=\"584.53\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"993.792\" cy=\"632.833\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"993.792\" cy=\"632.833\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1491.51\" cy=\"483.844\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1491.51\" cy=\"483.844\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1065.78\" cy=\"803.616\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1065.78\" cy=\"803.616\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1292.02\" cy=\"807.031\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1292.02\" cy=\"807.031\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1322.91\" cy=\"730.818\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1322.91\" cy=\"730.818\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1346.27\" cy=\"634.75\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1346.27\" cy=\"634.75\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"663.923\" cy=\"460.379\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"663.923\" cy=\"460.379\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1312.72\" cy=\"696.21\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1312.72\" cy=\"696.21\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1024.21\" cy=\"949.198\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1024.21\" cy=\"949.198\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1193.02\" cy=\"556.757\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1193.02\" cy=\"556.757\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1005.41\" cy=\"782.231\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1005.41\" cy=\"782.231\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1486.87\" cy=\"477.478\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1486.87\" cy=\"477.478\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1545.46\" cy=\"774.802\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1545.46\" cy=\"774.802\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1150.33\" cy=\"442.459\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1150.33\" cy=\"442.459\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"2291.13\" cy=\"709.529\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"2291.13\" cy=\"709.529\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1074.16\" cy=\"619.881\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1074.16\" cy=\"619.881\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1239.72\" cy=\"624.731\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1239.72\" cy=\"624.731\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1225.84\" cy=\"706.68\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1225.84\" cy=\"706.68\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1244.54\" cy=\"860.457\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1244.54\" cy=\"860.457\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"894.604\" cy=\"303.584\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"894.604\" cy=\"303.584\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.14\" cy=\"483.487\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1456.14\" cy=\"483.487\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"528.737\" cy=\"666.823\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"528.737\" cy=\"666.823\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1890.75\" cy=\"843.581\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1890.75\" cy=\"843.581\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1110.58\" cy=\"598.39\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1110.58\" cy=\"598.39\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1173.99\" cy=\"693.115\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1173.99\" cy=\"693.115\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1152.63\" cy=\"689.254\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1152.63\" cy=\"689.254\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1197.97\" cy=\"762.455\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1197.97\" cy=\"762.455\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"959.785\" cy=\"622.055\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"959.785\" cy=\"622.055\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"955.523\" cy=\"1143.23\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"955.523\" cy=\"1143.23\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"963.87\" cy=\"572.151\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"963.87\" cy=\"572.151\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"834.149\" cy=\"862.634\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"834.149\" cy=\"862.634\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1072.14\" cy=\"556.534\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1072.14\" cy=\"556.534\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"984.016\" cy=\"404.154\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"984.016\" cy=\"404.154\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1250.28\" cy=\"777.842\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1250.28\" cy=\"777.842\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1588.04\" cy=\"830.527\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1588.04\" cy=\"830.527\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"967.658\" cy=\"720.325\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"967.658\" cy=\"720.325\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1291.58\" cy=\"878.607\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1291.58\" cy=\"878.607\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"635.029\" cy=\"607.687\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"635.029\" cy=\"607.687\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"552.506\" cy=\"578.823\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"552.506\" cy=\"578.823\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1085.95\" cy=\"855.633\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1085.95\" cy=\"855.633\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1060.84\" cy=\"855.85\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1060.84\" cy=\"855.85\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1246.5\" cy=\"928.373\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1246.5\" cy=\"928.373\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.97\" cy=\"792.356\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"791.97\" cy=\"792.356\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1096\" cy=\"585.846\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1096\" cy=\"585.846\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1443.51\" cy=\"662.66\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1443.51\" cy=\"662.66\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"913.708\" cy=\"656.696\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"913.708\" cy=\"656.696\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1052.83\" cy=\"750.544\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1052.83\" cy=\"750.544\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1136.85\" cy=\"738.764\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1136.85\" cy=\"738.764\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1553.84\" cy=\"689.605\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1553.84\" cy=\"689.605\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1214.91\" cy=\"612.506\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1214.91\" cy=\"612.506\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"885.568\" cy=\"794.4\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"885.568\" cy=\"794.4\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1381.62\" cy=\"678.413\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1381.62\" cy=\"678.413\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1021.53\" cy=\"740.593\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1021.53\" cy=\"740.593\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"920.434\" cy=\"877.596\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"920.434\" cy=\"877.596\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"842.348\" cy=\"467.008\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"842.348\" cy=\"467.008\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1145.96\" cy=\"666.364\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1145.96\" cy=\"666.364\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"958.391\" cy=\"886.369\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"958.391\" cy=\"886.369\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1231.79\" cy=\"718.274\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1231.79\" cy=\"718.274\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"550.849\" cy=\"655.089\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"550.849\" cy=\"655.089\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1348.93\" cy=\"1068.24\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1348.93\" cy=\"1068.24\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1158.36\" cy=\"738.361\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1158.36\" cy=\"738.361\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"567.565\" cy=\"558.611\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"567.565\" cy=\"558.611\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1255.5\" cy=\"885.316\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1255.5\" cy=\"885.316\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"864.248\" cy=\"1178.16\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"864.248\" cy=\"1178.16\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"638.627\" cy=\"964.542\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"638.627\" cy=\"964.542\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1001.17\" cy=\"562.166\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1001.17\" cy=\"562.166\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1195.48\" cy=\"656.314\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1195.48\" cy=\"656.314\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1461.88\" cy=\"752.491\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1461.88\" cy=\"752.491\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1042.37\" cy=\"974.15\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1042.37\" cy=\"974.15\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1182.43\" cy=\"447.433\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1182.43\" cy=\"447.433\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"714.068\" cy=\"883.98\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"714.068\" cy=\"883.98\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1361.91\" cy=\"1097.77\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1361.91\" cy=\"1097.77\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1343.68\" cy=\"321.511\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1343.68\" cy=\"321.511\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1063.97\" cy=\"675.147\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1063.97\" cy=\"675.147\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1521.45\" cy=\"660.25\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1521.45\" cy=\"660.25\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1193.81\" cy=\"789.075\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1193.81\" cy=\"789.075\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1506.89\" cy=\"668.266\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1506.89\" cy=\"668.266\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1117.73\" cy=\"964.301\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1117.73\" cy=\"964.301\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"629.488\" cy=\"694.066\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"629.488\" cy=\"694.066\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1266.69\" cy=\"663.101\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1266.69\" cy=\"663.101\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"763.715\" cy=\"743.876\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"763.715\" cy=\"743.876\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"713.145\" cy=\"497.108\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"713.145\" cy=\"497.108\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1187.31\" cy=\"656.613\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1187.31\" cy=\"656.613\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1590\" cy=\"894.746\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1590\" cy=\"894.746\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1322.11\" cy=\"869.905\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1322.11\" cy=\"869.905\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1291.19\" cy=\"867.655\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1291.19\" cy=\"867.655\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1146.32\" cy=\"592.137\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1146.32\" cy=\"592.137\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.27\" cy=\"692.772\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1352.27\" cy=\"692.772\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"920.997\" cy=\"707.456\" r=\"4\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"920.997\" cy=\"707.456\" r=\"1\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1282.76\" cy=\"598.613\" r=\"18\"/>\n",
"<circle clip-path=\"url(#clip6902)\" style=\"fill:#ff0000; stroke:none; fill-opacity:1\" cx=\"1282.76\" cy=\"598.613\" r=\"14\"/>\n",
"<path clip-path=\"url(#clip6900)\" d=\"\n",
"M1660.93 312.204 L2280.76 312.204 L2280.76 130.764 L1660.93 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1660.93,312.204 2280.76,312.204 2280.76,130.764 1660.93,130.764 1660.93,312.204 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip6900)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1768.93\" cy=\"191.244\" r=\"25\"/>\n",
"<circle clip-path=\"url(#clip6900)\" style=\"fill:#0000ff; stroke:none; fill-opacity:1\" cx=\"1768.93\" cy=\"191.244\" r=\"21\"/>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1852.93, 208.744)\" x=\"1852.93\" y=\"208.744\">posterior samples</text>\n",
"</g>\n",
"<circle clip-path=\"url(#clip6900)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1768.93\" cy=\"251.724\" r=\"25\"/>\n",
"<circle clip-path=\"url(#clip6900)\" style=\"fill:#ff0000; stroke:none; fill-opacity:1\" cx=\"1768.93\" cy=\"251.724\" r=\"21\"/>\n",
"<g clip-path=\"url(#clip6900)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1852.93, 269.224)\" x=\"1852.93\" y=\"269.224\">truth</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Π = [conjugate_posterior(X, 0.1*I, P) for i in 1:1000]\n",
"scatter(first.(Π), last.(Π), color=\"blue\", markersize = 0.3, label=\"posterior samples\")\n",
"scatter!([Ptrue.α], [Ptrue.β], color=\"red\", label=\"truth\")\n",
"ylabel!(LaTeXString(\"\\\\beta\"))\n",
"xlabel!(LaTeXString(\"\\\\alpha\"))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Estimating $\\sigma_1$, $\\sigma_2$\n",
"\n",
"It remains to the other two parameters. Let's be pragmatic and just derive estimation equations assuming the drift is known.\n",
"\n",
"\n",
"From equation $(\\star)$ and \n",
"\n",
"$$\n",
"\\sigma(t, u) = \\begin{bmatrix}\n",
"\\sigma_1 u_1 u_2 & 0\\\\\n",
"-\\sigma_1u_1u_2& -\\sigma_2 u_2\\\\\n",
"0& \\sigma_2 u_2\n",
"\\end{bmatrix}\n",
"$$\n",
"\n",
"we find\n",
"\n",
"$$\n",
"\\frac{M^1_t}{X_t^1 X_t^2 \\sqrt{\\Delta t}} \\sim N(0, \\sigma_1^2)\n",
"\\quad\\frac{M^3_t}{ X_t^2 \\sqrt{\\Delta t}} \\sim N(0, \\sigma_2^2)\n",
"$$\n",
"\n",
"where $X_t^1$, $X_t^2$, etc. denote the first, second, etc. component of $X$ and\n",
"\n",
"$$\n",
" M_t = X_{t+\\Delta} - X_t - b(t, X_t) \\Delta t\n",
"$$"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Ptrue.σ1 = 0.07\n",
"σ1est = 0.0691475811777478\n"
]
}
],
"source": [
"second(x) = getindex(x, 2)\n",
"M = [X.yy[i]-X.yy[i-1]-b(X.tt[i], X.yy[i], P)*(X.tt[i]-X.tt[i-1]) for i in 2:length(X)]\n",
"\n",
"σ1est = std(first.(M)./sqrt.(diff(X.tt))./first.(X.yy[1:end-1])./second.(X.yy[1:end-1]))\n",
"@show Ptrue.σ1\n",
"@show σ1est;\n"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Ptrue.σ2 = 0.4\n",
"σ2est = 0.40025568517832083\n"
]
}
],
"source": [
"σ2est = std(last.(M)./sqrt.(diff(X.tt))./second.(X.yy[1:end-1]))\n",
"@show Ptrue.σ2\n",
"@show σ2est;\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# MCMC for the parameters\n",
"\n",
"Note that to estimate $\\sigma_1$, $\\sigma_2$ one needs to know $\\alpha$ and $\\beta$. We can estimate all parameters with the help of a Markov chain Monte Carlo procedure, iterating the two estimation steps.\n",
"\n",
"One of the nice features of Julia is that direct implementations of MCMC algorithm are performant and quite easy to deal with.\n",
"\n",
"Because we can sample the drift parameters from the posterior, but only derived estimation equations for $\\sigma_1$, $\\sigma_2$ this is a sampler with one Gibbs step and one EM-type step. That means for example that Bayesian uncertainty quantification is lost. Especially the spread of the MCMC sample distribution of the parameters $\\sigma_1$ and $\\sigma_2$ parameters below is much smaller than the error, see the pictures below. This is a classical problem with SDE models."
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [],
"source": [
"iterations = 1000\n",
"P = CIR(2.1, 5.0, 0.17, 0.1)\n",
"params = zeros(4, iterations)\n",
"M = zeros(SVector{3,Float64}, length(tt)-1,)\n",
"for iter in 1:iterations\n",
" \n",
" # step 1: sample conjugate parameter α and β conditional on σ1, σ2\n",
" \n",
" α, β = conjugate_posterior(X, 0.1*I, P)\n",
" \n",
" P = CIR(α, β, P.σ1, P.σ2)\n",
" \n",
" # step 2: estimate σ1, σ2\n",
"\n",
" for i in 2:length(X)\n",
" M[i-1] = (X.yy[i]-X.yy[i-1]-b(X.tt[i], X.yy[i], P)*(X.tt[i]-X.tt[i-1])) \n",
" end\n",
"\n",
" σ1 = std(first.(M)[1:end]./sqrt.(diff(tt))./first.(X.yy[1:end-1])./second.(X.yy[1:end-1]))\n",
" σ2 = std(last.(M)./sqrt.(diff(X.tt))./second.(X.yy[1:end-1]))\n",
" \n",
" P = CIR(P.α, P.β, σ1, σ2)\n",
" \n",
" # record sample\n",
" \n",
" params[:, iter] = [α, β, σ1, σ2]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip7300\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip7300)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7301\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip7300)\" d=\"\n",
"M153.898 1487.47 L1152.76 1487.47 L1152.76 47.2441 L153.898 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7302\">\n",
" <rect x=\"153\" y=\"47\" width=\"1000\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 181.224,1487.47 181.224,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 417.04,1487.47 417.04,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 652.855,1487.47 652.855,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 888.671,1487.47 888.671,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1124.49,1487.47 1124.49,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,1290.7 1152.76,1290.7 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,1088.13 1152.76,1088.13 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,885.569 1152.76,885.569 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,683.005 1152.76,683.005 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,480.442 1152.76,480.442 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,277.878 1152.76,277.878 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 153.898,75.3143 1152.76,75.3143 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,1487.47 1152.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,1487.47 153.898,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 181.224,1487.47 181.224,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 417.04,1487.47 417.04,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.855,1487.47 652.855,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 888.671,1487.47 888.671,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1124.49,1487.47 1124.49,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,1290.7 165.884,1290.7 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,1088.13 165.884,1088.13 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,885.569 165.884,885.569 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,683.005 165.884,683.005 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,480.442 165.884,480.442 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,277.878 165.884,277.878 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 153.898,75.3143 165.884,75.3143 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 181.224, 1541.47)\" x=\"181.224\" y=\"1541.47\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 417.04, 1541.47)\" x=\"417.04\" y=\"1541.47\">250</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 652.855, 1541.47)\" x=\"652.855\" y=\"1541.47\">500</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 888.671, 1541.47)\" x=\"888.671\" y=\"1541.47\">750</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1124.49, 1541.47)\" x=\"1124.49\" y=\"1541.47\">1000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 1308.2)\" x=\"129.898\" y=\"1308.2\">0.6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 1105.63)\" x=\"129.898\" y=\"1105.63\">0.7</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 903.069)\" x=\"129.898\" y=\"903.069\">0.8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 700.505)\" x=\"129.898\" y=\"700.505\">0.9</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 497.942)\" x=\"129.898\" y=\"497.942\">1.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 295.378)\" x=\"129.898\" y=\"295.378\">1.1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 129.898, 92.8143)\" x=\"129.898\" y=\"92.8143\">1.2</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 182.168,88.0053 183.111,1100.69 184.054,796.067 184.997,962.355 185.941,1118.04 186.884,958.318 187.827,1143.98 188.77,809.695 189.714,956.84 190.657,967.547 \n",
" 191.6,925.337 192.543,1162.48 193.487,865.438 194.43,1080.83 195.373,854.934 196.316,1189.39 197.26,762.369 198.203,961.824 199.146,859.649 200.09,815.502 \n",
" 201.033,598.975 201.976,1181.77 202.919,909.841 203.863,895.07 204.806,958.036 205.749,805.425 206.692,1164.07 207.636,723.498 208.579,1100.58 209.522,753.609 \n",
" 210.465,801.809 211.409,968.162 212.352,1182.45 213.295,920.013 214.238,925.537 215.182,943.437 216.125,1146.12 217.068,1066.91 218.011,889.152 218.955,949.633 \n",
" 219.898,806.322 220.841,938.401 221.785,786.12 222.728,1148.78 223.671,1027.71 224.614,822.753 225.558,1123.05 226.501,956.639 227.444,727.208 228.387,1049.63 \n",
" 229.331,873.52 230.274,1029.93 231.217,850.537 232.16,796.223 233.104,901.91 234.047,976.422 234.99,1036 235.933,750.301 236.877,1040.45 237.82,789.355 \n",
" 238.763,1065.81 239.707,1221.75 240.65,654.485 241.593,1261.38 242.536,1071.59 243.48,737.014 244.423,1149.93 245.366,793.231 246.309,907.635 247.253,940.584 \n",
" 248.196,1043.38 249.139,870.093 250.082,909.611 251.026,975.407 251.969,1053.88 252.912,1026.82 253.855,897.29 254.799,978.307 255.742,1032.14 256.685,1067.96 \n",
" 257.629,1056.61 258.572,1037.47 259.515,959.966 260.458,777.938 261.402,924.483 262.345,1248.17 263.288,730.04 264.231,833.165 265.175,1138.55 266.118,942.727 \n",
" 267.061,1082.47 268.004,831.374 268.948,1052.03 269.891,795.576 270.834,1246.19 271.777,975.155 272.721,666.273 273.664,1082.26 274.607,945.47 275.55,816.447 \n",
" 276.494,1037.61 277.437,773.958 278.38,849.41 279.324,884.471 280.267,850.547 281.21,1092.85 282.153,1108.43 283.097,1062.01 284.04,773.908 284.983,733.624 \n",
" 285.926,988.378 286.87,1034.39 287.813,835.934 288.756,1020.68 289.699,952.018 290.643,916.472 291.586,712.796 292.529,1185.83 293.472,949.944 294.416,909.954 \n",
" 295.359,982.745 296.302,1084.68 297.246,977.312 298.189,905.242 299.132,915.912 300.075,1064.88 301.019,1164.77 301.962,924.374 302.905,914.06 303.848,890.273 \n",
" 304.792,1267.26 305.735,833.299 306.678,867.283 307.621,1005.06 308.565,1021.33 309.508,1070.42 310.451,1224.49 311.394,1216.26 312.338,809.574 313.281,1126.39 \n",
" 314.224,813.035 315.167,762.51 316.111,690.39 317.054,1043.26 317.997,1207.59 318.941,929.923 319.884,840.879 320.827,957.024 321.77,939.555 322.714,932.581 \n",
" 323.657,1034.97 324.6,962.956 325.543,858.329 326.487,1066.88 327.43,884.579 328.373,1073.59 329.316,1200.36 330.26,1128.8 331.203,935.358 332.146,885.418 \n",
" 333.089,736.271 334.033,1040.11 334.976,945.986 335.919,911.097 336.863,901.345 337.806,1008.38 338.749,1089.65 339.692,612.805 340.636,860.315 341.579,811.7 \n",
" 342.522,1035.22 343.465,687.304 344.409,724.222 345.352,992.472 346.295,1070.68 347.238,1090.95 348.182,955.18 349.125,776.645 350.068,989.993 351.011,956.557 \n",
" 351.955,932.603 352.898,1005.52 353.841,992.262 354.784,855.032 355.728,995.817 356.671,1163.75 357.614,1094.12 358.558,1012.64 359.501,1064.7 360.444,1093.83 \n",
" 361.387,1216.07 362.331,896.299 363.274,890.257 364.217,997.509 365.16,1186.54 366.104,982.542 367.047,973.93 367.99,982.611 368.933,722.389 369.877,980.281 \n",
" 370.82,1102.57 371.763,907.277 372.706,558.412 373.65,1109.94 374.593,935.815 375.536,972.407 376.48,907.384 377.423,1053.9 378.366,772.881 379.309,918.474 \n",
" 380.253,989.271 381.196,884.218 382.139,925.476 383.082,847.642 384.026,986.743 384.969,963.066 385.912,1054.15 386.855,974.369 387.799,972.151 388.742,701.365 \n",
" 389.685,797.282 390.628,972.895 391.572,937.089 392.515,746.928 393.458,708.203 394.402,1030.69 395.345,1226.35 396.288,1056.82 397.231,847.737 398.175,1329.7 \n",
" 399.118,1076.26 400.061,854.822 401.004,696.902 401.948,1103.05 402.891,983.06 403.834,1011.76 404.777,933.61 405.721,1112.65 406.664,1073.4 407.607,690.419 \n",
" 408.55,932.004 409.494,925.86 410.437,879.291 411.38,618.072 412.323,1018.3 413.267,820.1 414.21,858.072 415.153,887.934 416.097,1024.86 417.04,883.27 \n",
" 417.983,970.334 418.926,745.578 419.87,641.487 420.813,855.669 421.756,1010.71 422.699,901.894 423.643,870.461 424.586,876.52 425.529,1096.43 426.472,820.148 \n",
" 427.416,1003.05 428.359,988.294 429.302,918.867 430.245,829.179 431.189,1076.06 432.132,808.948 433.075,1077.76 434.019,694.102 434.962,1033.51 435.905,805.287 \n",
" 436.848,939.544 437.792,1102.46 438.735,786.96 439.678,888.199 440.621,1142.33 441.565,734.782 442.508,748.288 443.451,1164.44 444.394,818.363 445.338,912.712 \n",
" 446.281,692.086 447.224,848.69 448.167,777.343 449.111,1083.42 450.054,835.972 450.997,719.264 451.94,1431.67 452.884,986.194 453.827,765.878 454.77,1021.77 \n",
" 455.714,909.32 456.657,873.715 457.6,1277.08 458.543,789.694 459.487,991.169 460.43,944.718 461.373,1032.7 462.316,1035.98 463.26,729.501 464.203,1137.73 \n",
" 465.146,1049.19 466.089,1086.12 467.033,862.007 467.976,865.026 468.919,1030.85 469.862,1048.53 470.806,945.5 471.749,969.967 472.692,1247.51 473.636,1148.77 \n",
" 474.579,873.13 475.522,1017.93 476.465,1045.51 477.409,1040.29 478.352,1022.44 479.295,928.615 480.238,848.988 481.182,665.43 482.125,1039.25 483.068,964.243 \n",
" 484.011,1131.65 484.955,1446.71 485.898,917.726 486.841,827.54 487.784,798.196 488.728,1005.96 489.671,894.004 490.614,648.359 491.557,1065.86 492.501,944.842 \n",
" 493.444,976.836 494.387,869.212 495.331,1041.12 496.274,1108.13 497.217,858.459 498.16,1130.72 499.104,848.123 500.047,925.017 500.99,788.015 501.933,968.108 \n",
" 502.877,1028.73 503.82,1101.94 504.763,901.377 505.706,810.471 506.65,899.596 507.593,1097.67 508.536,829.705 509.479,747.821 510.423,895.713 511.366,952.567 \n",
" 512.309,778.205 513.253,1104.46 514.196,651.356 515.139,1035.48 516.082,800.558 517.026,764.43 517.969,1034.09 518.912,1068.92 519.855,918.984 520.799,738.272 \n",
" 521.742,1166.97 522.685,804.117 523.628,1070.08 524.572,1057.83 525.515,1068.22 526.458,761.662 527.401,902.362 528.345,1330.26 529.288,801.57 530.231,1030.31 \n",
" 531.175,866.489 532.118,1008.62 533.061,1014.46 534.004,972.565 534.948,945.808 535.891,849.421 536.834,1007.06 537.777,914.122 538.721,892.392 539.664,752.513 \n",
" 540.607,853.141 541.55,998.012 542.494,887.661 543.437,885.745 544.38,893.907 545.323,1179.17 546.267,973.399 547.21,845.661 548.153,960.515 549.096,944.475 \n",
" 550.04,908.773 550.983,910.159 551.926,1136.61 552.87,909.077 553.813,826.429 554.756,949.933 555.699,1048.62 556.643,725.39 557.586,1148.28 558.529,1128.81 \n",
" 559.472,1063.08 560.416,778.758 561.359,902.699 562.302,1006.75 563.245,1167.03 564.189,924.578 565.132,610.436 566.075,906.383 567.018,957.475 567.962,1245.07 \n",
" 568.905,925.567 569.848,1105.82 570.792,895.457 571.735,1102.25 572.678,624.203 573.621,982.883 574.565,1013.36 575.508,758.894 576.451,987.234 577.394,956.013 \n",
" 578.338,850.454 579.281,835.667 580.224,835.762 581.167,669.31 582.111,778.32 583.054,907.024 583.997,975.665 584.94,966.267 585.884,1042.26 586.827,1033.71 \n",
" 587.77,1102.35 588.713,920.287 589.657,864.024 590.6,738.365 591.543,856.783 592.487,794.196 593.43,926.902 594.373,929.208 595.316,938.283 596.26,884.026 \n",
" 597.203,710.758 598.146,1062.02 599.089,877.659 600.033,717.175 600.976,893.956 601.919,925.736 602.862,802.418 603.806,903.754 604.749,944.281 605.692,854.927 \n",
" 606.635,904.374 607.579,935.418 608.522,997.512 609.465,797.437 610.409,975.522 611.352,936.216 612.295,1261.43 613.238,813.362 614.182,799.733 615.125,779.647 \n",
" 616.068,781.742 617.011,648.713 617.955,932.847 618.898,847.524 619.841,1025.89 620.784,1001.13 621.728,1057.03 622.671,811.201 623.614,962.444 624.557,953.436 \n",
" 625.501,921.673 626.444,694.869 627.387,684.688 628.33,988.465 629.274,852.378 630.217,930.795 631.16,1045.77 632.104,1106.55 633.047,1101.79 633.99,761.967 \n",
" 634.933,1030.98 635.877,966.731 636.82,1104.68 637.763,927.156 638.706,825.828 639.65,1049.37 640.593,770.906 641.536,1001.2 642.479,1045.28 643.423,965.2 \n",
" 644.366,1028.5 645.309,1051 646.252,820.789 647.196,841.539 648.139,1024.91 649.082,914.25 650.026,818.046 650.969,713.483 651.912,642.096 652.855,835.603 \n",
" 653.799,1008.59 654.742,938.617 655.685,609.819 656.628,976.802 657.572,1037.06 658.515,931.107 659.458,887.779 660.401,735.511 661.345,712.894 662.288,741.052 \n",
" 663.231,997.025 664.174,1058.14 665.118,1060.03 666.061,954.541 667.004,962.016 667.948,1008.82 668.891,806.458 669.834,900.174 670.777,969.979 671.721,890.592 \n",
" 672.664,1041.21 673.607,999.144 674.55,928.375 675.494,1001.71 676.437,1137.52 677.38,960.487 678.323,826.104 679.267,1000.21 680.21,860.529 681.153,799.079 \n",
" 682.096,784.149 683.04,743.28 683.983,815.863 684.926,1019.22 685.869,919.11 686.813,817.392 687.756,858.431 688.699,723.731 689.643,973.438 690.586,1085.97 \n",
" 691.529,1058.47 692.472,1063.37 693.416,723.292 694.359,1030.91 695.302,850.811 696.245,1103.78 697.189,759.711 698.132,568.603 699.075,1113.9 700.018,844.869 \n",
" 700.962,610.126 701.905,763.394 702.848,884.388 703.791,1333.65 704.735,1133.22 705.678,891.374 706.621,1113.86 707.565,1028.62 708.508,1186.66 709.451,923.022 \n",
" 710.394,1072.13 711.338,1019.53 712.281,949.349 713.224,982.918 714.167,759.868 715.111,915.006 716.054,996.487 716.997,890.442 717.94,1166.15 718.884,967.317 \n",
" 719.827,859.17 720.77,1286.96 721.713,1423.14 722.657,1179.15 723.6,953.688 724.543,644.341 725.486,986.549 726.43,793.064 727.373,848.215 728.316,1078.34 \n",
" 729.26,837.751 730.203,788.881 731.146,844.556 732.089,711.118 733.033,1081.71 733.976,865.265 734.919,1012.79 735.862,1241.47 736.806,879.657 737.749,808.572 \n",
" 738.692,987.718 739.635,806.635 740.579,1012.34 741.522,765.092 742.465,1136.23 743.408,985.409 744.352,855.634 745.295,905.645 746.238,1018.38 747.182,928.703 \n",
" 748.125,808.457 749.068,1074.88 750.011,1029.87 750.955,836.823 751.898,1023.1 752.841,1123.71 753.784,910.045 754.728,772.11 755.671,954.257 756.614,897.261 \n",
" 757.557,900.371 758.501,1027.86 759.444,717.159 760.387,700.204 761.33,756.81 762.274,927.592 763.217,961.083 764.16,954.118 765.103,1235.87 766.047,855.45 \n",
" 766.99,677.983 767.933,859.265 768.877,826.865 769.82,872.513 770.763,841.932 771.706,935.492 772.65,822.446 773.593,972.19 774.536,987.784 775.479,1066.64 \n",
" 776.423,791.407 777.366,1109.63 778.309,1001.41 779.252,1048.58 780.196,758.936 781.139,743.394 782.082,1118.61 783.025,760.969 783.969,1034.93 784.912,1038.97 \n",
" 785.855,944.64 786.799,1081.41 787.742,1062.19 788.685,876.92 789.628,1186.76 790.572,684.971 791.515,1021.33 792.458,945.439 793.401,981.962 794.345,1038.1 \n",
" 795.288,766.701 796.231,889.138 797.174,1067.11 798.118,892.327 799.061,864.043 800.004,960.122 800.947,1219.98 801.891,1165.57 802.834,1271.28 803.777,820.078 \n",
" 804.721,688.281 805.664,1049.68 806.607,934.335 807.55,939.259 808.494,1022.85 809.437,1122.37 810.38,914.469 811.323,1093.76 812.267,825.789 813.21,991.361 \n",
" 814.153,1016.96 815.096,873.96 816.04,1085.98 816.983,1009.9 817.926,924.917 818.869,930.992 819.813,933.675 820.756,777.134 821.699,740.904 822.642,852.876 \n",
" 823.586,1108.62 824.529,865.795 825.472,1065.68 826.416,819.102 827.359,880.44 828.302,844.848 829.245,920.52 830.189,994.7 831.132,958.124 832.075,713.906 \n",
" 833.018,1201.29 833.962,918.491 834.905,1085.87 835.848,995.839 836.791,981.602 837.735,848.167 838.678,774.999 839.621,872.986 840.564,1283.72 841.508,1119.04 \n",
" 842.451,959.931 843.394,858.31 844.338,756.769 845.281,992.652 846.224,870.595 847.167,728.791 848.111,1335.54 849.054,910.081 849.997,891.108 850.94,1101.22 \n",
" 851.884,789.887 852.827,761.541 853.77,1129.54 854.713,1042.63 855.657,608.303 856.6,771.201 857.543,1075.36 858.486,1146.2 859.43,999.046 860.373,651.112 \n",
" 861.316,655.458 862.259,1073.24 863.203,855.549 864.146,749.9 865.089,1074.66 866.033,805.62 866.976,1071.33 867.919,770.493 868.862,998.06 869.806,725.756 \n",
" 870.749,1071.64 871.692,951.067 872.635,1315.23 873.579,932.101 874.522,1036.06 875.465,843.399 876.408,700.22 877.352,864.235 878.295,956.665 879.238,774.127 \n",
" 880.181,915.339 881.125,882.743 882.068,867.178 883.011,909.079 883.955,880.991 884.898,919.315 885.841,942.426 886.784,708.029 887.728,848.078 888.671,956.237 \n",
" 889.614,986.518 890.557,887.227 891.501,829.188 892.444,871.492 893.387,960.779 894.33,933.498 895.274,930.423 896.217,1146.14 897.16,764.591 898.103,976.664 \n",
" 899.047,1259.82 899.99,1160.01 900.933,1066.22 901.876,852.12 902.82,1015.93 903.763,954.444 904.706,1165.3 905.65,1023.35 906.593,761.087 907.536,981.215 \n",
" 908.479,951.999 909.423,949.214 910.366,878.658 911.309,857.97 912.252,1199.53 913.196,905.418 914.139,805.054 915.082,1130.02 916.025,1034.29 916.969,1106.05 \n",
" 917.912,883.058 918.855,882.556 919.798,953.081 920.742,901.137 921.685,1246.12 922.628,945.6 923.572,911.738 924.515,1002.67 925.458,916.013 926.401,1026.46 \n",
" 927.345,779.583 928.288,962.641 929.231,1009.15 930.174,886.167 931.118,784.244 932.061,940.453 933.004,1085.79 933.947,731.176 934.891,951.073 935.834,917.274 \n",
" 936.777,919.643 937.72,953.169 938.664,941.097 939.607,1029.4 940.55,1111.41 941.494,931.381 942.437,874.494 943.38,1120.31 944.323,1000.39 945.267,904.169 \n",
" 946.21,890.15 947.153,940.89 948.096,701.454 949.04,1287.6 949.983,920.718 950.926,826.985 951.869,1108.31 952.813,888.508 953.756,1093.07 954.699,1072.17 \n",
" 955.642,667.398 956.586,1144.66 957.529,793.492 958.472,857.759 959.415,950.96 960.359,763.613 961.302,1162.61 962.245,1096.91 963.189,963.901 964.132,848.66 \n",
" 965.075,982.834 966.018,959.81 966.962,983.361 967.905,1130.65 968.848,1069.23 969.791,1302.12 970.735,1004.24 971.678,1241.14 972.621,1163.68 973.564,806.58 \n",
" 974.508,961.111 975.451,849.915 976.394,820.608 977.337,929.884 978.281,526.438 979.224,908.466 980.167,1192.93 981.111,1101.78 982.054,956.555 982.997,1055.82 \n",
" 983.94,1015.63 984.884,1200.78 985.827,1061.78 986.77,1163.26 987.713,1071.32 988.657,1155.22 989.6,1208.77 990.543,905.586 991.486,915.552 992.43,1135.21 \n",
" 993.373,882.863 994.316,889.363 995.259,878.629 996.203,1037.02 997.146,744.938 998.089,836.408 999.032,838.773 999.976,966.322 1000.92,820.523 1001.86,843.871 \n",
" 1002.81,1046.58 1003.75,931.3 1004.69,1047.42 1005.64,1034.22 1006.58,562.202 1007.52,1218.07 1008.47,920.411 1009.41,1151.67 1010.35,1192.13 1011.29,820.756 \n",
" 1012.24,1011.31 1013.18,989.079 1014.12,894.659 1015.07,923.214 1016.01,925.646 1016.95,1078.23 1017.9,1105.12 1018.84,1018.56 1019.78,1111.25 1020.73,1025.75 \n",
" 1021.67,801.665 1022.61,759.124 1023.56,1001.16 1024.5,1212.92 1025.44,778.68 1026.39,1088.78 1027.33,886.802 1028.27,942.282 1029.22,867.796 1030.16,819.247 \n",
" 1031.1,902.229 1032.05,972.711 1032.99,1115.13 1033.93,967.846 1034.88,990.191 1035.82,761.472 1036.76,870.478 1037.71,651.22 1038.65,1194.36 1039.59,801.091 \n",
" 1040.54,1238.83 1041.48,811.648 1042.42,1158.57 1043.37,991.24 1044.31,1096.04 1045.25,815.3 1046.2,877.854 1047.14,880.218 1048.08,1093.26 1049.03,1009.94 \n",
" 1049.97,790.719 1050.91,1189.96 1051.86,1045.59 1052.8,948.178 1053.74,909.784 1054.68,1155.12 1055.63,949.792 1056.57,881.356 1057.51,878.108 1058.46,978.712 \n",
" 1059.4,1048.95 1060.34,1015.44 1061.29,838.879 1062.23,1125.21 1063.17,1209.05 1064.12,1170.53 1065.06,887.634 1066,738.878 1066.95,1103.46 1067.89,866.221 \n",
" 1068.83,759.681 1069.78,825.224 1070.72,1139.74 1071.66,1004.74 1072.61,1123.3 1073.55,877.985 1074.49,842.444 1075.44,980.805 1076.38,1075.66 1077.32,779.266 \n",
" 1078.27,907.557 1079.21,1159.08 1080.15,928.179 1081.1,655.471 1082.04,992.264 1082.98,968.966 1083.93,799.339 1084.87,1060.81 1085.81,730.888 1086.76,1132.57 \n",
" 1087.7,1120.92 1088.64,659.165 1089.59,992.161 1090.53,865.599 1091.47,1268.54 1092.42,1045.65 1093.36,1002.39 1094.3,967.514 1095.25,1139.53 1096.19,1303.51 \n",
" 1097.13,1162.58 1098.08,1205.8 1099.02,950.242 1099.96,881.94 1100.9,1034.14 1101.85,952.061 1102.79,921.885 1103.73,818.363 1104.68,778.169 1105.62,620.825 \n",
" 1106.56,999.736 1107.51,846.182 1108.45,1147.95 1109.39,830.412 1110.34,1048.14 1111.28,959.218 1112.22,908.98 1113.17,820.12 1114.11,1073.62 1115.05,936.464 \n",
" 1116,1253.46 1116.94,925.046 1117.88,1041.27 1118.83,925.259 1119.77,954.345 1120.71,968.04 1121.66,963.397 1122.6,1131.84 1123.54,918.492 1124.49,876.642 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.168,885.569 183.111,885.569 184.054,885.569 184.997,885.569 185.941,885.569 186.884,885.569 187.827,885.569 188.77,885.569 189.714,885.569 190.657,885.569 \n",
" 191.6,885.569 192.543,885.569 193.487,885.569 194.43,885.569 195.373,885.569 196.316,885.569 197.26,885.569 198.203,885.569 199.146,885.569 200.09,885.569 \n",
" 201.033,885.569 201.976,885.569 202.919,885.569 203.863,885.569 204.806,885.569 205.749,885.569 206.692,885.569 207.636,885.569 208.579,885.569 209.522,885.569 \n",
" 210.465,885.569 211.409,885.569 212.352,885.569 213.295,885.569 214.238,885.569 215.182,885.569 216.125,885.569 217.068,885.569 218.011,885.569 218.955,885.569 \n",
" 219.898,885.569 220.841,885.569 221.785,885.569 222.728,885.569 223.671,885.569 224.614,885.569 225.558,885.569 226.501,885.569 227.444,885.569 228.387,885.569 \n",
" 229.331,885.569 230.274,885.569 231.217,885.569 232.16,885.569 233.104,885.569 234.047,885.569 234.99,885.569 235.933,885.569 236.877,885.569 237.82,885.569 \n",
" 238.763,885.569 239.707,885.569 240.65,885.569 241.593,885.569 242.536,885.569 243.48,885.569 244.423,885.569 245.366,885.569 246.309,885.569 247.253,885.569 \n",
" 248.196,885.569 249.139,885.569 250.082,885.569 251.026,885.569 251.969,885.569 252.912,885.569 253.855,885.569 254.799,885.569 255.742,885.569 256.685,885.569 \n",
" 257.629,885.569 258.572,885.569 259.515,885.569 260.458,885.569 261.402,885.569 262.345,885.569 263.288,885.569 264.231,885.569 265.175,885.569 266.118,885.569 \n",
" 267.061,885.569 268.004,885.569 268.948,885.569 269.891,885.569 270.834,885.569 271.777,885.569 272.721,885.569 273.664,885.569 274.607,885.569 275.55,885.569 \n",
" 276.494,885.569 277.437,885.569 278.38,885.569 279.324,885.569 280.267,885.569 281.21,885.569 282.153,885.569 283.097,885.569 284.04,885.569 284.983,885.569 \n",
" 285.926,885.569 286.87,885.569 287.813,885.569 288.756,885.569 289.699,885.569 290.643,885.569 291.586,885.569 292.529,885.569 293.472,885.569 294.416,885.569 \n",
" 295.359,885.569 296.302,885.569 297.246,885.569 298.189,885.569 299.132,885.569 300.075,885.569 301.019,885.569 301.962,885.569 302.905,885.569 303.848,885.569 \n",
" 304.792,885.569 305.735,885.569 306.678,885.569 307.621,885.569 308.565,885.569 309.508,885.569 310.451,885.569 311.394,885.569 312.338,885.569 313.281,885.569 \n",
" 314.224,885.569 315.167,885.569 316.111,885.569 317.054,885.569 317.997,885.569 318.941,885.569 319.884,885.569 320.827,885.569 321.77,885.569 322.714,885.569 \n",
" 323.657,885.569 324.6,885.569 325.543,885.569 326.487,885.569 327.43,885.569 328.373,885.569 329.316,885.569 330.26,885.569 331.203,885.569 332.146,885.569 \n",
" 333.089,885.569 334.033,885.569 334.976,885.569 335.919,885.569 336.863,885.569 337.806,885.569 338.749,885.569 339.692,885.569 340.636,885.569 341.579,885.569 \n",
" 342.522,885.569 343.465,885.569 344.409,885.569 345.352,885.569 346.295,885.569 347.238,885.569 348.182,885.569 349.125,885.569 350.068,885.569 351.011,885.569 \n",
" 351.955,885.569 352.898,885.569 353.841,885.569 354.784,885.569 355.728,885.569 356.671,885.569 357.614,885.569 358.558,885.569 359.501,885.569 360.444,885.569 \n",
" 361.387,885.569 362.331,885.569 363.274,885.569 364.217,885.569 365.16,885.569 366.104,885.569 367.047,885.569 367.99,885.569 368.933,885.569 369.877,885.569 \n",
" 370.82,885.569 371.763,885.569 372.706,885.569 373.65,885.569 374.593,885.569 375.536,885.569 376.48,885.569 377.423,885.569 378.366,885.569 379.309,885.569 \n",
" 380.253,885.569 381.196,885.569 382.139,885.569 383.082,885.569 384.026,885.569 384.969,885.569 385.912,885.569 386.855,885.569 387.799,885.569 388.742,885.569 \n",
" 389.685,885.569 390.628,885.569 391.572,885.569 392.515,885.569 393.458,885.569 394.402,885.569 395.345,885.569 396.288,885.569 397.231,885.569 398.175,885.569 \n",
" 399.118,885.569 400.061,885.569 401.004,885.569 401.948,885.569 402.891,885.569 403.834,885.569 404.777,885.569 405.721,885.569 406.664,885.569 407.607,885.569 \n",
" 408.55,885.569 409.494,885.569 410.437,885.569 411.38,885.569 412.323,885.569 413.267,885.569 414.21,885.569 415.153,885.569 416.097,885.569 417.04,885.569 \n",
" 417.983,885.569 418.926,885.569 419.87,885.569 420.813,885.569 421.756,885.569 422.699,885.569 423.643,885.569 424.586,885.569 425.529,885.569 426.472,885.569 \n",
" 427.416,885.569 428.359,885.569 429.302,885.569 430.245,885.569 431.189,885.569 432.132,885.569 433.075,885.569 434.019,885.569 434.962,885.569 435.905,885.569 \n",
" 436.848,885.569 437.792,885.569 438.735,885.569 439.678,885.569 440.621,885.569 441.565,885.569 442.508,885.569 443.451,885.569 444.394,885.569 445.338,885.569 \n",
" 446.281,885.569 447.224,885.569 448.167,885.569 449.111,885.569 450.054,885.569 450.997,885.569 451.94,885.569 452.884,885.569 453.827,885.569 454.77,885.569 \n",
" 455.714,885.569 456.657,885.569 457.6,885.569 458.543,885.569 459.487,885.569 460.43,885.569 461.373,885.569 462.316,885.569 463.26,885.569 464.203,885.569 \n",
" 465.146,885.569 466.089,885.569 467.033,885.569 467.976,885.569 468.919,885.569 469.862,885.569 470.806,885.569 471.749,885.569 472.692,885.569 473.636,885.569 \n",
" 474.579,885.569 475.522,885.569 476.465,885.569 477.409,885.569 478.352,885.569 479.295,885.569 480.238,885.569 481.182,885.569 482.125,885.569 483.068,885.569 \n",
" 484.011,885.569 484.955,885.569 485.898,885.569 486.841,885.569 487.784,885.569 488.728,885.569 489.671,885.569 490.614,885.569 491.557,885.569 492.501,885.569 \n",
" 493.444,885.569 494.387,885.569 495.331,885.569 496.274,885.569 497.217,885.569 498.16,885.569 499.104,885.569 500.047,885.569 500.99,885.569 501.933,885.569 \n",
" 502.877,885.569 503.82,885.569 504.763,885.569 505.706,885.569 506.65,885.569 507.593,885.569 508.536,885.569 509.479,885.569 510.423,885.569 511.366,885.569 \n",
" 512.309,885.569 513.253,885.569 514.196,885.569 515.139,885.569 516.082,885.569 517.026,885.569 517.969,885.569 518.912,885.569 519.855,885.569 520.799,885.569 \n",
" 521.742,885.569 522.685,885.569 523.628,885.569 524.572,885.569 525.515,885.569 526.458,885.569 527.401,885.569 528.345,885.569 529.288,885.569 530.231,885.569 \n",
" 531.175,885.569 532.118,885.569 533.061,885.569 534.004,885.569 534.948,885.569 535.891,885.569 536.834,885.569 537.777,885.569 538.721,885.569 539.664,885.569 \n",
" 540.607,885.569 541.55,885.569 542.494,885.569 543.437,885.569 544.38,885.569 545.323,885.569 546.267,885.569 547.21,885.569 548.153,885.569 549.096,885.569 \n",
" 550.04,885.569 550.983,885.569 551.926,885.569 552.87,885.569 553.813,885.569 554.756,885.569 555.699,885.569 556.643,885.569 557.586,885.569 558.529,885.569 \n",
" 559.472,885.569 560.416,885.569 561.359,885.569 562.302,885.569 563.245,885.569 564.189,885.569 565.132,885.569 566.075,885.569 567.018,885.569 567.962,885.569 \n",
" 568.905,885.569 569.848,885.569 570.792,885.569 571.735,885.569 572.678,885.569 573.621,885.569 574.565,885.569 575.508,885.569 576.451,885.569 577.394,885.569 \n",
" 578.338,885.569 579.281,885.569 580.224,885.569 581.167,885.569 582.111,885.569 583.054,885.569 583.997,885.569 584.94,885.569 585.884,885.569 586.827,885.569 \n",
" 587.77,885.569 588.713,885.569 589.657,885.569 590.6,885.569 591.543,885.569 592.487,885.569 593.43,885.569 594.373,885.569 595.316,885.569 596.26,885.569 \n",
" 597.203,885.569 598.146,885.569 599.089,885.569 600.033,885.569 600.976,885.569 601.919,885.569 602.862,885.569 603.806,885.569 604.749,885.569 605.692,885.569 \n",
" 606.635,885.569 607.579,885.569 608.522,885.569 609.465,885.569 610.409,885.569 611.352,885.569 612.295,885.569 613.238,885.569 614.182,885.569 615.125,885.569 \n",
" 616.068,885.569 617.011,885.569 617.955,885.569 618.898,885.569 619.841,885.569 620.784,885.569 621.728,885.569 622.671,885.569 623.614,885.569 624.557,885.569 \n",
" 625.501,885.569 626.444,885.569 627.387,885.569 628.33,885.569 629.274,885.569 630.217,885.569 631.16,885.569 632.104,885.569 633.047,885.569 633.99,885.569 \n",
" 634.933,885.569 635.877,885.569 636.82,885.569 637.763,885.569 638.706,885.569 639.65,885.569 640.593,885.569 641.536,885.569 642.479,885.569 643.423,885.569 \n",
" 644.366,885.569 645.309,885.569 646.252,885.569 647.196,885.569 648.139,885.569 649.082,885.569 650.026,885.569 650.969,885.569 651.912,885.569 652.855,885.569 \n",
" 653.799,885.569 654.742,885.569 655.685,885.569 656.628,885.569 657.572,885.569 658.515,885.569 659.458,885.569 660.401,885.569 661.345,885.569 662.288,885.569 \n",
" 663.231,885.569 664.174,885.569 665.118,885.569 666.061,885.569 667.004,885.569 667.948,885.569 668.891,885.569 669.834,885.569 670.777,885.569 671.721,885.569 \n",
" 672.664,885.569 673.607,885.569 674.55,885.569 675.494,885.569 676.437,885.569 677.38,885.569 678.323,885.569 679.267,885.569 680.21,885.569 681.153,885.569 \n",
" 682.096,885.569 683.04,885.569 683.983,885.569 684.926,885.569 685.869,885.569 686.813,885.569 687.756,885.569 688.699,885.569 689.643,885.569 690.586,885.569 \n",
" 691.529,885.569 692.472,885.569 693.416,885.569 694.359,885.569 695.302,885.569 696.245,885.569 697.189,885.569 698.132,885.569 699.075,885.569 700.018,885.569 \n",
" 700.962,885.569 701.905,885.569 702.848,885.569 703.791,885.569 704.735,885.569 705.678,885.569 706.621,885.569 707.565,885.569 708.508,885.569 709.451,885.569 \n",
" 710.394,885.569 711.338,885.569 712.281,885.569 713.224,885.569 714.167,885.569 715.111,885.569 716.054,885.569 716.997,885.569 717.94,885.569 718.884,885.569 \n",
" 719.827,885.569 720.77,885.569 721.713,885.569 722.657,885.569 723.6,885.569 724.543,885.569 725.486,885.569 726.43,885.569 727.373,885.569 728.316,885.569 \n",
" 729.26,885.569 730.203,885.569 731.146,885.569 732.089,885.569 733.033,885.569 733.976,885.569 734.919,885.569 735.862,885.569 736.806,885.569 737.749,885.569 \n",
" 738.692,885.569 739.635,885.569 740.579,885.569 741.522,885.569 742.465,885.569 743.408,885.569 744.352,885.569 745.295,885.569 746.238,885.569 747.182,885.569 \n",
" 748.125,885.569 749.068,885.569 750.011,885.569 750.955,885.569 751.898,885.569 752.841,885.569 753.784,885.569 754.728,885.569 755.671,885.569 756.614,885.569 \n",
" 757.557,885.569 758.501,885.569 759.444,885.569 760.387,885.569 761.33,885.569 762.274,885.569 763.217,885.569 764.16,885.569 765.103,885.569 766.047,885.569 \n",
" 766.99,885.569 767.933,885.569 768.877,885.569 769.82,885.569 770.763,885.569 771.706,885.569 772.65,885.569 773.593,885.569 774.536,885.569 775.479,885.569 \n",
" 776.423,885.569 777.366,885.569 778.309,885.569 779.252,885.569 780.196,885.569 781.139,885.569 782.082,885.569 783.025,885.569 783.969,885.569 784.912,885.569 \n",
" 785.855,885.569 786.799,885.569 787.742,885.569 788.685,885.569 789.628,885.569 790.572,885.569 791.515,885.569 792.458,885.569 793.401,885.569 794.345,885.569 \n",
" 795.288,885.569 796.231,885.569 797.174,885.569 798.118,885.569 799.061,885.569 800.004,885.569 800.947,885.569 801.891,885.569 802.834,885.569 803.777,885.569 \n",
" 804.721,885.569 805.664,885.569 806.607,885.569 807.55,885.569 808.494,885.569 809.437,885.569 810.38,885.569 811.323,885.569 812.267,885.569 813.21,885.569 \n",
" 814.153,885.569 815.096,885.569 816.04,885.569 816.983,885.569 817.926,885.569 818.869,885.569 819.813,885.569 820.756,885.569 821.699,885.569 822.642,885.569 \n",
" 823.586,885.569 824.529,885.569 825.472,885.569 826.416,885.569 827.359,885.569 828.302,885.569 829.245,885.569 830.189,885.569 831.132,885.569 832.075,885.569 \n",
" 833.018,885.569 833.962,885.569 834.905,885.569 835.848,885.569 836.791,885.569 837.735,885.569 838.678,885.569 839.621,885.569 840.564,885.569 841.508,885.569 \n",
" 842.451,885.569 843.394,885.569 844.338,885.569 845.281,885.569 846.224,885.569 847.167,885.569 848.111,885.569 849.054,885.569 849.997,885.569 850.94,885.569 \n",
" 851.884,885.569 852.827,885.569 853.77,885.569 854.713,885.569 855.657,885.569 856.6,885.569 857.543,885.569 858.486,885.569 859.43,885.569 860.373,885.569 \n",
" 861.316,885.569 862.259,885.569 863.203,885.569 864.146,885.569 865.089,885.569 866.033,885.569 866.976,885.569 867.919,885.569 868.862,885.569 869.806,885.569 \n",
" 870.749,885.569 871.692,885.569 872.635,885.569 873.579,885.569 874.522,885.569 875.465,885.569 876.408,885.569 877.352,885.569 878.295,885.569 879.238,885.569 \n",
" 880.181,885.569 881.125,885.569 882.068,885.569 883.011,885.569 883.955,885.569 884.898,885.569 885.841,885.569 886.784,885.569 887.728,885.569 888.671,885.569 \n",
" 889.614,885.569 890.557,885.569 891.501,885.569 892.444,885.569 893.387,885.569 894.33,885.569 895.274,885.569 896.217,885.569 897.16,885.569 898.103,885.569 \n",
" 899.047,885.569 899.99,885.569 900.933,885.569 901.876,885.569 902.82,885.569 903.763,885.569 904.706,885.569 905.65,885.569 906.593,885.569 907.536,885.569 \n",
" 908.479,885.569 909.423,885.569 910.366,885.569 911.309,885.569 912.252,885.569 913.196,885.569 914.139,885.569 915.082,885.569 916.025,885.569 916.969,885.569 \n",
" 917.912,885.569 918.855,885.569 919.798,885.569 920.742,885.569 921.685,885.569 922.628,885.569 923.572,885.569 924.515,885.569 925.458,885.569 926.401,885.569 \n",
" 927.345,885.569 928.288,885.569 929.231,885.569 930.174,885.569 931.118,885.569 932.061,885.569 933.004,885.569 933.947,885.569 934.891,885.569 935.834,885.569 \n",
" 936.777,885.569 937.72,885.569 938.664,885.569 939.607,885.569 940.55,885.569 941.494,885.569 942.437,885.569 943.38,885.569 944.323,885.569 945.267,885.569 \n",
" 946.21,885.569 947.153,885.569 948.096,885.569 949.04,885.569 949.983,885.569 950.926,885.569 951.869,885.569 952.813,885.569 953.756,885.569 954.699,885.569 \n",
" 955.642,885.569 956.586,885.569 957.529,885.569 958.472,885.569 959.415,885.569 960.359,885.569 961.302,885.569 962.245,885.569 963.189,885.569 964.132,885.569 \n",
" 965.075,885.569 966.018,885.569 966.962,885.569 967.905,885.569 968.848,885.569 969.791,885.569 970.735,885.569 971.678,885.569 972.621,885.569 973.564,885.569 \n",
" 974.508,885.569 975.451,885.569 976.394,885.569 977.337,885.569 978.281,885.569 979.224,885.569 980.167,885.569 981.111,885.569 982.054,885.569 982.997,885.569 \n",
" 983.94,885.569 984.884,885.569 985.827,885.569 986.77,885.569 987.713,885.569 988.657,885.569 989.6,885.569 990.543,885.569 991.486,885.569 992.43,885.569 \n",
" 993.373,885.569 994.316,885.569 995.259,885.569 996.203,885.569 997.146,885.569 998.089,885.569 999.032,885.569 999.976,885.569 1000.92,885.569 1001.86,885.569 \n",
" 1002.81,885.569 1003.75,885.569 1004.69,885.569 1005.64,885.569 1006.58,885.569 1007.52,885.569 1008.47,885.569 1009.41,885.569 1010.35,885.569 1011.29,885.569 \n",
" 1012.24,885.569 1013.18,885.569 1014.12,885.569 1015.07,885.569 1016.01,885.569 1016.95,885.569 1017.9,885.569 1018.84,885.569 1019.78,885.569 1020.73,885.569 \n",
" 1021.67,885.569 1022.61,885.569 1023.56,885.569 1024.5,885.569 1025.44,885.569 1026.39,885.569 1027.33,885.569 1028.27,885.569 1029.22,885.569 1030.16,885.569 \n",
" 1031.1,885.569 1032.05,885.569 1032.99,885.569 1033.93,885.569 1034.88,885.569 1035.82,885.569 1036.76,885.569 1037.71,885.569 1038.65,885.569 1039.59,885.569 \n",
" 1040.54,885.569 1041.48,885.569 1042.42,885.569 1043.37,885.569 1044.31,885.569 1045.25,885.569 1046.2,885.569 1047.14,885.569 1048.08,885.569 1049.03,885.569 \n",
" 1049.97,885.569 1050.91,885.569 1051.86,885.569 1052.8,885.569 1053.74,885.569 1054.68,885.569 1055.63,885.569 1056.57,885.569 1057.51,885.569 1058.46,885.569 \n",
" 1059.4,885.569 1060.34,885.569 1061.29,885.569 1062.23,885.569 1063.17,885.569 1064.12,885.569 1065.06,885.569 1066,885.569 1066.95,885.569 1067.89,885.569 \n",
" 1068.83,885.569 1069.78,885.569 1070.72,885.569 1071.66,885.569 1072.61,885.569 1073.55,885.569 1074.49,885.569 1075.44,885.569 1076.38,885.569 1077.32,885.569 \n",
" 1078.27,885.569 1079.21,885.569 1080.15,885.569 1081.1,885.569 1082.04,885.569 1082.98,885.569 1083.93,885.569 1084.87,885.569 1085.81,885.569 1086.76,885.569 \n",
" 1087.7,885.569 1088.64,885.569 1089.59,885.569 1090.53,885.569 1091.47,885.569 1092.42,885.569 1093.36,885.569 1094.3,885.569 1095.25,885.569 1096.19,885.569 \n",
" 1097.13,885.569 1098.08,885.569 1099.02,885.569 1099.96,885.569 1100.9,885.569 1101.85,885.569 1102.79,885.569 1103.73,885.569 1104.68,885.569 1105.62,885.569 \n",
" 1106.56,885.569 1107.51,885.569 1108.45,885.569 1109.39,885.569 1110.34,885.569 1111.28,885.569 1112.22,885.569 1113.17,885.569 1114.11,885.569 1115.05,885.569 \n",
" 1116,885.569 1116.94,885.569 1117.88,885.569 1118.83,885.569 1119.77,885.569 1120.71,885.569 1121.66,885.569 1122.6,885.569 1123.54,885.569 1124.49,885.569 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 182.168,88.0053 183.111,594.347 184.054,661.587 184.997,736.779 185.941,813.031 186.884,837.246 187.827,881.065 188.77,872.143 189.714,881.554 190.657,890.153 \n",
" 191.6,893.352 192.543,915.779 193.487,911.907 194.43,923.973 195.373,919.37 196.316,936.246 197.26,926.018 198.203,928.008 199.146,924.41 200.09,918.964 \n",
" 201.033,903.727 201.976,916.365 202.919,916.082 203.863,915.206 204.806,916.919 205.749,912.631 206.692,921.944 207.636,914.856 208.579,921.26 209.522,915.672 \n",
" 210.465,911.999 211.409,913.754 212.352,921.896 213.295,921.841 214.238,921.947 215.182,922.544 216.125,928.586 217.068,932.226 218.011,931.122 218.955,931.585 \n",
" 219.898,928.529 220.841,928.764 221.785,925.447 222.728,930.523 223.671,932.682 224.614,930.293 225.558,934.394 226.501,934.857 227.444,930.62 228.387,933 \n",
" 229.331,931.834 230.274,933.72 231.217,932.151 232.16,929.633 233.104,929.129 234.047,929.974 234.99,931.834 235.933,928.704 236.877,930.598 237.82,928.244 \n",
" 238.763,930.499 239.707,935.197 240.65,930.741 241.593,935.907 242.536,937.995 243.48,934.95 244.423,938.158 245.366,936.027 246.309,935.616 247.253,935.687 \n",
" 248.196,937.203 249.139,936.271 250.082,935.906 251.026,936.44 251.969,938.006 252.912,939.174 253.855,938.63 254.799,939.139 255.742,940.316 256.685,941.912 \n",
" 257.629,943.328 258.572,944.476 259.515,944.662 260.458,942.678 261.402,942.464 262.345,946.018 263.288,943.536 264.231,942.282 265.175,944.487 266.118,944.467 \n",
" 267.061,945.984 268.004,944.738 268.948,945.892 269.891,944.293 270.834,947.471 271.777,947.759 272.721,944.857 273.664,946.259 274.607,946.251 275.55,944.953 \n",
" 276.494,945.871 277.437,944.185 278.38,943.265 279.324,942.7 280.267,941.822 281.21,943.247 282.153,944.791 283.097,945.876 284.04,944.298 284.983,942.383 \n",
" 285.926,942.797 286.87,943.615 287.813,942.662 288.756,943.347 289.699,943.422 290.643,943.19 291.586,941.22 292.529,943.293 293.472,943.349 294.416,943.071 \n",
" 295.359,943.399 296.302,944.557 297.246,944.823 298.189,944.504 299.132,944.275 300.075,945.233 301.019,946.961 301.962,946.785 302.905,946.531 303.848,946.098 \n",
" 304.792,948.55 305.735,947.677 306.678,947.072 307.621,947.505 308.565,948.052 309.508,948.952 310.451,950.963 311.394,952.885 312.338,951.854 313.281,953.101 \n",
" 314.224,952.108 315.167,950.772 316.111,948.952 317.054,949.606 317.997,951.386 318.941,951.239 319.884,950.488 320.827,950.532 321.77,950.458 322.714,950.339 \n",
" 323.657,950.9 324.6,950.979 325.543,950.373 326.487,951.13 327.43,950.701 328.373,951.488 329.316,953.074 330.26,954.186 331.203,954.067 332.146,953.638 \n",
" 333.089,952.288 334.033,952.83 334.976,952.788 335.919,952.534 336.863,952.224 337.806,952.562 338.749,953.383 339.692,951.356 340.636,950.817 341.579,949.999 \n",
" 342.522,950.497 343.465,948.967 344.409,947.668 345.352,947.925 346.295,948.627 347.238,949.435 348.182,949.468 349.125,948.497 350.068,948.729 351.011,948.772 \n",
" 351.955,948.683 352.898,948.995 353.841,949.232 354.784,948.72 355.728,948.974 356.671,950.129 357.614,950.899 358.558,951.227 359.501,951.828 360.444,952.575 \n",
" 361.387,953.955 362.331,953.654 363.274,953.326 364.217,953.554 365.16,954.748 366.104,954.89 367.047,954.987 367.99,955.126 368.933,953.957 369.877,954.088 \n",
" 370.82,954.827 371.763,954.592 372.706,952.64 373.65,953.411 374.593,953.325 375.536,953.418 376.48,953.196 377.423,953.68 378.366,952.815 379.309,952.651 \n",
" 380.253,952.825 381.196,952.501 382.139,952.374 383.082,951.885 384.026,952.047 384.969,952.098 385.912,952.568 386.855,952.668 387.799,952.757 388.742,951.615 \n",
" 389.685,950.916 390.628,951.015 391.572,950.953 392.515,950.042 393.458,948.967 394.402,949.329 395.345,950.549 396.288,951.015 397.231,950.564 398.175,952.213 \n",
" 399.118,952.75 400.061,952.327 401.004,951.231 401.948,951.88 402.891,952.013 403.834,952.266 404.777,952.187 405.721,952.861 406.664,953.366 407.607,952.27 \n",
" 408.55,952.186 409.494,952.077 410.437,951.778 411.38,950.41 412.323,950.687 413.267,950.156 414.21,949.784 415.153,949.534 416.097,949.837 417.04,949.57 \n",
" 417.983,949.653 418.926,948.843 419.87,947.628 420.813,947.266 421.756,947.515 422.699,947.337 423.643,947.038 424.586,946.765 425.529,947.342 426.472,946.853 \n",
" 427.416,947.068 428.359,947.226 429.302,947.118 430.245,946.671 431.189,947.16 432.132,946.64 433.075,947.131 434.019,946.187 434.962,946.512 435.905,945.988 \n",
" 436.848,945.965 437.792,946.54 438.735,945.956 439.678,945.745 440.621,946.46 441.565,945.693 442.508,944.98 443.451,945.769 444.394,945.313 445.338,945.196 \n",
" 446.281,944.296 447.224,943.957 448.167,943.368 449.111,943.861 450.054,943.482 450.997,942.698 451.94,944.402 452.884,944.547 453.827,943.929 454.77,944.197 \n",
" 455.714,944.078 456.657,943.837 457.6,944.974 458.543,944.446 459.487,944.604 460.43,944.605 461.373,944.901 462.316,945.207 463.26,944.485 464.203,945.13 \n",
" 465.146,945.475 466.089,945.941 467.033,945.664 467.976,945.399 468.919,945.679 469.862,946.015 470.806,946.013 471.749,946.091 472.692,947.067 473.636,947.717 \n",
" 474.579,947.477 475.522,947.703 476.465,948.016 477.409,948.31 478.352,948.545 479.295,948.482 480.238,948.168 481.182,947.279 482.125,947.567 483.068,947.619 \n",
" 484.011,948.193 484.955,949.741 485.898,949.642 486.841,949.265 487.784,948.8 488.728,948.975 489.671,948.807 490.614,947.891 491.557,948.25 492.501,948.239 \n",
" 493.444,948.326 494.387,948.088 495.331,948.367 496.274,948.845 497.217,948.575 498.16,949.118 499.104,948.818 500.047,948.747 500.99,948.273 501.933,948.332 \n",
" 502.877,948.567 503.82,949.016 504.763,948.877 505.706,948.475 506.65,948.333 507.593,948.765 508.536,948.421 509.479,947.845 510.423,947.696 511.366,947.71 \n",
" 512.309,947.227 513.253,947.673 514.196,946.834 515.139,947.084 516.082,946.672 517.026,946.16 517.969,946.406 518.912,946.748 519.855,946.671 520.799,946.092 \n",
" 521.742,946.704 522.685,946.31 523.628,946.651 524.572,946.956 525.515,947.289 526.458,946.781 527.401,946.66 528.345,947.703 529.288,947.307 530.231,947.531 \n",
" 531.175,947.313 532.118,947.477 533.061,947.657 534.004,947.724 534.948,947.718 535.891,947.457 536.834,947.615 537.777,947.527 538.721,947.381 539.664,946.868 \n",
" 540.607,946.622 541.55,946.757 542.494,946.602 543.437,946.444 544.38,946.308 545.323,946.911 546.267,946.979 547.21,946.718 548.153,946.754 549.096,946.748 \n",
" 550.04,946.651 550.983,946.558 551.926,947.041 552.87,946.945 553.813,946.64 554.756,946.648 555.699,946.905 556.643,946.348 557.586,946.854 558.529,947.309 \n",
" 559.472,947.598 560.416,947.178 561.359,947.068 562.302,947.215 563.245,947.758 564.189,947.701 565.132,946.872 566.075,946.773 567.018,946.799 567.962,947.527 \n",
" 568.905,947.473 569.848,947.858 570.792,947.731 571.735,948.104 572.678,947.324 573.621,947.409 574.565,947.567 575.508,947.116 576.451,947.212 577.394,947.233 \n",
" 578.338,947.003 579.281,946.739 580.224,946.476 581.167,945.823 582.111,945.429 583.054,945.339 583.997,945.41 584.94,945.458 585.884,945.684 586.827,945.889 \n",
" 587.77,946.252 588.713,946.192 589.657,946.002 590.6,945.523 591.543,945.319 592.487,944.973 593.43,944.931 594.373,944.895 595.316,944.88 596.26,944.742 \n",
" 597.203,944.212 598.146,944.478 599.089,944.327 600.033,943.816 600.976,943.704 601.919,943.663 602.862,943.347 603.806,943.259 604.749,943.261 605.692,943.065 \n",
" 606.635,942.979 607.579,942.962 608.522,943.083 609.465,942.762 610.409,942.834 611.352,942.819 612.295,943.517 613.238,943.232 614.182,942.92 615.125,942.565 \n",
" 616.068,942.216 617.011,941.581 617.955,941.562 618.898,941.359 619.841,941.541 620.784,941.669 621.728,941.916 622.671,941.637 623.614,941.681 624.557,941.706 \n",
" 625.501,941.663 626.444,941.141 627.387,940.598 628.33,940.699 629.274,940.513 630.217,940.493 631.16,940.714 632.104,941.061 633.047,941.396 633.99,941.022 \n",
" 634.933,941.209 635.877,941.262 636.82,941.601 637.763,941.571 638.706,941.332 639.65,941.555 640.593,941.204 641.536,941.327 642.479,941.54 643.423,941.588 \n",
" 644.366,941.765 645.309,941.987 646.252,941.741 647.196,941.538 648.139,941.707 649.082,941.651 650.026,941.403 650.969,940.945 651.912,940.346 652.855,940.137 \n",
" 653.799,940.273 654.742,940.27 655.685,939.613 656.628,939.687 657.572,939.88 658.515,939.862 659.458,939.76 660.401,939.357 661.345,938.913 662.288,938.525 \n",
" 663.231,938.639 664.174,938.872 665.118,939.109 666.061,939.139 667.004,939.183 667.948,939.318 668.891,939.061 669.834,938.986 670.777,939.046 671.721,938.953 \n",
" 672.664,939.149 673.607,939.264 674.55,939.243 675.494,939.362 676.437,939.74 677.38,939.779 678.323,939.563 679.267,939.678 680.21,939.529 681.153,939.264 \n",
" 682.096,938.971 683.04,938.604 683.983,938.373 684.926,938.525 685.869,938.488 686.813,938.262 687.756,938.114 688.699,937.715 689.643,937.782 690.586,938.056 \n",
" 691.529,938.279 692.472,938.509 693.416,938.113 694.359,938.284 695.302,938.123 696.245,938.427 697.189,938.1 698.132,937.426 699.075,937.747 700.018,937.578 \n",
" 700.962,936.984 701.905,936.669 702.848,936.575 703.791,937.292 704.735,937.645 705.678,937.561 706.621,937.878 707.565,938.041 708.508,938.485 709.451,938.458 \n",
" 710.394,938.696 711.338,938.84 712.281,938.858 713.224,938.937 714.167,938.62 715.111,938.578 716.054,938.68 716.997,938.595 717.94,938.995 718.884,939.045 \n",
" 719.827,938.905 720.77,939.513 721.713,940.357 722.657,940.773 723.6,940.796 724.543,940.281 725.486,940.361 726.43,940.106 727.373,939.948 728.316,940.186 \n",
" 729.26,940.01 730.203,939.75 731.146,939.587 732.089,939.196 733.033,939.44 733.976,939.313 734.919,939.438 735.862,939.952 736.806,939.849 737.749,939.627 \n",
" 738.692,939.708 739.635,939.483 740.579,939.606 741.522,939.313 742.465,939.644 743.408,939.72 744.352,939.579 745.295,939.523 746.238,939.654 747.182,939.636 \n",
" 748.125,939.418 749.068,939.643 750.011,939.792 750.955,939.622 751.898,939.76 752.841,940.064 753.784,940.014 754.728,939.738 755.671,939.762 756.614,939.692 \n",
" 757.557,939.628 758.501,939.772 759.444,939.409 760.387,939.019 761.33,938.723 762.274,938.705 763.217,938.741 764.16,938.766 765.103,939.246 766.047,939.111 \n",
" 766.99,938.69 767.933,938.563 768.877,938.383 769.82,938.278 770.763,938.124 771.706,938.119 772.65,937.935 773.593,937.989 774.536,938.069 775.479,938.273 \n",
" 776.423,938.04 777.366,938.311 778.309,938.411 779.252,938.585 780.196,938.302 781.139,937.996 782.082,938.279 783.025,938.001 783.969,938.153 784.912,938.31 \n",
" 785.855,938.32 786.799,938.543 787.742,938.735 788.685,938.639 789.628,939.024 790.572,938.631 791.515,938.759 792.458,938.769 793.401,938.836 794.345,938.988 \n",
" 795.288,938.724 796.231,938.648 797.174,938.844 798.118,938.773 799.061,938.659 800.004,938.692 800.947,939.12 801.891,939.464 802.834,939.968 803.777,939.786 \n",
" 804.721,939.405 805.664,939.572 806.607,939.564 807.55,939.564 808.494,939.689 809.437,939.963 810.38,939.925 811.323,940.155 812.267,939.984 813.21,940.061 \n",
" 814.153,940.176 815.096,940.077 816.04,940.294 816.983,940.397 817.926,940.374 818.869,940.36 819.813,940.35 820.756,940.11 821.699,939.816 822.642,939.688 \n",
" 823.586,939.937 824.529,939.828 825.472,940.012 826.416,939.835 827.359,939.749 828.302,939.61 829.245,939.582 830.189,939.663 831.132,939.689 832.075,939.362 \n",
" 833.018,939.741 833.962,939.711 834.905,939.921 835.848,940.002 836.791,940.062 837.735,939.93 838.678,939.693 839.621,939.598 840.564,940.09 841.508,940.346 \n",
" 842.451,940.374 843.394,940.257 844.338,939.996 845.281,940.07 846.224,939.972 847.167,939.673 848.111,940.233 849.054,940.19 849.997,940.121 850.94,940.348 \n",
" 851.884,940.136 852.827,939.885 853.77,940.151 854.713,940.295 855.657,939.83 856.6,939.595 857.543,939.784 858.486,940.072 859.43,940.154 860.373,939.752 \n",
" 861.316,939.358 862.259,939.543 863.203,939.427 864.146,939.166 865.089,939.352 866.033,939.168 866.976,939.35 867.919,939.118 868.862,939.199 869.806,938.907 \n",
" 870.749,939.088 871.692,939.104 872.635,939.618 873.579,939.607 874.522,939.739 875.465,939.608 876.408,939.283 877.352,939.181 878.295,939.205 879.238,938.982 \n",
" 880.181,938.95 881.125,938.874 882.068,938.778 883.011,938.738 883.955,938.66 884.898,938.634 885.841,938.639 886.784,938.331 887.728,938.211 888.671,938.235 \n",
" 889.614,938.299 890.557,938.231 891.501,938.086 892.444,937.998 893.387,938.028 894.33,938.022 895.274,938.012 896.217,938.287 897.16,938.058 898.103,938.108 \n",
" 899.047,938.531 899.99,938.822 900.933,938.989 901.876,938.875 902.82,938.976 903.763,938.996 904.706,939.291 905.65,939.401 906.593,939.169 907.536,939.223 \n",
" 908.479,939.24 909.423,939.253 910.366,939.174 911.309,939.07 912.252,939.406 913.196,939.362 914.139,939.189 915.082,939.434 916.025,939.556 916.969,939.769 \n",
" 917.912,939.697 918.855,939.624 919.798,939.641 920.742,939.592 921.685,939.982 922.628,939.989 923.572,939.954 924.515,940.033 925.458,940.003 926.401,940.112 \n",
" 927.345,939.909 928.288,939.938 929.231,940.025 930.174,939.957 931.118,939.762 932.061,939.762 933.004,939.946 933.947,939.684 934.891,939.698 935.834,939.67 \n",
" 936.777,939.645 937.72,939.662 938.664,939.664 939.607,939.775 940.55,939.989 941.494,939.978 942.437,939.897 943.38,940.12 944.323,940.195 945.267,940.15 \n",
" 946.21,940.088 947.153,940.089 948.096,939.796 949.04,940.223 949.983,940.199 950.926,940.061 951.869,940.267 952.813,940.203 953.756,940.39 954.699,940.551 \n",
" 955.642,940.218 956.586,940.467 957.529,940.288 958.472,940.188 959.415,940.201 960.359,939.987 961.302,940.256 962.245,940.446 963.189,940.474 964.132,940.363 \n",
" 965.075,940.414 966.018,940.438 966.962,940.489 967.905,940.717 968.848,940.871 969.791,941.303 970.735,941.378 971.678,941.736 972.621,942.001 973.564,941.839 \n",
" 974.508,941.862 975.451,941.753 976.394,941.609 977.337,941.596 978.281,941.104 979.224,941.066 980.167,941.363 981.111,941.552 982.054,941.57 982.997,941.704 \n",
" 983.94,941.791 984.884,942.095 985.827,942.235 986.77,942.494 987.713,942.645 988.657,942.893 989.6,943.203 990.543,943.16 991.486,943.127 992.43,943.351 \n",
" 993.373,943.281 994.316,943.218 995.259,943.143 996.203,943.252 997.146,943.023 998.089,942.899 999.032,942.779 999.976,942.806 1000.92,942.666 1001.86,942.552 \n",
" 1002.81,942.672 1003.75,942.659 1004.69,942.779 1005.64,942.883 1006.58,942.448 1007.52,942.763 1008.47,942.737 1009.41,942.975 1010.35,943.259 1011.29,943.12 \n",
" 1012.24,943.197 1013.18,943.249 1014.12,943.194 1015.07,943.171 1016.01,943.151 1016.95,943.304 1017.9,943.486 1018.84,943.571 1019.78,943.76 1020.73,943.852 \n",
" 1021.67,943.692 1022.61,943.485 1023.56,943.55 1024.5,943.851 1025.44,943.667 1026.39,943.828 1027.33,943.765 1028.27,943.763 1029.22,943.679 1030.16,943.54 \n",
" 1031.1,943.495 1032.05,943.527 1032.99,943.717 1033.93,943.744 1034.88,943.795 1035.82,943.594 1036.76,943.513 1037.71,943.191 1038.65,943.468 1039.59,943.311 \n",
" 1040.54,943.636 1041.48,943.491 1042.42,943.726 1043.37,943.778 1044.31,943.945 1045.25,943.804 1046.2,943.732 1047.14,943.663 1048.08,943.826 1049.03,943.898 \n",
" 1049.97,943.732 1050.91,943.999 1051.86,944.109 1052.8,944.113 1053.74,944.076 1054.68,944.304 1055.63,944.31 1056.57,944.242 1057.51,944.171 1058.46,944.208 \n",
" 1059.4,944.32 1060.34,944.397 1061.29,944.284 1062.23,944.477 1063.17,944.76 1064.12,945.002 1065.06,944.94 1066,944.721 1066.95,944.89 1067.89,944.806 \n",
" 1068.83,944.609 1069.78,944.483 1070.72,944.69 1071.66,944.753 1072.61,944.942 1073.55,944.871 1074.49,944.763 1075.44,944.801 1076.38,944.939 1077.32,944.765 \n",
" 1078.27,944.726 1079.21,944.951 1080.15,944.933 1081.1,944.63 1082.04,944.68 1082.98,944.705 1083.93,944.553 1084.87,944.674 1085.81,944.452 1086.76,944.648 \n",
" 1087.7,944.831 1088.64,944.534 1089.59,944.583 1090.53,944.502 1091.47,944.837 1092.42,944.942 1093.36,945.001 1094.3,945.024 1095.25,945.225 1096.19,945.594 \n",
" 1097.13,945.818 1098.08,946.085 1099.02,946.09 1099.96,946.024 1100.9,946.114 1101.85,946.12 1102.79,946.095 1103.73,945.965 1104.68,945.793 1105.62,945.462 \n",
" 1106.56,945.517 1107.51,945.416 1108.45,945.622 1109.39,945.505 1110.34,945.609 1111.28,945.623 1112.22,945.586 1113.17,945.459 1114.11,945.588 1115.05,945.579 \n",
" 1116,945.89 1116.94,945.869 1117.88,945.965 1118.83,945.944 1119.77,945.953 1120.71,945.975 1121.66,945.992 1122.6,946.178 1123.54,946.151 1124.49,946.081 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip7300)\" d=\"\n",
"M460.933 372.684 L1080.76 372.684 L1080.76 130.764 L460.933 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 460.933,372.684 1080.76,372.684 1080.76,130.764 460.933,130.764 460.933,372.684 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 484.933,191.244 628.933,191.244 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 652.933, 208.744)\" x=\"652.933\" y=\"208.744\">posterior samples</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 484.933,251.724 628.933,251.724 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 652.933, 265.375)\" x=\"652.933\" y=\"265.375\">true </text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Symbol; font-size:52px; text-anchor:start;\" transform=\"rotate(0, 749.248, 265.375)\" x=\"749.248\" y=\"265.375\">α</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 484.933,312.204 628.933,312.204 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 652.933, 329.704)\" x=\"652.933\" y=\"329.704\">running mean</text>\n",
"</g>\n",
"<path clip-path=\"url(#clip7300)\" d=\"\n",
"M1353.9 1487.47 L2352.76 1487.47 L2352.76 47.2441 L1353.9 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7303\">\n",
" <rect x=\"1353\" y=\"47\" width=\"1000\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1381.22,1487.47 1381.22,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1617.04,1487.47 1617.04,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1852.86,1487.47 1852.86,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2088.67,1487.47 2088.67,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2324.49,1487.47 2324.49,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1353.9,1375.27 2352.76,1375.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1353.9,1121.68 2352.76,1121.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1353.9,868.089 2352.76,868.089 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1353.9,614.501 2352.76,614.501 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1353.9,360.913 2352.76,360.913 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1353.9,107.324 2352.76,107.324 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,1487.47 2352.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,1487.47 1353.9,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1381.22,1487.47 1381.22,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.04,1487.47 1617.04,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1852.86,1487.47 1852.86,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2088.67,1487.47 2088.67,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2324.49,1487.47 2324.49,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,1375.27 1365.88,1375.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,1121.68 1365.88,1121.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,868.089 1365.88,868.089 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,614.501 1365.88,614.501 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,360.913 1365.88,360.913 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1353.9,107.324 1365.88,107.324 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1381.22, 1541.47)\" x=\"1381.22\" y=\"1541.47\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1617.04, 1541.47)\" x=\"1617.04\" y=\"1541.47\">250</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1852.86, 1541.47)\" x=\"1852.86\" y=\"1541.47\">500</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2088.67, 1541.47)\" x=\"2088.67\" y=\"1541.47\">750</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2324.49, 1541.47)\" x=\"2324.49\" y=\"1541.47\">1000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1329.9, 1392.77)\" x=\"1329.9\" y=\"1392.77\">1.5</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1329.9, 1139.18)\" x=\"1329.9\" y=\"1139.18\">2.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1329.9, 885.589)\" x=\"1329.9\" y=\"885.589\">2.5</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1329.9, 632.001)\" x=\"1329.9\" y=\"632.001\">3.0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1329.9, 378.413)\" x=\"1329.9\" y=\"378.413\">3.5</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1329.9, 124.824)\" x=\"1329.9\" y=\"124.824\">4.0</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.17,635.547 1383.11,640.913 1384.05,946.318 1385,704.522 1385.94,719.801 1386.88,783.151 1387.83,500.727 1388.77,832.708 1389.71,1152.08 1390.66,464.381 \n",
" 1391.6,1042.7 1392.54,851.248 1393.49,638.275 1394.43,648.368 1395.37,769.213 1396.32,762.12 1397.26,705.721 1398.2,778.599 1399.15,579.188 1400.09,672.144 \n",
" 1401.03,676.63 1401.98,911.619 1402.92,614.275 1403.86,1222.49 1404.81,827.441 1405.75,752.575 1406.69,1121.55 1407.64,615.394 1408.58,761.265 1409.52,643.847 \n",
" 1410.47,833.221 1411.41,775.408 1412.35,539.528 1413.3,859.292 1414.24,486.887 1415.18,1028.92 1416.12,1172.56 1417.07,546.716 1418.01,211.789 1418.95,714.135 \n",
" 1419.9,781.123 1420.84,624.405 1421.78,593.455 1422.73,929.461 1423.67,829.439 1424.61,1048.21 1425.56,723.325 1426.5,588.09 1427.44,460.772 1428.39,774.21 \n",
" 1429.33,506.035 1430.27,516.409 1431.22,403.939 1432.16,942.811 1433.1,968.463 1434.05,856.651 1434.99,564.086 1435.93,285.809 1436.88,624.029 1437.82,886.022 \n",
" 1438.76,1071.33 1439.71,599.806 1440.65,1124.54 1441.59,922.194 1442.54,841.781 1443.48,935.689 1444.42,823.46 1445.37,938.109 1446.31,1211.26 1447.25,831.679 \n",
" 1448.2,756.389 1449.14,686.646 1450.08,681.248 1451.03,1085.01 1451.97,696.074 1452.91,691.02 1453.86,645.101 1454.8,825.504 1455.74,933.999 1456.69,590.251 \n",
" 1457.63,546.21 1458.57,908.135 1459.52,653.52 1460.46,782.662 1461.4,914.555 1462.34,536.029 1463.29,802.616 1464.23,870.81 1465.17,732.2 1466.12,928.819 \n",
" 1467.06,242.831 1468,932.677 1468.95,824.124 1469.89,793.525 1470.83,780.351 1471.78,775.942 1472.72,1042.94 1473.66,543.887 1474.61,1023.78 1475.55,874.271 \n",
" 1476.49,670.854 1477.44,873.576 1478.38,243.919 1479.32,869.906 1480.27,503.051 1481.21,571.157 1482.15,762.572 1483.1,1040.91 1484.04,1035.51 1484.98,770.003 \n",
" 1485.93,714.484 1486.87,891.544 1487.81,852.863 1488.76,603.841 1489.7,1032.61 1490.64,623.698 1491.59,1028.61 1492.53,895.161 1493.47,924.94 1494.42,807.557 \n",
" 1495.36,929.379 1496.3,906.646 1497.25,650.633 1498.19,733.293 1499.13,658.417 1500.08,670.163 1501.02,534.963 1501.96,804.188 1502.91,668.176 1503.85,1086.19 \n",
" 1504.79,1132.05 1505.73,732.495 1506.68,792.827 1507.62,1147.11 1508.56,612.901 1509.51,826.653 1510.45,583.029 1511.39,1008.45 1512.34,482.636 1513.28,604.161 \n",
" 1514.22,835.497 1515.17,685.257 1516.11,685.462 1517.05,898.76 1518,720.33 1518.94,879.324 1519.88,550.455 1520.83,1074.13 1521.77,455.949 1522.71,671.174 \n",
" 1523.66,707.154 1524.6,841.163 1525.54,1121.31 1526.49,1079.05 1527.43,902.356 1528.37,947.172 1529.32,404.376 1530.26,894.779 1531.2,999.268 1532.15,815.099 \n",
" 1533.09,715.818 1534.03,931.714 1534.98,241.221 1535.92,919.173 1536.86,985.451 1537.81,975.405 1538.75,601.343 1539.69,828.371 1540.64,742.578 1541.58,718.369 \n",
" 1542.52,735.54 1543.47,698.868 1544.41,1119.08 1545.35,632.764 1546.3,966.264 1547.24,633.742 1548.18,917.622 1549.12,1225.72 1550.07,646.718 1551.01,921.968 \n",
" 1551.95,717.196 1552.9,949.223 1553.84,848.096 1554.78,739.669 1555.73,829.572 1556.67,838.436 1557.61,612.635 1558.56,447.592 1559.5,826.032 1560.44,487.22 \n",
" 1561.39,401.301 1562.33,579.646 1563.27,879.888 1564.22,917.72 1565.16,734.808 1566.1,659.562 1567.05,717.804 1567.99,595.918 1568.93,704.165 1569.88,1210.03 \n",
" 1570.82,409.638 1571.76,719.672 1572.71,830.818 1573.65,579.946 1574.59,921.471 1575.54,779.522 1576.48,741.809 1577.42,1006.71 1578.37,744.471 1579.31,804.986 \n",
" 1580.25,813.583 1581.2,946.856 1582.14,944.759 1583.08,862.841 1584.03,901.599 1584.97,728.831 1585.91,590.835 1586.86,903.506 1587.8,519.188 1588.74,681.929 \n",
" 1589.69,791.611 1590.63,726.202 1591.57,760.677 1592.51,908.338 1593.46,691.573 1594.4,807.531 1595.34,379.634 1596.29,808.958 1597.23,886.702 1598.17,961.268 \n",
" 1599.12,689.624 1600.06,612.005 1601,571.152 1601.95,636.446 1602.89,437.513 1603.83,505.874 1604.78,372.92 1605.72,641.321 1606.66,807.577 1607.61,1157.02 \n",
" 1608.55,905.065 1609.49,785.372 1610.44,780.481 1611.38,998.696 1612.32,697.492 1613.27,948.824 1614.21,599.314 1615.15,483.907 1616.1,576.7 1617.04,924.298 \n",
" 1617.98,956.066 1618.93,422.293 1619.87,598.097 1620.81,541.761 1621.76,639.043 1622.7,525.055 1623.64,1068.51 1624.59,1446.71 1625.53,663.126 1626.47,736.893 \n",
" 1627.42,732.339 1628.36,1014.39 1629.3,1266.99 1630.25,943.785 1631.19,807.763 1632.13,1182.5 1633.08,696.071 1634.02,798.683 1634.96,1008.84 1635.91,669.544 \n",
" 1636.85,669.386 1637.79,1030.01 1638.73,706.038 1639.68,911.17 1640.62,789.246 1641.56,1067.36 1642.51,595.56 1643.45,460.363 1644.39,863.43 1645.34,1080.93 \n",
" 1646.28,1337.34 1647.22,591.689 1648.17,732.985 1649.11,687.894 1650.05,761.649 1651,799.099 1651.94,831.657 1652.88,840.924 1653.83,800.827 1654.77,842.406 \n",
" 1655.71,608.848 1656.66,727.435 1657.6,614.271 1658.54,697.373 1659.49,462.855 1660.43,546.582 1661.37,580.937 1662.32,609.73 1663.26,672.97 1664.2,807.955 \n",
" 1665.15,991.66 1666.09,557.988 1667.03,295.054 1667.98,975.482 1668.92,486.21 1669.86,1004.21 1670.81,523.454 1671.75,1029.76 1672.69,795.964 1673.64,877.912 \n",
" 1674.58,673.403 1675.52,718.368 1676.47,631.83 1677.41,388.291 1678.35,785.802 1679.3,812.983 1680.24,890.392 1681.18,812.508 1682.12,603.362 1683.07,561.157 \n",
" 1684.01,890.795 1684.95,651.452 1685.9,796.772 1686.84,668.799 1687.78,892.658 1688.73,949.737 1689.67,749.722 1690.61,606.665 1691.56,850.395 1692.5,575.731 \n",
" 1693.44,527.354 1694.39,820.593 1695.33,752.572 1696.27,856.538 1697.22,832.378 1698.16,613.379 1699.1,889.438 1700.05,717.451 1700.99,1032.41 1701.93,791.847 \n",
" 1702.88,832.891 1703.82,437.914 1704.76,434.183 1705.71,1175.72 1706.65,841.979 1707.59,366.183 1708.54,772.452 1709.48,995.336 1710.42,537.5 1711.37,678.135 \n",
" 1712.31,589.52 1713.25,914.478 1714.2,932.756 1715.14,832.613 1716.08,1110.8 1717.03,531.895 1717.97,709.716 1718.91,701.2 1719.86,951.267 1720.8,882.999 \n",
" 1721.74,420.039 1722.69,577.451 1723.63,816.01 1724.57,705.794 1725.51,669.763 1726.46,939.181 1727.4,723.206 1728.34,710.343 1729.29,480.269 1730.23,664.505 \n",
" 1731.17,1040.49 1732.12,536.348 1733.06,631.424 1734,846.356 1734.95,727.702 1735.89,342.947 1736.83,601.836 1737.78,923.3 1738.72,652.698 1739.66,644.273 \n",
" 1740.61,620.2 1741.55,1078.29 1742.49,770.679 1743.44,631.93 1744.38,720.974 1745.32,626.757 1746.27,400.688 1747.21,964.123 1748.15,653.812 1749.1,836.501 \n",
" 1750.04,763.217 1750.98,563.854 1751.93,795.931 1752.87,564.111 1753.81,444.005 1754.76,1017.54 1755.7,644.97 1756.64,786.689 1757.59,716.194 1758.53,684.175 \n",
" 1759.47,809.738 1760.42,678.416 1761.36,532.269 1762.3,740.643 1763.25,236.384 1764.19,621.904 1765.13,510.851 1766.08,773.99 1767.02,840.696 1767.96,464.608 \n",
" 1768.9,851.228 1769.85,563.446 1770.79,504.738 1771.73,583.138 1772.68,832.04 1773.62,593.613 1774.56,684.286 1775.51,762.173 1776.45,1169.49 1777.39,716.438 \n",
" 1778.34,686.666 1779.28,857.502 1780.22,670.577 1781.17,663.539 1782.11,814.063 1783.05,548.027 1784,883.509 1784.94,593.68 1785.88,479.103 1786.83,806.931 \n",
" 1787.77,990.145 1788.71,656.763 1789.66,922.925 1790.6,634.393 1791.54,391.651 1792.49,748.021 1793.43,870.181 1794.37,699.195 1795.32,691.121 1796.26,471.718 \n",
" 1797.2,621.866 1798.15,868.801 1799.09,933.834 1800.03,885.72 1800.98,421.574 1801.92,487.855 1802.86,1038.69 1803.81,964.166 1804.75,702.873 1805.69,1014.23 \n",
" 1806.64,572.453 1807.58,575.404 1808.52,934.852 1809.47,548.883 1810.41,588.163 1811.35,685.726 1812.3,815.015 1813.24,477.457 1814.18,506.877 1815.12,784.989 \n",
" 1816.07,950.757 1817.01,245.702 1817.95,1097.08 1818.9,1207.87 1819.84,878.951 1820.78,729.219 1821.73,1227.66 1822.67,792.219 1823.61,639.931 1824.56,943.395 \n",
" 1825.5,977.37 1826.44,608.386 1827.39,891.166 1828.33,665.444 1829.27,644.146 1830.22,703.91 1831.16,1074.75 1832.1,825.157 1833.05,1081.58 1833.99,845.476 \n",
" 1834.93,1284.7 1835.88,1067.94 1836.82,635.989 1837.76,561.55 1838.71,955.148 1839.65,865.398 1840.59,812.312 1841.54,659.941 1842.48,975.221 1843.42,1064.48 \n",
" 1844.37,799.437 1845.31,1021.44 1846.25,491.89 1847.2,536.358 1848.14,884.573 1849.08,980.904 1850.03,954.278 1850.97,831.407 1851.91,781.062 1852.86,758.561 \n",
" 1853.8,625.302 1854.74,887.341 1855.69,1092.96 1856.63,992.087 1857.57,855.848 1858.51,1019.05 1859.46,906.482 1860.4,737.88 1861.34,568.193 1862.29,620.332 \n",
" 1863.23,569.387 1864.17,601.394 1865.12,829.322 1866.06,668.738 1867,985.861 1867.95,799.821 1868.89,802.904 1869.83,569.137 1870.78,418.895 1871.72,932.827 \n",
" 1872.66,708.607 1873.61,613.908 1874.55,745.842 1875.49,967.956 1876.44,591.407 1877.38,723.994 1878.32,1041.83 1879.27,826.515 1880.21,578.973 1881.15,539.252 \n",
" 1882.1,565.902 1883.04,648.661 1883.98,699.687 1884.93,1076.79 1885.87,715.632 1886.81,491.862 1887.76,703.076 1888.7,809.24 1889.64,732.294 1890.59,601.059 \n",
" 1891.53,575.86 1892.47,953.767 1893.42,755.881 1894.36,753.144 1895.3,560.383 1896.25,887.918 1897.19,982.224 1898.13,982.163 1899.08,874.937 1900.02,554.401 \n",
" 1900.96,880.802 1901.9,1257.17 1902.85,836.398 1903.79,1051.02 1904.73,802.761 1905.68,727.563 1906.62,755.046 1907.56,1177.58 1908.51,738.667 1909.45,595.197 \n",
" 1910.39,592.595 1911.34,541.561 1912.28,862.228 1913.22,866.087 1914.17,788.143 1915.11,858.65 1916.05,471.921 1917,906.451 1917.94,1078.39 1918.88,1206.62 \n",
" 1919.83,337.289 1920.77,1189.6 1921.71,712.656 1922.66,990.197 1923.6,459.863 1924.54,406.55 1925.49,703.76 1926.43,667.658 1927.37,820.383 1928.32,792.24 \n",
" 1929.26,672.211 1930.2,573.618 1931.15,1063.14 1932.09,981.807 1933.03,1072.33 1933.98,649.655 1934.92,822.887 1935.86,908.495 1936.81,877.678 1937.75,882.22 \n",
" 1938.69,805.711 1939.64,990.18 1940.58,1152.63 1941.52,867.133 1942.47,538.913 1943.41,888.312 1944.35,1056.36 1945.29,424.175 1946.24,927.827 1947.18,647.934 \n",
" 1948.12,882.101 1949.07,876.056 1950.01,673.69 1950.95,676.36 1951.9,930.171 1952.84,622.607 1953.78,822.848 1954.73,992.686 1955.67,820.865 1956.61,836.94 \n",
" 1957.56,741.854 1958.5,619.482 1959.44,506.184 1960.39,729.845 1961.33,878.417 1962.27,697.326 1963.22,632.926 1964.16,799.425 1965.1,892.834 1966.05,629.676 \n",
" 1966.99,689.142 1967.93,1155.81 1968.88,792.802 1969.82,717.291 1970.76,654.359 1971.71,697.044 1972.65,676.387 1973.59,787.909 1974.54,631.859 1975.48,1139.99 \n",
" 1976.42,401.791 1977.37,749.737 1978.31,849.7 1979.25,708.391 1980.2,565.351 1981.14,1189.74 1982.08,1010.93 1983.03,559.531 1983.97,534.347 1984.91,720.022 \n",
" 1985.86,819.274 1986.8,848.586 1987.74,784.262 1988.69,718.823 1989.63,848.559 1990.57,1039.95 1991.51,734.966 1992.46,913.062 1993.4,513.339 1994.34,203.986 \n",
" 1995.29,768.003 1996.23,1218.04 1997.17,615.365 1998.12,535.3 1999.06,646.481 2000,828.98 2000.95,1081.84 2001.89,807.009 2002.83,920.931 2003.78,747.327 \n",
" 2004.72,717.701 2005.66,637.64 2006.61,876.117 2007.55,726.516 2008.49,1326.18 2009.44,586.609 2010.38,576.73 2011.32,590.408 2012.27,826.31 2013.21,820.027 \n",
" 2014.15,563.586 2015.1,948.008 2016.04,775.263 2016.98,664.071 2017.93,928.517 2018.87,732.356 2019.81,498.966 2020.76,490.365 2021.7,88.0053 2022.64,714.568 \n",
" 2023.59,588.882 2024.53,1003.39 2025.47,827.641 2026.42,593.748 2027.36,983.971 2028.3,883.991 2029.25,523.273 2030.19,605.871 2031.13,860.22 2032.08,914.839 \n",
" 2033.02,278.979 2033.96,933.295 2034.9,1021.03 2035.85,449.067 2036.79,477.295 2037.73,329.694 2038.68,627.082 2039.62,1191.95 2040.56,857.311 2041.51,629.315 \n",
" 2042.45,527.49 2043.39,830.926 2044.34,1204.36 2045.28,642.634 2046.22,527.342 2047.17,789.217 2048.11,558.825 2049.05,196.326 2050,708.459 2050.94,946.886 \n",
" 2051.88,943.895 2052.83,881.858 2053.77,1007.5 2054.71,919.607 2055.66,499.057 2056.6,582.399 2057.54,796.181 2058.49,727.663 2059.43,431.73 2060.37,818.192 \n",
" 2061.32,1088.2 2062.26,486.974 2063.2,713.7 2064.15,740.018 2065.09,761.259 2066.03,331.187 2066.98,846.31 2067.92,437.482 2068.86,693.812 2069.81,893.988 \n",
" 2070.75,754.094 2071.69,328.552 2072.64,689.467 2073.58,295.735 2074.52,298.838 2075.47,919.52 2076.41,546.712 2077.35,971.32 2078.29,827.858 2079.24,763.101 \n",
" 2080.18,1221.84 2081.12,633.923 2082.07,818.84 2083.01,821.156 2083.95,1270.85 2084.9,987.097 2085.84,536.079 2086.78,882.266 2087.73,1165.69 2088.67,1089.75 \n",
" 2089.61,1153.98 2090.56,925.446 2091.5,240.005 2092.44,465.697 2093.39,1220.73 2094.33,806.413 2095.27,540.728 2096.22,809.932 2097.16,516.953 2098.1,623.549 \n",
" 2099.05,623.955 2099.99,838.181 2100.93,768.793 2101.88,465.236 2102.82,792.571 2103.76,644.462 2104.71,487.398 2105.65,1079.47 2106.59,700.188 2107.54,1115.05 \n",
" 2108.48,846.394 2109.42,993.151 2110.37,814.166 2111.31,976.196 2112.25,620.409 2113.2,916.346 2114.14,948.446 2115.08,731.958 2116.03,742.828 2116.97,958.428 \n",
" 2117.91,332.446 2118.86,1080.5 2119.8,471.113 2120.74,726.605 2121.68,610.274 2122.63,529.99 2123.57,929.895 2124.51,523.827 2125.46,969.831 2126.4,871.749 \n",
" 2127.34,777.236 2128.29,863.586 2129.23,542.565 2130.17,642.615 2131.12,1299.32 2132.06,897.674 2133,691.562 2133.95,987.865 2134.89,657.271 2135.83,746.784 \n",
" 2136.78,774.491 2137.72,992.381 2138.66,940.924 2139.61,838.593 2140.55,695.955 2141.49,655.105 2142.44,259.475 2143.38,721.674 2144.32,743.599 2145.27,504.988 \n",
" 2146.21,835.55 2147.15,753.925 2148.1,641.924 2149.04,794.338 2149.98,859.085 2150.93,940.8 2151.87,924.25 2152.81,672.08 2153.76,749.324 2154.7,621.606 \n",
" 2155.64,1041.08 2156.59,629.489 2157.53,667.31 2158.47,839.367 2159.42,365.39 2160.36,540.859 2161.3,377.843 2162.25,990.168 2163.19,802.071 2164.13,809.866 \n",
" 2165.08,626.286 2166.02,1043.12 2166.96,788.794 2167.9,855.897 2168.85,1153.23 2169.79,1084.79 2170.73,814.33 2171.68,1007.33 2172.62,651.314 2173.56,768.402 \n",
" 2174.51,401.65 2175.45,818.01 2176.39,850.324 2177.34,762.021 2178.28,1140.18 2179.22,808.501 2180.17,689.855 2181.11,793.577 2182.05,725.936 2183,615.049 \n",
" 2183.94,901.46 2184.88,697.009 2185.83,876.615 2186.77,788.043 2187.71,502.225 2188.66,579.038 2189.6,1039.6 2190.54,348.327 2191.49,547.186 2192.43,976.528 \n",
" 2193.37,832.298 2194.32,1016.31 2195.26,938.77 2196.2,804.843 2197.15,932.754 2198.09,861.007 2199.03,758.387 2199.98,811.88 2200.92,877.446 2201.86,663.562 \n",
" 2202.81,686.08 2203.75,533.781 2204.69,742.525 2205.64,467.101 2206.58,813.99 2207.52,1255.87 2208.47,1054.46 2209.41,958.137 2210.35,419.724 2211.29,1032.62 \n",
" 2212.24,910.254 2213.18,895.532 2214.12,713.844 2215.07,904.462 2216.01,750.589 2216.95,886.858 2217.9,708.576 2218.84,969.753 2219.78,425.833 2220.73,627.48 \n",
" 2221.67,795.448 2222.61,1022.67 2223.56,597.795 2224.5,672.899 2225.44,705.203 2226.39,727.6 2227.33,1130.6 2228.27,1024.83 2229.22,1182.32 2230.16,511.006 \n",
" 2231.1,563.62 2232.05,1144.71 2232.99,858.495 2233.93,710.437 2234.88,510.395 2235.82,873.165 2236.76,931.996 2237.71,680.235 2238.65,537.573 2239.59,1018.61 \n",
" 2240.54,1005.49 2241.48,507.112 2242.42,632.35 2243.37,839.858 2244.31,878.142 2245.25,872.019 2246.2,897.752 2247.14,604.107 2248.08,1030.47 2249.03,677.7 \n",
" 2249.97,1016.17 2250.91,851.383 2251.86,888.285 2252.8,948.244 2253.74,1019.11 2254.68,1092.17 2255.63,915.612 2256.57,612.18 2257.51,727.186 2258.46,825.038 \n",
" 2259.4,521.139 2260.34,766.961 2261.29,413.552 2262.23,976.995 2263.17,835.587 2264.12,659.64 2265.06,841.345 2266,782.561 2266.95,481.073 2267.89,588.5 \n",
" 2268.83,589.937 2269.78,621.859 2270.72,758.396 2271.66,590.928 2272.61,869.457 2273.55,1247.09 2274.49,711.969 2275.44,785.73 2276.38,912.286 2277.32,616.053 \n",
" 2278.27,770.93 2279.21,675.494 2280.15,644.214 2281.1,559.285 2282.04,563.13 2282.98,452.067 2283.93,1257.35 2284.87,924.163 2285.81,408.657 2286.76,822.758 \n",
" 2287.7,778.49 2288.64,785.549 2289.59,890.028 2290.53,870.434 2291.47,715.124 2292.42,905.431 2293.36,663.959 2294.3,652.657 2295.25,406.207 2296.19,806.734 \n",
" 2297.13,541.393 2298.08,1165.77 2299.02,675.867 2299.96,697.421 2300.9,746.366 2301.85,871.419 2302.79,406.854 2303.73,792.602 2304.68,862.469 2305.62,1089.4 \n",
" 2306.56,681.704 2307.51,724.286 2308.45,644.588 2309.39,499.439 2310.34,623.739 2311.28,755.345 2312.22,540.38 2313.17,862.697 2314.11,611.044 2315.05,668.324 \n",
" 2316,821.428 2316.94,558.08 2317.88,485.345 2318.83,495.023 2319.77,716.024 2320.71,1027.5 2321.66,837.647 2322.6,742.403 2323.54,941.431 2324.49,732.004 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.17,614.501 1383.11,614.501 1384.05,614.501 1385,614.501 1385.94,614.501 1386.88,614.501 1387.83,614.501 1388.77,614.501 1389.71,614.501 1390.66,614.501 \n",
" 1391.6,614.501 1392.54,614.501 1393.49,614.501 1394.43,614.501 1395.37,614.501 1396.32,614.501 1397.26,614.501 1398.2,614.501 1399.15,614.501 1400.09,614.501 \n",
" 1401.03,614.501 1401.98,614.501 1402.92,614.501 1403.86,614.501 1404.81,614.501 1405.75,614.501 1406.69,614.501 1407.64,614.501 1408.58,614.501 1409.52,614.501 \n",
" 1410.47,614.501 1411.41,614.501 1412.35,614.501 1413.3,614.501 1414.24,614.501 1415.18,614.501 1416.12,614.501 1417.07,614.501 1418.01,614.501 1418.95,614.501 \n",
" 1419.9,614.501 1420.84,614.501 1421.78,614.501 1422.73,614.501 1423.67,614.501 1424.61,614.501 1425.56,614.501 1426.5,614.501 1427.44,614.501 1428.39,614.501 \n",
" 1429.33,614.501 1430.27,614.501 1431.22,614.501 1432.16,614.501 1433.1,614.501 1434.05,614.501 1434.99,614.501 1435.93,614.501 1436.88,614.501 1437.82,614.501 \n",
" 1438.76,614.501 1439.71,614.501 1440.65,614.501 1441.59,614.501 1442.54,614.501 1443.48,614.501 1444.42,614.501 1445.37,614.501 1446.31,614.501 1447.25,614.501 \n",
" 1448.2,614.501 1449.14,614.501 1450.08,614.501 1451.03,614.501 1451.97,614.501 1452.91,614.501 1453.86,614.501 1454.8,614.501 1455.74,614.501 1456.69,614.501 \n",
" 1457.63,614.501 1458.57,614.501 1459.52,614.501 1460.46,614.501 1461.4,614.501 1462.34,614.501 1463.29,614.501 1464.23,614.501 1465.17,614.501 1466.12,614.501 \n",
" 1467.06,614.501 1468,614.501 1468.95,614.501 1469.89,614.501 1470.83,614.501 1471.78,614.501 1472.72,614.501 1473.66,614.501 1474.61,614.501 1475.55,614.501 \n",
" 1476.49,614.501 1477.44,614.501 1478.38,614.501 1479.32,614.501 1480.27,614.501 1481.21,614.501 1482.15,614.501 1483.1,614.501 1484.04,614.501 1484.98,614.501 \n",
" 1485.93,614.501 1486.87,614.501 1487.81,614.501 1488.76,614.501 1489.7,614.501 1490.64,614.501 1491.59,614.501 1492.53,614.501 1493.47,614.501 1494.42,614.501 \n",
" 1495.36,614.501 1496.3,614.501 1497.25,614.501 1498.19,614.501 1499.13,614.501 1500.08,614.501 1501.02,614.501 1501.96,614.501 1502.91,614.501 1503.85,614.501 \n",
" 1504.79,614.501 1505.73,614.501 1506.68,614.501 1507.62,614.501 1508.56,614.501 1509.51,614.501 1510.45,614.501 1511.39,614.501 1512.34,614.501 1513.28,614.501 \n",
" 1514.22,614.501 1515.17,614.501 1516.11,614.501 1517.05,614.501 1518,614.501 1518.94,614.501 1519.88,614.501 1520.83,614.501 1521.77,614.501 1522.71,614.501 \n",
" 1523.66,614.501 1524.6,614.501 1525.54,614.501 1526.49,614.501 1527.43,614.501 1528.37,614.501 1529.32,614.501 1530.26,614.501 1531.2,614.501 1532.15,614.501 \n",
" 1533.09,614.501 1534.03,614.501 1534.98,614.501 1535.92,614.501 1536.86,614.501 1537.81,614.501 1538.75,614.501 1539.69,614.501 1540.64,614.501 1541.58,614.501 \n",
" 1542.52,614.501 1543.47,614.501 1544.41,614.501 1545.35,614.501 1546.3,614.501 1547.24,614.501 1548.18,614.501 1549.12,614.501 1550.07,614.501 1551.01,614.501 \n",
" 1551.95,614.501 1552.9,614.501 1553.84,614.501 1554.78,614.501 1555.73,614.501 1556.67,614.501 1557.61,614.501 1558.56,614.501 1559.5,614.501 1560.44,614.501 \n",
" 1561.39,614.501 1562.33,614.501 1563.27,614.501 1564.22,614.501 1565.16,614.501 1566.1,614.501 1567.05,614.501 1567.99,614.501 1568.93,614.501 1569.88,614.501 \n",
" 1570.82,614.501 1571.76,614.501 1572.71,614.501 1573.65,614.501 1574.59,614.501 1575.54,614.501 1576.48,614.501 1577.42,614.501 1578.37,614.501 1579.31,614.501 \n",
" 1580.25,614.501 1581.2,614.501 1582.14,614.501 1583.08,614.501 1584.03,614.501 1584.97,614.501 1585.91,614.501 1586.86,614.501 1587.8,614.501 1588.74,614.501 \n",
" 1589.69,614.501 1590.63,614.501 1591.57,614.501 1592.51,614.501 1593.46,614.501 1594.4,614.501 1595.34,614.501 1596.29,614.501 1597.23,614.501 1598.17,614.501 \n",
" 1599.12,614.501 1600.06,614.501 1601,614.501 1601.95,614.501 1602.89,614.501 1603.83,614.501 1604.78,614.501 1605.72,614.501 1606.66,614.501 1607.61,614.501 \n",
" 1608.55,614.501 1609.49,614.501 1610.44,614.501 1611.38,614.501 1612.32,614.501 1613.27,614.501 1614.21,614.501 1615.15,614.501 1616.1,614.501 1617.04,614.501 \n",
" 1617.98,614.501 1618.93,614.501 1619.87,614.501 1620.81,614.501 1621.76,614.501 1622.7,614.501 1623.64,614.501 1624.59,614.501 1625.53,614.501 1626.47,614.501 \n",
" 1627.42,614.501 1628.36,614.501 1629.3,614.501 1630.25,614.501 1631.19,614.501 1632.13,614.501 1633.08,614.501 1634.02,614.501 1634.96,614.501 1635.91,614.501 \n",
" 1636.85,614.501 1637.79,614.501 1638.73,614.501 1639.68,614.501 1640.62,614.501 1641.56,614.501 1642.51,614.501 1643.45,614.501 1644.39,614.501 1645.34,614.501 \n",
" 1646.28,614.501 1647.22,614.501 1648.17,614.501 1649.11,614.501 1650.05,614.501 1651,614.501 1651.94,614.501 1652.88,614.501 1653.83,614.501 1654.77,614.501 \n",
" 1655.71,614.501 1656.66,614.501 1657.6,614.501 1658.54,614.501 1659.49,614.501 1660.43,614.501 1661.37,614.501 1662.32,614.501 1663.26,614.501 1664.2,614.501 \n",
" 1665.15,614.501 1666.09,614.501 1667.03,614.501 1667.98,614.501 1668.92,614.501 1669.86,614.501 1670.81,614.501 1671.75,614.501 1672.69,614.501 1673.64,614.501 \n",
" 1674.58,614.501 1675.52,614.501 1676.47,614.501 1677.41,614.501 1678.35,614.501 1679.3,614.501 1680.24,614.501 1681.18,614.501 1682.12,614.501 1683.07,614.501 \n",
" 1684.01,614.501 1684.95,614.501 1685.9,614.501 1686.84,614.501 1687.78,614.501 1688.73,614.501 1689.67,614.501 1690.61,614.501 1691.56,614.501 1692.5,614.501 \n",
" 1693.44,614.501 1694.39,614.501 1695.33,614.501 1696.27,614.501 1697.22,614.501 1698.16,614.501 1699.1,614.501 1700.05,614.501 1700.99,614.501 1701.93,614.501 \n",
" 1702.88,614.501 1703.82,614.501 1704.76,614.501 1705.71,614.501 1706.65,614.501 1707.59,614.501 1708.54,614.501 1709.48,614.501 1710.42,614.501 1711.37,614.501 \n",
" 1712.31,614.501 1713.25,614.501 1714.2,614.501 1715.14,614.501 1716.08,614.501 1717.03,614.501 1717.97,614.501 1718.91,614.501 1719.86,614.501 1720.8,614.501 \n",
" 1721.74,614.501 1722.69,614.501 1723.63,614.501 1724.57,614.501 1725.51,614.501 1726.46,614.501 1727.4,614.501 1728.34,614.501 1729.29,614.501 1730.23,614.501 \n",
" 1731.17,614.501 1732.12,614.501 1733.06,614.501 1734,614.501 1734.95,614.501 1735.89,614.501 1736.83,614.501 1737.78,614.501 1738.72,614.501 1739.66,614.501 \n",
" 1740.61,614.501 1741.55,614.501 1742.49,614.501 1743.44,614.501 1744.38,614.501 1745.32,614.501 1746.27,614.501 1747.21,614.501 1748.15,614.501 1749.1,614.501 \n",
" 1750.04,614.501 1750.98,614.501 1751.93,614.501 1752.87,614.501 1753.81,614.501 1754.76,614.501 1755.7,614.501 1756.64,614.501 1757.59,614.501 1758.53,614.501 \n",
" 1759.47,614.501 1760.42,614.501 1761.36,614.501 1762.3,614.501 1763.25,614.501 1764.19,614.501 1765.13,614.501 1766.08,614.501 1767.02,614.501 1767.96,614.501 \n",
" 1768.9,614.501 1769.85,614.501 1770.79,614.501 1771.73,614.501 1772.68,614.501 1773.62,614.501 1774.56,614.501 1775.51,614.501 1776.45,614.501 1777.39,614.501 \n",
" 1778.34,614.501 1779.28,614.501 1780.22,614.501 1781.17,614.501 1782.11,614.501 1783.05,614.501 1784,614.501 1784.94,614.501 1785.88,614.501 1786.83,614.501 \n",
" 1787.77,614.501 1788.71,614.501 1789.66,614.501 1790.6,614.501 1791.54,614.501 1792.49,614.501 1793.43,614.501 1794.37,614.501 1795.32,614.501 1796.26,614.501 \n",
" 1797.2,614.501 1798.15,614.501 1799.09,614.501 1800.03,614.501 1800.98,614.501 1801.92,614.501 1802.86,614.501 1803.81,614.501 1804.75,614.501 1805.69,614.501 \n",
" 1806.64,614.501 1807.58,614.501 1808.52,614.501 1809.47,614.501 1810.41,614.501 1811.35,614.501 1812.3,614.501 1813.24,614.501 1814.18,614.501 1815.12,614.501 \n",
" 1816.07,614.501 1817.01,614.501 1817.95,614.501 1818.9,614.501 1819.84,614.501 1820.78,614.501 1821.73,614.501 1822.67,614.501 1823.61,614.501 1824.56,614.501 \n",
" 1825.5,614.501 1826.44,614.501 1827.39,614.501 1828.33,614.501 1829.27,614.501 1830.22,614.501 1831.16,614.501 1832.1,614.501 1833.05,614.501 1833.99,614.501 \n",
" 1834.93,614.501 1835.88,614.501 1836.82,614.501 1837.76,614.501 1838.71,614.501 1839.65,614.501 1840.59,614.501 1841.54,614.501 1842.48,614.501 1843.42,614.501 \n",
" 1844.37,614.501 1845.31,614.501 1846.25,614.501 1847.2,614.501 1848.14,614.501 1849.08,614.501 1850.03,614.501 1850.97,614.501 1851.91,614.501 1852.86,614.501 \n",
" 1853.8,614.501 1854.74,614.501 1855.69,614.501 1856.63,614.501 1857.57,614.501 1858.51,614.501 1859.46,614.501 1860.4,614.501 1861.34,614.501 1862.29,614.501 \n",
" 1863.23,614.501 1864.17,614.501 1865.12,614.501 1866.06,614.501 1867,614.501 1867.95,614.501 1868.89,614.501 1869.83,614.501 1870.78,614.501 1871.72,614.501 \n",
" 1872.66,614.501 1873.61,614.501 1874.55,614.501 1875.49,614.501 1876.44,614.501 1877.38,614.501 1878.32,614.501 1879.27,614.501 1880.21,614.501 1881.15,614.501 \n",
" 1882.1,614.501 1883.04,614.501 1883.98,614.501 1884.93,614.501 1885.87,614.501 1886.81,614.501 1887.76,614.501 1888.7,614.501 1889.64,614.501 1890.59,614.501 \n",
" 1891.53,614.501 1892.47,614.501 1893.42,614.501 1894.36,614.501 1895.3,614.501 1896.25,614.501 1897.19,614.501 1898.13,614.501 1899.08,614.501 1900.02,614.501 \n",
" 1900.96,614.501 1901.9,614.501 1902.85,614.501 1903.79,614.501 1904.73,614.501 1905.68,614.501 1906.62,614.501 1907.56,614.501 1908.51,614.501 1909.45,614.501 \n",
" 1910.39,614.501 1911.34,614.501 1912.28,614.501 1913.22,614.501 1914.17,614.501 1915.11,614.501 1916.05,614.501 1917,614.501 1917.94,614.501 1918.88,614.501 \n",
" 1919.83,614.501 1920.77,614.501 1921.71,614.501 1922.66,614.501 1923.6,614.501 1924.54,614.501 1925.49,614.501 1926.43,614.501 1927.37,614.501 1928.32,614.501 \n",
" 1929.26,614.501 1930.2,614.501 1931.15,614.501 1932.09,614.501 1933.03,614.501 1933.98,614.501 1934.92,614.501 1935.86,614.501 1936.81,614.501 1937.75,614.501 \n",
" 1938.69,614.501 1939.64,614.501 1940.58,614.501 1941.52,614.501 1942.47,614.501 1943.41,614.501 1944.35,614.501 1945.29,614.501 1946.24,614.501 1947.18,614.501 \n",
" 1948.12,614.501 1949.07,614.501 1950.01,614.501 1950.95,614.501 1951.9,614.501 1952.84,614.501 1953.78,614.501 1954.73,614.501 1955.67,614.501 1956.61,614.501 \n",
" 1957.56,614.501 1958.5,614.501 1959.44,614.501 1960.39,614.501 1961.33,614.501 1962.27,614.501 1963.22,614.501 1964.16,614.501 1965.1,614.501 1966.05,614.501 \n",
" 1966.99,614.501 1967.93,614.501 1968.88,614.501 1969.82,614.501 1970.76,614.501 1971.71,614.501 1972.65,614.501 1973.59,614.501 1974.54,614.501 1975.48,614.501 \n",
" 1976.42,614.501 1977.37,614.501 1978.31,614.501 1979.25,614.501 1980.2,614.501 1981.14,614.501 1982.08,614.501 1983.03,614.501 1983.97,614.501 1984.91,614.501 \n",
" 1985.86,614.501 1986.8,614.501 1987.74,614.501 1988.69,614.501 1989.63,614.501 1990.57,614.501 1991.51,614.501 1992.46,614.501 1993.4,614.501 1994.34,614.501 \n",
" 1995.29,614.501 1996.23,614.501 1997.17,614.501 1998.12,614.501 1999.06,614.501 2000,614.501 2000.95,614.501 2001.89,614.501 2002.83,614.501 2003.78,614.501 \n",
" 2004.72,614.501 2005.66,614.501 2006.61,614.501 2007.55,614.501 2008.49,614.501 2009.44,614.501 2010.38,614.501 2011.32,614.501 2012.27,614.501 2013.21,614.501 \n",
" 2014.15,614.501 2015.1,614.501 2016.04,614.501 2016.98,614.501 2017.93,614.501 2018.87,614.501 2019.81,614.501 2020.76,614.501 2021.7,614.501 2022.64,614.501 \n",
" 2023.59,614.501 2024.53,614.501 2025.47,614.501 2026.42,614.501 2027.36,614.501 2028.3,614.501 2029.25,614.501 2030.19,614.501 2031.13,614.501 2032.08,614.501 \n",
" 2033.02,614.501 2033.96,614.501 2034.9,614.501 2035.85,614.501 2036.79,614.501 2037.73,614.501 2038.68,614.501 2039.62,614.501 2040.56,614.501 2041.51,614.501 \n",
" 2042.45,614.501 2043.39,614.501 2044.34,614.501 2045.28,614.501 2046.22,614.501 2047.17,614.501 2048.11,614.501 2049.05,614.501 2050,614.501 2050.94,614.501 \n",
" 2051.88,614.501 2052.83,614.501 2053.77,614.501 2054.71,614.501 2055.66,614.501 2056.6,614.501 2057.54,614.501 2058.49,614.501 2059.43,614.501 2060.37,614.501 \n",
" 2061.32,614.501 2062.26,614.501 2063.2,614.501 2064.15,614.501 2065.09,614.501 2066.03,614.501 2066.98,614.501 2067.92,614.501 2068.86,614.501 2069.81,614.501 \n",
" 2070.75,614.501 2071.69,614.501 2072.64,614.501 2073.58,614.501 2074.52,614.501 2075.47,614.501 2076.41,614.501 2077.35,614.501 2078.29,614.501 2079.24,614.501 \n",
" 2080.18,614.501 2081.12,614.501 2082.07,614.501 2083.01,614.501 2083.95,614.501 2084.9,614.501 2085.84,614.501 2086.78,614.501 2087.73,614.501 2088.67,614.501 \n",
" 2089.61,614.501 2090.56,614.501 2091.5,614.501 2092.44,614.501 2093.39,614.501 2094.33,614.501 2095.27,614.501 2096.22,614.501 2097.16,614.501 2098.1,614.501 \n",
" 2099.05,614.501 2099.99,614.501 2100.93,614.501 2101.88,614.501 2102.82,614.501 2103.76,614.501 2104.71,614.501 2105.65,614.501 2106.59,614.501 2107.54,614.501 \n",
" 2108.48,614.501 2109.42,614.501 2110.37,614.501 2111.31,614.501 2112.25,614.501 2113.2,614.501 2114.14,614.501 2115.08,614.501 2116.03,614.501 2116.97,614.501 \n",
" 2117.91,614.501 2118.86,614.501 2119.8,614.501 2120.74,614.501 2121.68,614.501 2122.63,614.501 2123.57,614.501 2124.51,614.501 2125.46,614.501 2126.4,614.501 \n",
" 2127.34,614.501 2128.29,614.501 2129.23,614.501 2130.17,614.501 2131.12,614.501 2132.06,614.501 2133,614.501 2133.95,614.501 2134.89,614.501 2135.83,614.501 \n",
" 2136.78,614.501 2137.72,614.501 2138.66,614.501 2139.61,614.501 2140.55,614.501 2141.49,614.501 2142.44,614.501 2143.38,614.501 2144.32,614.501 2145.27,614.501 \n",
" 2146.21,614.501 2147.15,614.501 2148.1,614.501 2149.04,614.501 2149.98,614.501 2150.93,614.501 2151.87,614.501 2152.81,614.501 2153.76,614.501 2154.7,614.501 \n",
" 2155.64,614.501 2156.59,614.501 2157.53,614.501 2158.47,614.501 2159.42,614.501 2160.36,614.501 2161.3,614.501 2162.25,614.501 2163.19,614.501 2164.13,614.501 \n",
" 2165.08,614.501 2166.02,614.501 2166.96,614.501 2167.9,614.501 2168.85,614.501 2169.79,614.501 2170.73,614.501 2171.68,614.501 2172.62,614.501 2173.56,614.501 \n",
" 2174.51,614.501 2175.45,614.501 2176.39,614.501 2177.34,614.501 2178.28,614.501 2179.22,614.501 2180.17,614.501 2181.11,614.501 2182.05,614.501 2183,614.501 \n",
" 2183.94,614.501 2184.88,614.501 2185.83,614.501 2186.77,614.501 2187.71,614.501 2188.66,614.501 2189.6,614.501 2190.54,614.501 2191.49,614.501 2192.43,614.501 \n",
" 2193.37,614.501 2194.32,614.501 2195.26,614.501 2196.2,614.501 2197.15,614.501 2198.09,614.501 2199.03,614.501 2199.98,614.501 2200.92,614.501 2201.86,614.501 \n",
" 2202.81,614.501 2203.75,614.501 2204.69,614.501 2205.64,614.501 2206.58,614.501 2207.52,614.501 2208.47,614.501 2209.41,614.501 2210.35,614.501 2211.29,614.501 \n",
" 2212.24,614.501 2213.18,614.501 2214.12,614.501 2215.07,614.501 2216.01,614.501 2216.95,614.501 2217.9,614.501 2218.84,614.501 2219.78,614.501 2220.73,614.501 \n",
" 2221.67,614.501 2222.61,614.501 2223.56,614.501 2224.5,614.501 2225.44,614.501 2226.39,614.501 2227.33,614.501 2228.27,614.501 2229.22,614.501 2230.16,614.501 \n",
" 2231.1,614.501 2232.05,614.501 2232.99,614.501 2233.93,614.501 2234.88,614.501 2235.82,614.501 2236.76,614.501 2237.71,614.501 2238.65,614.501 2239.59,614.501 \n",
" 2240.54,614.501 2241.48,614.501 2242.42,614.501 2243.37,614.501 2244.31,614.501 2245.25,614.501 2246.2,614.501 2247.14,614.501 2248.08,614.501 2249.03,614.501 \n",
" 2249.97,614.501 2250.91,614.501 2251.86,614.501 2252.8,614.501 2253.74,614.501 2254.68,614.501 2255.63,614.501 2256.57,614.501 2257.51,614.501 2258.46,614.501 \n",
" 2259.4,614.501 2260.34,614.501 2261.29,614.501 2262.23,614.501 2263.17,614.501 2264.12,614.501 2265.06,614.501 2266,614.501 2266.95,614.501 2267.89,614.501 \n",
" 2268.83,614.501 2269.78,614.501 2270.72,614.501 2271.66,614.501 2272.61,614.501 2273.55,614.501 2274.49,614.501 2275.44,614.501 2276.38,614.501 2277.32,614.501 \n",
" 2278.27,614.501 2279.21,614.501 2280.15,614.501 2281.1,614.501 2282.04,614.501 2282.98,614.501 2283.93,614.501 2284.87,614.501 2285.81,614.501 2286.76,614.501 \n",
" 2287.7,614.501 2288.64,614.501 2289.59,614.501 2290.53,614.501 2291.47,614.501 2292.42,614.501 2293.36,614.501 2294.3,614.501 2295.25,614.501 2296.19,614.501 \n",
" 2297.13,614.501 2298.08,614.501 2299.02,614.501 2299.96,614.501 2300.9,614.501 2301.85,614.501 2302.79,614.501 2303.73,614.501 2304.68,614.501 2305.62,614.501 \n",
" 2306.56,614.501 2307.51,614.501 2308.45,614.501 2309.39,614.501 2310.34,614.501 2311.28,614.501 2312.22,614.501 2313.17,614.501 2314.11,614.501 2315.05,614.501 \n",
" 2316,614.501 2316.94,614.501 2317.88,614.501 2318.83,614.501 2319.77,614.501 2320.71,614.501 2321.66,614.501 2322.6,614.501 2323.54,614.501 2324.49,614.501 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7303)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.17,635.547 1383.11,638.23 1384.05,740.926 1385,731.825 1385.94,729.42 1386.88,738.375 1387.83,704.425 1388.77,720.461 1389.71,768.419 1390.66,738.015 \n",
" 1391.6,765.714 1392.54,772.841 1393.49,762.49 1394.43,754.339 1395.37,755.33 1396.32,755.755 1397.26,752.811 1398.2,754.244 1399.15,745.031 1400.09,741.386 \n",
" 1401.03,738.303 1401.98,746.181 1402.92,740.446 1403.86,760.531 1404.81,763.207 1405.75,762.798 1406.69,776.085 1407.64,770.346 1408.58,770.033 1409.52,765.827 \n",
" 1410.47,768.001 1411.41,768.232 1412.35,761.302 1413.3,764.184 1414.24,756.261 1415.18,763.835 1416.12,774.882 1417.07,768.877 1418.01,754.593 1418.95,753.582 \n",
" 1419.9,754.253 1420.84,751.162 1421.78,747.494 1422.73,751.63 1423.67,753.359 1424.61,759.769 1425.56,758.993 1426.5,755.433 1427.44,749.419 1428.39,749.915 \n",
" 1429.33,745.133 1430.27,740.735 1431.22,734.38 1432.16,738.24 1433.1,742.426 1434.05,744.465 1434.99,741.301 1435.93,733.448 1436.88,731.593 1437.82,734.167 \n",
" 1438.76,739.694 1439.71,737.438 1440.65,743.582 1441.59,746.373 1442.54,747.841 1443.48,750.687 1444.42,751.773 1445.37,754.513 1446.31,761.133 1447.25,762.141 \n",
" 1448.2,762.06 1449.14,761.012 1450.08,759.92 1451.03,764.313 1451.97,763.403 1452.91,762.45 1453.86,760.926 1454.8,761.754 1455.74,763.935 1456.69,761.764 \n",
" 1457.63,759.102 1458.57,760.92 1459.52,759.626 1460.46,759.9 1461.4,761.72 1462.34,759.095 1463.29,759.596 1464.23,760.859 1465.17,760.537 1466.12,762.407 \n",
" 1467.06,756.698 1468,758.61 1468.95,759.315 1469.89,759.679 1470.83,759.896 1471.78,760.064 1472.72,762.98 1473.66,760.744 1474.61,763.401 1475.55,764.51 \n",
" 1476.49,763.582 1477.44,764.661 1478.38,759.605 1479.32,760.666 1480.27,758.212 1481.21,756.448 1482.15,756.505 1483.1,759.138 1484.04,761.674 1484.98,761.749 \n",
" 1485.93,761.324 1486.87,762.486 1487.81,763.286 1488.76,761.887 1489.7,764.242 1490.64,763.03 1491.59,765.3 1492.53,766.4 1493.47,767.733 1494.42,768.065 \n",
" 1495.36,769.398 1496.3,770.523 1497.25,769.548 1498.19,769.256 1499.13,768.369 1500.08,767.59 1501.02,765.758 1501.96,766.058 1502.91,765.299 1503.85,767.768 \n",
" 1504.79,770.548 1505.73,770.26 1506.68,770.43 1507.62,773.241 1508.56,772.053 1509.51,772.455 1510.45,771.072 1511.39,772.792 1512.34,770.705 1513.28,769.515 \n",
" 1514.22,769.983 1515.17,769.386 1516.11,768.8 1517.05,769.702 1518,769.362 1518.94,770.115 1519.88,768.62 1520.83,770.685 1521.77,768.572 1522.71,767.923 \n",
" 1523.66,767.521 1524.6,768.005 1525.54,770.314 1526.49,772.319 1527.43,773.158 1528.37,774.273 1529.32,771.917 1530.26,772.695 1531.2,774.12 1532.15,774.376 \n",
" 1533.09,774.012 1534.03,774.986 1534.98,771.711 1535.92,772.61 1536.86,773.9 1537.81,775.114 1538.75,774.074 1539.69,774.397 1540.64,774.209 1541.58,773.88 \n",
" 1542.52,773.656 1543.47,773.221 1544.41,775.22 1545.35,774.402 1546.3,775.498 1547.24,774.692 1548.18,775.5 1549.12,778.029 1550.07,777.296 1551.01,778.099 \n",
" 1551.95,777.763 1552.9,778.705 1553.84,779.084 1554.78,778.87 1555.73,779.144 1556.67,779.463 1557.61,778.571 1558.56,776.81 1559.5,777.071 1560.44,775.545 \n",
" 1561.39,773.586 1562.33,772.576 1563.27,773.132 1564.22,773.877 1565.16,773.677 1566.1,773.094 1567.05,772.814 1567.99,771.92 1568.93,771.58 1569.88,773.772 \n",
" 1570.82,771.96 1571.76,771.702 1572.71,771.993 1573.65,771.051 1574.59,771.785 1575.54,771.823 1576.48,771.678 1577.42,772.808 1578.37,772.672 1579.31,772.826 \n",
" 1580.25,773.019 1581.2,773.839 1582.14,774.642 1583.08,775.054 1584.03,775.642 1584.97,775.426 1585.91,774.575 1586.86,775.166 1587.8,773.998 1588.74,773.579 \n",
" 1589.69,773.661 1590.63,773.447 1591.57,773.39 1592.51,773.992 1593.46,773.626 1594.4,773.776 1595.34,772.039 1596.29,772.201 1597.23,772.701 1598.17,773.521 \n",
" 1599.12,773.158 1600.06,772.463 1601,771.599 1601.95,771.022 1602.89,769.603 1603.83,768.485 1604.78,766.816 1605.72,766.289 1606.66,766.462 1607.61,768.089 \n",
" 1608.55,768.657 1609.49,768.726 1610.44,768.775 1611.38,769.717 1612.32,769.422 1613.27,770.151 1614.21,769.46 1615.15,768.308 1616.1,767.539 1617.04,768.166 \n",
" 1617.98,768.915 1618.93,767.539 1619.87,766.869 1620.81,765.983 1621.76,765.485 1622.7,764.546 1623.64,765.729 1624.59,768.368 1625.53,767.962 1626.47,767.842 \n",
" 1627.42,767.706 1628.36,768.648 1629.3,770.543 1630.25,771.199 1631.19,771.337 1632.13,772.883 1633.08,772.595 1634.02,772.692 1634.96,773.57 1635.91,773.185 \n",
" 1636.85,772.802 1637.79,773.748 1638.73,773.5 1639.68,774.002 1640.62,774.057 1641.56,775.12 1642.51,774.472 1643.45,773.342 1644.39,773.665 1645.34,774.762 \n",
" 1646.28,776.764 1647.22,776.108 1648.17,775.956 1649.11,775.646 1650.05,775.596 1651,775.679 1651.94,775.874 1652.88,776.1 1653.83,776.185 1654.77,776.414 \n",
" 1655.71,775.838 1656.66,775.672 1657.6,775.121 1658.54,774.857 1659.49,773.799 1660.43,773.031 1661.37,772.385 1662.32,771.839 1663.26,771.508 1664.2,771.63 \n",
" 1665.15,772.361 1666.09,771.651 1667.03,770.078 1667.98,770.753 1668.92,769.821 1669.86,770.587 1670.81,769.782 1671.75,770.626 1672.69,770.708 1673.64,771.053 \n",
" 1674.58,770.739 1675.52,770.572 1676.47,770.128 1677.41,768.912 1678.35,768.966 1679.3,769.105 1680.24,769.488 1681.18,769.623 1682.12,769.102 1683.07,768.452 \n",
" 1684.01,768.833 1684.95,768.469 1685.9,768.556 1686.84,768.248 1687.78,768.631 1688.73,769.187 1689.67,769.127 1690.61,768.632 1691.56,768.88 1692.5,768.295 \n",
" 1693.44,767.567 1694.39,767.727 1695.33,767.681 1696.27,767.947 1697.22,768.14 1698.16,767.679 1699.1,768.04 1700.05,767.891 1700.99,768.671 1701.93,768.739 \n",
" 1702.88,768.927 1703.82,767.96 1704.76,766.986 1705.71,768.175 1706.65,768.388 1707.59,767.226 1708.54,767.241 1709.48,767.897 1710.42,767.236 1711.37,766.982 \n",
" 1712.31,766.476 1713.25,766.897 1714.2,767.367 1715.14,767.551 1716.08,768.518 1717.03,767.853 1717.97,767.69 1718.91,767.504 1719.86,768.016 1720.8,768.336 \n",
" 1721.74,767.371 1722.69,766.846 1723.63,766.982 1724.57,766.814 1725.51,766.548 1726.46,767.019 1727.4,766.9 1728.34,766.746 1729.29,765.97 1730.23,765.696 \n",
" 1731.17,766.436 1732.12,765.818 1733.06,765.458 1734,765.674 1734.95,765.573 1735.89,764.449 1736.83,764.017 1737.78,764.439 1738.72,764.144 1739.66,763.828 \n",
" 1740.61,763.451 1741.55,764.276 1742.49,764.292 1743.44,763.948 1744.38,763.836 1745.32,763.481 1746.27,762.543 1747.21,763.063 1748.15,762.782 1749.1,762.971 \n",
" 1750.04,762.972 1750.98,762.464 1751.93,762.549 1752.87,762.045 1753.81,761.24 1754.76,761.887 1755.7,761.593 1756.64,761.656 1757.59,761.542 1758.53,761.349 \n",
" 1759.47,761.469 1760.42,761.263 1761.36,760.694 1762.3,760.645 1763.25,759.35 1764.19,759.012 1765.13,758.402 1766.08,758.44 1767.02,758.641 1767.96,757.924 \n",
" 1768.9,758.151 1769.85,757.679 1770.79,757.066 1771.73,756.646 1772.68,756.828 1773.62,756.435 1774.56,756.262 1775.51,756.277 1776.45,757.263 1777.39,757.166 \n",
" 1778.34,756.998 1779.28,757.236 1780.22,757.031 1781.17,756.811 1782.11,756.946 1783.05,756.455 1784,756.753 1784.94,756.372 1785.88,755.725 1786.83,755.845 \n",
" 1787.77,756.388 1788.71,756.158 1789.66,756.543 1790.6,756.261 1791.54,755.423 1792.49,755.406 1793.43,755.669 1794.37,755.54 1795.32,755.393 1796.26,754.748 \n",
" 1797.2,754.447 1798.15,754.706 1799.09,755.11 1800.03,755.404 1800.98,754.654 1801.92,754.056 1802.86,754.693 1803.81,755.16 1804.75,755.044 1805.69,755.62 \n",
" 1806.64,755.214 1807.58,754.816 1808.52,755.213 1809.47,754.759 1810.41,754.393 1811.35,754.242 1812.3,754.375 1813.24,753.77 1814.18,753.232 1815.12,753.301 \n",
" 1816.07,753.73 1817.01,752.63 1817.95,753.374 1818.9,754.354 1819.84,754.622 1820.78,754.567 1821.73,755.58 1822.67,755.658 1823.61,755.412 1824.56,755.812 \n",
" 1825.5,756.282 1826.44,755.969 1827.39,756.255 1828.33,756.063 1829.27,755.827 1830.22,755.718 1831.16,756.387 1832.1,756.531 1833.05,757.21 1833.99,757.393 \n",
" 1834.93,758.49 1835.88,759.132 1836.82,758.877 1837.76,758.469 1838.71,758.875 1839.65,759.094 1840.59,759.203 1841.54,759 1842.48,759.442 1843.42,760.064 \n",
" 1844.37,760.145 1845.31,760.676 1846.25,760.13 1847.2,759.677 1848.14,759.93 1849.08,760.375 1850.03,760.765 1850.97,760.907 1851.91,760.948 1852.86,760.943 \n",
" 1853.8,760.672 1854.74,760.924 1855.69,761.585 1856.63,762.042 1857.57,762.228 1858.51,762.735 1859.46,763.019 1860.4,762.969 1861.34,762.587 1862.29,762.308 \n",
" 1863.23,761.93 1864.17,761.617 1865.12,761.749 1866.06,761.568 1867,762.003 1867.95,762.076 1868.89,762.155 1869.83,761.783 1870.78,761.122 1871.72,761.452 \n",
" 1872.66,761.351 1873.61,761.068 1874.55,761.039 1875.49,761.434 1876.44,761.11 1877.38,761.04 1878.32,761.573 1879.27,761.696 1880.21,761.35 1881.15,760.931 \n",
" 1882.1,760.564 1883.04,760.353 1883.98,760.24 1884.93,760.832 1885.87,760.748 1886.81,760.246 1887.76,760.14 1888.7,760.231 1889.64,760.179 1890.59,759.885 \n",
" 1891.53,759.544 1892.47,759.903 1893.42,759.895 1894.36,759.883 1895.3,759.517 1896.25,759.752 1897.19,760.159 1898.13,760.564 1899.08,760.772 1900.02,760.397 \n",
" 1900.96,760.616 1901.9,761.515 1902.85,761.651 1903.79,762.173 1904.73,762.246 1905.68,762.184 1906.62,762.171 1907.56,762.915 1908.51,762.872 1909.45,762.572 \n",
" 1910.39,762.269 1911.34,761.877 1912.28,762.055 1913.22,762.239 1914.17,762.285 1915.11,762.456 1916.05,761.943 1917,762.198 1917.94,762.753 1918.88,763.532 \n",
" 1919.83,762.785 1920.77,763.532 1921.71,763.443 1922.66,763.838 1923.6,763.309 1924.54,762.69 1925.49,762.588 1926.43,762.423 1927.37,762.524 1928.32,762.575 \n",
" 1929.26,762.419 1930.2,762.095 1931.15,762.611 1932.09,762.987 1933.03,763.515 1933.98,763.321 1934.92,763.423 1935.86,763.669 1936.81,763.863 1937.75,764.063 \n",
" 1938.69,764.134 1939.64,764.516 1940.58,765.17 1941.52,765.342 1942.47,764.961 1943.41,765.168 1944.35,765.656 1945.29,765.085 1946.24,765.357 1947.18,765.161 \n",
" 1948.12,765.356 1949.07,765.54 1950.01,765.387 1950.95,765.24 1951.9,765.512 1952.84,765.277 1953.78,765.371 1954.73,765.745 1955.67,765.836 1956.61,765.952 \n",
" 1957.56,765.913 1958.5,765.674 1959.44,765.25 1960.39,765.193 1961.33,765.377 1962.27,765.266 1963.22,765.052 1964.16,765.107 1965.1,765.314 1966.05,765.095 \n",
" 1966.99,764.973 1967.93,765.601 1968.88,765.645 1969.82,765.567 1970.76,765.389 1971.71,765.28 1972.65,765.138 1973.59,765.175 1974.54,764.963 1975.48,765.558 \n",
" 1976.42,764.981 1977.37,764.957 1978.31,765.091 1979.25,765.002 1980.2,764.687 1981.14,765.356 1982.08,765.741 1983.03,765.418 1983.97,765.056 1984.91,764.986 \n",
" 1985.86,765.071 1986.8,765.201 1987.74,765.23 1988.69,765.158 1989.63,765.288 1990.57,765.713 1991.51,765.665 1992.46,765.893 1993.4,765.504 1994.34,764.64 \n",
" 1995.29,764.645 1996.23,765.34 1997.17,765.111 1998.12,764.759 1999.06,764.579 2000,764.677 2000.95,765.16 2001.89,765.223 2002.83,765.459 2003.78,765.432 \n",
" 2004.72,765.36 2005.66,765.167 2006.61,765.334 2007.55,765.276 2008.49,766.119 2009.44,765.85 2010.38,765.566 2011.32,765.304 2012.27,765.395 2013.21,765.477 \n",
" 2014.15,765.176 2015.1,765.448 2016.04,765.462 2016.98,765.312 2017.93,765.554 2018.87,765.505 2019.81,765.111 2020.76,764.706 2021.7,763.709 2022.64,763.637 \n",
" 2023.59,763.38 2024.53,763.732 2025.47,763.826 2026.42,763.577 2027.36,763.899 2028.3,764.074 2029.25,763.723 2030.19,763.494 2031.13,763.634 2032.08,763.853 \n",
" 2033.02,763.152 2033.96,763.398 2034.9,763.769 2035.85,763.316 2036.79,762.904 2037.73,762.282 2038.68,762.088 2039.62,762.704 2040.56,762.839 2041.51,762.648 \n",
" 2042.45,762.313 2043.39,762.411 2044.34,763.039 2045.28,762.868 2046.22,762.534 2047.17,762.572 2048.11,762.284 2049.05,761.485 2050,761.41 2050.94,761.671 \n",
" 2051.88,761.927 2052.83,762.096 2053.77,762.44 2054.71,762.66 2055.66,762.291 2056.6,762.04 2057.54,762.088 2058.49,762.04 2059.43,761.58 2060.37,761.659 \n",
" 2061.32,762.112 2062.26,761.731 2063.2,761.664 2064.15,761.634 2065.09,761.634 2066.03,761.041 2066.98,761.158 2067.92,760.714 2068.86,760.622 2069.81,760.805 \n",
" 2070.75,760.795 2071.69,760.205 2072.64,760.108 2073.58,759.476 2074.52,758.849 2075.47,759.067 2076.41,758.779 2077.35,759.067 2078.29,759.16 2079.24,759.166 \n",
" 2080.18,759.79 2081.12,759.62 2082.07,759.7 2083.01,759.783 2083.95,760.469 2084.9,760.773 2085.84,760.472 2086.78,760.635 2087.73,761.175 2088.67,761.613 \n",
" 2089.61,762.136 2090.56,762.353 2091.5,761.659 2092.44,761.267 2093.39,761.875 2094.33,761.934 2095.27,761.642 2096.22,761.706 2097.16,761.383 2098.1,761.202 \n",
" 2099.05,761.022 2099.99,761.123 2100.93,761.133 2101.88,760.746 2102.82,760.787 2103.76,760.635 2104.71,760.279 2105.65,760.695 2106.59,760.616 2107.54,761.076 \n",
" 2108.48,761.187 2109.42,761.488 2110.37,761.556 2111.31,761.833 2112.25,761.65 2113.2,761.85 2114.14,762.09 2115.08,762.051 2116.03,762.027 2116.97,762.278 \n",
" 2117.91,761.728 2118.86,762.136 2119.8,761.764 2120.74,761.719 2121.68,761.526 2122.63,761.232 2123.57,761.446 2124.51,761.144 2125.46,761.409 2126.4,761.549 \n",
" 2127.34,761.568 2128.29,761.697 2129.23,761.421 2130.17,761.271 2131.12,761.948 2132.06,762.119 2133,762.03 2133.95,762.313 2134.89,762.182 2135.83,762.162 \n",
" 2136.78,762.178 2137.72,762.465 2138.66,762.687 2139.61,762.781 2140.55,762.698 2141.49,762.565 2142.44,761.941 2143.38,761.892 2144.32,761.869 2145.27,761.552 \n",
" 2146.21,761.643 2147.15,761.634 2148.1,761.486 2149.04,761.527 2149.98,761.646 2150.93,761.866 2151.87,762.065 2152.81,761.955 2153.76,761.939 2154.7,761.768 \n",
" 2155.64,762.108 2156.59,761.947 2157.53,761.832 2158.47,761.926 2159.42,761.446 2160.36,761.178 2161.3,760.715 2162.25,760.992 2163.19,761.042 2164.13,761.1 \n",
" 2165.08,760.938 2166.02,761.277 2166.96,761.31 2167.9,761.424 2168.85,761.893 2169.79,762.279 2170.73,762.341 2171.68,762.634 2172.62,762.501 2173.56,762.508 \n",
" 2174.51,762.079 2175.45,762.145 2176.39,762.25 2177.34,762.25 2178.28,762.697 2179.22,762.751 2180.17,762.665 2181.11,762.702 2182.05,762.658 2183,762.485 \n",
" 2183.94,762.648 2184.88,762.571 2185.83,762.705 2186.77,762.734 2187.71,762.43 2188.66,762.215 2189.6,762.539 2190.54,762.056 2191.49,761.806 2192.43,762.056 \n",
" 2193.37,762.137 2194.32,762.432 2195.26,762.637 2196.2,762.685 2197.15,762.882 2198.09,762.995 2199.03,762.99 2199.98,763.046 2200.92,763.178 2201.86,763.063 \n",
" 2202.81,762.975 2203.75,762.712 2204.69,762.689 2205.64,762.351 2206.58,762.41 2207.52,762.973 2208.47,763.306 2209.41,763.528 2210.35,763.136 2211.29,763.443 \n",
" 2212.24,763.609 2213.18,763.759 2214.12,763.702 2215.07,763.862 2216.01,763.847 2216.95,763.985 2217.9,763.923 2218.84,764.155 2219.78,763.774 2220.73,763.621 \n",
" 2221.67,763.657 2222.61,763.947 2223.56,763.761 2224.5,763.659 2225.44,763.594 2226.39,763.554 2227.33,763.963 2228.27,764.254 2229.22,764.719 2230.16,764.437 \n",
" 2231.1,764.214 2232.05,764.636 2232.99,764.74 2233.93,764.68 2234.88,764.399 2235.82,764.519 2236.76,764.703 2237.71,764.61 2238.65,764.361 2239.59,764.64 \n",
" 2240.54,764.904 2241.48,764.622 2242.42,764.477 2243.37,764.559 2244.31,764.683 2245.25,764.801 2246.2,764.946 2247.14,764.77 2248.08,765.059 2249.03,764.964 \n",
" 2249.97,765.237 2250.91,765.331 2251.86,765.464 2252.8,765.662 2253.74,765.936 2254.68,766.288 2255.63,766.449 2256.57,766.283 2257.51,766.241 2258.46,766.304 \n",
" 2259.4,766.041 2260.34,766.042 2261.29,765.664 2262.23,765.89 2263.17,765.965 2264.12,765.851 2265.06,765.932 2266,765.949 2266.95,765.646 2267.89,765.458 \n",
" 2268.83,765.271 2269.78,765.119 2270.72,765.112 2271.66,764.927 2272.61,765.038 2273.55,765.547 2274.49,765.491 2275.44,765.512 2276.38,765.667 2277.32,765.509 \n",
" 2278.27,765.515 2279.21,765.42 2280.15,765.293 2281.1,765.077 2282.04,764.866 2282.98,764.539 2283.93,765.054 2284.87,765.22 2285.81,764.848 2286.76,764.908 \n",
" 2287.7,764.922 2288.64,764.944 2289.59,765.074 2290.53,765.183 2291.47,765.131 2292.42,765.276 2293.36,765.171 2294.3,765.055 2295.25,764.685 2296.19,764.728 \n",
" 2297.13,764.498 2298.08,764.911 2299.02,764.82 2299.96,764.75 2300.9,764.732 2301.85,764.841 2302.79,764.474 2303.73,764.503 2304.68,764.603 2305.62,764.935 \n",
" 2306.56,764.85 2307.51,764.809 2308.45,764.686 2309.39,764.417 2310.34,764.274 2311.28,764.265 2312.22,764.038 2313.17,764.138 2314.11,763.983 2315.05,763.886 \n",
" 2316,763.944 2316.94,763.737 2317.88,763.457 2318.83,763.187 2319.77,763.139 2320.71,763.405 2321.66,763.479 2322.6,763.458 2323.54,763.636 2324.49,763.604 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip7300)\" d=\"\n",
"M1660.93 372.684 L2280.76 372.684 L2280.76 130.764 L1660.93 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1660.93,372.684 2280.76,372.684 2280.76,130.764 1660.93,130.764 1660.93,372.684 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 1684.93,191.244 1828.93,191.244 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1852.93, 208.744)\" x=\"1852.93\" y=\"208.744\">posterior samples</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1684.93,251.724 1828.93,251.724 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1852.93, 265.375)\" x=\"1852.93\" y=\"265.375\">true </text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Symbol; font-size:52px; text-anchor:start;\" transform=\"rotate(0, 1949.25, 265.375)\" x=\"1949.25\" y=\"265.375\">β</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1684.93,312.204 1828.93,312.204 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7300)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1852.93, 329.704)\" x=\"1852.93\" y=\"329.704\">running mean</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 37,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p1 = plot(params[1, :], linewidth=0.2, label = \"posterior samples\")\n",
"plot!(Ptrue.α*ones(iterations), label = LaTeXString(\"true \\\\alpha\"))\n",
"plot!(Bridge.runmean(params[1, :]), label = \"running mean\")\n",
"p2 = plot(params[2, :], linewidth=0.2, label = \"posterior samples\")\n",
"plot!(Ptrue.β*ones(iterations), label = LaTeXString(\"true \\\\beta\"))\n",
"plot!(Bridge.runmean(params[2, :]), label = \"running mean\")\n",
"plot(p1,p2)\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip7700\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip7700)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7701\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip7700)\" d=\"\n",
"M260.947 1487.47 L1152.76 1487.47 L1152.76 47.2441 L260.947 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7702\">\n",
" <rect x=\"260\" y=\"47\" width=\"893\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 285.345,1487.47 285.345,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 495.888,1487.47 495.888,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 706.431,1487.47 706.431,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 916.973,1487.47 916.973,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1127.52,1487.47 1127.52,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.947,1324.98 1152.76,1324.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.947,1015.74 1152.76,1015.74 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.947,706.492 1152.76,706.492 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.947,397.249 1152.76,397.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 260.947,88.0053 1152.76,88.0053 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,1487.47 1152.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,1487.47 260.947,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 285.345,1487.47 285.345,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 495.888,1487.47 495.888,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 706.431,1487.47 706.431,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 916.973,1487.47 916.973,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1127.52,1487.47 1127.52,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,1324.98 271.649,1324.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,1015.74 271.649,1015.74 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,706.492 271.649,706.492 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,397.249 271.649,397.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.947,88.0053 271.649,88.0053 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 285.345, 1541.47)\" x=\"285.345\" y=\"1541.47\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 495.888, 1541.47)\" x=\"495.888\" y=\"1541.47\">250</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 706.431, 1541.47)\" x=\"706.431\" y=\"1541.47\">500</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 916.973, 1541.47)\" x=\"916.973\" y=\"1541.47\">750</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1127.52, 1541.47)\" x=\"1127.52\" y=\"1541.47\">1000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 236.947, 1342.48)\" x=\"236.947\" y=\"1342.48\">0.06900</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 236.947, 1033.24)\" x=\"236.947\" y=\"1033.24\">0.06925</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 236.947, 723.992)\" x=\"236.947\" y=\"723.992\">0.06950</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 236.947, 414.749)\" x=\"236.947\" y=\"414.749\">0.06975</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 236.947, 105.505)\" x=\"236.947\" y=\"105.505\">0.07000</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 286.187,849.896 287.029,1296.05 287.872,1162.66 288.714,1235.56 289.556,1303.63 290.398,1233.79 291.24,1314.95 292.082,1168.64 292.925,1233.15 293.767,1237.83 \n",
" 294.609,1219.35 295.451,1323.02 296.293,1193.1 297.135,1287.38 297.978,1188.49 298.82,1334.76 299.662,1147.86 300.504,1235.33 301.346,1190.56 302.188,1171.19 \n",
" 303.031,1075.98 303.873,1331.44 304.715,1212.56 305.557,1206.09 306.399,1233.67 307.241,1166.77 308.084,1323.71 308.926,1130.78 309.768,1296 310.61,1144.01 \n",
" 311.452,1165.18 312.295,1238.1 313.137,1331.73 313.979,1217.02 314.821,1219.44 315.663,1227.28 316.505,1315.88 317.348,1281.29 318.19,1203.49 319.032,1229.99 \n",
" 319.874,1167.16 320.716,1225.07 321.558,1158.29 322.401,1317.04 323.243,1264.16 324.085,1174.37 324.927,1305.81 325.769,1233.06 326.611,1132.41 327.454,1273.74 \n",
" 328.296,1196.64 329.138,1265.13 329.98,1186.56 330.822,1162.73 331.664,1209.09 332.507,1241.72 333.349,1267.78 334.191,1142.56 335.033,1269.73 335.875,1159.71 \n",
" 336.717,1280.81 337.56,1348.87 338.402,1100.42 339.244,1366.13 340.086,1283.34 340.928,1136.72 341.77,1317.54 342.613,1161.41 343.455,1211.59 344.297,1226.03 \n",
" 345.139,1271.01 345.981,1195.14 346.824,1212.46 347.666,1241.27 348.508,1275.6 349.35,1263.77 350.192,1207.06 351.034,1242.54 351.877,1266.09 352.719,1281.75 \n",
" 353.561,1276.79 354.403,1268.42 355.245,1234.52 356.087,1154.7 356.93,1218.98 357.772,1360.38 358.614,1133.65 359.456,1178.94 360.298,1312.58 361.14,1226.97 \n",
" 361.983,1288.09 362.825,1178.15 363.667,1274.79 364.509,1162.44 365.351,1359.52 366.193,1241.16 367.036,1105.61 367.878,1288 368.72,1228.17 369.562,1171.6 \n",
" 370.404,1268.48 371.246,1152.95 372.089,1186.07 372.931,1201.44 373.773,1186.57 374.615,1292.63 375.457,1299.43 376.299,1279.15 377.142,1152.93 377.984,1135.23 \n",
" 378.826,1246.95 379.668,1267.08 380.51,1180.16 381.353,1261.08 382.195,1231.04 383.037,1215.47 383.879,1126.07 384.721,1333.2 385.563,1230.13 386.406,1212.61 \n",
" 387.248,1244.49 388.09,1289.06 388.932,1242.11 389.774,1210.55 390.616,1215.22 391.459,1280.41 392.301,1324.02 393.143,1218.93 393.985,1214.41 394.827,1203.98 \n",
" 395.669,1368.69 396.512,1179 397.354,1193.91 398.196,1254.25 399.038,1261.37 399.88,1282.83 400.722,1350.06 401.565,1346.47 402.407,1168.59 403.249,1307.27 \n",
" 404.091,1170.11 404.933,1147.92 405.775,1116.22 406.618,1270.96 407.46,1342.69 408.302,1221.36 409.144,1182.33 409.986,1233.23 410.829,1225.58 411.671,1222.52 \n",
" 412.513,1267.33 413.355,1235.82 414.197,1189.98 415.039,1281.28 415.882,1201.49 416.724,1284.21 417.566,1339.54 418.408,1308.32 419.25,1223.74 420.092,1201.86 \n",
" 420.935,1136.39 421.777,1269.58 422.619,1228.39 423.461,1213.11 424.303,1208.84 425.145,1255.7 425.988,1291.23 426.83,1082.07 427.672,1190.85 428.514,1169.52 \n",
" 429.356,1267.44 430.198,1114.86 431.041,1131.1 431.883,1248.74 432.725,1282.94 433.567,1291.8 434.409,1232.42 435.251,1154.13 436.094,1247.66 436.936,1233.02 \n",
" 437.778,1222.53 438.62,1254.45 439.462,1248.65 440.304,1188.53 441.147,1250.21 441.989,1323.58 442.831,1293.18 443.673,1257.57 444.515,1280.33 445.358,1293.05 \n",
" 446.2,1346.39 447.042,1206.63 447.884,1203.98 448.726,1250.95 449.568,1333.52 450.411,1244.4 451.253,1240.63 452.095,1244.43 452.937,1130.29 453.779,1243.41 \n",
" 454.621,1296.87 455.464,1211.44 456.306,1058.1 457.148,1300.09 457.99,1223.94 458.832,1239.96 459.674,1211.48 460.517,1275.61 461.359,1152.48 462.201,1216.34 \n",
" 463.043,1247.34 463.885,1201.33 464.727,1219.41 465.57,1185.29 466.412,1246.24 467.254,1235.87 468.096,1275.71 468.938,1240.82 469.78,1239.85 470.623,1121.05 \n",
" 471.465,1163.19 472.307,1240.18 473.149,1224.5 473.991,1141.07 474.834,1124.05 475.676,1265.46 476.518,1350.87 477.36,1276.88 478.202,1185.33 479.044,1395.87 \n",
" 479.887,1285.38 480.729,1188.44 481.571,1119.08 482.413,1297.08 483.255,1244.62 484.097,1257.18 484.94,1222.97 485.782,1301.27 486.624,1284.13 487.466,1116.23 \n",
" 488.308,1222.27 489.15,1219.58 489.993,1199.17 490.835,1084.39 491.677,1260.04 492.519,1173.21 493.361,1189.87 494.203,1202.96 495.046,1262.91 495.888,1200.92 \n",
" 496.73,1239.05 497.572,1140.48 498.414,1094.7 499.256,1188.81 500.099,1256.72 500.941,1209.08 501.783,1195.3 502.625,1197.96 503.467,1294.19 504.309,1173.23 \n",
" 505.152,1253.37 505.994,1246.91 506.836,1216.52 507.678,1177.19 508.52,1285.29 509.363,1168.31 510.205,1286.03 511.047,1117.85 511.889,1266.69 512.731,1166.71 \n",
" 513.573,1225.57 514.416,1296.82 515.258,1158.66 516.1,1203.08 516.942,1314.23 517.784,1135.74 518.626,1141.67 519.469,1323.88 520.311,1172.45 521.153,1213.82 \n",
" 521.995,1116.96 522.837,1185.75 523.679,1154.44 524.522,1288.51 525.364,1180.17 526.206,1128.92 527.048,1440.18 527.89,1246 528.732,1149.4 529.575,1261.56 \n",
" 530.417,1212.33 531.259,1196.73 532.101,1372.97 532.943,1159.86 533.785,1248.17 534.628,1227.84 535.47,1266.34 536.312,1267.77 537.154,1133.42 537.996,1312.22 \n",
" 538.839,1273.55 539.681,1289.68 540.523,1191.59 541.365,1192.92 542.207,1265.53 543.049,1273.26 543.892,1228.18 544.734,1238.89 545.576,1360.09 546.418,1317.04 \n",
" 547.26,1196.47 548.102,1259.88 548.945,1271.94 549.787,1269.66 550.629,1261.85 551.471,1220.79 552.313,1185.88 553.155,1105.24 553.998,1269.2 554.84,1236.39 \n",
" 555.682,1309.57 556.524,1446.71 557.366,1216.02 558.208,1176.47 559.051,1163.59 559.893,1254.65 560.735,1205.62 561.577,1097.72 562.419,1280.83 563.261,1227.89 \n",
" 564.104,1241.9 564.946,1194.75 565.788,1270.02 566.63,1299.3 567.472,1190.04 568.314,1309.16 569.157,1185.5 569.999,1219.21 570.841,1159.12 571.683,1238.08 \n",
" 572.525,1264.6 573.368,1296.6 574.21,1208.85 575.052,1168.98 575.894,1208.07 576.736,1294.73 577.578,1177.42 578.421,1141.47 579.263,1206.37 580.105,1231.28 \n",
" 580.947,1154.81 581.789,1297.7 582.631,1099.04 583.474,1267.56 584.316,1164.63 585.158,1148.76 586,1266.94 586.842,1282.17 587.684,1216.57 588.527,1137.27 \n",
" 589.369,1324.98 590.211,1166.19 591.053,1282.68 591.895,1277.32 592.737,1281.87 593.58,1147.55 594.422,1209.28 595.264,1396.11 596.106,1165.07 596.948,1265.3 \n",
" 597.79,1193.56 598.633,1255.81 599.475,1258.36 600.317,1240.03 601.159,1228.32 602.001,1186.07 602.844,1255.12 603.686,1214.44 604.528,1204.91 605.37,1143.53 \n",
" 606.212,1187.7 607.054,1251.17 607.897,1202.84 608.739,1202 609.581,1205.58 610.423,1330.3 611.265,1240.4 612.107,1184.42 612.95,1234.76 613.792,1227.73 \n",
" 614.634,1212.09 615.476,1212.7 616.318,1311.73 617.16,1212.23 618.003,1175.98 618.845,1230.12 619.687,1273.3 620.529,1131.61 621.371,1316.83 622.213,1308.33 \n",
" 623.056,1279.62 623.898,1155.06 624.74,1209.43 625.582,1254.99 626.424,1325 627.266,1219.02 628.109,1081.03 628.951,1211.05 629.793,1233.42 630.635,1359.03 \n",
" 631.477,1219.45 632.319,1298.29 633.162,1206.26 634.004,1296.73 634.846,1087.09 635.688,1244.55 636.53,1257.88 637.373,1146.33 638.215,1246.45 639.057,1232.78 \n",
" 639.899,1186.52 640.741,1180.04 641.583,1180.08 642.426,1106.95 643.268,1154.87 644.11,1211.33 644.952,1241.39 645.794,1237.27 646.636,1270.52 647.479,1266.78 \n",
" 648.321,1296.77 649.163,1217.14 650.005,1192.48 650.847,1137.31 651.689,1189.3 652.532,1161.84 653.374,1220.04 654.216,1221.05 655.058,1225.02 655.9,1201.25 \n",
" 656.742,1125.18 657.585,1279.15 658.427,1198.46 659.269,1128 660.111,1205.6 660.953,1219.53 661.795,1165.45 662.638,1209.89 663.48,1227.65 664.322,1188.49 \n",
" 665.164,1210.17 666.006,1223.77 666.848,1250.95 667.691,1163.26 668.533,1241.32 669.375,1224.12 670.217,1366.15 671.059,1170.25 671.902,1164.27 672.744,1155.45 \n",
" 673.586,1156.37 674.428,1097.88 675.27,1222.64 676.112,1185.24 676.955,1263.36 677.797,1252.53 678.639,1276.98 679.481,1169.3 680.323,1235.6 681.165,1231.66 \n",
" 682.008,1217.75 682.85,1118.19 683.692,1113.71 684.534,1246.99 685.376,1187.37 686.218,1221.74 687.061,1272.05 687.903,1298.61 688.745,1296.53 689.587,1147.68 \n",
" 690.429,1265.59 691.271,1237.48 692.114,1297.79 692.956,1220.15 693.798,1175.72 694.64,1273.62 695.482,1151.61 696.324,1252.56 697.167,1271.84 698.009,1236.81 \n",
" 698.851,1264.5 699.693,1274.34 700.535,1173.51 701.378,1182.61 702.22,1262.93 703.062,1214.49 703.904,1172.31 704.746,1126.37 705.588,1094.97 706.431,1180.01 \n",
" 707.273,1255.79 708.115,1225.17 708.957,1080.76 709.799,1241.88 710.641,1268.24 711.484,1221.88 712.326,1202.89 713.168,1136.06 714.01,1126.12 714.852,1138.49 \n",
" 715.694,1250.73 716.537,1277.46 717.379,1278.28 718.221,1232.14 719.063,1235.41 719.905,1255.9 720.747,1167.22 721.59,1208.32 722.432,1238.9 723.274,1204.13 \n",
" 724.116,1270.06 724.958,1251.66 725.8,1220.68 726.643,1252.79 727.485,1312.13 728.327,1234.74 729.169,1175.84 730.011,1252.13 730.853,1190.94 731.696,1163.98 \n",
" 732.538,1157.43 733.38,1139.47 734.222,1171.35 735.064,1260.44 735.907,1216.62 736.749,1172.02 737.591,1190.02 738.433,1130.88 739.275,1240.41 740.117,1289.62 \n",
" 740.96,1277.6 741.802,1279.75 742.644,1130.69 743.486,1265.56 744.328,1186.68 745.17,1297.4 746.013,1146.69 746.855,1062.6 747.697,1301.82 748.539,1184.08 \n",
" 749.381,1080.89 750.223,1148.31 751.066,1201.41 751.908,1397.58 752.75,1310.25 753.592,1204.47 754.434,1301.8 755.276,1264.56 756.119,1333.57 756.961,1218.34 \n",
" 757.803,1283.57 758.645,1260.58 759.487,1229.87 760.329,1244.56 761.172,1146.76 762.014,1214.82 762.856,1250.5 763.698,1204.06 764.54,1324.62 765.383,1237.73 \n",
" 766.225,1190.35 767.067,1377.27 767.909,1436.48 768.751,1330.29 769.593,1231.77 770.436,1095.96 771.278,1246.15 772.12,1161.34 772.962,1185.54 773.804,1286.29 \n",
" 774.646,1180.95 775.489,1159.5 776.331,1183.94 777.173,1125.33 778.015,1287.76 778.857,1193.02 779.699,1257.63 780.542,1357.46 781.384,1199.33 782.226,1168.15 \n",
" 783.068,1246.66 783.91,1167.3 784.752,1257.43 785.595,1149.06 786.437,1311.57 787.279,1245.65 788.121,1188.8 788.963,1210.72 789.805,1260.07 790.648,1220.82 \n",
" 791.49,1168.1 792.332,1284.77 793.174,1265.1 794.016,1180.55 794.858,1262.14 795.701,1306.1 796.543,1212.65 797.385,1152.14 798.227,1232.02 799.069,1207.05 \n",
" 799.912,1208.41 800.754,1264.22 801.596,1127.99 802.438,1120.54 803.28,1145.42 804.122,1220.34 804.965,1235 805.807,1231.95 806.649,1355.02 807.491,1188.72 \n",
" 808.333,1110.76 809.175,1190.39 810.018,1176.18 810.86,1196.2 811.702,1182.79 812.544,1223.8 813.386,1174.24 814.228,1239.87 815.071,1246.69 815.913,1281.17 \n",
" 816.755,1160.61 817.597,1299.95 818.439,1252.65 819.281,1273.28 820.124,1146.35 820.966,1139.52 821.808,1303.87 822.65,1147.24 823.492,1267.31 824.334,1269.08 \n",
" 825.177,1227.8 826.019,1287.63 826.861,1279.23 827.703,1198.13 828.545,1333.61 829.388,1113.84 830.23,1261.37 831.072,1228.15 831.914,1244.14 832.756,1268.7 \n",
" 833.598,1149.76 834.441,1203.49 835.283,1281.38 836.125,1204.89 836.967,1192.49 837.809,1234.58 838.651,1348.09 839.494,1324.37 840.336,1370.44 841.178,1173.2 \n",
" 842.02,1115.29 842.862,1273.76 843.704,1223.29 844.547,1225.45 845.389,1262.03 846.231,1305.51 847.073,1214.59 847.915,1293.02 848.757,1175.7 849.6,1248.26 \n",
" 850.442,1259.46 851.284,1196.83 852.126,1289.63 852.968,1256.37 853.81,1219.17 854.653,1221.83 855.495,1223 856.337,1154.34 857.179,1138.43 858.021,1187.59 \n",
" 858.863,1299.51 859.706,1193.25 860.548,1280.75 861.39,1172.77 862.232,1199.67 863.074,1184.07 863.917,1217.24 864.759,1249.72 865.601,1233.71 866.443,1126.56 \n",
" 867.285,1339.95 868.127,1216.35 868.97,1289.58 869.812,1250.22 870.654,1243.99 871.496,1185.52 872.338,1153.41 873.18,1196.41 874.023,1375.86 874.865,1304.06 \n",
" 875.707,1234.5 876.549,1189.97 877.391,1145.4 878.233,1248.82 879.076,1195.36 879.918,1133.1 880.76,1398.41 881.602,1212.67 882.444,1204.35 883.286,1296.28 \n",
" 884.129,1159.94 884.971,1147.5 885.813,1308.65 886.655,1270.68 887.497,1080.09 888.339,1151.74 889.182,1284.99 890.024,1315.92 890.866,1251.62 891.708,1098.94 \n",
" 892.55,1100.85 893.392,1284.06 894.235,1188.76 895.077,1142.38 895.919,1284.68 896.761,1166.85 897.603,1283.22 898.446,1151.43 899.288,1251.19 900.13,1131.77 \n",
" 900.972,1283.36 901.814,1230.62 902.656,1389.57 903.499,1222.31 904.341,1267.81 905.183,1183.43 906.025,1120.54 906.867,1192.57 907.709,1233.07 908.552,1153.02 \n",
" 909.394,1214.97 910.236,1200.68 911.078,1193.86 911.92,1212.23 912.762,1199.92 913.605,1216.71 914.447,1226.84 915.289,1123.98 916.131,1185.48 916.973,1232.88 \n",
" 917.815,1246.14 918.658,1202.65 919.5,1177.2 920.342,1195.75 921.184,1234.87 922.026,1222.93 922.868,1221.58 923.711,1315.89 924.553,1148.83 925.395,1241.82 \n",
" 926.237,1365.45 927.079,1321.94 927.922,1280.99 928.764,1187.26 929.606,1259.01 930.448,1232.1 931.29,1324.25 932.132,1262.25 932.975,1147.3 933.817,1243.82 \n",
" 934.659,1231.03 935.501,1229.81 936.343,1198.89 937.185,1189.82 938.028,1339.18 938.87,1210.62 939.712,1166.6 940.554,1308.86 941.396,1267.03 942.238,1298.39 \n",
" 943.081,1200.82 943.923,1200.6 944.765,1231.5 945.607,1208.75 946.449,1359.48 947.291,1228.22 948.134,1213.39 948.976,1253.2 949.818,1215.27 950.66,1263.61 \n",
" 951.502,1155.42 952.344,1235.69 953.187,1256.04 954.029,1202.19 954.871,1157.47 955.713,1225.97 956.555,1289.54 957.397,1134.15 958.24,1230.62 959.082,1215.82 \n",
" 959.924,1216.86 960.766,1231.54 961.608,1226.25 962.451,1264.9 963.293,1300.73 964.135,1222 964.977,1197.07 965.819,1304.62 966.661,1252.2 967.504,1210.08 \n",
" 968.346,1203.93 969.188,1226.16 970.03,1121.08 970.872,1377.55 971.714,1217.33 972.557,1176.23 973.399,1299.38 974.241,1203.21 975.083,1292.72 975.925,1283.59 \n",
" 976.767,1106.1 977.61,1315.25 978.452,1161.53 979.294,1189.73 980.136,1230.57 980.978,1148.41 981.82,1323.08 982.663,1294.4 983.505,1236.24 984.347,1185.74 \n",
" 985.189,1244.52 986.031,1234.45 986.873,1244.76 987.716,1309.13 988.558,1282.31 989.4,1383.87 990.242,1253.89 991.084,1357.31 991.927,1323.54 992.769,1167.27 \n",
" 993.611,1235.02 994.453,1186.29 995.295,1173.43 996.137,1221.34 996.98,1044 997.822,1211.96 998.664,1336.3 999.506,1296.52 1000.35,1233.02 1001.19,1276.44 \n",
" 1002.03,1258.87 1002.87,1339.73 1003.72,1279.05 1004.56,1323.36 1005.4,1283.22 1006.24,1319.85 1007.09,1343.21 1007.93,1210.7 1008.77,1215.06 1009.61,1311.12 \n",
" 1010.45,1200.74 1011.3,1203.59 1012.14,1198.88 1012.98,1268.23 1013.82,1140.2 1014.67,1180.36 1015.51,1181.4 1016.35,1237.3 1017.19,1173.39 1018.03,1183.64 \n",
" 1018.88,1272.41 1019.72,1221.96 1020.56,1272.77 1021.4,1267 1022.24,1059.77 1023.09,1347.26 1023.93,1217.19 1024.77,1318.3 1025.61,1335.95 1026.46,1173.5 \n",
" 1027.3,1256.99 1028.14,1247.26 1028.98,1205.91 1029.82,1218.42 1030.67,1219.49 1031.51,1286.24 1032.35,1297.98 1033.19,1260.16 1034.04,1300.66 1034.88,1263.3 \n",
" 1035.72,1165.12 1036.56,1146.43 1037.4,1252.55 1038.25,1345.02 1039.09,1155.02 1039.93,1290.85 1040.77,1202.46 1041.61,1226.77 1042.46,1194.13 1043.3,1172.83 \n",
" 1044.14,1209.23 1044.98,1240.09 1045.83,1302.36 1046.67,1237.96 1047.51,1247.74 1048.35,1147.46 1049.19,1195.31 1050.04,1098.98 1050.88,1336.93 1051.72,1164.86 \n",
" 1052.56,1356.31 1053.4,1169.5 1054.25,1321.31 1055.09,1248.2 1055.93,1294.02 1056.77,1171.1 1057.62,1198.54 1058.46,1199.58 1059.3,1292.81 1060.14,1256.38 \n",
" 1060.98,1160.31 1061.83,1335.01 1062.67,1271.97 1063.51,1229.35 1064.35,1212.54 1065.2,1319.81 1066.04,1230.06 1066.88,1200.08 1067.72,1198.65 1068.56,1242.72 \n",
" 1069.41,1273.44 1070.25,1258.79 1071.09,1181.45 1071.93,1306.76 1072.77,1343.33 1073.62,1326.53 1074.46,1202.83 1075.3,1137.54 1076.14,1297.26 1076.99,1193.44 \n",
" 1077.83,1146.68 1078.67,1175.46 1079.51,1313.1 1080.35,1254.11 1081.2,1305.92 1082.04,1198.6 1082.88,1183.01 1083.72,1243.64 1084.57,1285.11 1085.41,1155.28 \n",
" 1086.25,1211.56 1087.09,1321.54 1087.93,1220.6 1088.78,1100.86 1089.62,1248.65 1090.46,1238.46 1091.3,1164.09 1092.14,1278.63 1092.99,1134.03 1093.83,1309.97 \n",
" 1094.67,1304.88 1095.51,1102.48 1096.36,1248.61 1097.2,1193.17 1098.04,1369.25 1098.88,1272 1099.72,1253.08 1100.57,1237.82 1101.41,1313.01 1102.25,1384.47 \n",
" 1103.09,1323.07 1103.94,1341.91 1104.78,1230.26 1105.62,1200.33 1106.46,1266.97 1107.3,1231.05 1108.15,1217.84 1108.99,1172.44 1109.83,1154.8 1110.67,1085.6 \n",
" 1111.51,1251.92 1112.36,1184.65 1113.2,1316.68 1114.04,1177.73 1114.88,1273.09 1115.73,1234.19 1116.57,1212.18 1117.41,1173.22 1118.25,1284.23 1119.09,1224.22 \n",
" 1119.94,1362.68 1120.78,1219.22 1121.62,1270.09 1122.46,1219.32 1123.31,1232.05 1124.15,1238.05 1124.99,1236.02 1125.83,1309.65 1126.67,1216.35 1127.52,1198.01 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 286.187,88.0053 287.029,88.0053 287.872,88.0053 288.714,88.0053 289.556,88.0053 290.398,88.0053 291.24,88.0053 292.082,88.0053 292.925,88.0053 293.767,88.0053 \n",
" 294.609,88.0053 295.451,88.0053 296.293,88.0053 297.135,88.0053 297.978,88.0053 298.82,88.0053 299.662,88.0053 300.504,88.0053 301.346,88.0053 302.188,88.0053 \n",
" 303.031,88.0053 303.873,88.0053 304.715,88.0053 305.557,88.0053 306.399,88.0053 307.241,88.0053 308.084,88.0053 308.926,88.0053 309.768,88.0053 310.61,88.0053 \n",
" 311.452,88.0053 312.295,88.0053 313.137,88.0053 313.979,88.0053 314.821,88.0053 315.663,88.0053 316.505,88.0053 317.348,88.0053 318.19,88.0053 319.032,88.0053 \n",
" 319.874,88.0053 320.716,88.0053 321.558,88.0053 322.401,88.0053 323.243,88.0053 324.085,88.0053 324.927,88.0053 325.769,88.0053 326.611,88.0053 327.454,88.0053 \n",
" 328.296,88.0053 329.138,88.0053 329.98,88.0053 330.822,88.0053 331.664,88.0053 332.507,88.0053 333.349,88.0053 334.191,88.0053 335.033,88.0053 335.875,88.0053 \n",
" 336.717,88.0053 337.56,88.0053 338.402,88.0053 339.244,88.0053 340.086,88.0053 340.928,88.0053 341.77,88.0053 342.613,88.0053 343.455,88.0053 344.297,88.0053 \n",
" 345.139,88.0053 345.981,88.0053 346.824,88.0053 347.666,88.0053 348.508,88.0053 349.35,88.0053 350.192,88.0053 351.034,88.0053 351.877,88.0053 352.719,88.0053 \n",
" 353.561,88.0053 354.403,88.0053 355.245,88.0053 356.087,88.0053 356.93,88.0053 357.772,88.0053 358.614,88.0053 359.456,88.0053 360.298,88.0053 361.14,88.0053 \n",
" 361.983,88.0053 362.825,88.0053 363.667,88.0053 364.509,88.0053 365.351,88.0053 366.193,88.0053 367.036,88.0053 367.878,88.0053 368.72,88.0053 369.562,88.0053 \n",
" 370.404,88.0053 371.246,88.0053 372.089,88.0053 372.931,88.0053 373.773,88.0053 374.615,88.0053 375.457,88.0053 376.299,88.0053 377.142,88.0053 377.984,88.0053 \n",
" 378.826,88.0053 379.668,88.0053 380.51,88.0053 381.353,88.0053 382.195,88.0053 383.037,88.0053 383.879,88.0053 384.721,88.0053 385.563,88.0053 386.406,88.0053 \n",
" 387.248,88.0053 388.09,88.0053 388.932,88.0053 389.774,88.0053 390.616,88.0053 391.459,88.0053 392.301,88.0053 393.143,88.0053 393.985,88.0053 394.827,88.0053 \n",
" 395.669,88.0053 396.512,88.0053 397.354,88.0053 398.196,88.0053 399.038,88.0053 399.88,88.0053 400.722,88.0053 401.565,88.0053 402.407,88.0053 403.249,88.0053 \n",
" 404.091,88.0053 404.933,88.0053 405.775,88.0053 406.618,88.0053 407.46,88.0053 408.302,88.0053 409.144,88.0053 409.986,88.0053 410.829,88.0053 411.671,88.0053 \n",
" 412.513,88.0053 413.355,88.0053 414.197,88.0053 415.039,88.0053 415.882,88.0053 416.724,88.0053 417.566,88.0053 418.408,88.0053 419.25,88.0053 420.092,88.0053 \n",
" 420.935,88.0053 421.777,88.0053 422.619,88.0053 423.461,88.0053 424.303,88.0053 425.145,88.0053 425.988,88.0053 426.83,88.0053 427.672,88.0053 428.514,88.0053 \n",
" 429.356,88.0053 430.198,88.0053 431.041,88.0053 431.883,88.0053 432.725,88.0053 433.567,88.0053 434.409,88.0053 435.251,88.0053 436.094,88.0053 436.936,88.0053 \n",
" 437.778,88.0053 438.62,88.0053 439.462,88.0053 440.304,88.0053 441.147,88.0053 441.989,88.0053 442.831,88.0053 443.673,88.0053 444.515,88.0053 445.358,88.0053 \n",
" 446.2,88.0053 447.042,88.0053 447.884,88.0053 448.726,88.0053 449.568,88.0053 450.411,88.0053 451.253,88.0053 452.095,88.0053 452.937,88.0053 453.779,88.0053 \n",
" 454.621,88.0053 455.464,88.0053 456.306,88.0053 457.148,88.0053 457.99,88.0053 458.832,88.0053 459.674,88.0053 460.517,88.0053 461.359,88.0053 462.201,88.0053 \n",
" 463.043,88.0053 463.885,88.0053 464.727,88.0053 465.57,88.0053 466.412,88.0053 467.254,88.0053 468.096,88.0053 468.938,88.0053 469.78,88.0053 470.623,88.0053 \n",
" 471.465,88.0053 472.307,88.0053 473.149,88.0053 473.991,88.0053 474.834,88.0053 475.676,88.0053 476.518,88.0053 477.36,88.0053 478.202,88.0053 479.044,88.0053 \n",
" 479.887,88.0053 480.729,88.0053 481.571,88.0053 482.413,88.0053 483.255,88.0053 484.097,88.0053 484.94,88.0053 485.782,88.0053 486.624,88.0053 487.466,88.0053 \n",
" 488.308,88.0053 489.15,88.0053 489.993,88.0053 490.835,88.0053 491.677,88.0053 492.519,88.0053 493.361,88.0053 494.203,88.0053 495.046,88.0053 495.888,88.0053 \n",
" 496.73,88.0053 497.572,88.0053 498.414,88.0053 499.256,88.0053 500.099,88.0053 500.941,88.0053 501.783,88.0053 502.625,88.0053 503.467,88.0053 504.309,88.0053 \n",
" 505.152,88.0053 505.994,88.0053 506.836,88.0053 507.678,88.0053 508.52,88.0053 509.363,88.0053 510.205,88.0053 511.047,88.0053 511.889,88.0053 512.731,88.0053 \n",
" 513.573,88.0053 514.416,88.0053 515.258,88.0053 516.1,88.0053 516.942,88.0053 517.784,88.0053 518.626,88.0053 519.469,88.0053 520.311,88.0053 521.153,88.0053 \n",
" 521.995,88.0053 522.837,88.0053 523.679,88.0053 524.522,88.0053 525.364,88.0053 526.206,88.0053 527.048,88.0053 527.89,88.0053 528.732,88.0053 529.575,88.0053 \n",
" 530.417,88.0053 531.259,88.0053 532.101,88.0053 532.943,88.0053 533.785,88.0053 534.628,88.0053 535.47,88.0053 536.312,88.0053 537.154,88.0053 537.996,88.0053 \n",
" 538.839,88.0053 539.681,88.0053 540.523,88.0053 541.365,88.0053 542.207,88.0053 543.049,88.0053 543.892,88.0053 544.734,88.0053 545.576,88.0053 546.418,88.0053 \n",
" 547.26,88.0053 548.102,88.0053 548.945,88.0053 549.787,88.0053 550.629,88.0053 551.471,88.0053 552.313,88.0053 553.155,88.0053 553.998,88.0053 554.84,88.0053 \n",
" 555.682,88.0053 556.524,88.0053 557.366,88.0053 558.208,88.0053 559.051,88.0053 559.893,88.0053 560.735,88.0053 561.577,88.0053 562.419,88.0053 563.261,88.0053 \n",
" 564.104,88.0053 564.946,88.0053 565.788,88.0053 566.63,88.0053 567.472,88.0053 568.314,88.0053 569.157,88.0053 569.999,88.0053 570.841,88.0053 571.683,88.0053 \n",
" 572.525,88.0053 573.368,88.0053 574.21,88.0053 575.052,88.0053 575.894,88.0053 576.736,88.0053 577.578,88.0053 578.421,88.0053 579.263,88.0053 580.105,88.0053 \n",
" 580.947,88.0053 581.789,88.0053 582.631,88.0053 583.474,88.0053 584.316,88.0053 585.158,88.0053 586,88.0053 586.842,88.0053 587.684,88.0053 588.527,88.0053 \n",
" 589.369,88.0053 590.211,88.0053 591.053,88.0053 591.895,88.0053 592.737,88.0053 593.58,88.0053 594.422,88.0053 595.264,88.0053 596.106,88.0053 596.948,88.0053 \n",
" 597.79,88.0053 598.633,88.0053 599.475,88.0053 600.317,88.0053 601.159,88.0053 602.001,88.0053 602.844,88.0053 603.686,88.0053 604.528,88.0053 605.37,88.0053 \n",
" 606.212,88.0053 607.054,88.0053 607.897,88.0053 608.739,88.0053 609.581,88.0053 610.423,88.0053 611.265,88.0053 612.107,88.0053 612.95,88.0053 613.792,88.0053 \n",
" 614.634,88.0053 615.476,88.0053 616.318,88.0053 617.16,88.0053 618.003,88.0053 618.845,88.0053 619.687,88.0053 620.529,88.0053 621.371,88.0053 622.213,88.0053 \n",
" 623.056,88.0053 623.898,88.0053 624.74,88.0053 625.582,88.0053 626.424,88.0053 627.266,88.0053 628.109,88.0053 628.951,88.0053 629.793,88.0053 630.635,88.0053 \n",
" 631.477,88.0053 632.319,88.0053 633.162,88.0053 634.004,88.0053 634.846,88.0053 635.688,88.0053 636.53,88.0053 637.373,88.0053 638.215,88.0053 639.057,88.0053 \n",
" 639.899,88.0053 640.741,88.0053 641.583,88.0053 642.426,88.0053 643.268,88.0053 644.11,88.0053 644.952,88.0053 645.794,88.0053 646.636,88.0053 647.479,88.0053 \n",
" 648.321,88.0053 649.163,88.0053 650.005,88.0053 650.847,88.0053 651.689,88.0053 652.532,88.0053 653.374,88.0053 654.216,88.0053 655.058,88.0053 655.9,88.0053 \n",
" 656.742,88.0053 657.585,88.0053 658.427,88.0053 659.269,88.0053 660.111,88.0053 660.953,88.0053 661.795,88.0053 662.638,88.0053 663.48,88.0053 664.322,88.0053 \n",
" 665.164,88.0053 666.006,88.0053 666.848,88.0053 667.691,88.0053 668.533,88.0053 669.375,88.0053 670.217,88.0053 671.059,88.0053 671.902,88.0053 672.744,88.0053 \n",
" 673.586,88.0053 674.428,88.0053 675.27,88.0053 676.112,88.0053 676.955,88.0053 677.797,88.0053 678.639,88.0053 679.481,88.0053 680.323,88.0053 681.165,88.0053 \n",
" 682.008,88.0053 682.85,88.0053 683.692,88.0053 684.534,88.0053 685.376,88.0053 686.218,88.0053 687.061,88.0053 687.903,88.0053 688.745,88.0053 689.587,88.0053 \n",
" 690.429,88.0053 691.271,88.0053 692.114,88.0053 692.956,88.0053 693.798,88.0053 694.64,88.0053 695.482,88.0053 696.324,88.0053 697.167,88.0053 698.009,88.0053 \n",
" 698.851,88.0053 699.693,88.0053 700.535,88.0053 701.378,88.0053 702.22,88.0053 703.062,88.0053 703.904,88.0053 704.746,88.0053 705.588,88.0053 706.431,88.0053 \n",
" 707.273,88.0053 708.115,88.0053 708.957,88.0053 709.799,88.0053 710.641,88.0053 711.484,88.0053 712.326,88.0053 713.168,88.0053 714.01,88.0053 714.852,88.0053 \n",
" 715.694,88.0053 716.537,88.0053 717.379,88.0053 718.221,88.0053 719.063,88.0053 719.905,88.0053 720.747,88.0053 721.59,88.0053 722.432,88.0053 723.274,88.0053 \n",
" 724.116,88.0053 724.958,88.0053 725.8,88.0053 726.643,88.0053 727.485,88.0053 728.327,88.0053 729.169,88.0053 730.011,88.0053 730.853,88.0053 731.696,88.0053 \n",
" 732.538,88.0053 733.38,88.0053 734.222,88.0053 735.064,88.0053 735.907,88.0053 736.749,88.0053 737.591,88.0053 738.433,88.0053 739.275,88.0053 740.117,88.0053 \n",
" 740.96,88.0053 741.802,88.0053 742.644,88.0053 743.486,88.0053 744.328,88.0053 745.17,88.0053 746.013,88.0053 746.855,88.0053 747.697,88.0053 748.539,88.0053 \n",
" 749.381,88.0053 750.223,88.0053 751.066,88.0053 751.908,88.0053 752.75,88.0053 753.592,88.0053 754.434,88.0053 755.276,88.0053 756.119,88.0053 756.961,88.0053 \n",
" 757.803,88.0053 758.645,88.0053 759.487,88.0053 760.329,88.0053 761.172,88.0053 762.014,88.0053 762.856,88.0053 763.698,88.0053 764.54,88.0053 765.383,88.0053 \n",
" 766.225,88.0053 767.067,88.0053 767.909,88.0053 768.751,88.0053 769.593,88.0053 770.436,88.0053 771.278,88.0053 772.12,88.0053 772.962,88.0053 773.804,88.0053 \n",
" 774.646,88.0053 775.489,88.0053 776.331,88.0053 777.173,88.0053 778.015,88.0053 778.857,88.0053 779.699,88.0053 780.542,88.0053 781.384,88.0053 782.226,88.0053 \n",
" 783.068,88.0053 783.91,88.0053 784.752,88.0053 785.595,88.0053 786.437,88.0053 787.279,88.0053 788.121,88.0053 788.963,88.0053 789.805,88.0053 790.648,88.0053 \n",
" 791.49,88.0053 792.332,88.0053 793.174,88.0053 794.016,88.0053 794.858,88.0053 795.701,88.0053 796.543,88.0053 797.385,88.0053 798.227,88.0053 799.069,88.0053 \n",
" 799.912,88.0053 800.754,88.0053 801.596,88.0053 802.438,88.0053 803.28,88.0053 804.122,88.0053 804.965,88.0053 805.807,88.0053 806.649,88.0053 807.491,88.0053 \n",
" 808.333,88.0053 809.175,88.0053 810.018,88.0053 810.86,88.0053 811.702,88.0053 812.544,88.0053 813.386,88.0053 814.228,88.0053 815.071,88.0053 815.913,88.0053 \n",
" 816.755,88.0053 817.597,88.0053 818.439,88.0053 819.281,88.0053 820.124,88.0053 820.966,88.0053 821.808,88.0053 822.65,88.0053 823.492,88.0053 824.334,88.0053 \n",
" 825.177,88.0053 826.019,88.0053 826.861,88.0053 827.703,88.0053 828.545,88.0053 829.388,88.0053 830.23,88.0053 831.072,88.0053 831.914,88.0053 832.756,88.0053 \n",
" 833.598,88.0053 834.441,88.0053 835.283,88.0053 836.125,88.0053 836.967,88.0053 837.809,88.0053 838.651,88.0053 839.494,88.0053 840.336,88.0053 841.178,88.0053 \n",
" 842.02,88.0053 842.862,88.0053 843.704,88.0053 844.547,88.0053 845.389,88.0053 846.231,88.0053 847.073,88.0053 847.915,88.0053 848.757,88.0053 849.6,88.0053 \n",
" 850.442,88.0053 851.284,88.0053 852.126,88.0053 852.968,88.0053 853.81,88.0053 854.653,88.0053 855.495,88.0053 856.337,88.0053 857.179,88.0053 858.021,88.0053 \n",
" 858.863,88.0053 859.706,88.0053 860.548,88.0053 861.39,88.0053 862.232,88.0053 863.074,88.0053 863.917,88.0053 864.759,88.0053 865.601,88.0053 866.443,88.0053 \n",
" 867.285,88.0053 868.127,88.0053 868.97,88.0053 869.812,88.0053 870.654,88.0053 871.496,88.0053 872.338,88.0053 873.18,88.0053 874.023,88.0053 874.865,88.0053 \n",
" 875.707,88.0053 876.549,88.0053 877.391,88.0053 878.233,88.0053 879.076,88.0053 879.918,88.0053 880.76,88.0053 881.602,88.0053 882.444,88.0053 883.286,88.0053 \n",
" 884.129,88.0053 884.971,88.0053 885.813,88.0053 886.655,88.0053 887.497,88.0053 888.339,88.0053 889.182,88.0053 890.024,88.0053 890.866,88.0053 891.708,88.0053 \n",
" 892.55,88.0053 893.392,88.0053 894.235,88.0053 895.077,88.0053 895.919,88.0053 896.761,88.0053 897.603,88.0053 898.446,88.0053 899.288,88.0053 900.13,88.0053 \n",
" 900.972,88.0053 901.814,88.0053 902.656,88.0053 903.499,88.0053 904.341,88.0053 905.183,88.0053 906.025,88.0053 906.867,88.0053 907.709,88.0053 908.552,88.0053 \n",
" 909.394,88.0053 910.236,88.0053 911.078,88.0053 911.92,88.0053 912.762,88.0053 913.605,88.0053 914.447,88.0053 915.289,88.0053 916.131,88.0053 916.973,88.0053 \n",
" 917.815,88.0053 918.658,88.0053 919.5,88.0053 920.342,88.0053 921.184,88.0053 922.026,88.0053 922.868,88.0053 923.711,88.0053 924.553,88.0053 925.395,88.0053 \n",
" 926.237,88.0053 927.079,88.0053 927.922,88.0053 928.764,88.0053 929.606,88.0053 930.448,88.0053 931.29,88.0053 932.132,88.0053 932.975,88.0053 933.817,88.0053 \n",
" 934.659,88.0053 935.501,88.0053 936.343,88.0053 937.185,88.0053 938.028,88.0053 938.87,88.0053 939.712,88.0053 940.554,88.0053 941.396,88.0053 942.238,88.0053 \n",
" 943.081,88.0053 943.923,88.0053 944.765,88.0053 945.607,88.0053 946.449,88.0053 947.291,88.0053 948.134,88.0053 948.976,88.0053 949.818,88.0053 950.66,88.0053 \n",
" 951.502,88.0053 952.344,88.0053 953.187,88.0053 954.029,88.0053 954.871,88.0053 955.713,88.0053 956.555,88.0053 957.397,88.0053 958.24,88.0053 959.082,88.0053 \n",
" 959.924,88.0053 960.766,88.0053 961.608,88.0053 962.451,88.0053 963.293,88.0053 964.135,88.0053 964.977,88.0053 965.819,88.0053 966.661,88.0053 967.504,88.0053 \n",
" 968.346,88.0053 969.188,88.0053 970.03,88.0053 970.872,88.0053 971.714,88.0053 972.557,88.0053 973.399,88.0053 974.241,88.0053 975.083,88.0053 975.925,88.0053 \n",
" 976.767,88.0053 977.61,88.0053 978.452,88.0053 979.294,88.0053 980.136,88.0053 980.978,88.0053 981.82,88.0053 982.663,88.0053 983.505,88.0053 984.347,88.0053 \n",
" 985.189,88.0053 986.031,88.0053 986.873,88.0053 987.716,88.0053 988.558,88.0053 989.4,88.0053 990.242,88.0053 991.084,88.0053 991.927,88.0053 992.769,88.0053 \n",
" 993.611,88.0053 994.453,88.0053 995.295,88.0053 996.137,88.0053 996.98,88.0053 997.822,88.0053 998.664,88.0053 999.506,88.0053 1000.35,88.0053 1001.19,88.0053 \n",
" 1002.03,88.0053 1002.87,88.0053 1003.72,88.0053 1004.56,88.0053 1005.4,88.0053 1006.24,88.0053 1007.09,88.0053 1007.93,88.0053 1008.77,88.0053 1009.61,88.0053 \n",
" 1010.45,88.0053 1011.3,88.0053 1012.14,88.0053 1012.98,88.0053 1013.82,88.0053 1014.67,88.0053 1015.51,88.0053 1016.35,88.0053 1017.19,88.0053 1018.03,88.0053 \n",
" 1018.88,88.0053 1019.72,88.0053 1020.56,88.0053 1021.4,88.0053 1022.24,88.0053 1023.09,88.0053 1023.93,88.0053 1024.77,88.0053 1025.61,88.0053 1026.46,88.0053 \n",
" 1027.3,88.0053 1028.14,88.0053 1028.98,88.0053 1029.82,88.0053 1030.67,88.0053 1031.51,88.0053 1032.35,88.0053 1033.19,88.0053 1034.04,88.0053 1034.88,88.0053 \n",
" 1035.72,88.0053 1036.56,88.0053 1037.4,88.0053 1038.25,88.0053 1039.09,88.0053 1039.93,88.0053 1040.77,88.0053 1041.61,88.0053 1042.46,88.0053 1043.3,88.0053 \n",
" 1044.14,88.0053 1044.98,88.0053 1045.83,88.0053 1046.67,88.0053 1047.51,88.0053 1048.35,88.0053 1049.19,88.0053 1050.04,88.0053 1050.88,88.0053 1051.72,88.0053 \n",
" 1052.56,88.0053 1053.4,88.0053 1054.25,88.0053 1055.09,88.0053 1055.93,88.0053 1056.77,88.0053 1057.62,88.0053 1058.46,88.0053 1059.3,88.0053 1060.14,88.0053 \n",
" 1060.98,88.0053 1061.83,88.0053 1062.67,88.0053 1063.51,88.0053 1064.35,88.0053 1065.2,88.0053 1066.04,88.0053 1066.88,88.0053 1067.72,88.0053 1068.56,88.0053 \n",
" 1069.41,88.0053 1070.25,88.0053 1071.09,88.0053 1071.93,88.0053 1072.77,88.0053 1073.62,88.0053 1074.46,88.0053 1075.3,88.0053 1076.14,88.0053 1076.99,88.0053 \n",
" 1077.83,88.0053 1078.67,88.0053 1079.51,88.0053 1080.35,88.0053 1081.2,88.0053 1082.04,88.0053 1082.88,88.0053 1083.72,88.0053 1084.57,88.0053 1085.41,88.0053 \n",
" 1086.25,88.0053 1087.09,88.0053 1087.93,88.0053 1088.78,88.0053 1089.62,88.0053 1090.46,88.0053 1091.3,88.0053 1092.14,88.0053 1092.99,88.0053 1093.83,88.0053 \n",
" 1094.67,88.0053 1095.51,88.0053 1096.36,88.0053 1097.2,88.0053 1098.04,88.0053 1098.88,88.0053 1099.72,88.0053 1100.57,88.0053 1101.41,88.0053 1102.25,88.0053 \n",
" 1103.09,88.0053 1103.94,88.0053 1104.78,88.0053 1105.62,88.0053 1106.46,88.0053 1107.3,88.0053 1108.15,88.0053 1108.99,88.0053 1109.83,88.0053 1110.67,88.0053 \n",
" 1111.51,88.0053 1112.36,88.0053 1113.2,88.0053 1114.04,88.0053 1114.88,88.0053 1115.73,88.0053 1116.57,88.0053 1117.41,88.0053 1118.25,88.0053 1119.09,88.0053 \n",
" 1119.94,88.0053 1120.78,88.0053 1121.62,88.0053 1122.46,88.0053 1123.31,88.0053 1124.15,88.0053 1124.99,88.0053 1125.83,88.0053 1126.67,88.0053 1127.52,88.0053 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 286.187,849.896 287.029,1072.97 287.872,1102.87 288.714,1136.04 289.556,1169.56 290.398,1180.26 291.24,1199.5 292.082,1195.65 292.925,1199.81 293.767,1203.62 \n",
" 294.609,1205.05 295.451,1214.88 296.293,1213.2 297.135,1218.5 297.978,1216.5 298.82,1223.89 299.662,1219.42 300.504,1220.3 301.346,1218.74 302.188,1216.36 \n",
" 303.031,1209.67 303.873,1215.21 304.715,1215.09 305.557,1214.72 306.399,1215.48 307.241,1213.6 308.084,1217.68 308.926,1214.58 309.768,1217.39 310.61,1214.94 \n",
" 311.452,1213.33 312.295,1214.11 313.137,1217.67 313.979,1217.65 314.821,1217.7 315.663,1217.97 316.505,1220.62 317.348,1222.21 318.19,1221.73 319.032,1221.94 \n",
" 319.874,1220.6 320.716,1220.71 321.558,1219.26 322.401,1221.48 323.243,1222.43 324.085,1221.38 324.927,1223.18 325.769,1223.39 326.611,1221.53 327.454,1222.57 \n",
" 328.296,1222.07 329.138,1222.89 329.98,1222.21 330.822,1221.11 331.664,1220.89 332.507,1221.26 333.349,1222.08 334.191,1220.71 335.033,1221.54 335.875,1220.51 \n",
" 336.717,1221.49 337.56,1223.55 338.402,1221.59 339.244,1223.85 340.086,1224.77 340.928,1223.43 341.77,1224.84 342.613,1223.91 343.455,1223.73 344.297,1223.76 \n",
" 345.139,1224.43 345.981,1224.02 346.824,1223.86 347.666,1224.1 348.508,1224.78 349.35,1225.3 350.192,1225.06 351.034,1225.28 351.877,1225.8 352.719,1226.5 \n",
" 353.561,1227.12 354.403,1227.62 355.245,1227.71 356.087,1226.84 356.93,1226.74 357.772,1228.3 358.614,1227.21 359.456,1226.66 360.298,1227.63 361.14,1227.62 \n",
" 361.983,1228.28 362.825,1227.74 363.667,1228.25 364.509,1227.55 365.351,1228.93 366.193,1229.06 367.036,1227.79 367.878,1228.4 368.72,1228.4 369.562,1227.83 \n",
" 370.404,1228.24 371.246,1227.5 372.089,1227.1 372.931,1226.85 373.773,1226.47 374.615,1227.09 375.457,1227.77 376.299,1228.24 377.142,1227.55 377.984,1226.71 \n",
" 378.826,1226.89 379.668,1227.25 380.51,1226.84 381.353,1227.14 382.195,1227.17 383.037,1227.07 383.879,1226.21 384.721,1227.11 385.563,1227.14 386.406,1227.02 \n",
" 387.248,1227.16 388.09,1227.67 388.932,1227.79 389.774,1227.65 390.616,1227.55 391.459,1227.97 392.301,1228.72 393.143,1228.65 393.985,1228.54 394.827,1228.35 \n",
" 395.669,1229.42 396.512,1229.04 397.354,1228.77 398.196,1228.96 399.038,1229.2 399.88,1229.6 400.722,1230.48 401.565,1231.32 402.407,1230.87 403.249,1231.41 \n",
" 404.091,1230.98 404.933,1230.39 405.775,1229.59 406.618,1229.88 407.46,1230.66 408.302,1230.59 409.144,1230.27 409.986,1230.29 410.829,1230.25 411.671,1230.2 \n",
" 412.513,1230.45 413.355,1230.48 414.197,1230.22 415.039,1230.55 415.882,1230.36 416.724,1230.71 417.566,1231.4 418.408,1231.89 419.25,1231.84 420.092,1231.65 \n",
" 420.935,1231.06 421.777,1231.3 422.619,1231.28 423.461,1231.17 424.303,1231.03 425.145,1231.18 425.988,1231.54 426.83,1230.65 427.672,1230.42 428.514,1230.06 \n",
" 429.356,1230.28 430.198,1229.6 431.041,1229.04 431.883,1229.15 432.725,1229.46 433.567,1229.81 434.409,1229.83 435.251,1229.4 436.094,1229.5 436.936,1229.52 \n",
" 437.778,1229.48 438.62,1229.62 439.462,1229.72 440.304,1229.5 441.147,1229.61 441.989,1230.12 442.831,1230.45 443.673,1230.6 444.515,1230.86 445.358,1231.19 \n",
" 446.2,1231.79 447.042,1231.66 447.884,1231.52 448.726,1231.62 449.568,1232.14 450.411,1232.2 451.253,1232.25 452.095,1232.31 452.937,1231.79 453.779,1231.85 \n",
" 454.621,1232.18 455.464,1232.07 456.306,1231.22 457.148,1231.55 457.99,1231.52 458.832,1231.56 459.674,1231.46 460.517,1231.67 461.359,1231.29 462.201,1231.22 \n",
" 463.043,1231.3 463.885,1231.16 464.727,1231.1 465.57,1230.89 466.412,1230.96 467.254,1230.98 468.096,1231.19 468.938,1231.23 469.78,1231.27 470.623,1230.77 \n",
" 471.465,1230.47 472.307,1230.51 473.149,1230.48 473.991,1230.08 474.834,1229.61 475.676,1229.77 476.518,1230.3 477.36,1230.51 478.202,1230.31 479.044,1231.03 \n",
" 479.887,1231.27 480.729,1231.08 481.571,1230.6 482.413,1230.89 483.255,1230.94 484.097,1231.05 484.94,1231.02 485.782,1231.32 486.624,1231.54 487.466,1231.06 \n",
" 488.308,1231.02 489.15,1230.97 489.993,1230.84 490.835,1230.24 491.677,1230.36 492.519,1230.13 493.361,1229.97 494.203,1229.86 495.046,1229.99 495.888,1229.88 \n",
" 496.73,1229.91 497.572,1229.56 498.414,1229.02 499.256,1228.87 500.099,1228.98 500.941,1228.9 501.783,1228.77 502.625,1228.65 503.467,1228.9 504.309,1228.69 \n",
" 505.152,1228.78 505.994,1228.85 506.836,1228.8 507.678,1228.61 508.52,1228.82 509.363,1228.59 510.205,1228.81 511.047,1228.4 511.889,1228.54 512.731,1228.31 \n",
" 513.573,1228.3 514.416,1228.55 515.258,1228.29 516.1,1228.2 516.942,1228.52 517.784,1228.18 518.626,1227.87 519.469,1228.21 520.311,1228.01 521.153,1227.96 \n",
" 521.995,1227.57 522.837,1227.42 523.679,1227.16 524.522,1227.38 525.364,1227.21 526.206,1226.87 527.048,1227.61 527.89,1227.67 528.732,1227.4 529.575,1227.52 \n",
" 530.417,1227.47 531.259,1227.36 532.101,1227.86 532.943,1227.63 533.785,1227.7 534.628,1227.7 535.47,1227.83 536.312,1227.96 537.154,1227.65 537.996,1227.93 \n",
" 538.839,1228.08 539.681,1228.28 540.523,1228.16 541.365,1228.05 542.207,1228.17 543.049,1228.32 543.892,1228.32 544.734,1228.35 545.576,1228.78 546.418,1229.06 \n",
" 547.26,1228.96 548.102,1229.06 548.945,1229.19 549.787,1229.32 550.629,1229.43 551.471,1229.4 552.313,1229.26 553.155,1228.87 553.998,1229 554.84,1229.02 \n",
" 555.682,1229.27 556.524,1229.95 557.366,1229.9 558.208,1229.74 559.051,1229.54 559.893,1229.61 560.735,1229.54 561.577,1229.14 562.419,1229.29 563.261,1229.29 \n",
" 564.104,1229.33 564.946,1229.22 565.788,1229.35 566.63,1229.56 567.472,1229.44 568.314,1229.68 569.157,1229.54 569.999,1229.51 570.841,1229.31 571.683,1229.33 \n",
" 572.525,1229.44 573.368,1229.63 574.21,1229.57 575.052,1229.4 575.894,1229.33 576.736,1229.52 577.578,1229.37 578.421,1229.12 579.263,1229.05 580.105,1229.06 \n",
" 580.947,1228.85 581.789,1229.04 582.631,1228.68 583.474,1228.79 584.316,1228.61 585.158,1228.38 586,1228.49 586.842,1228.64 587.684,1228.61 588.527,1228.35 \n",
" 589.369,1228.62 590.211,1228.45 591.053,1228.6 591.895,1228.73 592.737,1228.88 593.58,1228.65 594.422,1228.6 595.264,1229.06 596.106,1228.88 596.948,1228.98 \n",
" 597.79,1228.89 598.633,1228.96 599.475,1229.04 600.317,1229.07 601.159,1229.06 602.001,1228.95 602.844,1229.02 603.686,1228.98 604.528,1228.92 605.37,1228.69 \n",
" 606.212,1228.59 607.054,1228.64 607.897,1228.58 608.739,1228.51 609.581,1228.45 610.423,1228.71 611.265,1228.74 612.107,1228.63 612.95,1228.64 613.792,1228.64 \n",
" 614.634,1228.6 615.476,1228.56 616.318,1228.77 617.16,1228.73 618.003,1228.59 618.845,1228.6 619.687,1228.71 620.529,1228.47 621.371,1228.69 622.213,1228.89 \n",
" 623.056,1229.01 623.898,1228.83 624.74,1228.78 625.582,1228.85 626.424,1229.08 627.266,1229.06 628.109,1228.7 628.951,1228.65 629.793,1228.66 630.635,1228.98 \n",
" 631.477,1228.96 632.319,1229.13 633.162,1229.07 634.004,1229.24 634.846,1228.89 635.688,1228.93 636.53,1229 637.373,1228.8 638.215,1228.84 639.057,1228.85 \n",
" 639.899,1228.75 640.741,1228.64 641.583,1228.52 642.426,1228.24 643.268,1228.06 644.11,1228.02 644.952,1228.06 645.794,1228.08 646.636,1228.18 647.479,1228.27 \n",
" 648.321,1228.42 649.163,1228.4 650.005,1228.32 650.847,1228.11 651.689,1228.02 652.532,1227.86 653.374,1227.85 654.216,1227.83 655.058,1227.82 655.9,1227.76 \n",
" 656.742,1227.53 657.585,1227.65 658.427,1227.58 659.269,1227.36 660.111,1227.31 660.953,1227.29 661.795,1227.15 662.638,1227.12 663.48,1227.12 664.322,1227.03 \n",
" 665.164,1226.99 666.006,1226.99 666.848,1227.04 667.691,1226.9 668.533,1226.93 669.375,1226.92 670.217,1227.23 671.059,1227.1 671.902,1226.97 672.744,1226.81 \n",
" 673.586,1226.66 674.428,1226.38 675.27,1226.37 676.112,1226.28 676.955,1226.36 677.797,1226.42 678.639,1226.53 679.481,1226.41 680.323,1226.43 681.165,1226.44 \n",
" 682.008,1226.42 682.85,1226.19 683.692,1225.95 684.534,1226 685.376,1225.91 686.218,1225.91 687.061,1226 687.903,1226.15 688.745,1226.3 689.587,1226.14 \n",
" 690.429,1226.22 691.271,1226.24 692.114,1226.39 692.956,1226.38 693.798,1226.27 694.64,1226.37 695.482,1226.22 696.324,1226.27 697.167,1226.36 698.009,1226.39 \n",
" 698.851,1226.46 699.693,1226.56 700.535,1226.45 701.378,1226.36 702.22,1226.44 703.062,1226.41 703.904,1226.3 704.746,1226.1 705.588,1225.84 706.431,1225.75 \n",
" 707.273,1225.81 708.115,1225.81 708.957,1225.52 709.799,1225.55 710.641,1225.64 711.484,1225.63 712.326,1225.58 713.168,1225.41 714.01,1225.21 714.852,1225.04 \n",
" 715.694,1225.09 716.537,1225.2 717.379,1225.3 718.221,1225.31 719.063,1225.33 719.905,1225.39 720.747,1225.28 721.59,1225.25 722.432,1225.27 723.274,1225.23 \n",
" 724.116,1225.32 724.958,1225.37 725.8,1225.36 726.643,1225.41 727.485,1225.58 728.327,1225.59 729.169,1225.5 730.011,1225.55 730.853,1225.49 731.696,1225.37 \n",
" 732.538,1225.24 733.38,1225.08 734.222,1224.98 735.064,1225.05 735.907,1225.03 736.749,1224.93 737.591,1224.87 738.433,1224.69 739.275,1224.72 740.117,1224.84 \n",
" 740.96,1224.94 741.802,1225.04 742.644,1224.87 743.486,1224.94 744.328,1224.87 745.17,1225 746.013,1224.86 746.855,1224.56 747.697,1224.7 748.539,1224.63 \n",
" 749.381,1224.37 750.223,1224.23 751.066,1224.19 751.908,1224.5 752.75,1224.66 753.592,1224.62 754.434,1224.76 755.276,1224.83 756.119,1225.03 756.961,1225.01 \n",
" 757.803,1225.12 758.645,1225.18 759.487,1225.19 760.329,1225.22 761.172,1225.09 762.014,1225.07 762.856,1225.11 763.698,1225.08 764.54,1225.25 765.383,1225.27 \n",
" 766.225,1225.21 767.067,1225.48 767.909,1225.84 768.751,1226.03 769.593,1226.04 770.436,1225.81 771.278,1225.85 772.12,1225.73 772.962,1225.67 773.804,1225.77 \n",
" 774.646,1225.69 775.489,1225.58 776.331,1225.51 777.173,1225.34 778.015,1225.44 778.857,1225.39 779.699,1225.44 780.542,1225.67 781.384,1225.62 782.226,1225.52 \n",
" 783.068,1225.56 783.91,1225.46 784.752,1225.52 785.595,1225.39 786.437,1225.53 787.279,1225.57 788.121,1225.5 788.963,1225.48 789.805,1225.54 790.648,1225.53 \n",
" 791.49,1225.43 792.332,1225.53 793.174,1225.6 794.016,1225.52 794.858,1225.58 795.701,1225.72 796.543,1225.7 797.385,1225.57 798.227,1225.58 799.069,1225.55 \n",
" 799.912,1225.53 800.754,1225.59 801.596,1225.43 802.438,1225.26 803.28,1225.13 804.122,1225.12 804.965,1225.14 805.807,1225.15 806.649,1225.36 807.491,1225.3 \n",
" 808.333,1225.12 809.175,1225.06 810.018,1224.98 810.86,1224.93 811.702,1224.87 812.544,1224.87 813.386,1224.78 814.228,1224.81 815.071,1224.84 815.913,1224.93 \n",
" 816.755,1224.83 817.597,1224.95 818.439,1224.99 819.281,1225.07 820.124,1224.95 820.966,1224.81 821.808,1224.94 822.65,1224.81 823.492,1224.88 824.334,1224.95 \n",
" 825.177,1224.95 826.019,1225.05 826.861,1225.14 827.703,1225.09 828.545,1225.26 829.388,1225.09 830.23,1225.15 831.072,1225.15 831.914,1225.18 832.756,1225.25 \n",
" 833.598,1225.13 834.441,1225.1 835.283,1225.18 836.125,1225.15 836.967,1225.1 837.809,1225.12 838.651,1225.3 839.494,1225.45 840.336,1225.68 841.178,1225.6 \n",
" 842.02,1225.43 842.862,1225.5 843.704,1225.5 844.547,1225.5 845.389,1225.55 846.231,1225.67 847.073,1225.66 847.915,1225.76 848.757,1225.68 849.6,1225.72 \n",
" 850.442,1225.77 851.284,1225.72 852.126,1225.82 852.968,1225.86 853.81,1225.85 854.653,1225.85 855.495,1225.84 856.337,1225.74 857.179,1225.61 858.021,1225.55 \n",
" 858.863,1225.66 859.706,1225.61 860.548,1225.7 861.39,1225.62 862.232,1225.58 863.074,1225.52 863.917,1225.51 864.759,1225.54 865.601,1225.55 866.443,1225.41 \n",
" 867.285,1225.58 868.127,1225.56 868.97,1225.66 869.812,1225.69 870.654,1225.72 871.496,1225.66 872.338,1225.56 873.18,1225.51 874.023,1225.73 874.865,1225.84 \n",
" 875.707,1225.85 876.549,1225.8 877.391,1225.69 878.233,1225.72 879.076,1225.68 879.918,1225.55 880.76,1225.79 881.602,1225.77 882.444,1225.74 883.286,1225.84 \n",
" 884.129,1225.75 884.971,1225.64 885.813,1225.76 886.655,1225.82 887.497,1225.62 888.339,1225.51 889.182,1225.59 890.024,1225.72 890.866,1225.76 891.708,1225.58 \n",
" 892.55,1225.41 893.392,1225.49 894.235,1225.44 895.077,1225.32 895.919,1225.41 896.761,1225.32 897.603,1225.4 898.446,1225.3 899.288,1225.34 900.13,1225.21 \n",
" 900.972,1225.29 901.814,1225.3 902.656,1225.52 903.499,1225.52 904.341,1225.57 905.183,1225.52 906.025,1225.37 906.867,1225.33 907.709,1225.34 908.552,1225.24 \n",
" 909.394,1225.23 910.236,1225.2 911.078,1225.15 911.92,1225.14 912.762,1225.1 913.605,1225.09 914.447,1225.09 915.289,1224.96 916.131,1224.91 916.973,1224.92 \n",
" 917.815,1224.94 918.658,1224.91 919.5,1224.85 920.342,1224.81 921.184,1224.83 922.026,1224.82 922.868,1224.82 923.711,1224.94 924.553,1224.84 925.395,1224.86 \n",
" 926.237,1225.05 927.079,1225.17 927.922,1225.25 928.764,1225.2 929.606,1225.24 930.448,1225.25 931.29,1225.38 932.132,1225.43 932.975,1225.33 933.817,1225.35 \n",
" 934.659,1225.36 935.501,1225.36 936.343,1225.33 937.185,1225.28 938.028,1225.43 938.87,1225.41 939.712,1225.33 940.554,1225.44 941.396,1225.5 942.238,1225.59 \n",
" 943.081,1225.56 943.923,1225.53 944.765,1225.53 945.607,1225.51 946.449,1225.68 947.291,1225.69 948.134,1225.67 948.976,1225.7 949.818,1225.69 950.66,1225.74 \n",
" 951.502,1225.65 952.344,1225.66 953.187,1225.7 954.029,1225.67 954.871,1225.59 955.713,1225.59 956.555,1225.67 957.397,1225.55 958.24,1225.56 959.082,1225.55 \n",
" 959.924,1225.54 960.766,1225.54 961.608,1225.54 962.451,1225.59 963.293,1225.69 964.135,1225.68 964.977,1225.65 965.819,1225.74 966.661,1225.78 967.504,1225.76 \n",
" 968.346,1225.73 969.188,1225.73 970.03,1225.6 970.872,1225.79 971.714,1225.78 972.557,1225.72 973.399,1225.81 974.241,1225.78 975.083,1225.86 975.925,1225.93 \n",
" 976.767,1225.79 977.61,1225.9 978.452,1225.82 979.294,1225.77 980.136,1225.78 980.978,1225.69 981.82,1225.8 982.663,1225.89 983.505,1225.9 984.347,1225.85 \n",
" 985.189,1225.87 986.031,1225.88 986.873,1225.91 987.716,1226.01 988.558,1226.07 989.4,1226.26 990.242,1226.29 991.084,1226.45 991.927,1226.57 992.769,1226.5 \n",
" 993.611,1226.51 994.453,1226.46 995.295,1226.4 996.137,1226.39 996.98,1226.17 997.822,1226.16 998.664,1226.29 999.506,1226.37 1000.35,1226.38 1001.19,1226.44 \n",
" 1002.03,1226.47 1002.87,1226.61 1003.72,1226.67 1004.56,1226.78 1005.4,1226.85 1006.24,1226.96 1007.09,1227.09 1007.93,1227.07 1008.77,1227.06 1009.61,1227.16 \n",
" 1010.45,1227.13 1011.3,1227.1 1012.14,1227.07 1012.98,1227.11 1013.82,1227.01 1014.67,1226.96 1015.51,1226.91 1016.35,1226.92 1017.19,1226.86 1018.03,1226.81 \n",
" 1018.88,1226.86 1019.72,1226.85 1020.56,1226.91 1021.4,1226.95 1022.24,1226.76 1023.09,1226.9 1023.93,1226.89 1024.77,1226.99 1025.61,1227.12 1026.46,1227.06 \n",
" 1027.3,1227.09 1028.14,1227.11 1028.98,1227.09 1029.82,1227.08 1030.67,1227.07 1031.51,1227.14 1032.35,1227.22 1033.19,1227.25 1034.04,1227.34 1034.88,1227.38 \n",
" 1035.72,1227.31 1036.56,1227.22 1037.4,1227.24 1038.25,1227.38 1039.09,1227.3 1039.93,1227.37 1040.77,1227.34 1041.61,1227.34 1042.46,1227.3 1043.3,1227.24 \n",
" 1044.14,1227.22 1044.98,1227.23 1045.83,1227.32 1046.67,1227.33 1047.51,1227.35 1048.35,1227.26 1049.19,1227.23 1050.04,1227.09 1050.88,1227.21 1051.72,1227.14 \n",
" 1052.56,1227.28 1053.4,1227.22 1054.25,1227.32 1055.09,1227.34 1055.93,1227.42 1056.77,1227.36 1057.62,1227.32 1058.46,1227.29 1059.3,1227.37 1060.14,1227.4 \n",
" 1060.98,1227.32 1061.83,1227.44 1062.67,1227.49 1063.51,1227.49 1064.35,1227.48 1065.2,1227.57 1066.04,1227.58 1066.88,1227.55 1067.72,1227.52 1068.56,1227.53 \n",
" 1069.41,1227.58 1070.25,1227.62 1071.09,1227.57 1071.93,1227.65 1072.77,1227.77 1073.62,1227.88 1074.46,1227.85 1075.3,1227.76 1076.14,1227.83 1076.99,1227.79 \n",
" 1077.83,1227.71 1078.67,1227.65 1079.51,1227.74 1080.35,1227.77 1081.2,1227.85 1082.04,1227.82 1082.88,1227.78 1083.72,1227.79 1084.57,1227.85 1085.41,1227.78 \n",
" 1086.25,1227.76 1087.09,1227.86 1087.93,1227.85 1088.78,1227.72 1089.62,1227.74 1090.46,1227.75 1091.3,1227.68 1092.14,1227.74 1092.99,1227.64 1093.83,1227.73 \n",
" 1094.67,1227.81 1095.51,1227.68 1096.36,1227.7 1097.2,1227.66 1098.04,1227.81 1098.88,1227.85 1099.72,1227.88 1100.57,1227.89 1101.41,1227.98 1102.25,1228.14 \n",
" 1103.09,1228.24 1103.94,1228.35 1104.78,1228.36 1105.62,1228.33 1106.46,1228.37 1107.3,1228.37 1108.15,1228.36 1108.99,1228.3 1109.83,1228.23 1110.67,1228.08 \n",
" 1111.51,1228.11 1112.36,1228.06 1113.2,1228.15 1114.04,1228.1 1114.88,1228.15 1115.73,1228.15 1116.57,1228.14 1117.41,1228.08 1118.25,1228.14 1119.09,1228.13 \n",
" 1119.94,1228.27 1120.78,1228.26 1121.62,1228.3 1122.46,1228.29 1123.31,1228.3 1124.15,1228.31 1124.99,1228.31 1125.83,1228.4 1126.67,1228.38 1127.52,1228.35 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip7700)\" d=\"\n",
"M546.466 372.684 L1080.76 372.684 L1080.76 130.764 L546.466 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 546.466,372.684 1080.76,372.684 1080.76,130.764 546.466,130.764 546.466,372.684 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 570.466,191.244 714.466,191.244 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 738.466, 208.744)\" x=\"738.466\" y=\"208.744\">EM samples</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 570.466,251.724 714.466,251.724 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 738.466, 259.63)\" x=\"738.466\" y=\"259.63\">true </text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Symbol; font-size:52px; text-anchor:start;\" transform=\"rotate(0, 834.782, 259.63)\" x=\"834.782\" y=\"259.63\">σ</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:38px; text-anchor:start;\" transform=\"rotate(0, 866.026, 273.259)\" x=\"866.026\" y=\"273.259\">1</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 570.466,312.204 714.466,312.204 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 738.466, 329.704)\" x=\"738.466\" y=\"329.704\">running mean</text>\n",
"</g>\n",
"<path clip-path=\"url(#clip7700)\" d=\"\n",
"M1460.95 1487.47 L2352.76 1487.47 L2352.76 47.2441 L1460.95 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7703\">\n",
" <rect x=\"1460\" y=\"47\" width=\"893\" height=\"1441\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1485.35,1487.47 1485.35,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1695.89,1487.47 1695.89,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1906.43,1487.47 1906.43,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2116.97,1487.47 2116.97,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2327.52,1487.47 2327.52,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1460.95,1243.72 2352.76,1243.72 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1460.95,940.698 2352.76,940.698 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1460.95,637.671 2352.76,637.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1460.95,334.645 2352.76,334.645 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1460.95,1487.47 2352.76,1487.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1460.95,1487.47 1460.95,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1485.35,1487.47 1485.35,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1695.89,1487.47 1695.89,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1906.43,1487.47 1906.43,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2116.97,1487.47 2116.97,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2327.52,1487.47 2327.52,1470.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1460.95,1243.72 1471.65,1243.72 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1460.95,940.698 1471.65,940.698 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1460.95,637.671 1471.65,637.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1460.95,334.645 1471.65,334.645 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1485.35, 1541.47)\" x=\"1485.35\" y=\"1541.47\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1695.89, 1541.47)\" x=\"1695.89\" y=\"1541.47\">250</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1906.43, 1541.47)\" x=\"1906.43\" y=\"1541.47\">500</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2116.97, 1541.47)\" x=\"2116.97\" y=\"1541.47\">750</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2327.52, 1541.47)\" x=\"2327.52\" y=\"1541.47\">1000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1436.95, 1261.22)\" x=\"1436.95\" y=\"1261.22\">0.40000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1436.95, 958.198)\" x=\"1436.95\" y=\"958.198\">0.40025</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1436.95, 655.171)\" x=\"1436.95\" y=\"655.171\">0.40050</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 1436.95, 352.145)\" x=\"1436.95\" y=\"352.145\">0.40075</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 1486.19,638.211 1487.03,643.586 1487.87,948.896 1488.71,707.267 1489.56,722.557 1490.4,785.919 1491.24,503.068 1492.08,835.452 1492.92,1153.97 1493.77,466.598 \n",
" 1494.61,1045.01 1495.45,853.976 1496.29,640.944 1497.14,651.052 1497.98,771.983 1498.82,764.889 1499.66,708.467 1500.5,781.368 1501.35,581.744 1502.19,674.859 \n",
" 1503.03,679.349 1503.87,914.264 1504.71,616.903 1505.56,1224.02 1506.4,830.189 1507.24,755.343 1508.08,1123.57 1508.93,618.024 1509.77,764.034 1510.61,646.524 \n",
" 1511.45,835.965 1512.29,778.177 1513.14,541.985 1513.98,862.011 1514.82,489.183 1515.66,1031.28 1516.51,1174.35 1517.35,549.192 1518.19,212.705 1519.03,716.887 \n",
" 1519.87,783.892 1520.72,627.052 1521.56,596.042 1522.4,932.074 1523.24,832.186 1524.08,1050.51 1524.93,726.082 1525.77,590.665 1526.61,462.977 1527.45,776.979 \n",
" 1528.3,508.393 1529.14,518.8 1529.98,405.914 1530.82,945.397 1531.66,970.991 1532.51,859.373 1533.35,566.606 1534.19,287.185 1535.03,626.674 1535.88,888.708 \n",
" 1536.72,1073.54 1537.56,602.406 1538.4,1126.55 1539.24,924.821 1540.09,844.518 1540.93,938.29 1541.77,826.211 1542.61,940.705 1543.45,1212.85 1544.3,834.424 \n",
" 1545.14,759.157 1545.98,689.376 1546.82,683.973 1547.67,1087.17 1548.51,698.813 1549.35,693.754 1550.19,647.781 1551.03,828.254 1551.88,936.603 1552.72,592.831 \n",
" 1553.56,548.685 1554.4,910.786 1555.25,656.211 1556.09,785.43 1556.93,917.195 1557.77,538.476 1558.61,805.379 1559.46,873.516 1560.3,734.962 1561.14,931.433 \n",
" 1561.98,243.948 1562.82,935.283 1563.67,826.875 1564.51,796.291 1565.35,783.12 1566.19,778.712 1567.04,1045.26 1567.88,546.355 1568.72,1026.15 1569.56,876.972 \n",
" 1570.4,673.567 1571.25,876.279 1572.09,245.043 1572.93,872.613 1573.77,505.4 1574.62,573.695 1575.46,765.341 1576.3,1043.24 1577.14,1037.85 1577.98,772.772 \n",
" 1578.83,717.236 1579.67,894.222 1580.51,855.589 1581.35,606.449 1582.19,1034.96 1583.04,626.343 1583.88,1030.97 1584.72,897.834 1585.56,927.561 1586.41,810.317 \n",
" 1587.25,931.992 1588.09,909.3 1588.93,653.32 1589.77,736.055 1590.62,661.114 1591.46,672.875 1592.3,537.407 1593.14,806.949 1593.99,670.886 1594.83,1088.35 \n",
" 1595.67,1134.02 1596.51,735.257 1597.35,795.592 1598.2,1149.01 1599.04,615.526 1599.88,829.402 1600.72,585.594 1601.56,1010.87 1602.41,484.918 1603.25,606.77 \n",
" 1604.09,838.239 1604.93,687.985 1605.78,688.191 1606.62,901.427 1607.46,723.086 1608.3,882.019 1609.14,552.941 1609.99,1076.33 1610.83,458.135 1611.67,673.887 \n",
" 1612.51,709.902 1613.36,843.901 1614.2,1123.33 1615.04,1081.24 1615.88,905.017 1616.72,949.749 1617.57,406.353 1618.41,897.452 1619.25,1001.72 1620.09,817.855 \n",
" 1620.93,718.571 1621.78,934.323 1622.62,242.328 1623.46,921.806 1624.3,987.936 1625.15,977.916 1625.99,603.946 1626.83,831.119 1627.67,745.344 1628.51,721.124 \n",
" 1629.36,738.304 1630.2,701.61 1631.04,1121.11 1631.88,635.424 1632.72,968.797 1633.57,636.403 1634.41,920.257 1635.25,1227.23 1636.09,649.399 1636.94,924.595 \n",
" 1637.78,719.95 1638.62,951.795 1639.46,850.827 1640.3,742.434 1641.15,832.319 1641.99,841.176 1642.83,615.26 1643.67,449.746 1644.52,828.781 1645.36,489.517 \n",
" 1646.2,403.265 1647.04,582.203 1647.88,882.582 1648.73,920.354 1649.57,737.571 1650.41,662.262 1651.25,720.558 1652.09,598.51 1652.94,706.91 1653.78,1211.63 \n",
" 1654.62,411.638 1655.46,722.428 1656.31,833.563 1657.15,582.504 1657.99,924.099 1658.83,782.291 1659.67,744.575 1660.52,1009.14 1661.36,747.237 1662.2,807.748 \n",
" 1663.04,816.34 1663.89,949.434 1664.73,947.34 1665.57,865.556 1666.41,904.261 1667.25,731.592 1668.1,593.416 1668.94,906.165 1669.78,521.587 1670.62,684.654 \n",
" 1671.46,794.377 1672.31,728.962 1673.15,763.447 1673.99,910.989 1674.83,694.308 1675.68,810.291 1676.52,381.5 1677.36,811.717 1678.2,889.387 1679.04,963.813 \n",
" 1679.89,692.357 1680.73,614.629 1681.57,573.69 1682.41,639.112 1683.26,439.628 1684.1,508.232 1684.94,374.754 1685.78,643.995 1686.62,810.337 1687.47,1158.88 \n",
" 1688.31,907.722 1689.15,788.14 1689.99,783.249 1690.83,1001.15 1691.68,700.232 1692.52,951.397 1693.36,601.913 1694.2,486.193 1695.05,579.251 1695.89,926.921 \n",
" 1696.73,958.623 1697.57,424.346 1698.41,600.694 1699.26,544.224 1700.1,641.713 1700.94,527.471 1701.78,1070.74 1702.63,1446.71 1703.47,665.83 1704.31,739.657 \n",
" 1705.15,735.101 1705.99,1016.79 1706.84,1268.26 1707.68,946.368 1708.52,810.523 1709.36,1184.24 1710.2,698.81 1711.05,801.447 1711.89,1011.26 1712.73,672.256 \n",
" 1713.57,672.097 1714.42,1032.36 1715.26,708.785 1716.1,913.816 1716.94,792.013 1717.78,1069.59 1718.63,598.152 1719.47,462.566 1720.31,866.145 1721.15,1083.11 \n",
" 1722,1338.16 1722.84,594.273 1723.68,735.747 1724.52,690.625 1725.36,764.419 1726.21,801.863 1727.05,834.402 1727.89,843.662 1728.73,803.59 1729.57,845.142 \n",
" 1730.42,611.466 1731.26,730.195 1732.1,616.9 1732.94,700.113 1733.79,465.067 1734.63,549.058 1735.47,583.497 1736.31,612.349 1737.15,675.685 1738,810.715 \n",
" 1738.84,994.128 1739.68,560.494 1740.52,296.483 1741.37,977.992 1742.21,488.504 1743.05,1006.64 1743.89,525.866 1744.73,1032.12 1745.58,798.729 1746.42,880.609 \n",
" 1747.26,676.119 1748.1,721.123 1748.94,634.489 1749.79,390.197 1750.63,788.57 1751.47,815.74 1752.31,893.071 1753.16,815.266 1754,605.969 1754.84,563.671 \n",
" 1755.68,893.473 1756.52,654.141 1757.37,799.536 1758.21,671.509 1759.05,895.334 1759.89,952.308 1760.73,752.489 1761.58,609.278 1762.42,853.123 1763.26,578.28 \n",
" 1764.1,529.776 1764.95,823.346 1765.79,755.34 1766.63,859.26 1767.47,835.122 1768.31,616.005 1769.16,892.118 1770,720.206 1770.84,1034.76 1771.68,794.613 \n",
" 1772.53,835.635 1773.37,440.031 1774.21,436.285 1775.05,1177.49 1775.89,844.715 1776.74,367.985 1777.58,775.222 1778.42,997.794 1779.26,539.952 1780.1,680.856 \n",
" 1780.95,592.099 1781.79,917.118 1782.63,935.363 1783.47,835.357 1784.32,1112.86 1785.16,534.331 1786,712.466 1786.84,703.943 1787.68,953.835 1788.53,885.689 \n",
" 1789.37,422.083 1790.21,580.003 1791.05,818.765 1791.9,708.541 1792.74,672.475 1793.58,941.775 1794.42,725.963 1795.26,713.093 1796.11,482.543 1796.95,667.211 \n",
" 1797.79,1042.82 1798.63,538.796 1799.47,634.082 1800.32,849.088 1801.16,730.462 1802,344.635 1802.84,604.44 1803.69,925.924 1804.53,655.388 1805.37,646.951 \n",
" 1806.21,622.838 1807.05,1080.48 1807.9,773.449 1808.74,634.589 1809.58,723.73 1810.42,629.407 1811.27,402.649 1812.11,966.661 1812.95,656.504 1813.79,839.242 \n",
" 1814.63,765.987 1815.48,566.374 1816.32,798.696 1817.16,566.632 1818,446.146 1818.84,1019.93 1819.69,647.649 1820.53,789.456 1821.37,718.947 1822.21,686.903 \n",
" 1823.06,812.497 1823.9,681.138 1824.74,534.706 1825.58,743.408 1826.42,237.461 1827.27,624.546 1828.11,513.225 1828.95,776.759 1829.79,843.433 1830.64,466.826 \n",
" 1831.48,853.956 1832.32,565.965 1833.16,507.093 1834,585.703 1834.85,834.784 1835.69,596.2 1836.53,687.013 1837.37,764.943 1838.21,1171.29 1839.06,719.192 \n",
" 1839.9,689.396 1840.74,860.224 1841.58,673.29 1842.43,666.244 1843.27,816.819 1844.11,550.507 1844.95,886.198 1845.79,596.268 1846.64,481.373 1847.48,809.691 \n",
" 1848.32,992.618 1849.16,659.459 1850.01,925.55 1850.85,637.056 1851.69,393.572 1852.53,750.788 1853.37,872.888 1854.22,701.936 1855.06,693.855 1855.9,473.962 \n",
" 1856.74,624.508 1857.58,871.51 1858.43,936.439 1859.27,888.406 1860.11,423.624 1860.95,490.154 1861.8,1041.02 1862.64,966.704 1863.48,705.618 1864.32,1016.63 \n",
" 1865.16,574.994 1866.01,577.951 1866.85,937.454 1867.69,551.365 1868.53,590.739 1869.38,688.455 1870.22,817.772 1871.06,479.721 1871.9,509.238 1872.74,787.756 \n",
" 1873.59,953.325 1874.43,246.837 1875.27,1099.2 1876.11,1209.47 1876.95,881.646 1877.8,731.979 1878.64,1229.16 1879.48,794.985 1880.32,642.602 1881.17,945.979 \n",
" 1882.01,979.876 1882.85,611.004 1883.69,893.845 1884.53,668.151 1885.38,646.824 1886.22,706.655 1887.06,1076.95 1887.9,827.907 1888.74,1083.76 1889.59,848.209 \n",
" 1890.43,1285.86 1891.27,1070.17 1892.11,638.654 1892.96,564.065 1893.8,957.706 1894.64,868.111 1895.48,815.07 1896.32,662.64 1897.17,977.732 1898.01,1066.72 \n",
" 1898.85,802.201 1899.69,1023.83 1900.54,494.202 1901.38,538.806 1902.22,887.261 1903.06,983.401 1903.9,956.838 1904.75,834.152 1905.59,783.831 1906.43,761.33 \n",
" 1907.27,627.95 1908.11,890.025 1908.96,1095.1 1909.8,994.555 1910.64,858.571 1911.48,1021.44 1912.33,909.136 1913.17,740.644 1914.01,570.724 1914.85,622.971 \n",
" 1915.69,571.92 1916.54,603.998 1917.38,832.069 1918.22,671.449 1919.06,988.346 1919.91,802.584 1920.75,805.666 1921.59,571.67 1922.43,420.934 1923.27,935.434 \n",
" 1924.12,711.356 1924.96,616.536 1925.8,748.609 1926.64,970.485 1927.48,593.99 1928.33,726.752 1929.17,1044.14 1930.01,829.264 1930.85,581.528 1931.7,541.708 \n",
" 1932.54,568.427 1933.38,651.346 1934.22,702.429 1935.06,1078.99 1935.91,718.385 1936.75,494.175 1937.59,705.821 1938.43,811.999 1939.28,735.056 1940.12,603.661 \n",
" 1940.96,578.409 1941.8,956.329 1942.64,758.649 1943.49,755.913 1944.33,562.894 1945.17,890.601 1946.01,984.717 1946.85,984.657 1947.7,877.638 1948.54,556.898 \n",
" 1949.38,883.495 1950.22,1258.5 1951.07,839.139 1951.91,1053.3 1952.75,805.523 1953.59,730.323 1954.43,757.814 1955.28,1179.34 1956.12,741.432 1956.96,597.787 \n",
" 1957.8,595.18 1958.65,544.023 1959.49,864.944 1960.33,868.799 1961.17,790.91 1962.01,861.37 1962.86,474.165 1963.7,909.105 1964.54,1080.58 1965.38,1208.23 \n",
" 1966.22,338.948 1967.07,1191.3 1967.91,715.407 1968.75,992.669 1969.59,462.064 1970.44,408.537 1971.28,706.505 1972.12,670.367 1972.96,823.136 1973.8,795.006 \n",
" 1974.65,674.925 1975.49,576.162 1976.33,1065.39 1977.17,984.302 1978.02,1074.55 1978.86,652.341 1979.7,825.638 1980.54,911.146 1981.38,880.375 1982.23,884.911 \n",
" 1983.07,808.472 1983.91,992.652 1984.75,1154.51 1985.59,869.843 1986.44,541.368 1987.28,890.994 1988.12,1058.63 1988.96,426.236 1989.81,930.443 1990.65,650.617 \n",
" 1991.49,884.792 1992.33,878.755 1993.17,676.406 1994.02,679.08 1994.86,932.782 1995.7,625.25 1996.54,825.599 1997.39,995.152 1998.23,823.618 1999.07,839.681 \n",
" 1999.91,744.62 2000.75,622.12 2001.6,508.543 2002.44,732.606 2003.28,881.113 2004.12,700.065 2004.96,635.586 2005.81,802.189 2006.65,895.51 2007.49,632.331 \n",
" 2008.33,691.875 2009.18,1157.67 2010.02,795.568 2010.86,720.045 2011.7,657.051 2012.54,699.783 2013.39,679.106 2014.23,790.676 2015.07,634.518 2015.91,1141.93 \n",
" 2016.75,403.757 2017.6,752.505 2018.44,852.429 2019.28,711.139 2020.12,567.875 2020.97,1191.44 2021.81,1013.34 2022.65,562.04 2023.49,536.79 2024.33,722.778 \n",
" 2025.18,822.027 2026.02,851.316 2026.86,787.03 2027.7,721.578 2028.55,851.289 2029.39,1042.27 2030.23,737.729 2031.07,915.705 2031.91,515.72 2032.76,204.85 \n",
" 2033.6,770.773 2034.44,1219.59 2035.28,617.995 2036.12,537.745 2036.97,649.162 2037.81,831.727 2038.65,1084.02 2039.49,809.769 2040.34,923.56 2041.18,750.094 \n",
" 2042.02,720.456 2042.86,640.308 2043.7,878.816 2044.55,729.275 2045.39,1327.08 2046.23,589.182 2047.07,579.28 2047.92,592.989 2048.76,829.059 2049.6,822.78 \n",
" 2050.44,566.105 2051.28,950.583 2052.13,778.032 2052.97,666.776 2053.81,931.132 2054.65,735.118 2055.49,501.302 2056.34,492.672 2057.18,88.0053 2058.02,717.321 \n",
" 2058.86,591.46 2059.71,1005.83 2060.55,830.389 2061.39,596.336 2062.23,986.461 2063.07,886.68 2063.92,525.684 2064.76,608.483 2065.6,862.938 2066.44,917.479 \n",
" 2067.29,280.316 2068.13,935.901 2068.97,1023.42 2069.81,451.228 2070.65,479.558 2071.5,331.312 2072.34,629.733 2073.18,1193.64 2074.02,860.032 2074.86,631.97 \n",
" 2075.71,529.913 2076.55,833.672 2077.39,1205.98 2078.23,645.309 2079.08,529.765 2079.92,791.984 2080.76,561.332 2081.6,197.138 2082.44,711.207 2083.29,949.463 \n",
" 2084.13,946.478 2084.97,884.55 2085.81,1009.92 2086.66,922.238 2087.5,501.393 2088.34,584.962 2089.18,798.946 2090.02,730.423 2090.87,433.822 2091.71,820.946 \n",
" 2092.55,1090.35 2093.39,489.271 2094.23,716.452 2095.08,742.783 2095.92,764.029 2096.76,332.814 2097.6,849.043 2098.45,439.597 2099.29,696.549 2100.13,896.662 \n",
" 2100.97,756.862 2101.81,330.165 2102.66,692.2 2103.5,297.168 2104.34,300.289 2105.18,922.152 2106.03,549.188 2106.87,973.841 2107.71,830.606 2108.55,765.871 \n",
" 2109.39,1223.37 2110.24,636.585 2111.08,821.594 2111.92,823.908 2112.76,1272.1 2113.6,989.578 2114.45,538.526 2115.29,884.957 2116.13,1167.5 2116.97,1091.9 \n",
" 2117.82,1155.86 2118.66,928.066 2119.5,241.105 2120.34,467.919 2121.18,1222.27 2122.03,809.174 2122.87,543.189 2123.71,812.691 2124.55,519.346 2125.39,626.194 \n",
" 2126.24,626.6 2127.08,840.921 2127.92,771.563 2128.76,467.456 2129.61,795.337 2130.45,647.14 2131.29,489.696 2132.13,1081.65 2132.97,702.93 2133.82,1117.09 \n",
" 2134.66,849.127 2135.5,995.615 2136.34,816.923 2137.19,978.705 2138.03,623.048 2138.87,918.983 2139.71,951.019 2140.55,734.72 2141.4,745.594 2142.24,960.979 \n",
" 2143.08,334.079 2143.92,1082.68 2144.76,473.354 2145.61,729.364 2146.45,612.894 2147.29,532.42 2148.13,932.507 2148.98,526.239 2149.82,972.356 2150.66,874.454 \n",
" 2151.5,780.005 2152.34,866.3 2153.19,545.03 2154.03,645.29 2154.87,1300.39 2155.71,900.342 2156.56,694.297 2157.4,990.344 2158.24,659.967 2159.08,749.551 \n",
" 2159.92,777.26 2160.77,994.848 2161.61,943.513 2162.45,841.332 2163.29,698.694 2164.13,657.799 2164.98,260.695 2165.82,724.431 2166.66,746.365 2167.5,507.344 \n",
" 2168.35,838.292 2169.19,756.693 2170.03,644.598 2170.87,797.103 2171.71,861.804 2172.56,943.39 2173.4,926.873 2174.24,674.794 2175.08,752.092 2175.93,624.247 \n",
" 2176.77,1043.4 2177.61,632.143 2178.45,670.019 2179.29,842.106 2180.14,367.189 2180.98,543.319 2181.82,379.701 2182.66,992.641 2183.5,804.833 2184.35,812.625 \n",
" 2185.19,628.936 2186.03,1045.43 2186.87,791.56 2187.72,858.62 2188.56,1155.11 2189.4,1086.95 2190.24,817.087 2191.08,1009.76 2191.93,654.002 2192.77,771.172 \n",
" 2193.61,403.615 2194.45,820.765 2195.3,853.052 2196.14,764.791 2196.98,1142.12 2197.82,811.26 2198.66,692.588 2199.51,796.343 2200.35,728.695 2201.19,617.679 \n",
" 2202.03,904.123 2202.87,699.748 2203.72,879.313 2204.56,790.81 2205.4,504.572 2206.24,581.594 2207.09,1041.93 2207.93,350.041 2208.77,549.664 2209.61,979.036 \n",
" 2210.45,835.042 2211.3,1018.71 2212.14,941.365 2212.98,807.605 2213.82,935.361 2214.67,863.724 2215.51,761.156 2216.35,814.638 2217.19,880.143 2218.03,666.266 \n",
" 2218.88,688.809 2219.72,536.222 2220.56,745.291 2221.4,469.329 2222.24,816.747 2223.09,1257.21 2223.93,1056.73 2224.77,960.689 2225.61,421.767 2226.46,1034.97 \n",
" 2227.3,912.902 2228.14,898.204 2228.98,716.596 2229.82,907.12 2230.67,753.357 2231.51,889.542 2232.35,711.324 2233.19,972.278 2234.04,427.902 2234.88,630.131 \n",
" 2235.72,798.213 2236.56,1025.05 2237.4,600.391 2238.25,675.615 2239.09,707.949 2239.93,730.36 2240.77,1132.58 2241.61,1027.21 2242.46,1184.05 2243.3,513.38 \n",
" 2244.14,566.139 2244.98,1146.62 2245.83,861.215 2246.67,713.187 2247.51,512.767 2248.35,875.868 2249.19,934.603 2250.04,682.958 2250.88,540.025 2251.72,1021.01 \n",
" 2252.56,1007.92 2253.4,509.474 2254.25,635.009 2255.09,842.596 2255.93,880.839 2256.77,874.723 2257.62,900.42 2258.46,606.715 2259.3,1032.82 2260.14,680.421 \n",
" 2260.98,1018.57 2261.83,854.11 2262.67,890.968 2263.51,950.818 2264.35,1021.5 2265.2,1094.31 2266.04,918.251 2266.88,614.804 2267.72,729.946 2268.56,827.788 \n",
" 2269.41,523.543 2270.25,769.731 2271.09,415.568 2271.93,979.502 2272.77,838.329 2273.62,662.339 2274.46,844.082 2275.3,785.329 2276.14,483.349 2276.99,591.077 \n",
" 2277.83,592.517 2278.67,624.5 2279.51,761.165 2280.35,593.51 2281.2,872.165 2282.04,1248.48 2282.88,714.719 2283.72,788.498 2284.57,914.93 2285.41,618.684 \n",
" 2286.25,773.7 2287.09,678.212 2287.93,646.892 2288.78,561.793 2289.62,565.648 2290.46,454.239 2291.3,1258.68 2292.14,926.786 2292.99,410.653 2293.83,825.509 \n",
" 2294.67,781.259 2295.51,788.317 2296.36,892.708 2297.2,873.14 2298.04,717.877 2298.88,908.087 2299.72,666.664 2300.57,655.347 2301.41,408.193 2302.25,809.494 \n",
" 2303.09,543.855 2303.94,1167.59 2304.78,678.586 2305.62,700.161 2306.46,749.133 2307.3,874.124 2308.15,408.842 2308.99,795.368 2309.83,865.185 2310.67,1091.55 \n",
" 2311.51,684.429 2312.36,727.044 2313.2,647.266 2314.04,501.777 2314.88,626.384 2315.73,758.114 2316.57,542.839 2317.41,865.413 2318.25,613.666 2319.09,671.034 \n",
" 2319.94,824.18 2320.78,560.586 2321.62,487.636 2322.46,497.347 2323.31,718.777 2324.15,1029.87 2324.99,840.387 2325.83,745.169 2326.67,944.02 2327.52,734.766 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1486.19,1243.72 1487.03,1243.72 1487.87,1243.72 1488.71,1243.72 1489.56,1243.72 1490.4,1243.72 1491.24,1243.72 1492.08,1243.72 1492.92,1243.72 1493.77,1243.72 \n",
" 1494.61,1243.72 1495.45,1243.72 1496.29,1243.72 1497.14,1243.72 1497.98,1243.72 1498.82,1243.72 1499.66,1243.72 1500.5,1243.72 1501.35,1243.72 1502.19,1243.72 \n",
" 1503.03,1243.72 1503.87,1243.72 1504.71,1243.72 1505.56,1243.72 1506.4,1243.72 1507.24,1243.72 1508.08,1243.72 1508.93,1243.72 1509.77,1243.72 1510.61,1243.72 \n",
" 1511.45,1243.72 1512.29,1243.72 1513.14,1243.72 1513.98,1243.72 1514.82,1243.72 1515.66,1243.72 1516.51,1243.72 1517.35,1243.72 1518.19,1243.72 1519.03,1243.72 \n",
" 1519.87,1243.72 1520.72,1243.72 1521.56,1243.72 1522.4,1243.72 1523.24,1243.72 1524.08,1243.72 1524.93,1243.72 1525.77,1243.72 1526.61,1243.72 1527.45,1243.72 \n",
" 1528.3,1243.72 1529.14,1243.72 1529.98,1243.72 1530.82,1243.72 1531.66,1243.72 1532.51,1243.72 1533.35,1243.72 1534.19,1243.72 1535.03,1243.72 1535.88,1243.72 \n",
" 1536.72,1243.72 1537.56,1243.72 1538.4,1243.72 1539.24,1243.72 1540.09,1243.72 1540.93,1243.72 1541.77,1243.72 1542.61,1243.72 1543.45,1243.72 1544.3,1243.72 \n",
" 1545.14,1243.72 1545.98,1243.72 1546.82,1243.72 1547.67,1243.72 1548.51,1243.72 1549.35,1243.72 1550.19,1243.72 1551.03,1243.72 1551.88,1243.72 1552.72,1243.72 \n",
" 1553.56,1243.72 1554.4,1243.72 1555.25,1243.72 1556.09,1243.72 1556.93,1243.72 1557.77,1243.72 1558.61,1243.72 1559.46,1243.72 1560.3,1243.72 1561.14,1243.72 \n",
" 1561.98,1243.72 1562.82,1243.72 1563.67,1243.72 1564.51,1243.72 1565.35,1243.72 1566.19,1243.72 1567.04,1243.72 1567.88,1243.72 1568.72,1243.72 1569.56,1243.72 \n",
" 1570.4,1243.72 1571.25,1243.72 1572.09,1243.72 1572.93,1243.72 1573.77,1243.72 1574.62,1243.72 1575.46,1243.72 1576.3,1243.72 1577.14,1243.72 1577.98,1243.72 \n",
" 1578.83,1243.72 1579.67,1243.72 1580.51,1243.72 1581.35,1243.72 1582.19,1243.72 1583.04,1243.72 1583.88,1243.72 1584.72,1243.72 1585.56,1243.72 1586.41,1243.72 \n",
" 1587.25,1243.72 1588.09,1243.72 1588.93,1243.72 1589.77,1243.72 1590.62,1243.72 1591.46,1243.72 1592.3,1243.72 1593.14,1243.72 1593.99,1243.72 1594.83,1243.72 \n",
" 1595.67,1243.72 1596.51,1243.72 1597.35,1243.72 1598.2,1243.72 1599.04,1243.72 1599.88,1243.72 1600.72,1243.72 1601.56,1243.72 1602.41,1243.72 1603.25,1243.72 \n",
" 1604.09,1243.72 1604.93,1243.72 1605.78,1243.72 1606.62,1243.72 1607.46,1243.72 1608.3,1243.72 1609.14,1243.72 1609.99,1243.72 1610.83,1243.72 1611.67,1243.72 \n",
" 1612.51,1243.72 1613.36,1243.72 1614.2,1243.72 1615.04,1243.72 1615.88,1243.72 1616.72,1243.72 1617.57,1243.72 1618.41,1243.72 1619.25,1243.72 1620.09,1243.72 \n",
" 1620.93,1243.72 1621.78,1243.72 1622.62,1243.72 1623.46,1243.72 1624.3,1243.72 1625.15,1243.72 1625.99,1243.72 1626.83,1243.72 1627.67,1243.72 1628.51,1243.72 \n",
" 1629.36,1243.72 1630.2,1243.72 1631.04,1243.72 1631.88,1243.72 1632.72,1243.72 1633.57,1243.72 1634.41,1243.72 1635.25,1243.72 1636.09,1243.72 1636.94,1243.72 \n",
" 1637.78,1243.72 1638.62,1243.72 1639.46,1243.72 1640.3,1243.72 1641.15,1243.72 1641.99,1243.72 1642.83,1243.72 1643.67,1243.72 1644.52,1243.72 1645.36,1243.72 \n",
" 1646.2,1243.72 1647.04,1243.72 1647.88,1243.72 1648.73,1243.72 1649.57,1243.72 1650.41,1243.72 1651.25,1243.72 1652.09,1243.72 1652.94,1243.72 1653.78,1243.72 \n",
" 1654.62,1243.72 1655.46,1243.72 1656.31,1243.72 1657.15,1243.72 1657.99,1243.72 1658.83,1243.72 1659.67,1243.72 1660.52,1243.72 1661.36,1243.72 1662.2,1243.72 \n",
" 1663.04,1243.72 1663.89,1243.72 1664.73,1243.72 1665.57,1243.72 1666.41,1243.72 1667.25,1243.72 1668.1,1243.72 1668.94,1243.72 1669.78,1243.72 1670.62,1243.72 \n",
" 1671.46,1243.72 1672.31,1243.72 1673.15,1243.72 1673.99,1243.72 1674.83,1243.72 1675.68,1243.72 1676.52,1243.72 1677.36,1243.72 1678.2,1243.72 1679.04,1243.72 \n",
" 1679.89,1243.72 1680.73,1243.72 1681.57,1243.72 1682.41,1243.72 1683.26,1243.72 1684.1,1243.72 1684.94,1243.72 1685.78,1243.72 1686.62,1243.72 1687.47,1243.72 \n",
" 1688.31,1243.72 1689.15,1243.72 1689.99,1243.72 1690.83,1243.72 1691.68,1243.72 1692.52,1243.72 1693.36,1243.72 1694.2,1243.72 1695.05,1243.72 1695.89,1243.72 \n",
" 1696.73,1243.72 1697.57,1243.72 1698.41,1243.72 1699.26,1243.72 1700.1,1243.72 1700.94,1243.72 1701.78,1243.72 1702.63,1243.72 1703.47,1243.72 1704.31,1243.72 \n",
" 1705.15,1243.72 1705.99,1243.72 1706.84,1243.72 1707.68,1243.72 1708.52,1243.72 1709.36,1243.72 1710.2,1243.72 1711.05,1243.72 1711.89,1243.72 1712.73,1243.72 \n",
" 1713.57,1243.72 1714.42,1243.72 1715.26,1243.72 1716.1,1243.72 1716.94,1243.72 1717.78,1243.72 1718.63,1243.72 1719.47,1243.72 1720.31,1243.72 1721.15,1243.72 \n",
" 1722,1243.72 1722.84,1243.72 1723.68,1243.72 1724.52,1243.72 1725.36,1243.72 1726.21,1243.72 1727.05,1243.72 1727.89,1243.72 1728.73,1243.72 1729.57,1243.72 \n",
" 1730.42,1243.72 1731.26,1243.72 1732.1,1243.72 1732.94,1243.72 1733.79,1243.72 1734.63,1243.72 1735.47,1243.72 1736.31,1243.72 1737.15,1243.72 1738,1243.72 \n",
" 1738.84,1243.72 1739.68,1243.72 1740.52,1243.72 1741.37,1243.72 1742.21,1243.72 1743.05,1243.72 1743.89,1243.72 1744.73,1243.72 1745.58,1243.72 1746.42,1243.72 \n",
" 1747.26,1243.72 1748.1,1243.72 1748.94,1243.72 1749.79,1243.72 1750.63,1243.72 1751.47,1243.72 1752.31,1243.72 1753.16,1243.72 1754,1243.72 1754.84,1243.72 \n",
" 1755.68,1243.72 1756.52,1243.72 1757.37,1243.72 1758.21,1243.72 1759.05,1243.72 1759.89,1243.72 1760.73,1243.72 1761.58,1243.72 1762.42,1243.72 1763.26,1243.72 \n",
" 1764.1,1243.72 1764.95,1243.72 1765.79,1243.72 1766.63,1243.72 1767.47,1243.72 1768.31,1243.72 1769.16,1243.72 1770,1243.72 1770.84,1243.72 1771.68,1243.72 \n",
" 1772.53,1243.72 1773.37,1243.72 1774.21,1243.72 1775.05,1243.72 1775.89,1243.72 1776.74,1243.72 1777.58,1243.72 1778.42,1243.72 1779.26,1243.72 1780.1,1243.72 \n",
" 1780.95,1243.72 1781.79,1243.72 1782.63,1243.72 1783.47,1243.72 1784.32,1243.72 1785.16,1243.72 1786,1243.72 1786.84,1243.72 1787.68,1243.72 1788.53,1243.72 \n",
" 1789.37,1243.72 1790.21,1243.72 1791.05,1243.72 1791.9,1243.72 1792.74,1243.72 1793.58,1243.72 1794.42,1243.72 1795.26,1243.72 1796.11,1243.72 1796.95,1243.72 \n",
" 1797.79,1243.72 1798.63,1243.72 1799.47,1243.72 1800.32,1243.72 1801.16,1243.72 1802,1243.72 1802.84,1243.72 1803.69,1243.72 1804.53,1243.72 1805.37,1243.72 \n",
" 1806.21,1243.72 1807.05,1243.72 1807.9,1243.72 1808.74,1243.72 1809.58,1243.72 1810.42,1243.72 1811.27,1243.72 1812.11,1243.72 1812.95,1243.72 1813.79,1243.72 \n",
" 1814.63,1243.72 1815.48,1243.72 1816.32,1243.72 1817.16,1243.72 1818,1243.72 1818.84,1243.72 1819.69,1243.72 1820.53,1243.72 1821.37,1243.72 1822.21,1243.72 \n",
" 1823.06,1243.72 1823.9,1243.72 1824.74,1243.72 1825.58,1243.72 1826.42,1243.72 1827.27,1243.72 1828.11,1243.72 1828.95,1243.72 1829.79,1243.72 1830.64,1243.72 \n",
" 1831.48,1243.72 1832.32,1243.72 1833.16,1243.72 1834,1243.72 1834.85,1243.72 1835.69,1243.72 1836.53,1243.72 1837.37,1243.72 1838.21,1243.72 1839.06,1243.72 \n",
" 1839.9,1243.72 1840.74,1243.72 1841.58,1243.72 1842.43,1243.72 1843.27,1243.72 1844.11,1243.72 1844.95,1243.72 1845.79,1243.72 1846.64,1243.72 1847.48,1243.72 \n",
" 1848.32,1243.72 1849.16,1243.72 1850.01,1243.72 1850.85,1243.72 1851.69,1243.72 1852.53,1243.72 1853.37,1243.72 1854.22,1243.72 1855.06,1243.72 1855.9,1243.72 \n",
" 1856.74,1243.72 1857.58,1243.72 1858.43,1243.72 1859.27,1243.72 1860.11,1243.72 1860.95,1243.72 1861.8,1243.72 1862.64,1243.72 1863.48,1243.72 1864.32,1243.72 \n",
" 1865.16,1243.72 1866.01,1243.72 1866.85,1243.72 1867.69,1243.72 1868.53,1243.72 1869.38,1243.72 1870.22,1243.72 1871.06,1243.72 1871.9,1243.72 1872.74,1243.72 \n",
" 1873.59,1243.72 1874.43,1243.72 1875.27,1243.72 1876.11,1243.72 1876.95,1243.72 1877.8,1243.72 1878.64,1243.72 1879.48,1243.72 1880.32,1243.72 1881.17,1243.72 \n",
" 1882.01,1243.72 1882.85,1243.72 1883.69,1243.72 1884.53,1243.72 1885.38,1243.72 1886.22,1243.72 1887.06,1243.72 1887.9,1243.72 1888.74,1243.72 1889.59,1243.72 \n",
" 1890.43,1243.72 1891.27,1243.72 1892.11,1243.72 1892.96,1243.72 1893.8,1243.72 1894.64,1243.72 1895.48,1243.72 1896.32,1243.72 1897.17,1243.72 1898.01,1243.72 \n",
" 1898.85,1243.72 1899.69,1243.72 1900.54,1243.72 1901.38,1243.72 1902.22,1243.72 1903.06,1243.72 1903.9,1243.72 1904.75,1243.72 1905.59,1243.72 1906.43,1243.72 \n",
" 1907.27,1243.72 1908.11,1243.72 1908.96,1243.72 1909.8,1243.72 1910.64,1243.72 1911.48,1243.72 1912.33,1243.72 1913.17,1243.72 1914.01,1243.72 1914.85,1243.72 \n",
" 1915.69,1243.72 1916.54,1243.72 1917.38,1243.72 1918.22,1243.72 1919.06,1243.72 1919.91,1243.72 1920.75,1243.72 1921.59,1243.72 1922.43,1243.72 1923.27,1243.72 \n",
" 1924.12,1243.72 1924.96,1243.72 1925.8,1243.72 1926.64,1243.72 1927.48,1243.72 1928.33,1243.72 1929.17,1243.72 1930.01,1243.72 1930.85,1243.72 1931.7,1243.72 \n",
" 1932.54,1243.72 1933.38,1243.72 1934.22,1243.72 1935.06,1243.72 1935.91,1243.72 1936.75,1243.72 1937.59,1243.72 1938.43,1243.72 1939.28,1243.72 1940.12,1243.72 \n",
" 1940.96,1243.72 1941.8,1243.72 1942.64,1243.72 1943.49,1243.72 1944.33,1243.72 1945.17,1243.72 1946.01,1243.72 1946.85,1243.72 1947.7,1243.72 1948.54,1243.72 \n",
" 1949.38,1243.72 1950.22,1243.72 1951.07,1243.72 1951.91,1243.72 1952.75,1243.72 1953.59,1243.72 1954.43,1243.72 1955.28,1243.72 1956.12,1243.72 1956.96,1243.72 \n",
" 1957.8,1243.72 1958.65,1243.72 1959.49,1243.72 1960.33,1243.72 1961.17,1243.72 1962.01,1243.72 1962.86,1243.72 1963.7,1243.72 1964.54,1243.72 1965.38,1243.72 \n",
" 1966.22,1243.72 1967.07,1243.72 1967.91,1243.72 1968.75,1243.72 1969.59,1243.72 1970.44,1243.72 1971.28,1243.72 1972.12,1243.72 1972.96,1243.72 1973.8,1243.72 \n",
" 1974.65,1243.72 1975.49,1243.72 1976.33,1243.72 1977.17,1243.72 1978.02,1243.72 1978.86,1243.72 1979.7,1243.72 1980.54,1243.72 1981.38,1243.72 1982.23,1243.72 \n",
" 1983.07,1243.72 1983.91,1243.72 1984.75,1243.72 1985.59,1243.72 1986.44,1243.72 1987.28,1243.72 1988.12,1243.72 1988.96,1243.72 1989.81,1243.72 1990.65,1243.72 \n",
" 1991.49,1243.72 1992.33,1243.72 1993.17,1243.72 1994.02,1243.72 1994.86,1243.72 1995.7,1243.72 1996.54,1243.72 1997.39,1243.72 1998.23,1243.72 1999.07,1243.72 \n",
" 1999.91,1243.72 2000.75,1243.72 2001.6,1243.72 2002.44,1243.72 2003.28,1243.72 2004.12,1243.72 2004.96,1243.72 2005.81,1243.72 2006.65,1243.72 2007.49,1243.72 \n",
" 2008.33,1243.72 2009.18,1243.72 2010.02,1243.72 2010.86,1243.72 2011.7,1243.72 2012.54,1243.72 2013.39,1243.72 2014.23,1243.72 2015.07,1243.72 2015.91,1243.72 \n",
" 2016.75,1243.72 2017.6,1243.72 2018.44,1243.72 2019.28,1243.72 2020.12,1243.72 2020.97,1243.72 2021.81,1243.72 2022.65,1243.72 2023.49,1243.72 2024.33,1243.72 \n",
" 2025.18,1243.72 2026.02,1243.72 2026.86,1243.72 2027.7,1243.72 2028.55,1243.72 2029.39,1243.72 2030.23,1243.72 2031.07,1243.72 2031.91,1243.72 2032.76,1243.72 \n",
" 2033.6,1243.72 2034.44,1243.72 2035.28,1243.72 2036.12,1243.72 2036.97,1243.72 2037.81,1243.72 2038.65,1243.72 2039.49,1243.72 2040.34,1243.72 2041.18,1243.72 \n",
" 2042.02,1243.72 2042.86,1243.72 2043.7,1243.72 2044.55,1243.72 2045.39,1243.72 2046.23,1243.72 2047.07,1243.72 2047.92,1243.72 2048.76,1243.72 2049.6,1243.72 \n",
" 2050.44,1243.72 2051.28,1243.72 2052.13,1243.72 2052.97,1243.72 2053.81,1243.72 2054.65,1243.72 2055.49,1243.72 2056.34,1243.72 2057.18,1243.72 2058.02,1243.72 \n",
" 2058.86,1243.72 2059.71,1243.72 2060.55,1243.72 2061.39,1243.72 2062.23,1243.72 2063.07,1243.72 2063.92,1243.72 2064.76,1243.72 2065.6,1243.72 2066.44,1243.72 \n",
" 2067.29,1243.72 2068.13,1243.72 2068.97,1243.72 2069.81,1243.72 2070.65,1243.72 2071.5,1243.72 2072.34,1243.72 2073.18,1243.72 2074.02,1243.72 2074.86,1243.72 \n",
" 2075.71,1243.72 2076.55,1243.72 2077.39,1243.72 2078.23,1243.72 2079.08,1243.72 2079.92,1243.72 2080.76,1243.72 2081.6,1243.72 2082.44,1243.72 2083.29,1243.72 \n",
" 2084.13,1243.72 2084.97,1243.72 2085.81,1243.72 2086.66,1243.72 2087.5,1243.72 2088.34,1243.72 2089.18,1243.72 2090.02,1243.72 2090.87,1243.72 2091.71,1243.72 \n",
" 2092.55,1243.72 2093.39,1243.72 2094.23,1243.72 2095.08,1243.72 2095.92,1243.72 2096.76,1243.72 2097.6,1243.72 2098.45,1243.72 2099.29,1243.72 2100.13,1243.72 \n",
" 2100.97,1243.72 2101.81,1243.72 2102.66,1243.72 2103.5,1243.72 2104.34,1243.72 2105.18,1243.72 2106.03,1243.72 2106.87,1243.72 2107.71,1243.72 2108.55,1243.72 \n",
" 2109.39,1243.72 2110.24,1243.72 2111.08,1243.72 2111.92,1243.72 2112.76,1243.72 2113.6,1243.72 2114.45,1243.72 2115.29,1243.72 2116.13,1243.72 2116.97,1243.72 \n",
" 2117.82,1243.72 2118.66,1243.72 2119.5,1243.72 2120.34,1243.72 2121.18,1243.72 2122.03,1243.72 2122.87,1243.72 2123.71,1243.72 2124.55,1243.72 2125.39,1243.72 \n",
" 2126.24,1243.72 2127.08,1243.72 2127.92,1243.72 2128.76,1243.72 2129.61,1243.72 2130.45,1243.72 2131.29,1243.72 2132.13,1243.72 2132.97,1243.72 2133.82,1243.72 \n",
" 2134.66,1243.72 2135.5,1243.72 2136.34,1243.72 2137.19,1243.72 2138.03,1243.72 2138.87,1243.72 2139.71,1243.72 2140.55,1243.72 2141.4,1243.72 2142.24,1243.72 \n",
" 2143.08,1243.72 2143.92,1243.72 2144.76,1243.72 2145.61,1243.72 2146.45,1243.72 2147.29,1243.72 2148.13,1243.72 2148.98,1243.72 2149.82,1243.72 2150.66,1243.72 \n",
" 2151.5,1243.72 2152.34,1243.72 2153.19,1243.72 2154.03,1243.72 2154.87,1243.72 2155.71,1243.72 2156.56,1243.72 2157.4,1243.72 2158.24,1243.72 2159.08,1243.72 \n",
" 2159.92,1243.72 2160.77,1243.72 2161.61,1243.72 2162.45,1243.72 2163.29,1243.72 2164.13,1243.72 2164.98,1243.72 2165.82,1243.72 2166.66,1243.72 2167.5,1243.72 \n",
" 2168.35,1243.72 2169.19,1243.72 2170.03,1243.72 2170.87,1243.72 2171.71,1243.72 2172.56,1243.72 2173.4,1243.72 2174.24,1243.72 2175.08,1243.72 2175.93,1243.72 \n",
" 2176.77,1243.72 2177.61,1243.72 2178.45,1243.72 2179.29,1243.72 2180.14,1243.72 2180.98,1243.72 2181.82,1243.72 2182.66,1243.72 2183.5,1243.72 2184.35,1243.72 \n",
" 2185.19,1243.72 2186.03,1243.72 2186.87,1243.72 2187.72,1243.72 2188.56,1243.72 2189.4,1243.72 2190.24,1243.72 2191.08,1243.72 2191.93,1243.72 2192.77,1243.72 \n",
" 2193.61,1243.72 2194.45,1243.72 2195.3,1243.72 2196.14,1243.72 2196.98,1243.72 2197.82,1243.72 2198.66,1243.72 2199.51,1243.72 2200.35,1243.72 2201.19,1243.72 \n",
" 2202.03,1243.72 2202.87,1243.72 2203.72,1243.72 2204.56,1243.72 2205.4,1243.72 2206.24,1243.72 2207.09,1243.72 2207.93,1243.72 2208.77,1243.72 2209.61,1243.72 \n",
" 2210.45,1243.72 2211.3,1243.72 2212.14,1243.72 2212.98,1243.72 2213.82,1243.72 2214.67,1243.72 2215.51,1243.72 2216.35,1243.72 2217.19,1243.72 2218.03,1243.72 \n",
" 2218.88,1243.72 2219.72,1243.72 2220.56,1243.72 2221.4,1243.72 2222.24,1243.72 2223.09,1243.72 2223.93,1243.72 2224.77,1243.72 2225.61,1243.72 2226.46,1243.72 \n",
" 2227.3,1243.72 2228.14,1243.72 2228.98,1243.72 2229.82,1243.72 2230.67,1243.72 2231.51,1243.72 2232.35,1243.72 2233.19,1243.72 2234.04,1243.72 2234.88,1243.72 \n",
" 2235.72,1243.72 2236.56,1243.72 2237.4,1243.72 2238.25,1243.72 2239.09,1243.72 2239.93,1243.72 2240.77,1243.72 2241.61,1243.72 2242.46,1243.72 2243.3,1243.72 \n",
" 2244.14,1243.72 2244.98,1243.72 2245.83,1243.72 2246.67,1243.72 2247.51,1243.72 2248.35,1243.72 2249.19,1243.72 2250.04,1243.72 2250.88,1243.72 2251.72,1243.72 \n",
" 2252.56,1243.72 2253.4,1243.72 2254.25,1243.72 2255.09,1243.72 2255.93,1243.72 2256.77,1243.72 2257.62,1243.72 2258.46,1243.72 2259.3,1243.72 2260.14,1243.72 \n",
" 2260.98,1243.72 2261.83,1243.72 2262.67,1243.72 2263.51,1243.72 2264.35,1243.72 2265.2,1243.72 2266.04,1243.72 2266.88,1243.72 2267.72,1243.72 2268.56,1243.72 \n",
" 2269.41,1243.72 2270.25,1243.72 2271.09,1243.72 2271.93,1243.72 2272.77,1243.72 2273.62,1243.72 2274.46,1243.72 2275.3,1243.72 2276.14,1243.72 2276.99,1243.72 \n",
" 2277.83,1243.72 2278.67,1243.72 2279.51,1243.72 2280.35,1243.72 2281.2,1243.72 2282.04,1243.72 2282.88,1243.72 2283.72,1243.72 2284.57,1243.72 2285.41,1243.72 \n",
" 2286.25,1243.72 2287.09,1243.72 2287.93,1243.72 2288.78,1243.72 2289.62,1243.72 2290.46,1243.72 2291.3,1243.72 2292.14,1243.72 2292.99,1243.72 2293.83,1243.72 \n",
" 2294.67,1243.72 2295.51,1243.72 2296.36,1243.72 2297.2,1243.72 2298.04,1243.72 2298.88,1243.72 2299.72,1243.72 2300.57,1243.72 2301.41,1243.72 2302.25,1243.72 \n",
" 2303.09,1243.72 2303.94,1243.72 2304.78,1243.72 2305.62,1243.72 2306.46,1243.72 2307.3,1243.72 2308.15,1243.72 2308.99,1243.72 2309.83,1243.72 2310.67,1243.72 \n",
" 2311.51,1243.72 2312.36,1243.72 2313.2,1243.72 2314.04,1243.72 2314.88,1243.72 2315.73,1243.72 2316.57,1243.72 2317.41,1243.72 2318.25,1243.72 2319.09,1243.72 \n",
" 2319.94,1243.72 2320.78,1243.72 2321.62,1243.72 2322.46,1243.72 2323.31,1243.72 2324.15,1243.72 2324.99,1243.72 2325.83,1243.72 2326.67,1243.72 2327.52,1243.72 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7703)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1486.19,638.211 1487.03,640.899 1487.87,743.564 1488.71,734.49 1489.56,732.103 1490.4,741.073 1491.24,707.072 1492.08,723.12 1492.92,770.992 1493.77,740.552 \n",
" 1494.61,768.231 1495.45,775.376 1496.29,765.035 1497.14,756.893 1497.98,757.899 1498.82,758.336 1499.66,755.403 1500.5,756.845 1501.35,747.629 1502.19,743.991 \n",
" 1503.03,740.913 1503.87,748.792 1504.71,743.058 1505.56,763.098 1506.4,765.782 1507.24,765.38 1508.08,778.646 1508.93,772.91 1509.77,772.604 1510.61,768.401 \n",
" 1511.45,770.581 1512.29,770.818 1513.14,763.884 1513.98,766.77 1514.82,758.839 1515.66,766.406 1516.51,777.432 1517.35,771.426 1518.19,757.099 1519.03,756.094 \n",
" 1519.87,756.772 1520.72,753.684 1521.56,750.017 1522.4,754.155 1523.24,755.889 1524.08,762.294 1524.93,761.523 1525.77,757.964 1526.61,751.944 1527.45,752.444 \n",
" 1528.3,747.659 1529.14,743.258 1529.98,736.893 1530.82,740.754 1531.66,744.94 1532.51,746.984 1533.35,743.819 1534.19,735.946 1535.03,734.094 1535.88,736.671 \n",
" 1536.72,742.194 1537.56,739.939 1538.4,746.076 1539.24,748.868 1540.09,750.34 1540.93,753.188 1541.77,754.278 1542.61,757.019 1543.45,763.625 1544.3,764.637 \n",
" 1545.14,764.56 1545.98,763.515 1546.82,762.426 1547.67,766.814 1548.51,765.908 1549.35,764.958 1550.19,763.436 1551.03,764.267 1551.88,766.449 1552.72,764.279 \n",
" 1553.56,761.617 1554.4,763.436 1555.25,762.144 1556.09,762.421 1556.93,764.242 1557.77,761.617 1558.61,762.12 1559.46,763.386 1560.3,763.067 1561.14,764.937 \n",
" 1561.98,759.212 1562.82,761.126 1563.67,761.833 1564.51,762.2 1565.35,762.42 1566.19,762.589 1567.04,765.504 1567.88,763.267 1568.72,765.923 1569.56,767.033 \n",
" 1570.4,766.108 1571.25,767.188 1572.09,762.119 1572.93,763.181 1573.77,760.726 1574.62,758.962 1575.46,759.021 1576.3,761.653 1577.14,764.187 1577.98,764.265 \n",
" 1578.83,763.841 1579.67,765.005 1580.51,765.807 1581.35,764.409 1582.19,766.762 1583.04,765.551 1583.88,767.82 1584.72,768.921 1585.56,770.255 1586.41,770.588 \n",
" 1587.25,771.922 1588.09,773.048 1588.93,772.075 1589.77,771.785 1590.62,770.899 1591.46,770.121 1592.3,768.289 1593.14,768.591 1593.99,767.833 1594.83,770.299 \n",
" 1595.67,773.075 1596.51,772.789 1597.35,772.96 1598.2,775.767 1599.04,774.58 1599.88,774.983 1600.72,773.601 1601.56,775.32 1602.41,773.231 1603.25,772.042 \n",
" 1604.09,772.511 1604.93,771.916 1605.78,771.33 1606.62,772.234 1607.46,771.895 1608.3,772.649 1609.14,771.155 1609.99,773.217 1610.83,771.102 1611.67,770.454 \n",
" 1612.51,770.053 1613.36,770.539 1614.2,772.844 1615.04,774.847 1615.88,775.687 1616.72,776.803 1617.57,774.443 1618.41,775.222 1619.25,776.646 1620.09,776.904 \n",
" 1620.93,776.541 1621.78,777.515 1622.62,774.232 1623.46,775.132 1624.3,776.422 1625.15,777.635 1625.99,776.595 1626.83,776.92 1627.67,776.733 1628.51,776.406 \n",
" 1629.36,776.183 1630.2,775.749 1631.04,777.746 1631.88,776.928 1632.72,778.024 1633.57,777.22 1634.41,778.028 1635.25,780.551 1636.09,779.819 1636.94,780.623 \n",
" 1637.78,780.288 1638.62,781.23 1639.46,781.61 1640.3,781.397 1641.15,781.673 1641.99,781.993 1642.83,781.101 1643.67,779.339 1644.52,779.6 1645.36,778.073 \n",
" 1646.2,776.111 1647.04,775.101 1647.88,775.658 1648.73,776.404 1649.57,776.205 1650.41,775.623 1651.25,775.344 1652.09,774.451 1652.94,774.111 1653.78,776.299 \n",
" 1654.62,774.485 1655.46,774.227 1656.31,774.519 1657.15,773.578 1657.99,774.312 1658.83,774.351 1659.67,774.207 1660.52,775.337 1661.36,775.202 1662.2,775.357 \n",
" 1663.04,775.551 1663.89,776.372 1664.73,777.174 1665.57,777.587 1666.41,778.176 1667.25,777.961 1668.1,777.11 1668.94,777.702 1669.78,776.533 1670.62,776.115 \n",
" 1671.46,776.198 1672.31,775.985 1673.15,775.929 1673.99,776.532 1674.83,776.166 1675.68,776.317 1676.52,774.578 1677.36,774.741 1678.2,775.242 1679.04,776.061 \n",
" 1679.89,775.699 1680.73,775.005 1681.57,774.141 1682.41,773.564 1683.26,772.143 1684.1,771.025 1684.94,769.352 1685.78,768.826 1686.62,768.999 1687.47,770.624 \n",
" 1688.31,771.193 1689.15,771.263 1689.99,771.312 1690.83,772.254 1691.68,771.96 1692.52,772.69 1693.36,771.998 1694.2,770.846 1695.05,770.076 1695.89,770.704 \n",
" 1696.73,771.452 1697.57,770.075 1698.41,769.405 1699.26,768.519 1700.1,768.022 1700.94,767.082 1701.78,768.264 1702.63,770.893 1703.47,770.488 1704.31,770.369 \n",
" 1705.15,770.234 1705.99,771.175 1706.84,773.065 1707.68,773.721 1708.52,773.86 1709.36,775.403 1710.2,775.116 1711.05,775.214 1711.89,776.092 1712.73,775.707 \n",
" 1713.57,775.325 1714.42,776.27 1715.26,776.023 1716.1,776.526 1716.94,776.582 1717.78,777.644 1718.63,776.996 1719.47,775.865 1720.31,776.188 1721.15,777.284 \n",
" 1722,779.28 1722.84,778.624 1723.68,778.473 1724.52,778.163 1725.36,778.115 1726.21,778.198 1727.05,778.394 1727.89,778.621 1728.73,778.707 1729.57,778.936 \n",
" 1730.42,778.361 1731.26,778.196 1732.1,777.645 1732.94,777.382 1733.79,776.323 1734.63,775.555 1735.47,774.908 1736.31,774.363 1737.15,774.033 1738,774.155 \n",
" 1738.84,774.886 1739.68,774.176 1740.52,772.6 1741.37,773.275 1742.21,772.341 1743.05,773.107 1743.89,772.302 1744.73,773.145 1745.58,773.228 1746.42,773.575 \n",
" 1747.26,773.261 1748.1,773.094 1748.94,772.651 1749.79,771.433 1750.63,771.488 1751.47,771.628 1752.31,772.011 1753.16,772.147 1754,771.626 1754.84,770.976 \n",
" 1755.68,771.358 1756.52,770.994 1757.37,771.082 1758.21,770.775 1759.05,771.158 1759.89,771.714 1760.73,771.655 1761.58,771.16 1762.42,771.409 1763.26,770.824 \n",
" 1764.1,770.095 1764.95,770.256 1765.79,770.211 1766.63,770.478 1767.47,770.671 1768.31,770.21 1769.16,770.572 1770,770.423 1770.84,771.203 1771.68,771.272 \n",
" 1772.53,771.46 1773.37,770.491 1774.21,769.517 1775.05,770.703 1775.89,770.917 1776.74,769.753 1777.58,769.769 1778.42,770.424 1779.26,769.763 1780.1,769.509 \n",
" 1780.95,769.004 1781.79,769.425 1782.63,769.895 1783.47,770.08 1784.32,771.045 1785.16,770.38 1786,770.218 1786.84,770.033 1787.68,770.545 1788.53,770.865 \n",
" 1789.37,769.899 1790.21,769.374 1791.05,769.51 1791.9,769.343 1792.74,769.077 1793.58,769.549 1794.42,769.43 1795.26,769.277 1796.11,768.5 1796.95,768.227 \n",
" 1797.79,768.967 1798.63,768.348 1799.47,767.988 1800.32,768.205 1801.16,768.104 1802,766.978 1802.84,766.547 1803.69,766.968 1804.53,766.674 1805.37,766.359 \n",
" 1806.21,765.982 1807.05,766.806 1807.9,766.823 1808.74,766.479 1809.58,766.368 1810.42,766.013 1811.27,765.074 1812.11,765.593 1812.95,765.313 1813.79,765.502 \n",
" 1814.63,765.504 1815.48,764.996 1816.32,765.081 1817.16,764.578 1818,763.772 1818.84,764.418 1819.69,764.124 1820.53,764.188 1821.37,764.075 1822.21,763.882 \n",
" 1823.06,764.003 1823.9,763.797 1824.74,763.228 1825.58,763.179 1826.42,761.881 1827.27,761.543 1828.11,760.933 1828.95,760.972 1829.79,761.173 1830.64,760.455 \n",
" 1831.48,760.683 1832.32,760.21 1833.16,759.597 1834,759.177 1834.85,759.359 1835.69,758.967 1836.53,758.795 1837.37,758.809 1838.21,759.794 1839.06,759.697 \n",
" 1839.9,759.53 1840.74,759.769 1841.58,759.564 1842.43,759.344 1843.27,759.48 1844.11,758.989 1844.95,759.287 1845.79,758.906 1846.64,758.259 1847.48,758.379 \n",
" 1848.32,758.922 1849.16,758.692 1850.01,759.077 1850.85,758.796 1851.69,757.957 1852.53,757.94 1853.37,758.203 1854.22,758.075 1855.06,757.928 1855.9,757.283 \n",
" 1856.74,756.982 1857.58,757.241 1858.43,757.646 1859.27,757.94 1860.11,757.189 1860.95,756.59 1861.8,757.226 1862.64,757.694 1863.48,757.578 1864.32,758.154 \n",
" 1865.16,757.748 1866.01,757.35 1866.85,757.747 1867.69,757.293 1868.53,756.927 1869.38,756.777 1870.22,756.91 1871.06,756.305 1871.9,755.766 1872.74,755.836 \n",
" 1873.59,756.264 1874.43,755.162 1875.27,755.905 1876.11,756.882 1876.95,757.151 1877.8,757.097 1878.64,758.107 1879.48,758.186 1880.32,757.94 1881.17,758.34 \n",
" 1882.01,758.81 1882.85,758.497 1883.69,758.783 1884.53,758.592 1885.38,758.357 1886.22,758.248 1887.06,758.916 1887.9,759.061 1888.74,759.738 1889.59,759.923 \n",
" 1890.43,761.016 1891.27,761.658 1892.11,761.403 1892.96,760.995 1893.8,761.401 1894.64,761.62 1895.48,761.73 1896.32,761.527 1897.17,761.969 1898.01,762.591 \n",
" 1898.85,762.672 1899.69,763.203 1900.54,762.657 1901.38,762.204 1902.22,762.457 1903.06,762.902 1903.9,763.292 1904.75,763.434 1905.59,763.475 1906.43,763.471 \n",
" 1907.27,763.201 1908.11,763.453 1908.96,764.113 1909.8,764.57 1910.64,764.756 1911.48,765.263 1912.33,765.547 1913.17,765.498 1914.01,765.115 1914.85,764.837 \n",
" 1915.69,764.459 1916.54,764.146 1917.38,764.278 1918.22,764.097 1919.06,764.533 1919.91,764.607 1920.75,764.686 1921.59,764.313 1922.43,763.652 1923.27,763.982 \n",
" 1924.12,763.881 1924.96,763.599 1925.8,763.57 1926.64,763.965 1927.48,763.641 1928.33,763.571 1929.17,764.104 1930.01,764.227 1930.85,763.882 1931.7,763.462 \n",
" 1932.54,763.095 1933.38,762.885 1934.22,762.772 1935.06,763.364 1935.91,763.28 1936.75,762.778 1937.59,762.672 1938.43,762.763 1939.28,762.712 1940.12,762.417 \n",
" 1940.96,762.077 1941.8,762.436 1942.64,762.429 1943.49,762.417 1944.33,762.051 1945.17,762.286 1946.01,762.693 1946.85,763.098 1947.7,763.306 1948.54,762.931 \n",
" 1949.38,763.15 1950.22,764.047 1951.07,764.183 1951.91,764.705 1952.75,764.778 1953.59,764.716 1954.43,764.704 1955.28,765.447 1956.12,765.404 1956.96,765.105 \n",
" 1957.8,764.802 1958.65,764.409 1959.49,764.588 1960.33,764.772 1961.17,764.819 1962.01,764.989 1962.86,764.476 1963.7,764.731 1964.54,765.286 1965.38,766.063 \n",
" 1966.22,765.315 1967.07,766.06 1967.91,765.972 1968.75,766.366 1969.59,765.837 1970.44,765.217 1971.28,765.115 1972.12,764.951 1972.96,765.052 1973.8,765.103 \n",
" 1974.65,764.948 1975.49,764.624 1976.33,765.14 1977.17,765.515 1978.02,766.043 1978.86,765.849 1979.7,765.951 1980.54,766.198 1981.38,766.392 1982.23,766.593 \n",
" 1983.07,766.664 1983.91,767.045 1984.75,767.699 1985.59,767.871 1986.44,767.49 1987.28,767.697 1988.12,768.185 1988.96,767.613 1989.81,767.885 1990.65,767.689 \n",
" 1991.49,767.884 1992.33,768.068 1993.17,767.916 1994.02,767.769 1994.86,768.042 1995.7,767.806 1996.54,767.901 1997.39,768.275 1998.23,768.366 1999.07,768.483 \n",
" 1999.91,768.444 2000.75,768.205 2001.6,767.781 2002.44,767.724 2003.28,767.908 2004.12,767.798 2004.96,767.584 2005.81,767.64 2006.65,767.846 2007.49,767.628 \n",
" 2008.33,767.506 2009.18,768.133 2010.02,768.177 2010.86,768.1 2011.7,767.922 2012.54,767.814 2013.39,767.672 2014.23,767.709 2015.07,767.497 2015.91,768.091 \n",
" 2016.75,767.514 2017.6,767.49 2018.44,767.624 2019.28,767.535 2020.12,767.221 2020.97,767.888 2021.81,768.273 2022.65,767.95 2023.49,767.588 2024.33,767.518 \n",
" 2025.18,767.603 2026.02,767.734 2026.86,767.764 2027.7,767.692 2028.55,767.821 2029.39,768.246 2030.23,768.199 2031.07,768.427 2031.91,768.037 2032.76,767.171 \n",
" 2033.6,767.176 2034.44,767.87 2035.28,767.641 2036.12,767.289 2036.97,767.109 2037.81,767.207 2038.65,767.69 2039.49,767.754 2040.34,767.99 2041.18,767.963 \n",
" 2042.02,767.891 2042.86,767.698 2043.7,767.866 2044.55,767.808 2045.39,768.649 2046.23,768.379 2047.07,768.096 2047.92,767.834 2048.76,767.925 2049.6,768.007 \n",
" 2050.44,767.706 2051.28,767.978 2052.13,767.993 2052.97,767.843 2053.81,768.085 2054.65,768.036 2055.49,767.642 2056.34,767.237 2057.18,766.236 2058.02,766.164 \n",
" 2058.86,765.908 2059.71,766.26 2060.55,766.354 2061.39,766.105 2062.23,766.427 2063.07,766.602 2063.92,766.251 2064.76,766.022 2065.6,766.163 2066.44,766.382 \n",
" 2067.29,765.679 2068.13,765.925 2068.97,766.296 2069.81,765.842 2070.65,765.43 2071.5,764.806 2072.34,764.613 2073.18,765.227 2074.02,765.363 2074.86,765.172 \n",
" 2075.71,764.837 2076.55,764.935 2077.39,765.562 2078.23,765.391 2079.08,765.057 2079.92,765.095 2080.76,764.807 2081.6,764.005 2082.44,763.931 2083.29,764.192 \n",
" 2084.13,764.449 2084.97,764.617 2085.81,764.961 2086.66,765.182 2087.5,764.813 2088.34,764.561 2089.18,764.609 2090.02,764.562 2090.87,764.102 2091.71,764.181 \n",
" 2092.55,764.633 2093.39,764.252 2094.23,764.186 2095.08,764.156 2095.92,764.156 2096.76,763.562 2097.6,763.679 2098.45,763.234 2099.29,763.143 2100.13,763.326 \n",
" 2100.97,763.317 2101.81,762.725 2102.66,762.629 2103.5,761.995 2104.34,761.366 2105.18,761.585 2106.03,761.297 2106.87,761.585 2107.71,761.678 2108.55,761.684 \n",
" 2109.39,762.307 2110.24,762.137 2111.08,762.217 2111.92,762.3 2112.76,762.985 2113.6,763.288 2114.45,762.988 2115.29,763.151 2116.13,763.69 2116.97,764.128 \n",
" 2117.82,764.65 2118.66,764.867 2119.5,764.171 2120.34,763.778 2121.18,764.386 2122.03,764.445 2122.87,764.153 2123.71,764.217 2124.55,763.894 2125.39,763.713 \n",
" 2126.24,763.533 2127.08,763.634 2127.92,763.645 2128.76,763.257 2129.61,763.299 2130.45,763.147 2131.29,762.791 2132.13,763.206 2132.97,763.128 2133.82,763.587 \n",
" 2134.66,763.698 2135.5,763.999 2136.34,764.067 2137.19,764.344 2138.03,764.162 2138.87,764.362 2139.71,764.602 2140.55,764.563 2141.4,764.539 2142.24,764.791 \n",
" 2143.08,764.239 2143.92,764.647 2144.76,764.275 2145.61,764.23 2146.45,764.037 2147.29,763.743 2148.13,763.957 2148.98,763.655 2149.82,763.92 2150.66,764.06 \n",
" 2151.5,764.08 2152.34,764.209 2153.19,763.933 2154.03,763.783 2154.87,764.458 2155.71,764.629 2156.56,764.541 2157.4,764.824 2158.24,764.692 2159.08,764.674 \n",
" 2159.92,764.689 2160.77,764.976 2161.61,765.199 2162.45,765.293 2163.29,765.211 2164.13,765.077 2164.98,764.452 2165.82,764.403 2166.66,764.38 2167.5,764.063 \n",
" 2168.35,764.155 2169.19,764.145 2170.03,763.998 2170.87,764.039 2171.71,764.159 2172.56,764.379 2173.4,764.578 2174.24,764.468 2175.08,764.453 2175.93,764.282 \n",
" 2176.77,764.622 2177.61,764.46 2178.45,764.346 2179.29,764.44 2180.14,763.959 2180.98,763.691 2181.82,763.227 2182.66,763.504 2183.5,763.554 2184.35,763.613 \n",
" 2185.19,763.451 2186.03,763.79 2186.87,763.823 2187.72,763.937 2188.56,764.406 2189.4,764.791 2190.24,764.854 2191.08,765.146 2191.93,765.014 2192.77,765.021 \n",
" 2193.61,764.591 2194.45,764.658 2195.3,764.763 2196.14,764.763 2196.98,765.209 2197.82,765.264 2198.66,765.178 2199.51,765.215 2200.35,765.172 2201.19,764.998 \n",
" 2202.03,765.162 2202.87,765.085 2203.72,765.219 2204.56,765.249 2205.4,764.944 2206.24,764.73 2207.09,765.053 2207.93,764.569 2208.77,764.319 2209.61,764.569 \n",
" 2210.45,764.651 2211.3,764.946 2212.14,765.15 2212.98,765.199 2213.82,765.396 2214.67,765.509 2215.51,765.504 2216.35,765.561 2217.19,765.693 2218.03,765.579 \n",
" 2218.88,765.49 2219.72,765.227 2220.56,765.205 2221.4,764.866 2222.24,764.925 2223.09,765.487 2223.93,765.819 2224.77,766.041 2225.61,765.65 2226.46,765.956 \n",
" 2227.3,766.123 2228.14,766.272 2228.98,766.216 2229.82,766.375 2230.67,766.361 2231.51,766.5 2232.35,766.438 2233.19,766.669 2234.04,766.288 2234.88,766.135 \n",
" 2235.72,766.171 2236.56,766.462 2237.4,766.276 2238.25,766.174 2239.09,766.109 2239.93,766.069 2240.77,766.478 2241.61,766.768 2242.46,767.232 2243.3,766.95 \n",
" 2244.14,766.727 2244.98,767.149 2245.83,767.253 2246.67,767.193 2247.51,766.912 2248.35,767.032 2249.19,767.217 2250.04,767.124 2250.88,766.874 2251.72,767.153 \n",
" 2252.56,767.418 2253.4,767.135 2254.25,766.99 2255.09,767.073 2255.93,767.197 2256.77,767.315 2257.62,767.46 2258.46,767.285 2259.3,767.574 2260.14,767.479 \n",
" 2260.98,767.752 2261.83,767.845 2262.67,767.979 2263.51,768.176 2264.35,768.45 2265.2,768.802 2266.04,768.963 2266.88,768.797 2267.72,768.756 2268.56,768.819 \n",
" 2269.41,768.556 2270.25,768.557 2271.09,768.178 2271.93,768.405 2272.77,768.479 2273.62,768.366 2274.46,768.447 2275.3,768.465 2276.14,768.161 2276.99,767.973 \n",
" 2277.83,767.786 2278.67,767.634 2279.51,767.627 2280.35,767.443 2281.2,767.554 2282.04,768.062 2282.88,768.006 2283.72,768.027 2284.57,768.182 2285.41,768.025 \n",
" 2286.25,768.031 2287.09,767.937 2287.93,767.81 2288.78,767.594 2289.62,767.382 2290.46,767.055 2291.3,767.568 2292.14,767.734 2292.99,767.362 2293.83,767.423 \n",
" 2294.67,767.437 2295.51,767.459 2296.36,767.589 2297.2,767.698 2298.04,767.647 2298.88,767.792 2299.72,767.688 2300.57,767.571 2301.41,767.201 2302.25,767.244 \n",
" 2303.09,767.014 2303.94,767.426 2304.78,767.335 2305.62,767.266 2306.46,767.247 2307.3,767.357 2308.15,766.99 2308.99,767.019 2309.83,767.119 2310.67,767.45 \n",
" 2311.51,767.366 2312.36,767.325 2313.2,767.202 2314.04,766.933 2314.88,766.79 2315.73,766.781 2316.57,766.554 2317.41,766.654 2318.25,766.5 2319.09,766.403 \n",
" 2319.94,766.462 2320.78,766.254 2321.62,765.973 2322.46,765.703 2323.31,765.656 2324.15,765.921 2324.99,765.996 2325.83,765.975 2326.67,766.153 2327.52,766.122 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip7700)\" d=\"\n",
"M1746.47 372.684 L2280.76 372.684 L2280.76 130.764 L1746.47 130.764 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1746.47,372.684 2280.76,372.684 2280.76,130.764 1746.47,130.764 1746.47,372.684 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#009af9; stroke-width:0.8; stroke-opacity:1; fill:none\" points=\"\n",
" 1770.47,191.244 1914.47,191.244 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1938.47, 208.744)\" x=\"1938.47\" y=\"208.744\">EM samples</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1770.47,251.724 1914.47,251.724 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1938.47, 259.63)\" x=\"1938.47\" y=\"259.63\">true </text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Symbol; font-size:52px; text-anchor:start;\" transform=\"rotate(0, 2034.78, 259.63)\" x=\"2034.78\" y=\"259.63\">σ</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:38px; text-anchor:start;\" transform=\"rotate(0, 2066.03, 273.259)\" x=\"2066.03\" y=\"273.259\">2</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip7700)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1770.47,312.204 1914.47,312.204 \n",
" \"/>\n",
"<g clip-path=\"url(#clip7700)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 1938.47, 329.704)\" x=\"1938.47\" y=\"329.704\">running mean</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 38,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p1 = plot(params[3, :], linewidth=0.2, label = \"EM samples\")\n",
"plot!(Ptrue.σ1*ones(iterations), label = LaTeXString(\"true \\\\sigma_1\"))\n",
"plot!(Bridge.runmean(params[3, :]), label = \"running mean\")\n",
"p2 = plot(params[4, :], linewidth=0.2, label = \"EM samples\")\n",
"plot!(Ptrue.σ2*ones(iterations), label = LaTeXString(\"true \\\\sigma_2\"))\n",
"plot!(Bridge.runmean(params[4, :]), label = \"running mean\")\n",
"plot(p1,p2)\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Reference\n",
"\n",
"* van der Meulen, S., van Zanten: Reversible jump MCMC for nonparametric drift estimation for diffusion processes. *Computational Statistics & Data Analysis 71*, 2014, ISSN 0167-9473, https://doi.org/10.1016/j.csda.2013.03.002 ."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 2020 1.1.1",
"language": "julia",
"name": "julia-2020-1.1"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.1.1"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment