Skip to content

Instantly share code, notes, and snippets.

@QuantumFractal
Last active February 20, 2019 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QuantumFractal/05e634232410ee0d2e620286a9c1b993 to your computer and use it in GitHub Desktop.
Save QuantumFractal/05e634232410ee0d2e620286a9c1b993 to your computer and use it in GitHub Desktop.
Trapped Knights Part 2
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"![link](https://media.licdn.com/media/gcrc/dms/image/C5612AQFDN3Qr31r3og/article-cover_image-shrink_423_752/0?e=1554336000&v=beta&t=pbpEHgEKaofJYbrGiaP7dkl420XmteTwy7vkrctJ86Y)\n",
"\n",
"# Trapped Knights - Part 2\n",
"\n",
"In my first [article](https://www.linkedin.com/pulse/trapped-knight-problem-thomas-moll/) , I stole an interesting idea from _Numberphile_ and their guest host Neil Sloane. This problem involes an infinitely numbered spiralled chessboard and the knight chess piece, and previously I outlined some basic functions I created to verify their conclusion:\n",
"\n",
"If the knight starts in the center of the spiraled chessboard, only jumping to the lowest non-visited tile: it will stop at the tile numbered **2084** after _exactly_ **2016** steps. \n",
"\n",
"Let's get back up to speed.\n",
"Since I'll be doing more of my work in a Juypter Notebook, I'll try to emulate as best I can on LinkedIn's platform <3\n",
"\n",
"First off, let's import some packages and add our Ulam spiral and simulation code."
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\u001b[32m\u001b[1m Updating\u001b[22m\u001b[39m registry at `~/.julia/registries/General`\n",
"\u001b[32m\u001b[1m Updating\u001b[22m\u001b[39m git-repo `https://github.com/JuliaRegistries/General.git`\n",
"\u001b[2K\u001b[?25h[1mFetching:\u001b[22m\u001b[39m [========================================>] 100.0 %.0 %=========> ] 22.3 %] 44.5 % [===========================> ] 66.8 %] 88.9 %\u001b[32m\u001b[1m Resolving\u001b[22m\u001b[39m package versions...\n",
"\u001b[32m\u001b[1m Updating\u001b[22m\u001b[39m `~/.julia/environments/v1.1/Project.toml`\n",
"\u001b[90m [no changes]\u001b[39m\n",
"\u001b[32m\u001b[1m Updating\u001b[22m\u001b[39m `~/.julia/environments/v1.1/Manifest.toml`\n",
"\u001b[90m [no changes]\u001b[39m\n",
"\u001b[32m\u001b[1m Resolving\u001b[22m\u001b[39m package versions...\n",
"\u001b[32m\u001b[1m Updating\u001b[22m\u001b[39m `~/.julia/environments/v1.1/Project.toml`\n",
"\u001b[90m [no changes]\u001b[39m\n",
"\u001b[32m\u001b[1m Updating\u001b[22m\u001b[39m `~/.julia/environments/v1.1/Manifest.toml`\n",
"\u001b[90m [no changes]\u001b[39m\n"
]
}
],
"source": [
"import Pkg\n",
"Pkg.add(\"Plots\")\n",
"Pkg.add(\"GR\")"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"ulam_map"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\"\"\"\n",
" Function mapping (x::Int64, y::Int64) coordinates to ulam spiral Int64\n",
"\"\"\"\n",
"function ulam_map(x, y)\n",
" if x == y == 0\n",
" return 1\n",
" elseif -x < y <= x\n",
" # Q1 -> NE\n",
" n = abs(x)\n",
" return 4n^2 - 2n + 1 - n + y\n",
" elseif -y <= x < y\n",
" # Q2 -> NW\n",
" n = abs(y)\n",
" return 4n^2 + 1 - n - x\n",
" elseif x <= y < -x\n",
" # Q3 -> SW\n",
" n = abs(x)\n",
" return 4n^2 + n + 1 - y\n",
" elseif y < x <= -y\n",
" # Q4 -> SE\n",
" n = abs(y)\n",
" return 4n^2 + 3n + 1 + x\n",
" end\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"next_move"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\"\"\"\n",
" Calculate a generic next move for a generic chess piece.\n",
"\n",
" Args: \n",
" current_tile : Tuple{Int64,Int64}\n",
" visited_tiles : Set(Int64)\n",
" piece_moves : Array{Tuple{Int64,Int64},1} \n",
" tile_map : Function(x::Int64, y::Int64) -> Int64\n",
" selector : Function(Array{Int64,1}) -> Int64\n",
"\n",
" Returns:\n",
" Tuple with next move (x,y) and it's value\n",
"\"\"\"\n",
"function next_move(current, visited, moves, tile_map, selector)\n",
" possible_moves = Dict()\n",
" for delta in moves\n",
" move = current .+ delta\n",
" val = tile_map(move...)\n",
" if !in(val, visited)\n",
" possible_moves[val] = move\n",
" end\n",
" end\n",
"\n",
" if length(possible_moves) > 0\n",
" next_val = selector(keys(possible_moves))\n",
" next_move = possible_moves[next_val]\n",
" return (next_move, next_val)\n",
" else\n",
" return ((0, 0), -1)\n",
" end\n",
"end\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Once we've got our basic functions down, we'll go ahead and run our knight until it's stuck."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stopped at iteration 2016\n",
"Stopped at Number 2084\n"
]
}
],
"source": [
"using Plots\n",
"gr()\n",
"\n",
"knight_moves = [(-2, -1), (-2, +1), (+2, -1), (+2, +1), (-1, -2), (-1, +2), (+1, -2), (+1, +2)]\n",
"current = (0, 0)\n",
"value = 1\n",
"\n",
"# housekeeping\n",
"path = Array{Tuple{Int, Int}}(undef, 0)\n",
"ordered = Array{Int64}(undef, 0)\n",
"visited = Set(1)\n",
"\n",
"push!(ordered, 1)\n",
"\n",
"while value > 0\n",
" current, value = next_move(current, visited, knight_moves, ulam_map, minimum)\n",
" push!(path, current)\n",
" push!(visited, value)\n",
" push!(ordered, value)\n",
"end\n",
"\n",
"# undo the last addition\n",
"pop!(path)\n",
"pop!(ordered)\n",
"\n",
"println(\"Stopped at iteration \",length(ordered))\n",
"println(\"Stopped at Number \", ordered[end])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Looks good! It stops at the magic number, We'll go ahead and generate our graph, fortunately Plots.jl has a great plug-in for doing GIFs. Everyone loves a good GIF. "
]
},
{
"cell_type": "code",
"execution_count": 59,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"┌ Info: Saved animation to \n",
"│ fn = /home/tmoll/notebooks/Julia/tmp.gif\n",
"└ @ Plots /home/tmoll/.julia/packages/Plots/UQI78/src/animation.jl:90\n"
]
},
{
"data": {
"text/html": [
"<img src=\"http://i.imgur.com/A6KRX5l.gif\" />"
],
"text/plain": [
"Plots.AnimatedGif(\"/home/tmoll/notebooks/Julia/tmp.gif\")"
]
},
"execution_count": 59,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"@gif for i=1:length(path)+30\n",
" i = i < length(path) ? i : length(path) - 1\n",
" plot(path[1:i], lims = (-30,30), labels = [\"\"], aspect_ratio = :equal)\n",
" end every 5"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Look familiar? <img src=\"https://i.imgur.com/xn4cYl4.png\" alt=\"drawing\" style=\"width:200px;\"/>\n",
"\n",
"Jokes aside. Let's try to pick apart some of the structure here. First off, the Ulam Spiral was created to show some interesting patterns within the primes. You'll say \"Primes? and Patterns??\", I was skeptical at first. Here's a rendering of a spiral with all the dots representing prime numbers. \n",
"<img src=\"https://upload.wikimedia.org/wikipedia/commons/6/69/Ulam_1.png\" alt=\"drawing\" style=\"width:400px;\"/>\n",
"\n",
"There's a lot of pretty structures that our homosapian brain picks up, we'll see that primes typically enjoy the diagonals within our spiral. I think this is a good place to start. Let's map the primes onto our spiral.\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"is_prime"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\"\"\"\n",
" Use AKS as a primality test\n",
" \n",
" Args:\n",
" integer, possibly prime\n",
"\n",
" Return:\n",
" boolean, if it is.\n",
"\"\"\"\n",
"function is_prime(n)\n",
" if n == 2 || n == 3\n",
" return true\n",
" end\n",
" \n",
" if n % 2 == 0 || n % 3 ==0\n",
" return false\n",
" end\n",
" \n",
" i, w = 5, 2\n",
" \n",
" while i^2 <= n\n",
" if n % i == 0\n",
" return false\n",
" end\n",
" \n",
" \n",
" i += w\n",
" w = 6 - w\n",
" end\n",
" \n",
" return true\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 6,
"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=\"clip3000\">\n",
" <rect x=\"0\" y=\"0\" width=\"2000\" height=\"2000\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<defs>\n",
" <clipPath id=\"clip3001\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3001)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3002\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3001)\" points=\"\n",
"520.576,1503.47 1976.81,1503.47 1976.81,47.2441 520.576,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3003\">\n",
" <rect x=\"520\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 624.593,1503.47 624.593,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 832.626,1503.47 832.626,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1040.66,1503.47 1040.66,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1248.69,1503.47 1248.69,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1456.72,1503.47 1456.72,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.76,1503.47 1664.76,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1872.79,1503.47 1872.79,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,1399.46 1976.81,1399.46 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,1191.43 1976.81,1191.43 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,983.392 1976.81,983.392 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,775.359 1976.81,775.359 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,567.326 1976.81,567.326 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,359.294 1976.81,359.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 520.576,151.261 1976.81,151.261 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,1503.47 1976.81,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,1503.47 520.576,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 624.593,1503.47 624.593,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 832.626,1503.47 832.626,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1040.66,1503.47 1040.66,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1248.69,1503.47 1248.69,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1456.72,1503.47 1456.72,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.76,1503.47 1664.76,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1872.79,1503.47 1872.79,1481.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,1399.46 542.42,1399.46 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,1191.43 542.42,1191.43 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,983.392 542.42,983.392 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,775.359 542.42,775.359 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,567.326 542.42,567.326 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,359.294 542.42,359.294 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 520.576,151.261 542.42,151.261 \n",
" \"/>\n",
"<g clip-path=\"url(#clip3001)\">\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, 624.593, 1557.47)\" x=\"624.593\" y=\"1557.47\">-30</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 832.626, 1557.47)\" x=\"832.626\" y=\"1557.47\">-20</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1040.66, 1557.47)\" x=\"1040.66\" y=\"1557.47\">-10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1248.69, 1557.47)\" x=\"1248.69\" y=\"1557.47\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1456.72, 1557.47)\" x=\"1456.72\" y=\"1557.47\">10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1664.76, 1557.47)\" x=\"1664.76\" y=\"1557.47\">20</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1872.79, 1557.47)\" x=\"1872.79\" y=\"1557.47\">30</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 1416.96)\" x=\"496.576\" y=\"1416.96\">-30</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 1208.93)\" x=\"496.576\" y=\"1208.93\">-20</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 1000.89)\" x=\"496.576\" y=\"1000.89\">-10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 792.859)\" x=\"496.576\" y=\"792.859\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 584.826)\" x=\"496.576\" y=\"584.826\">10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 376.794)\" x=\"496.576\" y=\"376.794\">20</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip3001)\">\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, 496.576, 168.761)\" x=\"496.576\" y=\"168.761\">30</text>\n",
"</g>\n",
"<polyline clip-path=\"url(#clip3003)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1290.3,796.163 1269.49,754.556 1227.89,775.359 1269.49,796.163 1248.69,754.556 1227.89,796.163 1269.49,775.359 1227.89,754.556 1248.69,796.163 1290.3,775.359 \n",
" 1269.49,733.753 1311.1,754.556 1290.3,712.95 1248.69,733.753 1290.3,754.556 1311.1,796.163 1269.49,816.966 1227.89,837.769 1207.08,796.163 1248.69,816.966 \n",
" 1207.08,837.769 1186.28,796.163 1207.08,754.556 1227.89,712.95 1186.28,733.753 1207.08,775.359 1227.89,733.753 1269.49,712.95 1311.1,733.753 1331.9,775.359 \n",
" 1311.1,816.966 1269.49,837.769 1227.89,816.966 1186.28,837.769 1165.48,796.163 1207.08,816.966 1186.28,775.359 1207.08,733.753 1248.69,712.95 1290.3,733.753 \n",
" 1311.1,775.359 1290.3,816.966 1248.69,837.769 1207.08,858.573 1186.28,816.966 1165.48,775.359 1144.67,733.753 1186.28,712.95 1227.89,692.146 1269.49,671.343 \n",
" 1311.1,692.146 1331.9,733.753 1352.71,775.359 1331.9,816.966 1290.3,837.769 1248.69,858.573 1207.08,879.376 1165.48,858.573 1144.67,816.966 1123.87,775.359 \n",
" 1165.48,754.556 1144.67,712.95 1186.28,692.146 1165.48,733.753 1207.08,712.95 1186.28,754.556 1165.48,712.95 1207.08,692.146 1248.69,671.343 1290.3,692.146 \n",
" 1331.9,712.95 1352.71,754.556 1331.9,796.163 1311.1,837.769 1269.49,858.573 1227.89,879.376 1186.28,858.573 1165.48,816.966 1144.67,775.359 1123.87,733.753 \n",
" 1144.67,692.146 1186.28,671.343 1227.89,650.54 1248.69,692.146 1290.3,671.343 1311.1,712.95 1331.9,754.556 1352.71,796.163 1331.9,837.769 1290.3,858.573 \n",
" 1248.69,879.376 1207.08,900.179 1227.89,858.573 1186.28,879.376 1165.48,837.769 1144.67,796.163 1123.87,754.556 1103.07,712.95 1123.87,671.343 1165.48,692.146 \n",
" 1207.08,671.343 1248.69,650.54 1269.49,692.146 1311.1,671.343 1352.71,692.146 1373.51,733.753 1394.31,775.359 1373.51,816.966 1352.71,858.573 1311.1,879.376 \n",
" 1269.49,900.179 1227.89,920.982 1186.28,900.179 1144.67,879.376 1123.87,837.769 1103.07,796.163 1082.27,754.556 1061.46,712.95 1103.07,692.146 1144.67,671.343 \n",
" 1186.28,650.54 1227.89,671.343 1269.49,650.54 1311.1,629.736 1331.9,671.343 1352.71,712.95 1373.51,754.556 1394.31,796.163 1352.71,816.966 1331.9,858.573 \n",
" 1290.3,879.376 1248.69,900.179 1207.08,920.982 1165.48,900.179 1144.67,858.573 1123.87,816.966 1103.07,775.359 1144.67,754.556 1123.87,712.95 1103.07,671.343 \n",
" 1144.67,650.54 1123.87,692.146 1165.48,671.343 1207.08,650.54 1248.69,629.736 1290.3,650.54 1331.9,629.736 1352.71,671.343 1373.51,712.95 1331.9,692.146 \n",
" 1352.71,733.753 1373.51,775.359 1394.31,816.966 1352.71,837.769 1311.1,858.573 1269.49,879.376 1227.89,900.179 1186.28,920.982 1165.48,879.376 1144.67,837.769 \n",
" 1123.87,796.163 1103.07,754.556 1082.27,712.95 1061.46,671.343 1103.07,650.54 1144.67,629.736 1186.28,608.933 1165.48,650.54 1207.08,629.736 1248.69,608.933 \n",
" 1290.3,629.736 1331.9,650.54 1373.51,671.343 1394.31,712.95 1415.12,754.556 1435.92,796.163 1415.12,837.769 1373.51,858.573 1331.9,879.376 1290.3,900.179 \n",
" 1248.69,920.982 1207.08,941.786 1165.48,920.982 1123.87,900.179 1103.07,858.573 1082.27,816.966 1061.46,775.359 1082.27,733.753 1061.46,692.146 1082.27,650.54 \n",
" 1123.87,629.736 1165.48,608.933 1207.08,588.13 1227.89,629.736 1269.49,608.933 1311.1,588.13 1352.71,608.933 1373.51,650.54 1394.31,692.146 1415.12,733.753 \n",
" 1435.92,775.359 1394.31,754.556 1373.51,796.163 1394.31,837.769 1373.51,879.376 1331.9,900.179 1290.3,920.982 1248.69,941.786 1207.08,962.589 1165.48,941.786 \n",
" 1144.67,900.179 1123.87,858.573 1103.07,816.966 1082.27,775.359 1103.07,733.753 1082.27,692.146 1061.46,650.54 1103.07,629.736 1144.67,608.933 1123.87,650.54 \n",
" 1165.48,629.736 1207.08,608.933 1248.69,588.13 1269.49,629.736 1311.1,650.54 1352.71,629.736 1394.31,650.54 1373.51,692.146 1352.71,650.54 1394.31,671.343 \n",
" 1373.51,629.736 1415.12,650.54 1394.31,608.933 1435.92,629.736 1415.12,671.343 1394.31,629.736 1435.92,650.54 1415.12,692.146 1394.31,733.753 1415.12,775.359 \n",
" 1435.92,816.966 1415.12,858.573 1373.51,837.769 1352.71,879.376 1311.1,900.179 1269.49,920.982 1227.89,941.786 1186.28,962.589 1144.67,941.786 1103.07,920.982 \n",
" 1123.87,879.376 1103.07,837.769 1082.27,796.163 1061.46,754.556 1040.66,712.95 1019.86,671.343 1040.66,629.736 1082.27,608.933 1123.87,588.13 1165.48,567.326 \n",
" 1207.08,546.523 1227.89,588.13 1269.49,567.326 1290.3,608.933 1331.9,588.13 1373.51,608.933 1415.12,629.736 1435.92,671.343 1415.12,712.95 1435.92,754.556 \n",
" 1415.12,796.163 1435.92,837.769 1394.31,858.573 1373.51,900.179 1331.9,920.982 1290.3,941.786 1248.69,962.589 1207.08,983.392 1186.28,941.786 1144.67,920.982 \n",
" 1103.07,900.179 1082.27,858.573 1061.46,816.966 1040.66,775.359 1061.46,733.753 1040.66,692.146 1082.27,671.343 1061.46,629.736 1103.07,608.933 1144.67,588.13 \n",
" 1186.28,567.326 1227.89,546.523 1269.49,525.72 1290.3,567.326 1311.1,608.933 1352.71,588.13 1394.31,567.326 1415.12,608.933 1373.51,588.13 1331.9,608.933 \n",
" 1290.3,588.13 1331.9,567.326 1373.51,546.523 1394.31,588.13 1435.92,608.933 1456.72,650.54 1435.92,692.146 1456.72,733.753 1477.53,775.359 1456.72,816.966 \n",
" 1435.92,858.573 1394.31,879.376 1352.71,900.179 1311.1,920.982 1269.49,941.786 1227.89,962.589 1186.28,983.392 1144.67,962.589 1123.87,920.982 1103.07,879.376 \n",
" 1082.27,837.769 1061.46,796.163 1040.66,754.556 1019.86,712.95 1040.66,671.343 1019.86,629.736 1061.46,608.933 1103.07,588.13 1082.27,629.736 1123.87,608.933 \n",
" 1165.48,588.13 1186.28,629.736 1227.89,608.933 1269.49,588.13 1311.1,567.326 1352.71,546.523 1394.31,525.72 1415.12,567.326 1456.72,588.13 1477.53,629.736 \n",
" 1456.72,671.343 1435.92,712.95 1456.72,754.556 1477.53,796.163 1456.72,837.769 1415.12,816.966 1456.72,796.163 1477.53,837.769 1456.72,879.376 1415.12,900.179 \n",
" 1373.51,920.982 1331.9,941.786 1290.3,962.589 1248.69,983.392 1207.08,1004.2 1165.48,983.392 1123.87,962.589 1082.27,941.786 1061.46,900.179 1040.66,858.573 \n",
" 1082.27,879.376 1061.46,837.769 1040.66,796.163 1019.86,754.556 999.052,712.95 1040.66,733.753 1019.86,692.146 1040.66,650.54 1019.86,608.933 1061.46,588.13 \n",
" 1103.07,567.326 1144.67,546.523 1186.28,525.72 1207.08,567.326 1248.69,546.523 1290.3,525.72 1331.9,546.523 1373.51,567.326 1415.12,588.13 1456.72,608.933 \n",
" 1435.92,567.326 1477.53,588.13 1456.72,629.736 1435.92,588.13 1477.53,608.933 1456.72,567.326 1415.12,546.523 1456.72,525.72 1477.53,567.326 1435.92,546.523 \n",
" 1477.53,525.72 1498.33,567.326 1456.72,546.523 1498.33,525.72 1519.13,567.326 1477.53,546.523 1498.33,588.13 1519.13,629.736 1477.53,650.54 1456.72,692.146 \n",
" 1435.92,733.753 1456.72,775.359 1477.53,816.966 1456.72,858.573 1415.12,879.376 1394.31,920.982 1352.71,941.786 1311.1,962.589 1269.49,983.392 1227.89,1004.2 \n",
" 1186.28,1025 1144.67,1004.2 1165.48,962.589 1123.87,941.786 1082.27,920.982 1061.46,879.376 1040.66,837.769 1019.86,796.163 999.052,754.556 978.249,712.95 \n",
" 1019.86,733.753 999.052,692.146 1019.86,650.54 1040.66,608.933 1082.27,588.13 1123.87,567.326 1165.48,546.523 1186.28,588.13 1227.89,567.326 1269.49,546.523 \n",
" 1311.1,525.72 1352.71,504.917 1394.31,484.113 1415.12,525.72 1456.72,504.917 1498.33,484.113 1519.13,525.72 1477.53,504.917 1498.33,546.523 1519.13,588.13 \n",
" 1498.33,629.736 1477.53,671.343 1456.72,712.95 1477.53,754.556 1498.33,796.163 1519.13,837.769 1477.53,858.573 1435.92,879.376 1394.31,900.179 1352.71,920.982 \n",
" 1311.1,941.786 1269.49,962.589 1227.89,983.392 1186.28,1004.2 1144.67,983.392 1103.07,962.589 1061.46,941.786 1082.27,900.179 1103.07,941.786 1061.46,920.982 \n",
" 1082.27,962.589 1040.66,941.786 1061.46,983.392 1019.86,962.589 1040.66,920.982 1061.46,962.589 1103.07,983.392 1061.46,1004.2 1040.66,962.589 1082.27,983.392 \n",
" 1040.66,1004.2 999.052,983.392 1019.86,941.786 1040.66,900.179 1061.46,858.573 1040.66,816.966 1019.86,775.359 999.052,733.753 978.249,692.146 999.052,650.54 \n",
" 978.249,608.933 1019.86,588.13 1061.46,567.326 1103.07,546.523 1144.67,567.326 1186.28,546.523 1227.89,525.72 1248.69,567.326 1290.3,546.523 1331.9,525.72 \n",
" 1352.71,567.326 1394.31,546.523 1435.92,525.72 1394.31,504.917 1352.71,525.72 1311.1,546.523 1331.9,504.917 1373.51,525.72 1415.12,504.917 1456.72,484.113 \n",
" 1498.33,504.917 1519.13,546.523 1539.94,588.13 1498.33,608.933 1519.13,650.54 1498.33,692.146 1477.53,733.753 1498.33,775.359 1519.13,816.966 1498.33,858.573 \n",
" 1477.53,900.179 1435.92,920.982 1394.31,941.786 1352.71,962.589 1311.1,983.392 1269.49,1004.2 1227.89,1025 1186.28,1045.8 1165.48,1004.2 1123.87,983.392 \n",
" 1082.27,1004.2 1040.66,983.392 999.052,962.589 1019.86,920.982 1040.66,879.376 1019.86,837.769 999.052,796.163 978.249,754.556 957.445,712.95 978.249,671.343 \n",
" 999.052,629.736 978.249,588.13 1019.86,567.326 1061.46,546.523 1040.66,588.13 1082.27,567.326 1123.87,546.523 1165.48,525.72 1207.08,504.917 1248.69,525.72 \n",
" 1290.3,504.917 1331.9,484.113 1373.51,504.917 1415.12,484.113 1456.72,463.31 1435.92,504.917 1477.53,484.113 1519.13,504.917 1539.94,546.523 1560.74,588.13 \n",
" 1519.13,608.933 1498.33,650.54 1477.53,692.146 1498.33,733.753 1519.13,775.359 1498.33,816.966 1519.13,858.573 1477.53,879.376 1435.92,900.179 1415.12,941.786 \n",
" 1373.51,962.589 1331.9,983.392 1290.3,1004.2 1248.69,1025 1207.08,1045.8 1165.48,1025 1123.87,1004.2 1082.27,1025 1040.66,1045.8 1019.86,1004.2 \n",
" 1061.46,1025 1103.07,1004.2 1144.67,1025 1103.07,1045.8 1061.46,1066.61 1040.66,1025 1019.86,983.392 999.052,941.786 1019.86,900.179 999.052,858.573 \n",
" 1019.86,816.966 999.052,775.359 978.249,733.753 957.445,692.146 999.052,671.343 978.249,629.736 999.052,588.13 1040.66,567.326 1082.27,546.523 1123.87,525.72 \n",
" 1165.48,504.917 1207.08,525.72 1248.69,504.917 1290.3,484.113 1331.9,463.31 1311.1,504.917 1352.71,484.113 1394.31,463.31 1435.92,484.113 1477.53,463.31 \n",
" 1519.13,484.113 1539.94,525.72 1560.74,567.326 1539.94,608.933 1560.74,650.54 1519.13,671.343 1498.33,712.95 1519.13,754.556 1539.94,796.163 1560.74,837.769 \n",
" 1539.94,879.376 1498.33,900.179 1456.72,920.982 1435.92,962.589 1415.12,920.982 1373.51,941.786 1331.9,962.589 1290.3,983.392 1248.69,1004.2 1207.08,1025 \n",
" 1165.48,1045.8 1123.87,1025 1082.27,1045.8 1040.66,1066.61 1019.86,1025 978.249,1004.2 999.052,1045.8 957.445,1025 999.052,1004.2 978.249,962.589 \n",
" 999.052,920.982 1019.86,879.376 999.052,837.769 978.249,796.163 957.445,754.556 936.642,712.95 957.445,671.343 936.642,629.736 978.249,650.54 999.052,608.933 \n",
" 978.249,567.326 1019.86,546.523 1061.46,525.72 1103.07,504.917 1144.67,525.72 1186.28,504.917 1227.89,484.113 1269.49,504.917 1311.1,484.113 1352.71,463.31 \n",
" 1394.31,442.507 1373.51,484.113 1415.12,463.31 1456.72,442.507 1498.33,463.31 1539.94,484.113 1560.74,525.72 1539.94,567.326 1560.74,608.933 1539.94,650.54 \n",
" 1498.33,671.343 1477.53,712.95 1498.33,754.556 1519.13,796.163 1498.33,837.769 1519.13,879.376 1498.33,920.982 1456.72,941.786 1415.12,962.589 1373.51,983.392 \n",
" 1331.9,1004.2 1290.3,1025 1248.69,1045.8 1207.08,1066.61 1165.48,1087.41 1144.67,1045.8 1103.07,1025 1061.46,1045.8 1019.86,1066.61 999.052,1025 \n",
" 978.249,983.392 957.445,941.786 978.249,900.179 957.445,858.573 999.052,879.376 978.249,837.769 1019.86,858.573 999.052,816.966 978.249,775.359 957.445,733.753 \n",
" 936.642,692.146 957.445,650.54 936.642,608.933 957.445,567.326 999.052,546.523 1040.66,525.72 1082.27,504.917 1123.87,484.113 1103.07,525.72 1144.67,504.917 \n",
" 1186.28,484.113 1227.89,504.917 1269.49,484.113 1311.1,463.31 1352.71,442.507 1394.31,421.703 1373.51,463.31 1415.12,442.507 1456.72,421.703 1435.92,463.31 \n",
" 1477.53,442.507 1519.13,463.31 1539.94,504.917 1560.74,546.523 1581.54,588.13 1560.74,629.736 1539.94,671.343 1519.13,712.95 1539.94,754.556 1560.74,796.163 \n",
" 1539.94,837.769 1560.74,879.376 1519.13,900.179 1477.53,920.982 1435.92,941.786 1394.31,962.589 1352.71,983.392 1311.1,1004.2 1269.49,1025 1227.89,1045.8 \n",
" 1186.28,1066.61 1144.67,1087.41 1123.87,1045.8 1082.27,1066.61 1040.66,1087.41 1019.86,1045.8 978.249,1025 957.445,983.392 978.249,941.786 999.052,900.179 \n",
" 978.249,858.573 957.445,816.966 936.642,775.359 915.839,733.753 895.035,692.146 936.642,671.343 957.445,629.736 936.642,588.13 957.445,546.523 999.052,525.72 \n",
" 1040.66,546.523 1082.27,525.72 1123.87,504.917 1165.48,484.113 1207.08,463.31 1248.69,484.113 1290.3,463.31 1331.9,442.507 1373.51,421.703 1415.12,400.9 \n",
" 1435.92,442.507 1477.53,421.703 1519.13,442.507 1560.74,463.31 1581.54,504.917 1602.35,546.523 1623.15,588.13 1581.54,608.933 1539.94,629.736 1560.74,671.343 \n",
" 1519.13,692.146 1539.94,733.753 1560.74,775.359 1539.94,816.966 1560.74,858.573 1539.94,900.179 1498.33,879.376 1456.72,900.179 1477.53,941.786 1456.72,983.392 \n",
" 1415.12,1004.2 1373.51,1025 1394.31,983.392 1352.71,1004.2 1311.1,1025 1269.49,1045.8 1227.89,1066.61 1186.28,1087.41 1144.67,1066.61 1103.07,1087.41 \n",
" 1061.46,1108.21 1019.86,1087.41 978.249,1066.61 936.642,1045.8 957.445,1004.2 978.249,1045.8 936.642,1025 957.445,1066.61 999.052,1087.41 957.445,1108.21 \n",
" 936.642,1066.61 978.249,1087.41 957.445,1045.8 999.052,1066.61 957.445,1087.41 915.839,1066.61 936.642,1108.21 895.035,1087.41 915.839,1045.8 936.642,1004.2 \n",
" 957.445,962.589 978.249,920.982 957.445,879.376 936.642,837.769 978.249,816.966 957.445,775.359 936.642,733.753 915.839,692.146 936.642,650.54 957.445,608.933 \n",
" 936.642,567.326 978.249,546.523 1019.86,525.72 999.052,567.326 978.249,525.72 1019.86,504.917 1061.46,484.113 1103.07,463.31 1144.67,484.113 1186.28,463.31 \n",
" 1227.89,442.507 1207.08,484.113 1248.69,463.31 1290.3,442.507 1331.9,421.703 1373.51,442.507 1415.12,421.703 1456.72,400.9 1498.33,421.703 1539.94,442.507 \n",
" 1560.74,484.113 1581.54,525.72 1602.35,567.326 1623.15,608.933 1581.54,629.736 1602.35,671.343 1560.74,692.146 1581.54,733.753 1539.94,712.95 1560.74,754.556 \n",
" 1519.13,733.753 1539.94,775.359 1560.74,816.966 1539.94,858.573 1560.74,900.179 1519.13,920.982 1498.33,962.589 1477.53,1004.2 1456.72,962.589 1415.12,983.392 \n",
" 1373.51,1004.2 1331.9,1025 1290.3,1045.8 1248.69,1066.61 1207.08,1087.41 1165.48,1066.61 1123.87,1087.41 1082.27,1108.21 1103.07,1066.61 1061.46,1087.41 \n",
" 1019.86,1108.21 978.249,1129.02 936.642,1149.82 915.839,1108.21 895.035,1066.61 936.642,1087.41 978.249,1108.21 936.642,1129.02 915.839,1087.41 895.035,1045.8 \n",
" 915.839,1004.2 936.642,962.589 957.445,920.982 978.249,879.376 957.445,837.769 936.642,796.163 915.839,754.556 895.035,712.95 915.839,671.343 895.035,629.736 \n",
" 915.839,588.13 936.642,546.523 957.445,504.917 999.052,484.113 1040.66,504.917 1082.27,484.113 1123.87,463.31 1165.48,442.507 1207.08,421.703 1227.89,463.31 \n",
" 1269.49,442.507 1311.1,421.703 1352.71,400.9 1394.31,380.097 1435.92,400.9 1477.53,380.097 1519.13,400.9 1498.33,442.507 1539.94,463.31 1560.74,504.917 \n",
" 1581.54,546.523 1602.35,588.13 1623.15,629.736 1581.54,650.54 1602.35,692.146 1560.74,712.95 1581.54,754.556 1602.35,796.163 1581.54,837.769 1602.35,879.376 \n",
" 1581.54,920.982 1539.94,941.786 1519.13,983.392 1477.53,962.589 1435.92,983.392 1394.31,1004.2 1352.71,1025 1311.1,1045.8 1269.49,1066.61 1227.89,1087.41 \n",
" 1186.28,1108.21 1144.67,1129.02 1103.07,1108.21 1123.87,1066.61 1082.27,1087.41 1040.66,1108.21 999.052,1129.02 957.445,1149.82 915.839,1129.02 874.232,1108.21 \n",
" 895.035,1149.82 853.429,1129.02 895.035,1108.21 874.232,1066.61 895.035,1025 915.839,983.392 936.642,941.786 957.445,900.179 936.642,858.573 915.839,816.966 \n",
" 957.445,796.163 936.642,754.556 915.839,712.95 895.035,671.343 915.839,629.736 895.035,588.13 915.839,546.523 957.445,525.72 999.052,504.917 1040.66,484.113 \n",
" 1082.27,463.31 1061.46,504.917 1103.07,484.113 1144.67,463.31 1186.28,442.507 1227.89,421.703 1269.49,400.9 1248.69,442.507 1290.3,421.703 1269.49,463.31 \n",
" 1311.1,442.507 1352.71,421.703 1394.31,400.9 1435.92,421.703 1477.53,400.9 1519.13,421.703 1560.74,442.507 1581.54,484.113 1602.35,525.72 1581.54,567.326 \n",
" 1602.35,608.933 1623.15,650.54 1581.54,671.343 1539.94,692.146 1560.74,733.753 1581.54,775.359 1602.35,816.966 1581.54,858.573 1602.35,900.179 1560.74,920.982 \n",
" 1519.13,941.786 1498.33,983.392 1456.72,1004.2 1415.12,1025 1373.51,1045.8 1331.9,1066.61 1290.3,1087.41 1248.69,1108.21 1207.08,1129.02 1165.48,1108.21 \n",
" 1123.87,1129.02 1082.27,1149.82 1040.66,1129.02 999.052,1108.21 957.445,1129.02 915.839,1149.82 874.232,1129.02 853.429,1087.41 874.232,1045.8 915.839,1025 \n",
" 936.642,983.392 915.839,941.786 936.642,900.179 915.839,858.573 936.642,816.966 915.839,775.359 895.035,733.753 874.232,692.146 895.035,650.54 915.839,608.933 \n",
" 957.445,588.13 915.839,567.326 936.642,525.72 978.249,504.917 1019.86,484.113 1061.46,463.31 1103.07,442.507 1144.67,421.703 1165.48,463.31 1207.08,442.507 \n",
" 1248.69,421.703 1290.3,400.9 1331.9,380.097 1373.51,400.9 1415.12,380.097 1456.72,359.294 1498.33,380.097 1539.94,400.9 1581.54,421.703 1602.35,463.31 \n",
" 1623.15,504.917 1643.95,546.523 1664.76,588.13 1623.15,567.326 1643.95,608.933 1602.35,629.736 1623.15,671.343 1581.54,692.146 1602.35,733.753 1623.15,775.359 \n",
" 1581.54,796.163 1602.35,837.769 1581.54,879.376 1602.35,920.982 1560.74,941.786 1519.13,962.589 1477.53,983.392 1435.92,1004.2 1394.31,1025 1352.71,1045.8 \n",
" 1311.1,1066.61 1269.49,1087.41 1227.89,1108.21 1186.28,1129.02 1144.67,1108.21 1103.07,1129.02 1061.46,1149.82 1019.86,1129.02 978.249,1149.82 936.642,1170.62 \n",
" 895.035,1191.43 874.232,1149.82 853.429,1108.21 895.035,1129.02 874.232,1087.41 853.429,1045.8 874.232,1004.2 895.035,962.589 915.839,920.982 936.642,879.376 \n",
" 915.839,837.769 895.035,796.163 874.232,754.556 853.429,712.95 874.232,671.343 915.839,650.54 895.035,608.933 874.232,567.326 895.035,525.72 936.642,504.917 \n",
" 978.249,484.113 1019.86,463.31 1061.46,442.507 1103.07,421.703 1144.67,442.507 1186.28,421.703 1227.89,400.9 1269.49,421.703 1311.1,400.9 1352.71,380.097 \n",
" 1394.31,359.294 1435.92,380.097 1477.53,359.294 1498.33,400.9 1539.94,421.703 1581.54,442.507 1602.35,484.113 1623.15,525.72 1643.95,567.326 1664.76,608.933 \n",
" 1643.95,650.54 1623.15,692.146 1581.54,712.95 1602.35,754.556 1623.15,796.163 1581.54,816.966 1602.35,858.573 1581.54,900.179 1539.94,920.982 1498.33,941.786 \n",
" 1539.94,962.589 1519.13,1004.2 1477.53,1025 1435.92,1045.8 1394.31,1066.61 1352.71,1087.41 1331.9,1045.8 1290.3,1066.61 1248.69,1087.41 1207.08,1108.21 \n",
" 1165.48,1129.02 1123.87,1108.21 1082.27,1129.02 1040.66,1149.82 999.052,1170.62 957.445,1191.43 915.839,1170.62 874.232,1191.43 853.429,1149.82 895.035,1170.62 \n",
" 853.429,1191.43 832.626,1149.82 874.232,1170.62 832.626,1191.43 811.822,1149.82 853.429,1170.62 832.626,1129.02 811.822,1087.41 853.429,1066.61 874.232,1025 \n",
" 895.035,983.392 874.232,941.786 915.839,962.589 936.642,920.982 915.839,879.376 895.035,837.769 915.839,796.163 895.035,754.556 874.232,712.95 853.429,671.343 \n",
" 874.232,629.736 853.429,588.13 895.035,567.326 915.839,525.72 936.642,484.113 978.249,463.31 1019.86,442.507 1061.46,421.703 1040.66,463.31 1082.27,442.507 \n",
" 1123.87,421.703 1165.48,400.9 1207.08,380.097 1248.69,400.9 1290.3,380.097 1331.9,400.9 1373.51,380.097 1415.12,359.294 1456.72,380.097 1498.33,359.294 \n",
" 1539.94,380.097 1560.74,421.703 1581.54,463.31 1602.35,504.917 1623.15,546.523 1643.95,588.13 1664.76,629.736 1643.95,671.343 1602.35,650.54 1643.95,629.736 \n",
" 1664.76,671.343 1643.95,712.95 1623.15,754.556 1602.35,712.95 1643.95,733.753 1664.76,775.359 1643.95,816.966 1623.15,858.573 1643.95,900.179 1623.15,941.786 \n",
" 1581.54,962.589 1539.94,983.392 1498.33,1004.2 1456.72,1025 1415.12,1045.8 1373.51,1066.61 1331.9,1087.41 1290.3,1108.21 1248.69,1129.02 1207.08,1149.82 \n",
" 1165.48,1170.62 1123.87,1149.82 1082.27,1170.62 1061.46,1129.02 1019.86,1149.82 978.249,1170.62 936.642,1191.43 895.035,1212.23 853.429,1233.03 811.822,1212.23 \n",
" 832.626,1170.62 811.822,1129.02 832.626,1087.41 811.822,1045.8 853.429,1025 895.035,1004.2 874.232,962.589 895.035,920.982 874.232,879.376 915.839,900.179 \n",
" 895.035,858.573 874.232,816.966 895.035,775.359 874.232,733.753 853.429,692.146 874.232,650.54 853.429,608.933 832.626,567.326 874.232,546.523 895.035,504.917 \n",
" 915.839,463.31 957.445,484.113 999.052,463.31 1040.66,442.507 1082.27,421.703 1123.87,442.507 1165.48,421.703 1207.08,400.9 1248.69,380.097 1290.3,359.294 \n",
" 1331.9,338.49 1311.1,380.097 1352.71,359.294 1394.31,338.49 1435.92,359.294 1477.53,338.49 1519.13,359.294 1560.74,380.097 1602.35,400.9 1623.15,442.507 \n",
" 1643.95,484.113 1664.76,525.72 1685.56,567.326 1706.36,608.933 1685.56,650.54 1664.76,692.146 1623.15,712.95 1643.95,754.556 1602.35,775.359 1623.15,816.966 \n",
" 1643.95,858.573 1623.15,900.179 1602.35,941.786 1560.74,962.589 1539.94,1004.2 1498.33,1025 1456.72,1045.8 1415.12,1066.61 1435.92,1025 1394.31,1045.8 \n",
" 1352.71,1066.61 1311.1,1087.41 1269.49,1108.21 1227.89,1129.02 1186.28,1149.82 1144.67,1170.62 1103.07,1149.82 1061.46,1170.62 1019.86,1191.43 999.052,1149.82 \n",
" 957.445,1170.62 915.839,1191.43 874.232,1212.23 832.626,1233.03 811.822,1191.43 853.429,1212.23 811.822,1233.03 791.019,1191.43 832.626,1212.23 811.822,1170.62 \n",
" 791.019,1129.02 832.626,1108.21 811.822,1066.61 832.626,1025 853.429,983.392 832.626,941.786 874.232,920.982 895.035,879.376 874.232,837.769 853.429,796.163 \n",
" 895.035,816.966 874.232,775.359 853.429,733.753 832.626,692.146 853.429,650.54 874.232,608.933 853.429,567.326 895.035,546.523 915.839,504.917 936.642,463.31 \n",
" 978.249,442.507 1019.86,421.703 1061.46,400.9 1103.07,380.097 1144.67,400.9 1186.28,380.097 1227.89,359.294 1269.49,380.097 1311.1,359.294 1352.71,338.49 \n",
" 1394.31,317.687 1373.51,359.294 1415.12,338.49 1456.72,317.687 1498.33,338.49 1519.13,380.097 1560.74,400.9 1602.35,421.703 1623.15,463.31 1643.95,504.917 \n",
" 1664.76,546.523 1685.56,588.13 1706.36,629.736 1664.76,650.54 1643.95,692.146 1623.15,733.753 1643.95,775.359 1664.76,816.966 1623.15,837.769 1643.95,879.376 \n",
" 1623.15,920.982 1581.54,941.786 1560.74,983.392 1539.94,1025 1498.33,1045.8 1456.72,1066.61 1415.12,1087.41 1373.51,1108.21 1331.9,1129.02 1290.3,1149.82 \n",
" 1311.1,1108.21 1269.49,1129.02 1227.89,1149.82 1186.28,1170.62 1144.67,1149.82 1103.07,1170.62 1061.46,1191.43 1019.86,1170.62 978.249,1191.43 936.642,1212.23 \n",
" 895.035,1233.03 853.429,1253.84 811.822,1274.64 791.019,1233.03 770.216,1191.43 791.019,1149.82 811.822,1108.21 832.626,1066.61 811.822,1025 853.429,1004.2 \n",
" 832.626,962.589 874.232,983.392 895.035,941.786 874.232,900.179 853.429,858.573 832.626,816.966 874.232,796.163 853.429,754.556 832.626,712.95 811.822,671.343 \n",
" 832.626,629.736 811.822,588.13 832.626,546.523 874.232,525.72 895.035,484.113 915.839,442.507 957.445,463.31 999.052,442.507 1040.66,421.703 1082.27,400.9 \n",
" 1123.87,380.097 1165.48,359.294 1186.28,400.9 1227.89,380.097 1269.49,359.294 1311.1,338.49 1352.71,317.687 1331.9,359.294 1373.51,338.49 1415.12,317.687 \n",
" 1456.72,338.49 1498.33,317.687 1539.94,338.49 1581.54,359.294 1623.15,380.097 1581.54,400.9 1602.35,442.507 1623.15,484.113 1643.95,525.72 1664.76,567.326 \n",
" 1685.56,608.933 1706.36,650.54 1685.56,692.146 1664.76,733.753 1685.56,775.359 1643.95,796.163 1664.76,837.769 1685.56,879.376 1664.76,920.982 1643.95,962.589 \n",
" 1602.35,983.392 1560.74,1004.2 1519.13,1025 1477.53,1045.8 1435.92,1066.61 1394.31,1087.41 1352.71,1108.21 1311.1,1129.02 1269.49,1149.82 1227.89,1170.62 \n",
" 1186.28,1191.43 1165.48,1149.82 1123.87,1170.62 1082.27,1191.43 1040.66,1170.62 999.052,1191.43 957.445,1212.23 915.839,1233.03 874.232,1253.84 832.626,1274.64 \n",
" 791.019,1253.84 770.216,1212.23 791.019,1170.62 770.216,1129.02 791.019,1087.41 770.216,1045.8 791.019,1004.2 832.626,983.392 853.429,941.786 832.626,900.179 \n",
" 811.822,858.573 853.429,837.769 832.626,796.163 811.822,754.556 853.429,775.359 832.626,733.753 811.822,692.146 832.626,650.54 811.822,608.933 853.429,629.736 \n",
" 874.232,588.13 853.429,546.523 874.232,504.917 915.839,484.113 936.642,442.507 978.249,421.703 1019.86,400.9 1061.46,380.097 1103.07,400.9 1144.67,380.097 \n",
" 1186.28,359.294 1227.89,338.49 1269.49,317.687 1248.69,359.294 1290.3,338.49 1331.9,317.687 1373.51,296.884 1415.12,276.08 1435.92,317.687 1477.53,296.884 \n",
" 1519.13,317.687 1539.94,359.294 1581.54,380.097 1623.15,400.9 1643.95,442.507 1664.76,484.113 1685.56,525.72 1706.36,567.326 1727.17,608.933 1685.56,629.736 \n",
" 1706.36,671.343 1685.56,712.95 1664.76,754.556 1685.56,796.163 1706.36,837.769 1664.76,858.573 1623.15,879.376 1643.95,920.982 1623.15,962.589 1581.54,983.392 \n",
" 1560.74,1025 1519.13,1045.8 1477.53,1066.61 1435.92,1087.41 1394.31,1108.21 1352.71,1129.02 1373.51,1087.41 1331.9,1108.21 1290.3,1129.02 1248.69,1149.82 \n",
" 1207.08,1170.62 1165.48,1191.43 1123.87,1212.23 1082.27,1233.03 1103.07,1191.43 1061.46,1212.23 1019.86,1233.03 1040.66,1191.43 999.052,1212.23 957.445,1233.03 \n",
" 915.839,1212.23 874.232,1233.03 832.626,1253.84 791.019,1274.64 770.216,1233.03 811.822,1253.84 791.019,1212.23 770.216,1170.62 749.412,1129.02 791.019,1108.21 \n",
" 770.216,1066.61 791.019,1025 832.626,1004.2 853.429,962.589 832.626,920.982 853.429,879.376 895.035,900.179 874.232,858.573 853.429,816.966 832.626,775.359 \n",
" 811.822,733.753 791.019,692.146 832.626,671.343 811.822,629.736 832.626,588.13 811.822,546.523 853.429,525.72 874.232,484.113 895.035,442.507 936.642,421.703 \n",
" 978.249,400.9 957.445,442.507 999.052,421.703 1040.66,400.9 1082.27,380.097 1123.87,400.9 1165.48,380.097 1207.08,359.294 1248.69,338.49 1290.3,317.687 \n",
" 1331.9,296.884 1373.51,317.687 1415.12,296.884 1435.92,338.49 1477.53,317.687 1519.13,338.49 1560.74,359.294 1602.35,380.097 1623.15,421.703 1643.95,463.31 \n",
" 1664.76,504.917 1685.56,546.523 1706.36,588.13 1727.17,629.736 1747.97,671.343 1706.36,692.146 1664.76,712.95 1685.56,754.556 1664.76,796.163 1643.95,837.769 \n",
" 1664.76,879.376 1685.56,920.982 1643.95,941.786 1602.35,962.589 1581.54,1004.2 1560.74,1045.8 1519.13,1066.61 1477.53,1087.41 1435.92,1108.21 1394.31,1129.02 \n",
" 1352.71,1149.82 1311.1,1170.62 1269.49,1191.43 1227.89,1212.23 1248.69,1170.62 1207.08,1191.43 1165.48,1212.23 1123.87,1191.43 1082.27,1212.23 1040.66,1233.03 \n",
" 999.052,1253.84 978.249,1212.23 936.642,1233.03 895.035,1253.84 853.429,1274.64 811.822,1295.44 770.216,1274.64 749.412,1233.03 728.609,1191.43 749.412,1149.82 \n",
" 770.216,1108.21 791.019,1066.61 832.626,1045.8 811.822,1004.2 791.019,962.589 811.822,920.982 853.429,900.179 832.626,858.573 811.822,816.966 791.019,775.359 \n",
" 832.626,754.556 811.822,712.95 791.019,671.343 770.216,629.736 811.822,650.54 832.626,608.933 811.822,567.326 832.626,525.72 853.429,484.113 895.035,463.31 \n",
" 915.839,421.703 957.445,400.9 999.052,380.097 1040.66,359.294 1082.27,338.49 1123.87,359.294 1165.48,338.49 1207.08,317.687 1248.69,296.884 1269.49,338.49 \n",
" 1311.1,317.687 1352.71,296.884 1394.31,276.08 1435.92,296.884 1477.53,276.08 1519.13,296.884 1560.74,317.687 1602.35,338.49 1643.95,359.294 1664.76,400.9 \n",
" 1685.56,442.507 1643.95,421.703 1664.76,463.31 1685.56,504.917 1706.36,546.523 1727.17,588.13 1747.97,629.736 1727.17,671.343 1706.36,712.95 1685.56,671.343 \n",
" 1727.17,692.146 1706.36,733.753 1727.17,775.359 1706.36,816.966 1685.56,858.573 1664.76,900.179 1685.56,941.786 1664.76,983.392 1623.15,1004.2 1581.54,1025 \n",
" 1539.94,1045.8 1498.33,1066.61 1456.72,1087.41 1415.12,1108.21 1373.51,1129.02 1331.9,1149.82 1290.3,1170.62 1248.69,1191.43 1207.08,1212.23 1165.48,1233.03 \n",
" 1144.67,1191.43 1103.07,1212.23 1061.46,1233.03 1019.86,1212.23 978.249,1233.03 936.642,1253.84 895.035,1274.64 853.429,1295.44 811.822,1316.25 770.216,1295.44 \n",
" 749.412,1253.84 728.609,1212.23 749.412,1170.62 728.609,1129.02 770.216,1149.82 749.412,1108.21 728.609,1066.61 770.216,1087.41 791.019,1045.8 770.216,1004.2 \n",
" 811.822,983.392 791.019,941.786 811.822,900.179 853.429,920.982 832.626,879.376 811.822,837.769 791.019,796.163 770.216,754.556 811.822,775.359 791.019,733.753 \n",
" 770.216,692.146 791.019,650.54 770.216,608.933 791.019,567.326 811.822,525.72 853.429,504.917 874.232,463.31 895.035,421.703 936.642,400.9 978.249,380.097 \n",
" 957.445,421.703 999.052,400.9 1040.66,380.097 1082.27,359.294 1123.87,338.49 1165.48,317.687 1144.67,359.294 1186.28,338.49 1227.89,317.687 1269.49,296.884 \n",
" 1311.1,276.08 1352.71,255.277 1394.31,234.474 1373.51,276.08 1415.12,255.277 1394.31,296.884 1435.92,276.08 1477.53,255.277 1498.33,296.884 1539.94,317.687 \n",
" 1581.54,338.49 1623.15,359.294 1643.95,400.9 1664.76,442.507 1685.56,484.113 1706.36,525.72 1727.17,567.326 1747.97,608.933 1727.17,650.54 1747.97,692.146 \n",
" 1727.17,733.753 1706.36,775.359 1685.56,816.966 1706.36,858.573 1685.56,900.179 1664.76,941.786 1643.95,983.392 1602.35,1004.2 1581.54,1045.8 1539.94,1066.61 \n",
" 1498.33,1087.41 1456.72,1108.21 1415.12,1129.02 1373.51,1149.82 1331.9,1170.62 1290.3,1191.43 1311.1,1149.82 1269.49,1170.62 1227.89,1191.43 1186.28,1212.23 \n",
" 1144.67,1233.03 1103.07,1253.84 1061.46,1274.64 1019.86,1253.84 1040.66,1212.23 999.052,1233.03 957.445,1253.84 915.839,1274.64 874.232,1295.44 832.626,1316.25 \n",
" 791.019,1295.44 770.216,1253.84 749.412,1212.23 728.609,1170.62 707.806,1129.02 728.609,1087.41 749.412,1045.8 728.609,1004.2 770.216,983.392 811.822,962.589 \n",
" 791.019,920.982 811.822,879.376 832.626,837.769 811.822,796.163 791.019,754.556 770.216,712.95 749.412,671.343 728.609,629.736 770.216,650.54 791.019,608.933 \n",
" 770.216,567.326 791.019,525.72 832.626,504.917 853.429,463.31 874.232,421.703 915.839,400.9 957.445,380.097 999.052,359.294 1040.66,338.49 1019.86,380.097 \n",
" 1061.46,359.294 1103.07,338.49 1144.67,317.687 1186.28,296.884 1207.08,338.49 1248.69,317.687 1290.3,296.884 1331.9,276.08 1373.51,255.277 1415.12,234.474 \n",
" 1456.72,255.277 1498.33,276.08 1539.94,296.884 1560.74,338.49 1602.35,359.294 1643.95,380.097 1664.76,421.703 1685.56,463.31 1706.36,504.917 1727.17,546.523 \n",
" 1747.97,588.13 1768.77,629.736 1789.58,671.343 1747.97,650.54 1768.77,692.146 1727.17,712.95 1685.56,733.753 1727.17,754.556 1706.36,796.163 1685.56,837.769 \n",
" 1706.36,879.376 1727.17,920.982 1706.36,962.589 1685.56,1004.2 1643.95,1025 1602.35,1045.8 1560.74,1066.61 1519.13,1087.41 1477.53,1108.21 1435.92,1129.02 \n",
" 1394.31,1149.82 1352.71,1170.62 1311.1,1191.43 1269.49,1212.23 1227.89,1233.03 1186.28,1253.84 1144.67,1274.64 1123.87,1233.03 1082.27,1253.84 1040.66,1274.64 \n",
" 999.052,1295.44 978.249,1253.84 936.642,1274.64 895.035,1295.44 915.839,1253.84 874.232,1274.64 832.626,1295.44 791.019,1316.25 749.412,1295.44 728.609,1253.84 \n",
" 707.806,1212.23 749.412,1191.43 728.609,1149.82 707.806,1108.21 749.412,1087.41 728.609,1045.8 770.216,1025 791.019,983.392 811.822,941.786 791.019,900.179 \n",
" 770.216,858.573 791.019,816.966 770.216,775.359 749.412,733.753 791.019,712.95 770.216,671.343 791.019,629.736 770.216,588.13 791.019,546.523 811.822,504.917 \n",
" 832.626,463.31 874.232,442.507 895.035,400.9 936.642,380.097 978.249,359.294 1019.86,338.49 1061.46,317.687 1103.07,296.884 1144.67,276.08 1123.87,317.687 \n",
" 1103.07,359.294 1144.67,338.49 1186.28,317.687 1227.89,296.884 1269.49,276.08 1311.1,296.884 1352.71,276.08 1394.31,255.277 1435.92,234.474 1456.72,276.08 \n",
" 1498.33,255.277 1539.94,276.08 1581.54,296.884 1623.15,317.687 1664.76,338.49 1685.56,380.097 1706.36,421.703 1727.17,463.31 1747.97,504.917 1706.36,484.113 \n",
" 1727.17,525.72 1747.97,567.326 1768.77,608.933 1789.58,650.54 1810.38,692.146 1768.77,712.95 1747.97,754.556 1727.17,796.163 1706.36,754.556 1747.97,775.359 \n",
" 1727.17,816.966 1747.97,858.573 1727.17,900.179 1706.36,941.786 1664.76,962.589 1623.15,983.392 1602.35,1025 1581.54,1066.61 1539.94,1087.41 1498.33,1108.21 \n",
" 1456.72,1129.02 1415.12,1149.82 1373.51,1170.62 1331.9,1191.43 1290.3,1212.23 1248.69,1233.03 1207.08,1253.84 1165.48,1274.64 1186.28,1233.03 1144.67,1212.23 \n",
" 1103.07,1233.03 1061.46,1253.84 1019.86,1274.64 978.249,1295.44 936.642,1316.25 957.445,1274.64 915.839,1295.44 874.232,1316.25 832.626,1337.05 791.019,1357.85 \n",
" 770.216,1316.25 749.412,1274.64 728.609,1233.03 707.806,1191.43 687.002,1149.82 666.199,1108.21 707.806,1087.41 749.412,1066.61 728.609,1025 749.412,983.392 \n",
" 770.216,941.786 749.412,900.179 791.019,879.376 770.216,837.769 749.412,796.163 728.609,754.556 770.216,733.753 749.412,692.146 728.609,650.54 749.412,608.933 \n",
" 791.019,588.13 770.216,546.523 791.019,504.917 832.626,484.113 853.429,442.507 874.232,400.9 915.839,380.097 957.445,359.294 999.052,338.49 1040.66,317.687 \n",
" 1019.86,359.294 1061.46,338.49 1103.07,317.687 1144.67,296.884 1186.28,276.08 1227.89,255.277 1207.08,296.884 1248.69,276.08 1290.3,255.277 1331.9,234.474 \n",
" 1373.51,213.67 1415.12,192.867 1456.72,213.67 1435.92,255.277 1456.72,296.884 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"733.753\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"733.753\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"837.769\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"837.769\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"733.753\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"733.753\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"837.769\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"837.769\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"920.982\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"920.982\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"858.573\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"858.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1415.12\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1415.12\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"858.573\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"858.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"920.982\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"920.982\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"962.589\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"962.589\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"900.179\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"900.179\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"837.769\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"837.769\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"962.589\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"962.589\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"920.982\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"920.982\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"920.982\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"920.982\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"525.72\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"525.72\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1415.12\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1415.12\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"900.179\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"900.179\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"962.589\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"962.589\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"525.72\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"525.72\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"962.589\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"962.589\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1045.8\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1045.8\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"1066.61\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"1066.61\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1165.48\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"463.31\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"463.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"1045.8\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"1045.8\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1045.8\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1045.8\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"525.72\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"525.72\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1477.53\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"1025\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"1025\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1045.8\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1045.8\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"1025\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"1025\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"978.249\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"463.31\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"463.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"733.753\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"733.753\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"900.179\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"900.179\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"962.589\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"962.589\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"1045.8\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"1045.8\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"1108.21\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"1108.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"463.31\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"463.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"1066.61\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"1066.61\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1129.02\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1129.02\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"1108.21\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"1108.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"525.72\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"525.72\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1129.02\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1129.02\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"1129.02\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"1129.02\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"900.179\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"900.179\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"525.72\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"525.72\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1664.76\" cy=\"588.13\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1664.76\" cy=\"588.13\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"1108.21\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"1108.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"1149.82\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"1149.82\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"1191.43\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"1191.43\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1643.95\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1643.95\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"920.982\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"920.982\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"1129.02\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"1129.02\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"1066.61\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"1066.61\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"983.392\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"983.392\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"629.736\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"629.736\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1643.95\" cy=\"733.753\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1643.95\" cy=\"733.753\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1498.33\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"1191.43\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"936.642\" cy=\"1191.43\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"1233.03\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"1233.03\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"338.49\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"338.49\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"359.294\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"359.294\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"359.294\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"359.294\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1643.95\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1643.95\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"650.54\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"650.54\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1602.35\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"1191.43\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"1191.43\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"1212.23\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"1212.23\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"1066.61\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"1066.61\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"400.9\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"400.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"400.9\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"400.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"359.294\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"359.294\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"463.31\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"463.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"1149.82\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"1149.82\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"858.573\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"858.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"359.294\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1269.49\" cy=\"359.294\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"317.687\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"317.687\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"338.49\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"338.49\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1664.76\" cy=\"920.982\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1664.76\" cy=\"920.982\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"1066.61\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"1066.61\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"1108.21\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1352.71\" cy=\"1108.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"1253.84\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"1253.84\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"1253.84\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"1253.84\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"1170.62\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"1170.62\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"858.573\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"858.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"400.9\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1019.86\" cy=\"400.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"317.687\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"317.687\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"317.687\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1519.13\" cy=\"317.687\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"962.589\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"962.589\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"1025\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"1025\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1373.51\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1212.23\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1123.87\" cy=\"1212.23\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"733.753\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"733.753\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"895.035\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"338.49\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1248.69\" cy=\"338.49\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"296.884\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1331.9\" cy=\"296.884\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1253.84\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"999.052\" cy=\"1253.84\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"728.609\" cy=\"1191.43\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"728.609\" cy=\"1191.43\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"1108.21\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"1108.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"1045.8\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"1045.8\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"484.113\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"484.113\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"276.08\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"276.08\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"317.687\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"317.687\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"712.95\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"712.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1727.17\" cy=\"775.359\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1727.17\" cy=\"775.359\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"1004.2\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1623.15\" cy=\"1004.2\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"1191.43\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1144.67\" cy=\"1191.43\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"1316.25\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"1316.25\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"1149.82\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"1149.82\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"832.626\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"525.72\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"811.822\" cy=\"525.72\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"463.31\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"874.232\" cy=\"463.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"957.445\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1040.66\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"317.687\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1227.89\" cy=\"317.687\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"276.08\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1435.92\" cy=\"276.08\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"338.49\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"338.49\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1727.17\" cy=\"733.753\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1727.17\" cy=\"733.753\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"816.966\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"816.966\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"900.179\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1685.56\" cy=\"900.179\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"1149.82\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1311.1\" cy=\"1149.82\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"1274.64\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1061.46\" cy=\"1274.64\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"754.556\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"754.556\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"749.412\" cy=\"671.343\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"749.412\" cy=\"671.343\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"567.326\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"567.326\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"255.277\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"255.277\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"296.884\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1539.94\" cy=\"296.884\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1768.77\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1768.77\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"879.376\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"879.376\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"1066.61\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1560.74\" cy=\"1066.61\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"1149.82\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1394.31\" cy=\"1149.82\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"1253.84\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1082.27\" cy=\"1253.84\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"707.806\" cy=\"1212.23\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"707.806\" cy=\"1212.23\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"1025\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"1025\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"546.523\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"546.523\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"296.884\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1581.54\" cy=\"296.884\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"421.703\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1706.36\" cy=\"421.703\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1747.97\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1747.97\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1768.77\" cy=\"608.933\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1768.77\" cy=\"608.933\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1810.38\" cy=\"692.146\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1810.38\" cy=\"692.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1253.84\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"1253.84\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"1233.03\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"1233.03\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"707.806\" cy=\"1087.41\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"707.806\" cy=\"1087.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"941.786\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"770.216\" cy=\"941.786\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"749.412\" cy=\"796.163\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"749.412\" cy=\"796.163\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"504.917\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"791.019\" cy=\"504.917\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"442.507\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"853.429\" cy=\"442.507\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"380.097\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"915.839\" cy=\"380.097\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"317.687\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1103.07\" cy=\"317.687\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"276.08\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1186.28\" cy=\"276.08\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"296.884\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1207.08\" cy=\"296.884\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"255.277\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1290.3\" cy=\"255.277\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"296.884\" r=\"14\"/>\n",
"<circle clip-path=\"url(#clip3003)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1456.72\" cy=\"296.884\" r=\"10\"/>\n",
"<polygon clip-path=\"url(#clip3001)\" points=\"\n",
"1394.58,1359.47 1904.81,1359.47 1904.81,1178.03 1394.58,1178.03 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1394.58,1359.47 1904.81,1359.47 1904.81,1178.03 1394.58,1178.03 1394.58,1359.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3001)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1418.58,1238.51 1562.58,1238.51 \n",
" \"/>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1586.58, 1256.01)\" x=\"1586.58\" y=\"1256.01\">knight&apos;s path</text>\n",
"</g>\n",
"<circle clip-path=\"url(#clip3001)\" style=\"fill:#000000; stroke:none; fill-opacity:1\" cx=\"1502.58\" cy=\"1298.99\" r=\"25\"/>\n",
"<circle clip-path=\"url(#clip3001)\" style=\"fill:#e26f46; stroke:none; fill-opacity:1\" cx=\"1502.58\" cy=\"1298.99\" r=\"21\"/>\n",
"<g clip-path=\"url(#clip3001)\">\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, 1586.58, 1316.49)\" x=\"1586.58\" y=\"1316.49\">primes</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(path, lims = (-35,35), aspect_ratio = :equal, legend = :bottomright, label = [\"knight's path\", \"\"])\n",
"\n",
"prime_positions = Array{Tuple{Int, Int}}(undef, 0)\n",
"\n",
"for (i, pos) in enumerate(path)\n",
" if is_prime(ordered[i])\n",
" push!(prime_positions, pos)\n",
" end\n",
"end\n",
"\n",
"plot!(prime_positions, seriestype = :scatter, label = [\"\", \"primes\"], markersize = 3)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"It's wonderfully random but still some patterns arise. Let's try seeing what happens when the last number is blocked off. Will the knight get stuck again? When we get stuck, we'll undo the last move that got us stuck and try again. "
]
},
{
"cell_type": "code",
"execution_count": 63,
"metadata": {},
"outputs": [],
"source": [
"using Plots\n",
"gr()\n",
"\n",
"knight_moves = [(-2, -1), (-2, +1), (+2, -1), (+2, +1), (-1, -2), (-1, +2), (+1, -2), (+1, +2)]\n",
"current = (0, 0)\n",
"value = 1\n",
"\n",
"strides = Any[]\n",
"stuck_points = Tuple{Int, Int}[]\n",
"visited = Set(1)\n",
"\n",
"push!(strides, Tuple{Int, Int}[(0,0)])\n",
"max_strides = 15\n",
"\n",
"\n",
"while length(strides) <= max_strides\n",
" next_pos, next_value = next_move(current, visited, knight_moves, ulam_map, minimum)\n",
"\n",
" if next_value < 0\n",
" push!(stuck_points, current)\n",
" current = strides[end][end]\n",
" push!(visited, value)\n",
" push!(strides, Tuple{Int, Int}[])\n",
" else \n",
" push!(visited, value)\n",
" push!(strides[end], current)\n",
" current = next_pos\n",
" value = next_value\n",
" end\n",
"\n",
"end\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We'll run the simuation for 15 iterations (or strides) and plot the results. Maybe we'll see something interesting."
]
},
{
"cell_type": "code",
"execution_count": 56,
"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=\"1000\" height=\"1000\" viewBox=\"0 0 4000 4000\">\n",
"<defs>\n",
" <clipPath id=\"clip5900\">\n",
" <rect x=\"0\" y=\"0\" width=\"2000\" height=\"2000\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<defs>\n",
" <clipPath id=\"clip5901\">\n",
" <rect x=\"0\" y=\"0\" width=\"4000\" height=\"4000\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5901)\" points=\"\n",
"0,4000 4000,4000 4000,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5902\">\n",
" <rect x=\"800\" y=\"400\" width=\"2801\" height=\"2801\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5901)\" points=\"\n",
"176.123,3846.06 3921.26,3846.06 3921.26,166.63 176.123,166.63 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5903\">\n",
" <rect x=\"176\" y=\"166\" width=\"3746\" height=\"3680\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 468.073,3846.06 468.073,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 984.615,3846.06 984.615,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1501.16,3846.06 1501.16,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2017.7,3846.06 2017.7,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2534.24,3846.06 2534.24,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 3050.78,3846.06 3050.78,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 3567.33,3846.06 3567.33,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,3535.31 3921.26,3535.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,3018.77 3921.26,3018.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,2502.23 3921.26,2502.23 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,1985.68 3921.26,1985.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,1469.14 3921.26,1469.14 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,952.6 3921.26,952.6 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 176.123,436.058 3921.26,436.058 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,3846.06 3921.26,3846.06 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,3846.06 176.123,166.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 468.073,3846.06 468.073,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 984.615,3846.06 984.615,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1501.16,3846.06 1501.16,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2017.7,3846.06 2017.7,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2534.24,3846.06 2534.24,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3050.78,3846.06 3050.78,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3567.33,3846.06 3567.33,3790.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,3535.31 232.3,3535.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,3018.77 232.3,3018.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,2502.23 232.3,2502.23 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,1985.68 232.3,1985.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,1469.14 232.3,1469.14 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,952.6 232.3,952.6 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 176.123,436.058 232.3,436.058 \n",
" \"/>\n",
"<g clip-path=\"url(#clip5901)\">\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, 468.073, 3908.06)\" x=\"468.073\" y=\"3908.06\">-75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 984.615, 3908.06)\" x=\"984.615\" y=\"3908.06\">-50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 1501.16, 3908.06)\" x=\"1501.16\" y=\"3908.06\">-25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 2017.7, 3908.06)\" x=\"2017.7\" y=\"3908.06\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 2534.24, 3908.06)\" x=\"2534.24\" y=\"3908.06\">25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 3050.78, 3908.06)\" x=\"3050.78\" y=\"3908.06\">50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 3567.33, 3908.06)\" x=\"3567.33\" y=\"3908.06\">75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 3552.81)\" x=\"136.123\" y=\"3552.81\">-75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 3036.27)\" x=\"136.123\" y=\"3036.27\">-50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 2519.73)\" x=\"136.123\" y=\"2519.73\">-25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 2003.18)\" x=\"136.123\" y=\"2003.18\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 1486.64)\" x=\"136.123\" y=\"1486.64\">25</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 970.1)\" x=\"136.123\" y=\"970.1\">50</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\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, 136.123, 453.558)\" x=\"136.123\" y=\"453.558\">75</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip5901)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:82px; text-anchor:middle;\" transform=\"rotate(0, 2048.69, 72)\" x=\"2048.69\" y=\"72\">Knight after 15 Escapes</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 2224.32,1470.47 2184.32,1510.47 2224.32,1550.47 2264.32,1510.47 2224.32,1470.47 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 2224.32,1474.47 2188.32,1510.47 2224.32,1546.47 2260.32,1510.47 2224.32,1474.47 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1480.5,1718.41 1440.5,1758.41 1480.5,1798.41 1520.5,1758.41 1480.5,1718.41 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1480.5,1722.41 1444.5,1758.41 1480.5,1794.41 1516.5,1758.41 1480.5,1722.41 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 2244.98,1346.5 2204.98,1386.5 2244.98,1426.5 2284.98,1386.5 2244.98,1346.5 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 2244.98,1350.5 2208.98,1386.5 2244.98,1422.5 2280.98,1386.5 2244.98,1350.5 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 2658.21,1925.02 2618.21,1965.02 2658.21,2005.02 2698.21,1965.02 2658.21,1925.02 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 2658.21,1929.02 2622.21,1965.02 2658.21,2001.02 2694.21,1965.02 2658.21,1929.02 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1108.58,1677.08 1068.58,1717.08 1108.58,1757.08 1148.58,1717.08 1108.58,1677.08 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1108.58,1681.08 1072.58,1717.08 1108.58,1753.08 1144.58,1717.08 1108.58,1681.08 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 2802.84,2586.2 2762.84,2626.2 2802.84,2666.2 2842.84,2626.2 2802.84,2586.2 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 2802.84,2590.2 2766.84,2626.2 2802.84,2662.2 2838.84,2626.2 2802.84,2590.2 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1129.25,1346.5 1089.25,1386.5 1129.25,1426.5 1169.25,1386.5 1129.25,1346.5 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1129.25,1350.5 1093.25,1386.5 1129.25,1422.5 1165.25,1386.5 1129.25,1350.5 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1170.57,2896.12 1130.57,2936.12 1170.57,2976.12 1210.57,2936.12 1170.57,2896.12 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1170.57,2900.12 1134.57,2936.12 1170.57,2972.12 1206.57,2936.12 1170.57,2900.12 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1480.5,3164.72 1440.5,3204.72 1480.5,3244.72 1520.5,3204.72 1480.5,3164.72 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1480.5,3168.72 1444.5,3204.72 1480.5,3240.72 1516.5,3204.72 1480.5,3168.72 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1067.26,1077.89 1027.26,1117.89 1067.26,1157.89 1107.26,1117.89 1067.26,1077.89 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1067.26,1081.89 1031.26,1117.89 1067.26,1153.89 1103.26,1117.89 1067.26,1081.89 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1025.94,1243.19 985.938,1283.19 1025.94,1323.19 1065.94,1283.19 1025.94,1243.19 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1025.94,1247.19 989.938,1283.19 1025.94,1319.19 1061.94,1283.19 1025.94,1247.19 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 1521.82,3495.31 1481.82,3535.31 1521.82,3575.31 1561.82,3535.31 1521.82,3495.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 1521.82,3499.31 1485.82,3535.31 1521.82,3571.31 1557.82,3535.31 1521.82,3499.31 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 3278.06,2792.81 3238.06,2832.81 3278.06,2872.81 3318.06,2832.81 3278.06,2792.81 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 3278.06,2796.81 3242.06,2832.81 3278.06,2868.81 3314.06,2832.81 3278.06,2796.81 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 3546.66,1387.82 3506.66,1427.82 3546.66,1467.82 3586.66,1427.82 3546.66,1387.82 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 3546.66,1391.82 3510.66,1427.82 3546.66,1463.82 3582.66,1427.82 3546.66,1391.82 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 3526,2358.92 3486,2398.92 3526,2438.92 3566,2398.92 3526,2358.92 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5903)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 3526,2362.92 3490,2398.92 3526,2434.92 3562,2398.92 3526,2362.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2017.7,1985.68 2017.7,1985.68 2059.02,2006.35 2038.36,1965.02 1997.04,1985.68 2038.36,2006.35 2017.7,1965.02 1997.04,2006.35 2038.36,1985.68 1997.04,1965.02 \n",
" 2017.7,2006.35 2059.02,1985.68 2038.36,1944.36 2079.68,1965.02 2059.02,1923.7 2017.7,1944.36 2059.02,1965.02 2079.68,2006.35 2038.36,2027.01 1997.04,2047.67 \n",
" 1976.38,2006.35 2017.7,2027.01 1976.38,2047.67 1955.71,2006.35 1976.38,1965.02 1997.04,1923.7 1955.71,1944.36 1976.38,1985.68 1997.04,1944.36 2038.36,1923.7 \n",
" 2079.68,1944.36 2100.35,1985.68 2079.68,2027.01 2038.36,2047.67 1997.04,2027.01 1955.71,2047.67 1935.05,2006.35 1976.38,2027.01 1955.71,1985.68 1976.38,1944.36 \n",
" 2017.7,1923.7 2059.02,1944.36 2079.68,1985.68 2059.02,2027.01 2017.7,2047.67 1976.38,2068.33 1955.71,2027.01 1935.05,1985.68 1914.39,1944.36 1955.71,1923.7 \n",
" 1997.04,1903.04 2038.36,1882.38 2079.68,1903.04 2100.35,1944.36 2121.01,1985.68 2100.35,2027.01 2059.02,2047.67 2017.7,2068.33 1976.38,2088.99 1935.05,2068.33 \n",
" 1914.39,2027.01 1893.73,1985.68 1935.05,1965.02 1914.39,1923.7 1955.71,1903.04 1935.05,1944.36 1976.38,1923.7 1955.71,1965.02 1935.05,1923.7 1976.38,1903.04 \n",
" 2017.7,1882.38 2059.02,1903.04 2100.35,1923.7 2121.01,1965.02 2100.35,2006.35 2079.68,2047.67 2038.36,2068.33 1997.04,2088.99 1955.71,2068.33 1935.05,2027.01 \n",
" 1914.39,1985.68 1893.73,1944.36 1914.39,1903.04 1955.71,1882.38 1997.04,1861.71 2017.7,1903.04 2059.02,1882.38 2079.68,1923.7 2100.35,1965.02 2121.01,2006.35 \n",
" 2100.35,2047.67 2059.02,2068.33 2017.7,2088.99 1976.38,2109.65 1997.04,2068.33 1955.71,2088.99 1935.05,2047.67 1914.39,2006.35 1893.73,1965.02 1873.07,1923.7 \n",
" 1893.73,1882.38 1935.05,1903.04 1976.38,1882.38 2017.7,1861.71 2038.36,1903.04 2079.68,1882.38 2121.01,1903.04 2141.67,1944.36 2162.33,1985.68 2141.67,2027.01 \n",
" 2121.01,2068.33 2079.68,2088.99 2038.36,2109.65 1997.04,2130.32 1955.71,2109.65 1914.39,2088.99 1893.73,2047.67 1873.07,2006.35 1852.41,1965.02 1831.74,1923.7 \n",
" 1873.07,1903.04 1914.39,1882.38 1955.71,1861.71 1997.04,1882.38 2038.36,1861.71 2079.68,1841.05 2100.35,1882.38 2121.01,1923.7 2141.67,1965.02 2162.33,2006.35 \n",
" 2121.01,2027.01 2100.35,2068.33 2059.02,2088.99 2017.7,2109.65 1976.38,2130.32 1935.05,2109.65 1914.39,2068.33 1893.73,2027.01 1873.07,1985.68 1914.39,1965.02 \n",
" 1893.73,1923.7 1873.07,1882.38 1914.39,1861.71 1893.73,1903.04 1935.05,1882.38 1976.38,1861.71 2017.7,1841.05 2059.02,1861.71 2100.35,1841.05 2121.01,1882.38 \n",
" 2141.67,1923.7 2100.35,1903.04 2121.01,1944.36 2141.67,1985.68 2162.33,2027.01 2121.01,2047.67 2079.68,2068.33 2038.36,2088.99 1997.04,2109.65 1955.71,2130.32 \n",
" 1935.05,2088.99 1914.39,2047.67 1893.73,2006.35 1873.07,1965.02 1852.41,1923.7 1831.74,1882.38 1873.07,1861.71 1914.39,1841.05 1955.71,1820.39 1935.05,1861.71 \n",
" 1976.38,1841.05 2017.7,1820.39 2059.02,1841.05 2100.35,1861.71 2141.67,1882.38 2162.33,1923.7 2182.99,1965.02 2203.65,2006.35 2182.99,2047.67 2141.67,2068.33 \n",
" 2100.35,2088.99 2059.02,2109.65 2017.7,2130.32 1976.38,2150.98 1935.05,2130.32 1893.73,2109.65 1873.07,2068.33 1852.41,2027.01 1831.74,1985.68 1852.41,1944.36 \n",
" 1831.74,1903.04 1852.41,1861.71 1893.73,1841.05 1935.05,1820.39 1976.38,1799.73 1997.04,1841.05 2038.36,1820.39 2079.68,1799.73 2121.01,1820.39 2141.67,1861.71 \n",
" 2162.33,1903.04 2182.99,1944.36 2203.65,1985.68 2162.33,1965.02 2141.67,2006.35 2162.33,2047.67 2141.67,2088.99 2100.35,2109.65 2059.02,2130.32 2017.7,2150.98 \n",
" 1976.38,2171.64 1935.05,2150.98 1914.39,2109.65 1893.73,2068.33 1873.07,2027.01 1852.41,1985.68 1873.07,1944.36 1852.41,1903.04 1831.74,1861.71 1873.07,1841.05 \n",
" 1914.39,1820.39 1893.73,1861.71 1935.05,1841.05 1976.38,1820.39 2017.7,1799.73 2038.36,1841.05 2079.68,1861.71 2121.01,1841.05 2162.33,1861.71 2141.67,1903.04 \n",
" 2121.01,1861.71 2162.33,1882.38 2141.67,1841.05 2182.99,1861.71 2162.33,1820.39 2203.65,1841.05 2182.99,1882.38 2162.33,1841.05 2203.65,1861.71 2182.99,1903.04 \n",
" 2162.33,1944.36 2182.99,1985.68 2203.65,2027.01 2182.99,2068.33 2141.67,2047.67 2121.01,2088.99 2079.68,2109.65 2038.36,2130.32 1997.04,2150.98 1955.71,2171.64 \n",
" 1914.39,2150.98 1873.07,2130.32 1893.73,2088.99 1873.07,2047.67 1852.41,2006.35 1831.74,1965.02 1811.08,1923.7 1790.42,1882.38 1811.08,1841.05 1852.41,1820.39 \n",
" 1893.73,1799.73 1935.05,1779.07 1976.38,1758.41 1997.04,1799.73 2038.36,1779.07 2059.02,1820.39 2100.35,1799.73 2141.67,1820.39 2182.99,1841.05 2203.65,1882.38 \n",
" 2182.99,1923.7 2203.65,1965.02 2182.99,2006.35 2203.65,2047.67 2162.33,2068.33 2141.67,2109.65 2100.35,2130.32 2059.02,2150.98 2017.7,2171.64 1976.38,2192.3 \n",
" 1955.71,2150.98 1914.39,2130.32 1873.07,2109.65 1852.41,2068.33 1831.74,2027.01 1811.08,1985.68 1831.74,1944.36 1811.08,1903.04 1852.41,1882.38 1831.74,1841.05 \n",
" 1873.07,1820.39 1914.39,1799.73 1955.71,1779.07 1997.04,1758.41 2038.36,1737.74 2059.02,1779.07 2079.68,1820.39 2121.01,1799.73 2162.33,1779.07 2182.99,1820.39 \n",
" 2141.67,1799.73 2100.35,1820.39 2059.02,1799.73 2100.35,1779.07 2141.67,1758.41 2162.33,1799.73 2203.65,1820.39 2224.32,1861.71 2203.65,1903.04 2224.32,1944.36 \n",
" 2244.98,1985.68 2224.32,2027.01 2203.65,2068.33 2162.33,2088.99 2121.01,2109.65 2079.68,2130.32 2038.36,2150.98 1997.04,2171.64 1955.71,2192.3 1914.39,2171.64 \n",
" 1893.73,2130.32 1873.07,2088.99 1852.41,2047.67 1831.74,2006.35 1811.08,1965.02 1790.42,1923.7 1811.08,1882.38 1790.42,1841.05 1831.74,1820.39 1873.07,1799.73 \n",
" 1852.41,1841.05 1893.73,1820.39 1935.05,1799.73 1955.71,1841.05 1997.04,1820.39 2038.36,1799.73 2079.68,1779.07 2121.01,1758.41 2162.33,1737.74 2182.99,1779.07 \n",
" 2224.32,1799.73 2244.98,1841.05 2224.32,1882.38 2203.65,1923.7 2224.32,1965.02 2244.98,2006.35 2224.32,2047.67 2182.99,2027.01 2224.32,2006.35 2244.98,2047.67 \n",
" 2224.32,2088.99 2182.99,2109.65 2141.67,2130.32 2100.35,2150.98 2059.02,2171.64 2017.7,2192.3 1976.38,2212.96 1935.05,2192.3 1893.73,2171.64 1852.41,2150.98 \n",
" 1831.74,2109.65 1811.08,2068.33 1852.41,2088.99 1831.74,2047.67 1811.08,2006.35 1790.42,1965.02 1769.76,1923.7 1811.08,1944.36 1790.42,1903.04 1811.08,1861.71 \n",
" 1790.42,1820.39 1831.74,1799.73 1873.07,1779.07 1914.39,1758.41 1955.71,1737.74 1976.38,1779.07 2017.7,1758.41 2059.02,1737.74 2100.35,1758.41 2141.67,1779.07 \n",
" 2182.99,1799.73 2224.32,1820.39 2203.65,1779.07 2244.98,1799.73 2224.32,1841.05 2203.65,1799.73 2244.98,1820.39 2224.32,1779.07 2182.99,1758.41 2224.32,1737.74 \n",
" 2244.98,1779.07 2203.65,1758.41 2244.98,1737.74 2265.64,1779.07 2224.32,1758.41 2265.64,1737.74 2286.3,1779.07 2244.98,1758.41 2265.64,1799.73 2286.3,1841.05 \n",
" 2244.98,1861.71 2224.32,1903.04 2203.65,1944.36 2224.32,1985.68 2244.98,2027.01 2224.32,2068.33 2182.99,2088.99 2162.33,2130.32 2121.01,2150.98 2079.68,2171.64 \n",
" 2038.36,2192.3 1997.04,2212.96 1955.71,2233.62 1914.39,2212.96 1935.05,2171.64 1893.73,2150.98 1852.41,2130.32 1831.74,2088.99 1811.08,2047.67 1790.42,2006.35 \n",
" 1769.76,1965.02 1749.1,1923.7 1790.42,1944.36 1769.76,1903.04 1790.42,1861.71 1811.08,1820.39 1852.41,1799.73 1893.73,1779.07 1935.05,1758.41 1955.71,1799.73 \n",
" 1997.04,1779.07 2038.36,1758.41 2079.68,1737.74 2121.01,1717.08 2162.33,1696.42 2182.99,1737.74 2224.32,1717.08 2265.64,1696.42 2286.3,1737.74 2244.98,1717.08 \n",
" 2265.64,1758.41 2286.3,1799.73 2265.64,1841.05 2244.98,1882.38 2224.32,1923.7 2244.98,1965.02 2265.64,2006.35 2286.3,2047.67 2244.98,2068.33 2203.65,2088.99 \n",
" 2162.33,2109.65 2121.01,2130.32 2079.68,2150.98 2038.36,2171.64 1997.04,2192.3 1955.71,2212.96 1914.39,2192.3 1873.07,2171.64 1831.74,2150.98 1852.41,2109.65 \n",
" 1873.07,2150.98 1831.74,2130.32 1852.41,2171.64 1811.08,2150.98 1831.74,2192.3 1790.42,2171.64 1811.08,2130.32 1831.74,2171.64 1873.07,2192.3 1831.74,2212.96 \n",
" 1811.08,2171.64 1852.41,2192.3 1811.08,2212.96 1769.76,2192.3 1790.42,2150.98 1811.08,2109.65 1831.74,2068.33 1811.08,2027.01 1790.42,1985.68 1769.76,1944.36 \n",
" 1749.1,1903.04 1769.76,1861.71 1749.1,1820.39 1790.42,1799.73 1831.74,1779.07 1873.07,1758.41 1914.39,1779.07 1955.71,1758.41 1997.04,1737.74 2017.7,1779.07 \n",
" 2059.02,1758.41 2100.35,1737.74 2121.01,1779.07 2162.33,1758.41 2203.65,1737.74 2162.33,1717.08 2121.01,1737.74 2079.68,1758.41 2100.35,1717.08 2141.67,1737.74 \n",
" 2182.99,1717.08 2224.32,1696.42 2265.64,1717.08 2286.3,1758.41 2306.96,1799.73 2265.64,1820.39 2286.3,1861.71 2265.64,1903.04 2244.98,1944.36 2265.64,1985.68 \n",
" 2286.3,2027.01 2265.64,2068.33 2244.98,2109.65 2203.65,2130.32 2162.33,2150.98 2121.01,2171.64 2079.68,2192.3 2038.36,2212.96 1997.04,2233.62 1955.71,2254.29 \n",
" 1935.05,2212.96 1893.73,2192.3 1852.41,2212.96 1811.08,2192.3 1769.76,2171.64 1790.42,2130.32 1811.08,2088.99 1790.42,2047.67 1769.76,2006.35 1749.1,1965.02 \n",
" 1728.44,1923.7 1749.1,1882.38 1769.76,1841.05 1749.1,1799.73 1790.42,1779.07 1831.74,1758.41 1811.08,1799.73 1852.41,1779.07 1893.73,1758.41 1935.05,1737.74 \n",
" 1976.38,1717.08 2017.7,1737.74 2059.02,1717.08 2100.35,1696.42 2141.67,1717.08 2182.99,1696.42 2224.32,1675.76 2203.65,1717.08 2244.98,1696.42 2286.3,1717.08 \n",
" 2306.96,1758.41 2327.62,1799.73 2286.3,1820.39 2265.64,1861.71 2244.98,1903.04 2265.64,1944.36 2286.3,1985.68 2265.64,2027.01 2286.3,2068.33 2244.98,2088.99 \n",
" 2203.65,2109.65 2182.99,2150.98 2141.67,2171.64 2100.35,2192.3 2059.02,2212.96 2017.7,2233.62 1976.38,2254.29 1935.05,2233.62 1893.73,2212.96 1852.41,2233.62 \n",
" 1811.08,2254.29 1790.42,2212.96 1831.74,2233.62 1873.07,2212.96 1914.39,2233.62 1873.07,2254.29 1831.74,2274.95 1811.08,2233.62 1790.42,2192.3 1769.76,2150.98 \n",
" 1790.42,2109.65 1769.76,2068.33 1790.42,2027.01 1769.76,1985.68 1749.1,1944.36 1728.44,1903.04 1769.76,1882.38 1749.1,1841.05 1769.76,1799.73 1811.08,1779.07 \n",
" 1852.41,1758.41 1893.73,1737.74 1935.05,1717.08 1976.38,1737.74 2017.7,1717.08 2059.02,1696.42 2100.35,1675.76 2079.68,1717.08 2121.01,1696.42 2162.33,1675.76 \n",
" 2203.65,1696.42 2244.98,1675.76 2286.3,1696.42 2306.96,1737.74 2327.62,1779.07 2306.96,1820.39 2327.62,1861.71 2286.3,1882.38 2265.64,1923.7 2286.3,1965.02 \n",
" 2306.96,2006.35 2327.62,2047.67 2306.96,2088.99 2265.64,2109.65 2224.32,2130.32 2203.65,2171.64 2182.99,2130.32 2141.67,2150.98 2100.35,2171.64 2059.02,2192.3 \n",
" 2017.7,2212.96 1976.38,2233.62 1935.05,2254.29 1893.73,2233.62 1852.41,2254.29 1811.08,2274.95 1790.42,2233.62 1749.1,2212.96 1769.76,2254.29 1728.44,2233.62 \n",
" 1769.76,2212.96 1749.1,2171.64 1769.76,2130.32 1790.42,2088.99 1769.76,2047.67 1749.1,2006.35 1728.44,1965.02 1707.77,1923.7 1728.44,1882.38 1707.77,1841.05 \n",
" 1749.1,1861.71 1769.76,1820.39 1749.1,1779.07 1790.42,1758.41 1831.74,1737.74 1873.07,1717.08 1914.39,1737.74 1955.71,1717.08 1997.04,1696.42 2038.36,1717.08 \n",
" 2079.68,1696.42 2121.01,1675.76 2162.33,1655.1 2141.67,1696.42 2182.99,1675.76 2224.32,1655.1 2265.64,1675.76 2306.96,1696.42 2327.62,1737.74 2306.96,1779.07 \n",
" 2327.62,1820.39 2306.96,1861.71 2265.64,1882.38 2244.98,1923.7 2265.64,1965.02 2286.3,2006.35 2265.64,2047.67 2286.3,2088.99 2265.64,2130.32 2224.32,2150.98 \n",
" 2182.99,2171.64 2141.67,2192.3 2100.35,2212.96 2059.02,2233.62 2017.7,2254.29 1976.38,2274.95 1935.05,2295.61 1914.39,2254.29 1873.07,2233.62 1831.74,2254.29 \n",
" 1790.42,2274.95 1769.76,2233.62 1749.1,2192.3 1728.44,2150.98 1749.1,2109.65 1728.44,2068.33 1769.76,2088.99 1749.1,2047.67 1790.42,2068.33 1769.76,2027.01 \n",
" 1749.1,1985.68 1728.44,1944.36 1707.77,1903.04 1728.44,1861.71 1707.77,1820.39 1728.44,1779.07 1769.76,1758.41 1811.08,1737.74 1852.41,1717.08 1893.73,1696.42 \n",
" 1873.07,1737.74 1914.39,1717.08 1955.71,1696.42 1997.04,1717.08 2038.36,1696.42 2079.68,1675.76 2121.01,1655.1 2162.33,1634.44 2141.67,1675.76 2182.99,1655.1 \n",
" 2224.32,1634.44 2203.65,1675.76 2244.98,1655.1 2286.3,1675.76 2306.96,1717.08 2327.62,1758.41 2348.29,1799.73 2327.62,1841.05 2306.96,1882.38 2286.3,1923.7 \n",
" 2306.96,1965.02 2327.62,2006.35 2306.96,2047.67 2327.62,2088.99 2286.3,2109.65 2244.98,2130.32 2203.65,2150.98 2162.33,2171.64 2121.01,2192.3 2079.68,2212.96 \n",
" 2038.36,2233.62 1997.04,2254.29 1955.71,2274.95 1914.39,2295.61 1893.73,2254.29 1852.41,2274.95 1811.08,2295.61 1790.42,2254.29 1749.1,2233.62 1728.44,2192.3 \n",
" 1749.1,2150.98 1769.76,2109.65 1749.1,2068.33 1728.44,2027.01 1707.77,1985.68 1687.11,1944.36 1666.45,1903.04 1707.77,1882.38 1728.44,1841.05 1707.77,1799.73 \n",
" 1728.44,1758.41 1769.76,1737.74 1811.08,1758.41 1852.41,1737.74 1893.73,1717.08 1935.05,1696.42 1976.38,1675.76 2017.7,1696.42 2059.02,1675.76 2100.35,1655.1 \n",
" 2141.67,1634.44 2182.99,1613.77 2203.65,1655.1 2244.98,1634.44 2286.3,1655.1 2327.62,1675.76 2348.29,1717.08 2368.95,1758.41 2389.61,1799.73 2348.29,1820.39 \n",
" 2306.96,1841.05 2327.62,1882.38 2286.3,1903.04 2306.96,1944.36 2327.62,1985.68 2306.96,2027.01 2327.62,2068.33 2306.96,2109.65 2265.64,2088.99 2224.32,2109.65 \n",
" 2244.98,2150.98 2224.32,2192.3 2182.99,2212.96 2141.67,2233.62 2162.33,2192.3 2121.01,2212.96 2079.68,2233.62 2038.36,2254.29 1997.04,2274.95 1955.71,2295.61 \n",
" 1914.39,2274.95 1873.07,2295.61 1831.74,2316.27 1790.42,2295.61 1749.1,2274.95 1707.77,2254.29 1728.44,2212.96 1749.1,2254.29 1707.77,2233.62 1728.44,2274.95 \n",
" 1769.76,2295.61 1728.44,2316.27 1707.77,2274.95 1749.1,2295.61 1728.44,2254.29 1769.76,2274.95 1728.44,2295.61 1687.11,2274.95 1707.77,2316.27 1666.45,2295.61 \n",
" 1687.11,2254.29 1707.77,2212.96 1728.44,2171.64 1749.1,2130.32 1728.44,2088.99 1707.77,2047.67 1749.1,2027.01 1728.44,1985.68 1707.77,1944.36 1687.11,1903.04 \n",
" 1707.77,1861.71 1728.44,1820.39 1707.77,1779.07 1749.1,1758.41 1790.42,1737.74 1769.76,1779.07 1749.1,1737.74 1790.42,1717.08 1831.74,1696.42 1873.07,1675.76 \n",
" 1914.39,1696.42 1955.71,1675.76 1997.04,1655.1 1976.38,1696.42 2017.7,1675.76 2059.02,1655.1 2100.35,1634.44 2141.67,1655.1 2182.99,1634.44 2224.32,1613.77 \n",
" 2265.64,1634.44 2306.96,1655.1 2327.62,1696.42 2348.29,1737.74 2368.95,1779.07 2389.61,1820.39 2348.29,1841.05 2368.95,1882.38 2327.62,1903.04 2348.29,1944.36 \n",
" 2306.96,1923.7 2327.62,1965.02 2286.3,1944.36 2306.96,1985.68 2327.62,2027.01 2306.96,2068.33 2327.62,2109.65 2286.3,2130.32 2265.64,2171.64 2244.98,2212.96 \n",
" 2224.32,2171.64 2182.99,2192.3 2141.67,2212.96 2100.35,2233.62 2059.02,2254.29 2017.7,2274.95 1976.38,2295.61 1935.05,2274.95 1893.73,2295.61 1852.41,2316.27 \n",
" 1873.07,2274.95 1831.74,2295.61 1790.42,2316.27 1749.1,2336.93 1707.77,2357.59 1687.11,2316.27 1666.45,2274.95 1707.77,2295.61 1749.1,2316.27 1707.77,2336.93 \n",
" 1687.11,2295.61 1666.45,2254.29 1687.11,2212.96 1707.77,2171.64 1728.44,2130.32 1749.1,2088.99 1728.44,2047.67 1707.77,2006.35 1687.11,1965.02 1666.45,1923.7 \n",
" 1687.11,1882.38 1666.45,1841.05 1687.11,1799.73 1707.77,1758.41 1728.44,1717.08 1769.76,1696.42 1811.08,1717.08 1852.41,1696.42 1893.73,1675.76 1935.05,1655.1 \n",
" 1976.38,1634.44 1997.04,1675.76 2038.36,1655.1 2079.68,1634.44 2121.01,1613.77 2162.33,1593.11 2203.65,1613.77 2244.98,1593.11 2286.3,1613.77 2265.64,1655.1 \n",
" 2306.96,1675.76 2327.62,1717.08 2348.29,1758.41 2368.95,1799.73 2389.61,1841.05 2348.29,1861.71 2368.95,1903.04 2327.62,1923.7 2348.29,1965.02 2368.95,2006.35 \n",
" 2348.29,2047.67 2368.95,2088.99 2348.29,2130.32 2306.96,2150.98 2286.3,2192.3 2244.98,2171.64 2203.65,2192.3 2162.33,2212.96 2121.01,2233.62 2079.68,2254.29 \n",
" 2038.36,2274.95 1997.04,2295.61 1955.71,2316.27 1914.39,2336.93 1873.07,2316.27 1893.73,2274.95 1852.41,2295.61 1811.08,2316.27 1769.76,2336.93 1728.44,2357.59 \n",
" 1687.11,2336.93 1645.79,2316.27 1666.45,2357.59 1625.13,2336.93 1666.45,2316.27 1645.79,2274.95 1666.45,2233.62 1687.11,2192.3 1707.77,2150.98 1728.44,2109.65 \n",
" 1707.77,2068.33 1687.11,2027.01 1728.44,2006.35 1707.77,1965.02 1687.11,1923.7 1666.45,1882.38 1687.11,1841.05 1666.45,1799.73 1687.11,1758.41 1728.44,1737.74 \n",
" 1769.76,1717.08 1811.08,1696.42 1852.41,1675.76 1831.74,1717.08 1873.07,1696.42 1914.39,1675.76 1955.71,1655.1 1997.04,1634.44 2038.36,1613.77 2017.7,1655.1 \n",
" 2059.02,1634.44 2038.36,1675.76 2079.68,1655.1 2121.01,1634.44 2162.33,1613.77 2203.65,1634.44 2244.98,1613.77 2286.3,1634.44 2327.62,1655.1 2348.29,1696.42 \n",
" 2368.95,1737.74 2348.29,1779.07 2368.95,1820.39 2389.61,1861.71 2348.29,1882.38 2306.96,1903.04 2327.62,1944.36 2348.29,1985.68 2368.95,2027.01 2348.29,2068.33 \n",
" 2368.95,2109.65 2327.62,2130.32 2286.3,2150.98 2265.64,2192.3 2224.32,2212.96 2182.99,2233.62 2141.67,2254.29 2100.35,2274.95 2059.02,2295.61 2017.7,2316.27 \n",
" 1976.38,2336.93 1935.05,2316.27 1893.73,2336.93 1852.41,2357.59 1811.08,2336.93 1769.76,2316.27 1728.44,2336.93 1687.11,2357.59 1645.79,2336.93 1625.13,2295.61 \n",
" 1645.79,2254.29 1687.11,2233.62 1707.77,2192.3 1687.11,2150.98 1707.77,2109.65 1687.11,2068.33 1707.77,2027.01 1687.11,1985.68 1666.45,1944.36 1645.79,1903.04 \n",
" 1666.45,1861.71 1687.11,1820.39 1728.44,1799.73 1687.11,1779.07 1707.77,1737.74 1749.1,1717.08 1790.42,1696.42 1831.74,1675.76 1873.07,1655.1 1914.39,1634.44 \n",
" 1935.05,1675.76 1976.38,1655.1 2017.7,1634.44 2059.02,1613.77 2100.35,1593.11 2141.67,1613.77 2182.99,1593.11 2224.32,1572.45 2265.64,1593.11 2306.96,1613.77 \n",
" 2348.29,1634.44 2368.95,1675.76 2389.61,1717.08 2410.27,1758.41 2430.93,1799.73 2389.61,1779.07 2410.27,1820.39 2368.95,1841.05 2389.61,1882.38 2348.29,1903.04 \n",
" 2368.95,1944.36 2389.61,1985.68 2348.29,2006.35 2368.95,2047.67 2348.29,2088.99 2368.95,2130.32 2327.62,2150.98 2286.3,2171.64 2244.98,2192.3 2203.65,2212.96 \n",
" 2162.33,2233.62 2121.01,2254.29 2079.68,2274.95 2038.36,2295.61 1997.04,2316.27 1955.71,2336.93 1914.39,2316.27 1873.07,2336.93 1831.74,2357.59 1790.42,2336.93 \n",
" 1749.1,2357.59 1707.77,2378.26 1666.45,2398.92 1645.79,2357.59 1625.13,2316.27 1666.45,2336.93 1645.79,2295.61 1625.13,2254.29 1645.79,2212.96 1666.45,2171.64 \n",
" 1687.11,2130.32 1707.77,2088.99 1687.11,2047.67 1666.45,2006.35 1645.79,1965.02 1625.13,1923.7 1645.79,1882.38 1687.11,1861.71 1666.45,1820.39 1645.79,1779.07 \n",
" 1666.45,1737.74 1707.77,1717.08 1749.1,1696.42 1790.42,1675.76 1831.74,1655.1 1873.07,1634.44 1914.39,1655.1 1955.71,1634.44 1997.04,1613.77 2038.36,1634.44 \n",
" 2079.68,1613.77 2121.01,1593.11 2162.33,1572.45 2203.65,1593.11 2244.98,1572.45 2265.64,1613.77 2306.96,1634.44 2348.29,1655.1 2368.95,1696.42 2389.61,1737.74 \n",
" 2410.27,1779.07 2430.93,1820.39 2410.27,1861.71 2389.61,1903.04 2348.29,1923.7 2368.95,1965.02 2389.61,2006.35 2348.29,2027.01 2368.95,2068.33 2348.29,2109.65 \n",
" 2306.96,2130.32 2265.64,2150.98 2306.96,2171.64 2286.3,2212.96 2244.98,2233.62 2203.65,2254.29 2162.33,2274.95 2121.01,2295.61 2100.35,2254.29 2059.02,2274.95 \n",
" 2017.7,2295.61 1976.38,2316.27 1935.05,2336.93 1893.73,2316.27 1852.41,2336.93 1811.08,2357.59 1769.76,2378.26 1728.44,2398.92 1687.11,2378.26 1645.79,2398.92 \n",
" 1625.13,2357.59 1666.45,2378.26 1625.13,2398.92 1604.47,2357.59 1645.79,2378.26 1604.47,2398.92 1583.8,2357.59 1625.13,2378.26 1604.47,2336.93 1583.8,2295.61 \n",
" 1625.13,2274.95 1645.79,2233.62 1666.45,2192.3 1645.79,2150.98 1687.11,2171.64 1707.77,2130.32 1687.11,2088.99 1666.45,2047.67 1687.11,2006.35 1666.45,1965.02 \n",
" 1645.79,1923.7 1625.13,1882.38 1645.79,1841.05 1625.13,1799.73 1666.45,1779.07 1687.11,1737.74 1707.77,1696.42 1749.1,1675.76 1790.42,1655.1 1831.74,1634.44 \n",
" 1811.08,1675.76 1852.41,1655.1 1893.73,1634.44 1935.05,1613.77 1976.38,1593.11 2017.7,1613.77 2059.02,1593.11 2100.35,1613.77 2141.67,1593.11 2182.99,1572.45 \n",
" 2224.32,1593.11 2265.64,1572.45 2306.96,1593.11 2327.62,1634.44 2348.29,1675.76 2368.95,1717.08 2389.61,1758.41 2410.27,1799.73 2430.93,1841.05 2410.27,1882.38 \n",
" 2368.95,1861.71 2410.27,1841.05 2430.93,1882.38 2410.27,1923.7 2389.61,1965.02 2368.95,1923.7 2410.27,1944.36 2430.93,1985.68 2410.27,2027.01 2389.61,2068.33 \n",
" 2410.27,2109.65 2389.61,2150.98 2348.29,2171.64 2306.96,2192.3 2265.64,2212.96 2224.32,2233.62 2182.99,2254.29 2141.67,2274.95 2100.35,2295.61 2059.02,2316.27 \n",
" 2017.7,2336.93 1976.38,2357.59 1935.05,2378.26 1893.73,2357.59 1852.41,2378.26 1831.74,2336.93 1790.42,2357.59 1749.1,2378.26 1707.77,2398.92 1666.45,2419.58 \n",
" 1625.13,2440.24 1583.8,2419.58 1604.47,2378.26 1583.8,2336.93 1604.47,2295.61 1583.8,2254.29 1625.13,2233.62 1666.45,2212.96 1645.79,2171.64 1666.45,2130.32 \n",
" 1645.79,2088.99 1687.11,2109.65 1666.45,2068.33 1645.79,2027.01 1666.45,1985.68 1645.79,1944.36 1625.13,1903.04 1645.79,1861.71 1625.13,1820.39 1604.47,1779.07 \n",
" 1645.79,1758.41 1666.45,1717.08 1687.11,1675.76 1728.44,1696.42 1769.76,1675.76 1811.08,1655.1 1852.41,1634.44 1893.73,1655.1 1935.05,1634.44 1976.38,1613.77 \n",
" 2017.7,1593.11 2059.02,1572.45 2100.35,1551.79 2079.68,1593.11 2121.01,1572.45 2162.33,1551.79 2203.65,1572.45 2244.98,1551.79 2286.3,1572.45 2327.62,1593.11 \n",
" 2368.95,1613.77 2389.61,1655.1 2410.27,1696.42 2430.93,1737.74 2451.59,1779.07 2472.26,1820.39 2451.59,1861.71 2430.93,1903.04 2389.61,1923.7 2410.27,1965.02 \n",
" 2368.95,1985.68 2389.61,2027.01 2410.27,2068.33 2389.61,2109.65 2368.95,2150.98 2327.62,2171.64 2306.96,2212.96 2265.64,2233.62 2224.32,2254.29 2182.99,2274.95 \n",
" 2203.65,2233.62 2162.33,2254.29 2121.01,2274.95 2079.68,2295.61 2038.36,2316.27 1997.04,2336.93 1955.71,2357.59 1914.39,2378.26 1873.07,2357.59 1831.74,2378.26 \n",
" 1790.42,2398.92 1769.76,2357.59 1728.44,2378.26 1687.11,2398.92 1645.79,2419.58 1604.47,2440.24 1583.8,2398.92 1625.13,2419.58 1583.8,2440.24 1563.14,2398.92 \n",
" 1604.47,2419.58 1583.8,2378.26 1563.14,2336.93 1604.47,2316.27 1583.8,2274.95 1604.47,2233.62 1625.13,2192.3 1604.47,2150.98 1645.79,2130.32 1666.45,2088.99 \n",
" 1645.79,2047.67 1625.13,2006.35 1666.45,2027.01 1645.79,1985.68 1625.13,1944.36 1604.47,1903.04 1625.13,1861.71 1645.79,1820.39 1625.13,1779.07 1666.45,1758.41 \n",
" 1687.11,1717.08 1707.77,1675.76 1749.1,1655.1 1790.42,1634.44 1831.74,1613.77 1873.07,1593.11 1914.39,1613.77 1955.71,1593.11 1997.04,1572.45 2038.36,1593.11 \n",
" 2079.68,1572.45 2121.01,1551.79 2162.33,1531.13 2141.67,1572.45 2182.99,1551.79 2224.32,1531.13 2265.64,1551.79 2286.3,1593.11 2327.62,1613.77 2368.95,1634.44 \n",
" 2389.61,1675.76 2410.27,1717.08 2430.93,1758.41 2451.59,1799.73 2472.26,1841.05 2430.93,1861.71 2410.27,1903.04 2389.61,1944.36 2410.27,1985.68 2430.93,2027.01 \n",
" 2389.61,2047.67 2410.27,2088.99 2389.61,2130.32 2348.29,2150.98 2327.62,2192.3 2306.96,2233.62 2265.64,2254.29 2224.32,2274.95 2182.99,2295.61 2141.67,2316.27 \n",
" 2100.35,2336.93 2059.02,2357.59 2079.68,2316.27 2038.36,2336.93 1997.04,2357.59 1955.71,2378.26 1914.39,2357.59 1873.07,2378.26 1831.74,2398.92 1790.42,2378.26 \n",
" 1749.1,2398.92 1707.77,2419.58 1666.45,2440.24 1625.13,2460.9 1583.8,2481.56 1563.14,2440.24 1542.48,2398.92 1563.14,2357.59 1583.8,2316.27 1604.47,2274.95 \n",
" 1583.8,2233.62 1625.13,2212.96 1604.47,2171.64 1645.79,2192.3 1666.45,2150.98 1645.79,2109.65 1625.13,2068.33 1604.47,2027.01 1645.79,2006.35 1625.13,1965.02 \n",
" 1604.47,1923.7 1583.8,1882.38 1604.47,1841.05 1583.8,1799.73 1604.47,1758.41 1645.79,1737.74 1666.45,1696.42 1687.11,1655.1 1728.44,1675.76 1769.76,1655.1 \n",
" 1811.08,1634.44 1852.41,1613.77 1893.73,1593.11 1935.05,1572.45 1955.71,1613.77 1997.04,1593.11 2038.36,1572.45 2079.68,1551.79 2121.01,1531.13 2100.35,1572.45 \n",
" 2141.67,1551.79 2182.99,1531.13 2224.32,1551.79 2265.64,1531.13 2306.96,1551.79 2348.29,1572.45 2389.61,1593.11 2348.29,1613.77 2368.95,1655.1 2389.61,1696.42 \n",
" 2410.27,1737.74 2430.93,1779.07 2451.59,1820.39 2472.26,1861.71 2451.59,1903.04 2430.93,1944.36 2451.59,1985.68 2410.27,2006.35 2430.93,2047.67 2451.59,2088.99 \n",
" 2430.93,2130.32 2410.27,2171.64 2368.95,2192.3 2327.62,2212.96 2286.3,2233.62 2244.98,2254.29 2203.65,2274.95 2162.33,2295.61 2121.01,2316.27 2079.68,2336.93 \n",
" 2038.36,2357.59 1997.04,2378.26 1955.71,2398.92 1935.05,2357.59 1893.73,2378.26 1852.41,2398.92 1811.08,2378.26 1769.76,2398.92 1728.44,2419.58 1687.11,2440.24 \n",
" 1645.79,2460.9 1604.47,2481.56 1563.14,2460.9 1542.48,2419.58 1563.14,2378.26 1542.48,2336.93 1563.14,2295.61 1542.48,2254.29 1563.14,2212.96 1604.47,2192.3 \n",
" 1625.13,2150.98 1604.47,2109.65 1583.8,2068.33 1625.13,2047.67 1604.47,2006.35 1583.8,1965.02 1625.13,1985.68 1604.47,1944.36 1583.8,1903.04 1604.47,1861.71 \n",
" 1583.8,1820.39 1625.13,1841.05 1645.79,1799.73 1625.13,1758.41 1645.79,1717.08 1687.11,1696.42 1707.77,1655.1 1749.1,1634.44 1790.42,1613.77 1831.74,1593.11 \n",
" 1873.07,1613.77 1914.39,1593.11 1955.71,1572.45 1997.04,1551.79 2038.36,1531.13 2017.7,1572.45 2059.02,1551.79 2100.35,1531.13 2141.67,1510.47 2182.99,1489.8 \n",
" 2203.65,1531.13 2244.98,1510.47 2286.3,1531.13 2306.96,1572.45 2348.29,1593.11 2389.61,1613.77 2410.27,1655.1 2430.93,1696.42 2451.59,1737.74 2472.26,1779.07 \n",
" 2492.92,1820.39 2451.59,1841.05 2472.26,1882.38 2451.59,1923.7 2430.93,1965.02 2451.59,2006.35 2472.26,2047.67 2430.93,2068.33 2389.61,2088.99 2410.27,2130.32 \n",
" 2389.61,2171.64 2348.29,2192.3 2327.62,2233.62 2286.3,2254.29 2244.98,2274.95 2203.65,2295.61 2162.33,2316.27 2121.01,2336.93 2141.67,2295.61 2100.35,2316.27 \n",
" 2059.02,2336.93 2017.7,2357.59 1976.38,2378.26 1935.05,2398.92 1893.73,2419.58 1852.41,2440.24 1873.07,2398.92 1831.74,2419.58 1790.42,2440.24 1811.08,2398.92 \n",
" 1769.76,2419.58 1728.44,2440.24 1687.11,2419.58 1645.79,2440.24 1604.47,2460.9 1563.14,2481.56 1542.48,2440.24 1583.8,2460.9 1563.14,2419.58 1542.48,2378.26 \n",
" 1521.82,2336.93 1563.14,2316.27 1542.48,2274.95 1563.14,2233.62 1604.47,2212.96 1625.13,2171.64 1604.47,2130.32 1625.13,2088.99 1666.45,2109.65 1645.79,2068.33 \n",
" 1625.13,2027.01 1604.47,1985.68 1583.8,1944.36 1563.14,1903.04 1604.47,1882.38 1583.8,1841.05 1604.47,1799.73 1583.8,1758.41 1625.13,1737.74 1645.79,1696.42 \n",
" 1666.45,1655.1 1707.77,1634.44 1749.1,1613.77 1728.44,1655.1 1769.76,1634.44 1811.08,1613.77 1852.41,1593.11 1893.73,1613.77 1935.05,1593.11 1976.38,1572.45 \n",
" 2017.7,1551.79 2059.02,1531.13 2100.35,1510.47 2141.67,1531.13 2182.99,1510.47 2203.65,1551.79 2244.98,1531.13 2286.3,1551.79 2327.62,1572.45 2368.95,1593.11 \n",
" 2389.61,1634.44 2410.27,1675.76 2430.93,1717.08 2451.59,1758.41 2472.26,1799.73 2492.92,1841.05 2513.58,1882.38 2472.26,1903.04 2430.93,1923.7 2451.59,1965.02 \n",
" 2430.93,2006.35 2410.27,2047.67 2430.93,2088.99 2451.59,2130.32 2410.27,2150.98 2368.95,2171.64 2348.29,2212.96 2327.62,2254.29 2286.3,2274.95 2244.98,2295.61 \n",
" 2203.65,2316.27 2162.33,2336.93 2121.01,2357.59 2079.68,2378.26 2038.36,2398.92 1997.04,2419.58 2017.7,2378.26 1976.38,2398.92 1935.05,2419.58 1893.73,2398.92 \n",
" 1852.41,2419.58 1811.08,2440.24 1769.76,2460.9 1749.1,2419.58 1707.77,2440.24 1666.45,2460.9 1625.13,2481.56 1583.8,2502.23 1542.48,2481.56 1521.82,2440.24 \n",
" 1501.16,2398.92 1521.82,2357.59 1542.48,2316.27 1563.14,2274.95 1604.47,2254.29 1583.8,2212.96 1563.14,2171.64 1583.8,2130.32 1625.13,2109.65 1604.47,2068.33 \n",
" 1583.8,2027.01 1563.14,1985.68 1604.47,1965.02 1583.8,1923.7 1563.14,1882.38 1542.48,1841.05 1583.8,1861.71 1604.47,1820.39 1583.8,1779.07 1604.47,1737.74 \n",
" 1625.13,1696.42 1666.45,1675.76 1687.11,1634.44 1728.44,1613.77 1769.76,1593.11 1811.08,1572.45 1852.41,1551.79 1893.73,1572.45 1935.05,1551.79 1976.38,1531.13 \n",
" 2017.7,1510.47 2038.36,1551.79 2079.68,1531.13 2121.01,1510.47 2162.33,1489.8 2203.65,1510.47 2244.98,1489.8 2286.3,1510.47 2327.62,1531.13 2368.95,1551.79 \n",
" 2410.27,1572.45 2430.93,1613.77 2451.59,1655.1 2410.27,1634.44 2430.93,1675.76 2451.59,1717.08 2472.26,1758.41 2492.92,1799.73 2513.58,1841.05 2492.92,1882.38 \n",
" 2472.26,1923.7 2451.59,1882.38 2492.92,1903.04 2472.26,1944.36 2492.92,1985.68 2472.26,2027.01 2451.59,2068.33 2430.93,2109.65 2451.59,2150.98 2430.93,2192.3 \n",
" 2389.61,2212.96 2348.29,2233.62 2306.96,2254.29 2265.64,2274.95 2224.32,2295.61 2182.99,2316.27 2141.67,2336.93 2100.35,2357.59 2059.02,2378.26 2017.7,2398.92 \n",
" 1976.38,2419.58 1935.05,2440.24 1914.39,2398.92 1873.07,2419.58 1831.74,2440.24 1790.42,2419.58 1749.1,2440.24 1707.77,2460.9 1666.45,2481.56 1625.13,2502.23 \n",
" 1583.8,2522.89 1542.48,2502.23 1521.82,2460.9 1501.16,2419.58 1521.82,2378.26 1501.16,2336.93 1542.48,2357.59 1521.82,2316.27 1501.16,2274.95 1542.48,2295.61 \n",
" 1563.14,2254.29 1542.48,2212.96 1583.8,2192.3 1563.14,2150.98 1583.8,2109.65 1625.13,2130.32 1604.47,2088.99 1583.8,2047.67 1563.14,2006.35 1542.48,1965.02 \n",
" 1583.8,1985.68 1563.14,1944.36 1542.48,1903.04 1563.14,1861.71 1542.48,1820.39 1563.14,1779.07 1583.8,1737.74 1625.13,1717.08 1645.79,1675.76 1666.45,1634.44 \n",
" 1707.77,1613.77 1749.1,1593.11 1728.44,1634.44 1769.76,1613.77 1811.08,1593.11 1852.41,1572.45 1893.73,1551.79 1935.05,1531.13 1914.39,1572.45 1955.71,1551.79 \n",
" 1997.04,1531.13 2038.36,1510.47 2079.68,1489.8 2121.01,1469.14 2162.33,1448.48 2141.67,1489.8 2182.99,1469.14 2162.33,1510.47 2203.65,1489.8 2244.98,1469.14 \n",
" 2265.64,1510.47 2306.96,1531.13 2348.29,1551.79 2389.61,1572.45 2410.27,1613.77 2430.93,1655.1 2451.59,1696.42 2472.26,1737.74 2492.92,1779.07 2513.58,1820.39 \n",
" 2492.92,1861.71 2513.58,1903.04 2492.92,1944.36 2472.26,1985.68 2451.59,2027.01 2472.26,2068.33 2451.59,2109.65 2430.93,2150.98 2410.27,2192.3 2368.95,2212.96 \n",
" 2348.29,2254.29 2306.96,2274.95 2265.64,2295.61 2224.32,2316.27 2182.99,2336.93 2141.67,2357.59 2100.35,2378.26 2059.02,2398.92 2079.68,2357.59 2038.36,2378.26 \n",
" 1997.04,2398.92 1955.71,2419.58 1914.39,2440.24 1873.07,2460.9 1831.74,2481.56 1790.42,2460.9 1811.08,2419.58 1769.76,2440.24 1728.44,2460.9 1687.11,2481.56 \n",
" 1645.79,2502.23 1604.47,2522.89 1563.14,2502.23 1542.48,2460.9 1521.82,2419.58 1501.16,2378.26 1480.5,2336.93 1501.16,2295.61 1521.82,2254.29 1501.16,2212.96 \n",
" 1542.48,2192.3 1583.8,2171.64 1563.14,2130.32 1583.8,2088.99 1604.47,2047.67 1583.8,2006.35 1563.14,1965.02 1542.48,1923.7 1521.82,1882.38 1501.16,1841.05 \n",
" 1542.48,1861.71 1563.14,1820.39 1542.48,1779.07 1563.14,1737.74 1604.47,1717.08 1625.13,1675.76 1645.79,1634.44 1687.11,1613.77 1728.44,1593.11 1769.76,1572.45 \n",
" 1811.08,1551.79 1790.42,1593.11 1831.74,1572.45 1873.07,1551.79 1914.39,1531.13 1955.71,1510.47 1976.38,1551.79 2017.7,1531.13 2059.02,1510.47 2100.35,1489.8 \n",
" 2141.67,1469.14 2182.99,1448.48 2224.32,1469.14 2265.64,1489.8 2306.96,1510.47 2327.62,1551.79 2368.95,1572.45 2410.27,1593.11 2430.93,1634.44 2451.59,1675.76 \n",
" 2472.26,1717.08 2492.92,1758.41 2513.58,1799.73 2534.24,1841.05 2554.9,1882.38 2513.58,1861.71 2534.24,1903.04 2492.92,1923.7 2451.59,1944.36 2492.92,1965.02 \n",
" 2472.26,2006.35 2451.59,2047.67 2472.26,2088.99 2492.92,2130.32 2472.26,2171.64 2451.59,2212.96 2410.27,2233.62 2368.95,2254.29 2327.62,2274.95 2286.3,2295.61 \n",
" 2244.98,2316.27 2203.65,2336.93 2162.33,2357.59 2121.01,2378.26 2079.68,2398.92 2038.36,2419.58 1997.04,2440.24 1955.71,2460.9 1914.39,2481.56 1893.73,2440.24 \n",
" 1852.41,2460.9 1811.08,2481.56 1769.76,2502.23 1749.1,2460.9 1707.77,2481.56 1666.45,2502.23 1687.11,2460.9 1645.79,2481.56 1604.47,2502.23 1563.14,2522.89 \n",
" 1521.82,2502.23 1501.16,2460.9 1480.5,2419.58 1521.82,2398.92 1501.16,2357.59 1480.5,2316.27 1521.82,2295.61 1501.16,2254.29 1542.48,2233.62 1563.14,2192.3 \n",
" 1583.8,2150.98 1563.14,2109.65 1542.48,2068.33 1563.14,2027.01 1542.48,1985.68 1521.82,1944.36 1563.14,1923.7 1542.48,1882.38 1563.14,1841.05 1542.48,1799.73 \n",
" 1563.14,1758.41 1583.8,1717.08 1604.47,1675.76 1645.79,1655.1 1666.45,1613.77 1707.77,1593.11 1749.1,1572.45 1790.42,1551.79 1831.74,1531.13 1873.07,1510.47 \n",
" 1914.39,1489.8 1893.73,1531.13 1873.07,1572.45 1914.39,1551.79 1955.71,1531.13 1997.04,1510.47 2038.36,1489.8 2079.68,1510.47 2121.01,1489.8 2162.33,1469.14 \n",
" 2203.65,1448.48 2224.32,1489.8 2265.64,1469.14 2306.96,1489.8 2348.29,1510.47 2389.61,1531.13 2430.93,1551.79 2451.59,1593.11 2472.26,1634.44 2492.92,1675.76 \n",
" 2513.58,1717.08 2472.26,1696.42 2492.92,1737.74 2513.58,1779.07 2534.24,1820.39 2554.9,1861.71 2575.56,1903.04 2534.24,1923.7 2513.58,1965.02 2492.92,2006.35 \n",
" 2472.26,1965.02 2513.58,1985.68 2492.92,2027.01 2513.58,2068.33 2492.92,2109.65 2472.26,2150.98 2430.93,2171.64 2389.61,2192.3 2368.95,2233.62 2348.29,2274.95 \n",
" 2306.96,2295.61 2265.64,2316.27 2224.32,2336.93 2182.99,2357.59 2141.67,2378.26 2100.35,2398.92 2059.02,2419.58 2017.7,2440.24 1976.38,2460.9 1935.05,2481.56 \n",
" 1955.71,2440.24 1914.39,2419.58 1873.07,2440.24 1831.74,2460.9 1790.42,2481.56 1749.1,2502.23 1707.77,2522.89 1728.44,2481.56 1687.11,2502.23 1645.79,2522.89 \n",
" 1604.47,2543.55 1563.14,2564.21 1542.48,2522.89 1521.82,2481.56 1501.16,2440.24 1480.5,2398.92 1459.83,2357.59 1439.17,2316.27 1480.5,2295.61 1521.82,2274.95 \n",
" 1501.16,2233.62 1521.82,2192.3 1542.48,2150.98 1521.82,2109.65 1563.14,2088.99 1542.48,2047.67 1521.82,2006.35 1501.16,1965.02 1542.48,1944.36 1521.82,1903.04 \n",
" 1501.16,1861.71 1521.82,1820.39 1563.14,1799.73 1542.48,1758.41 1563.14,1717.08 1604.47,1696.42 1625.13,1655.1 1645.79,1613.77 1687.11,1593.11 1728.44,1572.45 \n",
" 1769.76,1551.79 1811.08,1531.13 1790.42,1572.45 1831.74,1551.79 1873.07,1531.13 1914.39,1510.47 1955.71,1489.8 1997.04,1469.14 1976.38,1510.47 2017.7,1489.8 \n",
" 2059.02,1469.14 2100.35,1448.48 2141.67,1427.82 2182.99,1407.16 2224.32,1427.82 2203.65,1469.14 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2203.65,1469.14 2244.98,1448.48 2286.3,1469.14 2327.62,1489.8 2348.29,1531.13 2389.61,1551.79 2430.93,1572.45 2451.59,1613.77 2472.26,1655.1 2492.92,1696.42 \n",
" 2513.58,1737.74 2534.24,1779.07 2554.9,1820.39 2534.24,1861.71 2554.9,1903.04 2513.58,1923.7 2534.24,1965.02 2513.58,2006.35 2492.92,2047.67 2513.58,2088.99 \n",
" 2472.26,2109.65 2492.92,2150.98 2451.59,2171.64 2430.93,2212.96 2389.61,2233.62 2368.95,2274.95 2327.62,2295.61 2286.3,2316.27 2244.98,2336.93 2203.65,2357.59 \n",
" 2162.33,2378.26 2121.01,2398.92 2079.68,2419.58 2038.36,2440.24 1997.04,2460.9 2017.7,2419.58 1976.38,2440.24 1935.05,2460.9 1893.73,2481.56 1852.41,2502.23 \n",
" 1811.08,2522.89 1769.76,2543.55 1790.42,2502.23 1811.08,2460.9 1769.76,2481.56 1728.44,2502.23 1687.11,2522.89 1645.79,2543.55 1604.47,2564.21 1625.13,2522.89 \n",
" 1583.8,2543.55 1542.48,2564.21 1521.82,2522.89 1501.16,2481.56 1480.5,2440.24 1459.83,2398.92 1480.5,2357.59 1501.16,2316.27 1480.5,2274.95 1459.83,2233.62 \n",
" 1480.5,2192.3 1521.82,2171.64 1542.48,2130.32 1521.82,2088.99 1563.14,2068.33 1542.48,2027.01 1521.82,1985.68 1501.16,1944.36 1480.5,1903.04 1521.82,1923.7 \n",
" 1501.16,1882.38 1521.82,1841.05 1501.16,1799.73 1521.82,1758.41 1542.48,1717.08 1583.8,1696.42 1604.47,1655.1 1625.13,1613.77 1666.45,1593.11 1707.77,1572.45 \n",
" 1749.1,1551.79 1790.42,1531.13 1831.74,1510.47 1873.07,1489.8 1852.41,1531.13 1893.73,1510.47 1935.05,1489.8 1976.38,1469.14 2017.7,1448.48 1997.04,1489.8 \n",
" 2038.36,1469.14 2079.68,1448.48 2059.02,1489.8 2100.35,1469.14 2141.67,1448.48 2182.99,1427.82 2224.32,1448.48 2265.64,1427.82 2306.96,1448.48 2286.3,1489.8 \n",
" 2327.62,1510.47 2368.95,1531.13 2410.27,1551.79 2430.93,1593.11 2451.59,1634.44 2472.26,1675.76 2492.92,1717.08 2513.58,1758.41 2534.24,1799.73 2554.9,1841.05 \n",
" 2534.24,1882.38 2554.9,1923.7 2513.58,1944.36 2534.24,1985.68 2513.58,2027.01 2492.92,2068.33 2513.58,2109.65 2472.26,2130.32 2492.92,2171.64 2451.59,2192.3 \n",
" 2410.27,2212.96 2389.61,2254.29 2368.95,2295.61 2327.62,2316.27 2286.3,2336.93 2244.98,2357.59 2203.65,2378.26 2162.33,2398.92 2121.01,2419.58 2079.68,2440.24 \n",
" 2038.36,2460.9 1997.04,2481.56 1955.71,2502.23 1914.39,2522.89 1873.07,2502.23 1893.73,2460.9 1852.41,2481.56 1811.08,2502.23 1769.76,2522.89 1749.1,2481.56 \n",
" 1707.77,2502.23 1666.45,2522.89 1625.13,2543.55 1583.8,2564.21 1542.48,2543.55 1501.16,2522.89 1480.5,2481.56 1459.83,2440.24 1439.17,2398.92 1480.5,2378.26 \n",
" 1459.83,2336.93 1439.17,2295.61 1459.83,2254.29 1480.5,2212.96 1521.82,2233.62 1501.16,2192.3 1542.48,2171.64 1521.82,2130.32 1542.48,2088.99 1563.14,2047.67 \n",
" 1542.48,2006.35 1521.82,1965.02 1501.16,1923.7 1480.5,1882.38 1521.82,1861.71 1501.16,1820.39 1521.82,1779.07 1542.48,1737.74 1563.14,1696.42 1583.8,1655.1 \n",
" 1625.13,1634.44 1645.79,1593.11 1687.11,1572.45 1728.44,1551.79 1769.76,1531.13 1811.08,1510.47 1852.41,1489.8 1893.73,1469.14 1935.05,1448.48 1976.38,1427.82 \n",
" 1955.71,1469.14 1935.05,1510.47 1976.38,1489.8 2017.7,1469.14 2059.02,1448.48 2100.35,1427.82 2079.68,1469.14 2121.01,1448.48 2162.33,1427.82 2203.65,1407.16 \n",
" 2244.98,1427.82 2286.3,1448.48 2327.62,1469.14 2368.95,1489.8 2410.27,1510.47 2451.59,1531.13 2472.26,1572.45 2492.92,1613.77 2513.58,1655.1 2534.24,1696.42 \n",
" 2554.9,1737.74 2575.56,1779.07 2534.24,1758.41 2554.9,1799.73 2575.56,1841.05 2596.23,1882.38 2575.56,1923.7 2534.24,1944.36 2554.9,1985.68 2534.24,2027.01 \n",
" 2554.9,2068.33 2513.58,2047.67 2492.92,2088.99 2513.58,2130.32 2534.24,2171.64 2492.92,2192.3 2472.26,2233.62 2430.93,2254.29 2389.61,2274.95 2348.29,2295.61 \n",
" 2306.96,2316.27 2265.64,2336.93 2224.32,2357.59 2182.99,2378.26 2141.67,2398.92 2100.35,2419.58 2059.02,2440.24 2017.7,2460.9 1976.38,2481.56 1935.05,2502.23 \n",
" 1914.39,2460.9 1873.07,2481.56 1831.74,2502.23 1790.42,2522.89 1749.1,2543.55 1707.77,2564.21 1728.44,2522.89 1687.11,2543.55 1645.79,2564.21 1604.47,2584.87 \n",
" 1563.14,2605.54 1521.82,2584.87 1501.16,2543.55 1480.5,2502.23 1459.83,2460.9 1439.17,2419.58 1459.83,2378.26 1439.17,2336.93 1459.83,2295.61 1480.5,2254.29 \n",
" 1459.83,2212.96 1480.5,2171.64 1521.82,2150.98 1542.48,2109.65 1521.82,2068.33 1501.16,2027.01 1480.5,1985.68 1459.83,1944.36 1439.17,1903.04 1480.5,1923.7 \n",
" 1459.83,1882.38 1501.16,1903.04 1480.5,1861.71 1459.83,1820.39 1480.5,1779.07 1521.82,1799.73 1501.16,1758.41 1521.82,1717.08 1542.48,1675.76 1563.14,1634.44 \n",
" 1604.47,1613.77 1625.13,1572.45 1666.45,1551.79 1707.77,1531.13 1749.1,1510.47 1790.42,1489.8 1831.74,1469.14 1852.41,1510.47 1893.73,1489.8 1935.05,1469.14 \n",
" 1976.38,1448.48 2017.7,1427.82 2059.02,1407.16 2038.36,1448.48 2079.68,1427.82 2121.01,1407.16 2162.33,1386.5 2203.65,1365.83 2224.32,1407.16 2265.64,1386.5 \n",
" 2286.3,1427.82 2306.96,1469.14 2348.29,1489.8 2389.61,1510.47 2430.93,1531.13 2451.59,1572.45 2472.26,1613.77 2492.92,1655.1 2513.58,1696.42 2534.24,1737.74 \n",
" 2554.9,1779.07 2575.56,1820.39 2596.23,1861.71 2616.89,1903.04 2575.56,1882.38 2596.23,1923.7 2554.9,1944.36 2575.56,1985.68 2534.24,2006.35 2554.9,2047.67 \n",
" 2534.24,2088.99 2554.9,2130.32 2513.58,2150.98 2534.24,2192.3 2492.92,2212.96 2451.59,2233.62 2410.27,2254.29 2389.61,2295.61 2348.29,2316.27 2306.96,2336.93 \n",
" 2265.64,2357.59 2224.32,2378.26 2182.99,2398.92 2141.67,2419.58 2100.35,2440.24 2059.02,2460.9 2017.7,2481.56 1976.38,2502.23 1935.05,2522.89 1955.71,2481.56 \n",
" 1914.39,2502.23 1873.07,2522.89 1831.74,2543.55 1790.42,2564.21 1749.1,2584.87 1728.44,2543.55 1687.11,2564.21 1645.79,2584.87 1666.45,2543.55 1625.13,2564.21 \n",
" 1583.8,2584.87 1563.14,2543.55 1521.82,2564.21 1480.5,2543.55 1501.16,2502.23 1480.5,2460.9 1459.83,2419.58 1439.17,2378.26 1418.51,2336.93 1459.83,2316.27 \n",
" 1439.17,2274.95 1418.51,2233.62 1439.17,2192.3 1459.83,2150.98 1501.16,2130.32 1480.5,2088.99 1501.16,2047.67 1480.5,2006.35 1521.82,2027.01 1501.16,1985.68 \n",
" 1480.5,1944.36 1459.83,1903.04 1439.17,1861.71 1480.5,1841.05 1459.83,1799.73 1501.16,1779.07 1521.82,1737.74 1542.48,1696.42 1583.8,1675.76 1604.47,1634.44 \n",
" 1625.13,1593.11 1666.45,1572.45 1707.77,1551.79 1749.1,1531.13 1790.42,1510.47 1831.74,1489.8 1873.07,1469.14 1914.39,1448.48 1955.71,1427.82 1997.04,1448.48 \n",
" 2038.36,1427.82 2079.68,1407.16 2121.01,1427.82 2162.33,1407.16 2203.65,1427.82 2244.98,1407.16 2265.64,1448.48 2306.96,1427.82 2348.29,1448.48 2389.61,1469.14 \n",
" 2368.95,1510.47 2410.27,1531.13 2451.59,1551.79 2472.26,1593.11 2492.92,1634.44 2513.58,1675.76 2534.24,1717.08 2554.9,1758.41 2575.56,1799.73 2596.23,1841.05 \n",
" 2616.89,1882.38 2575.56,1861.71 2596.23,1903.04 2575.56,1944.36 2596.23,1985.68 2554.9,2006.35 2534.24,2047.67 2554.9,2088.99 2534.24,2130.32 2513.58,2171.64 \n",
" 2472.26,2192.3 2492.92,2233.62 2451.59,2254.29 2410.27,2274.95 2389.61,2316.27 2348.29,2336.93 2306.96,2357.59 2265.64,2378.26 2224.32,2398.92 2182.99,2419.58 \n",
" 2141.67,2440.24 2100.35,2460.9 2059.02,2481.56 2017.7,2502.23 1976.38,2522.89 1935.05,2543.55 1893.73,2522.89 1852.41,2543.55 1811.08,2564.21 1831.74,2522.89 \n",
" 1790.42,2543.55 1749.1,2522.89 1707.77,2543.55 1666.45,2564.21 1625.13,2584.87 1583.8,2605.54 1542.48,2584.87 1521.82,2543.55 1480.5,2522.89 1459.83,2481.56 \n",
" 1439.17,2440.24 1418.51,2398.92 1439.17,2357.59 1418.51,2316.27 1397.85,2274.95 1439.17,2254.29 1480.5,2233.62 1521.82,2212.96 1501.16,2171.64 1480.5,2130.32 \n",
" 1501.16,2088.99 1521.82,2047.67 1501.16,2006.35 1480.5,1965.02 1459.83,1923.7 1439.17,1882.38 1459.83,1841.05 1480.5,1799.73 1459.83,1758.41 1501.16,1737.74 \n",
" 1521.82,1696.42 1563.14,1675.76 1583.8,1634.44 1604.47,1593.11 1645.79,1572.45 1687.11,1551.79 1728.44,1531.13 1769.76,1510.47 1811.08,1489.8 1852.41,1469.14 \n",
" 1893.73,1448.48 1935.05,1427.82 1914.39,1469.14 1955.71,1448.48 1997.04,1427.82 2038.36,1407.16 2079.68,1386.5 2059.02,1427.82 2100.35,1407.16 2141.67,1386.5 \n",
" 2182.99,1365.83 2224.32,1386.5 2265.64,1407.16 2306.96,1386.5 2327.62,1427.82 2348.29,1469.14 2389.61,1489.8 2430.93,1510.47 2472.26,1531.13 2492.92,1572.45 \n",
" 2513.58,1613.77 2534.24,1655.1 2554.9,1696.42 2575.56,1737.74 2596.23,1779.07 2616.89,1820.39 2637.55,1861.71 2658.21,1903.04 2616.89,1923.7 2596.23,1965.02 \n",
" 2575.56,2006.35 2554.9,1965.02 2596.23,1944.36 2616.89,1985.68 2575.56,1965.02 2596.23,2006.35 2554.9,2027.01 2534.24,2068.33 2554.9,2109.65 2534.24,2150.98 \n",
" 2513.58,2192.3 2472.26,2212.96 2430.93,2233.62 2451.59,2274.95 2410.27,2295.61 2368.95,2316.27 2327.62,2336.93 2286.3,2357.59 2244.98,2378.26 2203.65,2398.92 \n",
" 2162.33,2419.58 2121.01,2440.24 2079.68,2460.9 2038.36,2481.56 1997.04,2502.23 1955.71,2522.89 1914.39,2543.55 1893.73,2502.23 1852.41,2522.89 1811.08,2543.55 \n",
" 1769.76,2564.21 1728.44,2584.87 1687.11,2605.54 1645.79,2626.2 1666.45,2584.87 1625.13,2605.54 1583.8,2626.2 1563.14,2584.87 1521.82,2605.54 1501.16,2564.21 \n",
" 1459.83,2543.55 1439.17,2502.23 1418.51,2460.9 1397.85,2419.58 1418.51,2378.26 1397.85,2336.93 1418.51,2295.61 1459.83,2274.95 1439.17,2233.62 1459.83,2192.3 \n",
" 1480.5,2150.98 1501.16,2109.65 1480.5,2068.33 1459.83,2027.01 1439.17,1985.68 1418.51,1944.36 1459.83,1965.02 1439.17,1923.7 1418.51,1882.38 1459.83,1861.71 \n",
" 1480.5,1820.39 1459.83,1779.07 1480.5,1737.74 1501.16,1696.42 1521.82,1655.1 1542.48,1613.77 1583.8,1593.11 1604.47,1551.79 1645.79,1531.13 1687.11,1510.47 \n",
" 1728.44,1489.8 1769.76,1469.14 1811.08,1448.48 1852.41,1427.82 1893.73,1407.16 1873.07,1448.48 1914.39,1427.82 1955.71,1407.16 1997.04,1386.5 2038.36,1365.83 \n",
" 2017.7,1407.16 2059.02,1386.5 2100.35,1365.83 2141.67,1345.17 2121.01,1386.5 2162.33,1365.83 2141.67,1407.16 2182.99,1386.5 2224.32,1365.83 2265.64,1345.17 \n",
" 2286.3,1386.5 2327.62,1407.16 2368.95,1427.82 2410.27,1448.48 2430.93,1489.8 2472.26,1510.47 2492.92,1551.79 2513.58,1593.11 2534.24,1634.44 2554.9,1675.76 \n",
" 2575.56,1717.08 2596.23,1758.41 2616.89,1799.73 2637.55,1841.05 2596.23,1820.39 2616.89,1861.71 2637.55,1903.04 2616.89,1944.36 2637.55,1985.68 2616.89,2027.01 \n",
" 2575.56,2047.67 2596.23,2088.99 2575.56,2130.32 2534.24,2109.65 2554.9,2150.98 2575.56,2192.3 2534.24,2212.96 2513.58,2254.29 2472.26,2274.95 2430.93,2295.61 \n",
" 2410.27,2336.93 2368.95,2357.59 2327.62,2378.26 2286.3,2398.92 2244.98,2419.58 2203.65,2440.24 2162.33,2460.9 2121.01,2481.56 2079.68,2502.23 2038.36,2522.89 \n",
" 1997.04,2543.55 1955.71,2564.21 1914.39,2584.87 1893.73,2543.55 1852.41,2564.21 1811.08,2584.87 1769.76,2605.54 1749.1,2564.21 1707.77,2584.87 1666.45,2605.54 \n",
" 1625.13,2626.2 1583.8,2646.86 1604.47,2605.54 1563.14,2626.2 1521.82,2646.86 1501.16,2605.54 1480.5,2564.21 1459.83,2522.89 1439.17,2481.56 1418.51,2440.24 \n",
" 1397.85,2398.92 1418.51,2357.59 1397.85,2316.27 1418.51,2274.95 1397.85,2233.62 1439.17,2212.96 1459.83,2171.64 1501.16,2150.98 1480.5,2109.65 1501.16,2068.33 \n",
" 1480.5,2027.01 1459.83,1985.68 1439.17,1944.36 1418.51,1903.04 1397.85,1861.71 1439.17,1841.05 1418.51,1799.73 1439.17,1758.41 1459.83,1717.08 1480.5,1675.76 \n",
" 1501.16,1634.44 1542.48,1655.1 1563.14,1613.77 1583.8,1572.45 1625.13,1551.79 1666.45,1531.13 1707.77,1510.47 1749.1,1489.8 1790.42,1469.14 1831.74,1448.48 \n",
" 1873.07,1427.82 1914.39,1407.16 1955.71,1386.5 1997.04,1407.16 2038.36,1386.5 2079.68,1365.83 2121.01,1345.17 2100.35,1386.5 2141.67,1365.83 2182.99,1345.17 \n",
" 2203.65,1386.5 2244.98,1365.83 2286.3,1345.17 2327.62,1365.83 2348.29,1407.16 2368.95,1448.48 2410.27,1469.14 2451.59,1489.8 2492.92,1510.47 2472.26,1551.79 \n",
" 2492.92,1593.11 2513.58,1634.44 2534.24,1675.76 2554.9,1717.08 2575.56,1758.41 2596.23,1799.73 2616.89,1841.05 2637.55,1882.38 2658.21,1923.7 2637.55,1965.02 \n",
" 2616.89,2006.35 2575.56,2027.01 2596.23,2068.33 2575.56,2109.65 2596.23,2150.98 2554.9,2171.64 2575.56,2212.96 2534.24,2233.62 2492.92,2254.29 2472.26,2295.61 \n",
" 2430.93,2316.27 2389.61,2336.93 2348.29,2357.59 2306.96,2378.26 2265.64,2398.92 2224.32,2419.58 2182.99,2440.24 2141.67,2460.9 2100.35,2481.56 2059.02,2502.23 \n",
" 2017.7,2522.89 1976.38,2543.55 1935.05,2564.21 1893.73,2584.87 1873.07,2543.55 1831.74,2564.21 1790.42,2584.87 1749.1,2605.54 1728.44,2564.21 1687.11,2584.87 \n",
" 1645.79,2605.54 1604.47,2626.2 1563.14,2646.86 1542.48,2605.54 1501.16,2584.87 1459.83,2564.21 1439.17,2522.89 1418.51,2481.56 1459.83,2502.23 1439.17,2460.9 \n",
" 1418.51,2419.58 1397.85,2378.26 1377.19,2336.93 1397.85,2295.61 1418.51,2254.29 1397.85,2212.96 1418.51,2171.64 1439.17,2130.32 1459.83,2088.99 1480.5,2047.67 \n",
" 1459.83,2006.35 1439.17,1965.02 1418.51,1923.7 1397.85,1882.38 1418.51,1841.05 1439.17,1799.73 1418.51,1758.41 1459.83,1737.74 1501.16,1717.08 1521.82,1675.76 \n",
" 1563.14,1655.1 1583.8,1613.77 1604.47,1572.45 1645.79,1551.79 1687.11,1531.13 1728.44,1510.47 1769.76,1489.8 1811.08,1469.14 1852.41,1448.48 1893.73,1427.82 \n",
" 1935.05,1407.16 1976.38,1386.5 2017.7,1365.83 2059.02,1345.17 2100.35,1324.51 2121.01,1365.83 2162.33,1345.17 2203.65,1324.51 2244.98,1345.17 2286.3,1365.83 \n",
" 2306.96,1407.16 2327.62,1448.48 2368.95,1469.14 2410.27,1489.8 2451.59,1510.47 2492.92,1531.13 2513.58,1572.45 2534.24,1613.77 2554.9,1655.1 2575.56,1696.42 \n",
" 2596.23,1737.74 2616.89,1779.07 2637.55,1820.39 2658.21,1861.71 2678.87,1903.04 2637.55,1923.7 2616.89,1965.02 2637.55,2006.35 2596.23,2027.01 2575.56,2068.33 \n",
" 2596.23,2109.65 2575.56,2150.98 2554.9,2192.3 2513.58,2212.96 2534.24,2254.29 2492.92,2274.95 2451.59,2295.61 2410.27,2316.27 2368.95,2336.93 2327.62,2357.59 \n",
" 2286.3,2378.26 2244.98,2398.92 2203.65,2419.58 2162.33,2440.24 2121.01,2460.9 2079.68,2481.56 2038.36,2502.23 1997.04,2522.89 1955.71,2543.55 1914.39,2564.21 \n",
" 1873.07,2584.87 1831.74,2605.54 1790.42,2626.2 1769.76,2584.87 1728.44,2605.54 1687.11,2626.2 1645.79,2646.86 1604.47,2667.52 1563.14,2688.18 1542.48,2646.86 \n",
" 1501.16,2626.2 1480.5,2584.87 1439.17,2564.21 1418.51,2522.89 1397.85,2481.56 1377.19,2440.24 1356.52,2398.92 1377.19,2357.59 1356.52,2316.27 1377.19,2274.95 \n",
" 1356.52,2233.62 1397.85,2254.29 1418.51,2212.96 1439.17,2171.64 1459.83,2130.32 1439.17,2088.99 1459.83,2047.67 1439.17,2006.35 1418.51,1965.02 1397.85,1923.7 \n",
" 1377.19,1882.38 1418.51,1861.71 1439.17,1820.39 1418.51,1779.07 1439.17,1737.74 1480.5,1717.08 1501.16,1675.76 1521.82,1634.44 1542.48,1593.11 1563.14,1551.79 \n",
" 1604.47,1531.13 1645.79,1510.47 1687.11,1489.8 1728.44,1469.14 1769.76,1448.48 1811.08,1427.82 1852.41,1407.16 1893.73,1386.5 1935.05,1365.83 1976.38,1345.17 \n",
" 2017.7,1324.51 1997.04,1365.83 1976.38,1407.16 2017.7,1386.5 2059.02,1365.83 2100.35,1345.17 2141.67,1324.51 2182.99,1303.85 2203.65,1345.17 2244.98,1324.51 \n",
" 2265.64,1365.83 2286.3,1407.16 2327.62,1386.5 2348.29,1427.82 2389.61,1448.48 2430.93,1469.14 2472.26,1489.8 2513.58,1510.47 2534.24,1551.79 2554.9,1593.11 \n",
" 2575.56,1634.44 2596.23,1675.76 2616.89,1717.08 2637.55,1758.41 2658.21,1799.73 2678.87,1841.05 2658.21,1882.38 2678.87,1923.7 2637.55,1944.36 2658.21,1985.68 \n",
" 2637.55,2027.01 2596.23,2047.67 2575.56,2088.99 2596.23,2130.32 2575.56,2171.64 2554.9,2212.96 2513.58,2233.62 2472.26,2254.29 2430.93,2274.95 2451.59,2316.27 \n",
" 2430.93,2357.59 2389.61,2378.26 2348.29,2398.92 2306.96,2419.58 2265.64,2440.24 2224.32,2460.9 2182.99,2481.56 2141.67,2502.23 2100.35,2522.89 2059.02,2543.55 \n",
" 2017.7,2564.21 1976.38,2584.87 1935.05,2605.54 1893.73,2626.2 1852.41,2605.54 1873.07,2564.21 1831.74,2584.87 1790.42,2605.54 1749.1,2626.2 1707.77,2605.54 \n",
" 1666.45,2626.2 1625.13,2646.86 1583.8,2667.52 1542.48,2688.18 1501.16,2667.52 1480.5,2626.2 1459.83,2584.87 1439.17,2543.55 1418.51,2502.23 1397.85,2460.9 \n",
" 1377.19,2419.58 1356.52,2378.26 1397.85,2357.59 1377.19,2316.27 1356.52,2274.95 1377.19,2233.62 1397.85,2192.3 1418.51,2150.98 1439.17,2109.65 1459.83,2068.33 \n",
" 1439.17,2027.01 1418.51,1985.68 1397.85,1944.36 1377.19,1903.04 1356.52,1861.71 1397.85,1841.05 1377.19,1799.73 1418.51,1820.39 1439.17,1779.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1439.17,1779.07 1418.51,1737.74 1439.17,1696.42 1459.83,1655.1 1480.5,1613.77 1521.82,1593.11 1563.14,1572.45 1583.8,1531.13 1625.13,1510.47 1666.45,1489.8 \n",
" 1707.77,1469.14 1749.1,1448.48 1790.42,1427.82 1831.74,1407.16 1873.07,1386.5 1914.39,1365.83 1955.71,1345.17 1935.05,1386.5 1976.38,1365.83 2017.7,1345.17 \n",
" 2059.02,1324.51 2100.35,1303.85 2079.68,1345.17 2121.01,1324.51 2162.33,1303.85 2203.65,1283.19 2224.32,1324.51 2265.64,1303.85 2306.96,1324.51 2348.29,1345.17 \n",
" 2368.95,1386.5 2389.61,1427.82 2430.93,1448.48 2472.26,1469.14 2513.58,1489.8 2534.24,1531.13 2554.9,1572.45 2513.58,1551.79 2534.24,1593.11 2554.9,1634.44 \n",
" 2575.56,1675.76 2596.23,1717.08 2616.89,1758.41 2637.55,1799.73 2658.21,1841.05 2678.87,1882.38 2699.53,1923.7 2658.21,1944.36 2678.87,1985.68 2658.21,2027.01 \n",
" 2616.89,2047.67 2637.55,2088.99 2616.89,2130.32 2596.23,2171.64 2616.89,2212.96 2575.56,2233.62 2554.9,2274.95 2513.58,2295.61 2472.26,2316.27 2430.93,2336.93 \n",
" 2389.61,2357.59 2348.29,2378.26 2306.96,2398.92 2265.64,2419.58 2224.32,2440.24 2182.99,2460.9 2141.67,2481.56 2100.35,2502.23 2059.02,2522.89 2017.7,2543.55 \n",
" 1976.38,2564.21 1935.05,2584.87 1893.73,2564.21 1852.41,2584.87 1811.08,2605.54 1769.76,2626.2 1728.44,2646.86 1687.11,2667.52 1707.77,2626.2 1666.45,2646.86 \n",
" 1625.13,2667.52 1583.8,2688.18 1604.47,2646.86 1563.14,2667.52 1542.48,2626.2 1501.16,2646.86 1480.5,2605.54 1439.17,2584.87 1418.51,2543.55 1397.85,2502.23 \n",
" 1377.19,2460.9 1356.52,2419.58 1397.85,2440.24 1377.19,2398.92 1356.52,2357.59 1335.86,2316.27 1377.19,2295.61 1356.52,2254.29 1377.19,2212.96 1418.51,2192.3 \n",
" 1439.17,2150.98 1459.83,2109.65 1439.17,2068.33 1418.51,2027.01 1397.85,1985.68 1377.19,1944.36 1397.85,1903.04 1377.19,1861.71 1397.85,1820.39 1377.19,1779.07 \n",
" 1397.85,1737.74 1439.17,1717.08 1480.5,1696.42 1501.16,1655.1 1542.48,1634.44 1563.14,1593.11 1583.8,1551.79 1625.13,1531.13 1666.45,1510.47 1707.77,1489.8 \n",
" 1749.1,1469.14 1790.42,1448.48 1831.74,1427.82 1873.07,1407.16 1914.39,1386.5 1955.71,1365.83 1997.04,1345.17 2038.36,1324.51 2079.68,1303.85 2121.01,1283.19 \n",
" 2162.33,1262.53 2141.67,1303.85 2182.99,1324.51 2224.32,1345.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2224.32,1345.17 2265.64,1324.51 2306.96,1345.17 2348.29,1365.83 2368.95,1407.16 2410.27,1427.82 2451.59,1448.48 2492.92,1469.14 2534.24,1489.8 2513.58,1531.13 \n",
" 2492.92,1489.8 2534.24,1510.47 2513.58,1469.14 2554.9,1489.8 2534.24,1448.48 2575.56,1469.14 2554.9,1510.47 2534.24,1469.14 2492.92,1448.48 2451.59,1469.14 \n",
" 2472.26,1427.82 2513.58,1448.48 2554.9,1469.14 2575.56,1510.47 2554.9,1551.79 2575.56,1593.11 2534.24,1572.45 2554.9,1613.77 2575.56,1655.1 2596.23,1696.42 \n",
" 2616.89,1737.74 2637.55,1779.07 2658.21,1820.39 2678.87,1861.71 2699.53,1903.04 2678.87,1944.36 2699.53,1985.68 2658.21,2006.35 2637.55,2047.67 2616.89,2088.99 \n",
" 2637.55,2130.32 2616.89,2171.64 2596.23,2212.96 2554.9,2233.62 2534.24,2274.95 2492.92,2295.61 2472.26,2336.93 2451.59,2378.26 2410.27,2357.59 2368.95,2378.26 \n",
" 2327.62,2398.92 2286.3,2419.58 2244.98,2440.24 2203.65,2460.9 2162.33,2481.56 2121.01,2502.23 2079.68,2522.89 2038.36,2543.55 1997.04,2564.21 1955.71,2584.87 \n",
" 1914.39,2605.54 1873.07,2626.2 1831.74,2646.86 1790.42,2667.52 1811.08,2626.2 1769.76,2646.86 1728.44,2626.2 1687.11,2646.86 1645.79,2667.52 1604.47,2688.18 \n",
" 1563.14,2708.84 1542.48,2667.52 1521.82,2626.2 1480.5,2646.86 1459.83,2605.54 1418.51,2584.87 1397.85,2543.55 1377.19,2502.23 1356.52,2460.9 1335.86,2419.58 \n",
" 1315.2,2378.26 1335.86,2336.93 1356.52,2295.61 1377.19,2254.29 1356.52,2212.96 1377.19,2171.64 1397.85,2130.32 1418.51,2088.99 1439.17,2047.67 1418.51,2006.35 \n",
" 1397.85,1965.02 1377.19,1923.7 1356.52,1882.38 1377.19,1841.05 1397.85,1799.73 1377.19,1758.41 1397.85,1717.08 1418.51,1675.76 1459.83,1696.42 1480.5,1655.1 \n",
" 1501.16,1613.77 1521.82,1572.45 1542.48,1531.13 1583.8,1510.47 1625.13,1489.8 1666.45,1469.14 1707.77,1448.48 1749.1,1427.82 1790.42,1407.16 1831.74,1386.5 \n",
" 1873.07,1365.83 1914.39,1345.17 1955.71,1324.51 1997.04,1303.85 2038.36,1283.19 2079.68,1262.53 2059.02,1303.85 2038.36,1345.17 2079.68,1324.51 2121.01,1303.85 \n",
" 2162.33,1324.51 2203.65,1303.85 2244.98,1283.19 2286.3,1303.85 2327.62,1324.51 2306.96,1365.83 2348.29,1386.5 2389.61,1407.16 2430.93,1427.82 2472.26,1448.48 \n",
" 2513.58,1427.82 2554.9,1448.48 2575.56,1489.8 2554.9,1531.13 2575.56,1572.45 2596.23,1613.77 2616.89,1655.1 2637.55,1696.42 2658.21,1737.74 2678.87,1779.07 \n",
" 2699.53,1820.39 2720.2,1861.71 2740.86,1903.04 2699.53,1882.38 2720.2,1923.7 2699.53,1965.02 2678.87,2006.35 2658.21,2047.67 2616.89,2068.33 2637.55,2109.65 \n",
" 2616.89,2150.98 2596.23,2192.3 2616.89,2233.62 2575.56,2254.29 2554.9,2295.61 2513.58,2316.27 2492.92,2357.59 2451.59,2336.93 2430.93,2378.26 2389.61,2398.92 \n",
" 2348.29,2419.58 2306.96,2440.24 2265.64,2460.9 2224.32,2481.56 2182.99,2502.23 2141.67,2522.89 2100.35,2543.55 2059.02,2564.21 2017.7,2584.87 1976.38,2605.54 \n",
" 1935.05,2626.2 1893.73,2605.54 1852.41,2626.2 1811.08,2646.86 1769.76,2667.52 1728.44,2688.18 1707.77,2646.86 1666.45,2667.52 1625.13,2688.18 1583.8,2708.84 \n",
" 1542.48,2729.51 1521.82,2688.18 1480.5,2667.52 1459.83,2626.2 1418.51,2605.54 1397.85,2564.21 1377.19,2522.89 1356.52,2481.56 1335.86,2440.24 1315.2,2398.92 \n",
" 1335.86,2357.59 1377.19,2378.26 1356.52,2336.93 1335.86,2295.61 1315.2,2254.29 1335.86,2212.96 1377.19,2192.3 1397.85,2150.98 1418.51,2109.65 1397.85,2068.33 \n",
" 1377.19,2027.01 1418.51,2047.67 1397.85,2006.35 1377.19,1965.02 1356.52,1923.7 1335.86,1882.38 1356.52,1841.05 1335.86,1799.73 1377.19,1820.39 1397.85,1779.07 \n",
" 1377.19,1737.74 1418.51,1717.08 1439.17,1675.76 1459.83,1634.44 1480.5,1593.11 1521.82,1613.77 1542.48,1572.45 1563.14,1531.13 1604.47,1510.47 1645.79,1489.8 \n",
" 1687.11,1469.14 1728.44,1448.48 1769.76,1427.82 1811.08,1407.16 1852.41,1386.5 1893.73,1365.83 1935.05,1345.17 1976.38,1324.51 2017.7,1303.85 2059.02,1283.19 \n",
" 2100.35,1262.53 2141.67,1283.19 2182.99,1262.53 2224.32,1283.19 2265.64,1262.53 2244.98,1303.85 2286.3,1324.51 2327.62,1345.17 2368.95,1365.83 2410.27,1386.5 \n",
" 2451.59,1407.16 2492.92,1427.82 2534.24,1407.16 2575.56,1427.82 2596.23,1469.14 2616.89,1510.47 2575.56,1531.13 2596.23,1572.45 2575.56,1613.77 2596.23,1655.1 \n",
" 2616.89,1696.42 2637.55,1737.74 2658.21,1779.07 2678.87,1820.39 2699.53,1861.71 2720.2,1903.04 2699.53,1944.36 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2699.53,1944.36 2720.2,1985.68 2678.87,1965.02 2699.53,2006.35 2678.87,2047.67 2637.55,2068.33 2616.89,2109.65 2637.55,2150.98 2616.89,2192.3 2596.23,2233.62 \n",
" 2554.9,2254.29 2513.58,2274.95 2492.92,2316.27 2472.26,2357.59 2451.59,2398.92 2410.27,2378.26 2368.95,2398.92 2327.62,2419.58 2286.3,2440.24 2244.98,2460.9 \n",
" 2203.65,2481.56 2162.33,2502.23 2121.01,2522.89 2079.68,2543.55 2038.36,2564.21 1997.04,2584.87 1955.71,2605.54 1914.39,2626.2 1873.07,2605.54 1831.74,2626.2 \n",
" 1790.42,2646.86 1749.1,2667.52 1707.77,2688.18 1666.45,2708.84 1625.13,2729.51 1645.79,2688.18 1604.47,2708.84 1563.14,2729.51 1521.82,2708.84 1480.5,2688.18 \n",
" 1459.83,2646.86 1439.17,2605.54 1418.51,2564.21 1397.85,2522.89 1377.19,2481.56 1356.52,2440.24 1335.86,2398.92 1315.2,2357.59 1294.54,2316.27 1315.2,2274.95 \n",
" 1335.86,2233.62 1356.52,2192.3 1397.85,2171.64 1418.51,2130.32 1397.85,2088.99 1377.19,2047.67 1418.51,2068.33 1397.85,2027.01 1377.19,1985.68 1356.52,1944.36 \n",
" 1335.86,1903.04 1315.2,1861.71 1335.86,1820.39 1356.52,1779.07 1397.85,1758.41 1377.19,1717.08 1418.51,1696.42 1459.83,1675.76 1480.5,1634.44 1501.16,1593.11 \n",
" 1521.82,1551.79 1542.48,1510.47 1583.8,1489.8 1625.13,1469.14 1666.45,1448.48 1707.77,1427.82 1749.1,1407.16 1790.42,1386.5 1831.74,1365.83 1873.07,1345.17 \n",
" 1914.39,1324.51 1955.71,1303.85 1997.04,1324.51 2038.36,1303.85 2079.68,1283.19 2121.01,1262.53 2162.33,1283.19 2203.65,1262.53 2224.32,1303.85 2265.64,1283.19 \n",
" 2306.96,1303.85 2348.29,1324.51 2389.61,1345.17 2430.93,1365.83 2410.27,1407.16 2451.59,1427.82 2492.92,1407.16 2534.24,1427.82 2575.56,1448.48 2596.23,1489.8 \n",
" 2616.89,1531.13 2575.56,1551.79 2596.23,1593.11 2616.89,1634.44 2637.55,1675.76 2658.21,1717.08 2678.87,1758.41 2699.53,1799.73 2720.2,1841.05 2740.86,1882.38 \n",
" 2761.52,1923.7 2720.2,1944.36 2740.86,1985.68 2720.2,2027.01 2699.53,2068.33 2658.21,2088.99 2678.87,2130.32 2658.21,2171.64 2637.55,2212.96 2616.89,2254.29 \n",
" 2575.56,2274.95 2534.24,2295.61 2513.58,2336.93 2492.92,2378.26 2451.59,2357.59 2430.93,2398.92 2389.61,2419.58 2348.29,2440.24 2306.96,2460.9 2265.64,2481.56 \n",
" 2224.32,2502.23 2182.99,2522.89 2141.67,2543.55 2100.35,2564.21 2059.02,2584.87 2017.7,2605.54 1976.38,2626.2 1935.05,2646.86 1893.73,2667.52 1852.41,2646.86 \n",
" 1811.08,2667.52 1769.76,2688.18 1749.1,2646.86 1707.77,2667.52 1666.45,2688.18 1625.13,2708.84 1583.8,2729.51 1542.48,2708.84 1521.82,2667.52 1501.16,2708.84 \n",
" 1459.83,2688.18 1439.17,2646.86 1397.85,2626.2 1377.19,2584.87 1356.52,2543.55 1335.86,2502.23 1315.2,2460.9 1294.54,2419.58 1273.88,2378.26 1294.54,2336.93 \n",
" 1315.2,2295.61 1335.86,2254.29 1315.2,2212.96 1335.86,2171.64 1377.19,2150.98 1397.85,2109.65 1377.19,2068.33 1356.52,2027.01 1397.85,2047.67 1377.19,2006.35 \n",
" 1356.52,1965.02 1335.86,1923.7 1315.2,1882.38 1356.52,1903.04 1335.86,1861.71 1356.52,1820.39 1335.86,1779.07 1356.52,1737.74 1377.19,1696.42 1397.85,1655.1 \n",
" 1439.17,1634.44 1459.83,1593.11 1501.16,1572.45 1542.48,1551.79 1563.14,1510.47 1604.47,1489.8 1645.79,1469.14 1687.11,1448.48 1728.44,1427.82 1769.76,1407.16 \n",
" 1811.08,1386.5 1852.41,1365.83 1893.73,1345.17 1935.05,1324.51 1976.38,1303.85 2017.7,1283.19 2059.02,1262.53 2100.35,1283.19 2141.67,1262.53 2182.99,1283.19 \n",
" 2224.32,1262.53 2265.64,1241.86 2286.3,1283.19 2327.62,1303.85 2368.95,1324.51 2389.61,1365.83 2430.93,1386.5 2472.26,1407.16 2513.58,1386.5 2554.9,1407.16 \n",
" 2596.23,1427.82 2616.89,1469.14 2596.23,1510.47 2616.89,1551.79 2637.55,1593.11 2658.21,1634.44 2616.89,1613.77 2637.55,1655.1 2596.23,1634.44 2616.89,1675.76 \n",
" 2637.55,1717.08 2658.21,1758.41 2678.87,1799.73 2699.53,1841.05 2720.2,1882.38 2740.86,1923.7 2720.2,1965.02 2740.86,2006.35 2699.53,2027.01 2678.87,2068.33 \n",
" 2658.21,2109.65 2678.87,2150.98 2637.55,2171.64 2658.21,2212.96 2637.55,2254.29 2596.23,2274.95 2575.56,2316.27 2534.24,2336.93 2513.58,2378.26 2472.26,2398.92 \n",
" 2430.93,2419.58 2389.61,2440.24 2410.27,2398.92 2368.95,2419.58 2327.62,2440.24 2286.3,2460.9 2244.98,2481.56 2203.65,2502.23 2162.33,2522.89 2121.01,2543.55 \n",
" 2079.68,2564.21 2038.36,2584.87 1997.04,2605.54 1955.71,2626.2 1914.39,2646.86 1873.07,2667.52 1831.74,2688.18 1790.42,2708.84 1749.1,2688.18 1707.77,2708.84 \n",
" 1728.44,2667.52 1687.11,2688.18 1645.79,2708.84 1604.47,2729.51 1563.14,2750.17 1521.82,2729.51 1501.16,2688.18 1459.83,2667.52 1439.17,2626.2 1397.85,2605.54 \n",
" 1377.19,2564.21 1356.52,2522.89 1335.86,2481.56 1315.2,2440.24 1294.54,2398.92 1335.86,2378.26 1315.2,2336.93 1294.54,2295.61 1335.86,2274.95 1315.2,2233.62 \n",
" 1335.86,2192.3 1356.52,2150.98 1377.19,2109.65 1356.52,2068.33 1335.86,2027.01 1356.52,1985.68 1335.86,1944.36 1315.2,1903.04 1294.54,1861.71 1335.86,1841.05 \n",
" 1356.52,1799.73 1335.86,1758.41 1356.52,1717.08 1397.85,1696.42 1418.51,1655.1 1439.17,1613.77 1459.83,1572.45 1501.16,1551.79 1521.82,1510.47 1563.14,1489.8 \n",
" 1604.47,1469.14 1645.79,1448.48 1687.11,1427.82 1728.44,1407.16 1769.76,1386.5 1811.08,1365.83 1852.41,1345.17 1893.73,1324.51 1935.05,1303.85 1976.38,1283.19 \n",
" 2017.7,1262.53 2059.02,1241.86 2100.35,1221.2 2141.67,1241.86 2182.99,1221.2 2224.32,1241.86 2265.64,1221.2 2286.3,1262.53 2327.62,1283.19 2368.95,1303.85 \n",
" 2410.27,1324.51 2451.59,1345.17 2472.26,1386.5 2513.58,1407.16 2554.9,1427.82 2596.23,1448.48 2575.56,1407.16 2616.89,1427.82 2596.23,1386.5 2637.55,1407.16 \n",
" 2616.89,1448.48 2596.23,1407.16 2554.9,1386.5 2596.23,1365.83 2616.89,1407.16 2575.56,1386.5 2616.89,1365.83 2658.21,1386.5 2637.55,1427.82 2616.89,1386.5 \n",
" 2575.56,1365.83 2534.24,1386.5 2492.92,1365.83 2451.59,1386.5 2410.27,1365.83 2430.93,1407.16 2389.61,1386.5 2410.27,1345.17 2451.59,1365.83 2492.92,1386.5 \n",
" 2534.24,1365.83 2575.56,1345.17 2616.89,1324.51 2637.55,1365.83 2658.21,1407.16 2637.55,1448.48 2616.89,1489.8 2596.23,1531.13 2616.89,1572.45 2637.55,1613.77 \n",
" 2658.21,1655.1 2678.87,1696.42 2699.53,1737.74 2720.2,1779.07 2740.86,1820.39 2761.52,1861.71 2782.18,1903.04 2761.52,1944.36 2782.18,1985.68 2740.86,1965.02 \n",
" 2720.2,2006.35 2678.87,2027.01 2658.21,2068.33 2678.87,2109.65 2658.21,2150.98 2637.55,2192.3 2658.21,2233.62 2637.55,2274.95 2596.23,2295.61 2554.9,2316.27 \n",
" 2534.24,2357.59 2492.92,2336.93 2472.26,2378.26 2451.59,2419.58 2410.27,2440.24 2368.95,2460.9 2327.62,2481.56 2286.3,2502.23 2244.98,2522.89 2203.65,2543.55 \n",
" 2162.33,2564.21 2121.01,2584.87 2079.68,2605.54 2038.36,2626.2 1997.04,2646.86 1955.71,2667.52 1914.39,2688.18 1893.73,2646.86 1852.41,2667.52 1811.08,2688.18 \n",
" 1769.76,2708.84 1728.44,2729.51 1687.11,2708.84 1645.79,2729.51 1604.47,2750.17 1563.14,2770.83 1521.82,2750.17 1480.5,2729.51 1439.17,2708.84 1418.51,2667.52 \n",
" 1377.19,2646.86 1418.51,2626.2 1397.85,2584.87 1377.19,2543.55 1356.52,2502.23 1335.86,2460.9 1315.2,2419.58 1294.54,2378.26 1273.88,2336.93 1315.2,2316.27 \n",
" 1294.54,2274.95 1273.88,2233.62 1294.54,2192.3 1315.2,2150.98 1356.52,2130.32 1377.19,2088.99 1356.52,2047.67 1335.86,2006.35 1315.2,1965.02 1294.54,1923.7 \n",
" 1273.88,1882.38 1294.54,1841.05 1315.2,1799.73 1294.54,1758.41 1335.86,1737.74 1356.52,1696.42 1397.85,1675.76 1439.17,1655.1 1459.83,1613.77 1480.5,1572.45 \n",
" 1501.16,1531.13 1521.82,1489.8 1563.14,1469.14 1604.47,1448.48 1645.79,1427.82 1687.11,1407.16 1728.44,1386.5 1769.76,1365.83 1811.08,1345.17 1852.41,1324.51 \n",
" 1893.73,1303.85 1935.05,1283.19 1976.38,1262.53 2017.7,1241.86 1997.04,1283.19 2038.36,1262.53 2079.68,1241.86 2121.01,1221.2 2162.33,1241.86 2203.65,1221.2 \n",
" 2244.98,1241.86 2286.3,1221.2 2306.96,1262.53 2348.29,1283.19 2389.61,1303.85 2368.95,1345.17 2348.29,1303.85 2389.61,1324.51 2430.93,1345.17 2472.26,1365.83 \n",
" 2513.58,1345.17 2554.9,1365.83 2596.23,1345.17 2637.55,1324.51 2658.21,1365.83 2616.89,1345.17 2637.55,1386.5 2658.21,1427.82 2637.55,1469.14 2658.21,1510.47 \n",
" 2637.55,1551.79 2616.89,1593.11 2596.23,1551.79 2637.55,1572.45 2658.21,1613.77 2678.87,1655.1 2637.55,1634.44 2658.21,1675.76 2678.87,1717.08 2699.53,1758.41 \n",
" 2720.2,1799.73 2740.86,1841.05 2761.52,1882.38 2782.18,1923.7 2740.86,1944.36 2761.52,1985.68 2740.86,2027.01 2699.53,2047.67 2678.87,2088.99 2658.21,2130.32 \n",
" 2678.87,2171.64 2699.53,2212.96 2658.21,2192.3 2637.55,2233.62 2596.23,2254.29 2575.56,2295.61 2534.24,2316.27 2513.58,2357.59 2492.92,2398.92 2472.26,2440.24 \n",
" 2430.93,2460.9 2410.27,2419.58 2368.95,2440.24 2327.62,2460.9 2286.3,2481.56 2244.98,2502.23 2203.65,2522.89 2162.33,2543.55 2121.01,2564.21 2079.68,2584.87 \n",
" 2038.36,2605.54 1997.04,2626.2 1955.71,2646.86 1914.39,2667.52 1873.07,2646.86 1831.74,2667.52 1790.42,2688.18 1749.1,2708.84 1707.77,2729.51 1666.45,2750.17 \n",
" 1625.13,2770.83 1583.8,2750.17 1542.48,2770.83 1501.16,2750.17 1480.5,2708.84 1439.17,2688.18 1418.51,2646.86 1377.19,2626.2 1356.52,2584.87 1335.86,2543.55 \n",
" 1315.2,2502.23 1294.54,2460.9 1273.88,2419.58 1253.22,2378.26 1294.54,2357.59 1273.88,2316.27 1253.22,2274.95 1294.54,2254.29 1273.88,2212.96 1315.2,2192.3 \n",
" 1356.52,2171.64 1377.19,2130.32 1356.52,2088.99 1335.86,2047.67 1356.52,2006.35 1335.86,1965.02 1315.2,1923.7 1294.54,1882.38 1315.2,1841.05 1294.54,1799.73 \n",
" 1315.2,1758.41 1335.86,1717.08 1356.52,1675.76 1377.19,1634.44 1418.51,1613.77 1439.17,1572.45 1480.5,1551.79 1521.82,1531.13 1542.48,1489.8 1583.8,1469.14 \n",
" 1625.13,1448.48 1666.45,1427.82 1707.77,1407.16 1749.1,1386.5 1790.42,1365.83 1831.74,1345.17 1873.07,1324.51 1914.39,1303.85 1955.71,1283.19 1997.04,1262.53 \n",
" 2038.36,1241.86 2079.68,1221.2 2121.01,1241.86 2162.33,1221.2 2203.65,1241.86 2244.98,1262.53 2286.3,1241.86 2306.96,1283.19 2348.29,1262.53 2389.61,1283.19 \n",
" 2430.93,1303.85 2472.26,1324.51 2513.58,1303.85 2534.24,1345.17 2575.56,1324.51 2616.89,1303.85 2637.55,1345.17 2678.87,1365.83 2658.21,1324.51 2699.53,1345.17 \n",
" 2678.87,1386.5 2658.21,1345.17 2699.53,1365.83 2678.87,1407.16 2658.21,1448.48 2637.55,1489.8 2658.21,1531.13 2678.87,1572.45 2699.53,1613.77 2658.21,1593.11 \n",
" 2678.87,1634.44 2699.53,1675.76 2658.21,1696.42 2678.87,1737.74 2699.53,1779.07 2720.2,1820.39 2740.86,1861.71 2761.52,1903.04 2782.18,1944.36 2802.84,1985.68 \n",
" 2761.52,2006.35 2740.86,2047.67 2720.2,2088.99 2699.53,2130.32 2720.2,2171.64 2678.87,2192.3 2699.53,2233.62 2658.21,2254.29 2616.89,2274.95 2596.23,2316.27 \n",
" 2554.9,2336.93 2534.24,2378.26 2513.58,2419.58 2492.92,2460.9 2472.26,2419.58 2430.93,2440.24 2389.61,2460.9 2348.29,2481.56 2306.96,2502.23 2265.64,2522.89 \n",
" 2224.32,2543.55 2182.99,2564.21 2141.67,2584.87 2100.35,2605.54 2059.02,2626.2 2017.7,2646.86 1976.38,2667.52 1935.05,2688.18 1893.73,2708.84 1852.41,2688.18 \n",
" 1811.08,2708.84 1769.76,2729.51 1728.44,2708.84 1687.11,2729.51 1645.79,2750.17 1604.47,2770.83 1563.14,2791.49 1542.48,2750.17 1501.16,2729.51 1459.83,2708.84 \n",
" 1439.17,2667.52 1397.85,2646.86 1377.19,2605.54 1356.52,2564.21 1335.86,2522.89 1315.2,2481.56 1294.54,2440.24 1273.88,2398.92 1253.22,2357.59 1232.55,2316.27 \n",
" 1273.88,2295.61 1253.22,2254.29 1294.54,2233.62 1273.88,2192.3 1315.2,2171.64 1335.86,2130.32 1315.2,2088.99 1356.52,2109.65 1335.86,2068.33 1315.2,2027.01 \n",
" 1335.86,1985.68 1315.2,1944.36 1294.54,1903.04 1273.88,1861.71 1294.54,1820.39 1315.2,1779.07 1356.52,1758.41 1315.2,1737.74 1335.86,1696.42 1377.19,1675.76 \n",
" 1397.85,1634.44 1418.51,1593.11 1439.17,1551.79 1480.5,1531.13 1501.16,1489.8 1542.48,1469.14 1583.8,1448.48 1625.13,1427.82 1666.45,1407.16 1707.77,1386.5 \n",
" 1749.1,1365.83 1790.42,1345.17 1831.74,1324.51 1873.07,1303.85 1914.39,1283.19 1955.71,1262.53 1997.04,1241.86 2038.36,1221.2 2079.68,1200.54 2100.35,1241.86 \n",
" 2141.67,1221.2 2182.99,1241.86 2224.32,1221.2 2265.64,1200.54 2306.96,1221.2 2327.62,1262.53 2368.95,1283.19 2410.27,1303.85 2451.59,1324.51 2492.92,1345.17 \n",
" 2534.24,1324.51 2513.58,1365.83 2554.9,1345.17 2596.23,1324.51 2637.55,1303.85 2678.87,1324.51 2720.2,1345.17 2699.53,1386.5 2678.87,1427.82 2658.21,1469.14 \n",
" 2637.55,1510.47 2658.21,1551.79 2678.87,1593.11 2699.53,1634.44 2678.87,1675.76 2699.53,1717.08 2720.2,1758.41 2740.86,1799.73 2761.52,1841.05 2782.18,1882.38 \n",
" 2802.84,1923.7 2782.18,1965.02 2802.84,2006.35 2761.52,2027.01 2720.2,2047.67 2699.53,2088.99 2720.2,2130.32 2699.53,2171.64 2678.87,2212.96 2699.53,2254.29 \n",
" 2658.21,2274.95 2616.89,2295.61 2596.23,2336.93 2554.9,2357.59 2534.24,2398.92 2492.92,2419.58 2451.59,2440.24 2410.27,2460.9 2368.95,2481.56 2327.62,2502.23 \n",
" 2348.29,2460.9 2306.96,2481.56 2265.64,2502.23 2224.32,2522.89 2182.99,2543.55 2141.67,2564.21 2100.35,2584.87 2059.02,2605.54 2017.7,2626.2 1976.38,2646.86 \n",
" 1935.05,2667.52 1893.73,2688.18 1852.41,2708.84 1811.08,2729.51 1769.76,2750.17 1728.44,2770.83 1749.1,2729.51 1707.77,2750.17 1666.45,2729.51 1625.13,2750.17 \n",
" 1583.8,2770.83 1542.48,2791.49 1501.16,2770.83 1459.83,2750.17 1418.51,2729.51 1397.85,2688.18 1356.52,2667.52 1335.86,2626.2 1315.2,2584.87 1356.52,2605.54 \n",
" 1335.86,2564.21 1315.2,2522.89 1294.54,2481.56 1273.88,2440.24 1253.22,2398.92 1273.88,2357.59 1253.22,2316.27 1273.88,2274.95 1253.22,2233.62 1294.54,2212.96 \n",
" 1273.88,2171.64 1294.54,2130.32 1335.86,2109.65 1315.2,2068.33 1294.54,2027.01 1315.2,1985.68 1294.54,1944.36 1273.88,1903.04 1253.22,1861.71 1273.88,1820.39 \n",
" 1294.54,1779.07 1315.2,1820.39 1273.88,1799.73 1253.22,1758.41 1294.54,1737.74 1315.2,1696.42 1335.86,1655.1 1356.52,1613.77 1397.85,1593.11 1418.51,1551.79 \n",
" 1459.83,1531.13 1501.16,1510.47 1521.82,1469.14 1563.14,1448.48 1604.47,1427.82 1645.79,1407.16 1687.11,1386.5 1728.44,1365.83 1769.76,1345.17 1811.08,1324.51 \n",
" 1852.41,1303.85 1893.73,1283.19 1935.05,1262.53 1976.38,1241.86 2017.7,1221.2 2059.02,1200.54 2100.35,1179.88 2141.67,1200.54 2182.99,1179.88 2224.32,1200.54 \n",
" 2265.64,1179.88 2244.98,1221.2 2286.3,1200.54 2306.96,1241.86 2348.29,1221.2 2368.95,1262.53 2410.27,1283.19 2430.93,1324.51 2472.26,1345.17 2513.58,1324.51 \n",
" 2554.9,1303.85 2596.23,1283.19 2637.55,1262.53 2658.21,1303.85 2678.87,1345.17 2699.53,1303.85 2658.21,1283.19 2699.53,1262.53 2678.87,1303.85 2720.2,1324.51 \n",
" 2699.53,1283.19 2740.86,1303.85 2699.53,1324.51 2720.2,1365.83 2699.53,1407.16 2678.87,1448.48 2658.21,1489.8 2637.55,1531.13 2658.21,1572.45 2678.87,1613.77 \n",
" 2699.53,1655.1 2720.2,1696.42 2740.86,1737.74 2761.52,1779.07 2782.18,1820.39 2802.84,1861.71 2823.5,1903.04 2802.84,1944.36 2761.52,1965.02 2782.18,2006.35 \n",
" 2761.52,2047.67 2720.2,2068.33 2699.53,2109.65 2720.2,2150.98 2699.53,2192.3 2678.87,2233.62 2699.53,2274.95 2658.21,2295.61 2616.89,2316.27 2575.56,2336.93 \n",
" 2554.9,2378.26 2513.58,2398.92 2492.92,2440.24 2451.59,2460.9 2410.27,2481.56 2368.95,2502.23 2327.62,2522.89 2286.3,2543.55 2244.98,2564.21 2203.65,2584.87 \n",
" 2162.33,2605.54 2121.01,2626.2 2079.68,2646.86 2038.36,2667.52 1997.04,2688.18 1955.71,2708.84 1914.39,2729.51 1873.07,2708.84 1831.74,2729.51 1790.42,2750.17 \n",
" 1749.1,2770.83 1707.77,2791.49 1687.11,2750.17 1645.79,2770.83 1604.47,2791.49 1563.14,2812.15 1521.82,2791.49 1480.5,2770.83 1459.83,2729.51 1418.51,2708.84 \n",
" 1397.85,2667.52 1356.52,2646.86 1335.86,2605.54 1315.2,2564.21 1294.54,2522.89 1273.88,2481.56 1253.22,2440.24 1232.55,2398.92 1211.89,2357.59 1253.22,2336.93 \n",
" 1232.55,2295.61 1211.89,2254.29 1232.55,2212.96 1253.22,2171.64 1294.54,2150.98 1315.2,2109.65 1335.86,2150.98 1294.54,2171.64 1315.2,2130.32 1335.86,2088.99 \n",
" 1315.2,2047.67 1294.54,2006.35 1273.88,1965.02 1253.22,1923.7 1232.55,1882.38 1253.22,1841.05 1232.55,1799.73 1273.88,1779.07 1253.22,1737.74 1294.54,1717.08 \n",
" 1315.2,1675.76 1356.52,1655.1 1377.19,1613.77 1418.51,1634.44 1439.17,1593.11 1459.83,1551.79 1480.5,1510.47 1501.16,1469.14 1542.48,1448.48 1583.8,1427.82 \n",
" 1625.13,1407.16 1666.45,1386.5 1707.77,1365.83 1749.1,1345.17 1790.42,1324.51 1831.74,1303.85 1873.07,1283.19 1914.39,1262.53 1955.71,1241.86 1997.04,1221.2 \n",
" 2038.36,1200.54 2079.68,1179.88 2059.02,1221.2 2100.35,1200.54 2141.67,1179.88 2182.99,1200.54 2224.32,1179.88 2265.64,1159.22 2244.98,1200.54 2286.3,1179.88 \n",
" 2327.62,1200.54 2348.29,1241.86 2389.61,1262.53 2430.93,1283.19 2472.26,1303.85 2513.58,1283.19 2492.92,1324.51 2534.24,1303.85 2575.56,1283.19 2554.9,1324.51 \n",
" 2596.23,1303.85 2637.55,1283.19 2678.87,1262.53 2720.2,1283.19 2740.86,1324.51 2761.52,1365.83 2720.2,1386.5 2699.53,1427.82 2678.87,1469.14 2699.53,1510.47 \n",
" 2678.87,1551.79 2699.53,1593.11 2720.2,1634.44 2740.86,1675.76 2699.53,1696.42 2720.2,1737.74 2740.86,1779.07 2761.52,1820.39 2782.18,1861.71 2802.84,1903.04 \n",
" 2823.5,1944.36 2844.17,1985.68 2802.84,1965.02 2823.5,2006.35 2782.18,2027.01 2761.52,2068.33 2740.86,2109.65 2761.52,2150.98 2740.86,2192.3 2720.2,2233.62 \n",
" 2678.87,2254.29 2699.53,2295.61 2658.21,2316.27 2616.89,2336.93 2575.56,2357.59 2554.9,2398.92 2534.24,2440.24 2513.58,2481.56 2472.26,2460.9 2513.58,2440.24 \n",
" 2492.92,2481.56 2534.24,2460.9 2513.58,2502.23 2472.26,2481.56 2513.58,2460.9 2534.24,2419.58 2554.9,2460.9 2534.24,2502.23 2492.92,2522.89 2451.59,2502.23 \n",
" 2410.27,2522.89 2389.61,2481.56 2348.29,2502.23 2306.96,2522.89 2265.64,2543.55 2224.32,2564.21 2182.99,2584.87 2141.67,2605.54 2100.35,2626.2 2059.02,2646.86 \n",
" 2017.7,2667.52 1976.38,2688.18 1935.05,2708.84 1893.73,2729.51 1873.07,2688.18 1831.74,2708.84 1790.42,2729.51 1749.1,2750.17 1707.77,2770.83 1666.45,2791.49 \n",
" 1625.13,2812.15 1583.8,2791.49 1542.48,2812.15 1521.82,2770.83 1480.5,2750.17 1439.17,2729.51 1418.51,2688.18 1377.19,2667.52 1356.52,2626.2 1335.86,2584.87 \n",
" 1315.2,2543.55 1294.54,2502.23 1273.88,2460.9 1253.22,2419.58 1232.55,2378.26 1211.89,2336.93 1191.23,2295.61 1232.55,2274.95 1273.88,2254.29 1253.22,2212.96 \n",
" 1232.55,2171.64 1273.88,2150.98 1294.54,2109.65 1273.88,2068.33 1253.22,2027.01 1294.54,2047.67 1315.2,2006.35 1294.54,1965.02 1273.88,1923.7 1253.22,1882.38 \n",
" 1273.88,1841.05 1253.22,1799.73 1273.88,1758.41 1253.22,1717.08 1294.54,1696.42 1335.86,1675.76 1377.19,1655.1 1397.85,1613.77 1418.51,1572.45 1439.17,1531.13 \n",
" 1459.83,1489.8 1480.5,1448.48 1521.82,1427.82 1563.14,1407.16 1604.47,1386.5 1645.79,1365.83 1687.11,1345.17 1728.44,1324.51 1769.76,1303.85 1811.08,1283.19 \n",
" 1852.41,1262.53 1893.73,1241.86 1935.05,1221.2 1976.38,1200.54 2017.7,1179.88 2059.02,1159.22 2100.35,1138.56 2121.01,1179.88 2162.33,1200.54 2203.65,1179.88 \n",
" 2244.98,1159.22 2286.3,1138.56 2306.96,1179.88 2327.62,1221.2 2368.95,1241.86 2410.27,1262.53 2451.59,1283.19 2492.92,1303.85 2534.24,1283.19 2575.56,1303.85 \n",
" 2616.89,1283.19 2658.21,1262.53 2699.53,1241.86 2678.87,1283.19 2720.2,1303.85 2740.86,1345.17 2761.52,1386.5 2720.2,1407.16 2699.53,1448.48 2678.87,1489.8 \n",
" 2699.53,1531.13 2720.2,1572.45 2740.86,1613.77 2720.2,1655.1 2740.86,1696.42 2761.52,1737.74 2720.2,1717.08 2740.86,1758.41 2761.52,1799.73 2782.18,1841.05 \n",
" 2802.84,1882.38 2823.5,1923.7 2844.17,1965.02 2864.83,2006.35 2823.5,2027.01 2782.18,2047.67 2740.86,2068.33 2720.2,2109.65 2699.53,2150.98 2720.2,2192.3 \n",
" 2740.86,2233.62 2720.2,2274.95 2678.87,2295.61 2637.55,2316.27 2616.89,2357.59 2575.56,2378.26 2554.9,2419.58 2575.56,2460.9 2534.24,2481.56 2492.92,2502.23 \n",
" 2451.59,2481.56 2410.27,2502.23 2368.95,2522.89 2327.62,2543.55 2286.3,2522.89 2244.98,2543.55 2203.65,2564.21 2162.33,2584.87 2121.01,2605.54 2079.68,2626.2 \n",
" 2038.36,2646.86 1997.04,2667.52 1955.71,2688.18 1914.39,2708.84 1873.07,2729.51 1831.74,2750.17 1790.42,2770.83 1749.1,2791.49 1728.44,2750.17 1687.11,2770.83 \n",
" 1645.79,2791.49 1604.47,2812.15 1563.14,2832.81 1521.82,2812.15 1480.5,2791.49 1439.17,2770.83 1397.85,2750.17 1377.19,2708.84 1335.86,2688.18 1315.2,2646.86 \n",
" 1294.54,2605.54 1273.88,2564.21 1253.22,2522.89 1294.54,2543.55 1273.88,2502.23 1253.22,2460.9 1232.55,2419.58 1211.89,2378.26 1232.55,2336.93 1253.22,2295.61 \n",
" 1232.55,2254.29 1211.89,2212.96 1253.22,2192.3 1232.55,2150.98 1273.88,2130.32 1294.54,2088.99 1273.88,2047.67 1253.22,2006.35 1294.54,1985.68 1273.88,1944.36 \n",
" 1253.22,1903.04 1232.55,1861.71 1253.22,1820.39 1232.55,1779.07 1211.89,1737.74 1232.55,1696.42 1273.88,1675.76 1315.2,1655.1 1356.52,1634.44 1377.19,1593.11 \n",
" 1397.85,1551.79 1418.51,1510.47 1439.17,1469.14 1480.5,1489.8 1501.16,1448.48 1542.48,1427.82 1583.8,1407.16 1625.13,1386.5 1666.45,1365.83 1707.77,1345.17 \n",
" 1749.1,1324.51 1790.42,1303.85 1831.74,1283.19 1873.07,1262.53 1914.39,1241.86 1955.71,1221.2 1997.04,1200.54 2038.36,1179.88 2079.68,1159.22 2121.01,1138.56 \n",
" 2162.33,1159.22 2203.65,1138.56 2244.98,1117.89 2224.32,1159.22 2203.65,1200.54 2244.98,1179.88 2286.3,1159.22 2306.96,1200.54 2327.62,1241.86 2368.95,1221.2 \n",
" 2410.27,1241.86 2451.59,1262.53 2492.92,1283.19 2451.59,1303.85 2472.26,1262.53 2513.58,1241.86 2554.9,1262.53 2596.23,1241.86 2637.55,1221.2 2616.89,1262.53 \n",
" 2658.21,1241.86 2699.53,1221.2 2720.2,1262.53 2761.52,1283.19 2740.86,1241.86 2782.18,1262.53 2740.86,1283.19 2761.52,1324.51 2740.86,1365.83 2761.52,1407.16 \n",
" 2720.2,1427.82 2699.53,1469.14 2678.87,1510.47 2699.53,1551.79 2720.2,1593.11 2740.86,1634.44 2720.2,1675.76 2740.86,1717.08 2761.52,1758.41 2782.18,1799.73 \n",
" 2802.84,1841.05 2823.5,1882.38 2844.17,1923.7 2823.5,1965.02 2844.17,2006.35 2802.84,2027.01 2782.18,2068.33 2740.86,2088.99 2761.52,2130.32 2740.86,2171.64 \n",
" 2720.2,2212.96 2740.86,2254.29 2720.2,2295.61 2678.87,2316.27 2637.55,2336.93 2596.23,2357.59 2575.56,2398.92 2554.9,2440.24 2575.56,2481.56 2554.9,2522.89 \n",
" 2513.58,2543.55 2472.26,2522.89 2430.93,2502.23 2389.61,2522.89 2348.29,2543.55 2306.96,2564.21 2265.64,2584.87 2224.32,2605.54 2182.99,2626.2 2141.67,2646.86 \n",
" 2100.35,2667.52 2059.02,2688.18 2017.7,2708.84 1976.38,2729.51 1935.05,2750.17 1893.73,2770.83 1852.41,2750.17 1811.08,2770.83 1769.76,2791.49 1728.44,2812.15 \n",
" 1687.11,2791.49 1645.79,2812.15 1666.45,2770.83 1625.13,2791.49 1583.8,2812.15 1542.48,2832.81 1501.16,2812.15 1459.83,2791.49 1439.17,2750.17 1397.85,2729.51 \n",
" 1377.19,2688.18 1335.86,2667.52 1315.2,2626.2 1294.54,2584.87 1273.88,2543.55 1253.22,2502.23 1232.55,2460.9 1211.89,2419.58 1191.23,2378.26 1232.55,2357.59 \n",
" 1211.89,2316.27 1191.23,2274.95 1211.89,2233.62 1232.55,2192.3 1253.22,2150.98 1273.88,2109.65 1294.54,2068.33 1273.88,2027.01 1253.22,1985.68 1232.55,1944.36 \n",
" 1211.89,1903.04 1191.23,1861.71 1232.55,1841.05 1211.89,1799.73 1253.22,1779.07 1273.88,1737.74 1315.2,1717.08 1294.54,1675.76 1315.2,1634.44 1335.86,1593.11 \n",
" 1377.19,1572.45 1397.85,1531.13 1439.17,1510.47 1459.83,1469.14 1480.5,1427.82 1521.82,1448.48 1480.5,1469.14 1501.16,1427.82 1459.83,1448.48 1480.5,1407.16 \n",
" 1439.17,1427.82 1459.83,1386.5 1501.16,1407.16 1459.83,1427.82 1480.5,1386.5 1521.82,1407.16 1563.14,1427.82 1604.47,1407.16 1645.79,1386.5 1687.11,1365.83 \n",
" 1728.44,1345.17 1769.76,1324.51 1811.08,1303.85 1852.41,1283.19 1893.73,1262.53 1935.05,1241.86 1976.38,1221.2 2017.7,1200.54 2059.02,1179.88 2100.35,1159.22 \n",
" 2121.01,1200.54 2162.33,1179.88 2203.65,1159.22 2244.98,1138.56 2286.3,1117.89 2306.96,1159.22 2348.29,1179.88 2389.61,1200.54 2430.93,1221.2 2472.26,1241.86 \n",
" 2513.58,1262.53 2554.9,1283.19 2596.23,1262.53 2637.55,1241.86 2678.87,1221.2 2720.2,1241.86 2761.52,1262.53 2782.18,1303.85 2761.52,1345.17 2740.86,1386.5 \n",
" 2761.52,1427.82 2720.2,1448.48 2699.53,1489.8 2678.87,1531.13 2699.53,1572.45 2720.2,1613.77 2740.86,1655.1 2761.52,1696.42 2782.18,1737.74 2802.84,1779.07 \n",
" 2823.5,1820.39 2844.17,1861.71 2864.83,1903.04 2844.17,1944.36 2823.5,1985.68 2844.17,2027.01 2802.84,2047.67 2782.18,2088.99 2802.84,2130.32 2761.52,2109.65 \n",
" 2740.86,2150.98 2761.52,2192.3 2782.18,2233.62 2740.86,2212.96 2720.2,2254.29 2678.87,2274.95 2637.55,2295.61 2658.21,2336.93 2637.55,2378.26 2596.23,2398.92 \n",
" 2575.56,2440.24 2554.9,2481.56 2534.24,2522.89 2575.56,2502.23 2554.9,2543.55 2513.58,2522.89 2472.26,2502.23 2430.93,2481.56 2389.61,2502.23 2348.29,2522.89 \n",
" 2306.96,2543.55 2265.64,2564.21 2224.32,2584.87 2182.99,2605.54 2141.67,2626.2 2100.35,2646.86 2059.02,2667.52 2017.7,2688.18 1976.38,2708.84 1935.05,2729.51 \n",
" 1893.73,2750.17 1852.41,2729.51 1811.08,2750.17 1769.76,2770.83 1728.44,2791.49 1687.11,2812.15 1645.79,2832.81 1604.47,2853.48 1563.14,2874.14 1583.8,2832.81 \n",
" 1542.48,2853.48 1501.16,2832.81 1459.83,2812.15 1418.51,2791.49 1377.19,2770.83 1356.52,2729.51 1315.2,2708.84 1356.52,2688.18 1335.86,2646.86 1315.2,2605.54 \n",
" 1294.54,2564.21 1273.88,2522.89 1253.22,2481.56 1232.55,2440.24 1211.89,2398.92 1191.23,2357.59 1170.57,2316.27 1211.89,2295.61 1191.23,2254.29 1232.55,2233.62 \n",
" 1211.89,2192.3 1191.23,2150.98 1232.55,2130.32 1253.22,2088.99 1232.55,2047.67 1211.89,2006.35 1232.55,1965.02 1273.88,1985.68 1253.22,1944.36 1232.55,1903.04 \n",
" 1211.89,1861.71 1232.55,1820.39 1211.89,1779.07 1232.55,1737.74 1273.88,1717.08 1253.22,1675.76 1294.54,1655.1 1335.86,1634.44 1356.52,1593.11 1397.85,1572.45 \n",
" 1418.51,1531.13 1459.83,1510.47 1418.51,1489.8 1439.17,1448.48 1459.83,1407.16 1501.16,1386.5 1542.48,1407.16 1583.8,1386.5 1625.13,1365.83 1666.45,1345.17 \n",
" 1707.77,1324.51 1749.1,1303.85 1790.42,1283.19 1831.74,1262.53 1873.07,1241.86 1914.39,1221.2 1955.71,1200.54 1997.04,1179.88 2038.36,1159.22 2079.68,1138.56 \n",
" 2121.01,1159.22 2162.33,1138.56 2203.65,1117.89 2182.99,1159.22 2224.32,1138.56 2265.64,1117.89 2306.96,1138.56 2327.62,1179.88 2368.95,1200.54 2389.61,1241.86 \n",
" 2430.93,1262.53 2472.26,1283.19 2492.92,1241.86 2534.24,1262.53 2575.56,1241.86 2616.89,1221.2 2658.21,1200.54 2678.87,1241.86 2720.2,1221.2 2740.86,1262.53 \n",
" 2761.52,1303.85 2782.18,1345.17 2802.84,1386.5 2782.18,1427.82 2740.86,1448.48 2720.2,1489.8 2740.86,1531.13 2761.52,1572.45 2720.2,1551.79 2740.86,1593.11 \n",
" 2761.52,1634.44 2782.18,1675.76 2761.52,1717.08 2782.18,1758.41 2802.84,1799.73 2823.5,1841.05 2844.17,1882.38 2864.83,1923.7 2885.49,1965.02 2906.15,2006.35 \n",
" 2864.83,2027.01 2823.5,2047.67 2802.84,2088.99 2782.18,2130.32 2761.52,2171.64 2740.86,2130.32 2761.52,2088.99 2802.84,2109.65 2782.18,2150.98 2802.84,2192.3 \n",
" 2761.52,2212.96 2782.18,2254.29 2740.86,2274.95 2720.2,2316.27 2678.87,2336.93 2637.55,2357.59 2596.23,2378.26 2575.56,2419.58 2596.23,2460.9 2616.89,2502.23 \n",
" 2575.56,2522.89 2534.24,2543.55 2554.9,2502.23 2575.56,2543.55 2596.23,2502.23 2616.89,2543.55 2575.56,2564.21 2596.23,2522.89 2616.89,2564.21 2575.56,2584.87 \n",
" 2596.23,2543.55 2554.9,2564.21 2513.58,2584.87 2492.92,2543.55 2451.59,2522.89 2410.27,2543.55 2368.95,2564.21 2327.62,2584.87 2286.3,2564.21 2244.98,2584.87 \n",
" 2203.65,2605.54 2162.33,2626.2 2121.01,2646.86 2079.68,2667.52 2038.36,2688.18 1997.04,2708.84 1955.71,2729.51 1914.39,2750.17 1873.07,2770.83 1831.74,2791.49 \n",
" 1790.42,2812.15 1749.1,2832.81 1707.77,2812.15 1666.45,2832.81 1625.13,2853.48 1583.8,2874.14 1604.47,2832.81 1563.14,2853.48 1521.82,2832.81 1501.16,2791.49 \n",
" 1459.83,2770.83 1418.51,2750.17 1397.85,2708.84 1377.19,2750.17 1356.52,2708.84 1315.2,2688.18 1294.54,2646.86 1273.88,2605.54 1253.22,2564.21 1232.55,2522.89 \n",
" 1211.89,2481.56 1191.23,2440.24 1170.57,2398.92 1149.91,2357.59 1191.23,2336.93 1170.57,2295.61 1211.89,2274.95 1191.23,2233.62 1170.57,2192.3 1211.89,2171.64 \n",
" 1191.23,2130.32 1232.55,2109.65 1273.88,2088.99 1253.22,2047.67 1273.88,2006.35 1253.22,1965.02 1232.55,1923.7 1211.89,1882.38 1191.23,1841.05 1170.57,1799.73 \n",
" 1211.89,1820.39 1191.23,1779.07 1232.55,1758.41 1211.89,1717.08 1253.22,1696.42 1273.88,1655.1 1294.54,1613.77 1315.2,1572.45 1356.52,1551.79 1377.19,1510.47 \n",
" 1397.85,1469.14 1439.17,1489.8 1418.51,1448.48 1439.17,1407.16 1459.83,1365.83 1418.51,1386.5 1397.85,1427.82 1418.51,1469.14 1397.85,1510.47 1377.19,1469.14 \n",
" 1356.52,1427.82 1397.85,1407.16 1439.17,1386.5 1418.51,1427.82 1397.85,1386.5 1439.17,1365.83 1418.51,1407.16 1397.85,1365.83 1439.17,1345.17 1480.5,1365.83 \n",
" 1521.82,1386.5 1563.14,1365.83 1604.47,1345.17 1645.79,1324.51 1687.11,1303.85 1728.44,1283.19 1769.76,1262.53 1811.08,1241.86 1852.41,1221.2 1893.73,1200.54 \n",
" 1935.05,1179.88 1976.38,1159.22 2017.7,1138.56 2059.02,1117.89 2100.35,1097.23 2141.67,1117.89 2182.99,1138.56 2141.67,1159.22 2162.33,1117.89 2203.65,1097.23 \n",
" 2244.98,1076.57 2224.32,1117.89 2265.64,1138.56 2306.96,1117.89 2327.62,1159.22 2348.29,1200.54 2389.61,1221.2 2430.93,1241.86 2472.26,1221.2 2492.92,1262.53 \n",
" 2534.24,1241.86 2575.56,1262.53 2616.89,1241.86 2658.21,1221.2 2699.53,1200.54 2740.86,1221.2 2782.18,1241.86 2802.84,1283.19 2782.18,1324.51 2802.84,1365.83 \n",
" 2782.18,1407.16 2740.86,1427.82 2720.2,1469.14 2740.86,1510.47 2761.52,1551.79 2720.2,1531.13 2740.86,1572.45 2761.52,1613.77 2782.18,1655.1 2802.84,1696.42 \n",
" 2761.52,1675.76 2782.18,1717.08 2802.84,1758.41 2823.5,1799.73 2782.18,1779.07 2802.84,1820.39 2823.5,1861.71 2844.17,1903.04 2864.83,1944.36 2885.49,1985.68 \n",
" 2906.15,2027.01 2864.83,2047.67 2823.5,2068.33 2844.17,2109.65 2823.5,2150.98 2782.18,2171.64 2802.84,2212.96 2761.52,2233.62 2782.18,2274.95 2740.86,2295.61 \n",
" 2699.53,2316.27 2678.87,2357.59 2658.21,2398.92 2616.89,2419.58 2637.55,2460.9 2596.23,2481.56 2616.89,2522.89 2596.23,2564.21 2554.9,2584.87 2513.58,2564.21 \n",
" 2472.26,2543.55 2430.93,2522.89 2389.61,2543.55 2348.29,2564.21 2306.96,2584.87 2265.64,2605.54 2224.32,2626.2 2182.99,2646.86 2141.67,2667.52 2100.35,2688.18 \n",
" 2059.02,2708.84 2017.7,2729.51 1976.38,2750.17 1935.05,2770.83 1893.73,2791.49 1873.07,2750.17 1831.74,2770.83 1790.42,2791.49 1749.1,2812.15 1707.77,2832.81 \n",
" 1666.45,2812.15 1625.13,2832.81 1583.8,2853.48 1542.48,2874.14 1501.16,2853.48 1480.5,2812.15 1439.17,2791.49 1397.85,2770.83 1377.19,2729.51 1335.86,2708.84 \n",
" 1315.2,2667.52 1294.54,2626.2 1273.88,2584.87 1253.22,2543.55 1232.55,2502.23 1211.89,2460.9 1191.23,2419.58 1170.57,2378.26 1149.91,2336.93 1191.23,2316.27 \n",
" 1170.57,2274.95 1149.91,2233.62 1191.23,2212.96 1170.57,2171.64 1211.89,2150.98 1253.22,2130.32 1232.55,2088.99 1211.89,2047.67 1253.22,2068.33 1232.55,2027.01 \n",
" 1211.89,1985.68 1191.23,1944.36 1170.57,1903.04 1211.89,1923.7 1191.23,1882.38 1211.89,1841.05 1191.23,1799.73 1211.89,1758.41 1232.55,1717.08 1273.88,1696.42 \n",
" 1253.22,1655.1 1294.54,1634.44 1335.86,1613.77 1356.52,1572.45 1377.19,1531.13 1397.85,1489.8 1377.19,1448.48 1356.52,1407.16 1377.19,1365.83 1418.51,1345.17 \n",
" 1459.83,1324.51 1501.16,1345.17 1542.48,1365.83 1583.8,1345.17 1563.14,1386.5 1604.47,1365.83 1645.79,1345.17 1687.11,1324.51 1728.44,1303.85 1769.76,1283.19 \n",
" 1811.08,1262.53 1852.41,1241.86 1893.73,1221.2 1935.05,1200.54 1976.38,1179.88 2017.7,1159.22 2059.02,1138.56 2100.35,1117.89 2141.67,1138.56 2182.99,1117.89 \n",
" 2224.32,1097.23 2265.64,1076.57 2306.96,1097.23 2327.62,1138.56 2368.95,1159.22 2410.27,1179.88 2451.59,1200.54 2492.92,1221.2 2451.59,1241.86 2410.27,1221.2 \n",
" 2430.93,1179.88 2451.59,1221.2 2492.92,1200.54 2534.24,1221.2 2575.56,1200.54 2554.9,1241.86 2596.23,1221.2 2637.55,1200.54 2678.87,1179.88 2720.2,1200.54 \n",
" 2761.52,1221.2 2802.84,1241.86 2782.18,1283.19 2761.52,1241.86 2802.84,1262.53 2782.18,1221.2 2740.86,1200.54 2782.18,1179.88 2802.84,1221.2 2761.52,1200.54 \n",
" 2802.84,1179.88 2823.5,1221.2 2782.18,1200.54 2823.5,1179.88 2844.17,1221.2 2802.84,1200.54 2823.5,1241.86 2844.17,1283.19 2802.84,1303.85 2823.5,1345.17 \n",
" 2782.18,1365.83 2802.84,1407.16 2782.18,1448.48 2740.86,1469.14 2720.2,1510.47 2740.86,1551.79 2761.52,1593.11 2782.18,1634.44 2802.84,1675.76 2761.52,1655.1 \n",
" 2782.18,1696.42 2802.84,1737.74 2823.5,1779.07 2844.17,1820.39 2864.83,1861.71 2885.49,1903.04 2906.15,1944.36 2864.83,1965.02 2885.49,2006.35 2906.15,2047.67 \n",
" 2864.83,2068.33 2823.5,2088.99 2782.18,2109.65 2802.84,2150.98 2782.18,2192.3 2802.84,2233.62 2761.52,2254.29 2782.18,2295.61 2740.86,2316.27 2699.53,2336.93 \n",
" 2658.21,2357.59 2616.89,2378.26 2596.23,2419.58 2616.89,2460.9 2637.55,2502.23 2658.21,2543.55 2637.55,2584.87 2596.23,2605.54 2554.9,2626.2 2534.24,2584.87 \n",
" 2492.92,2564.21 2451.59,2543.55 2410.27,2564.21 2368.95,2543.55 2327.62,2564.21 2286.3,2584.87 2244.98,2605.54 2203.65,2626.2 2162.33,2646.86 2121.01,2667.52 \n",
" 2079.68,2688.18 2038.36,2708.84 1997.04,2729.51 1955.71,2750.17 1914.39,2770.83 1873.07,2791.49 1831.74,2812.15 1852.41,2770.83 1811.08,2791.49 1769.76,2812.15 \n",
" 1728.44,2832.81 1687.11,2853.48 1645.79,2874.14 1604.47,2894.8 1563.14,2915.46 1521.82,2894.8 1480.5,2874.14 1459.83,2832.81 1418.51,2812.15 1377.19,2791.49 \n",
" 1356.52,2750.17 1315.2,2729.51 1294.54,2688.18 1273.88,2646.86 1253.22,2605.54 1232.55,2564.21 1211.89,2522.89 1232.55,2481.56 1211.89,2440.24 1191.23,2398.92 \n",
" 1170.57,2357.59 1149.91,2316.27 1129.25,2274.95 1170.57,2254.29 1149.91,2212.96 1191.23,2192.3 1170.57,2150.98 1211.89,2130.32 1253.22,2109.65 1232.55,2068.33 \n",
" 1211.89,2027.01 1232.55,1985.68 1211.89,1944.36 1191.23,1903.04 1170.57,1861.71 1191.23,1820.39 1170.57,1779.07 1191.23,1737.74 1211.89,1696.42 1232.55,1655.1 \n",
" 1273.88,1634.44 1315.2,1613.77 1335.86,1572.45 1377.19,1551.79 1356.52,1510.47 1335.86,1469.14 1377.19,1489.8 1397.85,1448.48 1377.19,1407.16 1356.52,1365.83 \n",
" 1397.85,1345.17 1377.19,1386.5 1418.51,1365.83 1459.83,1345.17 1501.16,1365.83 1542.48,1386.5 1583.8,1365.83 1625.13,1345.17 1666.45,1324.51 1707.77,1303.85 \n",
" 1749.1,1283.19 1790.42,1262.53 1831.74,1241.86 1873.07,1221.2 1914.39,1200.54 1955.71,1179.88 1997.04,1159.22 2038.36,1138.56 2079.68,1117.89 2121.01,1097.23 \n",
" 2162.33,1076.57 2203.65,1055.91 2182.99,1097.23 2224.32,1076.57 2265.64,1097.23 2306.96,1076.57 2327.62,1117.89 2348.29,1159.22 2389.61,1179.88 2430.93,1200.54 \n",
" 2472.26,1179.88 2513.58,1200.54 2554.9,1221.2 2596.23,1200.54 2637.55,1179.88 2678.87,1200.54 2720.2,1179.88 2761.52,1159.22 2802.84,1138.56 2844.17,1159.22 \n",
" 2823.5,1200.54 2844.17,1241.86 2823.5,1283.19 2802.84,1324.51 2823.5,1365.83 2782.18,1386.5 2740.86,1407.16 2761.52,1448.48 2740.86,1489.8 2761.52,1531.13 \n",
" 2782.18,1572.45 2802.84,1613.77 2823.5,1655.1 2844.17,1696.42 2802.84,1717.08 2823.5,1758.41 2844.17,1799.73 2864.83,1841.05 2885.49,1882.38 2906.15,1923.7 \n",
" 2926.81,1965.02 2885.49,1944.36 2864.83,1985.68 2885.49,2027.01 2844.17,2047.67 2802.84,2068.33 2823.5,2109.65 2844.17,2150.98 2802.84,2171.64 2782.18,2212.96 \n",
" 2802.84,2254.29 2761.52,2274.95 2782.18,2316.27 2740.86,2336.93 2699.53,2357.59 2658.21,2378.26 2616.89,2398.92 2596.23,2440.24 2616.89,2481.56 2637.55,2522.89 \n",
" 2658.21,2564.21 2616.89,2584.87 2637.55,2543.55 2658.21,2584.87 2616.89,2605.54 2637.55,2564.21 2596.23,2584.87 2554.9,2605.54 2534.24,2564.21 2492.92,2584.87 \n",
" 2451.59,2564.21 2410.27,2584.87 2430.93,2543.55 2389.61,2564.21 2348.29,2584.87 2306.96,2605.54 2265.64,2626.2 2224.32,2646.86 2182.99,2667.52 2141.67,2688.18 \n",
" 2100.35,2708.84 2059.02,2729.51 2017.7,2750.17 1976.38,2770.83 1935.05,2791.49 1893.73,2812.15 1852.41,2791.49 1811.08,2812.15 1769.76,2832.81 1728.44,2853.48 \n",
" 1687.11,2832.81 1645.79,2853.48 1604.47,2874.14 1563.14,2894.8 1521.82,2874.14 1480.5,2853.48 1439.17,2832.81 1397.85,2812.15 1418.51,2770.83 1439.17,2812.15 \n",
" 1397.85,2791.49 1356.52,2770.83 1335.86,2729.51 1294.54,2708.84 1273.88,2667.52 1253.22,2626.2 1232.55,2584.87 1211.89,2543.55 1191.23,2502.23 1170.57,2460.9 \n",
" 1149.91,2419.58 1129.25,2378.26 1108.58,2336.93 1129.25,2295.61 1149.91,2254.29 1170.57,2212.96 1191.23,2171.64 1170.57,2130.32 1211.89,2109.65 1191.23,2068.33 \n",
" 1170.57,2027.01 1191.23,1985.68 1232.55,2006.35 1211.89,1965.02 1191.23,1923.7 1170.57,1882.38 1149.91,1841.05 1129.25,1799.73 1170.57,1820.39 1149.91,1779.07 \n",
" 1191.23,1758.41 1170.57,1717.08 1191.23,1675.76 1211.89,1634.44 1253.22,1613.77 1294.54,1593.11 1315.2,1551.79 1356.52,1531.13 1335.86,1489.8 1356.52,1448.48 \n",
" 1335.86,1407.16 1377.19,1427.82 1356.52,1386.5 1377.19,1345.17 1418.51,1324.51 1459.83,1303.85 1480.5,1345.17 1521.82,1365.83 1563.14,1345.17 1604.47,1324.51 \n",
" 1645.79,1303.85 1687.11,1283.19 1728.44,1262.53 1769.76,1241.86 1811.08,1221.2 1852.41,1200.54 1893.73,1179.88 1935.05,1159.22 1976.38,1138.56 2017.7,1117.89 \n",
" 2059.02,1097.23 2100.35,1076.57 2121.01,1117.89 2162.33,1097.23 2203.65,1076.57 2244.98,1097.23 2286.3,1076.57 2327.62,1097.23 2348.29,1138.56 2368.95,1179.88 \n",
" 2410.27,1200.54 2451.59,1179.88 2492.92,1159.22 2472.26,1200.54 2513.58,1221.2 2554.9,1200.54 2596.23,1179.88 2575.56,1221.2 2616.89,1200.54 2658.21,1179.88 \n",
" 2699.53,1159.22 2740.86,1179.88 2782.18,1159.22 2823.5,1138.56 2844.17,1179.88 2802.84,1159.22 2761.52,1179.88 2720.2,1159.22 2761.52,1138.56 2802.84,1117.89 \n",
" 2823.5,1159.22 2844.17,1200.54 2864.83,1241.86 2823.5,1262.53 2844.17,1303.85 2864.83,1345.17 2823.5,1324.51 2844.17,1365.83 2802.84,1345.17 2823.5,1386.5 \n",
" 2802.84,1427.82 2782.18,1469.14 2761.52,1510.47 2782.18,1551.79 2802.84,1593.11 2823.5,1634.44 2782.18,1613.77 2802.84,1655.1 2823.5,1696.42 2844.17,1737.74 \n",
" 2864.83,1779.07 2885.49,1820.39 2844.17,1841.05 2864.83,1882.38 2885.49,1923.7 2906.15,1965.02 2926.81,2006.35 2947.47,2047.67 2906.15,2068.33 2864.83,2088.99 \n",
" 2844.17,2130.32 2823.5,2171.64 2844.17,2212.96 2823.5,2254.29 2802.84,2295.61 2761.52,2316.27 2720.2,2336.93 2699.53,2378.26 2678.87,2419.58 2637.55,2440.24 \n",
" 2658.21,2481.56 2678.87,2522.89 2699.53,2564.21 2678.87,2605.54 2637.55,2626.2 2596.23,2646.86 2575.56,2605.54 2534.24,2626.2 2492.92,2605.54 2472.26,2564.21 \n",
" 2430.93,2584.87 2389.61,2605.54 2348.29,2626.2 2368.95,2584.87 2327.62,2605.54 2286.3,2626.2 2244.98,2646.86 2203.65,2667.52 2162.33,2688.18 2121.01,2708.84 \n",
" 2079.68,2729.51 2038.36,2750.17 1997.04,2770.83 1955.71,2791.49 1914.39,2812.15 1873.07,2832.81 1831.74,2853.48 1852.41,2812.15 1811.08,2832.81 1769.76,2853.48 \n",
" 1728.44,2874.14 1687.11,2894.8 1666.45,2853.48 1625.13,2874.14 1583.8,2894.8 1542.48,2915.46 1501.16,2894.8 1521.82,2853.48 1480.5,2832.81 1439.17,2853.48 \n",
" 1397.85,2832.81 1356.52,2812.15 1335.86,2770.83 1294.54,2750.17 1273.88,2708.84 1294.54,2667.52 1273.88,2626.2 1253.22,2584.87 1232.55,2543.55 1211.89,2502.23 \n",
" 1191.23,2460.9 1170.57,2419.58 1149.91,2378.26 1170.57,2336.93 1149.91,2295.61 1129.25,2254.29 1170.57,2233.62 1149.91,2192.3 1129.25,2150.98 1149.91,2109.65 \n",
" 1191.23,2088.99 1170.57,2047.67 1211.89,2068.33 1191.23,2027.01 1170.57,1985.68 1149.91,1944.36 1191.23,1965.02 1170.57,1923.7 1149.91,1882.38 1170.57,1841.05 \n",
" 1149.91,1799.73 1170.57,1758.41 1191.23,1717.08 1211.89,1675.76 1232.55,1634.44 1273.88,1613.77 1315.2,1593.11 1335.86,1551.79 1315.2,1510.47 1356.52,1489.8 \n",
" 1335.86,1448.48 1315.2,1407.16 1335.86,1365.83 1356.52,1324.51 1397.85,1303.85 1439.17,1324.51 1480.5,1303.85 1521.82,1324.51 1563.14,1303.85 1542.48,1345.17 \n",
" 1583.8,1324.51 1625.13,1303.85 1666.45,1283.19 1707.77,1262.53 1749.1,1241.86 1790.42,1221.2 1831.74,1200.54 1873.07,1179.88 1914.39,1159.22 1955.71,1138.56 \n",
" 1997.04,1117.89 2038.36,1097.23 2079.68,1076.57 2121.01,1055.91 2141.67,1097.23 2182.99,1076.57 2224.32,1055.91 2265.64,1035.25 2306.96,1055.91 2286.3,1097.23 \n",
" 2327.62,1076.57 2348.29,1117.89 2389.61,1138.56 2430.93,1159.22 2472.26,1138.56 2492.92,1179.88 2534.24,1200.54 2575.56,1179.88 2616.89,1159.22 2658.21,1138.56 \n",
" 2699.53,1117.89 2678.87,1159.22 2720.2,1138.56 2699.53,1179.88 2740.86,1159.22 2782.18,1138.56 2823.5,1117.89 2864.83,1138.56 2885.49,1179.88 2864.83,1221.2 \n",
" 2844.17,1262.53 2823.5,1303.85 2844.17,1345.17 2864.83,1386.5 2823.5,1407.16 2802.84,1448.48 2761.52,1469.14 2782.18,1510.47 2802.84,1551.79 2782.18,1593.11 \n",
" 2802.84,1634.44 2823.5,1675.76 2844.17,1717.08 2864.83,1758.41 2823.5,1737.74 2844.17,1779.07 2864.83,1820.39 2885.49,1861.71 2906.15,1903.04 2926.81,1944.36 \n",
" 2906.15,1985.68 2926.81,2027.01 2885.49,2047.67 2844.17,2068.33 2864.83,2109.65 2823.5,2130.32 2844.17,2171.64 2823.5,2212.96 2844.17,2254.29 2802.84,2274.95 \n",
" 2761.52,2295.61 2782.18,2336.93 2740.86,2357.59 2720.2,2398.92 2678.87,2378.26 2637.55,2398.92 2616.89,2440.24 2637.55,2481.56 2658.21,2522.89 2678.87,2564.21 \n",
" 2658.21,2605.54 2616.89,2626.2 2575.56,2646.86 2534.24,2667.52 2513.58,2626.2 2472.26,2605.54 2430.93,2626.2 2451.59,2584.87 2410.27,2605.54 2430.93,2564.21 \n",
" 2389.61,2584.87 2348.29,2605.54 2306.96,2626.2 2265.64,2646.86 2286.3,2605.54 2244.98,2626.2 2203.65,2646.86 2162.33,2667.52 2121.01,2688.18 2079.68,2708.84 \n",
" 2038.36,2729.51 1997.04,2750.17 1955.71,2770.83 1914.39,2791.49 1873.07,2812.15 1831.74,2832.81 1790.42,2853.48 1749.1,2874.14 1707.77,2853.48 1666.45,2874.14 \n",
" 1625.13,2894.8 1583.8,2915.46 1542.48,2894.8 1501.16,2874.14 1459.83,2853.48 1418.51,2832.81 1377.19,2812.15 1335.86,2791.49 1315.2,2750.17 1273.88,2729.51 \n",
" 1253.22,2688.18 1232.55,2646.86 1211.89,2605.54 1191.23,2564.21 1170.57,2522.89 1191.23,2481.56 1170.57,2440.24 1149.91,2398.92 1129.25,2357.59 1108.58,2316.27 \n",
" 1087.92,2274.95 1108.58,2233.62 1129.25,2192.3 1149.91,2150.98 1170.57,2109.65 1211.89,2088.99 1191.23,2047.67 1170.57,2006.35 1149.91,1965.02 1129.25,1923.7 \n",
" 1170.57,1944.36 1149.91,1903.04 1129.25,1861.71 1149.91,1820.39 1129.25,1779.07 1149.91,1737.74 1170.57,1696.42 1191.23,1655.1 1232.55,1675.76 1253.22,1634.44 \n",
" 1273.88,1593.11 1294.54,1551.79 1335.86,1531.13 1315.2,1489.8 1356.52,1469.14 1335.86,1427.82 1315.2,1386.5 1335.86,1345.17 1377.19,1324.51 1418.51,1303.85 \n",
" 1459.83,1283.19 1480.5,1324.51 1521.82,1345.17 1563.14,1324.51 1604.47,1303.85 1645.79,1283.19 1625.13,1324.51 1666.45,1303.85 1707.77,1283.19 1749.1,1262.53 \n",
" 1790.42,1241.86 1831.74,1221.2 1873.07,1200.54 1914.39,1179.88 1955.71,1159.22 1997.04,1138.56 2038.36,1117.89 2079.68,1097.23 2121.01,1076.57 2162.33,1055.91 \n",
" 2203.65,1035.25 2244.98,1055.91 2286.3,1035.25 2327.62,1055.91 2348.29,1097.23 2368.95,1138.56 2410.27,1159.22 2451.59,1138.56 2492.92,1117.89 2513.58,1159.22 \n",
" 2554.9,1179.88 2596.23,1159.22 2637.55,1138.56 2616.89,1179.88 2658.21,1159.22 2699.53,1138.56 2740.86,1117.89 2782.18,1097.23 2823.5,1076.57 2844.17,1117.89 \n",
" 2864.83,1159.22 2885.49,1200.54 2906.15,1241.86 2864.83,1262.53 2885.49,1303.85 2844.17,1324.51 2864.83,1365.83 2844.17,1407.16 2823.5,1448.48 2802.84,1489.8 \n",
" 2782.18,1531.13 2761.52,1489.8 2802.84,1510.47 2823.5,1551.79 2844.17,1593.11 2802.84,1572.45 2823.5,1613.77 2844.17,1655.1 2864.83,1696.42 2823.5,1717.08 \n",
" 2844.17,1758.41 2864.83,1799.73 2885.49,1841.05 2906.15,1882.38 2926.81,1923.7 2947.47,1965.02 2968.14,2006.35 2926.81,1985.68 2947.47,2027.01 2926.81,2068.33 \n",
" 2885.49,2088.99 2864.83,2130.32 2844.17,2088.99 2885.49,2109.65 2864.83,2150.98 2844.17,2192.3 2823.5,2233.62 2844.17,2274.95 2823.5,2316.27 2802.84,2357.59 \n",
" 2761.52,2378.26 2720.2,2357.59 2699.53,2398.92 2658.21,2419.58 2678.87,2460.9 2658.21,2502.23 2678.87,2543.55 2699.53,2584.87 2678.87,2626.2 2637.55,2605.54 \n",
" 2596.23,2626.2 2554.9,2646.86 2534.24,2605.54 2492.92,2626.2 2472.26,2584.87 2430.93,2605.54 2389.61,2626.2 2348.29,2646.86 2368.95,2605.54 2327.62,2626.2 \n",
" 2286.3,2646.86 2244.98,2667.52 2203.65,2688.18 2162.33,2708.84 2121.01,2729.51 2079.68,2750.17 2038.36,2770.83 1997.04,2791.49 1955.71,2812.15 1914.39,2832.81 \n",
" 1873.07,2853.48 1831.74,2874.14 1852.41,2832.81 1811.08,2853.48 1769.76,2874.14 1790.42,2832.81 1749.1,2853.48 1707.77,2874.14 1666.45,2894.8 1625.13,2915.46 \n",
" 1583.8,2936.12 1542.48,2956.78 1521.82,2915.46 1480.5,2894.8 1439.17,2874.14 1397.85,2853.48 1356.52,2832.81 1315.2,2812.15 1294.54,2770.83 1253.22,2750.17 \n",
" 1294.54,2729.51 1273.88,2688.18 1253.22,2646.86 1232.55,2605.54 1211.89,2564.21 1191.23,2522.89 1170.57,2481.56 1149.91,2440.24 1129.25,2398.92 1108.58,2357.59 \n",
" 1129.25,2316.27 1149.91,2274.95 1129.25,2233.62 1108.58,2192.3 1149.91,2171.64 1129.25,2130.32 1149.91,2088.99 1191.23,2109.65 1170.57,2068.33 1149.91,2027.01 \n",
" 1191.23,2006.35 1170.57,1965.02 1149.91,1923.7 1129.25,1882.38 1108.58,1841.05 1149.91,1861.71 1129.25,1820.39 1108.58,1779.07 1149.91,1758.41 1129.25,1717.08 \n",
" 1170.57,1737.74 1191.23,1696.42 1211.89,1655.1 1232.55,1613.77 1253.22,1572.45 1273.88,1531.13 1294.54,1489.8 1335.86,1510.47 1315.2,1469.14 1294.54,1427.82 \n",
" 1273.88,1386.5 1315.2,1365.83 1356.52,1345.17 1397.85,1324.51 1439.17,1303.85 1480.5,1283.19 1501.16,1324.51 1542.48,1303.85 1583.8,1283.19 1625.13,1262.53 \n",
" 1666.45,1241.86 1707.77,1221.2 1687.11,1262.53 1728.44,1241.86 1769.76,1221.2 1811.08,1200.54 1852.41,1179.88 1893.73,1159.22 1935.05,1138.56 1976.38,1117.89 \n",
" 2017.7,1097.23 2059.02,1076.57 2100.35,1055.91 2141.67,1076.57 2182.99,1055.91 2224.32,1035.25 2265.64,1055.91 2306.96,1035.25 2348.29,1055.91 2368.95,1097.23 \n",
" 2410.27,1117.89 2389.61,1159.22 2430.93,1138.56 2472.26,1159.22 2513.58,1179.88 2554.9,1159.22 2596.23,1138.56 2637.55,1159.22 2678.87,1138.56 2720.2,1117.89 \n",
" 2761.52,1097.23 2740.86,1138.56 2782.18,1117.89 2823.5,1097.23 2844.17,1138.56 2864.83,1179.88 2885.49,1221.2 2906.15,1262.53 2864.83,1283.19 2885.49,1324.51 \n",
" 2906.15,1365.83 2885.49,1407.16 2844.17,1427.82 2823.5,1469.14 2782.18,1489.8 2802.84,1531.13 2823.5,1572.45 2844.17,1613.77 2864.83,1655.1 2885.49,1696.42 \n",
" 2844.17,1675.76 2864.83,1717.08 2885.49,1758.41 2906.15,1799.73 2926.81,1841.05 2947.47,1882.38 2906.15,1861.71 2926.81,1903.04 2947.47,1944.36 2968.14,1985.68 \n",
" 2988.8,2027.01 2947.47,2006.35 2926.81,2047.67 2885.49,2068.33 2906.15,2109.65 2885.49,2150.98 2864.83,2192.3 2844.17,2233.62 2823.5,2274.95 2802.84,2316.27 \n",
" 2761.52,2336.93 2740.86,2378.26 2720.2,2419.58 2678.87,2440.24 2637.55,2419.58 2658.21,2460.9 2678.87,2502.23 2699.53,2543.55 2678.87,2584.87 2658.21,2626.2 \n",
" 2616.89,2646.86 2575.56,2626.2 2534.24,2646.86 2513.58,2605.54 2472.26,2626.2 2430.93,2646.86 2451.59,2605.54 2410.27,2626.2 2368.95,2646.86 2327.62,2667.52 \n",
" 2286.3,2688.18 2306.96,2646.86 2265.64,2667.52 2224.32,2688.18 2182.99,2708.84 2141.67,2729.51 2100.35,2750.17 2059.02,2770.83 2017.7,2791.49 1976.38,2812.15 \n",
" 1935.05,2832.81 1893.73,2853.48 1852.41,2874.14 1811.08,2894.8 1769.76,2915.46 1790.42,2874.14 1749.1,2894.8 1707.77,2915.46 1687.11,2874.14 1645.79,2894.8 \n",
" 1604.47,2915.46 1563.14,2936.12 1521.82,2956.78 1501.16,2915.46 1459.83,2894.8 1418.51,2874.14 1377.19,2853.48 1335.86,2832.81 1315.2,2791.49 1335.86,2750.17 \n",
" 1356.52,2791.49 1315.2,2770.83 1273.88,2750.17 1253.22,2708.84 1232.55,2667.52 1211.89,2626.2 1191.23,2584.87 1170.57,2543.55 1149.91,2502.23 1129.25,2460.9 \n",
" 1108.58,2419.58 1087.92,2378.26 1067.26,2336.93 1087.92,2295.61 1108.58,2254.29 1129.25,2212.96 1108.58,2171.64 1087.92,2130.32 1129.25,2109.65 1170.57,2088.99 \n",
" 1149.91,2047.67 1129.25,2006.35 1108.58,1965.02 1149.91,1985.68 1129.25,1944.36 1108.58,1903.04 1087.92,1861.71 1129.25,1841.05 1108.58,1799.73 1129.25,1758.41 \n",
" 1149.91,1717.08 1170.57,1675.76 1191.23,1634.44 1211.89,1593.11 1232.55,1551.79 1273.88,1572.45 1294.54,1531.13 1273.88,1489.8 1294.54,1448.48 1273.88,1407.16 \n",
" 1315.2,1427.82 1335.86,1386.5 1315.2,1345.17 1335.86,1303.85 1377.19,1283.19 1418.51,1262.53 1459.83,1241.86 1439.17,1283.19 1480.5,1262.53 1501.16,1303.85 \n",
" 1542.48,1324.51 1583.8,1303.85 1625.13,1283.19 1666.45,1262.53 1707.77,1241.86 1749.1,1221.2 1790.42,1200.54 1831.74,1179.88 1873.07,1159.22 1914.39,1138.56 \n",
" 1955.71,1117.89 1997.04,1097.23 2038.36,1076.57 2079.68,1055.91 2121.01,1035.25 2162.33,1014.59 2141.67,1055.91 2182.99,1035.25 2224.32,1014.59 2265.64,993.924 \n",
" 2244.98,1035.25 2286.3,1055.91 2327.62,1035.25 2348.29,1076.57 2368.95,1117.89 2410.27,1138.56 2451.59,1159.22 2492.92,1138.56 2534.24,1159.22 2575.56,1138.56 \n",
" 2616.89,1117.89 2658.21,1097.23 2699.53,1076.57 2678.87,1117.89 2720.2,1097.23 2761.52,1117.89 2802.84,1097.23 2844.17,1076.57 2864.83,1117.89 2885.49,1159.22 \n",
" 2864.83,1200.54 2885.49,1241.86 2906.15,1283.19 2864.83,1303.85 2885.49,1345.17 2906.15,1386.5 2864.83,1407.16 2823.5,1427.82 2802.84,1469.14 2823.5,1510.47 \n",
" 2844.17,1551.79 2823.5,1593.11 2844.17,1634.44 2864.83,1675.76 2885.49,1717.08 2906.15,1758.41 2864.83,1737.74 2885.49,1779.07 2906.15,1820.39 2926.81,1861.71 \n",
" 2947.47,1903.04 2968.14,1944.36 2947.47,1985.68 2968.14,2027.01 2947.47,2068.33 2906.15,2088.99 2885.49,2130.32 2864.83,2171.64 2823.5,2192.3 2864.83,2212.96 \n",
" 2885.49,2254.29 2864.83,2295.61 2844.17,2336.93 2823.5,2378.26 2782.18,2398.92 2740.86,2419.58 2699.53,2440.24 2678.87,2481.56 2658.21,2440.24 2678.87,2398.92 \n",
" 2720.2,2378.26 2699.53,2419.58 2720.2,2460.9 2699.53,2502.23 2720.2,2543.55 2740.86,2584.87 2699.53,2605.54 2678.87,2646.86 2637.55,2667.52 2596.23,2688.18 \n",
" 2554.9,2667.52 2513.58,2646.86 2472.26,2667.52 2451.59,2626.2 2410.27,2646.86 2368.95,2626.2 2327.62,2646.86 2286.3,2667.52 2244.98,2688.18 2203.65,2708.84 \n",
" 2224.32,2667.52 2182.99,2688.18 2141.67,2708.84 2100.35,2729.51 2059.02,2750.17 2017.7,2770.83 1976.38,2791.49 1935.05,2812.15 1893.73,2832.81 1852.41,2853.48 \n",
" 1811.08,2874.14 1769.76,2894.8 1728.44,2915.46 1687.11,2936.12 1707.77,2894.8 1666.45,2915.46 1625.13,2936.12 1583.8,2956.78 1542.48,2936.12 1501.16,2956.78 \n",
" 1480.5,2915.46 1459.83,2874.14 1418.51,2853.48 1377.19,2832.81 1335.86,2812.15 1294.54,2791.49 1253.22,2770.83 1232.55,2729.51 1211.89,2688.18 1253.22,2667.52 \n",
" 1232.55,2626.2 1211.89,2584.87 1191.23,2543.55 1170.57,2502.23 1149.91,2460.9 1129.25,2419.58 1108.58,2378.26 1129.25,2336.93 1108.58,2295.61 1087.92,2254.29 \n",
" 1108.58,2212.96 1129.25,2171.64 1149.91,2130.32 1129.25,2088.99 1108.58,2047.67 1149.91,2068.33 1129.25,2027.01 1108.58,1985.68 1149.91,2006.35 1129.25,1965.02 \n",
" 1108.58,1923.7 1087.92,1882.38 1129.25,1903.04 1108.58,1861.71 1087.92,1820.39 1067.26,1779.07 1108.58,1758.41 1087.92,1717.08 1129.25,1696.42 1149.91,1655.1 \n",
" 1170.57,1613.77 1191.23,1572.45 1232.55,1593.11 1253.22,1551.79 1294.54,1572.45 1315.2,1531.13 1273.88,1510.47 1294.54,1469.14 1273.88,1427.82 1315.2,1448.48 \n",
" 1294.54,1407.16 1273.88,1365.83 1294.54,1324.51 1315.2,1283.19 1356.52,1303.85 1397.85,1283.19 1439.17,1262.53 1480.5,1241.86 1501.16,1283.19 1542.48,1262.53 \n",
" 1521.82,1303.85 1563.14,1283.19 1604.47,1262.53 1645.79,1241.86 1687.11,1221.2 1728.44,1200.54 1769.76,1179.88 1811.08,1159.22 1852.41,1138.56 1893.73,1117.89 \n",
" 1935.05,1097.23 1976.38,1076.57 2017.7,1055.91 2059.02,1035.25 2100.35,1014.59 2141.67,1035.25 2182.99,1014.59 2224.32,993.924 2265.64,1014.59 2306.96,993.924 \n",
" 2348.29,1014.59 2368.95,1055.91 2389.61,1097.23 2430.93,1117.89 2472.26,1097.23 2513.58,1117.89 2554.9,1138.56 2534.24,1179.88 2575.56,1159.22 2616.89,1138.56 \n",
" 2658.21,1117.89 2699.53,1097.23 2740.86,1076.57 2782.18,1055.91 2823.5,1035.25 2802.84,1076.57 2844.17,1097.23 2885.49,1117.89 2906.15,1159.22 2926.81,1200.54 \n",
" 2947.47,1241.86 2906.15,1221.2 2885.49,1262.53 2906.15,1303.85 2864.83,1324.51 2885.49,1365.83 2844.17,1386.5 2864.83,1427.82 2844.17,1469.14 2864.83,1510.47 \n",
" 2823.5,1531.13 2844.17,1572.45 2864.83,1613.77 2885.49,1655.1 2906.15,1696.42 2885.49,1737.74 2906.15,1779.07 2926.81,1820.39 2885.49,1799.73 2906.15,1841.05 \n",
" 2926.81,1882.38 2947.47,1923.7 2968.14,1965.02 2988.8,2006.35 2968.14,2047.67 2947.47,2088.99 2926.81,2130.32 2906.15,2171.64 2885.49,2212.96 2864.83,2254.29 \n",
" 2844.17,2295.61 2823.5,2336.93 2782.18,2357.59 2761.52,2398.92 2740.86,2440.24 2699.53,2460.9 2720.2,2502.23 2740.86,2543.55 2699.53,2522.89 2720.2,2564.21 \n",
" 2740.86,2605.54 2699.53,2626.2 2658.21,2646.86 2616.89,2667.52 2575.56,2688.18 2534.24,2708.84 2513.58,2667.52 2472.26,2646.86 2430.93,2667.52 2389.61,2646.86 \n",
" 2348.29,2667.52 2306.96,2688.18 2265.64,2708.84 2224.32,2729.51 2182.99,2750.17 2141.67,2770.83 2162.33,2729.51 2121.01,2750.17 2079.68,2770.83 2038.36,2791.49 \n",
" 1997.04,2812.15 1955.71,2832.81 1914.39,2853.48 1873.07,2874.14 1831.74,2894.8 1790.42,2915.46 1749.1,2936.12 1728.44,2894.8 1687.11,2915.46 1645.79,2936.12 \n",
" 1604.47,2956.78 1563.14,2977.45 1521.82,2998.11 1480.5,2977.45 1459.83,2936.12 1439.17,2894.8 1397.85,2874.14 1356.52,2853.48 1315.2,2832.81 1273.88,2812.15 \n",
" 1232.55,2791.49 1273.88,2770.83 1253.22,2729.51 1232.55,2688.18 1211.89,2646.86 1191.23,2605.54 1170.57,2564.21 1149.91,2522.89 1129.25,2481.56 1108.58,2440.24 \n",
" 1087.92,2398.92 1067.26,2357.59 1087.92,2316.27 1108.58,2274.95 1087.92,2233.62 1067.26,2192.3 1087.92,2150.98 1108.58,2109.65 1129.25,2068.33 1108.58,2027.01 \n",
" 1129.25,1985.68 1108.58,1944.36 1087.92,1903.04 1067.26,1861.71 1108.58,1882.38 1087.92,1841.05 1067.26,1799.73 1108.58,1820.39 1087.92,1779.07 1108.58,1737.74 \n",
" 1087.92,1696.42 1129.25,1675.76 1170.57,1655.1 1191.23,1613.77 1211.89,1572.45 1253.22,1593.11 1273.88,1551.79 1294.54,1510.47 1273.88,1469.14 1253.22,1427.82 \n",
" 1232.55,1386.5 1253.22,1345.17 1294.54,1365.83 1315.2,1324.51 1335.86,1283.19 1377.19,1303.85 1335.86,1324.51 1356.52,1283.19 1315.2,1303.85 1335.86,1262.53 \n",
" 1294.54,1283.19 1315.2,1241.86 1356.52,1262.53 1397.85,1241.86 1418.51,1283.19 1459.83,1262.53 1501.16,1241.86 1521.82,1283.19 1563.14,1262.53 1604.47,1283.19 \n",
" 1645.79,1262.53 1687.11,1241.86 1728.44,1221.2 1769.76,1200.54 1811.08,1179.88 1852.41,1159.22 1893.73,1138.56 1935.05,1117.89 1976.38,1097.23 2017.7,1076.57 \n",
" 2059.02,1055.91 2100.35,1035.25 2141.67,1014.59 2182.99,993.924 2162.33,1035.25 2203.65,1014.59 2244.98,993.924 2286.3,1014.59 2327.62,993.924 2348.29,1035.25 \n",
" 2368.95,1076.57 2389.61,1117.89 2430.93,1097.23 2472.26,1117.89 2513.58,1138.56 2554.9,1117.89 2596.23,1097.23 2637.55,1117.89 2678.87,1097.23 2720.2,1076.57 \n",
" 2761.52,1055.91 2740.86,1097.23 2782.18,1076.57 2823.5,1055.91 2864.83,1076.57 2906.15,1097.23 2885.49,1138.56 2906.15,1179.88 2926.81,1221.2 2947.47,1262.53 \n",
" 2926.81,1303.85 2885.49,1283.19 2906.15,1324.51 2926.81,1365.83 2885.49,1386.5 2906.15,1427.82 2864.83,1448.48 2844.17,1489.8 2864.83,1531.13 2885.49,1572.45 \n",
" 2906.15,1613.77 2864.83,1634.44 2885.49,1675.76 2906.15,1717.08 2926.81,1758.41 2947.47,1799.73 2968.14,1841.05 2988.8,1882.38 2947.47,1861.71 2968.14,1903.04 \n",
" 2988.8,1944.36 3009.46,1985.68 3030.12,2027.01 2988.8,2047.67 2968.14,2088.99 2926.81,2109.65 2906.15,2150.98 2885.49,2192.3 2864.83,2233.62 2885.49,2274.95 \n",
" 2864.83,2316.27 2823.5,2295.61 2802.84,2336.93 2761.52,2357.59 2740.86,2398.92 2720.2,2440.24 2699.53,2481.56 2720.2,2522.89 2740.86,2564.21 2720.2,2605.54 \n",
" 2699.53,2646.86 2658.21,2667.52 2616.89,2688.18 2637.55,2646.86 2596.23,2667.52 2554.9,2688.18 2513.58,2708.84 2492.92,2667.52 2451.59,2646.86 2410.27,2667.52 \n",
" 2368.95,2688.18 2327.62,2708.84 2306.96,2667.52 2265.64,2688.18 2224.32,2708.84 2182.99,2729.51 2141.67,2750.17 2100.35,2770.83 2059.02,2791.49 2017.7,2812.15 \n",
" 1976.38,2832.81 1935.05,2853.48 1893.73,2874.14 1852.41,2894.8 1811.08,2915.46 1769.76,2936.12 1790.42,2894.8 1749.1,2915.46 1707.77,2936.12 1666.45,2956.78 \n",
" 1645.79,2915.46 1604.47,2936.12 1563.14,2956.78 1521.82,2936.12 1480.5,2956.78 1459.83,2915.46 1418.51,2894.8 1377.19,2874.14 1335.86,2853.48 1294.54,2832.81 \n",
" 1273.88,2791.49 1232.55,2770.83 1211.89,2729.51 1191.23,2688.18 1232.55,2708.84 1211.89,2667.52 1191.23,2626.2 1170.57,2584.87 1149.91,2543.55 1129.25,2502.23 \n",
" 1108.58,2460.9 1149.91,2481.56 1129.25,2440.24 1108.58,2398.92 1087.92,2357.59 1067.26,2316.27 1046.6,2274.95 1067.26,2233.62 1087.92,2192.3 1108.58,2150.98 \n",
" 1087.92,2109.65 1108.58,2068.33 1087.92,2027.01 1129.25,2047.67 1108.58,2006.35 1087.92,1965.02 1067.26,1923.7 1046.6,1882.38 1067.26,1841.05 1087.92,1799.73 \n",
" 1067.26,1758.41 1046.6,1717.08 1087.92,1737.74 1108.58,1696.42 1149.91,1675.76 1170.57,1634.44 1211.89,1613.77 1232.55,1572.45 1253.22,1531.13 1232.55,1489.8 \n",
" 1253.22,1448.48 1232.55,1407.16 1253.22,1365.83 1294.54,1345.17 1273.88,1303.85 1294.54,1262.53 1335.86,1241.86 1377.19,1262.53 1418.51,1241.86 1459.83,1221.2 \n",
" 1501.16,1200.54 1521.82,1241.86 1542.48,1283.19 1583.8,1262.53 1625.13,1241.86 1666.45,1221.2 1707.77,1200.54 1749.1,1179.88 1790.42,1159.22 1831.74,1138.56 \n",
" 1873.07,1117.89 1914.39,1097.23 1955.71,1076.57 1997.04,1055.91 2038.36,1035.25 2079.68,1014.59 2121.01,993.924 2162.33,973.262 2203.65,993.924 2244.98,1014.59 \n",
" 2286.3,993.924 2327.62,1014.59 2368.95,1035.25 2389.61,1076.57 2430.93,1055.91 2451.59,1097.23 2492.92,1076.57 2534.24,1097.23 2575.56,1117.89 2534.24,1138.56 \n",
" 2554.9,1097.23 2596.23,1117.89 2637.55,1097.23 2678.87,1076.57 2720.2,1055.91 2761.52,1076.57 2802.84,1055.91 2844.17,1035.25 2885.49,1055.91 2864.83,1097.23 \n",
" 2906.15,1117.89 2926.81,1159.22 2906.15,1200.54 2926.81,1241.86 2947.47,1283.19 2926.81,1324.51 2947.47,1365.83 2906.15,1345.17 2926.81,1386.5 2947.47,1427.82 \n",
" 2906.15,1448.48 2864.83,1469.14 2823.5,1489.8 2844.17,1531.13 2864.83,1572.45 2885.49,1613.77 2906.15,1655.1 2926.81,1696.42 2906.15,1737.74 2926.81,1779.07 \n",
" 2947.47,1820.39 2968.14,1861.71 2988.8,1903.04 3009.46,1944.36 2968.14,1923.7 2988.8,1965.02 3009.46,2006.35 3030.12,2047.67 2988.8,2068.33 2968.14,2109.65 \n",
" 2926.81,2088.99 2906.15,2130.32 2885.49,2171.64 2906.15,2212.96 2926.81,2254.29 2885.49,2233.62 2864.83,2274.95 2844.17,2316.27 2823.5,2357.59 2782.18,2378.26 \n",
" 2761.52,2419.58 2740.86,2460.9 2761.52,2502.23 2720.2,2481.56 2740.86,2522.89 2761.52,2564.21 2720.2,2584.87 2740.86,2626.2 2720.2,2667.52 2678.87,2688.18 \n",
" 2637.55,2708.84 2596.23,2729.51 2554.9,2708.84 2575.56,2667.52 2534.24,2688.18 2492.92,2708.84 2451.59,2688.18 2410.27,2708.84 2389.61,2667.52 2348.29,2688.18 \n",
" 2306.96,2708.84 2265.64,2729.51 2224.32,2750.17 2244.98,2708.84 2203.65,2729.51 2162.33,2750.17 2121.01,2770.83 2079.68,2791.49 2038.36,2812.15 1997.04,2832.81 \n",
" 1955.71,2853.48 1914.39,2874.14 1873.07,2894.8 1831.74,2915.46 1790.42,2936.12 1749.1,2956.78 1707.77,2977.45 1728.44,2936.12 1687.11,2956.78 1645.79,2977.45 \n",
" 1666.45,2936.12 1625.13,2956.78 1583.8,2977.45 1542.48,2998.11 1501.16,2977.45 1480.5,2936.12 1439.17,2915.46 1397.85,2894.8 1356.52,2874.14 1315.2,2853.48 \n",
" 1294.54,2812.15 1253.22,2791.49 1232.55,2750.17 1211.89,2708.84 1191.23,2667.52 1170.57,2626.2 1149.91,2584.87 1129.25,2543.55 1108.58,2502.23 1087.92,2460.9 \n",
" 1067.26,2419.58 1046.6,2378.26 1025.94,2336.93 1046.6,2295.61 1067.26,2254.29 1087.92,2212.96 1067.26,2171.64 1046.6,2130.32 1067.26,2088.99 1087.92,2047.67 \n",
" 1108.58,2088.99 1067.26,2068.33 1046.6,2027.01 1087.92,2006.35 1067.26,1965.02 1087.92,1923.7 1067.26,1882.38 1046.6,1841.05 1025.94,1799.73 1067.26,1820.39 \n",
" 1046.6,1779.07 1087.92,1758.41 1129.25,1737.74 1149.91,1696.42 1129.25,1655.1 1149.91,1613.77 1191.23,1593.11 1211.89,1551.79 1232.55,1510.47 1253.22,1469.14 \n",
" 1232.55,1427.82 1273.88,1448.48 1253.22,1407.16 1294.54,1386.5 1273.88,1345.17 1294.54,1303.85 1315.2,1262.53 1356.52,1241.86 1397.85,1262.53 1439.17,1241.86 \n",
" 1480.5,1221.2 1501.16,1262.53 1542.48,1241.86 1583.8,1221.2 1625.13,1200.54 1604.47,1241.86 1645.79,1221.2 1687.11,1200.54 1728.44,1179.88 1769.76,1159.22 \n",
" 1749.1,1200.54 1790.42,1179.88 1831.74,1159.22 1873.07,1138.56 1914.39,1117.89 1955.71,1097.23 1997.04,1076.57 2038.36,1055.91 2079.68,1035.25 2121.01,1014.59 \n",
" 2162.33,993.924 2203.65,973.262 2244.98,952.6 2286.3,973.262 2306.96,1014.59 2348.29,993.924 2389.61,1014.59 2410.27,1055.91 2451.59,1076.57 2492.92,1097.23 \n",
" 2534.24,1117.89 2575.56,1097.23 2616.89,1076.57 2658.21,1055.91 2699.53,1035.25 2740.86,1055.91 2782.18,1035.25 2823.5,1014.59 2844.17,1055.91 2885.49,1076.57 \n",
" 2926.81,1097.23 2906.15,1138.56 2885.49,1097.23 2926.81,1117.89 2906.15,1076.57 2947.47,1097.23 2926.81,1138.56 2947.47,1179.88 2968.14,1221.2 2988.8,1262.53 \n",
" 2968.14,1303.85 2926.81,1283.19 2947.47,1324.51 2968.14,1365.83 2926.81,1345.17 2947.47,1386.5 2906.15,1407.16 2885.49,1448.48 2864.83,1489.8 2844.17,1448.48 \n",
" 2885.49,1469.14 2906.15,1510.47 2885.49,1551.79 2864.83,1593.11 2885.49,1634.44 2906.15,1675.76 2926.81,1717.08 2947.47,1758.41 2926.81,1799.73 2947.47,1841.05 \n",
" 2968.14,1882.38 2988.8,1923.7 3009.46,1965.02 3030.12,2006.35 2988.8,1985.68 3009.46,2027.01 3030.12,2068.33 2988.8,2088.99 2947.47,2109.65 2926.81,2150.98 \n",
" 2906.15,2192.3 2926.81,2233.62 2906.15,2274.95 2885.49,2316.27 2864.83,2357.59 2844.17,2398.92 2802.84,2419.58 2761.52,2440.24 2740.86,2481.56 2761.52,2522.89 \n",
" 2782.18,2564.21 2761.52,2605.54 2720.2,2626.2 2699.53,2667.52 2658.21,2688.18 2616.89,2708.84 2575.56,2729.51 2534.24,2750.17 2492.92,2729.51 2472.26,2688.18 \n",
" 2492.92,2646.86 2451.59,2667.52 2410.27,2688.18 2368.95,2667.52 2327.62,2688.18 2286.3,2708.84 2244.98,2729.51 2203.65,2750.17 2162.33,2770.83 2121.01,2791.49 \n",
" 2079.68,2812.15 2038.36,2832.81 1997.04,2853.48 1955.71,2874.14 1914.39,2894.8 1873.07,2915.46 1831.74,2936.12 1790.42,2956.78 1749.1,2977.45 1707.77,2956.78 \n",
" 1666.45,2977.45 1625.13,2998.11 1645.79,2956.78 1604.47,2977.45 1563.14,2998.11 1521.82,2977.45 1501.16,2936.12 1459.83,2956.78 1418.51,2936.12 1377.19,2915.46 \n",
" 1335.86,2894.8 1294.54,2874.14 1273.88,2832.81 1232.55,2812.15 1211.89,2770.83 1191.23,2729.51 1170.57,2688.18 1191.23,2646.86 1170.57,2605.54 1149.91,2564.21 \n",
" 1129.25,2522.89 1108.58,2481.56 1087.92,2440.24 1067.26,2398.92 1046.6,2357.59 1087.92,2336.93 1067.26,2295.61 1046.6,2254.29 1067.26,2212.96 1087.92,2171.64 \n",
" 1108.58,2130.32 1087.92,2088.99 1067.26,2047.67 1046.6,2006.35 1087.92,1985.68 1067.26,1944.36 1046.6,1903.04 1025.94,1861.71 1046.6,1820.39 1025.94,1779.07 \n",
" 1046.6,1737.74 1067.26,1696.42 1108.58,1675.76 1129.25,1634.44 1149.91,1593.11 1170.57,1551.79 1211.89,1531.13 1253.22,1510.47 1232.55,1469.14 1211.89,1427.82 \n",
" 1191.23,1386.5 1232.55,1365.83 1253.22,1324.51 1273.88,1283.19 1294.54,1241.86 1335.86,1221.2 1377.19,1241.86 1418.51,1221.2 1459.83,1200.54 1501.16,1221.2 \n",
" 1521.82,1262.53 1563.14,1241.86 1604.47,1221.2 1645.79,1200.54 1687.11,1179.88 1728.44,1159.22 1769.76,1138.56 1811.08,1117.89 1852.41,1097.23 1893.73,1076.57 \n",
" 1935.05,1055.91 1976.38,1035.25 2017.7,1014.59 2059.02,993.924 2100.35,973.262 2141.67,993.924 2182.99,973.262 2224.32,952.6 2265.64,973.262 2306.96,952.6 \n",
" 2348.29,973.262 2368.95,1014.59 2389.61,1055.91 2410.27,1097.23 2451.59,1117.89 2472.26,1076.57 2513.58,1097.23 2554.9,1076.57 2596.23,1055.91 2616.89,1097.23 \n",
" 2658.21,1076.57 2699.53,1055.91 2740.86,1035.25 2782.18,1014.59 2823.5,993.924 2802.84,1035.25 2844.17,1014.59 2864.83,1055.91 2906.15,1035.25 2926.81,1076.57 \n",
" 2947.47,1117.89 2968.14,1159.22 2926.81,1179.88 2947.47,1221.2 2926.81,1262.53 2947.47,1303.85 2968.14,1345.17 2988.8,1386.5 2947.47,1407.16 2926.81,1448.48 \n",
" 2885.49,1427.82 2906.15,1469.14 2885.49,1510.47 2864.83,1551.79 2844.17,1510.47 2885.49,1531.13 2906.15,1572.45 2926.81,1613.77 2885.49,1593.11 2906.15,1634.44 \n",
" 2926.81,1675.76 2947.47,1717.08 2968.14,1758.41 2926.81,1737.74 2947.47,1779.07 2968.14,1820.39 2988.8,1861.71 3009.46,1903.04 3030.12,1944.36 3050.78,1985.68 \n",
" 3071.44,2027.01 3050.78,2068.33 3009.46,2088.99 2968.14,2068.33 2988.8,2109.65 2947.47,2130.32 2926.81,2171.64 2947.47,2212.96 2906.15,2233.62 2926.81,2274.95 \n",
" 2885.49,2295.61 2864.83,2336.93 2844.17,2378.26 2802.84,2398.92 2782.18,2440.24 2761.52,2481.56 2782.18,2522.89 2740.86,2502.23 2761.52,2543.55 2782.18,2584.87 \n",
" 2761.52,2626.2 2720.2,2646.86 2678.87,2667.52 2637.55,2688.18 2596.23,2708.84 2554.9,2729.51 2513.58,2750.17 2472.26,2729.51 2492.92,2688.18 2451.59,2708.84 \n",
" 2410.27,2729.51 2389.61,2688.18 2348.29,2708.84 2306.96,2729.51 2265.64,2750.17 2224.32,2770.83 2182.99,2791.49 2141.67,2812.15 2100.35,2791.49 2059.02,2812.15 \n",
" 2017.7,2832.81 1976.38,2853.48 1935.05,2874.14 1893.73,2894.8 1852.41,2915.46 1811.08,2936.12 1769.76,2956.78 1728.44,2977.45 1687.11,2998.11 1645.79,3018.77 \n",
" 1625.13,2977.45 1583.8,2998.11 1542.48,2977.45 1501.16,2998.11 1459.83,2977.45 1439.17,2936.12 1397.85,2915.46 1356.52,2894.8 1315.2,2874.14 1273.88,2853.48 \n",
" 1253.22,2812.15 1211.89,2791.49 1191.23,2750.17 1170.57,2708.84 1149.91,2667.52 1129.25,2626.2 1170.57,2646.86 1149.91,2605.54 1129.25,2564.21 1108.58,2522.89 \n",
" 1087.92,2481.56 1067.26,2440.24 1046.6,2398.92 1087.92,2419.58 1067.26,2378.26 1046.6,2336.93 1025.94,2295.61 1067.26,2274.95 1046.6,2233.62 1025.94,2192.3 \n",
" 1046.6,2150.98 1067.26,2109.65 1087.92,2068.33 1067.26,2027.01 1046.6,1985.68 1025.94,1944.36 1005.28,1903.04 1046.6,1923.7 1087.92,1944.36 1067.26,1903.04 \n",
" 1046.6,1861.71 1025.94,1820.39 1005.28,1779.07 1046.6,1758.41 1067.26,1717.08 1087.92,1675.76 1108.58,1634.44 1129.25,1593.11 1170.57,1572.45 1191.23,1531.13 \n",
" 1211.89,1489.8 1232.55,1448.48 1253.22,1489.8 1232.55,1531.13 1191.23,1510.47 1211.89,1469.14 1191.23,1427.82 1211.89,1386.5 1232.55,1345.17 1273.88,1324.51 \n",
" 1253.22,1283.19 1273.88,1241.86 1315.2,1221.2 1356.52,1200.54 1397.85,1221.2 1439.17,1200.54 1480.5,1179.88 1521.82,1200.54 1563.14,1221.2 1604.47,1200.54 \n",
" 1583.8,1241.86 1625.13,1221.2 1666.45,1200.54 1707.77,1179.88 1749.1,1159.22 1790.42,1138.56 1831.74,1117.89 1873.07,1097.23 1914.39,1076.57 1955.71,1055.91 \n",
" 1997.04,1035.25 2038.36,1014.59 2079.68,993.924 2121.01,973.262 2162.33,952.6 2203.65,931.939 2224.32,973.262 2265.64,952.6 2306.96,973.262 2348.29,952.6 \n",
" 2368.95,993.924 2389.61,1035.25 2410.27,1076.57 2451.59,1055.91 2492.92,1035.25 2513.58,1076.57 2554.9,1055.91 2596.23,1076.57 2637.55,1055.91 2678.87,1035.25 \n",
" 2720.2,1014.59 2761.52,1035.25 2802.84,1014.59 2844.17,993.924 2864.83,1035.25 2906.15,1055.91 2947.47,1076.57 2968.14,1117.89 2947.47,1159.22 2968.14,1200.54 \n",
" 2988.8,1241.86 2968.14,1283.19 2988.8,1324.51 2947.47,1345.17 2968.14,1386.5 2926.81,1407.16 2947.47,1448.48 2926.81,1489.8 2906.15,1531.13 2885.49,1489.8 \n",
" 2926.81,1510.47 2906.15,1551.79 2926.81,1593.11 2947.47,1634.44 2968.14,1675.76 2926.81,1655.1 2947.47,1696.42 2968.14,1737.74 2988.8,1779.07 3009.46,1820.39 \n",
" 2968.14,1799.73 2988.8,1841.05 3009.46,1882.38 3030.12,1923.7 3050.78,1965.02 3071.44,2006.35 3030.12,1985.68 3050.78,2027.01 3009.46,2047.67 3030.12,2088.99 \n",
" 3009.46,2130.32 2968.14,2150.98 2947.47,2192.3 2968.14,2233.62 2926.81,2212.96 2906.15,2254.29 2926.81,2295.61 2906.15,2336.93 2885.49,2378.26 2844.17,2357.59 \n",
" 2802.84,2378.26 2782.18,2419.58 2761.52,2460.9 2782.18,2502.23 2802.84,2543.55 2823.5,2584.87 2782.18,2605.54 2761.52,2646.86 2740.86,2688.18 2699.53,2708.84 \n",
" 2658.21,2729.51 2616.89,2750.17 2575.56,2770.83 2534.24,2791.49 2554.9,2750.17 2575.56,2708.84 2534.24,2729.51 2513.58,2688.18 2472.26,2708.84 2430.93,2688.18 \n",
" 2389.61,2708.84 2348.29,2729.51 2306.96,2750.17 2265.64,2770.83 2286.3,2729.51 2244.98,2750.17 2203.65,2770.83 2162.33,2791.49 2121.01,2812.15 2079.68,2832.81 \n",
" 2038.36,2853.48 1997.04,2874.14 1955.71,2894.8 1914.39,2915.46 1873.07,2936.12 1831.74,2956.78 1790.42,2977.45 1749.1,2998.11 1728.44,2956.78 1687.11,2977.45 \n",
" 1645.79,2998.11 1604.47,3018.77 1563.14,3039.43 1521.82,3018.77 1480.5,2998.11 1439.17,2977.45 1397.85,2956.78 1418.51,2915.46 1377.19,2894.8 1335.86,2874.14 \n",
" 1294.54,2853.48 1253.22,2832.81 1211.89,2812.15 1191.23,2770.83 1170.57,2729.51 1211.89,2750.17 1191.23,2708.84 1170.57,2667.52 1149.91,2626.2 1129.25,2584.87 \n",
" 1108.58,2543.55 1087.92,2502.23 1067.26,2460.9 1046.6,2419.58 1025.94,2378.26 1005.28,2336.93 1046.6,2316.27 1025.94,2274.95 1005.28,2233.62 1046.6,2212.96 \n",
" 1025.94,2171.64 1067.26,2150.98 1046.6,2109.65 1025.94,2068.33 1005.28,2027.01 1046.6,2047.67 1067.26,2006.35 1046.6,1965.02 1025.94,1923.7 1005.28,1882.38 \n",
" 1025.94,1841.05 1046.6,1799.73 1025.94,1758.41 1067.26,1737.74 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1067.26,1737.74 1046.6,1696.42 1067.26,1655.1 1087.92,1613.77 1108.58,1572.45 1149.91,1551.79 1170.57,1510.47 1191.23,1469.14 1211.89,1510.47 1191.23,1551.79 \n",
" 1170.57,1593.11 1149.91,1634.44 1108.58,1613.77 1129.25,1572.45 1149.91,1531.13 1170.57,1489.8 1191.23,1448.48 1211.89,1407.16 1253.22,1386.5 1211.89,1365.83 \n",
" 1232.55,1324.51 1211.89,1283.19 1253.22,1262.53 1273.88,1221.2 1315.2,1200.54 1356.52,1221.2 1397.85,1200.54 1439.17,1221.2 1480.5,1200.54 1521.82,1221.2 \n",
" 1563.14,1200.54 1604.47,1179.88 1645.79,1159.22 1687.11,1138.56 1666.45,1179.88 1707.77,1159.22 1749.1,1138.56 1790.42,1117.89 1831.74,1097.23 1811.08,1138.56 \n",
" 1852.41,1117.89 1893.73,1097.23 1935.05,1076.57 1976.38,1055.91 2017.7,1035.25 2059.02,1014.59 2100.35,993.924 2141.67,973.262 2182.99,952.6 2224.32,931.939 \n",
" 2244.98,973.262 2286.3,952.6 2327.62,973.262 2368.95,952.6 2389.61,993.924 2410.27,1035.25 2430.93,1076.57 2472.26,1055.91 2513.58,1035.25 2534.24,1076.57 \n",
" 2575.56,1055.91 2616.89,1035.25 2637.55,1076.57 2678.87,1055.91 2720.2,1035.25 2761.52,1014.59 2802.84,993.924 2844.17,973.262 2864.83,1014.59 2906.15,993.924 \n",
" 2926.81,1035.25 2968.14,1055.91 2988.8,1097.23 2968.14,1138.56 2988.8,1179.88 2947.47,1200.54 2968.14,1241.86 2988.8,1283.19 2968.14,1324.51 2988.8,1365.83 \n",
" 2968.14,1407.16 2926.81,1427.82 2947.47,1469.14 2906.15,1489.8 2926.81,1531.13 2947.47,1572.45 2906.15,1593.11 2926.81,1634.44 2947.47,1675.76 2968.14,1717.08 \n",
" 2988.8,1758.41 2947.47,1737.74 2968.14,1779.07 2988.8,1820.39 3009.46,1861.71 3030.12,1903.04 3050.78,1944.36 3009.46,1923.7 3030.12,1965.02 3050.78,2006.35 \n",
" 3071.44,2047.67 3050.78,2088.99 3009.46,2109.65 2968.14,2130.32 2947.47,2171.64 2968.14,2212.96 2926.81,2192.3 2947.47,2233.62 2968.14,2274.95 2947.47,2316.27 \n",
" 2906.15,2295.61 2885.49,2336.93 2864.83,2378.26 2823.5,2398.92 2802.84,2440.24 2782.18,2481.56 2802.84,2522.89 2823.5,2564.21 2782.18,2543.55 2761.52,2584.87 \n",
" 2782.18,2626.2 2740.86,2646.86 2720.2,2688.18 2678.87,2708.84 2637.55,2729.51 2596.23,2750.17 2554.9,2770.83 2513.58,2791.49 2492.92,2750.17 2451.59,2729.51 \n",
" 2410.27,2750.17 2430.93,2708.84 2389.61,2729.51 2348.29,2750.17 2368.95,2708.84 2327.62,2729.51 2286.3,2750.17 2244.98,2770.83 2203.65,2791.49 2162.33,2812.15 \n",
" 2182.99,2770.83 2141.67,2791.49 2100.35,2812.15 2059.02,2832.81 2017.7,2853.48 1976.38,2874.14 1935.05,2894.8 1893.73,2915.46 1852.41,2936.12 1811.08,2956.78 \n",
" 1769.76,2977.45 1728.44,2998.11 1687.11,3018.77 1645.79,3039.43 1666.45,2998.11 1625.13,3018.77 1583.8,3039.43 1604.47,2998.11 1563.14,3018.77 1521.82,3039.43 \n",
" 1480.5,3018.77 1439.17,2998.11 1418.51,2956.78 1377.19,2936.12 1335.86,2915.46 1294.54,2894.8 1253.22,2874.14 1232.55,2832.81 1191.23,2812.15 1170.57,2770.83 \n",
" 1149.91,2729.51 1129.25,2688.18 1149.91,2646.86 1129.25,2605.54 1108.58,2564.21 1087.92,2522.89 1067.26,2481.56 1046.6,2440.24 1025.94,2398.92 1005.28,2357.59 \n",
" 1025.94,2316.27 1005.28,2274.95 1025.94,2233.62 1046.6,2192.3 1025.94,2150.98 1067.26,2130.32 1046.6,2088.99 1025.94,2047.67 1005.28,2006.35 1025.94,1965.02 \n",
" 1067.26,1985.68 1046.6,1944.36 1025.94,1903.04 1005.28,1861.71 984.615,1820.39 963.953,1779.07 1005.28,1758.41 1025.94,1717.08 1046.6,1675.76 1087.92,1655.1 \n",
" 1067.26,1613.77 1108.58,1593.11 1149.91,1572.45 1170.57,1531.13 1191.23,1489.8 1211.89,1448.48 1191.23,1407.16 1170.57,1365.83 1211.89,1345.17 1232.55,1303.85 \n",
" 1211.89,1262.53 1253.22,1241.86 1294.54,1221.2 1273.88,1262.53 1253.22,1221.2 1294.54,1200.54 1335.86,1179.88 1377.19,1200.54 1418.51,1179.88 1459.83,1159.22 \n",
" 1501.16,1179.88 1542.48,1200.54 1583.8,1179.88 1625.13,1159.22 1666.45,1138.56 1645.79,1179.88 1687.11,1159.22 1728.44,1138.56 1769.76,1117.89 1811.08,1097.23 \n",
" 1852.41,1076.57 1893.73,1055.91 1935.05,1035.25 1976.38,1014.59 2017.7,993.924 2059.02,973.262 2100.35,952.6 2141.67,931.939 2182.99,911.277 2203.65,952.6 \n",
" 2244.98,931.939 2286.3,911.277 2327.62,931.939 2368.95,911.277 2389.61,952.6 2410.27,993.924 2430.93,1035.25 2472.26,1014.59 2492.92,1055.91 2534.24,1035.25 \n",
" 2575.56,1014.59 2616.89,993.924 2637.55,1035.25 2678.87,1014.59 2720.2,993.924 2761.52,973.262 2740.86,1014.59 2782.18,993.924 2823.5,973.262 2864.83,993.924 \n",
" 2885.49,1035.25 2926.81,1055.91 2968.14,1076.57 2947.47,1035.25 2988.8,1055.91 2968.14,1097.23 2947.47,1138.56 2968.14,1179.88 2988.8,1221.2 2968.14,1262.53 \n",
" 2988.8,1303.85 3009.46,1345.17 3030.12,1386.5 2988.8,1407.16 2968.14,1448.48 2926.81,1469.14 2947.47,1510.47 2926.81,1551.79 2947.47,1593.11 2968.14,1634.44 \n",
" 2988.8,1675.76 2947.47,1655.1 2968.14,1696.42 2988.8,1737.74 3009.46,1779.07 3030.12,1820.39 2988.8,1799.73 3009.46,1841.05 3030.12,1882.38 3050.78,1923.7 \n",
" 3071.44,1965.02 3092.11,2006.35 3112.77,2047.67 3071.44,2068.33 3050.78,2109.65 3030.12,2150.98 2988.8,2171.64 2947.47,2150.98 2968.14,2192.3 2988.8,2233.62 \n",
" 2947.47,2254.29 2968.14,2295.61 2926.81,2316.27 2906.15,2357.59 2885.49,2398.92 2844.17,2419.58 2823.5,2460.9 2802.84,2502.23 2782.18,2460.9 2823.5,2481.56 \n",
" 2844.17,2522.89 2864.83,2564.21 2823.5,2543.55 2802.84,2584.87 2823.5,2626.2 2782.18,2646.86 2740.86,2667.52 2699.53,2688.18 2658.21,2708.84 2616.89,2729.51 \n",
" 2575.56,2750.17 2534.24,2770.83 2513.58,2729.51 2472.26,2750.17 2430.93,2729.51 2389.61,2750.17 2348.29,2770.83 2368.95,2729.51 2327.62,2750.17 2286.3,2770.83 \n",
" 2244.98,2791.49 2203.65,2812.15 2162.33,2832.81 2121.01,2853.48 2079.68,2874.14 2100.35,2832.81 2059.02,2853.48 2017.7,2874.14 1976.38,2894.8 1935.05,2915.46 \n",
" 1893.73,2936.12 1852.41,2956.78 1811.08,2977.45 1769.76,2998.11 1728.44,3018.77 1687.11,3039.43 1707.77,2998.11 1666.45,3018.77 1625.13,3039.43 1583.8,3018.77 \n",
" 1542.48,3039.43 1501.16,3018.77 1459.83,2998.11 1439.17,2956.78 1397.85,2936.12 1356.52,2915.46 1315.2,2894.8 1273.88,2874.14 1232.55,2853.48 1191.23,2832.81 \n",
" 1170.57,2791.49 1149.91,2750.17 1129.25,2708.84 1108.58,2667.52 1149.91,2688.18 1129.25,2646.86 1108.58,2605.54 1087.92,2564.21 1067.26,2522.89 1046.6,2481.56 \n",
" 1025.94,2440.24 1005.28,2398.92 1025.94,2357.59 1005.28,2316.27 984.615,2274.95 1025.94,2254.29 1005.28,2212.96 984.615,2171.64 1005.28,2130.32 1025.94,2088.99 \n",
" 1005.28,2047.67 1046.6,2068.33 1025.94,2027.01 1005.28,1985.68 984.615,1944.36 963.953,1903.04 1005.28,1923.7 1025.94,1882.38 1005.28,1841.05 984.615,1799.73 \n",
" 963.953,1758.41 1005.28,1737.74 1025.94,1696.42 1067.26,1675.76 1108.58,1655.1 1129.25,1613.77 1087.92,1593.11 1108.58,1551.79 1129.25,1510.47 1149.91,1469.14 \n",
" 1170.57,1427.82 1149.91,1386.5 1191.23,1365.83 1211.89,1324.51 1253.22,1303.85 1232.55,1262.53 1211.89,1221.2 1253.22,1200.54 1232.55,1241.86 1211.89,1200.54 \n",
" 1253.22,1179.88 1232.55,1221.2 1273.88,1200.54 1315.2,1179.88 1356.52,1159.22 1335.86,1200.54 1377.19,1221.2 1418.51,1200.54 1459.83,1179.88 1501.16,1159.22 \n",
" 1542.48,1179.88 1583.8,1200.54 1542.48,1221.2 1563.14,1179.88 1604.47,1159.22 1645.79,1138.56 1625.13,1179.88 1666.45,1159.22 1707.77,1138.56 1749.1,1117.89 \n",
" 1790.42,1097.23 1831.74,1076.57 1873.07,1055.91 1914.39,1035.25 1955.71,1014.59 1997.04,993.924 2038.36,973.262 2079.68,952.6 2121.01,931.939 2162.33,911.277 \n",
" 2141.67,952.6 2182.99,931.939 2224.32,911.277 2265.64,931.939 2306.96,911.277 2327.62,952.6 2368.95,973.262 2410.27,952.6 2430.93,993.924 2451.59,1035.25 \n",
" 2492.92,1014.59 2513.58,1055.91 2554.9,1035.25 2575.56,1076.57 2616.89,1055.91 2658.21,1035.25 2699.53,1014.59 2740.86,993.924 2782.18,973.262 2823.5,952.6 \n",
" 2864.83,973.262 2885.49,1014.59 2926.81,993.924 2968.14,1014.59 2947.47,1055.91 2988.8,1076.57 2968.14,1035.25 2926.81,1014.59 2968.14,993.924 2988.8,1035.25 \n",
" 2947.47,1014.59 2988.8,993.924 3009.46,1035.25 3030.12,1076.57 3009.46,1117.89 2988.8,1159.22 3009.46,1200.54 3030.12,1241.86 3009.46,1283.19 3030.12,1324.51 \n",
" 2988.8,1345.17 3009.46,1386.5 2988.8,1427.82 2968.14,1469.14 2988.8,1510.47 2947.47,1531.13 2926.81,1572.45 2947.47,1613.77 2968.14,1655.1 2988.8,1696.42 \n",
" 3009.46,1737.74 3030.12,1779.07 3050.78,1820.39 3009.46,1799.73 3030.12,1841.05 3050.78,1882.38 3071.44,1923.7 3092.11,1965.02 3112.77,2006.35 3071.44,1985.68 \n",
" 3092.11,2027.01 3050.78,2047.67 3009.46,2068.33 3030.12,2109.65 2988.8,2130.32 2968.14,2171.64 2988.8,2212.96 2968.14,2254.29 2947.47,2295.61 2906.15,2316.27 \n",
" 2885.49,2357.59 2864.83,2398.92 2823.5,2419.58 2802.84,2460.9 2823.5,2502.23 2844.17,2543.55 2802.84,2564.21 2823.5,2605.54 2802.84,2646.86 2761.52,2667.52 \n",
" 2740.86,2708.84 2699.53,2729.51 2658.21,2750.17 2616.89,2770.83 2575.56,2791.49 2534.24,2812.15 2513.58,2770.83 2472.26,2791.49 2451.59,2750.17 2410.27,2770.83 \n",
" 2368.95,2750.17 2327.62,2770.83 2286.3,2791.49 2244.98,2812.15 2203.65,2832.81 2224.32,2791.49 2182.99,2812.15 2141.67,2832.81 2100.35,2853.48 2059.02,2874.14 \n",
" 2017.7,2894.8 1976.38,2915.46 1935.05,2936.12 1893.73,2956.78 1852.41,2977.45 1811.08,2998.11 1769.76,3018.77 1728.44,3039.43 1687.11,3060.09 1707.77,3018.77 \n",
" 1666.45,3039.43 1625.13,3060.09 1583.8,3080.75 1604.47,3039.43 1563.14,3060.09 1542.48,3018.77 1501.16,3039.43 1459.83,3018.77 1418.51,2998.11 1377.19,2977.45 \n",
" 1356.52,2936.12 1315.2,2915.46 1273.88,2894.8 1253.22,2853.48 1211.89,2832.81 1191.23,2791.49 1170.57,2750.17 1149.91,2708.84 1129.25,2667.52 1108.58,2626.2 \n",
" 1087.92,2584.87 1067.26,2543.55 1046.6,2502.23 1025.94,2460.9 1005.28,2419.58 984.615,2378.26 963.953,2336.93 984.615,2295.61 1005.28,2254.29 1025.94,2212.96 \n",
" 1046.6,2171.64 1025.94,2130.32 1005.28,2088.99 984.615,2047.67 963.953,2006.35 984.615,1965.02 1025.94,1985.68 1005.28,1944.36 984.615,1903.04 963.953,1861.71 \n",
" 943.291,1820.39 984.615,1841.05 1005.28,1799.73 984.615,1758.41 1025.94,1737.74 1005.28,1696.42 1025.94,1655.1 1067.26,1634.44 1046.6,1593.11 1087.92,1572.45 \n",
" 1129.25,1551.79 1149.91,1510.47 1170.57,1469.14 1149.91,1427.82 1170.57,1386.5 1191.23,1345.17 1211.89,1303.85 1191.23,1262.53 1232.55,1283.19 1211.89,1241.86 \n",
" 1232.55,1200.54 1273.88,1179.88 1315.2,1159.22 1356.52,1179.88 1397.85,1159.22 1439.17,1179.88 1480.5,1159.22 1521.82,1179.88 1563.14,1159.22 1604.47,1138.56 \n",
" 1645.79,1117.89 1687.11,1097.23 1728.44,1117.89 1769.76,1097.23 1811.08,1076.57 1852.41,1055.91 1893.73,1035.25 1873.07,1076.57 1914.39,1055.91 1955.71,1035.25 \n",
" 1997.04,1014.59 2038.36,993.924 2079.68,973.262 2121.01,952.6 2162.33,931.939 2203.65,911.277 2244.98,890.615 2286.3,869.954 2265.64,911.277 2306.96,931.939 \n",
" 2348.29,911.277 2389.61,931.939 2410.27,973.262 2430.93,1014.59 2472.26,1035.25 2513.58,1014.59 2534.24,1055.91 2575.56,1035.25 2616.89,1014.59 2658.21,993.924 \n",
" 2699.53,973.262 2740.86,952.6 2761.52,993.924 2802.84,973.262 2844.17,952.6 2885.49,973.262 2906.15,1014.59 2947.47,993.924 2988.8,1014.59 3009.46,1055.91 \n",
" 3030.12,1097.23 2988.8,1117.89 3009.46,1159.22 2988.8,1200.54 3009.46,1241.86 3030.12,1283.19 3009.46,1324.51 3030.12,1365.83 3009.46,1407.16 2968.14,1427.82 \n",
" 2988.8,1469.14 2947.47,1489.8 2968.14,1531.13 2988.8,1572.45 2947.47,1551.79 2968.14,1593.11 2988.8,1634.44 3009.46,1675.76 2988.8,1717.08 3009.46,1758.41 \n",
" 3030.12,1799.73 3050.78,1841.05 3071.44,1882.38 3030.12,1861.71 3050.78,1903.04 3071.44,1944.36 3092.11,1985.68 3112.77,2027.01 3092.11,2068.33 3071.44,2109.65 \n",
" 3030.12,2130.32 2988.8,2150.98 3009.46,2192.3 3030.12,2233.62 2988.8,2254.29 2947.47,2274.95 2968.14,2316.27 2926.81,2336.93 2906.15,2378.26 2885.49,2419.58 \n",
" 2844.17,2440.24 2864.83,2481.56 2885.49,2522.89 2844.17,2502.23 2802.84,2481.56 2823.5,2522.89 2844.17,2564.21 2864.83,2605.54 2844.17,2646.86 2802.84,2667.52 \n",
" 2761.52,2688.18 2720.2,2708.84 2678.87,2729.51 2637.55,2750.17 2596.23,2770.83 2554.9,2791.49 2513.58,2812.15 2492.92,2770.83 2451.59,2791.49 2430.93,2750.17 \n",
" 2389.61,2770.83 2348.29,2791.49 2306.96,2770.83 2265.64,2791.49 2224.32,2812.15 2182.99,2832.81 2141.67,2853.48 2100.35,2874.14 2121.01,2832.81 2079.68,2853.48 \n",
" 2038.36,2874.14 1997.04,2894.8 1955.71,2915.46 1914.39,2936.12 1873.07,2956.78 1831.74,2977.45 1790.42,2998.11 1749.1,3018.77 1707.77,3039.43 1666.45,3060.09 \n",
" 1625.13,3080.75 1583.8,3060.09 1542.48,3080.75 1501.16,3060.09 1459.83,3039.43 1418.51,3018.77 1397.85,2977.45 1356.52,2956.78 1315.2,2936.12 1273.88,2915.46 \n",
" 1232.55,2894.8 1211.89,2853.48 1170.57,2832.81 1149.91,2791.49 1129.25,2750.17 1108.58,2708.84 1087.92,2667.52 1067.26,2626.2 1108.58,2646.86 1087.92,2605.54 \n",
" 1067.26,2564.21 1108.58,2584.87 1087.92,2543.55 1067.26,2502.23 1046.6,2460.9 1025.94,2419.58 1005.28,2378.26 984.615,2336.93 1005.28,2295.61 984.615,2254.29 \n",
" 963.953,2212.96 1005.28,2192.3 984.615,2150.98 1005.28,2109.65 984.615,2068.33 963.953,2027.01 984.615,1985.68 1025.94,2006.35 1005.28,1965.02 984.615,1923.7 \n",
" 963.953,1882.38 943.291,1841.05 984.615,1861.71 1005.28,1820.39 984.615,1779.07 963.953,1737.74 1005.28,1717.08 1025.94,1675.76 1046.6,1634.44 1067.26,1593.11 \n",
" 1087.92,1551.79 1129.25,1531.13 1149.91,1489.8 1170.57,1448.48 1149.91,1407.16 1129.25,1365.83 1170.57,1345.17 1191.23,1303.85 1170.57,1262.53 1191.23,1221.2 \n",
" 1211.89,1179.88 1253.22,1159.22 1294.54,1179.88 1335.86,1159.22 1377.19,1179.88 1418.51,1159.22 1459.83,1138.56 1501.16,1117.89 1521.82,1159.22 1563.14,1138.56 \n",
" 1604.47,1117.89 1583.8,1159.22 1625.13,1138.56 1666.45,1117.89 1707.77,1097.23 1749.1,1076.57 1790.42,1055.91 1831.74,1035.25 1873.07,1014.59 1914.39,993.924 \n",
" 1955.71,973.262 1935.05,1014.59 1976.38,993.924 2017.7,973.262 2059.02,952.6 2100.35,931.939 2141.67,911.277 2182.99,890.615 2224.32,869.954 2244.98,911.277 \n",
" 2286.3,931.939 2327.62,911.277 2368.95,931.939 2389.61,973.262 2410.27,1014.59 2451.59,993.924 2492.92,973.262 2534.24,993.924 2575.56,973.262 2596.23,1014.59 \n",
" 2637.55,993.924 2678.87,973.262 2658.21,1014.59 2699.53,993.924 2740.86,973.262 2782.18,952.6 2823.5,931.939 2864.83,952.6 2885.49,993.924 2926.81,973.262 \n",
" 2968.14,952.6 3009.46,973.262 3030.12,1014.59 3050.78,1055.91 3009.46,1076.57 3030.12,1117.89 2988.8,1138.56 3009.46,1179.88 3030.12,1221.2 3009.46,1262.53 \n",
" 3030.12,1303.85 3050.78,1345.17 3009.46,1365.83 3030.12,1407.16 3009.46,1448.48 2988.8,1489.8 3009.46,1531.13 2968.14,1551.79 2988.8,1593.11 3009.46,1634.44 \n",
" 2968.14,1613.77 2988.8,1655.1 3009.46,1696.42 3030.12,1737.74 3050.78,1779.07 3071.44,1820.39 3050.78,1861.71 3071.44,1903.04 3092.11,1944.36 3112.77,1985.68 \n",
" 3133.43,2027.01 3092.11,2047.67 3071.44,2088.99 3050.78,2130.32 3009.46,2150.98 2988.8,2192.3 3009.46,2233.62 2988.8,2274.95 3009.46,2316.27 2968.14,2336.93 \n",
" 2926.81,2357.59 2906.15,2398.92 2864.83,2419.58 2823.5,2440.24 2844.17,2481.56 2864.83,2522.89 2885.49,2564.21 2844.17,2584.87 2802.84,2605.54 2823.5,2646.86 \n",
" 2782.18,2667.52 2761.52,2708.84 2720.2,2729.51 2678.87,2750.17 2637.55,2770.83 2596.23,2791.49 2554.9,2812.15 2513.58,2832.81 2492.92,2791.49 2451.59,2770.83 \n",
" 2410.27,2791.49 2368.95,2770.83 2327.62,2791.49 2286.3,2812.15 2244.98,2832.81 2203.65,2853.48 2162.33,2874.14 2121.01,2894.8 2079.68,2915.46 2038.36,2894.8 \n",
" 1997.04,2915.46 1955.71,2936.12 1914.39,2956.78 1873.07,2977.45 1831.74,2998.11 1790.42,3018.77 1749.1,3039.43 1707.77,3060.09 1666.45,3080.75 1625.13,3101.42 \n",
" 1604.47,3060.09 1563.14,3080.75 1521.82,3060.09 1480.5,3039.43 1439.17,3018.77 1418.51,2977.45 1377.19,2956.78 1335.86,2936.12 1294.54,2915.46 1253.22,2894.8 \n",
" 1211.89,2874.14 1170.57,2853.48 1149.91,2812.15 1129.25,2770.83 1108.58,2729.51 1087.92,2688.18 1067.26,2646.86 1046.6,2605.54 1087.92,2626.2 1067.26,2584.87 \n",
" 1046.6,2543.55 1025.94,2502.23 1005.28,2460.9 984.615,2419.58 963.953,2378.26 943.291,2336.93 984.615,2316.27 963.953,2274.95 984.615,2233.62 963.953,2192.3 \n",
" 1005.28,2171.64 984.615,2130.32 1025.94,2109.65 1005.28,2068.33 984.615,2027.01 963.953,1985.68 943.291,1944.36 922.63,1903.04 963.953,1923.7 984.615,1882.38 \n",
" 963.953,1841.05 943.291,1799.73 922.63,1758.41 943.291,1717.08 984.615,1696.42 1005.28,1655.1 1025.94,1613.77 1046.6,1572.45 1067.26,1531.13 1108.58,1510.47 \n",
" 1129.25,1469.14 1108.58,1427.82 1149.91,1448.48 1170.57,1407.16 1149.91,1365.83 1170.57,1324.51 1191.23,1283.19 1170.57,1241.86 1191.23,1200.54 1232.55,1179.88 \n",
" 1273.88,1159.22 1315.2,1138.56 1356.52,1117.89 1377.19,1159.22 1418.51,1138.56 1397.85,1179.88 1439.17,1159.22 1480.5,1138.56 1521.82,1117.89 1542.48,1159.22 \n",
" 1583.8,1138.56 1625.13,1117.89 1666.45,1097.23 1707.77,1117.89 1749.1,1097.23 1790.42,1076.57 1831.74,1055.91 1873.07,1035.25 1914.39,1014.59 1955.71,993.924 \n",
" 1997.04,973.262 2038.36,952.6 2079.68,931.939 2121.01,911.277 2162.33,890.615 2203.65,869.954 2244.98,849.292 2265.64,890.615 2306.96,869.954 2348.29,890.615 \n",
" 2389.61,911.277 2430.93,931.939 2451.59,973.262 2492.92,993.924 2534.24,1014.59 2575.56,993.924 2596.23,1035.25 2637.55,1014.59 2678.87,993.924 2720.2,973.262 \n",
" 2761.52,952.6 2802.84,931.939 2844.17,911.277 2885.49,931.939 2906.15,973.262 2947.47,952.6 2988.8,973.262 3009.46,1014.59 3030.12,1055.91 3009.46,1097.23 \n",
" 3030.12,1138.56 3050.78,1179.88 3071.44,1221.2 3030.12,1200.54 3050.78,1241.86 3009.46,1221.2 3030.12,1262.53 3009.46,1303.85 3030.12,1345.17 3050.78,1386.5 \n",
" 3030.12,1427.82 2988.8,1448.48 2968.14,1489.8 2988.8,1531.13 2968.14,1572.45 2988.8,1613.77 3009.46,1655.1 3030.12,1696.42 3050.78,1737.74 3009.46,1717.08 \n",
" 3030.12,1758.41 3050.78,1799.73 3071.44,1841.05 3092.11,1882.38 3112.77,1923.7 3133.43,1965.02 3154.09,2006.35 3133.43,2047.67 3112.77,2088.99 3092.11,2130.32 \n",
" 3050.78,2150.98 3009.46,2171.64 3030.12,2212.96 3009.46,2254.29 2988.8,2295.61 3009.46,2336.93 2968.14,2357.59 2926.81,2378.26 2906.15,2419.58 2864.83,2440.24 \n",
" 2885.49,2481.56 2844.17,2460.9 2864.83,2502.23 2885.49,2543.55 2864.83,2584.87 2844.17,2626.2 2823.5,2667.52 2782.18,2688.18 2761.52,2729.51 2720.2,2750.17 \n",
" 2678.87,2770.83 2637.55,2791.49 2596.23,2812.15 2554.9,2832.81 2513.58,2853.48 2492.92,2812.15 2472.26,2770.83 2430.93,2791.49 2389.61,2812.15 2348.29,2832.81 \n",
" 2368.95,2791.49 2327.62,2812.15 2286.3,2832.81 2306.96,2791.49 2265.64,2812.15 2224.32,2832.81 2182.99,2853.48 2141.67,2874.14 2100.35,2894.8 2059.02,2915.46 \n",
" 2017.7,2936.12 1976.38,2956.78 1935.05,2977.45 1893.73,2998.11 1852.41,3018.77 1811.08,3039.43 1769.76,3060.09 1728.44,3080.75 1687.11,3101.42 1645.79,3080.75 \n",
" 1604.47,3101.42 1563.14,3122.08 1521.82,3101.42 1542.48,3060.09 1501.16,3080.75 1459.83,3060.09 1418.51,3039.43 1397.85,2998.11 1356.52,2977.45 1315.2,2956.78 \n",
" 1273.88,2936.12 1232.55,2915.46 1191.23,2894.8 1149.91,2874.14 1191.23,2853.48 1170.57,2812.15 1149.91,2770.83 1129.25,2729.51 1108.58,2688.18 1087.92,2646.86 \n",
" 1067.26,2605.54 1046.6,2564.21 1025.94,2522.89 1005.28,2481.56 984.615,2440.24 963.953,2398.92 984.615,2357.59 963.953,2316.27 943.291,2274.95 963.953,2233.62 \n",
" 984.615,2192.3 1005.28,2150.98 984.615,2109.65 963.953,2068.33 943.291,2027.01 984.615,2006.35 963.953,1965.02 943.291,1923.7 922.63,1882.38 901.968,1841.05 \n",
" 943.291,1861.71 963.953,1820.39 943.291,1779.07 922.63,1737.74 963.953,1717.08 984.615,1675.76 1005.28,1634.44 1046.6,1613.77 1087.92,1634.44 1046.6,1655.1 \n",
" 1005.28,1675.76 1025.94,1634.44 1005.28,1593.11 1025.94,1551.79 1067.26,1572.45 1087.92,1531.13 1108.58,1489.8 1129.25,1448.48 1108.58,1407.16 1087.92,1365.83 \n",
" 1129.25,1345.17 1149.91,1303.85 1191.23,1324.51 1170.57,1283.19 1191.23,1241.86 1170.57,1200.54 1191.23,1159.22 1232.55,1138.56 1273.88,1117.89 1294.54,1159.22 \n",
" 1335.86,1138.56 1377.19,1117.89 1418.51,1097.23 1439.17,1138.56 1480.5,1117.89 1521.82,1138.56 1563.14,1117.89 1604.47,1097.23 1645.79,1076.57 1687.11,1055.91 \n",
" 1728.44,1076.57 1769.76,1055.91 1811.08,1035.25 1852.41,1014.59 1893.73,993.924 1935.05,973.262 1976.38,952.6 2017.7,931.939 2059.02,911.277 2100.35,890.615 \n",
" 2141.67,869.954 2182.99,849.292 2203.65,890.615 2244.98,869.954 2286.3,890.615 2327.62,869.954 2368.95,890.615 2348.29,931.939 2327.62,890.615 2368.95,869.954 \n",
" 2410.27,890.615 2451.59,911.277 2472.26,952.6 2513.58,973.262 2554.9,993.924 2596.23,973.262 2637.55,952.6 2678.87,931.939 2658.21,973.262 2699.53,952.6 \n",
" 2740.86,931.939 2782.18,911.277 2802.84,952.6 2844.17,931.939 2885.49,952.6 2926.81,931.939 2947.47,973.262 2988.8,952.6 3009.46,993.924 3030.12,1035.25 \n",
" 3050.78,1076.57 3071.44,1117.89 3050.78,1159.22 3009.46,1138.56 3030.12,1179.88 3050.78,1221.2 3071.44,1262.53 3050.78,1303.85 3071.44,1345.17 3092.11,1386.5 \n",
" 3050.78,1407.16 3009.46,1427.82 3030.12,1469.14 3009.46,1510.47 2988.8,1551.79 2968.14,1510.47 3009.46,1489.8 3030.12,1531.13 3009.46,1572.45 3030.12,1613.77 \n",
" 3050.78,1655.1 3071.44,1696.42 3030.12,1717.08 3050.78,1758.41 3071.44,1799.73 3092.11,1841.05 3112.77,1882.38 3071.44,1861.71 3092.11,1903.04 3112.77,1944.36 \n",
" 3133.43,1985.68 3154.09,2027.01 3133.43,2068.33 3092.11,2088.99 3071.44,2130.32 3050.78,2171.64 3071.44,2212.96 3030.12,2192.3 3050.78,2233.62 3009.46,2212.96 \n",
" 3030.12,2254.29 3009.46,2295.61 2988.8,2336.93 2947.47,2357.59 2926.81,2398.92 2906.15,2440.24 2864.83,2460.9 2885.49,2502.23 2864.83,2543.55 2885.49,2584.87 \n",
" 2844.17,2605.54 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2844.17,2605.54 2864.83,2646.86 2844.17,2688.18 2802.84,2708.84 2782.18,2750.17 2740.86,2729.51 2782.18,2708.84 2761.52,2750.17 2802.84,2729.51 2782.18,2770.83 \n",
" 2740.86,2750.17 2782.18,2729.51 2802.84,2688.18 2823.5,2729.51 2802.84,2770.83 2761.52,2791.49 2720.2,2770.83 2678.87,2791.49 2699.53,2750.17 2658.21,2770.83 \n",
" 2616.89,2791.49 2575.56,2812.15 2534.24,2832.81 2492.92,2853.48 2472.26,2812.15 2430.93,2832.81 2389.61,2853.48 2368.95,2812.15 2327.62,2832.81 2286.3,2853.48 \n",
" 2306.96,2812.15 2265.64,2832.81 2224.32,2853.48 2182.99,2874.14 2141.67,2894.8 2162.33,2853.48 2121.01,2874.14 2079.68,2894.8 2038.36,2915.46 1997.04,2936.12 \n",
" 1955.71,2956.78 1914.39,2977.45 1873.07,2998.11 1831.74,3018.77 1790.42,3039.43 1749.1,3060.09 1707.77,3080.75 1666.45,3101.42 1645.79,3060.09 1604.47,3080.75 \n",
" 1563.14,3101.42 1521.82,3080.75 1480.5,3060.09 1439.17,3039.43 1397.85,3018.77 1356.52,2998.11 1335.86,2956.78 1294.54,2936.12 1253.22,2915.46 1232.55,2874.14 \n",
" 1211.89,2915.46 1191.23,2874.14 1149.91,2853.48 1129.25,2812.15 1108.58,2770.83 1087.92,2729.51 1067.26,2688.18 1046.6,2646.86 1025.94,2605.54 1005.28,2564.21 \n",
" 1046.6,2584.87 1025.94,2543.55 1005.28,2502.23 1046.6,2522.89 1025.94,2481.56 1005.28,2440.24 984.615,2398.92 963.953,2357.59 943.291,2316.27 922.63,2274.95 \n",
" 963.953,2254.29 984.615,2212.96 963.953,2171.64 943.291,2130.32 963.953,2088.99 943.291,2047.67 922.63,2006.35 943.291,1965.02 922.63,1923.7 963.953,1944.36 \n",
" 943.291,1903.04 922.63,1861.71 901.968,1820.39 922.63,1779.07 963.953,1799.73 943.291,1758.41 984.615,1737.74 963.953,1696.42 984.615,1655.1 1005.28,1613.77 \n",
" 1025.94,1572.45 1067.26,1551.79 1108.58,1531.13 1129.25,1489.8 1108.58,1448.48 1129.25,1407.16 1108.58,1365.83 1149.91,1345.17 1170.57,1303.85 1149.91,1262.53 \n",
" 1170.57,1221.2 1191.23,1179.88 1232.55,1159.22 1273.88,1138.56 1315.2,1117.89 1356.52,1138.56 1397.85,1117.89 1439.17,1097.23 1480.5,1076.57 1459.83,1117.89 \n",
" 1501.16,1138.56 1542.48,1117.89 1583.8,1097.23 1625.13,1076.57 1666.45,1055.91 1645.79,1097.23 1687.11,1117.89 1728.44,1097.23 1769.76,1076.57 1811.08,1055.91 \n",
" 1852.41,1035.25 1893.73,1014.59 1935.05,993.924 1976.38,973.262 2017.7,952.6 2059.02,931.939 2100.35,911.277 2141.67,890.615 2182.99,869.954 2224.32,890.615 \n",
" 2265.64,869.954 2306.96,890.615 2348.29,869.954 2389.61,890.615 2410.27,931.939 2430.93,973.262 2451.59,1014.59 2472.26,973.262 2513.58,993.924 2554.9,1014.59 \n",
" 2596.23,993.924 2637.55,973.262 2678.87,952.6 2720.2,931.939 2761.52,911.277 2802.84,890.615 2782.18,931.939 2823.5,911.277 2864.83,931.939 2906.15,952.6 \n",
" 2947.47,931.939 2968.14,973.262 3009.46,952.6 3030.12,993.924 3050.78,1035.25 3071.44,1076.57 3050.78,1117.89 3030.12,1159.22 3050.78,1200.54 3071.44,1241.86 \n",
" 3050.78,1283.19 3071.44,1324.51 3050.78,1365.83 3071.44,1407.16 3050.78,1448.48 3009.46,1469.14 3030.12,1510.47 3009.46,1551.79 3030.12,1593.11 3050.78,1634.44 \n",
" 3009.46,1613.77 3030.12,1655.1 3050.78,1696.42 3071.44,1737.74 3092.11,1779.07 3112.77,1820.39 3092.11,1861.71 3112.77,1903.04 3133.43,1944.36 3092.11,1923.7 \n",
" 3112.77,1965.02 3133.43,2006.35 3154.09,2047.67 3112.77,2068.33 3092.11,2109.65 3071.44,2150.98 3030.12,2171.64 3050.78,2212.96 3071.44,2254.29 3030.12,2274.95 \n",
" 3050.78,2316.27 3030.12,2357.59 2988.8,2378.26 2947.47,2398.92 2926.81,2440.24 2885.49,2460.9 2906.15,2502.23 2926.81,2543.55 2906.15,2584.87 2885.49,2626.2 \n",
" 2864.83,2667.52 2823.5,2688.18 2844.17,2729.51 2802.84,2750.17 2761.52,2770.83 2720.2,2791.49 2678.87,2812.15 2699.53,2770.83 2658.21,2791.49 2616.89,2812.15 \n",
" 2575.56,2832.81 2534.24,2853.48 2492.92,2832.81 2451.59,2812.15 2430.93,2770.83 2389.61,2791.49 2348.29,2812.15 2306.96,2832.81 2265.64,2853.48 2224.32,2874.14 \n",
" 2182.99,2894.8 2141.67,2915.46 2100.35,2936.12 2059.02,2956.78 2017.7,2977.45 2038.36,2936.12 2059.02,2894.8 2017.7,2915.46 1976.38,2936.12 1935.05,2956.78 \n",
" 1893.73,2977.45 1852.41,2998.11 1811.08,3018.77 1769.76,3039.43 1728.44,3060.09 1687.11,3080.75 1645.79,3101.42 1604.47,3122.08 1563.14,3142.74 1542.48,3101.42 \n",
" 1501.16,3122.08 1480.5,3080.75 1439.17,3060.09 1397.85,3039.43 1377.19,2998.11 1335.86,2977.45 1294.54,2956.78 1253.22,2936.12 1211.89,2956.78 1191.23,2915.46 \n",
" 1170.57,2874.14 1149.91,2832.81 1129.25,2791.49 1108.58,2750.17 1087.92,2708.84 1067.26,2667.52 1046.6,2626.2 1025.94,2584.87 1005.28,2543.55 984.615,2502.23 \n",
" 963.953,2460.9 943.291,2419.58 922.63,2378.26 901.968,2336.93 943.291,2357.59 922.63,2316.27 963.953,2295.61 943.291,2254.29 922.63,2212.96 943.291,2171.64 \n",
" 963.953,2130.32 984.615,2088.99 963.953,2047.67 943.291,2006.35 922.63,1965.02 901.968,1923.7 881.306,1882.38 860.645,1841.05 901.968,1861.71 943.291,1882.38 \n",
" 922.63,1841.05 901.968,1799.73 881.306,1758.41 901.968,1717.08 943.291,1696.42 984.615,1717.08 963.953,1675.76 984.615,1634.44 963.953,1593.11 1005.28,1572.45 \n",
" 1046.6,1551.79 1067.26,1510.47 1087.92,1469.14 1067.26,1427.82 1087.92,1386.5 1108.58,1345.17 1149.91,1324.51 1129.25,1283.19 1149.91,1241.86 1129.25,1200.54 \n",
" 1170.57,1179.88 1211.89,1159.22 1253.22,1138.56 1294.54,1117.89 1335.86,1097.23 1377.19,1076.57 1418.51,1055.91 1397.85,1097.23 1377.19,1138.56 1418.51,1117.89 \n",
" 1459.83,1097.23 1501.16,1076.57 1542.48,1097.23 1583.8,1117.89 1542.48,1138.56 1563.14,1097.23 1604.47,1076.57 1645.79,1055.91 1625.13,1097.23 1666.45,1076.57 \n",
" 1707.77,1055.91 1749.1,1035.25 1790.42,1014.59 1831.74,993.924 1873.07,973.262 1914.39,952.6 1955.71,931.939 1997.04,952.6 2038.36,931.939 2079.68,911.277 \n",
" 2121.01,890.615 2162.33,869.954 2203.65,849.292 2244.98,828.63 2286.3,849.292 2327.62,828.63 2368.95,849.292 2410.27,869.954 2430.93,911.277 2451.59,952.6 \n",
" 2472.26,993.924 2492.92,952.6 2534.24,973.262 2575.56,952.6 2616.89,973.262 2658.21,952.6 2699.53,931.939 2740.86,911.277 2720.2,952.6 2761.52,931.939 \n",
" 2802.84,911.277 2844.17,890.615 2885.49,911.277 2926.81,890.615 2906.15,931.939 2947.47,911.277 2926.81,952.6 2968.14,931.939 3009.46,911.277 3030.12,952.6 \n",
" 3050.78,993.924 3071.44,1035.25 3092.11,1076.57 3050.78,1097.23 3071.44,1138.56 3092.11,1179.88 3112.77,1221.2 3071.44,1200.54 3092.11,1241.86 3050.78,1262.53 \n",
" 3071.44,1303.85 3092.11,1345.17 3050.78,1324.51 3071.44,1365.83 3092.11,1407.16 3050.78,1427.82 3071.44,1469.14 3030.12,1489.8 3050.78,1531.13 3030.12,1572.45 \n",
" 3050.78,1613.77 3009.46,1593.11 3030.12,1634.44 3050.78,1675.76 3071.44,1717.08 3092.11,1758.41 3112.77,1799.73 3071.44,1779.07 3092.11,1820.39 3112.77,1861.71 \n",
" 3133.43,1903.04 3154.09,1944.36 3174.75,1985.68 3195.41,2027.01 3174.75,2068.33 3133.43,2088.99 3112.77,2130.32 3092.11,2171.64 3050.78,2192.3 3071.44,2233.62 \n",
" 3050.78,2274.95 3030.12,2316.27 3009.46,2357.59 2968.14,2378.26 2947.47,2419.58 2926.81,2460.9 2885.49,2440.24 2906.15,2481.56 2926.81,2522.89 2906.15,2564.21 \n",
" 2885.49,2605.54 2906.15,2646.86 2864.83,2626.2 2844.17,2667.52 2823.5,2708.84 2844.17,2750.17 2823.5,2791.49 2782.18,2812.15 2740.86,2791.49 2699.53,2812.15 \n",
" 2658.21,2832.81 2616.89,2853.48 2637.55,2812.15 2596.23,2832.81 2554.9,2853.48 2513.58,2874.14 2472.26,2853.48 2430.93,2874.14 2410.27,2832.81 2368.95,2853.48 \n",
" 2327.62,2874.14 2286.3,2894.8 2306.96,2853.48 2265.64,2874.14 2224.32,2894.8 2244.98,2853.48 2203.65,2874.14 2162.33,2894.8 2121.01,2915.46 2079.68,2936.12 \n",
" 2038.36,2956.78 1997.04,2977.45 1955.71,2998.11 1914.39,3018.77 1873.07,3039.43 1831.74,3060.09 1790.42,3080.75 1749.1,3101.42 1707.77,3122.08 1666.45,3142.74 \n",
" 1625.13,3122.08 1583.8,3101.42 1542.48,3122.08 1501.16,3101.42 1459.83,3080.75 1418.51,3060.09 1377.19,3039.43 1335.86,3018.77 1315.2,2977.45 1273.88,2956.78 \n",
" 1232.55,2936.12 1211.89,2894.8 1170.57,2915.46 1129.25,2894.8 1108.58,2853.48 1087.92,2812.15 1129.25,2832.81 1108.58,2791.49 1087.92,2750.17 1067.26,2708.84 \n",
" 1046.6,2667.52 1025.94,2626.2 1005.28,2584.87 984.615,2543.55 1025.94,2564.21 1005.28,2522.89 984.615,2481.56 963.953,2440.24 943.291,2398.92 922.63,2357.59 \n",
" 901.968,2316.27 943.291,2295.61 922.63,2254.29 943.291,2212.96 922.63,2171.64 963.953,2150.98 943.291,2109.65 922.63,2068.33 901.968,2027.01 922.63,1985.68 \n",
" 901.968,1944.36 881.306,1903.04 860.645,1861.71 901.968,1882.38 881.306,1841.05 922.63,1820.39 901.968,1779.07 881.306,1737.74 922.63,1717.08 943.291,1675.76 \n",
" 963.953,1634.44 984.615,1593.11 1005.28,1551.79 1046.6,1531.13 1087.92,1510.47 1108.58,1469.14 1129.25,1427.82 1108.58,1386.5 1087.92,1345.17 1129.25,1324.51 \n",
" 1149.91,1283.19 1129.25,1241.86 1149.91,1200.54 1170.57,1159.22 1211.89,1138.56 1253.22,1117.89 1294.54,1138.56 1335.86,1117.89 1377.19,1097.23 1397.85,1138.56 \n",
" 1439.17,1117.89 1480.5,1097.23 1521.82,1076.57 1563.14,1055.91 1604.47,1035.25 1583.8,1076.57 1625.13,1055.91 1666.45,1035.25 1687.11,1076.57 1728.44,1055.91 \n",
" 1769.76,1035.25 1811.08,1014.59 1852.41,993.924 1893.73,973.262 1935.05,952.6 1976.38,931.939 2017.7,911.277 2059.02,890.615 2100.35,869.954 2141.67,849.292 \n",
" 2182.99,828.63 2224.32,849.292 2265.64,828.63 2306.96,849.292 2348.29,828.63 2389.61,849.292 2430.93,869.954 2410.27,911.277 2430.93,952.6 2472.26,931.939 \n",
" 2513.58,952.6 2554.9,973.262 2596.23,952.6 2637.55,931.939 2678.87,911.277 2720.2,890.615 2761.52,869.954 2802.84,849.292 2823.5,890.615 2864.83,911.277 \n",
" 2906.15,890.615 2947.47,869.954 2968.14,911.277 3009.46,931.939 3030.12,973.262 3050.78,1014.59 3071.44,1055.91 3092.11,1097.23 3112.77,1138.56 3071.44,1159.22 \n",
" 3092.11,1200.54 3112.77,1241.86 3092.11,1283.19 3112.77,1324.51 3092.11,1365.83 3112.77,1407.16 3071.44,1427.82 3030.12,1448.48 3050.78,1489.8 3071.44,1531.13 \n",
" 3030.12,1551.79 3050.78,1593.11 3071.44,1634.44 3092.11,1675.76 3112.77,1717.08 3133.43,1758.41 3092.11,1737.74 3050.78,1717.08 3030.12,1675.76 3071.44,1655.1 \n",
" 3092.11,1696.42 3112.77,1737.74 3071.44,1758.41 3092.11,1799.73 3112.77,1841.05 3133.43,1882.38 3154.09,1923.7 3174.75,1965.02 3195.41,2006.35 3154.09,1985.68 \n",
" 3174.75,2027.01 3154.09,2068.33 3133.43,2109.65 3112.77,2150.98 3071.44,2171.64 3092.11,2212.96 3112.77,2254.29 3071.44,2274.95 3030.12,2295.61 2988.8,2316.27 \n",
" 2947.47,2336.93 2988.8,2357.59 2947.47,2378.26 2926.81,2419.58 2906.15,2460.9 2926.81,2502.23 2906.15,2543.55 2926.81,2584.87 2906.15,2626.2 2885.49,2667.52 \n",
" 2864.83,2708.84 2885.49,2750.17 2844.17,2770.83 2802.84,2791.49 2823.5,2750.17 2844.17,2791.49 2802.84,2812.15 2823.5,2770.83 2782.18,2791.49 2740.86,2770.83 \n",
" 2699.53,2791.49 2658.21,2812.15 2616.89,2832.81 2575.56,2853.48 2534.24,2874.14 2492.92,2894.8 2451.59,2874.14 2472.26,2832.81 2430.93,2812.15 2389.61,2832.81 \n",
" 2348.29,2853.48 2306.96,2874.14 2265.64,2894.8 2224.32,2915.46 2244.98,2874.14 2203.65,2894.8 2162.33,2915.46 2121.01,2936.12 2079.68,2956.78 2100.35,2915.46 \n",
" 2059.02,2936.12 2017.7,2956.78 1976.38,2977.45 1935.05,2998.11 1893.73,3018.77 1852.41,3039.43 1811.08,3060.09 1769.76,3080.75 1728.44,3101.42 1687.11,3122.08 \n",
" 1645.79,3142.74 1604.47,3163.4 1583.8,3122.08 1542.48,3142.74 1501.16,3163.4 1480.5,3122.08 1439.17,3101.42 1397.85,3080.75 1356.52,3060.09 1377.19,3018.77 \n",
" 1335.86,2998.11 1294.54,2977.45 1253.22,2956.78 1211.89,2936.12 1170.57,2956.78 1149.91,2915.46 1129.25,2874.14 1108.58,2832.81 1087.92,2791.49 1067.26,2750.17 \n",
" 1046.6,2708.84 1025.94,2667.52 1005.28,2626.2 984.615,2584.87 963.953,2543.55 943.291,2502.23 984.615,2522.89 963.953,2481.56 943.291,2440.24 984.615,2460.9 \n",
" 963.953,2419.58 943.291,2378.26 922.63,2336.93 901.968,2295.61 881.306,2254.29 922.63,2233.62 943.291,2192.3 922.63,2150.98 901.968,2109.65 943.291,2088.99 \n",
" 922.63,2047.67 901.968,2006.35 943.291,1985.68 922.63,1944.36 901.968,1903.04 881.306,1861.71 860.645,1820.39 881.306,1779.07 922.63,1799.73 901.968,1758.41 \n",
" 943.291,1737.74 922.63,1696.42 943.291,1655.1 963.953,1613.77 984.615,1572.45 1025.94,1593.11 984.615,1613.77 963.953,1572.45 984.615,1531.13 1025.94,1510.47 \n",
" 1067.26,1489.8 1087.92,1448.48 1067.26,1407.16 1046.6,1365.83 1067.26,1324.51 1108.58,1303.85 1129.25,1262.53 1149.91,1221.2 1129.25,1179.88 1149.91,1138.56 \n",
" 1191.23,1117.89 1232.55,1097.23 1273.88,1076.57 1315.2,1097.23 1356.52,1076.57 1397.85,1055.91 1439.17,1076.57 1480.5,1055.91 1501.16,1097.23 1542.48,1076.57 \n",
" 1583.8,1055.91 1625.13,1035.25 1666.45,1014.59 1707.77,1035.25 1749.1,1055.91 1707.77,1076.57 1728.44,1035.25 1769.76,1014.59 1811.08,993.924 1790.42,1035.25 \n",
" 1831.74,1014.59 1873.07,993.924 1914.39,973.262 1955.71,952.6 1997.04,931.939 2038.36,911.277 2079.68,890.615 2121.01,869.954 2162.33,849.292 2203.65,828.63 \n",
" 2244.98,807.969 2265.64,849.292 2306.96,828.63 2348.29,849.292 2389.61,869.954 2430.93,890.615 2451.59,931.939 2492.92,911.277 2534.24,931.939 2575.56,911.277 \n",
" 2554.9,952.6 2596.23,931.939 2637.55,911.277 2616.89,952.6 2658.21,931.939 2699.53,911.277 2740.86,890.615 2782.18,869.954 2823.5,849.292 2864.83,869.954 \n",
" 2906.15,849.292 2885.49,890.615 2926.81,911.277 2968.14,890.615 2988.8,931.939 3030.12,911.277 3050.78,952.6 3071.44,993.924 3092.11,1035.25 3112.77,1076.57 \n",
" 3071.44,1097.23 3050.78,1138.56 3071.44,1179.88 3092.11,1221.2 3112.77,1262.53 3071.44,1283.19 3092.11,1324.51 3112.77,1365.83 3071.44,1386.5 3092.11,1427.82 \n",
" 3112.77,1469.14 3071.44,1489.8 3092.11,1531.13 3050.78,1551.79 3071.44,1593.11 3092.11,1634.44 3071.44,1675.76 3092.11,1717.08 3112.77,1758.41 3133.43,1799.73 \n",
" 3154.09,1841.05 3174.75,1882.38 3133.43,1861.71 3154.09,1903.04 3174.75,1944.36 3133.43,1923.7 3154.09,1965.02 3174.75,2006.35 3195.41,2047.67 3174.75,2088.99 \n",
" 3154.09,2130.32 3112.77,2109.65 3092.11,2150.98 3071.44,2192.3 3092.11,2233.62 3050.78,2254.29 3009.46,2274.95 3050.78,2295.61 3030.12,2336.93 3009.46,2378.26 \n",
" 2968.14,2398.92 2947.47,2440.24 2926.81,2481.56 2906.15,2522.89 2926.81,2564.21 2906.15,2605.54 2885.49,2646.86 2864.83,2688.18 2885.49,2729.51 2844.17,2708.84 \n",
" 2864.83,2750.17 2885.49,2791.49 2844.17,2812.15 2864.83,2770.83 2885.49,2812.15 2844.17,2832.81 2864.83,2791.49 2823.5,2812.15 2782.18,2832.81 2740.86,2812.15 \n",
" 2699.53,2832.81 2658.21,2853.48 2616.89,2874.14 2637.55,2832.81 2596.23,2853.48 2554.9,2874.14 2513.58,2894.8 2472.26,2874.14 2451.59,2832.81 2410.27,2812.15 \n",
" 2368.95,2832.81 2327.62,2853.48 2286.3,2874.14 2244.98,2894.8 2203.65,2915.46 2162.33,2936.12 2121.01,2956.78 2079.68,2977.45 2038.36,2998.11 1997.04,3018.77 \n",
" 1955.71,3039.43 1976.38,2998.11 1997.04,2956.78 1955.71,2977.45 1914.39,2998.11 1873.07,3018.77 1831.74,3039.43 1790.42,3060.09 1749.1,3080.75 1707.77,3101.42 \n",
" 1666.45,3122.08 1625.13,3142.74 1583.8,3163.4 1542.48,3184.06 1521.82,3142.74 1480.5,3163.4 1459.83,3122.08 1439.17,3080.75 1397.85,3060.09 1356.52,3039.43 \n",
" 1315.2,3018.77 1273.88,2998.11 1232.55,2977.45 1191.23,2956.78 1149.91,2936.12 1170.57,2894.8 1129.25,2915.46 1108.58,2874.14 1149.91,2894.8 1129.25,2853.48 \n",
" 1108.58,2812.15 1087.92,2770.83 1067.26,2729.51 1046.6,2688.18 1025.94,2646.86 1005.28,2605.54 984.615,2564.21 963.953,2522.89 943.291,2481.56 922.63,2440.24 \n",
" 901.968,2398.92 881.306,2357.59 860.645,2316.27 881.306,2274.95 922.63,2295.61 901.968,2254.29 943.291,2233.62 922.63,2192.3 943.291,2150.98 963.953,2109.65 \n",
" 943.291,2068.33 922.63,2027.01 901.968,1985.68 881.306,1944.36 860.645,1903.04 839.983,1861.71 819.321,1820.39 860.645,1799.73 839.983,1758.41 860.645,1717.08 \n",
" 901.968,1696.42 922.63,1655.1 943.291,1613.77 963.953,1655.1 922.63,1634.44 943.291,1593.11 963.953,1551.79 1005.28,1531.13 1046.6,1510.47 1087.92,1489.8 \n",
" 1067.26,1448.48 1087.92,1407.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1087.92,1407.16 1067.26,1365.83 1087.92,1324.51 1129.25,1303.85 1108.58,1262.53 1129.25,1221.2 1149.91,1179.88 1170.57,1138.56 1211.89,1117.89 1253.22,1097.23 \n",
" 1294.54,1076.57 1335.86,1055.91 1356.52,1097.23 1397.85,1076.57 1439.17,1055.91 1480.5,1035.25 1459.83,1076.57 1501.16,1055.91 1521.82,1097.23 1563.14,1076.57 \n",
" 1604.47,1055.91 1645.79,1035.25 1687.11,1014.59 1728.44,993.924 1769.76,973.262 1749.1,1014.59 1790.42,993.924 1831.74,973.262 1873.07,952.6 1914.39,931.939 \n",
" 1955.71,911.277 1997.04,890.615 2038.36,869.954 2079.68,849.292 2121.01,828.63 2162.33,807.969 2203.65,787.307 2224.32,828.63 2265.64,807.969 2306.96,787.307 \n",
" 2286.3,828.63 2327.62,849.292 2368.95,828.63 2410.27,849.292 2451.59,869.954 2472.26,911.277 2513.58,931.939 2554.9,911.277 2534.24,952.6 2575.56,931.939 \n",
" 2616.89,911.277 2658.21,890.615 2699.53,869.954 2720.2,911.277 2761.52,890.615 2802.84,869.954 2844.17,849.292 2864.83,890.615 2906.15,911.277 2947.47,890.615 \n",
" 2988.8,911.277 3030.12,931.939 3050.78,973.262 3071.44,1014.59 3092.11,1055.91 3112.77,1097.23 3092.11,1138.56 3112.77,1179.88 3133.43,1221.2 3154.09,1262.53 \n",
" 3112.77,1283.19 3133.43,1324.51 3092.11,1303.85 3112.77,1345.17 3133.43,1386.5 3112.77,1427.82 3071.44,1448.48 3092.11,1489.8 3050.78,1510.47 3071.44,1551.79 \n",
" 3092.11,1593.11 3050.78,1572.45 3071.44,1613.77 3092.11,1655.1 3112.77,1696.42 3133.43,1737.74 3112.77,1779.07 3133.43,1820.39 3154.09,1861.71 3174.75,1903.04 \n",
" 3195.41,1944.36 3216.08,1985.68 3236.74,2027.01 3216.08,2068.33 3174.75,2047.67 3154.09,2088.99 3133.43,2130.32 3112.77,2171.64 3133.43,2212.96 3092.11,2192.3 \n",
" 3112.77,2233.62 3092.11,2274.95 3071.44,2316.27 3050.78,2357.59 3030.12,2398.92 2988.8,2419.58 2968.14,2460.9 2947.47,2502.23 2968.14,2543.55 2947.47,2584.87 \n",
" 2926.81,2626.2 2906.15,2667.52 2885.49,2708.84 2906.15,2750.17 2864.83,2729.51 2885.49,2770.83 2864.83,2812.15 2823.5,2832.81 2782.18,2853.48 2761.52,2812.15 \n",
" 2720.2,2832.81 2678.87,2853.48 2637.55,2874.14 2596.23,2894.8 2554.9,2915.46 2575.56,2874.14 2534.24,2894.8 2492.92,2874.14 2451.59,2853.48 2410.27,2874.14 \n",
" 2368.95,2894.8 2327.62,2915.46 2348.29,2874.14 2306.96,2894.8 2265.64,2915.46 2224.32,2936.12 2182.99,2915.46 2141.67,2936.12 2100.35,2956.78 2059.02,2977.45 \n",
" 2017.7,2998.11 1976.38,3018.77 1935.05,3039.43 1893.73,3060.09 1852.41,3080.75 1811.08,3101.42 1769.76,3122.08 1728.44,3142.74 1687.11,3163.4 1645.79,3184.06 \n",
" 1604.47,3204.72 1625.13,3163.4 1645.79,3122.08 1604.47,3142.74 1563.14,3163.4 1521.82,3184.06 1501.16,3142.74 1480.5,3101.42 1439.17,3122.08 1418.51,3080.75 \n",
" 1377.19,3060.09 1356.52,3018.77 1315.2,2998.11 1273.88,2977.45 1232.55,2956.78 1191.23,2936.12 1149.91,2956.78 1108.58,2936.12 1087.92,2894.8 1067.26,2853.48 \n",
" 1046.6,2812.15 1087.92,2832.81 1067.26,2791.49 1046.6,2750.17 1025.94,2708.84 1005.28,2667.52 984.615,2626.2 963.953,2584.87 943.291,2543.55 963.953,2502.23 \n",
" 943.291,2460.9 922.63,2419.58 901.968,2378.26 881.306,2336.93 860.645,2295.61 901.968,2274.95 881.306,2233.62 901.968,2192.3 881.306,2150.98 922.63,2130.32 \n",
" 901.968,2088.99 881.306,2047.67 860.645,2006.35 881.306,1965.02 860.645,1923.7 839.983,1882.38 819.321,1841.05 839.983,1799.73 881.306,1820.39 860.645,1779.07 \n",
" 839.983,1737.74 881.306,1717.08 901.968,1675.76 881.306,1634.44 922.63,1613.77 943.291,1572.45 984.615,1551.79 1025.94,1531.13 1046.6,1489.8 1025.94,1448.48 \n",
" 1067.26,1469.14 1087.92,1427.82 1067.26,1386.5 1046.6,1345.17 1067.26,1303.85 1108.58,1283.19 1087.92,1241.86 1108.58,1200.54 1129.25,1159.22 1149.91,1117.89 \n",
" 1191.23,1138.56 1232.55,1117.89 1273.88,1097.23 1315.2,1076.57 1356.52,1055.91 1397.85,1035.25 1418.51,1076.57 1459.83,1055.91 1501.16,1035.25 1542.48,1055.91 \n",
" 1583.8,1035.25 1625.13,1014.59 1666.45,993.924 1687.11,1035.25 1728.44,1014.59 1769.76,993.924 1811.08,973.262 1852.41,952.6 1893.73,931.939 1935.05,911.277 \n",
" 1976.38,890.615 2017.7,869.954 1997.04,911.277 2038.36,890.615 2079.68,869.954 2121.01,849.292 2162.33,828.63 2203.65,807.969 2244.98,787.307 2286.3,807.969 \n",
" 2327.62,787.307 2368.95,807.969 2410.27,828.63 2451.59,849.292 2472.26,890.615 2492.92,931.939 2534.24,911.277 2575.56,890.615 2554.9,931.939 2596.23,911.277 \n",
" 2637.55,890.615 2616.89,931.939 2658.21,911.277 2699.53,890.615 2740.86,869.954 2782.18,890.615 2823.5,869.954 2864.83,849.292 2906.15,869.954 2947.47,849.292 \n",
" 2988.8,869.954 3030.12,890.615 3050.78,931.939 3071.44,973.262 3092.11,1014.59 3112.77,1055.91 3133.43,1097.23 3092.11,1117.89 3112.77,1159.22 3133.43,1200.54 \n",
" 3154.09,1241.86 3133.43,1283.19 3092.11,1262.53 3112.77,1303.85 3133.43,1345.17 3112.77,1386.5 3133.43,1427.82 3092.11,1448.48 3050.78,1469.14 3071.44,1510.47 \n",
" 3092.11,1551.79 3112.77,1593.11 3071.44,1572.45 3092.11,1613.77 3112.77,1655.1 3133.43,1696.42 3154.09,1737.74 3133.43,1779.07 3154.09,1820.39 3174.75,1861.71 \n",
" 3133.43,1841.05 3154.09,1882.38 3174.75,1923.7 3195.41,1965.02 3216.08,2006.35 3236.74,2047.67 3195.41,2068.33 3174.75,2109.65 3154.09,2150.98 3133.43,2192.3 \n",
" 3154.09,2233.62 3112.77,2212.96 3092.11,2254.29 3071.44,2295.61 3050.78,2336.93 3030.12,2378.26 2988.8,2398.92 2968.14,2440.24 2947.47,2481.56 2968.14,2522.89 \n",
" 2947.47,2564.21 2926.81,2605.54 2947.47,2646.86 2926.81,2688.18 2906.15,2729.51 2885.49,2688.18 2926.81,2708.84 2947.47,2750.17 2906.15,2770.83 2926.81,2812.15 \n",
" 2885.49,2832.81 2844.17,2853.48 2802.84,2832.81 2761.52,2853.48 2720.2,2874.14 2740.86,2832.81 2699.53,2853.48 2720.2,2812.15 2678.87,2832.81 2637.55,2853.48 \n",
" 2596.23,2874.14 2554.9,2894.8 2513.58,2915.46 2472.26,2894.8 2430.93,2915.46 2389.61,2894.8 2410.27,2853.48 2368.95,2874.14 2327.62,2894.8 2286.3,2915.46 \n",
" 2244.98,2936.12 2203.65,2956.78 2162.33,2977.45 2182.99,2936.12 2141.67,2956.78 2100.35,2977.45 2059.02,2998.11 2017.7,3018.77 2038.36,2977.45 1997.04,2998.11 \n",
" 1955.71,3018.77 1914.39,3039.43 1873.07,3060.09 1831.74,3080.75 1790.42,3101.42 1749.1,3122.08 1707.77,3142.74 1666.45,3163.4 1625.13,3184.06 1583.8,3204.72 \n",
" 1542.48,3225.39 1563.14,3184.06 1583.8,3142.74 1542.48,3163.4 1521.82,3122.08 1480.5,3142.74 1459.83,3101.42 1418.51,3122.08 1377.19,3101.42 1335.86,3080.75 \n",
" 1315.2,3039.43 1294.54,2998.11 1253.22,2977.45 1211.89,2998.11 1170.57,2977.45 1129.25,2956.78 1108.58,2915.46 1087.92,2874.14 1067.26,2832.81 1046.6,2791.49 \n",
" 1025.94,2750.17 1067.26,2770.83 1046.6,2729.51 1025.94,2688.18 1005.28,2646.86 984.615,2605.54 963.953,2564.21 943.291,2522.89 922.63,2481.56 901.968,2440.24 \n",
" 922.63,2398.92 901.968,2357.59 881.306,2316.27 860.645,2274.95 839.983,2233.62 881.306,2212.96 901.968,2171.64 881.306,2130.32 922.63,2109.65 901.968,2068.33 \n",
" 881.306,2027.01 860.645,1985.68 901.968,1965.02 881.306,1923.7 860.645,1882.38 839.983,1841.05 819.321,1799.73 798.659,1758.41 839.983,1779.07 881.306,1799.73 \n",
" 860.645,1758.41 901.968,1737.74 881.306,1696.42 922.63,1675.76 943.291,1634.44 922.63,1593.11 943.291,1551.79 963.953,1510.47 1005.28,1489.8 1046.6,1469.14 \n",
" 1025.94,1427.82 1046.6,1386.5 1067.26,1345.17 1108.58,1324.51 1087.92,1283.19 1108.58,1241.86 1087.92,1200.54 1108.58,1159.22 1129.25,1117.89 1149.91,1159.22 \n",
" 1170.57,1117.89 1211.89,1097.23 1253.22,1076.57 1294.54,1097.23 1335.86,1076.57 1377.19,1055.91 1418.51,1035.25 1459.83,1014.59 1501.16,993.924 1521.82,1035.25 \n",
" 1563.14,1014.59 1604.47,993.924 1645.79,1014.59 1687.11,993.924 1728.44,973.262 1707.77,1014.59 1749.1,993.924 1790.42,973.262 1831.74,952.6 1873.07,931.939 \n",
" 1852.41,973.262 1893.73,952.6 1935.05,931.939 1976.38,911.277 2017.7,890.615 2059.02,869.954 2100.35,849.292 2141.67,828.63 2182.99,807.969 2224.32,787.307 \n",
" 2265.64,766.645 2306.96,745.983 2286.3,787.307 2327.62,807.969 2368.95,787.307 2389.61,828.63 2430.93,849.292 2451.59,890.615 2492.92,869.954 2513.58,911.277 \n",
" 2554.9,890.615 2596.23,869.954 2637.55,849.292 2616.89,890.615 2658.21,869.954 2699.53,849.292 2678.87,890.615 2720.2,869.954 2761.52,849.292 2802.84,828.63 \n",
" 2844.17,807.969 2885.49,828.63 2926.81,849.292 2968.14,869.954 3009.46,890.615 3050.78,911.277 3071.44,952.6 3092.11,993.924 3112.77,1035.25 3133.43,1076.57 \n",
" 3112.77,1117.89 3092.11,1159.22 3112.77,1200.54 3133.43,1241.86 3154.09,1283.19 3174.75,1324.51 3133.43,1303.85 3154.09,1345.17 3174.75,1386.5 3133.43,1407.16 \n",
" 3112.77,1448.48 3133.43,1489.8 3092.11,1510.47 3112.77,1551.79 3133.43,1593.11 3092.11,1572.45 3112.77,1613.77 3133.43,1655.1 3154.09,1696.42 3112.77,1675.76 \n",
" 3133.43,1717.08 3154.09,1758.41 3174.75,1799.73 3195.41,1841.05 3216.08,1882.38 3195.41,1923.7 3216.08,1965.02 3236.74,2006.35 3195.41,1985.68 3216.08,2027.01 \n",
" 3236.74,2068.33 3195.41,2088.99 3154.09,2109.65 3133.43,2150.98 3112.77,2192.3 3133.43,2233.62 3112.77,2274.95 3092.11,2316.27 3071.44,2357.59 3050.78,2398.92 \n",
" 3009.46,2419.58 2988.8,2460.9 2968.14,2502.23 2947.47,2543.55 2968.14,2584.87 2947.47,2626.2 2926.81,2667.52 2906.15,2708.84 2926.81,2750.17 2906.15,2791.49 \n",
" 2926.81,2832.81 2885.49,2853.48 2906.15,2812.15 2864.83,2832.81 2823.5,2853.48 2782.18,2874.14 2761.52,2832.81 2720.2,2853.48 2678.87,2874.14 2637.55,2894.8 \n",
" 2596.23,2915.46 2554.9,2936.12 2575.56,2894.8 2534.24,2915.46 2492.92,2936.12 2451.59,2915.46 2410.27,2894.8 2430.93,2853.48 2389.61,2874.14 2348.29,2894.8 \n",
" 2306.96,2915.46 2265.64,2936.12 2224.32,2956.78 2244.98,2915.46 2203.65,2936.12 2162.33,2956.78 2121.01,2977.45 2079.68,2998.11 2038.36,3018.77 1997.04,3039.43 \n",
" 1955.71,3060.09 1935.05,3018.77 1893.73,3039.43 1852.41,3060.09 1811.08,3080.75 1769.76,3101.42 1728.44,3122.08 1687.11,3142.74 1645.79,3163.4 1604.47,3184.06 \n",
" 1563.14,3204.72 1521.82,3225.39 1501.16,3184.06 1459.83,3163.4 1418.51,3142.74 1397.85,3101.42 1356.52,3080.75 1335.86,3039.43 1294.54,3018.77 1253.22,2998.11 \n",
" 1211.89,2977.45 1170.57,2998.11 1129.25,2977.45 1087.92,2956.78 1067.26,2915.46 1108.58,2894.8 1087.92,2853.48 1067.26,2812.15 1046.6,2770.83 1025.94,2729.51 \n",
" 1005.28,2688.18 984.615,2646.86 963.953,2605.54 943.291,2564.21 922.63,2522.89 901.968,2481.56 881.306,2440.24 922.63,2460.9 901.968,2419.58 881.306,2378.26 \n",
" 860.645,2336.93 881.306,2295.61 860.645,2254.29 901.968,2233.62 881.306,2192.3 901.968,2150.98 881.306,2109.65 922.63,2088.99 901.968,2047.67 881.306,2006.35 \n",
" 860.645,1965.02 839.983,1923.7 819.321,1882.38 798.659,1841.05 839.983,1820.39 819.321,1779.07 798.659,1737.74 839.983,1717.08 860.645,1675.76 901.968,1655.1 \n",
" 881.306,1613.77 901.968,1572.45 922.63,1531.13 943.291,1489.8 984.615,1469.14 1025.94,1489.8 1046.6,1448.48 1025.94,1407.16 1005.28,1365.83 1025.94,1324.51 \n",
" 1046.6,1283.19 1087.92,1262.53 1108.58,1221.2 1087.92,1179.88 1108.58,1138.56 1129.25,1097.23 1170.57,1076.57 1211.89,1055.91 1191.23,1097.23 1232.55,1076.57 \n",
" 1273.88,1055.91 1315.2,1035.25 1356.52,1014.59 1397.85,993.924 1377.19,1035.25 1418.51,1014.59 1459.83,1035.25 1501.16,1014.59 1521.82,1055.91 1563.14,1035.25 \n",
" 1604.47,1014.59 1645.79,993.924 1687.11,973.262 1728.44,952.6 1707.77,993.924 1749.1,973.262 1790.42,952.6 1831.74,931.939 1873.07,911.277 1914.39,890.615 \n",
" 1955.71,869.954 1997.04,849.292 2038.36,828.63 2079.68,807.969 2059.02,849.292 2100.35,828.63 2141.67,807.969 2182.99,787.307 2224.32,807.969 2265.64,787.307 \n",
" 2306.96,807.969 2348.29,787.307 2389.61,807.969 2430.93,828.63 2472.26,849.292 2492.92,890.615 2534.24,869.954 2575.56,849.292 2596.23,890.615 2637.55,869.954 \n",
" 2678.87,849.292 2720.2,828.63 2761.52,807.969 2782.18,849.292 2823.5,828.63 2844.17,869.954 2885.49,849.292 2926.81,869.954 2968.14,849.292 2988.8,890.615 \n",
" 3030.12,869.954 3071.44,890.615 3092.11,931.939 3112.77,973.262 3133.43,1014.59 3154.09,1055.91 3174.75,1097.23 3133.43,1117.89 3154.09,1159.22 3174.75,1200.54 \n",
" 3133.43,1179.88 3154.09,1221.2 3133.43,1262.53 3154.09,1303.85 3174.75,1345.17 3133.43,1365.83 3154.09,1407.16 3133.43,1448.48 3092.11,1469.14 3112.77,1510.47 \n",
" 3133.43,1551.79 3154.09,1593.11 3112.77,1572.45 3133.43,1613.77 3154.09,1655.1 3112.77,1634.44 3133.43,1675.76 3154.09,1717.08 3174.75,1758.41 3154.09,1799.73 \n",
" 3174.75,1841.05 3195.41,1882.38 3216.08,1923.7 3236.74,1965.02 3257.4,2006.35 3278.06,2047.67 3257.4,2088.99 3216.08,2109.65 3174.75,2130.32 3154.09,2171.64 \n",
" 3174.75,2212.96 3154.09,2254.29 3133.43,2295.61 3112.77,2336.93 3092.11,2378.26 3071.44,2419.58 3030.12,2440.24 3009.46,2481.56 2988.8,2522.89 2968.14,2564.21 \n",
" 2947.47,2605.54 2926.81,2646.86 2906.15,2688.18 2926.81,2729.51 2947.47,2770.83 2968.14,2812.15 2926.81,2791.49 2906.15,2832.81 2864.83,2853.48 2823.5,2874.14 \n",
" 2782.18,2894.8 2802.84,2853.48 2761.52,2874.14 2720.2,2894.8 2740.86,2853.48 2699.53,2874.14 2658.21,2894.8 2616.89,2915.46 2575.56,2936.12 2534.24,2956.78 \n",
" 2492.92,2977.45 2472.26,2936.12 2451.59,2894.8 2410.27,2915.46 2368.95,2936.12 2327.62,2956.78 2348.29,2915.46 2306.96,2936.12 2265.64,2956.78 2224.32,2977.45 \n",
" 2182.99,2956.78 2141.67,2977.45 2100.35,2998.11 2059.02,3018.77 2017.7,3039.43 1976.38,3060.09 1935.05,3080.75 1893.73,3101.42 1914.39,3060.09 1873.07,3080.75 \n",
" 1831.74,3101.42 1790.42,3122.08 1749.1,3142.74 1707.77,3163.4 1666.45,3184.06 1625.13,3204.72 1583.8,3184.06 1542.48,3204.72 1521.82,3163.4 1480.5,3184.06 \n",
" 1459.83,3142.74 1418.51,3163.4 1397.85,3122.08 1377.19,3080.75 1335.86,3060.09 1294.54,3039.43 1253.22,3018.77 1211.89,3039.43 1191.23,2998.11 1149.91,2977.45 \n",
" 1129.25,2936.12 1087.92,2915.46 1067.26,2874.14 1046.6,2832.81 1025.94,2791.49 1005.28,2750.17 984.615,2708.84 963.953,2667.52 943.291,2626.2 922.63,2584.87 \n",
" 901.968,2543.55 922.63,2502.23 901.968,2460.9 881.306,2419.58 860.645,2378.26 839.983,2336.93 819.321,2295.61 839.983,2254.29 860.645,2212.96 881.306,2171.64 \n",
" 901.968,2130.32 881.306,2088.99 860.645,2047.67 839.983,2006.35 881.306,1985.68 860.645,1944.36 839.983,1903.04 819.321,1861.71 798.659,1820.39 777.998,1779.07 \n",
" 819.321,1758.41 860.645,1737.74 839.983,1696.42 881.306,1675.76 901.968,1634.44 881.306,1593.11 922.63,1572.45 943.291,1531.13 984.615,1510.47 1005.28,1469.14 \n",
" 984.615,1427.82 1005.28,1386.5 1046.6,1407.16 1025.94,1365.83 1046.6,1324.51 1087.92,1303.85 1067.26,1262.53 1087.92,1221.2 1108.58,1179.88 1129.25,1138.56 \n",
" 1149.91,1097.23 1191.23,1076.57 1232.55,1055.91 1273.88,1035.25 1315.2,1055.91 1356.52,1035.25 1397.85,1014.59 1439.17,1035.25 1480.5,1014.59 1521.82,993.924 \n",
" 1542.48,1035.25 1583.8,1014.59 1625.13,993.924 1666.45,973.262 1707.77,952.6 1749.1,931.939 1790.42,911.277 1811.08,952.6 1852.41,931.939 1893.73,911.277 \n",
" 1935.05,890.615 1976.38,869.954 2017.7,849.292 2059.02,828.63 2100.35,807.969 2141.67,787.307 2182.99,766.645 2224.32,745.983 2265.64,725.322 2286.3,766.645 \n",
" 2327.62,745.983 2368.95,766.645 2348.29,807.969 2389.61,787.307 2430.93,807.969 2472.26,828.63 2513.58,849.292 2534.24,890.615 2575.56,869.954 2616.89,849.292 \n",
" 2658.21,828.63 2678.87,869.954 2720.2,849.292 2761.52,828.63 2802.84,807.969 2844.17,828.63 2885.49,807.969 2926.81,828.63 2968.14,807.969 2988.8,849.292 \n",
" 3030.12,828.63 3050.78,869.954 3071.44,911.277 3092.11,952.6 3112.77,993.924 3133.43,1035.25 3154.09,1076.57 3174.75,1117.89 3133.43,1138.56 3154.09,1179.88 \n",
" 3174.75,1221.2 3195.41,1262.53 3174.75,1303.85 3195.41,1345.17 3154.09,1365.83 3174.75,1407.16 3154.09,1448.48 3174.75,1489.8 3133.43,1510.47 3154.09,1551.79 \n",
" 3112.77,1531.13 3133.43,1572.45 3154.09,1613.77 3174.75,1655.1 3133.43,1634.44 3154.09,1675.76 3174.75,1717.08 3195.41,1758.41 3154.09,1779.07 3174.75,1820.39 \n",
" 3195.41,1861.71 3216.08,1903.04 3236.74,1944.36 3257.4,1985.68 3278.06,2027.01 3257.4,2068.33 3216.08,2088.99 3195.41,2130.32 3174.75,2171.64 3154.09,2212.96 \n",
" 3133.43,2254.29 3112.77,2295.61 3092.11,2336.93 3071.44,2378.26 3050.78,2419.58 3009.46,2440.24 2968.14,2419.58 2947.47,2460.9 2988.8,2481.56 3009.46,2522.89 \n",
" 2988.8,2564.21 2968.14,2605.54 2988.8,2646.86 2947.47,2667.52 2968.14,2708.84 2988.8,2750.17 2947.47,2729.51 2926.81,2770.83 2947.47,2812.15 2926.81,2853.48 \n",
" 2885.49,2874.14 2844.17,2894.8 2802.84,2874.14 2761.52,2894.8 2720.2,2915.46 2740.86,2874.14 2699.53,2894.8 2658.21,2874.14 2616.89,2894.8 2575.56,2915.46 \n",
" 2534.24,2936.12 2492.92,2915.46 2451.59,2936.12 2430.93,2894.8 2389.61,2915.46 2348.29,2936.12 2306.96,2956.78 2265.64,2977.45 2286.3,2936.12 2244.98,2956.78 \n",
" 2203.65,2977.45 2162.33,2998.11 2121.01,3018.77 2079.68,3039.43 2038.36,3060.09 1997.04,3080.75 1976.38,3039.43 1935.05,3060.09 1893.73,3080.75 1852.41,3101.42 \n",
" 1811.08,3122.08 1769.76,3142.74 1728.44,3163.4 1687.11,3184.06 1645.79,3204.72 1604.47,3225.39 1563.14,3246.05 1521.82,3266.71 1501.16,3225.39 1459.83,3204.72 \n",
" 1439.17,3163.4 1397.85,3142.74 1418.51,3101.42 1377.19,3122.08 1335.86,3101.42 1315.2,3060.09 1273.88,3039.43 1232.55,3018.77 1191.23,3039.43 1149.91,3018.77 \n",
" 1108.58,2998.11 1067.26,2977.45 1087.92,2936.12 1067.26,2894.8 1046.6,2853.48 1025.94,2812.15 1005.28,2770.83 984.615,2729.51 963.953,2688.18 1005.28,2708.84 \n",
" 984.615,2667.52 963.953,2626.2 943.291,2584.87 922.63,2543.55 901.968,2502.23 881.306,2460.9 860.645,2419.58 839.983,2378.26 881.306,2398.92 860.645,2357.59 \n",
" 839.983,2316.27 819.321,2274.95 798.659,2233.62 839.983,2212.96 860.645,2171.64 839.983,2130.32 860.645,2088.99 839.983,2047.67 881.306,2068.33 860.645,2027.01 \n",
" 839.983,1985.68 819.321,1944.36 798.659,1903.04 777.998,1861.71 757.336,1820.39 798.659,1799.73 777.998,1758.41 819.321,1737.74 798.659,1696.42 839.983,1675.76 \n",
" 881.306,1655.1 901.968,1613.77 881.306,1572.45 922.63,1551.79 963.953,1531.13 1005.28,1510.47 1025.94,1469.14 1046.6,1427.82 1025.94,1386.5 1005.28,1345.17 \n",
" 1025.94,1303.85 1067.26,1283.19 1046.6,1241.86 1067.26,1200.54 1087.92,1159.22 1108.58,1117.89 1129.25,1076.57 1170.57,1097.23 1211.89,1076.57 1253.22,1055.91 \n",
" 1294.54,1035.25 1335.86,1014.59 1377.19,993.924 1418.51,973.262 1439.17,1014.59 1480.5,993.924 1521.82,1014.59 1563.14,993.924 1604.47,973.262 1645.79,952.6 \n",
" 1687.11,931.939 1707.77,973.262 1749.1,952.6 1790.42,931.939 1831.74,911.277 1873.07,890.615 1914.39,911.277 1955.71,890.615 1997.04,869.954 2038.36,849.292 \n",
" 2079.68,828.63 2121.01,807.969 2162.33,787.307 2203.65,766.645 2244.98,745.983 2286.3,725.322 2306.96,766.645 2348.29,745.983 2389.61,766.645 2410.27,807.969 \n",
" 2451.59,828.63 2472.26,869.954 2513.58,890.615 2554.9,869.954 2596.23,849.292 2637.55,828.63 2616.89,869.954 2658.21,849.292 2699.53,828.63 2740.86,849.292 \n",
" 2782.18,828.63 2823.5,807.969 2864.83,828.63 2885.49,869.954 2906.15,828.63 2947.47,807.969 2988.8,828.63 3009.46,869.954 3050.78,890.615 3071.44,931.939 \n",
" 3092.11,973.262 3112.77,1014.59 3133.43,1055.91 3154.09,1097.23 3174.75,1138.56 3133.43,1159.22 3154.09,1200.54 3174.75,1241.86 3195.41,1283.19 3216.08,1324.51 \n",
" 3195.41,1365.83 3154.09,1386.5 3174.75,1427.82 3154.09,1469.14 3112.77,1489.8 3133.43,1531.13 3154.09,1572.45 3174.75,1613.77 3195.41,1655.1 3154.09,1634.44 \n",
" 3174.75,1675.76 3195.41,1717.08 3216.08,1758.41 3174.75,1779.07 3195.41,1820.39 3216.08,1861.71 3195.41,1903.04 3216.08,1944.36 3236.74,1985.68 3257.4,2027.01 \n",
" 3216.08,2047.67 3236.74,2088.99 3195.41,2109.65 3174.75,2150.98 3133.43,2171.64 3174.75,2192.3 3195.41,2233.62 3174.75,2274.95 3154.09,2316.27 3133.43,2357.59 \n",
" 3112.77,2398.92 3092.11,2440.24 3050.78,2460.9 3030.12,2502.23 3009.46,2543.55 2988.8,2584.87 2968.14,2626.2 2988.8,2667.52 2947.47,2688.18 2968.14,2729.51 \n",
" 2988.8,2770.83 2947.47,2791.49 2968.14,2832.81 2947.47,2874.14 2906.15,2853.48 2864.83,2874.14 2823.5,2894.8 2782.18,2915.46 2740.86,2894.8 2699.53,2915.46 \n",
" 2658.21,2936.12 2678.87,2894.8 2637.55,2915.46 2596.23,2936.12 2554.9,2956.78 2513.58,2936.12 2472.26,2915.46 2430.93,2936.12 2389.61,2956.78 2368.95,2915.46 \n",
" 2327.62,2936.12 2286.3,2956.78 2244.98,2977.45 2203.65,2998.11 2162.33,3018.77 2182.99,2977.45 2141.67,2998.11 2100.35,3018.77 2059.02,3039.43 2017.7,3060.09 \n",
" 1976.38,3080.75 1935.05,3101.42 1893.73,3122.08 1914.39,3080.75 1873.07,3101.42 1831.74,3122.08 1790.42,3142.74 1749.1,3163.4 1707.77,3184.06 1666.45,3204.72 \n",
" 1625.13,3225.39 1583.8,3246.05 1542.48,3266.71 1563.14,3225.39 1521.82,3204.72 1480.5,3225.39 1459.83,3184.06 1439.17,3142.74 1397.85,3163.4 1356.52,3142.74 \n",
" 1315.2,3122.08 1294.54,3080.75 1253.22,3060.09 1273.88,3018.77 1232.55,2998.11 1191.23,2977.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1191.23,2977.45 1149.91,2998.11 1108.58,2977.45 1067.26,2956.78 1046.6,2915.46 1025.94,2874.14 1005.28,2832.81 984.615,2791.49 1025.94,2770.83 1005.28,2729.51 \n",
" 984.615,2688.18 963.953,2646.86 943.291,2605.54 922.63,2564.21 901.968,2522.89 881.306,2481.56 860.645,2440.24 839.983,2398.92 819.321,2357.59 798.659,2316.27 \n",
" 839.983,2295.61 819.321,2254.29 860.645,2233.62 901.968,2212.96 860.645,2192.3 839.983,2150.98 860.645,2109.65 839.983,2068.33 819.321,2027.01 798.659,1985.68 \n",
" 839.983,1965.02 819.321,1923.7 798.659,1882.38 777.998,1841.05 757.336,1799.73 798.659,1779.07 777.998,1737.74 819.321,1717.08 860.645,1696.42 839.983,1655.1 \n",
" 860.645,1613.77 901.968,1593.11 881.306,1551.79 901.968,1510.47 922.63,1469.14 963.953,1448.48 1005.28,1427.82 984.615,1386.5 963.953,1345.17 1005.28,1324.51 \n",
" 1046.6,1303.85 1025.94,1262.53 1067.26,1241.86 1046.6,1200.54 1067.26,1159.22 1087.92,1117.89 1108.58,1076.57 1149.91,1055.91 1191.23,1035.25 1232.55,1014.59 \n",
" 1273.88,993.924 1253.22,1035.25 1294.54,1055.91 1335.86,1035.25 1377.19,1014.59 1418.51,993.924 1459.83,973.262 1501.16,952.6 1542.48,973.262 1583.8,993.924 \n",
" 1542.48,1014.59 1563.14,973.262 1604.47,952.6 1645.79,973.262 1687.11,952.6 1728.44,931.939 1769.76,952.6 1811.08,931.939 1852.41,911.277 1893.73,890.615 \n",
" 1935.05,869.954 1976.38,849.292 2017.7,828.63 2059.02,807.969 2100.35,787.307 2141.67,766.645 2182.99,745.983 2224.32,766.645 2265.64,745.983 2306.96,725.322 \n",
" 2327.62,766.645 2368.95,745.983 2410.27,766.645 2451.59,787.307 2492.92,807.969 2534.24,828.63 2513.58,869.954 2554.9,849.292 2596.23,828.63 2637.55,807.969 \n",
" 2678.87,828.63 2720.2,807.969 2761.52,787.307 2740.86,828.63 2782.18,807.969 2823.5,787.307 2864.83,807.969 2906.15,787.307 2947.47,766.645 2926.81,807.969 \n",
" 2968.14,828.63 3009.46,849.292 3050.78,828.63 3071.44,869.954 3092.11,911.277 3112.77,952.6 3133.43,993.924 3154.09,1035.25 3174.75,1076.57 3154.09,1117.89 \n",
" 3174.75,1159.22 3195.41,1200.54 3216.08,1241.86 3174.75,1262.53 3195.41,1303.85 3154.09,1324.51 3174.75,1365.83 3195.41,1407.16 3154.09,1427.82 3133.43,1469.14 \n",
" 3154.09,1510.47 3174.75,1551.79 3195.41,1593.11 3174.75,1634.44 3195.41,1675.76 3216.08,1717.08 3174.75,1737.74 3195.41,1779.07 3216.08,1820.39 3236.74,1861.71 \n",
" 3257.4,1903.04 3278.06,1944.36 3236.74,1923.7 3257.4,1965.02 3278.06,2006.35 3257.4,2047.67 3278.06,2088.99 3236.74,2109.65 3216.08,2150.98 3195.41,2192.3 \n",
" 3174.75,2233.62 3154.09,2274.95 3133.43,2316.27 3092.11,2295.61 3071.44,2336.93 3050.78,2378.26 3009.46,2398.92 2988.8,2440.24 2968.14,2481.56 2947.47,2522.89 \n",
" 2988.8,2543.55 3009.46,2584.87 2988.8,2626.2 2968.14,2667.52 2947.47,2708.84 2968.14,2750.17 2988.8,2791.49 3009.46,2832.81 2968.14,2853.48 2926.81,2874.14 \n",
" 2885.49,2894.8 2844.17,2874.14 2802.84,2894.8 2761.52,2915.46 2720.2,2936.12 2678.87,2915.46 2637.55,2936.12 2596.23,2956.78 2554.9,2977.45 2513.58,2956.78 \n",
" 2472.26,2977.45 2430.93,2956.78 2389.61,2936.12 2348.29,2956.78 2306.96,2977.45 2265.64,2998.11 2224.32,3018.77 2182.99,2998.11 2141.67,3018.77 2100.35,3039.43 \n",
" 2121.01,2998.11 2079.68,3018.77 2038.36,3039.43 1997.04,3060.09 1955.71,3080.75 1914.39,3101.42 1873.07,3122.08 1831.74,3142.74 1790.42,3163.4 1749.1,3184.06 \n",
" 1707.77,3204.72 1666.45,3225.39 1625.13,3246.05 1583.8,3225.39 1542.48,3246.05 1501.16,3266.71 1459.83,3246.05 1439.17,3204.72 1397.85,3184.06 1377.19,3142.74 \n",
" 1356.52,3101.42 1315.2,3080.75 1273.88,3060.09 1232.55,3039.43 1191.23,3018.77 1149.91,3039.43 1129.25,2998.11 1108.58,2956.78 1067.26,2936.12 1046.6,2894.8 \n",
" 1025.94,2853.48 1005.28,2812.15 984.615,2770.83 963.953,2729.51 943.291,2688.18 922.63,2646.86 901.968,2605.54 881.306,2564.21 860.645,2522.89 839.983,2481.56 \n",
" 881.306,2502.23 860.645,2460.9 839.983,2419.58 819.321,2378.26 860.645,2398.92 839.983,2357.59 819.321,2316.27 839.983,2274.95 819.321,2233.62 839.983,2192.3 \n",
" 860.645,2150.98 839.983,2109.65 860.645,2068.33 839.983,2027.01 819.321,1985.68 839.983,1944.36 819.321,1903.04 798.659,1861.71 777.998,1820.39 757.336,1779.07 \n",
" 736.674,1737.74 777.998,1717.08 819.321,1696.42 798.659,1655.1 839.983,1634.44 860.645,1593.11 839.983,1551.79 881.306,1531.13 922.63,1510.47 963.953,1489.8 \n",
" 984.615,1448.48 1005.28,1407.16 984.615,1365.83 1025.94,1345.17 1005.28,1303.85 984.615,1262.53 1025.94,1241.86 1067.26,1221.2 1046.6,1179.88 1067.26,1138.56 \n",
" 1087.92,1097.23 1108.58,1055.91 1149.91,1076.57 1108.58,1097.23 1129.25,1055.91 1087.92,1076.57 1108.58,1035.25 1067.26,1055.91 1087.92,1014.59 1129.25,1035.25 \n",
" 1170.57,1055.91 1211.89,1035.25 1253.22,1014.59 1294.54,993.924 1335.86,973.262 1315.2,1014.59 1356.52,993.924 1397.85,973.262 1439.17,993.924 1480.5,973.262 \n",
" 1521.82,952.6 1542.48,993.924 1583.8,973.262 1625.13,952.6 1666.45,931.939 1707.77,911.277 1749.1,890.615 1769.76,931.939 1811.08,911.277 1852.41,890.615 \n",
" 1893.73,869.954 1935.05,849.292 1976.38,828.63 2017.7,807.969 2059.02,787.307 2100.35,766.645 2141.67,745.983 2121.01,787.307 2162.33,766.645 2203.65,745.983 \n",
" 2244.98,766.645 2286.3,745.983 2327.62,725.322 2348.29,766.645 2389.61,745.983 2410.27,787.307 2451.59,807.969 2492.92,828.63 2534.24,849.292 2575.56,828.63 \n",
" 2616.89,807.969 2658.21,787.307 2699.53,807.969 2740.86,787.307 2782.18,766.645 2823.5,745.983 2844.17,787.307 2885.49,766.645 2906.15,807.969 2947.47,828.63 \n",
" 2988.8,807.969 3030.12,787.307 3009.46,828.63 3050.78,849.292 3092.11,869.954 3112.77,911.277 3133.43,952.6 3154.09,993.924 3174.75,1035.25 3195.41,1076.57 \n",
" 3216.08,1117.89 3195.41,1159.22 3154.09,1138.56 3174.75,1179.88 3195.41,1221.2 3216.08,1262.53 3174.75,1283.19 3195.41,1324.51 3216.08,1365.83 3236.74,1407.16 \n",
" 3195.41,1427.82 3174.75,1469.14 3195.41,1510.47 3154.09,1531.13 3174.75,1572.45 3195.41,1613.77 3216.08,1655.1 3195.41,1696.42 3216.08,1737.74 3236.74,1779.07 \n",
" 3195.41,1799.73 3216.08,1841.05 3236.74,1882.38 3257.4,1923.7 3278.06,1965.02 3298.72,2006.35 3319.38,2047.67 3278.06,2068.33 3257.4,2109.65 3216.08,2130.32 \n",
" 3195.41,2171.64 3154.09,2192.3 3195.41,2212.96 3174.75,2254.29 3133.43,2274.95 3112.77,2316.27 3092.11,2357.59 3071.44,2398.92 3030.12,2419.58 3009.46,2460.9 \n",
" 2988.8,2502.23 3030.12,2522.89 3009.46,2564.21 2988.8,2605.54 2968.14,2646.86 2988.8,2688.18 3009.46,2729.51 3030.12,2770.83 3009.46,2812.15 2968.14,2791.49 \n",
" 2947.47,2832.81 2968.14,2874.14 2926.81,2894.8 2947.47,2853.48 2906.15,2874.14 2864.83,2894.8 2823.5,2915.46 2782.18,2936.12 2740.86,2915.46 2699.53,2936.12 \n",
" 2658.21,2915.46 2616.89,2936.12 2575.56,2956.78 2534.24,2977.45 2492.92,2956.78 2451.59,2977.45 2410.27,2956.78 2368.95,2977.45 2327.62,2998.11 2286.3,2977.45 \n",
" 2244.98,2998.11 2203.65,3018.77 2162.33,3039.43 2121.01,3060.09 2079.68,3080.75 2038.36,3101.42 2059.02,3060.09 2017.7,3080.75 1976.38,3101.42 1935.05,3122.08 \n",
" 1893.73,3142.74 1852.41,3122.08 1811.08,3142.74 1769.76,3163.4 1728.44,3184.06 1687.11,3204.72 1645.79,3225.39 1604.47,3246.05 1563.14,3266.71 1521.82,3246.05 \n",
" 1501.16,3204.72 1459.83,3225.39 1439.17,3184.06 1397.85,3204.72 1377.19,3163.4 1356.52,3122.08 1315.2,3101.42 1294.54,3060.09 1253.22,3039.43 1211.89,3018.77 \n",
" 1170.57,3039.43 1129.25,3018.77 1087.92,2998.11 1046.6,2977.45 1025.94,2936.12 1005.28,2894.8 1046.6,2874.14 1025.94,2832.81 1005.28,2791.49 984.615,2750.17 \n",
" 963.953,2708.84 943.291,2667.52 922.63,2626.2 901.968,2584.87 881.306,2543.55 860.645,2502.23 839.983,2460.9 819.321,2419.58 798.659,2378.26 819.321,2336.93 \n",
" 798.659,2295.61 777.998,2254.29 798.659,2212.96 819.321,2171.64 798.659,2130.32 819.321,2088.99 798.659,2047.67 819.321,2006.35 798.659,1965.02 777.998,1923.7 \n",
" 757.336,1882.38 736.674,1841.05 716.013,1799.73 736.674,1758.41 757.336,1717.08 777.998,1675.76 819.321,1655.1 860.645,1634.44 839.983,1593.11 860.645,1551.79 \n",
" 901.968,1531.13 943.291,1510.47 984.615,1489.8 1005.28,1448.48 984.615,1407.16 963.953,1365.83 984.615,1324.51 1005.28,1283.19 1046.6,1262.53 1025.94,1221.2 \n",
" 1005.28,1179.88 1046.6,1159.22 1087.92,1138.56 1067.26,1097.23 1087.92,1055.91 1108.58,1014.59 1149.91,1035.25 1191.23,1055.91 1232.55,1035.25 1273.88,1014.59 \n",
" 1315.2,993.924 1356.52,973.262 1397.85,952.6 1439.17,973.262 1480.5,952.6 1459.83,993.924 1501.16,973.262 1542.48,952.6 1583.8,931.939 1625.13,911.277 \n",
" 1666.45,890.615 1645.79,931.939 1625.13,973.262 1666.45,952.6 1707.77,931.939 1749.1,911.277 1790.42,890.615 1831.74,869.954 1873.07,849.292 1914.39,869.954 \n",
" 1955.71,849.292 1997.04,828.63 2038.36,807.969 2079.68,787.307 2121.01,766.645 2162.33,745.983 2203.65,725.322 2244.98,704.66 2286.3,683.998 2327.62,704.66 \n",
" 2368.95,725.322 2410.27,745.983 2430.93,787.307 2472.26,807.969 2492.92,849.292 2513.58,807.969 2554.9,828.63 2596.23,807.969 2637.55,787.307 2616.89,828.63 \n",
" 2658.21,807.969 2699.53,787.307 2740.86,807.969 2782.18,787.307 2823.5,766.645 2864.83,787.307 2906.15,766.645 2947.47,787.307 2988.8,766.645 3009.46,807.969 \n",
" 3030.12,849.292 3071.44,828.63 3112.77,849.292 3092.11,890.615 3112.77,931.939 3133.43,973.262 3154.09,1014.59 3174.75,1055.91 3195.41,1097.23 3216.08,1138.56 \n",
" 3195.41,1179.88 3216.08,1221.2 3236.74,1262.53 3195.41,1241.86 3216.08,1283.19 3236.74,1324.51 3257.4,1365.83 3216.08,1386.5 3236.74,1427.82 3195.41,1448.48 \n",
" 3216.08,1489.8 3174.75,1510.47 3195.41,1551.79 3174.75,1593.11 3195.41,1634.44 3216.08,1675.76 3174.75,1696.42 3195.41,1737.74 3216.08,1779.07 3236.74,1820.39 \n",
" 3257.4,1861.71 3236.74,1903.04 3257.4,1944.36 3278.06,1985.68 3298.72,2027.01 3319.38,2068.33 3298.72,2109.65 3257.4,2130.32 3236.74,2171.64 3195.41,2150.98 \n",
" 3216.08,2192.3 3236.74,2233.62 3195.41,2254.29 3174.75,2295.61 3154.09,2336.93 3112.77,2357.59 3092.11,2398.92 3071.44,2440.24 3030.12,2460.9 3009.46,2502.23 \n",
" 3030.12,2543.55 3050.78,2584.87 3009.46,2605.54 3030.12,2646.86 3009.46,2688.18 2988.8,2729.51 2968.14,2770.83 2988.8,2812.15 3009.46,2853.48 2988.8,2894.8 \n",
" 2947.47,2915.46 2906.15,2894.8 2864.83,2915.46 2823.5,2936.12 2782.18,2956.78 2802.84,2915.46 2761.52,2936.12 2720.2,2956.78 2678.87,2936.12 2637.55,2956.78 \n",
" 2596.23,2977.45 2554.9,2998.11 2513.58,2977.45 2472.26,2956.78 2430.93,2977.45 2410.27,2936.12 2368.95,2956.78 2327.62,2977.45 2286.3,2998.11 2244.98,3018.77 \n",
" 2203.65,3039.43 2224.32,2998.11 2182.99,3018.77 2141.67,3039.43 2100.35,3060.09 2059.02,3080.75 2017.7,3101.42 1976.38,3122.08 1935.05,3142.74 1955.71,3101.42 \n",
" 1914.39,3122.08 1873.07,3142.74 1831.74,3163.4 1790.42,3184.06 1749.1,3204.72 1707.77,3225.39 1666.45,3246.05 1625.13,3266.71 1583.8,3287.37 1542.48,3308.03 \n",
" 1501.16,3287.37 1480.5,3246.05 1439.17,3225.39 1418.51,3184.06 1377.19,3204.72 1356.52,3163.4 1335.86,3122.08 1294.54,3101.42 1253.22,3080.75 1211.89,3060.09 \n",
" 1170.57,3080.75 1129.25,3060.09 1108.58,3018.77 1087.92,2977.45 1046.6,2956.78 1025.94,2915.46 1005.28,2874.14 984.615,2832.81 963.953,2791.49 943.291,2750.17 \n",
" 922.63,2708.84 901.968,2667.52 943.291,2646.86 922.63,2605.54 901.968,2564.21 881.306,2522.89 860.645,2481.56 839.983,2440.24 819.321,2398.92 798.659,2357.59 \n",
" 777.998,2316.27 798.659,2274.95 777.998,2233.62 819.321,2212.96 839.983,2171.64 860.645,2130.32 839.983,2088.99 819.321,2047.67 798.659,2006.35 819.321,1965.02 \n",
" 798.659,1923.7 777.998,1882.38 757.336,1841.05 777.998,1799.73 757.336,1758.41 736.674,1717.08 777.998,1696.42 819.321,1675.76 860.645,1655.1 839.983,1613.77 \n",
" 860.645,1572.45 901.968,1551.79 881.306,1510.47 922.63,1489.8 963.953,1469.14 943.291,1427.82 963.953,1386.5 984.615,1345.17 963.953,1303.85 943.291,1262.53 \n",
" 984.615,1241.86 1005.28,1200.54 1046.6,1221.2 1067.26,1179.88 1046.6,1138.56 1025.94,1097.23 1067.26,1076.57 1087.92,1035.25 1129.25,1014.59 1170.57,1035.25 \n",
" 1211.89,1014.59 1253.22,993.924 1294.54,1014.59 1335.86,993.924 1377.19,973.262 1418.51,952.6 1459.83,931.939 1501.16,911.277 1542.48,931.939 1521.82,973.262 \n",
" 1563.14,952.6 1604.47,931.939 1645.79,911.277 1687.11,890.615 1728.44,911.277 1769.76,890.615 1811.08,869.954 1852.41,849.292 1831.74,890.615 1873.07,869.954 \n",
" 1914.39,849.292 1955.71,828.63 1997.04,807.969 2038.36,787.307 2079.68,766.645 2121.01,745.983 2162.33,725.322 2203.65,704.66 2244.98,725.322 2286.3,704.66 \n",
" 2327.62,683.998 2348.29,725.322 2389.61,704.66 2430.93,725.322 2451.59,766.645 2492.92,787.307 2513.58,828.63 2554.9,807.969 2596.23,787.307 2637.55,766.645 \n",
" 2678.87,787.307 2720.2,766.645 2761.52,745.983 2802.84,766.645 2844.17,745.983 2885.49,725.322 2864.83,766.645 2906.15,745.983 2926.81,787.307 2968.14,766.645 \n",
" 3009.46,787.307 3050.78,807.969 3071.44,849.292 3112.77,869.954 3133.43,911.277 3154.09,952.6 3174.75,993.924 3195.41,1035.25 3216.08,1076.57 3195.41,1117.89 \n",
" 3216.08,1159.22 3236.74,1200.54 3257.4,1241.86 3236.74,1283.19 3257.4,1324.51 3216.08,1345.17 3195.41,1386.5 3216.08,1427.82 3174.75,1448.48 3154.09,1489.8 \n",
" 3174.75,1531.13 3195.41,1572.45 3216.08,1613.77 3236.74,1655.1 3216.08,1696.42 3236.74,1737.74 3257.4,1779.07 3216.08,1799.73 3236.74,1841.05 3257.4,1882.38 \n",
" 3278.06,1923.7 3298.72,1965.02 3319.38,2006.35 3298.72,2047.67 3319.38,2088.99 3278.06,2109.65 3236.74,2130.32 3216.08,2171.64 3236.74,2212.96 3216.08,2254.29 \n",
" 3195.41,2295.61 3174.75,2336.93 3154.09,2378.26 3133.43,2419.58 3112.77,2460.9 3071.44,2481.56 3050.78,2522.89 3030.12,2564.21 3050.78,2605.54 3009.46,2626.2 \n",
" 3030.12,2667.52 3009.46,2708.84 2968.14,2688.18 3009.46,2667.52 2988.8,2708.84 3009.46,2750.17 3030.12,2791.49 3050.78,2832.81 3030.12,2874.14 2988.8,2853.48 \n",
" 2968.14,2894.8 2926.81,2915.46 2885.49,2936.12 2844.17,2915.46 2802.84,2936.12 2761.52,2956.78 2720.2,2977.45 2740.86,2936.12 2699.53,2956.78 2658.21,2977.45 \n",
" 2616.89,2956.78 2575.56,2977.45 2534.24,2998.11 2492.92,3018.77 2451.59,2998.11 2410.27,2977.45 2451.59,2956.78 2430.93,2998.11 2389.61,2977.45 2348.29,2998.11 \n",
" 2306.96,3018.77 2265.64,3039.43 2224.32,3060.09 2182.99,3039.43 2141.67,3060.09 2100.35,3080.75 2121.01,3039.43 2079.68,3060.09 2038.36,3080.75 1997.04,3101.42 \n",
" 1955.71,3122.08 1914.39,3142.74 1873.07,3163.4 1831.74,3184.06 1852.41,3142.74 1811.08,3163.4 1769.76,3184.06 1728.44,3204.72 1687.11,3225.39 1645.79,3246.05 \n",
" 1604.47,3266.71 1563.14,3287.37 1521.82,3308.03 1480.5,3287.37 1501.16,3246.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1501.16,3246.05 1459.83,3266.71 1418.51,3246.05 1377.19,3225.39 1356.52,3184.06 1335.86,3142.74 1294.54,3122.08 1273.88,3080.75 1232.55,3060.09 1191.23,3080.75 \n",
" 1149.91,3060.09 1170.57,3018.77 1129.25,3039.43 1087.92,3018.77 1046.6,2998.11 1025.94,2956.78 1005.28,2915.46 1046.6,2936.12 1025.94,2894.8 1005.28,2853.48 \n",
" 984.615,2812.15 963.953,2770.83 943.291,2729.51 922.63,2688.18 901.968,2646.86 881.306,2605.54 860.645,2564.21 839.983,2522.89 819.321,2481.56 798.659,2440.24 \n",
" 777.998,2398.92 757.336,2357.59 798.659,2336.93 777.998,2295.61 798.659,2254.29 777.998,2212.96 819.321,2192.3 798.659,2150.98 819.321,2109.65 798.659,2068.33 \n",
" 777.998,2027.01 757.336,1985.68 777.998,1944.36 757.336,1903.04 736.674,1861.71 716.013,1820.39 736.674,1779.07 757.336,1737.74 798.659,1717.08 757.336,1696.42 \n",
" 798.659,1675.76 819.321,1634.44 798.659,1593.11 839.983,1572.45 860.645,1531.13 881.306,1489.8 901.968,1448.48 943.291,1469.14 963.953,1427.82 943.291,1386.5 \n",
" 922.63,1345.17 963.953,1324.51 984.615,1283.19 1005.28,1241.86 1025.94,1200.54 1005.28,1159.22 1025.94,1117.89 1046.6,1076.57 1067.26,1035.25 1087.92,993.924 \n",
" 1046.6,1014.59 1025.94,1055.91 1046.6,1097.23 1025.94,1138.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1025.94,1138.56 1005.28,1097.23 1046.6,1117.89 1025.94,1076.57 1046.6,1035.25 1067.26,993.924 1025.94,1014.59 1046.6,1055.91 1067.26,1014.59 1108.58,993.924 \n",
" 1149.91,1014.59 1191.23,993.924 1232.55,973.262 1273.88,952.6 1315.2,973.262 1356.52,952.6 1397.85,931.939 1439.17,952.6 1480.5,931.939 1521.82,911.277 \n",
" 1563.14,931.939 1604.47,911.277 1583.8,952.6 1625.13,931.939 1666.45,911.277 1707.77,890.615 1749.1,869.954 1769.76,911.277 1811.08,890.615 1852.41,869.954 \n",
" 1893.73,849.292 1935.05,828.63 1976.38,807.969 2017.7,787.307 2059.02,766.645 2100.35,745.983 2141.67,725.322 2182.99,704.66 2224.32,725.322 2265.64,704.66 \n",
" 2306.96,683.998 2348.29,704.66 2389.61,725.322 2430.93,745.983 2472.26,766.645 2513.58,787.307 2554.9,766.645 2575.56,807.969 2616.89,787.307 2658.21,766.645 \n",
" 2678.87,807.969 2720.2,787.307 2761.52,766.645 2802.84,787.307 2844.17,766.645 2885.49,787.307 2926.81,766.645 2968.14,787.307 3009.46,766.645 3030.12,807.969 \n",
" 3071.44,787.307 3092.11,828.63 3133.43,849.292 3112.77,890.615 3133.43,931.939 3154.09,973.262 3174.75,1014.59 3195.41,1055.91 3216.08,1097.23 3195.41,1138.56 \n",
" 3216.08,1179.88 3236.74,1221.2 3257.4,1262.53 3236.74,1303.85 3257.4,1345.17 3236.74,1386.5 3257.4,1427.82 3216.08,1448.48 3195.41,1489.8 3216.08,1531.13 \n",
" 3236.74,1572.45 3257.4,1613.77 3216.08,1634.44 3236.74,1675.76 3257.4,1717.08 3236.74,1758.41 3257.4,1799.73 3278.06,1841.05 3298.72,1882.38 3319.38,1923.7 \n",
" 3278.06,1903.04 3298.72,1944.36 3319.38,1985.68 3340.05,2027.01 3360.71,2068.33 3340.05,2109.65 3298.72,2130.32 3257.4,2150.98 3236.74,2192.3 3216.08,2233.62 \n",
" 3195.41,2274.95 3154.09,2295.61 3133.43,2336.93 3112.77,2378.26 3092.11,2419.58 3050.78,2440.24 3030.12,2481.56 3071.44,2502.23 3050.78,2543.55 3030.12,2584.87 \n",
" 3050.78,2626.2 3009.46,2646.86 3030.12,2688.18 3050.78,2729.51 3071.44,2770.83 3030.12,2750.17 3009.46,2791.49 2988.8,2832.81 3009.46,2874.14 2988.8,2915.46 \n",
" 2947.47,2894.8 2906.15,2915.46 2864.83,2936.12 2823.5,2956.78 2782.18,2977.45 2740.86,2956.78 2699.53,2977.45 2658.21,2956.78 2616.89,2977.45 2575.56,2998.11 \n",
" 2534.24,3018.77 2492.92,2998.11 2451.59,3018.77 2410.27,2998.11 2368.95,3018.77 2348.29,2977.45 2306.96,2998.11 2265.64,3018.77 2224.32,3039.43 2182.99,3060.09 \n",
" 2141.67,3080.75 2100.35,3101.42 2059.02,3122.08 2017.7,3142.74 1976.38,3163.4 1997.04,3122.08 1955.71,3142.74 1914.39,3163.4 1873.07,3184.06 1831.74,3204.72 \n",
" 1852.41,3163.4 1811.08,3184.06 1769.76,3204.72 1728.44,3225.39 1687.11,3246.05 1645.79,3266.71 1604.47,3287.37 1563.14,3308.03 1583.8,3266.71 1542.48,3287.37 \n",
" 1501.16,3308.03 1480.5,3266.71 1439.17,3246.05 1418.51,3204.72 1377.19,3184.06 1335.86,3163.4 1294.54,3142.74 1273.88,3101.42 1232.55,3080.75 1191.23,3060.09 \n",
" 1149.91,3080.75 1108.58,3060.09 1067.26,3039.43 1025.94,3018.77 1005.28,2977.45 984.615,2936.12 963.953,2894.8 984.615,2853.48 963.953,2812.15 943.291,2770.83 \n",
" 922.63,2729.51 963.953,2750.17 943.291,2708.84 922.63,2667.52 901.968,2626.2 881.306,2584.87 860.645,2543.55 839.983,2502.23 819.321,2460.9 798.659,2419.58 \n",
" 777.998,2378.26 757.336,2336.93 736.674,2295.61 777.998,2274.95 757.336,2233.62 777.998,2192.3 757.336,2150.98 798.659,2171.64 819.321,2130.32 798.659,2088.99 \n",
" 777.998,2047.67 819.321,2068.33 798.659,2027.01 777.998,1985.68 798.659,1944.36 777.998,1903.04 757.336,1861.71 736.674,1820.39 716.013,1779.07 695.351,1737.74 \n",
" 716.013,1696.42 757.336,1675.76 777.998,1634.44 819.321,1613.77 798.659,1572.45 819.321,1531.13 860.645,1510.47 901.968,1489.8 922.63,1448.48 943.291,1407.16 \n",
" 922.63,1365.83 943.291,1324.51 984.615,1303.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 984.615,1303.85 1005.28,1262.53 984.615,1221.2 963.953,1179.88 984.615,1138.56 1025.94,1159.22 1005.28,1117.89 984.615,1076.57 1005.28,1035.25 1025.94,993.924 \n",
" 1067.26,973.262 1108.58,952.6 1129.25,993.924 1170.57,1014.59 1211.89,993.924 1253.22,973.262 1294.54,952.6 1335.86,931.939 1377.19,952.6 1418.51,931.939 \n",
" 1459.83,952.6 1501.16,931.939 1542.48,911.277 1583.8,890.615 1625.13,869.954 1666.45,849.292 1645.79,890.615 1687.11,911.277 1728.44,890.615 1769.76,869.954 \n",
" 1811.08,849.292 1852.41,828.63 1893.73,807.969 1935.05,787.307 1914.39,828.63 1955.71,807.969 1997.04,787.307 2038.36,766.645 2079.68,745.983 2121.01,725.322 \n",
" 2162.33,704.66 2203.65,683.998 2182.99,725.322 2224.32,704.66 2265.64,683.998 2306.96,704.66 2348.29,683.998 2389.61,663.337 2410.27,704.66 2451.59,725.322 \n",
" 2430.93,766.645 2472.26,787.307 2513.58,766.645 2534.24,807.969 2575.56,787.307 2616.89,766.645 2658.21,745.983 2699.53,766.645 2740.86,745.983 2782.18,725.322 \n",
" 2823.5,704.66 2802.84,745.983 2844.17,725.322 2885.49,745.983 2926.81,725.322 2968.14,745.983 2988.8,787.307 3030.12,766.645 3071.44,745.983 3092.11,787.307 \n",
" 3112.77,828.63 3133.43,869.954 3154.09,911.277 3174.75,952.6 3195.41,993.924 3216.08,1035.25 3236.74,1076.57 3257.4,1117.89 3236.74,1159.22 3216.08,1200.54 \n",
" 3236.74,1241.86 3257.4,1283.19 3216.08,1303.85 3236.74,1345.17 3257.4,1386.5 3216.08,1407.16 3236.74,1448.48 3195.41,1469.14 3216.08,1510.47 3236.74,1551.79 \n",
" 3195.41,1531.13 3216.08,1572.45 3236.74,1613.77 3257.4,1655.1 3236.74,1696.42 3257.4,1737.74 3278.06,1779.07 3236.74,1799.73 3257.4,1841.05 3278.06,1882.38 \n",
" 3298.72,1923.7 3319.38,1965.02 3340.05,2006.35 3298.72,1985.68 3319.38,2027.01 3298.72,2068.33 3319.38,2109.65 3278.06,2130.32 3236.74,2150.98 3257.4,2192.3 \n",
" 3216.08,2212.96 3236.74,2254.29 3216.08,2295.61 3174.75,2316.27 3154.09,2357.59 3133.43,2398.92 3112.77,2440.24 3071.44,2460.9 3050.78,2502.23 3071.44,2543.55 \n",
" 3092.11,2584.87 3050.78,2564.21 3030.12,2605.54 3050.78,2646.86 3071.44,2688.18 3030.12,2708.84 3050.78,2750.17 3009.46,2770.83 3030.12,2812.15 3050.78,2853.48 \n",
" 3030.12,2894.8 2988.8,2874.14 2968.14,2915.46 2926.81,2936.12 2885.49,2915.46 2844.17,2936.12 2802.84,2956.78 2761.52,2977.45 2720.2,2998.11 2678.87,2977.45 \n",
" 2637.55,2998.11 2596.23,3018.77 2554.9,3039.43 2513.58,3018.77 2472.26,2998.11 2430.93,3018.77 2389.61,2998.11 2348.29,3018.77 2306.96,3039.43 2265.64,3060.09 \n",
" 2286.3,3018.77 2244.98,3039.43 2203.65,3060.09 2162.33,3080.75 2121.01,3101.42 2079.68,3122.08 2038.36,3142.74 2059.02,3101.42 2017.7,3122.08 1976.38,3142.74 \n",
" 1935.05,3163.4 1893.73,3184.06 1852.41,3204.72 1811.08,3225.39 1769.76,3246.05 1790.42,3204.72 1749.1,3225.39 1707.77,3246.05 1666.45,3266.71 1625.13,3287.37 \n",
" 1583.8,3308.03 1542.48,3328.69 1521.82,3287.37 1480.5,3308.03 1439.17,3287.37 1397.85,3266.71 1418.51,3225.39 1377.19,3246.05 1356.52,3204.72 1315.2,3184.06 \n",
" 1273.88,3163.4 1253.22,3122.08 1211.89,3101.42 1170.57,3122.08 1129.25,3101.42 1087.92,3080.75 1108.58,3039.43 1067.26,3018.77 1025.94,2998.11 1005.28,2956.78 \n",
" 984.615,2915.46 963.953,2874.14 943.291,2832.81 922.63,2791.49 901.968,2750.17 881.306,2708.84 860.645,2667.52 901.968,2688.18 881.306,2646.86 860.645,2605.54 \n",
" 839.983,2564.21 819.321,2522.89 798.659,2481.56 819.321,2440.24 798.659,2398.92 777.998,2357.59 757.336,2316.27 736.674,2274.95 716.013,2233.62 757.336,2212.96 \n",
" 798.659,2192.3 819.321,2150.98 798.659,2109.65 777.998,2068.33 757.336,2027.01 736.674,1985.68 777.998,1965.02 757.336,1923.7 736.674,1882.38 716.013,1841.05 \n",
" 736.674,1799.73 716.013,1758.41 695.351,1717.08 736.674,1696.42 757.336,1655.1 798.659,1634.44 819.321,1593.11 798.659,1551.79 839.983,1531.13 860.645,1489.8 \n",
" 901.968,1469.14 943.291,1448.48 963.953,1407.16 943.291,1365.83 922.63,1324.51 943.291,1283.19 963.953,1241.86 1005.28,1221.2 1025.94,1179.88 1005.28,1138.56 \n",
" 984.615,1097.23 1005.28,1055.91 984.615,1014.59 1025.94,1035.25 1046.6,993.924 1087.92,973.262 1129.25,952.6 1149.91,993.924 1191.23,1014.59 1232.55,993.924 \n",
" 1273.88,973.262 1315.2,952.6 1356.52,931.939 1397.85,911.277 1439.17,931.939 1480.5,911.277 1521.82,931.939 1563.14,911.277 1604.47,890.615 1645.79,869.954 \n",
" 1687.11,849.292 1728.44,869.954 1769.76,849.292 1811.08,828.63 1790.42,869.954 1831.74,849.292 1873.07,828.63 1914.39,807.969 1955.71,787.307 1997.04,766.645 \n",
" 2038.36,745.983 2079.68,725.322 2121.01,704.66 2162.33,683.998 2203.65,663.337 2244.98,683.998 2286.3,663.337 2327.62,642.675 2368.95,663.337 2410.27,683.998 \n",
" 2451.59,704.66 2472.26,745.983 2513.58,725.322 2534.24,766.645 2575.56,745.983 2554.9,787.307 2596.23,766.645 2637.55,745.983 2678.87,766.645 2720.2,745.983 \n",
" 2761.52,725.322 2740.86,766.645 2782.18,745.983 2823.5,725.322 2864.83,745.983 2906.15,725.322 2947.47,745.983 2988.8,725.322 3030.12,745.983 3050.78,787.307 \n",
" 3092.11,807.969 3133.43,828.63 3154.09,869.954 3174.75,911.277 3133.43,890.615 3154.09,931.939 3174.75,973.262 3195.41,1014.59 3216.08,1055.91 3236.74,1097.23 \n",
" 3257.4,1138.56 3236.74,1179.88 3257.4,1221.2 3278.06,1262.53 3257.4,1303.85 3278.06,1345.17 3236.74,1365.83 3257.4,1407.16 3278.06,1448.48 3236.74,1469.14 \n",
" 3257.4,1510.47 3278.06,1551.79 3236.74,1531.13 3257.4,1572.45 3216.08,1593.11 3236.74,1634.44 3257.4,1675.76 3236.74,1717.08 3257.4,1758.41 3278.06,1799.73 \n",
" 3298.72,1841.05 3257.4,1820.39 3278.06,1861.71 3298.72,1903.04 3319.38,1944.36 3340.05,1985.68 3360.71,2027.01 3340.05,2068.33 3298.72,2088.99 3319.38,2130.32 \n",
" 3278.06,2150.98 3298.72,2192.3 3257.4,2212.96 3278.06,2254.29 3236.74,2274.95 3216.08,2316.27 3195.41,2357.59 3174.75,2398.92 3133.43,2378.26 3112.77,2419.58 \n",
" 3092.11,2460.9 3050.78,2481.56 3071.44,2522.89 3092.11,2564.21 3071.44,2605.54 3030.12,2626.2 3050.78,2667.52 3071.44,2708.84 3030.12,2729.51 3050.78,2770.83 \n",
" 3071.44,2812.15 3030.12,2832.81 3050.78,2874.14 3009.46,2894.8 2988.8,2936.12 2947.47,2956.78 2906.15,2936.12 2864.83,2956.78 2823.5,2977.45 2782.18,2998.11 \n",
" 2740.86,2977.45 2699.53,2998.11 2678.87,2956.78 2637.55,2977.45 2596.23,2998.11 2554.9,3018.77 2513.58,2998.11 2472.26,3018.77 2430.93,3039.43 2389.61,3018.77 \n",
" 2348.29,3039.43 2368.95,2998.11 2327.62,3018.77 2286.3,3039.43 2244.98,3060.09 2203.65,3080.75 2162.33,3060.09 2121.01,3080.75 2079.68,3101.42 2038.36,3122.08 \n",
" 1997.04,3142.74 1955.71,3163.4 1914.39,3184.06 1873.07,3204.72 1893.73,3163.4 1852.41,3184.06 1811.08,3204.72 1769.76,3225.39 1728.44,3246.05 1687.11,3266.71 \n",
" 1645.79,3287.37 1604.47,3308.03 1563.14,3328.69 1521.82,3349.36 1480.5,3328.69 1459.83,3287.37 1418.51,3266.71 1397.85,3225.39 1356.52,3246.05 1335.86,3204.72 \n",
" 1315.2,3163.4 1273.88,3142.74 1253.22,3101.42 1211.89,3080.75 1170.57,3060.09 1129.25,3080.75 1087.92,3060.09 1046.6,3039.43 1067.26,2998.11 1025.94,2977.45 \n",
" 1005.28,2936.12 984.615,2894.8 963.953,2853.48 943.291,2812.15 922.63,2770.83 901.968,2729.51 881.306,2688.18 860.645,2646.86 839.983,2605.54 881.306,2626.2 \n",
" 860.645,2584.87 839.983,2543.55 819.321,2502.23 798.659,2460.9 777.998,2419.58 757.336,2378.26 777.998,2336.93 757.336,2295.61 736.674,2254.29 716.013,2212.96 \n",
" 757.336,2192.3 777.998,2150.98 757.336,2109.65 736.674,2068.33 777.998,2088.99 757.336,2047.67 777.998,2006.35 757.336,1965.02 736.674,1923.7 716.013,1882.38 \n",
" 695.351,1841.05 674.689,1799.73 695.351,1758.41 716.013,1717.08 736.674,1675.76 777.998,1655.1 798.659,1613.77 819.321,1572.45 798.659,1531.13 839.983,1510.47 \n",
" 860.645,1469.14 881.306,1427.82 922.63,1407.16 901.968,1365.83 943.291,1345.17 922.63,1303.85 963.953,1283.19 943.291,1241.86 963.953,1200.54 984.615,1159.22 \n",
" 963.953,1117.89 943.291,1076.57 984.615,1055.91 1005.28,1014.59 1025.94,973.262 1067.26,952.6 1108.58,973.262 1149.91,952.6 1170.57,993.924 1211.89,973.262 \n",
" 1253.22,952.6 1294.54,973.262 1335.86,952.6 1377.19,931.939 1418.51,911.277 1459.83,890.615 1501.16,869.954 1542.48,890.615 1583.8,911.277 1625.13,890.615 \n",
" 1666.45,869.954 1707.77,849.292 1749.1,828.63 1790.42,849.292 1831.74,828.63 1873.07,807.969 1914.39,787.307 1893.73,828.63 1935.05,807.969 1976.38,787.307 \n",
" 2017.7,766.645 2059.02,745.983 2100.35,725.322 2141.67,704.66 2182.99,683.998 2224.32,663.337 2265.64,642.675 2306.96,663.337 2348.29,642.675 2368.95,683.998 \n",
" 2410.27,663.337 2430.93,704.66 2451.59,745.983 2492.92,766.645 2534.24,787.307 2575.56,766.645 2616.89,745.983 2658.21,725.322 2699.53,745.983 2740.86,725.322 \n",
" 2782.18,704.66 2823.5,683.998 2802.84,725.322 2844.17,704.66 2885.49,683.998 2864.83,725.322 2906.15,704.66 2926.81,745.983 2968.14,725.322 3009.46,745.983 \n",
" 3050.78,766.645 3071.44,807.969 3092.11,849.292 3112.77,807.969 3154.09,828.63 3174.75,869.954 3195.41,911.277 3154.09,890.615 3174.75,931.939 3195.41,973.262 \n",
" 3216.08,1014.59 3236.74,1055.91 3257.4,1097.23 3236.74,1138.56 3257.4,1179.88 3278.06,1221.2 3298.72,1262.53 3278.06,1303.85 3298.72,1345.17 3278.06,1386.5 \n",
" 3298.72,1427.82 3257.4,1448.48 3216.08,1469.14 3236.74,1510.47 3216.08,1551.79 3236.74,1593.11 3257.4,1634.44 3278.06,1675.76 3298.72,1717.08 3257.4,1696.42 \n",
" 3278.06,1737.74 3298.72,1779.07 3278.06,1820.39 3298.72,1861.71 3319.38,1903.04 3340.05,1944.36 3360.71,1985.68 3381.37,2027.01 3340.05,2047.67 3360.71,2088.99 \n",
" 3340.05,2130.32 3298.72,2150.98 3257.4,2171.64 3278.06,2212.96 3257.4,2254.29 3216.08,2274.95 3195.41,2316.27 3174.75,2357.59 3154.09,2398.92 3133.43,2440.24 \n",
" 3112.77,2481.56 3092.11,2522.89 3071.44,2564.21 3092.11,2605.54 3071.44,2646.86 3050.78,2688.18 3071.44,2729.51 3092.11,2770.83 3050.78,2791.49 3071.44,2832.81 \n",
" 3030.12,2853.48 3050.78,2894.8 3009.46,2915.46 2968.14,2936.12 2926.81,2956.78 2885.49,2977.45 2844.17,2956.78 2802.84,2977.45 2761.52,2998.11 2720.2,3018.77 \n",
" 2678.87,2998.11 2637.55,3018.77 2596.23,3039.43 2616.89,2998.11 2575.56,3018.77 2534.24,3039.43 2492.92,3060.09 2451.59,3039.43 2410.27,3018.77 2368.95,3039.43 \n",
" 2327.62,3060.09 2286.3,3080.75 2244.98,3101.42 2203.65,3122.08 2182.99,3080.75 2141.67,3101.42 2100.35,3122.08 2059.02,3142.74 2017.7,3163.4 1976.38,3184.06 \n",
" 1935.05,3204.72 1893.73,3225.39 1852.41,3246.05 1811.08,3266.71 1790.42,3225.39 1749.1,3246.05 1707.77,3266.71 1666.45,3287.37 1625.13,3308.03 1583.8,3328.69 \n",
" 1542.48,3349.36 1501.16,3328.69 1459.83,3308.03 1439.17,3266.71 1397.85,3246.05 1356.52,3225.39 1335.86,3184.06 1315.2,3142.74 1273.88,3122.08 1232.55,3101.42 \n",
" 1191.23,3122.08 1149.91,3101.42 1108.58,3080.75 1087.92,3039.43 1046.6,3018.77 1005.28,2998.11 984.615,2956.78 963.953,2915.46 984.615,2874.14 963.953,2832.81 \n",
" 943.291,2791.49 922.63,2750.17 901.968,2708.84 881.306,2667.52 860.645,2626.2 839.983,2584.87 819.321,2543.55 798.659,2502.23 777.998,2460.9 757.336,2419.58 \n",
" 736.674,2378.26 716.013,2336.93 695.351,2295.61 736.674,2316.27 757.336,2274.95 736.674,2233.62 716.013,2192.3 757.336,2171.64 777.998,2130.32 757.336,2088.99 \n",
" 736.674,2047.67 757.336,2006.35 736.674,1965.02 716.013,1923.7 757.336,1944.36 736.674,1903.04 716.013,1861.71 695.351,1820.39 674.689,1779.07 654.028,1737.74 \n",
" 674.689,1696.42 716.013,1675.76 736.674,1634.44 777.998,1613.77 757.336,1572.45 777.998,1531.13 819.321,1510.47 839.983,1469.14 881.306,1448.48 922.63,1427.82 \n",
" 901.968,1386.5 881.306,1345.17 901.968,1303.85 922.63,1262.53 943.291,1221.2 984.615,1200.54 963.953,1159.22 984.615,1117.89 1005.28,1076.57 984.615,1035.25 \n",
" 1005.28,993.924 1046.6,973.262 1087.92,952.6 1129.25,973.262 1170.57,952.6 1211.89,931.939 1191.23,973.262 1232.55,952.6 1273.88,931.939 1315.2,911.277 \n",
" 1356.52,890.615 1397.85,869.954 1377.19,911.277 1418.51,890.615 1459.83,911.277 1501.16,890.615 1542.48,869.954 1583.8,849.292 1563.14,890.615 1604.47,869.954 \n",
" 1645.79,849.292 1687.11,869.954 1728.44,849.292 1769.76,828.63 1811.08,807.969 1852.41,787.307 1893.73,766.645 1935.05,745.983 1976.38,766.645 2017.7,745.983 \n",
" 2059.02,725.322 2100.35,704.66 2141.67,683.998 2182.99,663.337 2224.32,683.998 2265.64,663.337 2306.96,642.675 2348.29,663.337 2368.95,704.66 2410.27,725.322 \n",
" 2430.93,683.998 2472.26,704.66 2492.92,745.983 2534.24,725.322 2575.56,704.66 2596.23,745.983 2637.55,725.322 2678.87,745.983 2720.2,725.322 2761.52,704.66 \n",
" 2802.84,683.998 2844.17,663.337 2864.83,704.66 2906.15,683.998 2947.47,704.66 2988.8,683.998 3009.46,725.322 3050.78,745.983 3092.11,766.645 3133.43,787.307 \n",
" 3174.75,807.969 3154.09,849.292 3174.75,890.615 3195.41,931.939 3216.08,973.262 3236.74,1014.59 3257.4,1055.91 3278.06,1097.23 3236.74,1117.89 3257.4,1159.22 \n",
" 3278.06,1200.54 3298.72,1241.86 3278.06,1283.19 3298.72,1324.51 3278.06,1365.83 3298.72,1407.16 3319.38,1448.48 3278.06,1469.14 3236.74,1489.8 3257.4,1531.13 \n",
" 3278.06,1572.45 3298.72,1613.77 3257.4,1593.11 3278.06,1634.44 3298.72,1675.76 3278.06,1717.08 3298.72,1758.41 3319.38,1799.73 3340.05,1841.05 3298.72,1820.39 \n",
" 3319.38,1861.71 3340.05,1903.04 3360.71,1944.36 3381.37,1985.68 3340.05,1965.02 3360.71,2006.35 3381.37,2047.67 3402.03,2088.99 3360.71,2109.65 3340.05,2150.98 \n",
" 3298.72,2171.64 3319.38,2212.96 3278.06,2233.62 3257.4,2274.95 3236.74,2316.27 3195.41,2336.93 3174.75,2378.26 3154.09,2419.58 3133.43,2460.9 3092.11,2481.56 \n",
" 3112.77,2522.89 3133.43,2564.21 3092.11,2543.55 3071.44,2584.87 3092.11,2626.2 3071.44,2667.52 3050.78,2708.84 3071.44,2750.17 3092.11,2791.49 3050.78,2812.15 \n",
" 3071.44,2853.48 3092.11,2894.8 3050.78,2915.46 3009.46,2936.12 2968.14,2956.78 2926.81,2977.45 2947.47,2936.12 2906.15,2956.78 2864.83,2977.45 2823.5,2998.11 \n",
" 2782.18,3018.77 2740.86,2998.11 2699.53,3018.77 2658.21,2998.11 2616.89,3018.77 2575.56,3039.43 2534.24,3060.09 2492.92,3039.43 2451.59,3060.09 2410.27,3039.43 \n",
" 2368.95,3060.09 2327.62,3039.43 2286.3,3060.09 2244.98,3080.75 2203.65,3101.42 2162.33,3122.08 2121.01,3142.74 2079.68,3163.4 2038.36,3184.06 1997.04,3163.4 \n",
" 1955.71,3184.06 1914.39,3204.72 1873.07,3225.39 1831.74,3246.05 1790.42,3266.71 1749.1,3287.37 1707.77,3308.03 1728.44,3266.71 1687.11,3287.37 1645.79,3308.03 \n",
" 1604.47,3328.69 1563.14,3349.36 1521.82,3328.69 1480.5,3349.36 1439.17,3328.69 1418.51,3287.37 1377.19,3266.71 1335.86,3246.05 1315.2,3204.72 1294.54,3163.4 \n",
" 1253.22,3142.74 1211.89,3122.08 1170.57,3101.42 1129.25,3122.08 1087.92,3101.42 1067.26,3060.09 1025.94,3039.43 984.615,3018.77 963.953,2977.45 943.291,2936.12 \n",
" 922.63,2894.8 943.291,2853.48 922.63,2812.15 901.968,2770.83 881.306,2729.51 860.645,2688.18 839.983,2646.86 819.321,2605.54 798.659,2564.21 777.998,2522.89 \n",
" 757.336,2481.56 777.998,2440.24 757.336,2398.92 736.674,2357.59 716.013,2316.27 695.351,2274.95 674.689,2233.62 716.013,2254.29 736.674,2212.96 757.336,2254.29 \n",
" 716.013,2274.95 695.351,2233.62 674.689,2192.3 716.013,2171.64 736.674,2130.32 777.998,2109.65 757.336,2068.33 736.674,2027.01 716.013,1985.68 736.674,1944.36 \n",
" 716.013,1903.04 695.351,1861.71 674.689,1820.39 695.351,1779.07 716.013,1737.74 695.351,1696.42 716.013,1655.1 757.336,1634.44 777.998,1593.11 757.336,1551.79 \n",
" 777.998,1510.47 819.321,1489.8 839.983,1448.48 881.306,1469.14 901.968,1427.82 922.63,1386.5 901.968,1345.17 881.306,1303.85 922.63,1283.19 963.953,1262.53 \n",
" 943.291,1303.85 901.968,1283.19 922.63,1241.86 963.953,1221.2 984.615,1179.88 963.953,1138.56 943.291,1097.23 963.953,1055.91 943.291,1014.59 984.615,993.924 \n",
" 1005.28,952.6 1046.6,931.939 1087.92,911.277 1129.25,931.939 1149.91,973.262 1191.23,952.6 1232.55,931.939 1273.88,911.277 1315.2,931.939 1356.52,911.277 \n",
" 1397.85,890.615 1439.17,911.277 1480.5,890.615 1521.82,869.954 1563.14,849.292 1604.47,828.63 1583.8,869.954 1625.13,849.292 1666.45,828.63 1707.77,807.969 \n",
" 1749.1,787.307 1728.44,828.63 1707.77,869.954 1749.1,849.292 1790.42,828.63 1831.74,807.969 1873.07,787.307 1914.39,766.645 1955.71,745.983 1997.04,725.322 \n",
" 2038.36,704.66 2079.68,683.998 2121.01,663.337 2162.33,642.675 2203.65,622.013 2244.98,642.675 2286.3,622.013 2327.62,601.352 2368.95,622.013 2410.27,642.675 \n",
" 2389.61,683.998 2430.93,663.337 2472.26,683.998 2492.92,725.322 2534.24,745.983 2575.56,725.322 2616.89,704.66 2658.21,683.998 2678.87,725.322 2720.2,704.66 \n",
" 2761.52,683.998 2802.84,704.66 2844.17,683.998 2885.49,704.66 2926.81,683.998 2947.47,725.322 2988.8,745.983 3030.12,725.322 3071.44,704.66 3092.11,745.983 \n",
" 3112.77,787.307 3154.09,807.969 3174.75,849.292 3195.41,890.615 3216.08,931.939 3236.74,973.262 3195.41,952.6 3216.08,993.924 3236.74,1035.25 3257.4,1076.57 \n",
" 3278.06,1117.89 3298.72,1159.22 3319.38,1200.54 3278.06,1179.88 3298.72,1221.2 3257.4,1200.54 3278.06,1241.86 3298.72,1283.19 3278.06,1324.51 3298.72,1365.83 \n",
" 3278.06,1407.16 3298.72,1448.48 3257.4,1469.14 3278.06,1510.47 3257.4,1551.79 3278.06,1593.11 3298.72,1634.44 3319.38,1675.76 3278.06,1696.42 3298.72,1737.74 \n",
" 3319.38,1779.07 3278.06,1758.41 3298.72,1799.73 3319.38,1841.05 3340.05,1882.38 3360.71,1923.7 3381.37,1965.02 3402.03,2006.35 3422.69,2047.67 3381.37,2068.33 \n",
" 3340.05,2088.99 3360.71,2130.32 3319.38,2150.98 3278.06,2171.64 3298.72,2212.96 3257.4,2233.62 3278.06,2274.95 3236.74,2295.61 3216.08,2336.93 3195.41,2378.26 \n",
" 3174.75,2419.58 3154.09,2460.9 3133.43,2502.23 3112.77,2543.55 3092.11,2502.23 3133.43,2522.89 3112.77,2564.21 3133.43,2605.54 3112.77,2646.86 3071.44,2626.2 \n",
" 3092.11,2667.52 3112.77,2708.84 3092.11,2750.17 3071.44,2791.49 3092.11,2832.81 3071.44,2874.14 3092.11,2915.46 3050.78,2936.12 3009.46,2956.78 2968.14,2977.45 \n",
" 2926.81,2998.11 2885.49,3018.77 2906.15,2977.45 2864.83,2998.11 2885.49,2956.78 2844.17,2977.45 2802.84,2998.11 2761.52,3018.77 2720.2,3039.43 2678.87,3018.77 \n",
" 2637.55,3039.43 2596.23,3060.09 2554.9,3080.75 2513.58,3060.09 2472.26,3039.43 2430.93,3060.09 2389.61,3039.43 2348.29,3060.09 2306.96,3080.75 2265.64,3101.42 \n",
" 2224.32,3080.75 2182.99,3101.42 2141.67,3122.08 2100.35,3142.74 2059.02,3163.4 2017.7,3184.06 1976.38,3204.72 1935.05,3184.06 1893.73,3204.72 1852.41,3225.39 \n",
" 1811.08,3246.05 1769.76,3266.71 1728.44,3287.37 1687.11,3308.03 1645.79,3328.69 1604.47,3349.36 1563.14,3370.02 1521.82,3390.68 1501.16,3349.36 1459.83,3328.69 \n",
" 1418.51,3308.03 1377.19,3287.37 1335.86,3266.71 1315.2,3225.39 1294.54,3184.06 1253.22,3163.4 1232.55,3122.08 1191.23,3101.42 1149.91,3122.08 1108.58,3101.42 \n",
" 1067.26,3080.75 1025.94,3060.09 1005.28,3018.77 984.615,2977.45 963.953,2936.12 943.291,2894.8 922.63,2853.48 901.968,2812.15 881.306,2770.83 860.645,2729.51 \n",
" 839.983,2688.18 819.321,2646.86 798.659,2605.54 839.983,2626.2 819.321,2584.87 798.659,2543.55 777.998,2502.23 757.336,2460.9 736.674,2419.58 716.013,2378.26 \n",
" 736.674,2336.93 716.013,2295.61 695.351,2254.29 674.689,2212.96 695.351,2171.64 736.674,2150.98 777.998,2171.64 757.336,2130.32 736.674,2088.99 716.013,2047.67 \n",
" 736.674,2006.35 716.013,1965.02 695.351,1923.7 674.689,1882.38 654.028,1841.05 633.366,1799.73 654.028,1758.41 674.689,1717.08 695.351,1675.76 736.674,1655.1 \n",
" 757.336,1613.77 777.998,1572.45 819.321,1551.79 798.659,1510.47 839.983,1489.8 860.645,1448.48 881.306,1407.16 860.645,1365.83 881.306,1324.51 860.645,1283.19 \n",
" 901.968,1262.53 922.63,1221.2 943.291,1179.88 922.63,1138.56 901.968,1097.23 943.291,1117.89 963.953,1076.57 943.291,1035.25 963.953,993.924 1005.28,973.262 \n",
" 1046.6,952.6 1087.92,931.939 1129.25,911.277 1170.57,931.939 1211.89,952.6 1170.57,973.262 1191.23,931.939 1232.55,911.277 1273.88,890.615 1294.54,931.939 \n",
" 1335.86,911.277 1377.19,890.615 1418.51,869.954 1459.83,849.292 1439.17,890.615 1480.5,869.954 1521.82,890.615 1563.14,869.954 1604.47,849.292 1645.79,828.63 \n",
" 1687.11,807.969 1728.44,787.307 1707.77,828.63 1749.1,807.969 1790.42,787.307 1831.74,766.645 1852.41,807.969 1893.73,787.307 1935.05,766.645 1976.38,745.983 \n",
" 2017.7,725.322 2059.02,704.66 2100.35,683.998 2141.67,663.337 2182.99,642.675 2224.32,622.013 2244.98,663.337 2286.3,642.675 2327.62,663.337 2368.95,642.675 \n",
" 2410.27,622.013 2451.59,642.675 2492.92,663.337 2513.58,704.66 2554.9,725.322 2513.58,745.983 2472.26,725.322 2492.92,683.998 2534.24,704.66 2554.9,745.983 \n",
" 2596.23,725.322 2637.55,704.66 2678.87,683.998 2699.53,725.322 2740.86,704.66 2782.18,683.998 2823.5,663.337 2864.83,683.998 2906.15,663.337 2926.81,704.66 \n",
" 2968.14,683.998 3009.46,704.66 3050.78,725.322 3071.44,766.645 3112.77,745.983 3154.09,766.645 3133.43,807.969 3174.75,828.63 3195.41,869.954 3216.08,911.277 \n",
" 3236.74,952.6 3257.4,993.924 3278.06,1035.25 3298.72,1076.57 3319.38,1117.89 3278.06,1138.56 3298.72,1179.88 3319.38,1221.2 3340.05,1262.53 3319.38,1303.85 \n",
" 3340.05,1345.17 3319.38,1386.5 3340.05,1427.82 3319.38,1469.14 3278.06,1489.8 3298.72,1531.13 3319.38,1572.45 3340.05,1613.77 3298.72,1593.11 3319.38,1634.44 \n",
" 3278.06,1655.1 3298.72,1696.42 3319.38,1737.74 3340.05,1779.07 3319.38,1820.39 3340.05,1861.71 3360.71,1903.04 3319.38,1882.38 3340.05,1923.7 3360.71,1965.02 \n",
" 3381.37,2006.35 3360.71,2047.67 3381.37,2088.99 3402.03,2130.32 3360.71,2150.98 3319.38,2171.64 3278.06,2192.3 3298.72,2233.62 3319.38,2274.95 3278.06,2295.61 \n",
" 3257.4,2336.93 3216.08,2357.59 3195.41,2398.92 3174.75,2440.24 3154.09,2481.56 3112.77,2502.23 3133.43,2543.55 3112.77,2584.87 3133.43,2626.2 3092.11,2646.86 \n",
" 3112.77,2688.18 3092.11,2729.51 3112.77,2770.83 3092.11,2812.15 3112.77,2853.48 3133.43,2894.8 3092.11,2874.14 3071.44,2915.46 3030.12,2936.12 2988.8,2956.78 \n",
" 2947.47,2977.45 2906.15,2998.11 2864.83,3018.77 2823.5,3039.43 2844.17,2998.11 2802.84,3018.77 2761.52,3039.43 2720.2,3060.09 2740.86,3018.77 2699.53,3039.43 \n",
" 2658.21,3018.77 2616.89,3039.43 2575.56,3060.09 2534.24,3080.75 2513.58,3039.43 2472.26,3060.09 2430.93,3080.75 2389.61,3060.09 2348.29,3080.75 2306.96,3060.09 \n",
" 2265.64,3080.75 2224.32,3101.42 2182.99,3122.08 2141.67,3142.74 2162.33,3101.42 2121.01,3122.08 2079.68,3142.74 2038.36,3163.4 1997.04,3184.06 1955.71,3204.72 \n",
" 1914.39,3225.39 1873.07,3246.05 1831.74,3225.39 1790.42,3246.05 1749.1,3266.71 1707.77,3287.37 1666.45,3308.03 1625.13,3328.69 1583.8,3349.36 1542.48,3370.02 \n",
" 1501.16,3390.68 1459.83,3370.02 1418.51,3349.36 1397.85,3308.03 1356.52,3287.37 1315.2,3266.71 1294.54,3225.39 1273.88,3184.06 1232.55,3163.4 1191.23,3142.74 \n",
" 1149.91,3163.4 1108.58,3142.74 1067.26,3122.08 1046.6,3080.75 1005.28,3060.09 963.953,3039.43 984.615,2998.11 963.953,2956.78 943.291,2915.46 922.63,2874.14 \n",
" 901.968,2832.81 881.306,2791.49 860.645,2750.17 839.983,2708.84 819.321,2667.52 798.659,2626.2 777.998,2584.87 819.321,2564.21 798.659,2522.89 777.998,2481.56 \n",
" 757.336,2440.24 736.674,2398.92 716.013,2357.59 695.351,2316.27 674.689,2274.95 654.028,2233.62 695.351,2212.96 736.674,2192.3 716.013,2150.98 736.674,2109.65 \n",
" 716.013,2068.33 695.351,2027.01 674.689,1985.68 716.013,2006.35 695.351,1965.02 674.689,1923.7 716.013,1944.36 695.351,1903.04 674.689,1861.71 654.028,1820.39 \n",
" 695.351,1799.73 674.689,1758.41 654.028,1717.08 674.689,1675.76 695.351,1634.44 736.674,1613.77 716.013,1572.45 757.336,1593.11 777.998,1551.79 757.336,1510.47 \n",
" 798.659,1489.8 819.321,1448.48 860.645,1427.82 901.968,1407.16 881.306,1365.83 901.968,1324.51 881.306,1283.19 901.968,1241.86 922.63,1200.54 943.291,1159.22 \n",
" 922.63,1117.89 963.953,1097.23 943.291,1055.91 963.953,1014.59 984.615,973.262 1025.94,952.6 1067.26,931.939 1108.58,911.277 1149.91,931.939 1191.23,911.277 \n",
" 1232.55,890.615 1253.22,931.939 1294.54,911.277 1335.86,890.615 1377.19,869.954 1418.51,849.292 1459.83,869.954 1501.16,849.292 1542.48,828.63 1583.8,807.969 \n",
" 1625.13,828.63 1666.45,807.969 1707.77,787.307 1687.11,828.63 1728.44,807.969 1769.76,787.307 1811.08,766.645 1790.42,807.969 1831.74,787.307 1873.07,766.645 \n",
" 1914.39,745.983 1955.71,766.645 1997.04,745.983 2038.36,725.322 2079.68,704.66 2121.01,683.998 2162.33,663.337 2203.65,642.675 2244.98,622.013 2286.3,601.352 \n",
" 2327.62,622.013 2368.95,601.352 2389.61,642.675 2430.93,622.013 2451.59,663.337 2492.92,642.675 2513.58,683.998 2554.9,704.66 2596.23,683.998 2616.89,725.322 \n",
" 2658.21,704.66 2699.53,683.998 2740.86,663.337 2782.18,642.675 2823.5,622.013 2802.84,663.337 2844.17,642.675 2885.49,663.337 2926.81,642.675 2947.47,683.998 \n",
" 2988.8,704.66 3030.12,683.998 3071.44,663.337 3092.11,704.66 3133.43,725.322 3112.77,766.645 3154.09,787.307 3195.41,807.969 3216.08,849.292 3236.74,890.615 \n",
" 3257.4,931.939 3216.08,952.6 3236.74,993.924 3257.4,1035.25 3278.06,1076.57 3298.72,1117.89 3278.06,1159.22 3298.72,1200.54 3319.38,1241.86 3340.05,1283.19 \n",
" 3298.72,1303.85 3319.38,1345.17 3298.72,1386.5 3278.06,1427.82 3298.72,1469.14 3257.4,1489.8 3278.06,1531.13 3298.72,1572.45 3278.06,1613.77 3298.72,1655.1 \n",
" 3319.38,1696.42 3340.05,1737.74 3360.71,1779.07 3319.38,1758.41 3340.05,1799.73 3360.71,1841.05 3381.37,1882.38 3402.03,1923.7 3422.69,1965.02 3381.37,1944.36 \n",
" 3402.03,1985.68 3422.69,2027.01 3402.03,2068.33 3381.37,2109.65 3402.03,2150.98 3360.71,2171.64 3319.38,2192.3 3340.05,2233.62 3298.72,2254.29 3319.38,2295.61 \n",
" 3278.06,2316.27 3236.74,2336.93 3216.08,2378.26 3195.41,2419.58 3154.09,2440.24 3133.43,2481.56 3154.09,2522.89 3174.75,2564.21 3133.43,2584.87 3112.77,2626.2 \n",
" 3133.43,2667.52 3092.11,2688.18 3112.77,2729.51 3133.43,2770.83 3112.77,2812.15 3092.11,2853.48 3071.44,2894.8 3030.12,2915.46 3050.78,2956.78 3009.46,2977.45 \n",
" 2968.14,2998.11 2926.81,3018.77 2885.49,2998.11 2844.17,3018.77 2802.84,3039.43 2761.52,3060.09 2720.2,3080.75 2740.86,3039.43 2699.53,3060.09 2658.21,3039.43 \n",
" 2616.89,3060.09 2575.56,3080.75 2534.24,3101.42 2554.9,3060.09 2513.58,3080.75 2472.26,3101.42 2430.93,3122.08 2410.27,3080.75 2368.95,3101.42 2327.62,3080.75 \n",
" 2286.3,3101.42 2244.98,3122.08 2203.65,3142.74 2162.33,3163.4 2121.01,3184.06 2079.68,3204.72 2100.35,3163.4 2059.02,3184.06 2017.7,3204.72 1976.38,3225.39 \n",
" 1935.05,3246.05 1893.73,3266.71 1852.41,3287.37 1811.08,3308.03 1831.74,3266.71 1790.42,3287.37 1749.1,3308.03 1707.77,3328.69 1666.45,3349.36 1625.13,3370.02 \n",
" 1583.8,3390.68 1542.48,3411.34 1521.82,3370.02 1480.5,3390.68 1459.83,3349.36 1439.17,3308.03 1397.85,3287.37 1356.52,3266.71 1335.86,3225.39 1294.54,3204.72 \n",
" 1253.22,3184.06 1232.55,3142.74 1191.23,3163.4 1149.91,3142.74 1108.58,3122.08 1067.26,3101.42 1046.6,3060.09 1005.28,3039.43 963.953,3018.77 943.291,2977.45 \n",
" 922.63,2936.12 901.968,2894.8 943.291,2874.14 922.63,2832.81 901.968,2791.49 881.306,2750.17 860.645,2708.84 839.983,2667.52 819.321,2626.2 798.659,2584.87 \n",
" 777.998,2543.55 757.336,2502.23 736.674,2460.9 716.013,2419.58 695.351,2378.26 674.689,2336.93 654.028,2295.61 674.689,2254.29 654.028,2212.96 695.351,2192.3 \n",
" 736.674,2171.64 716.013,2130.32 695.351,2088.99 674.689,2047.67 716.013,2027.01 695.351,1985.68 674.689,1944.36 654.028,1903.04 695.351,1882.38 674.689,1841.05 \n",
" 654.028,1799.73 633.366,1758.41 674.689,1737.74 654.028,1696.42 674.689,1655.1 716.013,1634.44 736.674,1593.11 716.013,1551.79 757.336,1531.13 777.998,1489.8 \n",
" 819.321,1469.14 839.983,1427.82 860.645,1386.5 839.983,1345.17 860.645,1303.85 881.306,1262.53 901.968,1221.2 943.291,1200.54 922.63,1159.22 901.968,1117.89 \n",
" 943.291,1138.56 922.63,1097.23 901.968,1055.91 922.63,1014.59 963.953,1035.25 943.291,993.924 963.953,952.6 1005.28,931.939 1046.6,911.277 1087.92,890.615 \n",
" 1108.58,931.939 1149.91,911.277 1191.23,890.615 1232.55,869.954 1253.22,911.277 1294.54,890.615 1335.86,869.954 1377.19,849.292 1418.51,828.63 1439.17,869.954 \n",
" 1480.5,849.292 1521.82,828.63 1563.14,807.969 1542.48,849.292 1583.8,828.63 1625.13,807.969 1666.45,787.307 1707.77,766.645 1749.1,745.983 1790.42,766.645 \n",
" 1769.76,807.969 1811.08,787.307 1852.41,766.645 1893.73,745.983 1935.05,725.322 1976.38,704.66 2017.7,683.998 2059.02,663.337 2100.35,642.675 2141.67,622.013 \n",
" 2182.99,601.352 2224.32,580.69 2265.64,601.352 2306.96,622.013 2348.29,601.352 2389.61,622.013 2430.93,642.675 2451.59,683.998 2492.92,704.66 2534.24,683.998 \n",
" 2575.56,663.337 2596.23,704.66 2637.55,683.998 2678.87,704.66 2720.2,683.998 2761.52,663.337 2802.84,642.675 2844.17,622.013 2864.83,663.337 2906.15,642.675 \n",
" 2947.47,663.337 2968.14,704.66 3009.46,683.998 3050.78,704.66 3092.11,725.322 3133.43,745.983 3174.75,766.645 3216.08,787.307 3195.41,828.63 3216.08,869.954 \n",
" 3236.74,911.277 3257.4,952.6 3278.06,993.924 3298.72,1035.25 3257.4,1014.59 3278.06,1055.91 3298.72,1097.23 3319.38,1138.56 3340.05,1179.88 3360.71,1221.2 \n",
" 3381.37,1262.53 3340.05,1241.86 3319.38,1283.19 3340.05,1324.51 3319.38,1365.83 3340.05,1407.16 3360.71,1448.48 3319.38,1427.82 3340.05,1469.14 3298.72,1489.8 \n",
" 3319.38,1531.13 3340.05,1572.45 3298.72,1551.79 3319.38,1593.11 3340.05,1634.44 3360.71,1675.76 3319.38,1655.1 3340.05,1696.42 3360.71,1737.74 3319.38,1717.08 \n",
" 3340.05,1758.41 3360.71,1799.73 3381.37,1841.05 3340.05,1820.39 3360.71,1861.71 3381.37,1903.04 3402.03,1944.36 3422.69,1985.68 3402.03,2027.01 3422.69,2068.33 \n",
" 3402.03,2109.65 3381.37,2150.98 3340.05,2171.64 3360.71,2212.96 3319.38,2233.62 3298.72,2274.95 3257.4,2295.61 3278.06,2336.93 3236.74,2357.59 3216.08,2398.92 \n",
" 3195.41,2440.24 3174.75,2481.56 3195.41,2522.89 3154.09,2543.55 3174.75,2584.87 3154.09,2626.2 3112.77,2605.54 3133.43,2646.86 3154.09,2688.18 3112.77,2667.52 \n",
" 3092.11,2708.84 3112.77,2750.17 3133.43,2791.49 3112.77,2832.81 3133.43,2874.14 3112.77,2915.46 3071.44,2936.12 3030.12,2956.78 2988.8,2977.45 2947.47,2998.11 \n",
" 2906.15,3018.77 2864.83,3039.43 2823.5,3018.77 2782.18,3039.43 2740.86,3060.09 2699.53,3080.75 2678.87,3039.43 2637.55,3060.09 2596.23,3080.75 2554.9,3101.42 \n",
" 2513.58,3122.08 2492.92,3080.75 2451.59,3101.42 2410.27,3122.08 2389.61,3080.75 2348.29,3101.42 2306.96,3122.08 2265.64,3142.74 2224.32,3122.08 2182.99,3142.74 \n",
" 2141.67,3163.4 2100.35,3184.06 2059.02,3204.72 2017.7,3225.39 1976.38,3246.05 1997.04,3204.72 1955.71,3225.39 1914.39,3246.05 1873.07,3266.71 1831.74,3287.37 \n",
" 1790.42,3308.03 1749.1,3328.69 1769.76,3287.37 1728.44,3308.03 1687.11,3328.69 1645.79,3349.36 1604.47,3370.02 1563.14,3390.68 1521.82,3411.34 1501.16,3370.02 \n",
" 1459.83,3390.68 1439.17,3349.36 1397.85,3328.69 1356.52,3308.03 1315.2,3287.37 1294.54,3246.05 1273.88,3204.72 1232.55,3184.06 1211.89,3142.74 1170.57,3163.4 \n",
" 1129.25,3142.74 1087.92,3122.08 1046.6,3101.42 1005.28,3080.75 984.615,3039.43 963.953,2998.11 943.291,2956.78 922.63,2915.46 901.968,2874.14 881.306,2832.81 \n",
" 860.645,2791.49 839.983,2750.17 819.321,2708.84 798.659,2667.52 777.998,2626.2 757.336,2584.87 736.674,2543.55 777.998,2564.21 757.336,2522.89 736.674,2481.56 \n",
" 716.013,2440.24 695.351,2398.92 674.689,2357.59 654.028,2316.27 695.351,2336.93 674.689,2295.61 654.028,2254.29 633.366,2212.96 654.028,2171.64 695.351,2150.98 \n",
" 716.013,2109.65 695.351,2068.33 674.689,2027.01 654.028,1985.68 695.351,2006.35 674.689,1965.02 654.028,1923.7 695.351,1944.36 674.689,1903.04 654.028,1861.71 \n",
" 633.366,1820.39 654.028,1779.07 633.366,1737.74 612.704,1696.42 654.028,1675.76 695.351,1655.1 716.013,1613.77 736.674,1572.45 716.013,1531.13 736.674,1489.8 \n",
" 777.998,1469.14 798.659,1427.82 839.983,1407.16 881.306,1386.5 860.645,1345.17 839.983,1303.85 860.645,1262.53 881.306,1221.2 901.968,1179.88 881.306,1138.56 \n",
" 860.645,1097.23 901.968,1076.57 922.63,1035.25 901.968,993.924 943.291,973.262 984.615,952.6 1025.94,931.939 1067.26,911.277 1108.58,890.615 1149.91,869.954 \n",
" 1170.57,911.277 1211.89,890.615 1253.22,869.954 1294.54,849.292 1315.2,890.615 1356.52,869.954 1397.85,849.292 1439.17,828.63 1480.5,807.969 1521.82,787.307 \n",
" 1501.16,828.63 1542.48,807.969 1521.82,849.292 1563.14,828.63 1604.47,807.969 1645.79,787.307 1687.11,766.645 1728.44,745.983 1769.76,766.645 1811.08,745.983 \n",
" 1852.41,725.322 1893.73,704.66 1873.07,745.983 1914.39,725.322 1955.71,704.66 1997.04,683.998 1976.38,725.322 2017.7,704.66 2059.02,683.998 2100.35,663.337 \n",
" 2141.67,642.675 2182.99,622.013 2224.32,642.675 2265.64,622.013 2306.96,601.352 2348.29,622.013 2389.61,601.352 2430.93,580.69 2451.59,622.013 2472.26,663.337 \n",
" 2513.58,642.675 2554.9,663.337 2596.23,642.675 2616.89,683.998 2658.21,663.337 2699.53,642.675 2740.86,622.013 2720.2,663.337 2699.53,704.66 2740.86,683.998 \n",
" 2782.18,663.337 2823.5,642.675 2864.83,622.013 2906.15,601.352 2885.49,642.675 2926.81,663.337 2968.14,642.675 3009.46,663.337 3030.12,704.66 3071.44,725.322 \n",
" 3112.77,704.66 3154.09,725.322 3133.43,766.645 3174.75,787.307 3216.08,807.969 3195.41,849.292 3216.08,890.615 3236.74,931.939 3257.4,973.262 3278.06,1014.59 \n",
" 3298.72,1055.91 3319.38,1097.23 3298.72,1138.56 3319.38,1179.88 3340.05,1221.2 3319.38,1262.53 3340.05,1303.85 3360.71,1345.17 3319.38,1324.51 3340.05,1365.83 \n",
" 3319.38,1407.16 3340.05,1448.48 3319.38,1489.8 3340.05,1531.13 3298.72,1510.47 3319.38,1551.79 3340.05,1593.11 3360.71,1634.44 3319.38,1613.77 3340.05,1655.1 \n",
" 3360.71,1696.42 3381.37,1737.74 3340.05,1717.08 3360.71,1758.41 3381.37,1799.73 3402.03,1841.05 3360.71,1820.39 3381.37,1861.71 3402.03,1903.04 3360.71,1882.38 \n",
" 3381.37,1923.7 3402.03,1965.02 3422.69,2006.35 3402.03,2047.67 3422.69,2088.99 3443.36,2130.32 3422.69,2171.64 3381.37,2192.3 3340.05,2212.96 3319.38,2254.29 \n",
" 3298.72,2295.61 3257.4,2316.27 3278.06,2357.59 3236.74,2378.26 3216.08,2419.58 3195.41,2460.9 3174.75,2502.23 3195.41,2543.55 3154.09,2564.21 3174.75,2605.54 \n",
" 3154.09,2646.86 3133.43,2688.18 3154.09,2729.51 3174.75,2770.83 3133.43,2750.17 3112.77,2791.49 3133.43,2832.81 3112.77,2874.14 3133.43,2915.46 3092.11,2936.12 \n",
" 3071.44,2977.45 3030.12,2998.11 2988.8,3018.77 2947.47,3039.43 2906.15,3060.09 2864.83,3080.75 2844.17,3039.43 2802.84,3060.09 2761.52,3080.75 2720.2,3101.42 \n",
" 2678.87,3080.75 2637.55,3101.42 2658.21,3060.09 2616.89,3080.75 2575.56,3101.42 2534.24,3122.08 2492.92,3101.42 2451.59,3080.75 2410.27,3060.09 2368.95,3080.75 \n",
" 2327.62,3101.42 2286.3,3122.08 2244.98,3142.74 2203.65,3163.4 2162.33,3142.74 2121.01,3163.4 2079.68,3184.06 2038.36,3204.72 1997.04,3225.39 1955.71,3246.05 \n",
" 1914.39,3266.71 1935.05,3225.39 1893.73,3246.05 1852.41,3266.71 1811.08,3287.37 1769.76,3308.03 1728.44,3328.69 1687.11,3349.36 1645.79,3370.02 1666.45,3328.69 \n",
" 1625.13,3349.36 1583.8,3370.02 1542.48,3390.68 1501.16,3411.34 1480.5,3370.02 1439.17,3390.68 1397.85,3370.02 1377.19,3328.69 1335.86,3308.03 1294.54,3287.37 \n",
" 1273.88,3246.05 1253.22,3204.72 1211.89,3184.06 1170.57,3204.72 1129.25,3184.06 1087.92,3163.4 1046.6,3142.74 1025.94,3101.42 984.615,3080.75 943.291,3060.09 \n",
" 922.63,3018.77 901.968,2977.45 943.291,2998.11 922.63,2956.78 901.968,2915.46 881.306,2874.14 860.645,2832.81 901.968,2853.48 881.306,2812.15 860.645,2770.83 \n",
" 839.983,2729.51 819.321,2688.18 798.659,2646.86 777.998,2605.54 757.336,2564.21 736.674,2522.89 716.013,2481.56 736.674,2440.24 716.013,2398.92 695.351,2357.59 \n",
" 674.689,2316.27 654.028,2274.95 633.366,2233.62 654.028,2192.3 674.689,2150.98 695.351,2109.65 674.689,2068.33 716.013,2088.99 695.351,2047.67 674.689,2006.35 \n",
" 654.028,1965.02 633.366,1923.7 654.028,1882.38 633.366,1841.05 612.704,1799.73 592.043,1758.41 633.366,1779.07 612.704,1737.74 633.366,1696.42 654.028,1655.1 \n",
" 674.689,1613.77 716.013,1593.11 736.674,1551.79 716.013,1510.47 757.336,1489.8 798.659,1469.14 819.321,1427.82 860.645,1407.16 839.983,1365.83 860.645,1324.51 \n",
" 839.983,1283.19 860.645,1241.86 881.306,1200.54 922.63,1179.88 901.968,1138.56 881.306,1097.23 922.63,1076.57 901.968,1035.25 922.63,993.924 963.953,973.262 \n",
" 984.615,931.939 1025.94,911.277 1067.26,890.615 1108.58,869.954 1149.91,890.615 1191.23,869.954 1211.89,911.277 1253.22,890.615 1294.54,869.954 1335.86,849.292 \n",
" 1377.19,828.63 1418.51,807.969 1439.17,849.292 1480.5,828.63 1521.82,807.969 1563.14,787.307 1604.47,766.645 1645.79,745.983 1625.13,787.307 1666.45,766.645 \n",
" 1645.79,807.969 1687.11,787.307 1728.44,766.645 1769.76,745.983 1811.08,725.322 1852.41,745.983 1893.73,725.322 1935.05,704.66 1976.38,683.998 1955.71,725.322 \n",
" 1997.04,704.66 2038.36,683.998 2079.68,663.337 2121.01,642.675 2162.33,622.013 2203.65,601.352 2244.98,580.69 2286.3,560.028 2327.62,580.69 2368.95,560.028 \n",
" 2410.27,580.69 2451.59,601.352 2472.26,642.675 2513.58,663.337 2554.9,683.998 2596.23,663.337 2637.55,642.675 2678.87,663.337 2720.2,642.675 2761.52,622.013 \n",
" 2802.84,601.352 2844.17,580.69 2885.49,601.352 2864.83,642.675 2906.15,622.013 2947.47,642.675 2988.8,663.337 3030.12,642.675 3050.78,683.998 3092.11,663.337 \n",
" 3133.43,683.998 3112.77,725.322 3154.09,745.983 3195.41,766.645 3236.74,787.307 3216.08,828.63 3195.41,787.307 3236.74,807.969 3216.08,766.645 3257.4,787.307 \n",
" 3236.74,828.63 3257.4,869.954 3278.06,911.277 3298.72,952.6 3319.38,993.924 3278.06,973.262 3298.72,1014.59 3319.38,1055.91 3340.05,1097.23 3360.71,1138.56 \n",
" 3319.38,1159.22 3340.05,1200.54 3360.71,1241.86 3381.37,1283.19 3360.71,1324.51 3381.37,1365.83 3340.05,1386.5 3360.71,1427.82 3381.37,1469.14 3340.05,1489.8 \n",
" 3360.71,1531.13 3319.38,1510.47 3340.05,1551.79 3360.71,1593.11 3381.37,1634.44 3402.03,1675.76 3360.71,1655.1 3381.37,1696.42 3340.05,1675.76 3360.71,1717.08 \n",
" 3381.37,1758.41 3402.03,1799.73 3422.69,1841.05 3381.37,1820.39 3402.03,1861.71 3422.69,1903.04 3443.36,1944.36 3464.02,1985.68 3443.36,2027.01 3464.02,2068.33 \n",
" 3443.36,2109.65 3422.69,2150.98 3381.37,2171.64 3340.05,2192.3 3360.71,2233.62 3340.05,2274.95 3319.38,2316.27 3298.72,2357.59 3257.4,2378.26 3236.74,2419.58 \n",
" 3216.08,2460.9 3195.41,2502.23 3174.75,2543.55 3154.09,2584.87 3174.75,2626.2 3154.09,2667.52 3133.43,2708.84 3154.09,2750.17 3174.75,2791.49 3133.43,2812.15 \n",
" 3154.09,2853.48 3174.75,2894.8 3154.09,2936.12 3112.77,2956.78 3092.11,2998.11 3050.78,2977.45 3009.46,2998.11 2968.14,3018.77 2926.81,3039.43 2885.49,3060.09 \n",
" 2844.17,3080.75 2802.84,3101.42 2782.18,3060.09 2740.86,3080.75 2699.53,3101.42 2678.87,3060.09 2637.55,3080.75 2596.23,3101.42 2554.9,3122.08 2513.58,3101.42 \n",
" 2472.26,3080.75 2430.93,3101.42 2389.61,3122.08 2348.29,3142.74 2306.96,3163.4 2327.62,3122.08 2286.3,3142.74 2306.96,3101.42 2265.64,3122.08 2224.32,3142.74 \n",
" 2182.99,3163.4 2141.67,3184.06 2100.35,3204.72 2059.02,3225.39 2017.7,3246.05 1976.38,3266.71 1935.05,3287.37 1893.73,3308.03 1852.41,3328.69 1873.07,3287.37 \n",
" 1831.74,3308.03 1790.42,3328.69 1749.1,3349.36 1707.77,3370.02 1666.45,3390.68 1625.13,3411.34 1583.8,3432 1604.47,3390.68 1563.14,3411.34 1521.82,3432 \n",
" 1480.5,3411.34 1439.17,3432 1418.51,3390.68 1397.85,3349.36 1377.19,3308.03 1335.86,3287.37 1315.2,3246.05 1273.88,3225.39 1232.55,3204.72 1211.89,3163.4 \n",
" 1170.57,3142.74 1129.25,3163.4 1087.92,3142.74 1046.6,3122.08 1025.94,3080.75 984.615,3060.09 943.291,3039.43 922.63,2998.11 901.968,2956.78 881.306,2915.46 \n",
" 860.645,2874.14 839.983,2832.81 881.306,2853.48 860.645,2812.15 839.983,2770.83 819.321,2729.51 798.659,2688.18 777.998,2646.86 757.336,2605.54 736.674,2564.21 \n",
" 716.013,2522.89 757.336,2543.55 736.674,2502.23 716.013,2460.9 695.351,2419.58 674.689,2378.26 654.028,2336.93 633.366,2295.61 612.704,2254.29 592.043,2212.96 \n",
" 633.366,2192.3 674.689,2171.64 695.351,2130.32 674.689,2088.99 654.028,2047.67 633.366,2006.35 612.704,1965.02 654.028,1944.36 633.366,1903.04 612.704,1861.71 \n",
" 592.043,1820.39 612.704,1779.07 592.043,1737.74 633.366,1717.08 612.704,1675.76 633.366,1634.44 654.028,1593.11 695.351,1572.45 674.689,1531.13 695.351,1489.8 \n",
" 736.674,1469.14 777.998,1448.48 798.659,1407.16 839.983,1386.5 819.321,1345.17 798.659,1303.85 839.983,1324.51 819.321,1283.19 839.983,1241.86 860.645,1200.54 \n",
" 881.306,1159.22 901.968,1200.54 881.306,1241.86 839.983,1221.2 860.645,1179.88 901.968,1159.22 881.306,1117.89 860.645,1076.57 881.306,1035.25 922.63,1055.91 \n",
" 901.968,1014.59 922.63,973.262 943.291,931.939 984.615,911.277 1025.94,890.615 1067.26,869.954 1108.58,849.292 1129.25,890.615 1170.57,869.954 1211.89,849.292 \n",
" 1253.22,828.63 1273.88,869.954 1315.2,849.292 1356.52,828.63 1397.85,807.969 1439.17,787.307 1459.83,828.63 1501.16,807.969 1542.48,787.307 1583.8,766.645 \n",
" 1625.13,745.983 1604.47,787.307 1645.79,766.645 1687.11,745.983 1728.44,725.322 1749.1,766.645 1790.42,745.983 1831.74,725.322 1873.07,704.66 1914.39,683.998 \n",
" 1955.71,663.337 1997.04,642.675 2038.36,663.337 2079.68,642.675 2121.01,622.013 2162.33,601.352 2203.65,580.69 2244.98,601.352 2286.3,580.69 2327.62,560.028 \n",
" 2368.95,580.69 2410.27,601.352 2451.59,580.69 2472.26,622.013 2513.58,601.352 2534.24,642.675 2575.56,622.013 2616.89,642.675 2658.21,622.013 2637.55,663.337 \n",
" 2678.87,642.675 2720.2,622.013 2699.53,663.337 2740.86,642.675 2782.18,622.013 2823.5,601.352 2864.83,580.69 2885.49,622.013 2926.81,601.352 2968.14,622.013 \n",
" 3009.46,642.675 3050.78,663.337 3092.11,683.998 3133.43,704.66 3174.75,725.322 3216.08,745.983 3257.4,766.645 3278.06,807.969 3257.4,849.292 3278.06,890.615 \n",
" 3236.74,869.954 3257.4,911.277 3278.06,952.6 3298.72,993.924 3319.38,1035.25 3340.05,1076.57 3360.71,1117.89 3340.05,1159.22 3360.71,1200.54 3381.37,1241.86 \n",
" 3360.71,1283.19 3381.37,1324.51 3360.71,1365.83 3381.37,1407.16 3402.03,1448.48 3360.71,1469.14 3340.05,1510.47 3360.71,1551.79 3381.37,1593.11 3402.03,1634.44 \n",
" 3360.71,1613.77 3381.37,1655.1 3402.03,1696.42 3422.69,1737.74 3381.37,1717.08 3402.03,1758.41 3422.69,1799.73 3381.37,1779.07 3402.03,1820.39 3422.69,1861.71 \n",
" 3443.36,1903.04 3402.03,1882.38 3422.69,1923.7 3443.36,1965.02 3464.02,2006.35 3443.36,2047.67 3464.02,2088.99 3422.69,2109.65 3381.37,2130.32 3402.03,2171.64 \n",
" 3360.71,2192.3 3381.37,2233.62 3340.05,2254.29 3360.71,2295.61 3340.05,2336.93 3298.72,2316.27 3319.38,2357.59 3278.06,2378.26 3236.74,2398.92 3216.08,2440.24 \n",
" 3174.75,2460.9 3154.09,2502.23 3195.41,2481.56 3174.75,2522.89 3195.41,2564.21 3216.08,2605.54 3195.41,2646.86 3174.75,2688.18 3195.41,2729.51 3154.09,2708.84 \n",
" 3174.75,2750.17 3133.43,2729.51 3154.09,2770.83 3174.75,2812.15 3195.41,2853.48 3154.09,2874.14 3112.77,2894.8 3133.43,2936.12 3092.11,2956.78 3071.44,2998.11 \n",
" 3030.12,2977.45 2988.8,2998.11 2947.47,3018.77 2906.15,3039.43 2864.83,3060.09 2823.5,3080.75 2782.18,3101.42 2740.86,3122.08 2699.53,3142.74 2678.87,3101.42 \n",
" 2637.55,3122.08 2658.21,3080.75 2616.89,3101.42 2575.56,3122.08 2534.24,3142.74 2492.92,3122.08 2451.59,3142.74 2410.27,3163.4 2368.95,3142.74 2389.61,3101.42 \n",
" 2348.29,3122.08 2306.96,3142.74 2265.64,3163.4 2224.32,3184.06 2182.99,3204.72 2141.67,3225.39 2162.33,3184.06 2121.01,3204.72 2079.68,3225.39 2038.36,3246.05 \n",
" 1997.04,3266.71 1955.71,3287.37 1914.39,3308.03 1935.05,3266.71 1893.73,3287.37 1852.41,3308.03 1811.08,3328.69 1769.76,3349.36 1728.44,3370.02 1687.11,3390.68 \n",
" 1707.77,3349.36 1666.45,3370.02 1625.13,3390.68 1583.8,3411.34 1542.48,3432 1501.16,3452.66 1459.83,3432 1418.51,3411.34 1439.17,3370.02 1418.51,3328.69 \n",
" 1377.19,3349.36 1335.86,3328.69 1294.54,3308.03 1273.88,3266.71 1253.22,3225.39 1211.89,3204.72 1170.57,3184.06 1129.25,3204.72 1108.58,3163.4 1067.26,3142.74 \n",
" 1025.94,3122.08 984.615,3101.42 963.953,3060.09 943.291,3018.77 922.63,2977.45 901.968,2936.12 881.306,2894.8 860.645,2853.48 839.983,2812.15 819.321,2770.83 \n",
" 798.659,2729.51 777.998,2688.18 757.336,2646.86 736.674,2605.54 716.013,2564.21 695.351,2522.89 674.689,2481.56 716.013,2502.23 695.351,2460.9 674.689,2419.58 \n",
" 654.028,2378.26 633.366,2336.93 612.704,2295.61 633.366,2254.29 612.704,2212.96 633.366,2171.64 654.028,2130.32 633.366,2088.99 674.689,2109.65 654.028,2068.33 \n",
" 633.366,2027.01 612.704,1985.68 654.028,2006.35 633.366,1965.02 612.704,1923.7 633.366,1882.38 612.704,1841.05 592.043,1799.73 612.704,1758.41 592.043,1717.08 \n",
" 571.381,1675.76 612.704,1655.1 654.028,1634.44 695.351,1613.77 674.689,1572.45 695.351,1531.13 736.674,1510.47 757.336,1469.14 798.659,1448.48 819.321,1407.16 \n",
" 798.659,1365.83 819.321,1324.51 798.659,1283.19 839.983,1262.53 860.645,1221.2 881.306,1179.88 860.645,1138.56 839.983,1097.23 881.306,1076.57 860.645,1035.25 \n",
" 881.306,993.924 901.968,952.6 922.63,911.277 963.953,931.939 1005.28,911.277 1046.6,890.615 1087.92,869.954 1129.25,849.292 1170.57,828.63 1211.89,807.969 \n",
" 1232.55,849.292 1273.88,828.63 1315.2,807.969 1356.52,787.307 1335.86,828.63 1315.2,869.954 1356.52,849.292 1397.85,828.63 1439.17,807.969 1480.5,787.307 \n",
" 1521.82,766.645 1563.14,745.983 1583.8,787.307 1625.13,766.645 1666.45,745.983 1707.77,725.322 1749.1,704.66 1790.42,725.322 1831.74,745.983 1873.07,725.322 \n",
" 1914.39,704.66 1955.71,683.998 1997.04,663.337 2038.36,642.675 2079.68,622.013 2121.01,601.352 2162.33,580.69 2203.65,560.028 2224.32,601.352 2265.64,580.69 \n",
" 2306.96,560.028 2348.29,580.69 2389.61,560.028 2430.93,539.367 2472.26,560.028 2492.92,601.352 2534.24,622.013 2575.56,642.675 2616.89,663.337 2575.56,683.998 \n",
" 2534.24,663.337 2554.9,622.013 2596.23,601.352 2637.55,622.013 2678.87,601.352 2658.21,642.675 2699.53,622.013 2740.86,601.352 2761.52,642.675 2802.84,622.013 \n",
" 2844.17,601.352 2885.49,580.69 2926.81,560.028 2947.47,601.352 2988.8,622.013 2968.14,663.337 2947.47,622.013 2988.8,642.675 3030.12,663.337 3071.44,683.998 \n",
" 3112.77,663.337 3154.09,683.998 3195.41,704.66 3174.75,745.983 3216.08,725.322 3236.74,766.645 3257.4,807.969 3236.74,849.292 3257.4,890.615 3278.06,931.939 \n",
" 3298.72,973.262 3319.38,1014.59 3340.05,1055.91 3360.71,1097.23 3319.38,1076.57 3340.05,1117.89 3360.71,1159.22 3381.37,1200.54 3402.03,1241.86 3360.71,1262.53 \n",
" 3381.37,1303.85 3402.03,1345.17 3381.37,1386.5 3402.03,1427.82 3360.71,1407.16 3381.37,1448.48 3360.71,1489.8 3381.37,1531.13 3360.71,1572.45 3381.37,1613.77 \n",
" 3402.03,1655.1 3422.69,1696.42 3381.37,1675.76 3402.03,1717.08 3422.69,1758.41 3443.36,1799.73 3402.03,1779.07 3422.69,1820.39 3443.36,1861.71 3464.02,1903.04 \n",
" 3422.69,1882.38 3443.36,1923.7 3464.02,1965.02 3422.69,1944.36 3443.36,1985.68 3464.02,2027.01 3443.36,2068.33 3464.02,2109.65 3422.69,2130.32 3443.36,2171.64 \n",
" 3402.03,2192.3 3422.69,2233.62 3381.37,2254.29 3402.03,2295.61 3360.71,2316.27 3319.38,2336.93 3298.72,2378.26 3257.4,2398.92 3236.74,2440.24 3216.08,2481.56 \n",
" 3236.74,2522.89 3216.08,2564.21 3195.41,2605.54 3174.75,2646.86 3154.09,2605.54 3195.41,2626.2 3174.75,2667.52 3195.41,2708.84 3216.08,2750.17 3174.75,2729.51 \n",
" 3195.41,2770.83 3154.09,2791.49 3174.75,2832.81 3133.43,2853.48 3154.09,2894.8 3174.75,2936.12 3133.43,2956.78 3092.11,2977.45 3050.78,2998.11 3009.46,3018.77 \n",
" 2968.14,3039.43 2926.81,3060.09 2885.49,3039.43 2844.17,3060.09 2802.84,3080.75 2761.52,3101.42 2720.2,3122.08 2678.87,3142.74 2658.21,3101.42 2616.89,3122.08 \n",
" 2575.56,3142.74 2534.24,3163.4 2492.92,3142.74 2451.59,3122.08 2410.27,3101.42 2368.95,3122.08 2327.62,3142.74 2286.3,3163.4 2244.98,3184.06 2203.65,3204.72 \n",
" 2224.32,3163.4 2182.99,3184.06 2141.67,3204.72 2100.35,3225.39 2059.02,3246.05 2017.7,3266.71 2038.36,3225.39 1997.04,3246.05 1955.71,3266.71 1914.39,3287.37 \n",
" 1873.07,3308.03 1831.74,3328.69 1790.42,3349.36 1749.1,3370.02 1769.76,3328.69 1728.44,3349.36 1687.11,3370.02 1645.79,3390.68 1604.47,3411.34 1563.14,3432 \n",
" 1521.82,3452.66 1480.5,3432 1439.17,3411.34 1418.51,3370.02 1377.19,3390.68 1356.52,3349.36 1315.2,3328.69 1273.88,3308.03 1253.22,3266.71 1232.55,3225.39 \n",
" 1191.23,3204.72 1149.91,3184.06 1108.58,3204.72 1067.26,3184.06 1025.94,3163.4 1005.28,3122.08 963.953,3101.42 922.63,3080.75 901.968,3039.43 881.306,2998.11 \n",
" 860.645,2956.78 839.983,2915.46 881.306,2936.12 860.645,2894.8 839.983,2853.48 819.321,2812.15 798.659,2770.83 839.983,2791.49 819.321,2750.17 798.659,2708.84 \n",
" 777.998,2667.52 757.336,2626.2 736.674,2584.87 716.013,2543.55 695.351,2502.23 674.689,2460.9 654.028,2419.58 695.351,2440.24 674.689,2398.92 654.028,2357.59 \n",
" 633.366,2316.27 612.704,2274.95 592.043,2233.62 612.704,2192.3 633.366,2150.98 674.689,2130.32 654.028,2088.99 633.366,2047.67 612.704,2006.35 654.028,2027.01 \n",
" 633.366,1985.68 612.704,1944.36 592.043,1903.04 571.381,1861.71 612.704,1882.38 592.043,1841.05 633.366,1861.71 612.704,1820.39 592.043,1779.07 571.381,1737.74 \n",
" 612.704,1717.08 633.366,1675.76 612.704,1634.44 654.028,1613.77 695.351,1593.11 674.689,1551.79 695.351,1510.47 736.674,1531.13 716.013,1489.8 736.674,1448.48 \n",
" 777.998,1427.82 798.659,1386.5 777.998,1345.17 819.321,1365.83 798.659,1324.51 777.998,1283.19 819.321,1262.53 798.659,1221.2 839.983,1200.54 860.645,1159.22 \n",
" 839.983,1117.89 819.321,1076.57 860.645,1055.91 881.306,1014.59 901.968,973.262 943.291,952.6 963.953,911.277 1005.28,890.615 1046.6,869.954 1087.92,849.292 \n",
" 1129.25,869.954 1170.57,890.615 1211.89,869.954 1253.22,849.292 1294.54,828.63 1335.86,807.969 1377.19,787.307 1418.51,766.645 1459.83,787.307 1501.16,766.645 \n",
" 1542.48,745.983 1583.8,725.322 1563.14,766.645 1604.47,745.983 1645.79,725.322 1687.11,704.66 1707.77,745.983 1749.1,725.322 1790.42,704.66 1831.74,683.998 \n",
" 1873.07,663.337 1852.41,704.66 1893.73,683.998 1935.05,663.337 1976.38,642.675 2017.7,663.337 2059.02,642.675 2100.35,622.013 2141.67,601.352 2182.99,580.69 \n",
" 2224.32,560.028 2265.64,539.367 2306.96,518.705 2348.29,539.367 2389.61,518.705 2410.27,560.028 2430.93,601.352 2472.26,580.69 2492.92,622.013 2534.24,601.352 \n",
" 2554.9,642.675 2596.23,622.013 2637.55,601.352 2678.87,622.013 2720.2,601.352 2761.52,580.69 2802.84,560.028 2782.18,601.352 2823.5,580.69 2864.83,601.352 \n",
" 2906.15,580.69 2926.81,622.013 2968.14,601.352 3009.46,622.013 3050.78,642.675 3092.11,622.013 3133.43,642.675 3112.77,683.998 3154.09,704.66 3195.41,725.322 \n",
" 3236.74,745.983 3278.06,766.645 3257.4,725.322 3298.72,745.983 3278.06,787.307 3257.4,828.63 3278.06,869.954 3298.72,911.277 3319.38,952.6 3340.05,993.924 \n",
" 3360.71,1035.25 3381.37,1076.57 3402.03,1117.89 3381.37,1159.22 3340.05,1138.56 3360.71,1179.88 3381.37,1221.2 3402.03,1262.53 3422.69,1303.85 3443.36,1345.17 \n",
" 3402.03,1365.83 3360.71,1386.5 3381.37,1427.82 3402.03,1469.14 3381.37,1510.47 3402.03,1551.79 3422.69,1593.11 3381.37,1572.45 3402.03,1613.77 3422.69,1655.1 \n",
" 3443.36,1696.42 3464.02,1737.74 3422.69,1717.08 3443.36,1758.41 3402.03,1737.74 3422.69,1779.07 3443.36,1820.39 3464.02,1861.71 3484.68,1903.04 3443.36,1882.38 \n",
" 3464.02,1923.7 3484.68,1965.02 3505.34,2006.35 3484.68,2047.67 3505.34,2088.99 3484.68,2130.32 3443.36,2150.98 3422.69,2192.3 3381.37,2212.96 3360.71,2254.29 \n",
" 3340.05,2295.61 3360.71,2336.93 3340.05,2378.26 3298.72,2398.92 3257.4,2419.58 3236.74,2460.9 3216.08,2502.23 3236.74,2543.55 3216.08,2584.87 3236.74,2626.2 \n",
" 3216.08,2667.52 3236.74,2708.84 3195.41,2688.18 3216.08,2729.51 3174.75,2708.84 3195.41,2750.17 3216.08,2791.49 3195.41,2832.81 3154.09,2812.15 3174.75,2853.48 \n",
" 3195.41,2894.8 3154.09,2915.46 3112.77,2936.12 3071.44,2956.78 3112.77,2977.45 3092.11,3018.77 3050.78,3039.43 3009.46,3060.09 3030.12,3018.77 2988.8,3039.43 \n",
" 2947.47,3060.09 2906.15,3080.75 2864.83,3101.42 2823.5,3122.08 2782.18,3142.74 2740.86,3163.4 2761.52,3122.08 2782.18,3080.75 2823.5,3060.09 2844.17,3101.42 \n",
" 2885.49,3080.75 2926.81,3101.42 2968.14,3080.75 3009.46,3101.42 2988.8,3060.09 3030.12,3039.43 3071.44,3018.77 3050.78,3060.09 3009.46,3039.43 3050.78,3018.77 \n",
" 3092.11,3039.43 3112.77,2998.11 3133.43,3039.43 3092.11,3060.09 3112.77,3018.77 3071.44,3039.43 3030.12,3060.09 2988.8,3080.75 2947.47,3101.42 2968.14,3060.09 \n",
" 2926.81,3080.75 2885.49,3101.42 2844.17,3122.08 2802.84,3142.74 2823.5,3101.42 2782.18,3122.08 2740.86,3101.42 2699.53,3122.08 2658.21,3142.74 2616.89,3163.4 \n",
" 2596.23,3122.08 2554.9,3142.74 2513.58,3163.4 2472.26,3142.74 2430.93,3163.4 2389.61,3142.74 2348.29,3163.4 2306.96,3184.06 2265.64,3204.72 2244.98,3163.4 \n",
" 2203.65,3184.06 2162.33,3204.72 2121.01,3225.39 2079.68,3246.05 2038.36,3266.71 1997.04,3287.37 1955.71,3308.03 1914.39,3328.69 1873.07,3349.36 1831.74,3370.02 \n",
" 1790.42,3390.68 1811.08,3349.36 1769.76,3370.02 1728.44,3390.68 1687.11,3411.34 1645.79,3432 1604.47,3452.66 1563.14,3473.33 1521.82,3493.99 1542.48,3452.66 \n",
" 1501.16,3432 1459.83,3411.34 1418.51,3432 1397.85,3390.68 1356.52,3370.02 1315.2,3349.36 1273.88,3328.69 1253.22,3287.37 1232.55,3246.05 1191.23,3225.39 \n",
" 1149.91,3204.72 1108.58,3184.06 1067.26,3163.4 1025.94,3142.74 1005.28,3101.42 963.953,3080.75 922.63,3060.09 901.968,3018.77 881.306,2977.45 860.645,2936.12 \n",
" 839.983,2894.8 819.321,2853.48 798.659,2812.15 777.998,2770.83 819.321,2791.49 798.659,2750.17 777.998,2708.84 757.336,2667.52 736.674,2626.2 716.013,2584.87 \n",
" 695.351,2543.55 674.689,2502.23 654.028,2460.9 695.351,2481.56 674.689,2440.24 654.028,2398.92 633.366,2357.59 612.704,2316.27 633.366,2274.95 612.704,2233.62 \n",
" 592.043,2192.3 612.704,2150.98 633.366,2109.65 654.028,2150.98 612.704,2130.32 654.028,2109.65 633.366,2068.33 612.704,2027.01 592.043,1985.68 571.381,1944.36 \n",
" 550.719,1903.04 592.043,1882.38 571.381,1841.05 550.719,1799.73 571.381,1758.41 550.719,1717.08 592.043,1696.42 571.381,1655.1 592.043,1613.77 633.366,1593.11 \n",
" 654.028,1551.79 674.689,1510.47 695.351,1469.14 716.013,1427.82 757.336,1407.16 777.998,1365.83 819.321,1386.5 798.659,1345.17 819.321,1303.85 798.659,1262.53 \n",
" 819.321,1221.2 839.983,1179.88 819.321,1138.56 860.645,1117.89 839.983,1076.57 881.306,1055.91 860.645,1014.59 881.306,973.262 922.63,952.6 943.291,911.277 \n",
" 984.615,890.615 1025.94,869.954 1067.26,849.292 1108.58,828.63 1149.91,849.292 1191.23,828.63 1232.55,807.969 1273.88,787.307 1315.2,766.645 1294.54,807.969 \n",
" 1273.88,849.292 1315.2,828.63 1356.52,807.969 1397.85,787.307 1439.17,766.645 1459.83,807.969 1501.16,787.307 1542.48,766.645 1583.8,745.983 1625.13,725.322 \n",
" 1666.45,704.66 1707.77,683.998 1687.11,725.322 1728.44,704.66 1769.76,725.322 1811.08,704.66 1852.41,683.998 1893.73,663.337 1935.05,683.998 1976.38,663.337 \n",
" 2017.7,642.675 2059.02,622.013 2100.35,601.352 2141.67,580.69 2182.99,560.028 2224.32,539.367 2265.64,560.028 2306.96,580.69 2348.29,560.028 2389.61,580.69 \n",
" 2430.93,560.028 2472.26,539.367 2492.92,580.69 2513.58,622.013 2554.9,601.352 2596.23,580.69 2616.89,622.013 2658.21,601.352 2699.53,580.69 2740.86,560.028 \n",
" 2761.52,601.352 2802.84,580.69 2844.17,560.028 2885.49,539.367 2926.81,518.705 2947.47,560.028 2988.8,580.69 3030.12,601.352 3071.44,622.013 3112.77,642.675 \n",
" 3154.09,663.337 3174.75,704.66 3195.41,745.983 3236.74,725.322 3278.06,745.983 3298.72,787.307 3278.06,828.63 3298.72,869.954 3319.38,911.277 3340.05,952.6 \n",
" 3298.72,931.939 3319.38,973.262 3340.05,1014.59 3360.71,1055.91 3381.37,1097.23 3402.03,1138.56 3381.37,1179.88 3402.03,1221.2 3422.69,1262.53 3402.03,1303.85 \n",
" 3381.37,1345.17 3360.71,1303.85 3402.03,1324.51 3422.69,1365.83 3402.03,1407.16 3422.69,1448.48 3402.03,1489.8 3360.71,1510.47 3381.37,1551.79 3402.03,1593.11 \n",
" 3422.69,1634.44 3443.36,1675.76 3464.02,1717.08 3484.68,1758.41 3443.36,1779.07 3464.02,1820.39 3484.68,1861.71 3443.36,1841.05 3464.02,1882.38 3484.68,1923.7 \n",
" 3505.34,1965.02 3464.02,1944.36 3484.68,1985.68 3443.36,2006.35 3464.02,2047.67 3443.36,2088.99 3464.02,2130.32 3484.68,2171.64 3443.36,2192.3 3402.03,2212.96 \n",
" 3422.69,2254.29 3381.37,2274.95 3402.03,2316.27 3381.37,2357.59 3360.71,2398.92 3319.38,2419.58 3278.06,2440.24 3257.4,2481.56 3278.06,2522.89 3236.74,2502.23 \n",
" 3216.08,2543.55 3195.41,2584.87 3216.08,2626.2 3195.41,2667.52 3216.08,2708.84 3236.74,2750.17 3257.4,2791.49 3216.08,2812.15 3236.74,2853.48 3195.41,2874.14 \n",
" 3174.75,2915.46 3154.09,2956.78 3133.43,2998.11 3112.77,3039.43 3071.44,3060.09 3030.12,3080.75 2988.8,3101.42 2947.47,3080.75 2906.15,3101.42 2864.83,3122.08 \n",
" 2823.5,3142.74 2782.18,3163.4 2802.84,3122.08 2761.52,3142.74 2720.2,3163.4 2678.87,3184.06 2637.55,3163.4 2658.21,3122.08 2616.89,3142.74 2575.56,3163.4 \n",
" 2534.24,3184.06 2513.58,3142.74 2472.26,3122.08 2430.93,3142.74 2389.61,3163.4 2348.29,3184.06 2306.96,3204.72 2327.62,3163.4 2286.3,3184.06 2244.98,3204.72 \n",
" 2203.65,3225.39 2162.33,3246.05 2121.01,3266.71 2079.68,3287.37 2100.35,3246.05 2059.02,3266.71 2017.7,3287.37 1976.38,3308.03 1935.05,3328.69 1893.73,3349.36 \n",
" 1852.41,3370.02 1873.07,3328.69 1831.74,3349.36 1790.42,3370.02 1749.1,3390.68 1707.77,3411.34 1666.45,3432 1625.13,3452.66 1645.79,3411.34 1604.47,3432 \n",
" 1563.14,3452.66 1521.82,3473.33 1480.5,3452.66 1439.17,3473.33 1397.85,3452.66 1377.19,3411.34 1335.86,3390.68 1294.54,3370.02 1253.22,3349.36 1232.55,3308.03 \n",
" 1211.89,3266.71 1170.57,3246.05 1129.25,3225.39 1087.92,3204.72 1046.6,3184.06 1005.28,3163.4 984.615,3122.08 943.291,3101.42 901.968,3080.75 922.63,3039.43 \n",
" 943.291,3080.75 901.968,3060.09 922.63,3101.42 881.306,3080.75 901.968,3122.08 860.645,3101.42 881.306,3060.09 901.968,3101.42 943.291,3122.08 901.968,3142.74 \n",
" 881.306,3101.42 922.63,3122.08 881.306,3142.74 839.983,3122.08 860.645,3080.75 881.306,3039.43 901.968,2998.11 881.306,2956.78 860.645,2915.46 839.983,2874.14 \n",
" 819.321,2832.81 798.659,2791.49 777.998,2750.17 757.336,2708.84 736.674,2667.52 716.013,2626.2 695.351,2584.87 674.689,2543.55 654.028,2502.23 633.366,2460.9 \n",
" 612.704,2419.58 654.028,2440.24 633.366,2398.92 612.704,2357.59 592.043,2316.27 571.381,2274.95 550.719,2233.62 592.043,2254.29 571.381,2212.96 592.043,2171.64 \n",
" 571.381,2130.32 612.704,2109.65 592.043,2068.33 571.381,2027.01 612.704,2047.67 592.043,2006.35 571.381,1965.02 592.043,1923.7 633.366,1944.36 612.704,1903.04 \n",
" 592.043,1861.71 571.381,1820.39 550.719,1779.07 530.058,1737.74 571.381,1717.08 592.043,1675.76 633.366,1655.1 674.689,1634.44 633.366,1613.77 674.689,1593.11 \n",
" 695.351,1551.79 654.028,1531.13 674.689,1489.8 716.013,1469.14 757.336,1448.48 777.998,1407.16 757.336,1365.83 777.998,1324.51 757.336,1283.19 777.998,1241.86 \n",
" 798.659,1200.54 819.321,1159.22 798.659,1117.89 839.983,1138.56 819.321,1097.23 839.983,1055.91 819.321,1014.59 860.645,993.924 881.306,952.6 922.63,931.939 \n",
" 943.291,890.615 984.615,869.954 1025.94,849.292 1067.26,828.63 1108.58,807.969 1149.91,828.63 1191.23,849.292 1232.55,828.63 1273.88,807.969 1315.2,787.307 \n",
" 1356.52,766.645 1377.19,807.969 1418.51,787.307 1459.83,766.645 1501.16,745.983 1542.48,725.322 1583.8,704.66 1625.13,683.998 1604.47,725.322 1645.79,704.66 \n",
" 1687.11,683.998 1666.45,725.322 1707.77,704.66 1749.1,683.998 1790.42,663.337 1769.76,704.66 1811.08,683.998 1852.41,663.337 1831.74,704.66 1873.07,683.998 \n",
" 1914.39,663.337 1955.71,642.675 1997.04,622.013 2038.36,601.352 2079.68,580.69 2121.01,560.028 2162.33,539.367 2203.65,518.705 2244.98,539.367 2286.3,518.705 \n",
" 2327.62,539.367 2368.95,518.705 2410.27,539.367 2451.59,560.028 2472.26,601.352 2513.58,580.69 2554.9,560.028 2575.56,601.352 2616.89,580.69 2658.21,560.028 \n",
" 2699.53,539.367 2720.2,580.69 2761.52,560.028 2802.84,539.367 2782.18,580.69 2823.5,560.028 2864.83,539.367 2906.15,560.028 2947.47,580.69 2988.8,601.352 \n",
" 3030.12,622.013 3071.44,642.675 3112.77,622.013 3133.43,663.337 3174.75,683.998 3216.08,704.66 3257.4,683.998 3278.06,725.322 3298.72,766.645 3257.4,745.983 \n",
" 3298.72,725.322 3257.4,704.66 3298.72,683.998 3319.38,725.322 3278.06,704.66 3319.38,683.998 3340.05,725.322 3298.72,704.66 3319.38,745.983 3340.05,787.307 \n",
" 3298.72,807.969 3278.06,849.292 3298.72,890.615 3319.38,931.939 3340.05,973.262 3360.71,1014.59 3381.37,1055.91 3340.05,1035.25 3360.71,1076.57 3381.37,1117.89 \n",
" 3402.03,1159.22 3422.69,1200.54 3443.36,1241.86 3422.69,1283.19 3443.36,1324.51 3464.02,1365.83 3422.69,1386.5 3443.36,1427.82 3422.69,1469.14 3381.37,1489.8 \n",
" 3402.03,1531.13 3422.69,1572.45 3443.36,1613.77 3464.02,1655.1 3422.69,1675.76 3443.36,1717.08 3464.02,1758.41 3484.68,1799.73 3464.02,1841.05 3484.68,1882.38 \n",
" 3505.34,1923.7 3526,1965.02 3484.68,1944.36 3505.34,1985.68 3484.68,2027.01 3505.34,2068.33 3484.68,2109.65 3464.02,2150.98 3484.68,2192.3 3443.36,2212.96 \n",
" 3402.03,2233.62 3422.69,2274.95 3381.37,2295.61 3340.05,2316.27 3298.72,2336.93 3257.4,2357.59 3278.06,2398.92 3257.4,2440.24 3236.74,2481.56 3216.08,2522.89 \n",
" 3236.74,2564.21 3257.4,2605.54 3236.74,2646.86 3216.08,2688.18 3236.74,2729.51 3216.08,2770.83 3195.41,2812.15 3154.09,2832.81 3174.75,2874.14 3195.41,2915.46 \n",
" 3174.75,2956.78 3133.43,2977.45 3154.09,3018.77 3133.43,3060.09 3092.11,3080.75 3050.78,3101.42 3009.46,3080.75 2968.14,3101.42 2926.81,3122.08 2885.49,3142.74 \n",
" 2844.17,3163.4 2802.84,3184.06 2761.52,3163.4 2720.2,3142.74 2678.87,3122.08 2637.55,3142.74 2596.23,3163.4 2554.9,3184.06 2513.58,3204.72 2492.92,3163.4 \n",
" 2451.59,3184.06 2410.27,3204.72 2368.95,3184.06 2327.62,3204.72 2286.3,3225.39 2265.64,3184.06 2224.32,3204.72 2182.99,3225.39 2141.67,3246.05 2100.35,3266.71 \n",
" 2059.02,3287.37 2017.7,3308.03 1976.38,3287.37 1935.05,3308.03 1893.73,3328.69 1852.41,3349.36 1811.08,3370.02 1769.76,3390.68 1728.44,3411.34 1687.11,3432 \n",
" 1707.77,3390.68 1666.45,3411.34 1625.13,3432 1583.8,3452.66 1542.48,3473.33 1501.16,3493.99 1459.83,3473.33 1418.51,3452.66 1397.85,3411.34 1377.19,3370.02 \n",
" 1356.52,3328.69 1315.2,3308.03 1294.54,3266.71 1253.22,3246.05 1211.89,3225.39 1191.23,3184.06 1170.57,3225.39 1129.25,3246.05 1087.92,3225.39 1046.6,3204.72 \n",
" 1005.28,3184.06 984.615,3142.74 943.291,3163.4 963.953,3122.08 922.63,3142.74 881.306,3122.08 839.983,3101.42 860.645,3060.09 881.306,3018.77 860.645,2977.45 \n",
" 839.983,2936.12 819.321,2894.8 798.659,2853.48 777.998,2812.15 757.336,2770.83 777.998,2729.51 757.336,2688.18 736.674,2646.86 716.013,2605.54 695.351,2564.21 \n",
" 674.689,2522.89 654.028,2481.56 633.366,2440.24 612.704,2398.92 592.043,2357.59 633.366,2378.26 612.704,2336.93 592.043,2295.61 571.381,2254.29 550.719,2212.96 \n",
" 571.381,2171.64 592.043,2130.32 612.704,2088.99 633.366,2130.32 612.704,2171.64 571.381,2150.98 592.043,2109.65 612.704,2068.33 592.043,2027.01 571.381,1985.68 \n",
" 592.043,1944.36 571.381,1903.04 550.719,1861.71 530.058,1820.39 571.381,1799.73 550.719,1758.41 530.058,1717.08 571.381,1696.42 592.043,1655.1 612.704,1613.77 \n",
" 633.366,1572.45 612.704,1531.13 654.028,1510.47 674.689,1469.14 716.013,1448.48 757.336,1427.82 777.998,1386.5 757.336,1345.17 777.998,1303.85 757.336,1262.53 \n",
" 798.659,1241.86 819.321,1200.54 839.983,1159.22 819.321,1117.89 798.659,1076.57 819.321,1035.25 839.983,993.924 860.645,952.6 901.968,931.939 922.63,890.615 \n",
" 963.953,869.954 1005.28,849.292 1046.6,828.63 1087.92,807.969 1129.25,828.63 1170.57,849.292 1211.89,828.63 1253.22,807.969 1294.54,787.307 1335.86,766.645 \n",
" 1377.19,745.983 1418.51,725.322 1397.85,766.645 1439.17,745.983 1480.5,766.645 1521.82,745.983 1563.14,725.322 1604.47,704.66 1645.79,683.998 1687.11,663.337 \n",
" 1728.44,683.998 1769.76,663.337 1811.08,642.675 1790.42,683.998 1831.74,663.337 1873.07,642.675 1914.39,622.013 1955.71,601.352 1935.05,642.675 1976.38,622.013 \n",
" 2017.7,601.352 2059.02,580.69 2038.36,622.013 2079.68,601.352 2121.01,580.69 2162.33,560.028 2203.65,539.367 2244.98,560.028 2286.3,539.367 2327.62,518.705 \n",
" 2368.95,539.367 2410.27,518.705 2451.59,539.367 2492.92,560.028 2534.24,580.69 2575.56,560.028 2616.89,539.367 2637.55,580.69 2678.87,560.028 2699.53,601.352 \n",
" 2740.86,580.69 2782.18,560.028 2823.5,539.367 2864.83,560.028 2906.15,539.367 2926.81,580.69 2968.14,560.028 3009.46,580.69 3050.78,601.352 3092.11,580.69 \n",
" 3133.43,601.352 3154.09,642.675 3195.41,663.337 3236.74,683.998 3278.06,663.337 3319.38,642.675 3340.05,683.998 3298.72,663.337 3319.38,704.66 3278.06,683.998 \n",
" 3236.74,704.66 3195.41,683.998 3236.74,663.337 3278.06,642.675 3319.38,663.337 3340.05,704.66 3360.71,745.983 3319.38,766.645 3340.05,807.969 3298.72,828.63 \n",
" 3319.38,869.954 3340.05,911.277 3360.71,952.6 3381.37,993.924 3402.03,1035.25 3422.69,1076.57 3443.36,1117.89 3402.03,1097.23 3381.37,1138.56 3402.03,1179.88 \n",
" 3422.69,1221.2 3443.36,1262.53 3402.03,1283.19 3422.69,1324.51 3443.36,1365.83 3402.03,1386.5 3422.69,1427.82 3443.36,1469.14 3422.69,1510.47 3443.36,1551.79 \n",
" 3402.03,1572.45 3422.69,1613.77 3443.36,1655.1 3464.02,1696.42 3443.36,1737.74 3464.02,1779.07 3484.68,1820.39 3505.34,1861.71 3526,1903.04 3505.34,1944.36 \n",
" 3526,1985.68 3484.68,2006.35 3505.34,2047.67 3484.68,2088.99 3505.34,2130.32 3526,2171.64 3484.68,2150.98 3464.02,2192.3 3422.69,2212.96 3402.03,2254.29 \n",
" 3360.71,2274.95 3381.37,2316.27 3360.71,2357.59 3319.38,2378.26 3298.72,2419.58 3278.06,2460.9 3257.4,2502.23 3278.06,2543.55 3257.4,2584.87 3278.06,2626.2 \n",
" 3236.74,2605.54 3216.08,2646.86 3236.74,2688.18 3257.4,2729.51 3236.74,2770.83 3195.41,2791.49 3216.08,2832.81 3236.74,2874.14 3216.08,2915.46 3195.41,2956.78 \n",
" 3154.09,2977.45 3133.43,3018.77 3112.77,3060.09 3071.44,3080.75 3030.12,3101.42 2988.8,3122.08 2947.47,3142.74 2906.15,3122.08 2864.83,3142.74 2823.5,3163.4 \n",
" 2782.18,3184.06 2740.86,3204.72 2699.53,3184.06 2658.21,3163.4 2616.89,3184.06 2596.23,3142.74 2554.9,3163.4 2513.58,3184.06 2472.26,3163.4 2430.93,3184.06 \n",
" 2410.27,3142.74 2368.95,3163.4 2327.62,3184.06 2286.3,3204.72 2244.98,3225.39 2203.65,3246.05 2162.33,3225.39 2121.01,3246.05 2079.68,3266.71 2038.36,3287.37 \n",
" 1997.04,3308.03 1955.71,3328.69 1914.39,3349.36 1873.07,3370.02 1831.74,3390.68 1790.42,3411.34 1749.1,3432 1707.77,3452.66 1666.45,3473.33 1625.13,3493.99 \n",
" 1645.79,3452.66 1604.47,3473.33 1563.14,3493.99 1521.82,3514.65 1501.16,3473.33 1459.83,3452.66 1418.51,3473.33 1397.85,3432 1356.52,3411.34 1335.86,3370.02 \n",
" 1294.54,3349.36 1253.22,3328.69 1232.55,3287.37 1211.89,3246.05 1170.57,3266.71 1149.91,3225.39 1108.58,3246.05 1067.26,3225.39 1087.92,3184.06 1046.6,3163.4 \n",
" 1005.28,3142.74 963.953,3163.4 922.63,3184.06 943.291,3142.74 901.968,3163.4 860.645,3142.74 819.321,3122.08 839.983,3080.75 860.645,3039.43 839.983,2998.11 \n",
" 819.321,2956.78 798.659,2915.46 819.321,2874.14 798.659,2832.81 777.998,2791.49 757.336,2750.17 736.674,2708.84 716.013,2667.52 695.351,2626.2 674.689,2584.87 \n",
" 654.028,2543.55 633.366,2502.23 612.704,2460.9 633.366,2419.58 612.704,2378.26 592.043,2336.93 571.381,2295.61 550.719,2254.29 592.043,2274.95 571.381,2233.62 \n",
" 550.719,2192.3 530.058,2150.98 550.719,2109.65 592.043,2088.99 571.381,2047.67 550.719,2006.35 530.058,1965.02 550.719,1923.7 571.381,1882.38 550.719,1841.05 \n",
" 530.058,1799.73 571.381,1779.07 550.719,1737.74 530.058,1696.42 550.719,1655.1 592.043,1634.44 612.704,1593.11 654.028,1572.45 633.366,1531.13 654.028,1489.8 \n",
" 674.689,1448.48 695.351,1407.16 736.674,1386.5 716.013,1345.17 757.336,1324.51 736.674,1283.19 777.998,1262.53 819.321,1241.86 777.998,1221.2 798.659,1179.88 \n",
" 777.998,1138.56 798.659,1097.23 819.321,1055.91 839.983,1014.59 860.645,973.262 881.306,931.939 901.968,890.615 943.291,869.954 984.615,849.292 963.953,890.615 \n",
" 1005.28,869.954 1046.6,849.292 1087.92,828.63 1129.25,807.969 1170.57,787.307 1211.89,766.645 1191.23,807.969 1232.55,787.307 1273.88,766.645 1315.2,745.983 \n",
" 1335.86,787.307 1377.19,766.645 1418.51,745.983 1459.83,725.322 1501.16,704.66 1480.5,745.983 1521.82,725.322 1563.14,704.66 1604.47,683.998 1645.79,663.337 \n",
" 1625.13,704.66 1666.45,683.998 1707.77,663.337 1749.1,642.675 1769.76,683.998 1811.08,663.337 1852.41,642.675 1893.73,622.013 1935.05,601.352 1914.39,642.675 \n",
" 1955.71,622.013 1997.04,601.352 2038.36,580.69 2017.7,622.013 2059.02,601.352 2100.35,580.69 2141.67,560.028 2182.99,539.367 2224.32,518.705 2265.64,498.043 \n",
" 2306.96,477.382 2348.29,498.043 2389.61,477.382 2430.93,498.043 2472.26,518.705 2513.58,539.367 2554.9,518.705 2534.24,560.028 2575.56,580.69 2616.89,601.352 \n",
" 2658.21,580.69 2699.53,560.028 2740.86,539.367 2782.18,518.705 2823.5,498.043 2844.17,539.367 2885.49,560.028 2926.81,539.367 2968.14,518.705 2988.8,560.028 \n",
" 3009.46,601.352 3050.78,622.013 3092.11,642.675 3133.43,622.013 3174.75,642.675 3216.08,663.337 3257.4,642.675 3298.72,622.013 3340.05,642.675 3360.71,683.998 \n",
" 3381.37,725.322 3340.05,745.983 3319.38,787.307 3340.05,828.63 3298.72,849.292 3319.38,890.615 3340.05,931.939 3360.71,973.262 3381.37,1014.59 3402.03,1055.91 \n",
" 3422.69,1097.23 3443.36,1138.56 3422.69,1179.88 3443.36,1221.2 3402.03,1200.54 3422.69,1241.86 3443.36,1283.19 3464.02,1324.51 3422.69,1345.17 3443.36,1386.5 \n",
" 3464.02,1427.82 3422.69,1407.16 3443.36,1448.48 3422.69,1489.8 3443.36,1531.13 3402.03,1510.47 3422.69,1551.79 3443.36,1593.11 3464.02,1634.44 3484.68,1675.76 \n",
" 3505.34,1717.08 3526,1758.41 3484.68,1779.07 3505.34,1820.39 3464.02,1799.73 3484.68,1841.05 3505.34,1882.38 3526,1923.7 3546.66,1965.02 3526,2006.35 \n",
" 3546.66,2047.67 3505.34,2027.01 3484.68,2068.33 3505.34,2109.65 3526,2150.98 3505.34,2192.3 3464.02,2212.96 3443.36,2254.29 3402.03,2274.95 3422.69,2316.27 \n",
" 3381.37,2336.93 3340.05,2357.59 3319.38,2398.92 3278.06,2419.58 3257.4,2460.9 3278.06,2502.23 3257.4,2543.55 3236.74,2584.87 3257.4,2626.2 3236.74,2667.52 \n",
" 3257.4,2708.84 3278.06,2750.17 3298.72,2791.49 3257.4,2812.15 3278.06,2853.48 3236.74,2832.81 3216.08,2874.14 3236.74,2915.46 3195.41,2936.12 3174.75,2977.45 \n",
" 3195.41,3018.77 3154.09,3039.43 3133.43,3080.75 3092.11,3101.42 3050.78,3080.75 3030.12,3122.08 3071.44,3101.42 3112.77,3080.75 3154.09,3101.42 3112.77,3122.08 \n",
" 3071.44,3142.74 3030.12,3163.4 3009.46,3122.08 2968.14,3142.74 2926.81,3163.4 2947.47,3122.08 2906.15,3142.74 2864.83,3163.4 2885.49,3122.08 2844.17,3142.74 \n",
" 2802.84,3163.4 2761.52,3184.06 2740.86,3142.74 2699.53,3163.4 2658.21,3184.06 2616.89,3204.72 2575.56,3184.06 2534.24,3204.72 2492.92,3184.06 2451.59,3163.4 \n",
" 2410.27,3184.06 2368.95,3204.72 2327.62,3225.39 2286.3,3246.05 2244.98,3266.71 2224.32,3225.39 2182.99,3246.05 2141.67,3266.71 2100.35,3287.37 2059.02,3308.03 \n",
" 2017.7,3328.69 1976.38,3349.36 1935.05,3370.02 1893.73,3390.68 1852.41,3411.34 1811.08,3390.68 1769.76,3411.34 1728.44,3432 1687.11,3452.66 1645.79,3473.33 \n",
" 1604.47,3493.99 1563.14,3514.65 1583.8,3473.33 1542.48,3493.99 1501.16,3514.65 1480.5,3473.33 1439.17,3452.66 1397.85,3473.33 1377.19,3432 1356.52,3390.68 \n",
" 1335.86,3349.36 1294.54,3328.69 1273.88,3287.37 1232.55,3266.71 1191.23,3246.05 1149.91,3266.71 1108.58,3287.37 1087.92,3246.05 1067.26,3204.72 1025.94,3184.06 \n",
" 984.615,3163.4 943.291,3184.06 963.953,3142.74 922.63,3163.4 881.306,3184.06 839.983,3163.4 860.645,3122.08 881.306,3163.4 839.983,3142.74 819.321,3101.42 \n",
" 839.983,3060.09 860.645,3018.77 839.983,2977.45 819.321,2936.12 798.659,2894.8 777.998,2853.48 757.336,2812.15 736.674,2770.83 757.336,2729.51 736.674,2688.18 \n",
" 716.013,2646.86 695.351,2605.54 674.689,2564.21 654.028,2522.89 633.366,2481.56 612.704,2440.24 592.043,2398.92 571.381,2357.59 550.719,2316.27 530.058,2274.95 \n",
" 509.396,2233.62 530.058,2192.3 550.719,2150.98 571.381,2109.65 592.043,2150.98 571.381,2192.3 530.058,2171.64 550.719,2130.32 571.381,2088.99 592.043,2047.67 \n",
" 571.381,2006.35 592.043,1965.02 571.381,1923.7 550.719,1882.38 530.058,1841.05 509.396,1799.73 550.719,1820.39 530.058,1779.07 509.396,1737.74 488.734,1696.42 \n",
" 530.058,1675.76 550.719,1634.44 571.381,1593.11 612.704,1572.45 592.043,1531.13 633.366,1510.47 654.028,1469.14 695.351,1448.48 736.674,1427.82 757.336,1386.5 \n",
" 736.674,1345.17 757.336,1303.85 736.674,1262.53 757.336,1221.2 777.998,1179.88 798.659,1138.56 819.321,1179.88 777.998,1159.22 757.336,1117.89 777.998,1076.57 \n",
" 798.659,1035.25 819.321,993.924 839.983,952.6 860.645,911.277 881.306,869.954 901.968,911.277 922.63,869.954 963.953,849.292 1005.28,828.63 1046.6,807.969 \n",
" 1087.92,787.307 1129.25,766.645 1149.91,807.969 1191.23,787.307 1232.55,766.645 1273.88,745.983 1253.22,787.307 1294.54,766.645 1335.86,745.983 1377.19,725.322 \n",
" 1418.51,704.66 1397.85,745.983 1439.17,725.322 1480.5,704.66 1459.83,745.983 1501.16,725.322 1542.48,704.66 1583.8,683.998 1625.13,663.337 1666.45,642.675 \n",
" 1707.77,622.013 1728.44,663.337 1769.76,642.675 1811.08,622.013 1852.41,601.352 1831.74,642.675 1873.07,622.013 1914.39,601.352 1893.73,642.675 1935.05,622.013 \n",
" 1976.38,601.352 2017.7,580.69 2059.02,560.028 2100.35,539.367 2141.67,518.705 2182.99,498.043 2224.32,477.382 2244.98,518.705 2286.3,498.043 2306.96,539.367 \n",
" 2348.29,518.705 2389.61,539.367 2430.93,518.705 2472.26,498.043 2492.92,539.367 2534.24,518.705 2513.58,560.028 2554.9,580.69 2596.23,560.028 2637.55,539.367 \n",
" 2678.87,518.705 2720.2,539.367 2761.52,518.705 2802.84,498.043 2782.18,539.367 2823.5,518.705 2864.83,498.043 2906.15,518.705 2947.47,539.367 2968.14,580.69 \n",
" 3009.46,560.028 3050.78,580.69 3092.11,601.352 3133.43,580.69 3154.09,622.013 3174.75,663.337 3216.08,683.998 3257.4,663.337 3298.72,642.675 3340.05,663.337 \n",
" 3360.71,704.66 3381.37,745.983 3340.05,766.645 3319.38,807.969 3340.05,849.292 3360.71,890.615 3381.37,931.939 3402.03,973.262 3360.71,993.924 3381.37,1035.25 \n",
" 3402.03,1076.57 3422.69,1117.89 3443.36,1159.22 3464.02,1200.54 3484.68,1241.86 3464.02,1283.19 3484.68,1324.51 3443.36,1303.85 3464.02,1345.17 3484.68,1386.5 \n",
" 3443.36,1407.16 3464.02,1448.48 3443.36,1489.8 3422.69,1531.13 3443.36,1572.45 3464.02,1613.77 3484.68,1655.1 3443.36,1634.44 3464.02,1675.76 3484.68,1717.08 \n",
" 3505.34,1758.41 3526,1799.73 3505.34,1841.05 3526,1882.38 3546.66,1923.7 3505.34,1903.04 3526,1944.36 3546.66,1985.68 3526,2027.01 3546.66,2068.33 \n",
" 3526,2109.65 3505.34,2150.98 3464.02,2171.64 3484.68,2212.96 3443.36,2233.62 3464.02,2274.95 3422.69,2295.61 3402.03,2336.93 3381.37,2378.26 3340.05,2398.92 \n",
" 3319.38,2440.24 3298.72,2481.56 3319.38,2522.89 3298.72,2564.21 3278.06,2605.54 3257.4,2646.86 3278.06,2688.18 3298.72,2729.51 3257.4,2750.17 3236.74,2791.49 \n",
" 3257.4,2832.81 3216.08,2853.48 3236.74,2894.8 3216.08,2936.12 3195.41,2977.45 3154.09,2998.11 3174.75,3039.43 3154.09,3080.75 3112.77,3101.42 3071.44,3122.08 \n",
" 3030.12,3142.74 2988.8,3163.4 2968.14,3122.08 2926.81,3142.74 2885.49,3163.4 2844.17,3184.06 2802.84,3204.72 2761.52,3225.39 2740.86,3184.06 2699.53,3204.72 \n",
" 2678.87,3163.4 2637.55,3184.06 2596.23,3204.72 2554.9,3225.39 2513.58,3246.05 2492.92,3204.72 2451.59,3225.39 2472.26,3184.06 2430.93,3204.72 2389.61,3184.06 \n",
" 2348.29,3204.72 2306.96,3225.39 2265.64,3246.05 2224.32,3266.71 2182.99,3287.37 2141.67,3308.03 2162.33,3266.71 2121.01,3287.37 2079.68,3308.03 2038.36,3328.69 \n",
" 1997.04,3349.36 1955.71,3370.02 1976.38,3328.69 1935.05,3349.36 1893.73,3370.02 1852.41,3390.68 1811.08,3411.34 1769.76,3432 1728.44,3452.66 1749.1,3411.34 \n",
" 1707.77,3432 1666.45,3452.66 1625.13,3473.33 1583.8,3493.99 1542.48,3514.65 1501.16,3535.31 1480.5,3493.99 1439.17,3514.65 1397.85,3493.99 1377.19,3452.66 \n",
" 1335.86,3432 1315.2,3390.68 1273.88,3370.02 1232.55,3349.36 1211.89,3308.03 1191.23,3266.71 1149.91,3246.05 1108.58,3225.39 1067.26,3246.05 1025.94,3225.39 \n",
" 984.615,3204.72 943.291,3225.39 963.953,3184.06 922.63,3204.72 881.306,3225.39 860.645,3184.06 819.321,3163.4 798.659,3122.08 819.321,3080.75 839.983,3039.43 \n",
" 860.645,2998.11 839.983,2956.78 819.321,2915.46 798.659,2874.14 777.998,2832.81 757.336,2791.49 736.674,2750.17 716.013,2708.84 695.351,2667.52 674.689,2626.2 \n",
" 654.028,2584.87 633.366,2543.55 612.704,2502.23 592.043,2460.9 571.381,2419.58 592.043,2378.26 571.381,2336.93 550.719,2295.61 530.058,2254.29 509.396,2212.96 \n",
" 488.734,2171.64 509.396,2130.32 530.058,2088.99 571.381,2068.33 550.719,2027.01 530.058,1985.68 550.719,1944.36 530.058,1903.04 509.396,1861.71 488.734,1820.39 \n",
" 509.396,1779.07 488.734,1737.74 530.058,1758.41 509.396,1717.08 550.719,1696.42 530.058,1655.1 571.381,1634.44 592.043,1593.11 612.704,1551.79 592.043,1510.47 \n",
" 633.366,1489.8 654.028,1448.48 695.351,1427.82 736.674,1407.16 716.013,1365.83 736.674,1324.51 716.013,1283.19 736.674,1241.86 757.336,1200.54 736.674,1159.22 \n",
" 716.013,1117.89 757.336,1097.23 777.998,1055.91 798.659,1014.59 839.983,1035.25 798.659,1055.91 777.998,1014.59 798.659,973.262 819.321,931.939 839.983,890.615 \n",
" 881.306,911.277 901.968,869.954 943.291,849.292 984.615,828.63 1025.94,807.969 1067.26,787.307 1108.58,766.645 1149.91,787.307 1191.23,766.645 1170.57,807.969 \n",
" 1211.89,787.307 1253.22,766.645 1294.54,745.983 1335.86,725.322 1377.19,704.66 1356.52,745.983 1397.85,725.322 1439.17,704.66 1480.5,725.322 1521.82,704.66 \n",
" 1563.14,683.998 1604.47,663.337 1645.79,642.675 1687.11,622.013 1666.45,663.337 1707.77,642.675 1749.1,663.337 1790.42,642.675 1831.74,622.013 1873.07,601.352 \n",
" 1914.39,580.69 1955.71,560.028 1997.04,580.69 2038.36,560.028 2079.68,539.367 2121.01,518.705 2100.35,560.028 2141.67,539.367 2182.99,518.705 2224.32,498.043 \n",
" 2265.64,518.705 2306.96,498.043 2348.29,477.382 2389.61,498.043 2430.93,477.382 2451.59,518.705 2492.92,498.043 2534.24,477.382 2513.58,518.705 2554.9,539.367 \n",
" 2596.23,518.705 2616.89,560.028 2658.21,539.367 2678.87,580.69 2720.2,560.028 2761.52,539.367 2802.84,518.705 2844.17,498.043 2885.49,518.705 2926.81,498.043 \n",
" 2968.14,477.382 2988.8,518.705 3030.12,539.367 3071.44,560.028 3112.77,580.69 3154.09,601.352 3195.41,622.013 3236.74,642.675 3278.06,622.013 3319.38,601.352 \n",
" 3360.71,622.013 3381.37,663.337 3402.03,704.66 3360.71,725.322 3381.37,766.645 3360.71,807.969 3319.38,828.63 3340.05,869.954 3360.71,911.277 3381.37,952.6 \n",
" 3402.03,993.924 3422.69,1035.25 3443.36,1076.57 3464.02,1117.89 3422.69,1138.56 3443.36,1179.88 3464.02,1221.2 3484.68,1262.53 3464.02,1303.85 3484.68,1345.17 \n",
" 3464.02,1386.5 3484.68,1427.82 3464.02,1469.14 3443.36,1510.47 3464.02,1551.79 3484.68,1593.11 3505.34,1634.44 3526,1675.76 3484.68,1696.42 3505.34,1737.74 \n",
" 3526,1779.07 3546.66,1820.39 3505.34,1799.73 3526,1841.05 3546.66,1882.38 3567.33,1923.7 3587.99,1965.02 3546.66,1944.36 3567.33,1985.68 3546.66,2027.01 \n",
" 3526,2068.33 3546.66,2109.65 3567.33,2150.98 3526,2130.32 3505.34,2171.64 3526,2212.96 3484.68,2233.62 3505.34,2274.95 3464.02,2295.61 3443.36,2336.93 \n",
" 3402.03,2357.59 3360.71,2378.26 3340.05,2419.58 3298.72,2440.24 3278.06,2481.56 3257.4,2522.89 3278.06,2564.21 3298.72,2605.54 3278.06,2646.86 3257.4,2688.18 \n",
" 3278.06,2729.51 3257.4,2770.83 3236.74,2812.15 3257.4,2853.48 3278.06,2894.8 3257.4,2936.12 3216.08,2956.78 3195.41,2998.11 3216.08,3039.43 3174.75,3060.09 \n",
" 3195.41,3101.42 3154.09,3122.08 3174.75,3080.75 3133.43,3101.42 3154.09,3060.09 3174.75,3101.42 3133.43,3122.08 3092.11,3142.74 3050.78,3122.08 3009.46,3142.74 \n",
" 2968.14,3163.4 2926.81,3184.06 2885.49,3204.72 2906.15,3163.4 2864.83,3184.06 2823.5,3204.72 2782.18,3225.39 2740.86,3246.05 2720.2,3204.72 2678.87,3225.39 \n",
" 2637.55,3204.72 2596.23,3184.06 2554.9,3204.72 2513.58,3225.39 2472.26,3204.72 2430.93,3225.39 2389.61,3204.72 2348.29,3225.39 2306.96,3246.05 2265.64,3225.39 \n",
" 2224.32,3246.05 2182.99,3266.71 2141.67,3287.37 2100.35,3308.03 2059.02,3328.69 2017.7,3349.36 2038.36,3308.03 1997.04,3328.69 1955.71,3349.36 1914.39,3370.02 \n",
" 1873.07,3390.68 1831.74,3411.34 1790.42,3432 1749.1,3452.66 1707.77,3473.33 1666.45,3493.99 1625.13,3514.65 1583.8,3535.31 1542.48,3555.97 1501.16,3576.63 \n",
" 1480.5,3535.31 1459.83,3493.99 1418.51,3514.65 1377.19,3493.99 1356.52,3452.66 1335.86,3411.34 1315.2,3370.02 1273.88,3349.36 1253.22,3308.03 1211.89,3287.37 \n",
" 1170.57,3308.03 1129.25,3287.37 1087.92,3266.71 1046.6,3246.05 1025.94,3204.72 984.615,3184.06 943.291,3204.72 901.968,3184.06 860.645,3163.4 819.321,3142.74 \n",
" 839.983,3184.06 798.659,3163.4 819.321,3204.72 777.998,3184.06 798.659,3142.74 819.321,3184.06 860.645,3204.72 819.321,3225.39 798.659,3184.06 839.983,3204.72 \n",
" 798.659,3225.39 757.336,3204.72 777.998,3163.4 798.659,3204.72 839.983,3225.39 881.306,3204.72 922.63,3225.39 963.953,3204.72 1005.28,3225.39 963.953,3246.05 \n",
" 922.63,3266.71 901.968,3225.39 860.645,3246.05 819.321,3266.71 777.998,3246.05 736.674,3225.39 777.998,3204.72 757.336,3163.4 777.998,3122.08 798.659,3080.75 \n",
" 819.321,3039.43 798.659,2998.11 839.983,3018.77 819.321,2977.45 798.659,2936.12 777.998,2894.8 757.336,2853.48 736.674,2812.15 716.013,2770.83 736.674,2729.51 \n",
" 716.013,2688.18 695.351,2646.86 674.689,2605.54 654.028,2564.21 633.366,2522.89 612.704,2481.56 592.043,2440.24 571.381,2398.92 550.719,2357.59 571.381,2316.27 \n",
" 550.719,2274.95 530.058,2233.62 509.396,2192.3 550.719,2171.64 530.058,2130.32 550.719,2088.99 530.058,2047.67 509.396,2006.35 550.719,1985.68 530.058,1944.36 \n",
" 509.396,1903.04 530.058,1861.71 509.396,1820.39 488.734,1779.07 468.073,1737.74 509.396,1758.41 488.734,1717.08 509.396,1675.76 530.058,1634.44 571.381,1613.77 \n",
" 592.043,1572.45 633.366,1551.79 612.704,1510.47 633.366,1469.14 654.028,1427.82 674.689,1386.5 716.013,1407.16 736.674,1365.83 716.013,1324.51 695.351,1283.19 \n",
" 736.674,1303.85 716.013,1262.53 757.336,1241.86 777.998,1200.54 798.659,1159.22 777.998,1117.89 757.336,1076.57 777.998,1035.25 798.659,993.924 839.983,973.262 \n",
" 860.645,931.939 881.306,890.615 901.968,849.292 943.291,828.63 984.615,807.969 1025.94,828.63 1067.26,807.969 1108.58,787.307 1149.91,766.645 1191.23,745.983 \n",
" 1232.55,725.322 1273.88,704.66 1253.22,745.983 1294.54,725.322 1335.86,704.66 1377.19,683.998 1356.52,725.322 1397.85,704.66 1439.17,683.998 1480.5,663.337 \n",
" 1459.83,704.66 1501.16,683.998 1542.48,663.337 1583.8,642.675 1625.13,622.013 1666.45,601.352 1687.11,642.675 1728.44,622.013 1769.76,601.352 1811.08,580.69 \n",
" 1790.42,622.013 1831.74,601.352 1873.07,580.69 1852.41,622.013 1893.73,601.352 1935.05,580.69 1976.38,560.028 2017.7,539.367 2059.02,518.705 2079.68,560.028 \n",
" 2121.01,539.367 2162.33,518.705 2203.65,498.043 2244.98,477.382 2286.3,456.72 2327.62,477.382 2368.95,498.043 2410.27,477.382 2451.59,498.043 2492.92,518.705 \n",
" 2534.24,539.367 2575.56,518.705 2616.89,498.043 2596.23,539.367 2637.55,560.028 2678.87,539.367 2720.2,518.705 2761.52,498.043 2802.84,477.382 2844.17,456.72 \n",
" 2885.49,477.382 2864.83,518.705 2906.15,498.043 2947.47,518.705 2988.8,539.367 3030.12,560.028 3071.44,580.69 3112.77,601.352 3154.09,580.69 3174.75,622.013 \n",
" 3216.08,642.675 3257.4,622.013 3298.72,601.352 3340.05,622.013 3360.71,663.337 3381.37,704.66 3402.03,745.983 3360.71,766.645 3381.37,807.969 3360.71,849.292 \n",
" 3340.05,890.615 3319.38,849.292 3360.71,869.954 3381.37,911.277 3402.03,952.6 3360.71,931.939 3381.37,973.262 3402.03,1014.59 3422.69,1055.91 3443.36,1097.23 \n",
" 3464.02,1138.56 3422.69,1159.22 3443.36,1200.54 3464.02,1241.86 3484.68,1283.19 3505.34,1324.51 3484.68,1365.83 3464.02,1407.16 3484.68,1448.48 3464.02,1489.8 \n",
" 3484.68,1531.13 3464.02,1572.45 3484.68,1613.77 3505.34,1655.1 3526,1696.42 3546.66,1737.74 3567.33,1779.07 3587.99,1820.39 3546.66,1841.05 3567.33,1882.38 \n",
" 3526,1861.71 3546.66,1903.04 3567.33,1944.36 3587.99,1985.68 3546.66,2006.35 3526,2047.67 3546.66,2088.99 3567.33,2130.32 3546.66,2171.64 3567.33,2212.96 \n",
" 3526,2233.62 3484.68,2254.29 3443.36,2274.95 3464.02,2316.27 3422.69,2336.93 3402.03,2378.26 3381.37,2419.58 3340.05,2440.24 3298.72,2460.9 3319.38,2502.23 \n",
" 3298.72,2543.55 3257.4,2564.21 3298.72,2584.87 3319.38,2626.2 3298.72,2667.52 3278.06,2708.84 3257.4,2667.52 3298.72,2688.18 3319.38,2729.51 3298.72,2770.83 \n",
" 3278.06,2812.15 3298.72,2853.48 3257.4,2874.14 3216.08,2894.8 3236.74,2936.12 3216.08,2977.45 3174.75,2998.11 3195.41,3039.43 3216.08,3080.75 3195.41,3122.08 \n",
" 3154.09,3142.74 3112.77,3163.4 3092.11,3122.08 3050.78,3142.74 3009.46,3163.4 2968.14,3184.06 2988.8,3142.74 2947.47,3163.4 2906.15,3184.06 2864.83,3204.72 \n",
" 2823.5,3184.06 2782.18,3204.72 2740.86,3225.39 2720.2,3184.06 2678.87,3204.72 2637.55,3225.39 2596.23,3246.05 2575.56,3204.72 2534.24,3225.39 2492.92,3246.05 \n",
" 2451.59,3266.71 2472.26,3225.39 2430.93,3246.05 2451.59,3204.72 2410.27,3225.39 2368.95,3246.05 2327.62,3266.71 2286.3,3287.37 2244.98,3308.03 2265.64,3266.71 \n",
" 2224.32,3287.37 2244.98,3246.05 2203.65,3266.71 2162.33,3287.37 2121.01,3308.03 2079.68,3328.69 2038.36,3349.36 1997.04,3370.02 1955.71,3390.68 1914.39,3411.34 \n",
" 1873.07,3432 1831.74,3452.66 1790.42,3473.33 1811.08,3432 1769.76,3452.66 1728.44,3473.33 1687.11,3493.99 1645.79,3514.65 1604.47,3535.31 1563.14,3555.97 \n",
" 1583.8,3514.65 1542.48,3535.31 1501.16,3555.97 1480.5,3514.65 1439.17,3493.99 1397.85,3514.65 1377.19,3473.33 1356.52,3432 1315.2,3411.34 1273.88,3390.68 \n",
" 1232.55,3370.02 1211.89,3328.69 1191.23,3287.37 1149.91,3308.03 1129.25,3266.71 1087.92,3287.37 1046.6,3266.71 1005.28,3246.05 963.953,3225.39 1005.28,3204.72 \n",
" 1046.6,3225.39 1025.94,3266.71 984.615,3246.05 943.291,3266.71 901.968,3246.05 860.645,3225.39 901.968,3204.72 881.306,3246.05 839.983,3266.71 798.659,3246.05 \n",
" 757.336,3225.39 736.674,3184.06 757.336,3142.74 777.998,3101.42 798.659,3060.09 819.321,3018.77 798.659,2977.45 777.998,2936.12 757.336,2894.8 736.674,2853.48 \n",
" 777.998,2874.14 757.336,2832.81 736.674,2791.49 716.013,2750.17 695.351,2708.84 674.689,2667.52 654.028,2626.2 633.366,2584.87 612.704,2543.55 592.043,2502.23 \n",
" 571.381,2460.9 592.043,2419.58 571.381,2378.26 550.719,2336.93 530.058,2295.61 509.396,2254.29 530.058,2212.96 509.396,2171.64 488.734,2130.32 530.058,2109.65 \n",
" 550.719,2068.33 530.058,2027.01 509.396,1985.68 550.719,1965.02 530.058,1923.7 509.396,1882.38 488.734,1841.05 468.073,1799.73 488.734,1758.41 468.073,1717.08 \n",
" 509.396,1696.42 550.719,1675.76 509.396,1655.1 530.058,1613.77 550.719,1572.45 592.043,1551.79 571.381,1510.47 612.704,1489.8 633.366,1448.48 674.689,1427.82 \n",
" 695.351,1386.5 674.689,1345.17 695.351,1303.85 674.689,1262.53 716.013,1241.86 736.674,1200.54 757.336,1159.22 736.674,1117.89 777.998,1097.23 757.336,1055.91 \n",
" 736.674,1014.59 777.998,993.924 819.321,973.262 839.983,931.939 860.645,890.615 881.306,849.292 922.63,828.63 963.953,807.969 1005.28,787.307 1046.6,766.645 \n",
" 1087.92,745.983 1129.25,725.322 1170.57,745.983 1211.89,725.322 1253.22,704.66 1232.55,745.983 1273.88,725.322 1315.2,704.66 1356.52,683.998 1397.85,663.337 \n",
" 1439.17,642.675 1459.83,683.998 1501.16,663.337 1542.48,683.998 1583.8,663.337 1625.13,642.675 1666.45,622.013 1707.77,601.352 1728.44,642.675 1769.76,622.013 \n",
" 1811.08,601.352 1852.41,580.69 1893.73,560.028 1935.05,539.367 1955.71,580.69 1997.04,560.028 2038.36,539.367 2079.68,518.705 2121.01,498.043 2162.33,477.382 \n",
" 2203.65,456.72 2244.98,436.058 2265.64,477.382 2306.96,456.72 2327.62,498.043 2368.95,477.382 2410.27,498.043 2451.59,477.382 2492.92,456.72 2513.58,498.043 \n",
" 2554.9,477.382 2596.23,498.043 2575.56,539.367 2616.89,518.705 2658.21,498.043 2699.53,518.705 2740.86,498.043 2782.18,477.382 2823.5,456.72 2864.83,477.382 \n",
" 2844.17,518.705 2885.49,498.043 2926.81,477.382 2968.14,498.043 3009.46,518.705 3050.78,539.367 3030.12,580.69 3071.44,601.352 3092.11,560.028 3133.43,539.367 \n",
" 3174.75,560.028 3195.41,601.352 3236.74,622.013 3195.41,642.675 3216.08,601.352 3257.4,580.69 3298.72,560.028 3278.06,601.352 3319.38,622.013 3360.71,642.675 \n",
" 3381.37,683.998 3402.03,725.322 3422.69,766.645 3381.37,787.307 3360.71,828.63 3381.37,869.954 3402.03,911.277 3422.69,952.6 3443.36,993.924 3464.02,1035.25 \n",
" 3422.69,1014.59 3443.36,1055.91 3464.02,1097.23 3484.68,1138.56 3464.02,1179.88 3484.68,1221.2 3464.02,1262.53 3484.68,1303.85 3505.34,1345.17 3526,1386.5 \n",
" 3484.68,1407.16 3505.34,1448.48 3484.68,1489.8 3464.02,1531.13 3484.68,1572.45 3505.34,1613.77 3464.02,1593.11 3484.68,1634.44 3505.34,1675.76 3526,1717.08 \n",
" 3484.68,1737.74 3505.34,1779.07 3526,1820.39 3546.66,1861.71 3567.33,1903.04 3587.99,1944.36 3608.65,1985.68 3567.33,2006.35 3587.99,2047.67 3567.33,2088.99 \n",
" 3546.66,2130.32 3526,2088.99 3567.33,2109.65 3546.66,2150.98 3526,2192.3 3505.34,2233.62 3464.02,2254.29 3443.36,2295.61 3464.02,2336.93 3422.69,2357.59 \n",
" 3402.03,2398.92 3360.71,2419.58 3340.05,2460.9 3360.71,2502.23 3319.38,2481.56 3298.72,2522.89 3319.38,2564.21 3278.06,2584.87 3298.72,2626.2 3278.06,2667.52 \n",
" 3298.72,2708.84 3319.38,2750.17 3278.06,2770.83 3298.72,2812.15 3319.38,2853.48 3278.06,2874.14 3257.4,2915.46 3236.74,2956.78 3216.08,2998.11 3174.75,3018.77 \n",
" 3195.41,3060.09 3216.08,3101.42 3174.75,3122.08 3133.43,3142.74 3092.11,3163.4 3050.78,3184.06 3009.46,3204.72 2968.14,3225.39 2947.47,3184.06 2906.15,3204.72 \n",
" 2864.83,3225.39 2885.49,3184.06 2844.17,3204.72 2802.84,3225.39 2761.52,3204.72 2720.2,3225.39 2678.87,3246.05 2658.21,3204.72 2616.89,3225.39 2575.56,3246.05 \n",
" 2534.24,3266.71 2492.92,3287.37 2472.26,3246.05 2430.93,3266.71 2389.61,3246.05 2348.29,3266.71 2368.95,3225.39 2327.62,3246.05 2286.3,3266.71 2244.98,3287.37 \n",
" 2203.65,3308.03 2162.33,3328.69 2121.01,3349.36 2079.68,3370.02 2100.35,3328.69 2059.02,3349.36 2017.7,3370.02 1976.38,3390.68 1935.05,3411.34 1893.73,3432 \n",
" 1914.39,3390.68 1873.07,3411.34 1831.74,3432 1790.42,3452.66 1749.1,3473.33 1707.77,3493.99 1666.45,3514.65 1687.11,3473.33 1645.79,3493.99 1604.47,3514.65 \n",
" 1563.14,3535.31 1521.82,3555.97 1480.5,3576.63 1459.83,3535.31 1418.51,3555.97 1377.19,3535.31 1356.52,3493.99 1335.86,3452.66 1294.54,3432 1253.22,3411.34 \n",
" 1211.89,3390.68 1191.23,3349.36 1149.91,3328.69 1170.57,3287.37 1129.25,3308.03 1108.58,3266.71 1067.26,3287.37 1025.94,3308.03 1005.28,3266.71 984.615,3225.39 \n",
" 943.291,3246.05 901.968,3266.71 860.645,3287.37 839.983,3246.05 798.659,3266.71 777.998,3225.39 757.336,3184.06 777.998,3142.74 798.659,3101.42 819.321,3060.09 \n",
" 798.659,3018.77 777.998,2977.45 819.321,2998.11 798.659,2956.78 777.998,2915.46 757.336,2874.14 736.674,2832.81 716.013,2791.49 695.351,2750.17 674.689,2708.84 \n",
" 716.013,2729.51 695.351,2688.18 674.689,2646.86 654.028,2605.54 633.366,2564.21 612.704,2522.89 592.043,2481.56 571.381,2440.24 550.719,2398.92 530.058,2357.59 \n",
" 509.396,2316.27 488.734,2274.95 468.073,2233.62 488.734,2192.3 509.396,2150.98 488.734,2109.65 509.396,2068.33 550.719,2047.67 530.058,2006.35 509.396,1965.02 \n",
" 488.734,1923.7 468.073,1882.38 447.411,1841.05 488.734,1861.71 530.058,1882.38 509.396,1841.05 488.734,1799.73 468.073,1758.41 447.411,1717.08 468.073,1675.76 \n",
" 488.734,1634.44 509.396,1593.11 550.719,1613.77 571.381,1572.45 550.719,1531.13 571.381,1489.8 612.704,1469.14 633.366,1427.82 674.689,1407.16 716.013,1386.5 \n",
" 695.351,1345.17 716.013,1303.85 695.351,1262.53 716.013,1221.2 736.674,1179.88 757.336,1138.56 736.674,1097.23 716.013,1055.91 757.336,1035.25 736.674,993.924 \n",
" 777.998,973.262 819.321,952.6 839.983,911.277 860.645,869.954 881.306,828.63 922.63,849.292 963.953,828.63 1005.28,807.969 1046.6,787.307 1087.92,766.645 \n",
" 1129.25,787.307 1170.57,766.645 1211.89,745.983 1253.22,725.322 1294.54,704.66 1335.86,683.998 1315.2,725.322 1356.52,704.66 1397.85,683.998 1439.17,663.337 \n",
" 1480.5,683.998 1521.82,663.337 1563.14,642.675 1604.47,622.013 1645.79,601.352 1687.11,580.69 1728.44,601.352 1769.76,580.69 1749.1,622.013 1790.42,601.352 \n",
" 1831.74,580.69 1873.07,560.028 1914.39,539.367 1893.73,580.69 1935.05,560.028 1976.38,580.69 2017.7,560.028 2059.02,539.367 2100.35,518.705 2141.67,498.043 \n",
" 2182.99,477.382 2224.32,456.72 2244.98,498.043 2286.3,477.382 2327.62,456.72 2368.95,436.058 2410.27,456.72 2451.59,436.058 2472.26,477.382 2513.58,456.72 \n",
" 2534.24,498.043 2575.56,477.382 2616.89,456.72 2637.55,498.043 2678.87,477.382 2658.21,518.705 2699.53,498.043 2740.86,518.705 2782.18,498.043 2823.5,477.382 \n",
" 2864.83,456.72 2906.15,477.382 2947.47,498.043 2968.14,539.367 2988.8,498.043 3009.46,539.367 3050.78,560.028 3092.11,539.367 3133.43,560.028 3174.75,580.69 \n",
" 3216.08,560.028 3236.74,601.352 3278.06,580.69 3319.38,560.028 3340.05,601.352 3381.37,622.013 3402.03,663.337 3422.69,704.66 3443.36,745.983 3402.03,766.645 \n",
" 3360.71,787.307 3381.37,828.63 3402.03,869.954 3422.69,911.277 3381.37,890.615 3402.03,931.939 3422.69,973.262 3443.36,1014.59 3464.02,1055.91 3484.68,1097.23 \n",
" 3505.34,1138.56 3464.02,1159.22 3484.68,1200.54 3505.34,1241.86 3526,1283.19 3546.66,1324.51 3505.34,1303.85 3526,1345.17 3505.34,1386.5 3526,1427.82 \n",
" 3505.34,1469.14 3484.68,1510.47 3505.34,1551.79 3526,1593.11 3546.66,1634.44 3567.33,1675.76 3526,1655.1 3505.34,1696.42 3526,1737.74 3546.66,1779.07 \n",
" 3567.33,1820.39 3587.99,1861.71 3608.65,1903.04 3629.31,1944.36 3587.99,1923.7 3567.33,1965.02 3587.99,2006.35 3567.33,2047.67 3587.99,2088.99 3608.65,2130.32 \n",
" 3587.99,2171.64 3546.66,2192.3 3505.34,2212.96 3464.02,2233.62 3484.68,2274.95 3505.34,2316.27 3484.68,2357.59 3443.36,2378.26 3422.69,2419.58 3381.37,2440.24 \n",
" 3360.71,2481.56 3319.38,2460.9 3298.72,2502.23 3319.38,2543.55 3340.05,2584.87 3360.71,2626.2 3319.38,2646.86 3340.05,2688.18 3360.71,2729.51 3319.38,2708.84 \n",
" 3298.72,2750.17 3278.06,2791.49 3298.72,2832.81 3319.38,2874.14 3298.72,2915.46 3257.4,2894.8 3278.06,2936.12 3257.4,2977.45 3236.74,3018.77 3216.08,3060.09 \n",
" 3236.74,3101.42 3195.41,3080.75 3216.08,3122.08 3174.75,3142.74 3133.43,3163.4 3092.11,3184.06 3112.77,3142.74 3071.44,3163.4 3030.12,3184.06 2988.8,3204.72 \n",
" 2947.47,3225.39 2906.15,3246.05 2926.81,3204.72 2885.49,3225.39 2844.17,3246.05 2802.84,3266.71 2823.5,3225.39 2782.18,3246.05 2740.86,3266.71 2699.53,3246.05 \n",
" 2658.21,3225.39 2616.89,3246.05 2575.56,3225.39 2534.24,3246.05 2492.92,3225.39 2451.59,3246.05 2410.27,3266.71 2389.61,3225.39 2348.29,3246.05 2306.96,3266.71 \n",
" 2265.64,3287.37 2224.32,3308.03 2182.99,3328.69 2203.65,3287.37 2162.33,3308.03 2121.01,3328.69 2079.68,3349.36 2038.36,3370.02 1997.04,3390.68 1955.71,3411.34 \n",
" 1976.38,3370.02 1935.05,3390.68 1893.73,3411.34 1852.41,3432 1811.08,3452.66 1769.76,3473.33 1728.44,3493.99 1687.11,3514.65 1645.79,3535.31 1604.47,3555.97 \n",
" 1563.14,3576.63 1521.82,3597.3 1480.5,3617.96 1459.83,3576.63 1439.17,3535.31 1418.51,3493.99 1377.19,3514.65 1356.52,3473.33 1315.2,3452.66 1294.54,3411.34 \n",
" 1253.22,3390.68 1211.89,3370.02 1191.23,3328.69 1149.91,3349.36 1108.58,3328.69 1067.26,3308.03 1025.94,3287.37 984.615,3266.71 1025.94,3246.05 1067.26,3266.71 \n",
" 1046.6,3308.03 1005.28,3287.37 963.953,3266.71 922.63,3246.05 881.306,3266.71 839.983,3287.37 819.321,3246.05 777.998,3266.71 736.674,3246.05 716.013,3204.72 \n",
" 736.674,3163.4 757.336,3122.08 777.998,3080.75 798.659,3039.43 777.998,2998.11 757.336,2956.78 736.674,2915.46 716.013,2874.14 695.351,2832.81 674.689,2791.49 \n",
" 716.013,2812.15 695.351,2770.83 674.689,2729.51 654.028,2688.18 633.366,2646.86 612.704,2605.54 592.043,2564.21 571.381,2522.89 550.719,2481.56 530.058,2440.24 \n",
" 509.396,2398.92 550.719,2378.26 530.058,2336.93 509.396,2295.61 488.734,2254.29 468.073,2212.96 447.411,2171.64 488.734,2150.98 509.396,2109.65 530.058,2068.33 \n",
" 509.396,2027.01 488.734,1985.68 509.396,1944.36 488.734,1903.04 468.073,1861.71 447.411,1820.39 468.073,1779.07 447.411,1737.74 468.073,1696.42 488.734,1655.1 \n",
" 509.396,1613.77 550.719,1593.11 571.381,1551.79 550.719,1510.47 592.043,1489.8 612.704,1448.48 633.366,1407.16 654.028,1365.83 674.689,1324.51 695.351,1365.83 \n",
" 654.028,1345.17 695.351,1324.51 674.689,1283.19 695.351,1241.86 736.674,1221.2 757.336,1179.88 736.674,1138.56 716.013,1097.23 736.674,1055.91 757.336,1014.59 \n",
" 736.674,973.262 777.998,952.6 798.659,911.277 819.321,869.954 860.645,849.292 901.968,828.63 943.291,807.969 984.615,787.307 1025.94,766.645 1067.26,745.983 \n",
" 1108.58,725.322 1149.91,745.983 1191.23,725.322 1232.55,704.66 1273.88,683.998 1315.2,663.337 1356.52,642.675 1397.85,622.013 1418.51,663.337 1459.83,642.675 \n",
" 1501.16,622.013 1542.48,642.675 1521.82,683.998 1563.14,663.337 1604.47,642.675 1645.79,622.013 1687.11,601.352 1728.44,580.69 1769.76,560.028 1749.1,601.352 \n",
" 1790.42,580.69 1831.74,560.028 1873.07,539.367 1914.39,560.028 1955.71,539.367 1997.04,518.705 2038.36,498.043 2079.68,477.382 2121.01,456.72 2100.35,498.043 \n",
" 2141.67,477.382 2182.99,456.72 2162.33,498.043 2203.65,477.382 2244.98,456.72 2286.3,436.058 2327.62,415.397 2348.29,456.72 2389.61,436.058 2430.93,456.72 \n",
" 2472.26,436.058 2492.92,477.382 2534.24,456.72 2554.9,498.043 2596.23,477.382 2637.55,456.72 2678.87,436.058 2699.53,477.382 2740.86,456.72 2720.2,498.043 \n",
" 2761.52,477.382 2802.84,456.72 2844.17,477.382 2885.49,456.72 2926.81,436.058 2947.47,477.382 2988.8,456.72 3009.46,498.043 3050.78,518.705 3092.11,498.043 \n",
" 3112.77,539.367 3154.09,560.028 3174.75,601.352 3216.08,622.013 3257.4,601.352 3298.72,580.69 3340.05,560.028 3360.71,601.352 3381.37,642.675 3402.03,683.998 \n",
" 3422.69,725.322 3443.36,766.645 3402.03,787.307 3422.69,828.63 3381.37,849.292 3402.03,890.615 3422.69,931.939 3443.36,973.262 3464.02,1014.59 3422.69,993.924 \n",
" 3443.36,1035.25 3464.02,1076.57 3484.68,1117.89 3505.34,1159.22 3526,1200.54 3484.68,1179.88 3505.34,1221.2 3526,1262.53 3546.66,1303.85 3505.34,1283.19 \n",
" 3526,1324.51 3505.34,1365.83 3526,1407.16 3546.66,1448.48 3505.34,1427.82 3484.68,1469.14 3464.02,1510.47 3484.68,1551.79 3505.34,1593.11 3526,1634.44 \n",
" 3546.66,1675.76 3567.33,1717.08 3546.66,1758.41 3567.33,1799.73 3587.99,1841.05 3608.65,1882.38 3567.33,1861.71 3587.99,1903.04 3608.65,1944.36 3629.31,1985.68 \n",
" 3608.65,2027.01 3587.99,2068.33 3567.33,2027.01 3608.65,2047.67 3567.33,2068.33 3587.99,2109.65 3608.65,2150.98 3567.33,2171.64 3546.66,2212.96 3526,2254.29 \n",
" 3505.34,2295.61 3484.68,2336.93 3443.36,2357.59 3422.69,2398.92 3402.03,2440.24 3360.71,2460.9 3340.05,2502.23 3360.71,2543.55 3381.37,2584.87 3340.05,2605.54 \n",
" 3360.71,2646.86 3319.38,2667.52 3340.05,2708.84 3360.71,2750.17 3319.38,2770.83 3340.05,2812.15 3360.71,2853.48 3319.38,2832.81 3298.72,2874.14 3278.06,2915.46 \n",
" 3257.4,2956.78 3236.74,2998.11 3257.4,3039.43 3216.08,3018.77 3236.74,3060.09 3257.4,3101.42 3236.74,3142.74 3195.41,3163.4 3154.09,3184.06 3112.77,3204.72 \n",
" 3071.44,3184.06 3030.12,3204.72 3050.78,3163.4 3009.46,3184.06 2968.14,3204.72 2926.81,3225.39 2885.49,3246.05 2844.17,3225.39 2802.84,3246.05 2761.52,3266.71 \n",
" 2720.2,3246.05 2678.87,3266.71 2699.53,3225.39 2658.21,3246.05 2616.89,3266.71 2596.23,3225.39 2554.9,3246.05 2513.58,3266.71 2472.26,3287.37 2430.93,3308.03 \n",
" 2389.61,3287.37 2410.27,3246.05 2368.95,3266.71 2327.62,3287.37 2286.3,3308.03 2244.98,3328.69 2203.65,3349.36 2182.99,3308.03 2141.67,3328.69 2100.35,3349.36 \n",
" 2059.02,3370.02 2017.7,3390.68 1976.38,3411.34 1935.05,3432 1893.73,3452.66 1852.41,3473.33 1811.08,3493.99 1769.76,3514.65 1728.44,3535.31 1749.1,3493.99 \n",
" 1707.77,3514.65 1666.45,3535.31 1625.13,3555.97 1583.8,3576.63 1542.48,3597.3 1501.16,3617.96 1521.82,3576.63 1480.5,3555.97 1459.83,3514.65 1418.51,3535.31 \n",
" 1377.19,3555.97 1356.52,3514.65 1335.86,3473.33 1315.2,3432 1294.54,3390.68 1253.22,3370.02 1232.55,3328.69 1191.23,3308.03 1149.91,3287.37 1108.58,3308.03 \n",
" 1067.26,3328.69 1046.6,3287.37 1005.28,3308.03 963.953,3287.37 922.63,3308.03 881.306,3287.37 839.983,3308.03 860.645,3266.71 819.321,3287.37 777.998,3308.03 \n",
" 757.336,3266.71 716.013,3246.05 736.674,3204.72 757.336,3246.05 716.013,3225.39 736.674,3266.71 777.998,3287.37 736.674,3308.03 716.013,3266.71 757.336,3287.37 \n",
" 716.013,3308.03 695.351,3266.71 736.674,3287.37 695.351,3308.03 674.689,3266.71 716.013,3287.37 695.351,3246.05 674.689,3204.72 716.013,3184.06 736.674,3142.74 \n",
" 757.336,3101.42 777.998,3060.09 757.336,3018.77 736.674,2977.45 777.998,2956.78 757.336,2915.46 736.674,2874.14 716.013,2832.81 695.351,2791.49 674.689,2750.17 \n",
" 654.028,2708.84 695.351,2729.51 674.689,2688.18 654.028,2646.86 633.366,2605.54 612.704,2564.21 592.043,2522.89 571.381,2481.56 550.719,2440.24 530.058,2398.92 \n",
" 509.396,2357.59 530.058,2316.27 509.396,2274.95 488.734,2233.62 468.073,2192.3 447.411,2150.98 468.073,2109.65 509.396,2088.99 488.734,2047.67 468.073,2006.35 \n",
" 488.734,1965.02 509.396,1923.7 488.734,1882.38 468.073,1841.05 447.411,1799.73 426.749,1758.41 406.087,1717.08 447.411,1696.42 488.734,1675.76 509.396,1634.44 \n",
" 530.058,1593.11 550.719,1551.79 530.058,1510.47 571.381,1531.13 550.719,1489.8 592.043,1469.14 612.704,1427.82 654.028,1407.16 674.689,1365.83 654.028,1324.51 \n",
" 633.366,1283.19 674.689,1303.85 654.028,1262.53 674.689,1221.2 716.013,1200.54 695.351,1159.22 674.689,1117.89 716.013,1138.56 695.351,1097.23 736.674,1076.57 \n",
" 716.013,1035.25 695.351,993.924 716.013,952.6 757.336,931.939 798.659,952.6 819.321,911.277 839.983,869.954 860.645,828.63 901.968,807.969 943.291,787.307 \n",
" 984.615,766.645 1025.94,787.307 1067.26,766.645 1108.58,745.983 1149.91,725.322 1191.23,704.66 1232.55,683.998 1273.88,663.337 1315.2,683.998 1356.52,663.337 \n",
" 1397.85,642.675 1418.51,683.998 1459.83,663.337 1501.16,642.675 1542.48,622.013 1583.8,601.352 1625.13,580.69 1666.45,560.028 1707.77,580.69 1749.1,560.028 \n",
" 1790.42,539.367 1831.74,518.705 1852.41,560.028 1893.73,539.367 1935.05,518.705 1976.38,539.367 2017.7,518.705 2059.02,498.043 2100.35,477.382 2141.67,456.72 \n",
" 2182.99,436.058 2224.32,415.397 2265.64,436.058 2306.96,415.397 2348.29,436.058 2389.61,456.72 2430.93,436.058 2472.26,456.72 2513.58,477.382 2554.9,456.72 \n",
" 2575.56,498.043 2616.89,477.382 2637.55,518.705 2678.87,498.043 2720.2,477.382 2761.52,456.72 2802.84,436.058 2844.17,415.397 2885.49,436.058 2926.81,456.72 \n",
" 2968.14,436.058 2988.8,477.382 3030.12,498.043 3071.44,518.705 3112.77,498.043 3154.09,518.705 3195.41,539.367 3216.08,580.69 3257.4,560.028 3298.72,539.367 \n",
" 3319.38,580.69 3360.71,560.028 3381.37,601.352 3402.03,642.675 3422.69,683.998 3443.36,725.322 3464.02,766.645 3422.69,787.307 3402.03,828.63 3422.69,869.954 \n",
" 3443.36,911.277 3464.02,952.6 3484.68,993.924 3505.34,1035.25 3484.68,1076.57 3505.34,1117.89 3484.68,1159.22 3505.34,1200.54 3526,1241.86 3546.66,1283.19 \n",
" 3505.34,1262.53 3526,1303.85 3546.66,1345.17 3567.33,1386.5 3526,1365.83 3505.34,1407.16 3526,1448.48 3505.34,1489.8 3526,1531.13 3505.34,1572.45 \n",
" 3526,1613.77 3546.66,1655.1 3567.33,1696.42 3587.99,1737.74 3546.66,1717.08 3567.33,1758.41 3546.66,1799.73 3567.33,1841.05 3587.99,1882.38 3608.65,1923.7 \n",
" 3629.31,1965.02 3608.65,2006.35 3629.31,2047.67 3587.99,2027.01 3608.65,2068.33 3629.31,2109.65 3587.99,2130.32 3608.65,2171.64 3567.33,2192.3 3546.66,2233.62 \n",
" 3505.34,2254.29 3484.68,2295.61 3443.36,2316.27 3464.02,2357.59 3422.69,2378.26 3381.37,2398.92 3360.71,2440.24 3340.05,2481.56 3360.71,2522.89 3340.05,2564.21 \n",
" 3319.38,2605.54 3298.72,2646.86 3319.38,2688.18 3340.05,2729.51 3360.71,2770.83 3319.38,2791.49 3340.05,2832.81 3360.71,2874.14 3319.38,2894.8 3298.72,2936.12 \n",
" 3278.06,2977.45 3257.4,3018.77 3236.74,2977.45 3278.06,2998.11 3298.72,3039.43 3257.4,3060.09 3278.06,3101.42 3236.74,3122.08 3195.41,3142.74 3154.09,3163.4 \n",
" 3112.77,3184.06 3071.44,3204.72 3030.12,3225.39 2988.8,3246.05 2947.47,3266.71 2906.15,3287.37 2926.81,3246.05 2947.47,3204.72 2988.8,3184.06 3009.46,3225.39 \n",
" 3050.78,3204.72 3092.11,3225.39 3133.43,3204.72 3174.75,3184.06 3216.08,3163.4 3195.41,3204.72 3174.75,3163.4 3216.08,3142.74 3195.41,3184.06 3236.74,3163.4 \n",
" 3216.08,3204.72 3257.4,3184.06 3236.74,3225.39 3216.08,3184.06 3174.75,3204.72 3133.43,3184.06 3092.11,3204.72 3050.78,3225.39 3009.46,3246.05 2968.14,3266.71 \n",
" 2988.8,3225.39 2947.47,3246.05 2906.15,3225.39 2864.83,3246.05 2823.5,3266.71 2782.18,3287.37 2761.52,3246.05 2720.2,3266.71 2678.87,3287.37 2637.55,3266.71 \n",
" 2596.23,3287.37 2554.9,3266.71 2513.58,3287.37 2472.26,3266.71 2430.93,3287.37 2389.61,3266.71 2348.29,3287.37 2306.96,3308.03 2265.64,3328.69 2224.32,3349.36 \n",
" 2182.99,3370.02 2203.65,3328.69 2162.33,3349.36 2121.01,3370.02 2079.68,3390.68 2038.36,3411.34 1997.04,3432 1955.71,3452.66 1914.39,3432 1873.07,3452.66 \n",
" 1831.74,3473.33 1790.42,3493.99 1749.1,3514.65 1707.77,3535.31 1666.45,3555.97 1625.13,3535.31 1583.8,3555.97 1542.48,3576.63 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1542.48,3576.63 1501.16,3597.3 1459.83,3617.96 1439.17,3576.63 1397.85,3555.97 1356.52,3535.31 1335.86,3493.99 1294.54,3473.33 1273.88,3432 1232.55,3411.34 \n",
" 1191.23,3390.68 1170.57,3349.36 1129.25,3328.69 1087.92,3308.03 1046.6,3328.69 1005.28,3349.36 984.615,3308.03 943.291,3287.37 901.968,3308.03 860.645,3328.69 \n",
" 819.321,3308.03 777.998,3328.69 798.659,3287.37 757.336,3308.03 716.013,3328.69 695.351,3287.37 674.689,3246.05 695.351,3204.72 716.013,3163.4 736.674,3122.08 \n",
" 757.336,3080.75 777.998,3039.43 757.336,2998.11 736.674,2956.78 716.013,2915.46 757.336,2936.12 736.674,2894.8 716.013,2853.48 695.351,2812.15 674.689,2770.83 \n",
" 654.028,2729.51 633.366,2688.18 612.704,2646.86 654.028,2667.52 633.366,2626.2 612.704,2584.87 592.043,2543.55 571.381,2502.23 550.719,2460.9 530.058,2419.58 \n",
" 509.396,2378.26 488.734,2336.93 468.073,2295.61 447.411,2254.29 426.749,2212.96 406.087,2171.64 447.411,2192.3 488.734,2212.96 468.073,2171.64 447.411,2130.32 \n",
" 468.073,2088.99 447.411,2047.67 488.734,2027.01 468.073,1985.68 488.734,1944.36 468.073,1903.04 447.411,1861.71 468.073,1820.39 447.411,1779.07 426.749,1737.74 \n",
" 406.087,1696.42 447.411,1675.76 468.073,1634.44 488.734,1593.11 530.058,1572.45 509.396,1531.13 530.058,1489.8 571.381,1469.14 592.043,1427.82 612.704,1386.5 \n",
" 633.366,1345.17 654.028,1303.85 633.366,1262.53 674.689,1241.86 695.351,1200.54 716.013,1159.22 695.351,1117.89 716.013,1076.57 736.674,1035.25 757.336,993.924 \n",
" 736.674,952.6 777.998,931.939 798.659,890.615 819.321,849.292 839.983,807.969 881.306,787.307 922.63,807.969 963.953,787.307 1005.28,766.645 1046.6,745.983 \n",
" 1087.92,725.322 1129.25,745.983 1170.57,725.322 1211.89,704.66 1253.22,683.998 1294.54,663.337 1335.86,642.675 1377.19,663.337 1418.51,642.675 1459.83,622.013 \n",
" 1501.16,601.352 1521.82,642.675 1563.14,622.013 1604.47,601.352 1645.79,580.69 1687.11,560.028 1728.44,539.367 1749.1,580.69 1790.42,560.028 1831.74,539.367 \n",
" 1873.07,518.705 1914.39,498.043 1955.71,518.705 1997.04,539.367 2038.36,518.705 2079.68,498.043 2121.01,477.382 2162.33,456.72 2203.65,436.058 2244.98,415.397 \n",
" 2265.64,456.72 2306.96,436.058 2348.29,415.397 2368.95,456.72 2410.27,436.058 2451.59,456.72 2492.92,436.058 2534.24,415.397 2575.56,436.058 2616.89,415.397 \n",
" 2596.23,456.72 2637.55,477.382 2678.87,456.72 2720.2,436.058 2740.86,477.382 2782.18,456.72 2823.5,436.058 2864.83,415.397 2906.15,436.058 2947.47,456.72 \n",
" 2988.8,436.058 3009.46,477.382 3030.12,518.705 3071.44,539.367 3112.77,560.028 3154.09,539.367 3195.41,560.028 3236.74,580.69 3278.06,560.028 3319.38,539.367 \n",
" 3340.05,580.69 3381.37,560.028 3402.03,601.352 3422.69,642.675 3443.36,683.998 3464.02,725.322 3422.69,745.983 3443.36,787.307 3402.03,807.969 3422.69,849.292 \n",
" 3443.36,890.615 3464.02,931.939 3484.68,973.262 3443.36,952.6 3464.02,993.924 3484.68,1035.25 3505.34,1076.57 3526,1117.89 3546.66,1159.22 3505.34,1179.88 \n",
" 3526,1221.2 3546.66,1262.53 3567.33,1303.85 3587.99,1345.17 3546.66,1365.83 3567.33,1407.16 3587.99,1448.48 3546.66,1469.14 3526,1510.47 3546.66,1551.79 \n",
" 3505.34,1531.13 3526,1572.45 3546.66,1613.77 3567.33,1655.1 3546.66,1696.42 3567.33,1737.74 3587.99,1779.07 3608.65,1820.39 3629.31,1861.71 3649.97,1903.04 \n",
" 3670.63,1944.36 3629.31,1923.7 3608.65,1965.02 3629.31,2006.35 3649.97,2047.67 3629.31,2088.99 3649.97,2130.32 3608.65,2109.65 3587.99,2150.98 3608.65,2192.3 \n",
" 3587.99,2233.62 3546.66,2254.29 3526,2295.61 3484.68,2316.27 3505.34,2357.59 3464.02,2378.26 3443.36,2419.58 3422.69,2460.9 3381.37,2481.56 3402.03,2522.89 \n",
" 3381.37,2564.21 3340.05,2543.55 3319.38,2584.87 3340.05,2626.2 3360.71,2667.52 3381.37,2708.84 3402.03,2750.17 3381.37,2791.49 3340.05,2770.83 3319.38,2812.15 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3319.38,2812.15 3340.05,2853.48 3360.71,2894.8 3319.38,2915.46 3298.72,2956.78 3319.38,2998.11 3278.06,3018.77 3236.74,3039.43 3257.4,3080.75 3278.06,3122.08 \n",
" 3257.4,3163.4 3236.74,3204.72 3195.41,3225.39 3154.09,3204.72 3112.77,3225.39 3071.44,3246.05 3030.12,3266.71 2988.8,3287.37 2968.14,3246.05 2926.81,3266.71 \n",
" 2885.49,3287.37 2844.17,3266.71 2802.84,3287.37 2823.5,3246.05 2782.18,3266.71 2740.86,3287.37 2699.53,3266.71 2658.21,3287.37 2637.55,3246.05 2596.23,3266.71 \n",
" 2554.9,3287.37 2513.58,3308.03 2492.92,3266.71 2451.59,3287.37 2410.27,3308.03 2368.95,3287.37 2327.62,3308.03 2286.3,3328.69 2306.96,3287.37 2265.64,3308.03 \n",
" 2224.32,3328.69 2182.99,3349.36 2141.67,3370.02 2100.35,3390.68 2059.02,3411.34 2017.7,3432 2038.36,3390.68 1997.04,3411.34 1955.71,3432 1914.39,3452.66 \n",
" 1873.07,3473.33 1831.74,3493.99 1852.41,3452.66 1811.08,3473.33 1769.76,3493.99 1728.44,3514.65 1687.11,3535.31 1645.79,3555.97 1604.47,3576.63 1563.14,3597.3 \n",
" 1521.82,3617.96 1480.5,3597.3 1459.83,3555.97 1418.51,3576.63 1397.85,3535.31 1356.52,3555.97 1335.86,3514.65 1315.2,3473.33 1273.88,3452.66 1232.55,3432 \n",
" 1191.23,3411.34 1170.57,3370.02 1129.25,3349.36 1087.92,3328.69 1046.6,3349.36 1005.28,3328.69 984.615,3287.37 943.291,3308.03 901.968,3287.37 860.645,3308.03 \n",
" 819.321,3328.69 777.998,3349.36 798.659,3308.03 757.336,3328.69 716.013,3349.36 674.689,3328.69 654.028,3287.37 633.366,3246.05 674.689,3225.39 695.351,3184.06 \n",
" 716.013,3142.74 736.674,3101.42 757.336,3060.09 777.998,3018.77 757.336,2977.45 736.674,2936.12 716.013,2894.8 695.351,2853.48 674.689,2812.15 654.028,2770.83 \n",
" 633.366,2729.51 612.704,2688.18 592.043,2646.86 633.366,2667.52 612.704,2626.2 592.043,2584.87 571.381,2543.55 550.719,2502.23 530.058,2460.9 550.719,2419.58 \n",
" 530.058,2378.26 509.396,2336.93 488.734,2295.61 468.073,2254.29 447.411,2212.96 426.749,2171.64 468.073,2150.98 447.411,2109.65 488.734,2088.99 509.396,2047.67 \n",
" 488.734,2006.35 468.073,1965.02 447.411,1923.7 426.749,1882.38 406.087,1841.05 426.749,1799.73 447.411,1758.41 426.749,1717.08 406.087,1675.76 447.411,1655.1 \n",
" 468.073,1613.77 488.734,1572.45 530.058,1551.79 509.396,1510.47 530.058,1469.14 571.381,1448.48 592.043,1407.16 633.366,1386.5 612.704,1345.17 633.366,1303.85 \n",
" 612.704,1262.53 654.028,1241.86 695.351,1221.2 716.013,1179.88 695.351,1138.56 674.689,1097.23 695.351,1055.91 716.013,1014.59 695.351,973.262 716.013,931.939 \n",
" 757.336,911.277 798.659,931.939 819.321,890.615 839.983,849.292 860.645,807.969 901.968,787.307 943.291,766.645 984.615,745.983 1025.94,725.322 1067.26,704.66 \n",
" 1108.58,683.998 1149.91,704.66 1191.23,683.998 1232.55,663.337 1273.88,642.675 1294.54,683.998 1335.86,663.337 1377.19,642.675 1418.51,622.013 1459.83,601.352 \n",
" 1480.5,642.675 1521.82,622.013 1563.14,601.352 1604.47,580.69 1583.8,622.013 1625.13,601.352 1666.45,580.69 1707.77,560.028 1749.1,539.367 1790.42,518.705 \n",
" 1811.08,560.028 1852.41,539.367 1893.73,518.705 1935.05,498.043 1976.38,518.705 2017.7,498.043 2059.02,477.382 2100.35,456.72 2141.67,436.058 2182.99,415.397 \n",
" 2224.32,436.058 2265.64,415.397 2306.96,394.735 2327.62,436.058 2368.95,415.397 2410.27,394.735 2451.59,415.397 2492.92,394.735 2513.58,436.058 2554.9,415.397 \n",
" 2575.56,456.72 2616.89,436.058 2658.21,456.72 2699.53,436.058 2740.86,415.397 2720.2,456.72 2761.52,436.058 2802.84,415.397 2844.17,436.058 2885.49,415.397 \n",
" 2906.15,456.72 2947.47,436.058 2988.8,415.397 3009.46,456.72 3050.78,477.382 3092.11,456.72 3071.44,498.043 3112.77,518.705 3154.09,498.043 3174.75,539.367 \n",
" 3195.41,580.69 3236.74,560.028 3278.06,539.367 3319.38,518.705 3360.71,539.367 3381.37,580.69 3402.03,622.013 3422.69,663.337 3443.36,704.66 3464.02,745.983 \n",
" 3484.68,787.307 3443.36,807.969 3464.02,849.292 3484.68,890.615 3443.36,869.954 3402.03,849.292 3422.69,890.615 3443.36,931.939 3464.02,973.262 3484.68,1014.59 \n",
" 3505.34,1055.91 3526,1097.23 3546.66,1138.56 3526,1179.88 3546.66,1221.2 3567.33,1262.53 3587.99,1303.85 3567.33,1345.17 3546.66,1386.5 3567.33,1427.82 \n",
" 3587.99,1469.14 3546.66,1489.8 3505.34,1510.47 3526,1551.79 3546.66,1593.11 3567.33,1634.44 3587.99,1675.76 3608.65,1717.08 3587.99,1758.41 3608.65,1799.73 \n",
" 3629.31,1841.05 3649.97,1882.38 3608.65,1861.71 3629.31,1903.04 3649.97,1944.36 3670.63,1985.68 3649.97,2027.01 3629.31,2068.33 3649.97,2109.65 3608.65,2088.99 \n",
" 3629.31,2130.32 3649.97,2171.64 3629.31,2212.96 3587.99,2192.3 3567.33,2233.62 3546.66,2274.95 3526,2316.27 3546.66,2357.59 3505.34,2378.26 3464.02,2398.92 \n",
" 3443.36,2440.24 3402.03,2460.9 3381.37,2502.23 3340.05,2522.89 3360.71,2564.21 3381.37,2605.54 3402.03,2646.86 3381.37,2688.18 3340.05,2667.52 3360.71,2708.84 \n",
" 3340.05,2750.17 3360.71,2791.49 3381.37,2832.81 3402.03,2874.14 3381.37,2915.46 3340.05,2936.12 3319.38,2977.45 3278.06,2956.78 3257.4,2998.11 3278.06,3039.43 \n",
" 3298.72,3080.75 3319.38,3122.08 3278.06,3142.74 3298.72,3184.06 3257.4,3204.72 3216.08,3225.39 3236.74,3184.06 3257.4,3142.74 3278.06,3184.06 3257.4,3225.39 \n",
" 3216.08,3246.05 3174.75,3225.39 3133.43,3246.05 3092.11,3266.71 3071.44,3225.39 3030.12,3246.05 2988.8,3266.71 2947.47,3287.37 2906.15,3266.71 2864.83,3287.37 \n",
" 2823.5,3308.03 2782.18,3328.69 2761.52,3287.37 2720.2,3308.03 2678.87,3328.69 2699.53,3287.37 2658.21,3266.71 2616.89,3287.37 2575.56,3266.71 2534.24,3287.37 \n",
" 2492.92,3308.03 2451.59,3328.69 2410.27,3349.36 2389.61,3308.03 2348.29,3328.69 2306.96,3349.36 2265.64,3370.02 2224.32,3390.68 2244.98,3349.36 2203.65,3370.02 \n",
" 2162.33,3390.68 2141.67,3349.36 2100.35,3370.02 2059.02,3390.68 2017.7,3411.34 1976.38,3432 1935.05,3452.66 1893.73,3473.33 1852.41,3493.99 1811.08,3514.65 \n",
" 1769.76,3535.31 1728.44,3555.97 1687.11,3576.63 1645.79,3597.3 1604.47,3617.96 1625.13,3576.63 1583.8,3597.3 1542.48,3617.96 1501.16,3638.62 1459.83,3659.28 \n",
" 1439.17,3617.96 1397.85,3597.3 1356.52,3576.63 1335.86,3535.31 1315.2,3493.99 1294.54,3452.66 1273.88,3411.34 1232.55,3390.68 1211.89,3349.36 1170.57,3328.69 \n",
" 1149.91,3370.02 1108.58,3349.36 1067.26,3370.02 1025.94,3349.36 984.615,3328.69 943.291,3349.36 963.953,3308.03 922.63,3287.37 881.306,3308.03 839.983,3328.69 \n",
" 798.659,3349.36 757.336,3370.02 736.674,3328.69 695.351,3349.36 674.689,3308.03 654.028,3266.71 633.366,3225.39 654.028,3184.06 695.351,3163.4 716.013,3122.08 \n",
" 736.674,3080.75 757.336,3039.43 736.674,2998.11 716.013,2956.78 695.351,2915.46 674.689,2874.14 654.028,2832.81 633.366,2791.49 654.028,2750.17 633.366,2708.84 \n",
" 612.704,2667.52 592.043,2626.2 571.381,2584.87 550.719,2543.55 530.058,2502.23 509.396,2460.9 488.734,2419.58 468.073,2378.26 447.411,2336.93 488.734,2316.27 \n",
" 468.073,2274.95 447.411,2233.62 426.749,2192.3 406.087,2150.98 426.749,2109.65 468.073,2130.32 447.411,2088.99 488.734,2068.33 468.073,2027.01 447.411,1985.68 \n",
" 468.073,1944.36 447.411,1903.04 426.749,1861.71 406.087,1820.39 426.749,1779.07 406.087,1737.74 426.749,1696.42 406.087,1655.1 447.411,1634.44 488.734,1613.77 \n",
" 509.396,1572.45 530.058,1531.13 509.396,1489.8 550.719,1469.14 592.043,1448.48 612.704,1407.16 654.028,1386.5 612.704,1365.83 633.366,1324.51 654.028,1283.19 \n",
" 633.366,1241.86 654.028,1200.54 695.351,1179.88 674.689,1138.56 654.028,1097.23 695.351,1076.57 674.689,1035.25 654.028,993.924 695.351,1014.59 716.013,973.262 \n",
" 757.336,952.6 777.998,911.277 798.659,869.954 819.321,828.63 839.983,787.307 881.306,807.969 839.983,828.63 860.645,787.307 819.321,807.969 839.983,766.645 \n",
" 798.659,787.307 819.321,745.983 860.645,766.645 819.321,787.307 798.659,828.63 777.998,787.307 819.321,766.645 798.659,807.969 777.998,766.645 798.659,725.322 \n",
" 839.983,745.983 881.306,766.645 922.63,787.307 963.953,766.645 1005.28,745.983 1046.6,725.322 1087.92,704.66 1129.25,683.998 1170.57,704.66 1211.89,683.998 \n",
" 1253.22,663.337 1294.54,642.675 1335.86,622.013 1377.19,601.352 1418.51,580.69 1439.17,622.013 1480.5,601.352 1521.82,580.69 1563.14,560.028 1542.48,601.352 \n",
" 1583.8,580.69 1625.13,560.028 1666.45,539.367 1707.77,518.705 1728.44,560.028 1769.76,539.367 1811.08,518.705 1852.41,498.043 1893.73,477.382 1914.39,518.705 \n",
" 1955.71,498.043 1997.04,477.382 2038.36,456.72 2079.68,436.058 2121.01,415.397 2162.33,436.058 2203.65,415.397 2244.98,394.735 2286.3,415.397 2327.62,394.735 \n",
" 2368.95,374.073 2389.61,415.397 2430.93,394.735 2472.26,415.397 2513.58,394.735 2534.24,436.058 2575.56,415.397 2616.89,394.735 2637.55,436.058 2658.21,477.382 \n",
" 2699.53,456.72 2740.86,436.058 2782.18,415.397 2823.5,394.735 2864.83,374.073 2906.15,394.735 2947.47,415.397 2968.14,456.72 3009.46,436.058 3030.12,477.382 \n",
" 3071.44,456.72 3050.78,498.043 3092.11,518.705 3133.43,498.043 3174.75,518.705 3216.08,539.367 3257.4,518.705 3298.72,498.043 3340.05,518.705 3381.37,539.367 \n",
" 3402.03,580.69 3422.69,622.013 3443.36,663.337 3464.02,704.66 3484.68,745.983 3464.02,787.307 3422.69,807.969 3443.36,849.292 3464.02,890.615 3484.68,931.939 \n",
" 3505.34,973.262 3526,1014.59 3546.66,1055.91 3567.33,1097.23 3526,1076.57 3484.68,1055.91 3505.34,1097.23 3526,1138.56 3546.66,1179.88 3567.33,1221.2 \n",
" 3587.99,1262.53 3546.66,1241.86 3567.33,1283.19 3587.99,1324.51 3567.33,1365.83 3546.66,1407.16 3567.33,1448.48 3526,1469.14 3546.66,1510.47 3567.33,1551.79 \n",
" 3587.99,1593.11 3546.66,1572.45 3567.33,1613.77 3587.99,1655.1 3608.65,1696.42 3629.31,1737.74 3587.99,1717.08 3608.65,1758.41 3587.99,1799.73 3608.65,1841.05 \n",
" 3629.31,1882.38 3649.97,1923.7 3670.63,1965.02 3649.97,2006.35 3670.63,2047.67 3629.31,2027.01 3649.97,2068.33 3670.63,2109.65 3649.97,2150.98 3629.31,2192.3 \n",
" 3587.99,2212.96 3567.33,2254.29 3526,2274.95 3546.66,2316.27 3505.34,2336.93 3484.68,2378.26 3443.36,2398.92 3402.03,2419.58 3381.37,2460.9 3402.03,2502.23 \n",
" 3381.37,2543.55 3360.71,2584.87 3381.37,2626.2 3340.05,2646.86 3360.71,2688.18 3381.37,2729.51 3402.03,2770.83 3381.37,2812.15 3340.05,2791.49 3360.71,2832.81 \n",
" 3340.05,2874.14 3298.72,2894.8 3319.38,2936.12 3298.72,2977.45 3319.38,3018.77 3298.72,3060.09 3319.38,3101.42 3278.06,3080.75 3257.4,3122.08 3236.74,3080.75 \n",
" 3278.06,3060.09 3298.72,3101.42 3319.38,3142.74 3278.06,3163.4 3298.72,3204.72 3278.06,3246.05 3236.74,3266.71 3195.41,3246.05 3154.09,3225.39 3112.77,3246.05 \n",
" 3071.44,3266.71 3030.12,3287.37 3050.78,3246.05 3009.46,3266.71 2968.14,3287.37 2926.81,3308.03 2885.49,3328.69 2844.17,3308.03 2864.83,3266.71 2823.5,3287.37 \n",
" 2782.18,3308.03 2740.86,3328.69 2720.2,3287.37 2678.87,3308.03 2637.55,3287.37 2596.23,3308.03 2554.9,3328.69 2575.56,3287.37 2534.24,3308.03 2492.92,3328.69 \n",
" 2451.59,3308.03 2410.27,3287.37 2368.95,3308.03 2327.62,3328.69 2286.3,3349.36 2244.98,3370.02 2203.65,3390.68 2162.33,3370.02 2121.01,3390.68 2079.68,3411.34 \n",
" 2038.36,3432 1997.04,3452.66 1955.71,3473.33 1914.39,3493.99 1873.07,3514.65 1831.74,3535.31 1790.42,3514.65 1749.1,3535.31 1707.77,3555.97 1666.45,3576.63 \n",
" 1625.13,3597.3 1583.8,3617.96 1542.48,3638.62 1501.16,3659.28 1459.83,3638.62 1439.17,3597.3 1397.85,3576.63 1439.17,3555.97 1418.51,3597.3 1377.19,3576.63 \n",
" 1335.86,3555.97 1315.2,3514.65 1273.88,3493.99 1253.22,3452.66 1211.89,3432 1170.57,3411.34 1191.23,3370.02 1149.91,3390.68 1108.58,3370.02 1067.26,3349.36 \n",
" 1025.94,3328.69 984.615,3349.36 943.291,3328.69 901.968,3349.36 860.645,3370.02 881.306,3328.69 839.983,3349.36 798.659,3328.69 757.336,3349.36 716.013,3370.02 \n",
" 695.351,3328.69 674.689,3287.37 654.028,3246.05 695.351,3225.39 674.689,3184.06 695.351,3142.74 716.013,3101.42 736.674,3060.09 716.013,3018.77 695.351,2977.45 \n",
" 716.013,2936.12 695.351,2894.8 674.689,2853.48 654.028,2812.15 633.366,2770.83 612.704,2729.51 592.043,2688.18 571.381,2646.86 592.043,2605.54 571.381,2564.21 \n",
" 550.719,2522.89 530.058,2481.56 509.396,2440.24 488.734,2398.92 468.073,2357.59 447.411,2316.27 426.749,2274.95 406.087,2233.62 385.426,2192.3 364.764,2150.98 \n",
" 406.087,2130.32 426.749,2088.99 468.073,2068.33 447.411,2027.01 426.749,1985.68 447.411,1944.36 426.749,1903.04 468.073,1923.7 447.411,1882.38 426.749,1841.05 \n",
" 406.087,1799.73 385.426,1758.41 364.764,1717.08 385.426,1675.76 426.749,1655.1 447.411,1613.77 468.073,1572.45 509.396,1551.79 488.734,1510.47 509.396,1469.14 \n",
" 550.719,1448.48 571.381,1407.16 592.043,1365.83 612.704,1324.51 633.366,1365.83 592.043,1345.17 612.704,1303.85 592.043,1262.53 612.704,1221.2 633.366,1179.88 \n",
" 674.689,1159.22 654.028,1117.89 674.689,1076.57 695.351,1035.25 716.013,993.924 757.336,973.262 736.674,931.939 757.336,890.615 777.998,849.292 757.336,807.969 \n",
" 736.674,766.645 777.998,745.983 819.321,725.322 798.659,766.645 777.998,807.969 798.659,849.292 777.998,890.615 757.336,849.292 736.674,807.969 777.998,828.63 \n",
" 757.336,787.307 736.674,745.983 777.998,725.322 757.336,766.645 798.659,745.983 839.983,725.322 881.306,745.983 922.63,766.645 963.953,745.983 1005.28,725.322 \n",
" 1046.6,704.66 1025.94,745.983 1067.26,725.322 1108.58,704.66 1149.91,683.998 1191.23,663.337 1232.55,642.675 1273.88,622.013 1315.2,642.675 1356.52,622.013 \n",
" 1397.85,601.352 1439.17,580.69 1480.5,560.028 1521.82,539.367 1542.48,580.69 1583.8,560.028 1625.13,539.367 1666.45,518.705 1645.79,560.028 1687.11,539.367 \n",
" 1728.44,518.705 1769.76,498.043 1811.08,477.382 1852.41,456.72 1873.07,498.043 1914.39,477.382 1955.71,456.72 1976.38,498.043 2017.7,477.382 2059.02,456.72 \n",
" 2100.35,436.058 2141.67,415.397 2182.99,394.735 2224.32,374.073 2265.64,394.735 2306.96,374.073 2348.29,394.735 2389.61,374.073 2410.27,415.397 2451.59,394.735 \n",
" 2492.92,415.397 2534.24,394.735 2554.9,436.058 2596.23,415.397 2637.55,394.735 2658.21,436.058 2699.53,415.397 2740.86,394.735 2782.18,374.073 2761.52,415.397 \n",
" 2802.84,394.735 2782.18,436.058 2823.5,415.397 2864.83,436.058 2906.15,415.397 2947.47,394.735 2988.8,374.073 3009.46,415.397 3030.12,456.72 3071.44,477.382 \n",
" 3112.77,456.72 3154.09,477.382 3133.43,518.705 3174.75,498.043 3216.08,518.705 3257.4,539.367 3298.72,518.705 3340.05,539.367 3360.71,580.69 3402.03,560.028 \n",
" 3422.69,601.352 3443.36,642.675 3464.02,683.998 3484.68,725.322 3505.34,766.645 3484.68,807.969 3443.36,828.63 3464.02,869.954 3484.68,911.277 3505.34,952.6 \n",
" 3526,993.924 3546.66,1035.25 3505.34,1014.59 3526,1055.91 3546.66,1097.23 3567.33,1138.56 3526,1159.22 3546.66,1200.54 3567.33,1241.86 3587.99,1283.19 \n",
" 3567.33,1324.51 3587.99,1365.83 3608.65,1407.16 3629.31,1448.48 3587.99,1427.82 3567.33,1469.14 3526,1489.8 3546.66,1531.13 3567.33,1572.45 3587.99,1613.77 \n",
" 3608.65,1655.1 3587.99,1696.42 3608.65,1737.74 3629.31,1779.07 3649.97,1820.39 3670.63,1861.71 3691.3,1903.04 3711.96,1944.36 3670.63,1923.7 3649.97,1965.02 \n",
" 3670.63,2006.35 3691.3,2047.67 3670.63,2088.99 3691.3,2130.32 3670.63,2171.64 3629.31,2150.98 3649.97,2192.3 3608.65,2212.96 3587.99,2254.29 3567.33,2295.61 \n",
" 3546.66,2336.93 3526,2378.26 3484.68,2398.92 3464.02,2440.24 3443.36,2481.56 3422.69,2522.89 3402.03,2564.21 3381.37,2522.89 3402.03,2481.56 3422.69,2440.24 \n",
" 3464.02,2460.9 3422.69,2481.56 3443.36,2522.89 3402.03,2543.55 3422.69,2584.87 3402.03,2626.2 3360.71,2605.54 3381.37,2646.86 3402.03,2688.18 3422.69,2729.51 \n",
" 3381.37,2750.17 3402.03,2791.49 3360.71,2812.15 3381.37,2853.48 3402.03,2894.8 3360.71,2915.46 3340.05,2956.78 3360.71,2998.11 3340.05,3039.43 3298.72,3018.77 \n",
" 3319.38,3060.09 3340.05,3101.42 3298.72,3122.08 3319.38,3163.4 3340.05,3204.72 3298.72,3225.39 3257.4,3246.05 3278.06,3204.72 3298.72,3246.05 3257.4,3266.71 \n",
" 3278.06,3225.39 3236.74,3246.05 3195.41,3266.71 3154.09,3246.05 3112.77,3266.71 3133.43,3225.39 3092.11,3246.05 3050.78,3266.71 3009.46,3287.37 2968.14,3308.03 \n",
" 2926.81,3287.37 2885.49,3266.71 2844.17,3287.37 2802.84,3308.03 2761.52,3328.69 2720.2,3349.36 2699.53,3308.03 2658.21,3328.69 2616.89,3308.03 2575.56,3328.69 \n",
" 2534.24,3349.36 2554.9,3308.03 2513.58,3328.69 2472.26,3308.03 2430.93,3328.69 2389.61,3349.36 2348.29,3370.02 2368.95,3328.69 2327.62,3349.36 2348.29,3308.03 \n",
" 2306.96,3328.69 2265.64,3349.36 2224.32,3370.02 2182.99,3390.68 2141.67,3411.34 2100.35,3432 2059.02,3452.66 2017.7,3473.33 1976.38,3452.66 1935.05,3473.33 \n",
" 1893.73,3493.99 1852.41,3514.65 1811.08,3535.31 1769.76,3555.97 1728.44,3576.63 1687.11,3555.97 1645.79,3576.63 1604.47,3597.3 1563.14,3617.96 1521.82,3638.62 \n",
" 1480.5,3659.28 1439.17,3638.62 1459.83,3597.3 1418.51,3617.96 1377.19,3597.3 1335.86,3576.63 1315.2,3535.31 1294.54,3493.99 1253.22,3473.33 1211.89,3452.66 \n",
" 1170.57,3432 1129.25,3411.34 1087.92,3390.68 1046.6,3370.02 1087.92,3349.36 1129.25,3370.02 1170.57,3390.68 1211.89,3411.34 1253.22,3432 1232.55,3473.33 \n",
" 1191.23,3452.66 1149.91,3432 1129.25,3390.68 1087.92,3370.02 1046.6,3390.68 1005.28,3370.02 963.953,3349.36 922.63,3328.69 881.306,3349.36 839.983,3370.02 \n",
" 798.659,3390.68 819.321,3349.36 777.998,3370.02 736.674,3349.36 695.351,3370.02 654.028,3349.36 633.366,3308.03 612.704,3266.71 592.043,3225.39 633.366,3204.72 \n",
" 654.028,3163.4 674.689,3122.08 695.351,3080.75 716.013,3039.43 695.351,2998.11 736.674,3018.77 716.013,2977.45 695.351,2936.12 674.689,2894.8 654.028,2853.48 \n",
" 695.351,2874.14 674.689,2832.81 654.028,2791.49 633.366,2750.17 612.704,2708.84 592.043,2667.52 571.381,2626.2 550.719,2584.87 530.058,2543.55 509.396,2502.23 \n",
" 488.734,2460.9 509.396,2419.58 488.734,2378.26 468.073,2336.93 447.411,2295.61 426.749,2254.29 406.087,2212.96 385.426,2171.64 426.749,2150.98 406.087,2109.65 \n",
" 426.749,2068.33 468.073,2047.67 447.411,2006.35 426.749,1965.02 406.087,1923.7 385.426,1882.38 364.764,1841.05 406.087,1861.71 426.749,1820.39 406.087,1779.07 \n",
" 385.426,1737.74 364.764,1696.42 385.426,1655.1 426.749,1634.44 468.073,1655.1 426.749,1675.76 406.087,1634.44 426.749,1593.11 447.411,1551.79 488.734,1531.13 \n",
" 468.073,1489.8 488.734,1448.48 530.058,1427.82 550.719,1386.5 571.381,1345.17 592.043,1303.85 571.381,1262.53 612.704,1241.86 654.028,1221.2 674.689,1179.88 \n",
" 654.028,1138.56 633.366,1097.23 654.028,1055.91 674.689,1014.59 654.028,973.262 695.351,952.6 716.013,911.277 736.674,869.954 757.336,828.63 777.998,869.954 \n",
" 736.674,849.292 716.013,807.969 695.351,766.645 736.674,787.307 757.336,745.983 777.998,704.66 736.674,725.322 757.336,683.998 798.659,704.66 757.336,725.322 \n",
" 777.998,683.998 819.321,704.66 860.645,725.322 901.968,745.983 943.291,725.322 984.615,704.66 1025.94,683.998 1067.26,663.337 1108.58,642.675 1087.92,683.998 \n",
" 1129.25,704.66 1170.57,683.998 1211.89,663.337 1253.22,642.675 1294.54,622.013 1335.86,601.352 1377.19,622.013 1418.51,601.352 1459.83,580.69 1480.5,622.013 \n",
" 1521.82,601.352 1563.14,580.69 1604.47,560.028 1645.79,539.367 1687.11,518.705 1728.44,498.043 1707.77,539.367 1749.1,518.705 1790.42,498.043 1811.08,539.367 \n",
" 1852.41,518.705 1893.73,498.043 1935.05,477.382 1976.38,456.72 1997.04,498.043 2038.36,477.382 2079.68,456.72 2121.01,436.058 2162.33,415.397 2203.65,394.735 \n",
" 2244.98,374.073 2286.3,394.735 2327.62,374.073 2368.95,394.735 2410.27,374.073 2430.93,415.397 2472.26,394.735 2513.58,415.397 2554.9,394.735 2596.23,374.073 \n",
" 2637.55,353.411 2658.21,394.735 2699.53,374.073 2720.2,415.397 2761.52,394.735 2802.84,374.073 2844.17,394.735 2885.49,374.073 2926.81,394.735 2968.14,415.397 \n",
" 3009.46,394.735 3030.12,436.058 3071.44,415.397 3050.78,456.72 3092.11,477.382 3133.43,456.72 3174.75,477.382 3195.41,518.705 3236.74,539.367 3278.06,518.705 \n",
" 3319.38,498.043 3360.71,518.705 3402.03,539.367 3422.69,580.69 3443.36,622.013 3464.02,663.337 3484.68,704.66 3505.34,745.983 3526,787.307 3484.68,766.645 \n",
" 3464.02,807.969 3484.68,849.292 3505.34,890.615 3464.02,911.277 3484.68,952.6 3505.34,993.924 3526,1035.25 3546.66,1076.57 3567.33,1117.89 3587.99,1159.22 \n",
" 3567.33,1200.54 3587.99,1241.86 3608.65,1283.19 3629.31,1324.51 3608.65,1365.83 3587.99,1407.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5903)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3587.99,1407.16 3608.65,1448.48 3587.99,1489.8 3567.33,1531.13 3587.99,1572.45 3608.65,1613.77 3567.33,1593.11 3587.99,1634.44 3608.65,1675.76 3629.31,1717.08 \n",
" 3649.97,1758.41 3608.65,1779.07 3629.31,1820.39 3649.97,1861.71 3670.63,1903.04 3691.3,1944.36 3711.96,1985.68 3691.3,2027.01 3670.63,2068.33 3691.3,2109.65 \n",
" 3649.97,2088.99 3670.63,2130.32 3691.3,2171.64 3670.63,2212.96 3629.31,2233.62 3608.65,2274.95 3587.99,2316.27 3546.66,2295.61 3526,2336.93 3546.66,2378.26 \n",
" 3505.34,2398.92 3464.02,2419.58 3443.36,2460.9 3422.69,2502.23 3443.36,2543.55 3464.02,2584.87 3422.69,2605.54 3443.36,2646.86 3402.03,2667.52 3422.69,2708.84 \n",
" 3443.36,2750.17 3402.03,2729.51 3381.37,2770.83 3402.03,2812.15 3422.69,2853.48 3381.37,2874.14 3340.05,2894.8 3360.71,2936.12 3319.38,2956.78 3298.72,2998.11 \n",
" 3319.38,3039.43 3340.05,3080.75 3360.71,3122.08 3340.05,3163.4 3298.72,3142.74 3319.38,3184.06 3340.05,3225.39 3319.38,3266.71 3278.06,3287.37 3236.74,3308.03 \n",
" 3216.08,3266.71 3174.75,3246.05 3133.43,3266.71 3092.11,3287.37 3050.78,3308.03 3009.46,3328.69 2968.14,3349.36 2947.47,3308.03 2906.15,3328.69 2864.83,3308.03 \n",
" 2823.5,3328.69 2782.18,3349.36 2761.52,3308.03 2720.2,3328.69 2678.87,3349.36 2658.21,3308.03 2616.89,3328.69 2575.56,3308.03 2534.24,3328.69 2492.92,3349.36 \n",
" 2451.59,3370.02 2472.26,3328.69 2430.93,3349.36 2389.61,3328.69 2348.29,3349.36 2306.96,3370.02 2265.64,3390.68 2224.32,3411.34 2182.99,3432 2141.67,3452.66 \n",
" 2121.01,3411.34 2079.68,3432 2038.36,3452.66 1997.04,3473.33 1955.71,3493.99 1914.39,3473.33 1873.07,3493.99 1831.74,3514.65 1790.42,3535.31 1749.1,3555.97 \n",
" 1707.77,3576.63 1666.45,3597.3 1625.13,3617.96 1583.8,3638.62 1542.48,3659.28 1501.16,3679.94 1480.5,3638.62 1439.17,3659.28 1397.85,3638.62 1356.52,3617.96 \n",
" 1315.2,3597.3 1294.54,3555.97 1273.88,3514.65 1232.55,3493.99 1191.23,3473.33 1149.91,3452.66 1108.58,3432 1067.26,3411.34 1025.94,3390.68 984.615,3370.02 \n",
" 963.953,3328.69 922.63,3349.36 881.306,3370.02 901.968,3328.69 860.645,3349.36 819.321,3370.02 777.998,3390.68 736.674,3370.02 695.351,3390.68 674.689,3349.36 \n",
" 654.028,3308.03 633.366,3266.71 654.028,3225.39 633.366,3184.06 674.689,3163.4 695.351,3122.08 716.013,3080.75 736.674,3039.43 716.013,2998.11 695.351,2956.78 \n",
" 674.689,2915.46 654.028,2874.14 633.366,2832.81 612.704,2791.49 592.043,2750.17 571.381,2708.84 550.719,2667.52 530.058,2626.2 571.381,2605.54 550.719,2564.21 \n",
" 530.058,2522.89 509.396,2481.56 488.734,2440.24 468.073,2398.92 488.734,2357.59 468.073,2316.27 447.411,2274.95 426.749,2233.62 406.087,2192.3 385.426,2150.98 \n",
" 426.749,2130.32 406.087,2088.99 447.411,2068.33 426.749,2027.01 406.087,1985.68 447.411,1965.02 426.749,1923.7 406.087,1882.38 385.426,1841.05 364.764,1799.73 \n",
" 344.102,1758.41 385.426,1779.07 364.764,1737.74 406.087,1758.41 385.426,1717.08 364.764,1675.76 385.426,1634.44 426.749,1613.77 468.073,1593.11 488.734,1551.79 \n",
" 468.073,1510.47 488.734,1469.14 530.058,1448.48 571.381,1427.82 592.043,1386.5 550.719,1365.83 571.381,1324.51 592.043,1283.19 571.381,1241.86 592.043,1200.54 \n",
" 633.366,1221.2 674.689,1200.54 654.028,1159.22 633.366,1117.89 654.028,1076.57 633.366,1035.25 674.689,1055.91 654.028,1014.59 674.689,973.262 695.351,931.939 \n",
" 736.674,911.277 757.336,869.954 736.674,828.63 716.013,787.307 695.351,745.983 716.013,704.66 736.674,663.337 757.336,704.66 798.659,683.998 839.983,704.66 \n",
" 860.645,745.983 901.968,766.645 943.291,745.983 984.615,725.322 1025.94,704.66 1067.26,683.998 1108.58,663.337 1149.91,642.675 1191.23,622.013 1170.57,663.337 \n",
" 1211.89,642.675 1253.22,622.013 1294.54,601.352 1335.86,580.69 1315.2,622.013 1356.52,601.352 1397.85,580.69 1439.17,601.352 1480.5,580.69 1521.82,560.028 \n",
" 1563.14,539.367 1604.47,518.705 1645.79,498.043 1687.11,477.382 1728.44,456.72 1749.1,498.043 1790.42,477.382 1769.76,518.705 1811.08,498.043 1852.41,477.382 \n",
" 1893.73,456.72 1935.05,436.058 1955.71,477.382 1997.04,456.72 2038.36,436.058 2079.68,415.397 2121.01,394.735 2162.33,374.073 2203.65,353.411 2224.32,394.735 \n",
" 2265.64,374.073 2306.96,353.411 2348.29,374.073 2389.61,394.735 2430.93,374.073 2472.26,353.411 2513.58,374.073 2554.9,353.411 2575.56,394.735 2596.23,436.058 \n",
" 2637.55,415.397 2678.87,394.735 2720.2,374.073 2761.52,353.411 2782.18,394.735 2823.5,374.073 2864.83,394.735 2906.15,374.073 2926.81,415.397 2968.14,394.735 \n",
" 3009.46,374.073 3030.12,415.397 3071.44,436.058 3112.77,415.397 3154.09,436.058 3133.43,477.382 3174.75,456.72 3195.41,498.043 3236.74,518.705 3278.06,498.043 \n",
" 3319.38,477.382 3360.71,498.043 3402.03,518.705 3422.69,560.028 3443.36,601.352 3464.02,642.675 3484.68,683.998 3505.34,725.322 3526,766.645 3505.34,807.969 \n",
" 3464.02,828.63 3484.68,869.954 3505.34,911.277 3526,952.6 3546.66,993.924 3567.33,1035.25 3587.99,1076.57 3608.65,1117.89 3629.31,1159.22 3587.99,1179.88 \n",
" 3608.65,1221.2 3629.31,1262.53 3608.65,1303.85 3629.31,1345.17 3608.65,1386.5 3629.31,1427.82 3608.65,1469.14 3567.33,1489.8 3587.99,1531.13 3608.65,1572.45 \n",
" 3629.31,1613.77 3649.97,1655.1 3608.65,1634.44 3629.31,1675.76 3649.97,1717.08 3629.31,1758.41 3649.97,1799.73 3670.63,1841.05 3691.3,1882.38 3711.96,1923.7 \n",
" 3691.3,1965.02 3649.97,1985.68 3670.63,2027.01 3691.3,2068.33 3711.96,2109.65 3691.3,2150.98 3670.63,2192.3 3629.31,2171.64 3649.97,2212.96 3608.65,2233.62 \n",
" 3587.99,2274.95 3567.33,2316.27 3587.99,2357.59 3567.33,2398.92 3526,2419.58 3484.68,2440.24 3464.02,2481.56 3484.68,2522.89 3443.36,2502.23 3422.69,2543.55 \n",
" 3402.03,2584.87 3422.69,2626.2 3443.36,2667.52 3464.02,2708.84 3422.69,2688.18 3381.37,2667.52 3402.03,2708.84 3422.69,2750.17 3443.36,2791.49 3422.69,2832.81 \n",
" 3443.36,2874.14 3402.03,2853.48 3381.37,2894.8 3340.05,2915.46 3360.71,2956.78 3340.05,2998.11 3360.71,3039.43 3381.37,3080.75 3340.05,3060.09 3360.71,3101.42 \n",
" 3319.38,3080.75 3340.05,3122.08 3360.71,3163.4 3381.37,3204.72 3340.05,3184.06 3298.72,3163.4 3319.38,3204.72 3340.05,3246.05 3298.72,3266.71 3319.38,3225.39 \n",
" 3340.05,3266.71 3298.72,3287.37 3319.38,3246.05 3278.06,3266.71 3236.74,3287.37 3195.41,3308.03 3174.75,3266.71 3133.43,3287.37 3092.11,3308.03 3050.78,3287.37 \n",
" 3009.46,3308.03 2968.14,3328.69 2926.81,3349.36 2906.15,3308.03 2864.83,3328.69 2823.5,3349.36 2782.18,3370.02 2802.84,3328.69 2761.52,3349.36 2740.86,3308.03 \n",
" 2699.53,3328.69 2658.21,3349.36 2637.55,3308.03 2596.23,3328.69 2554.9,3349.36 2513.58,3370.02 2472.26,3349.36 2430.93,3370.02 2410.27,3328.69 2368.95,3349.36 \n",
" 2327.62,3370.02 2286.3,3390.68 2244.98,3411.34 2203.65,3432 2162.33,3411.34 2121.01,3432 2141.67,3390.68 2100.35,3411.34 2059.02,3432 2017.7,3452.66 \n",
" 1976.38,3473.33 1935.05,3493.99 1893.73,3514.65 1852.41,3535.31 1811.08,3555.97 1769.76,3576.63 1728.44,3597.3 1687.11,3617.96 1645.79,3638.62 1604.47,3659.28 \n",
" 1563.14,3638.62 1521.82,3659.28 1480.5,3679.94 1439.17,3700.6 1418.51,3659.28 1397.85,3617.96 1356.52,3597.3 1315.2,3576.63 1294.54,3535.31 1253.22,3514.65 \n",
" 1273.88,3473.33 1232.55,3452.66 1191.23,3432 1149.91,3411.34 1108.58,3390.68 1087.92,3432 1067.26,3390.68 1025.94,3370.02 984.615,3390.68 943.291,3370.02 \n",
" 901.968,3390.68 860.645,3411.34 819.321,3390.68 777.998,3411.34 798.659,3370.02 757.336,3390.68 716.013,3411.34 674.689,3390.68 633.366,3370.02 654.028,3328.69 \n",
" 633.366,3287.37 612.704,3246.05 592.043,3204.72 612.704,3163.4 654.028,3142.74 674.689,3101.42 695.351,3060.09 674.689,3018.77 654.028,2977.45 674.689,2936.12 \n",
" 654.028,2894.8 633.366,2853.48 612.704,2812.15 592.043,2770.83 571.381,2729.51 612.704,2750.17 592.043,2708.84 571.381,2667.52 550.719,2626.2 530.058,2584.87 \n",
" 509.396,2543.55 488.734,2502.23 468.073,2460.9 447.411,2419.58 426.749,2378.26 406.087,2336.93 447.411,2357.59 426.749,2316.27 406.087,2274.95 385.426,2233.62 \n",
" 364.764,2192.3 344.102,2150.98 385.426,2130.32 364.764,2088.99 406.087,2068.33 385.426,2027.01 426.749,2006.35 406.087,1965.02 385.426,1923.7 426.749,1944.36 \n",
" 406.087,1903.04 385.426,1861.71 364.764,1820.39 344.102,1779.07 385.426,1799.73 364.764,1758.41 344.102,1717.08 385.426,1696.42 364.764,1655.1 385.426,1613.77 \n",
" 406.087,1572.45 447.411,1593.11 468.073,1551.79 447.411,1510.47 488.734,1489.8 509.396,1448.48 550.719,1427.82 571.381,1386.5 550.719,1345.17 592.043,1324.51 \n",
" 612.704,1283.19 592.043,1241.86 612.704,1200.54 654.028,1179.88 633.366,1138.56 612.704,1097.23 633.366,1055.91 612.704,1014.59 654.028,1035.25 674.689,993.924 \n",
" 654.028,952.6 674.689,911.277 716.013,890.615 695.351,849.292 674.689,807.969 716.013,828.63 695.351,787.307 716.013,745.983 736.674,704.66 757.336,663.337 \n",
" 716.013,683.998 695.351,725.322 716.013,766.645 695.351,807.969 716.013,849.292 736.674,890.615 695.351,869.954 674.689,828.63 654.028,787.307 674.689,745.983 \n",
" 716.013,725.322 736.674,683.998 777.998,663.337 819.321,683.998 860.645,704.66 901.968,725.322 943.291,704.66 922.63,745.983 963.953,725.322 1005.28,704.66 \n",
" 1046.6,683.998 1087.92,663.337 1129.25,642.675 1170.57,622.013 1149.91,663.337 1191.23,642.675 1232.55,622.013 1273.88,601.352 1315.2,580.69 1356.52,560.028 \n",
" 1397.85,539.367 1377.19,580.69 1418.51,560.028 1459.83,539.367 1501.16,560.028 1542.48,539.367 1583.8,518.705 1625.13,498.043 1604.47,539.367 1645.79,518.705 \n",
" 1687.11,498.043 1728.44,477.382 1769.76,456.72 1811.08,436.058 1831.74,477.382 1873.07,456.72 1914.39,436.058 1955.71,415.397 1935.05,456.72 1976.38,477.382 \n",
" 2017.7,456.72 2059.02,436.058 2100.35,415.397 2141.67,394.735 2182.99,374.073 2224.32,353.411 2265.64,332.75 2286.3,374.073 2327.62,353.411 2368.95,332.75 \n",
" 2410.27,353.411 2451.59,374.073 2492.92,353.411 2534.24,374.073 2575.56,353.411 2596.23,394.735 2637.55,374.073 2658.21,415.397 2699.53,394.735 2740.86,374.073 \n",
" 2782.18,353.411 2823.5,332.75 2844.17,374.073 2885.49,394.735 2926.81,374.073 2968.14,353.411 2988.8,394.735 3030.12,374.073 3050.78,415.397 3092.11,436.058 \n",
" 3112.77,477.382 3154.09,456.72 3195.41,477.382 3236.74,498.043 3278.06,477.382 3319.38,456.72 3340.05,498.043 3381.37,518.705 3422.69,539.367 3443.36,580.69 \n",
" 3464.02,622.013 3484.68,663.337 3505.34,704.66 3526,745.983 3505.34,787.307 3484.68,828.63 3505.34,869.954 3526,911.277 3546.66,952.6 3505.34,931.939 \n",
" 3526,973.262 3546.66,1014.59 3567.33,1055.91 3587.99,1097.23 3546.66,1117.89 3567.33,1159.22 3587.99,1200.54 3608.65,1241.86 3629.31,1283.19 3608.65,1324.51 \n",
" 3629.31,1365.83 3587.99,1386.5 3608.65,1427.82 3629.31,1469.14 3608.65,1510.47 3587.99,1551.79 3567.33,1510.47 3608.65,1531.13 3629.31,1572.45 3649.97,1613.77 \n",
" 3608.65,1593.11 3629.31,1634.44 3649.97,1675.76 3670.63,1717.08 3629.31,1696.42 3649.97,1737.74 3670.63,1779.07 3629.31,1799.73 3649.97,1841.05 3670.63,1882.38 \n",
" 3691.3,1923.7 3711.96,1965.02 3691.3,2006.35 3711.96,2047.67 3691.3,2088.99 3711.96,2130.32 3670.63,2150.98 3691.3,2192.3 3670.63,2233.62 3629.31,2254.29 \n",
" 3608.65,2295.61 3567.33,2274.95 3608.65,2254.29 3587.99,2295.61 3567.33,2336.93 3526,2357.59 3546.66,2398.92 3505.34,2419.58 3484.68,2460.9 3464.02,2502.23 \n",
" 3484.68,2543.55 3443.36,2564.21 3464.02,2605.54 3484.68,2646.86 3443.36,2626.2 3402.03,2605.54 3422.69,2646.86 3443.36,2688.18 3464.02,2729.51 3443.36,2770.83 \n",
" 3422.69,2812.15 3443.36,2853.48 3402.03,2832.81 3422.69,2874.14 3402.03,2915.46 3381.37,2956.78 3340.05,2977.45 3360.71,3018.77 3381.37,3060.09 3402.03,3101.42 \n",
" 3360.71,3080.75 3381.37,3122.08 3340.05,3142.74 3360.71,3184.06 3381.37,3225.39 3360.71,3266.71 3319.38,3287.37 3278.06,3308.03 3236.74,3328.69 3216.08,3287.37 \n",
" 3174.75,3308.03 3154.09,3266.71 3112.77,3287.37 3071.44,3308.03 3030.12,3328.69 2988.8,3308.03 2947.47,3328.69 2906.15,3349.36 2885.49,3308.03 2844.17,3328.69 \n",
" 2802.84,3349.36 2761.52,3370.02 2720.2,3390.68 2699.53,3349.36 2658.21,3370.02 2637.55,3328.69 2596.23,3349.36 2554.9,3370.02 2513.58,3349.36 2472.26,3370.02 \n",
" 2430.93,3390.68 2451.59,3349.36 2410.27,3370.02 2368.95,3390.68 2327.62,3411.34 2286.3,3432 2306.96,3390.68 2265.64,3411.34 2286.3,3370.02 2244.98,3390.68 \n",
" 2203.65,3411.34 2162.33,3432 2121.01,3452.66 2079.68,3473.33 2038.36,3493.99 1997.04,3514.65 1955.71,3535.31 1976.38,3493.99 1935.05,3514.65 1893.73,3535.31 \n",
" 1852.41,3555.97 1811.08,3576.63 1769.76,3597.3 1790.42,3555.97 1749.1,3576.63 1707.77,3597.3 1666.45,3617.96 1625.13,3638.62 1583.8,3659.28 1542.48,3679.94 \n",
" 1501.16,3700.6 1459.83,3679.94 1418.51,3700.6 1397.85,3659.28 1377.19,3617.96 1335.86,3597.3 1315.2,3555.97 1294.54,3514.65 1253.22,3493.99 1211.89,3473.33 \n",
" 1170.57,3452.66 1129.25,3432 1087.92,3411.34 1046.6,3432 1005.28,3411.34 963.953,3390.68 922.63,3370.02 881.306,3390.68 839.983,3411.34 798.659,3432 \n",
" 757.336,3411.34 716.013,3390.68 674.689,3370.02 633.366,3349.36 612.704,3308.03 592.043,3266.71 612.704,3225.39 654.028,3204.72 633.366,3163.4 674.689,3142.74 \n",
" 695.351,3101.42 716.013,3060.09 695.351,3018.77 674.689,2977.45 654.028,2936.12 633.366,2894.8 612.704,2853.48 633.366,2812.15 612.704,2770.83 592.043,2729.51 \n",
" 571.381,2688.18 550.719,2646.86 530.058,2605.54 509.396,2564.21 488.734,2522.89 468.073,2481.56 447.411,2440.24 426.749,2398.92 468.073,2419.58 447.411,2378.26 \n",
" 426.749,2336.93 406.087,2295.61 385.426,2254.29 364.764,2212.96 344.102,2171.64 364.764,2130.32 385.426,2088.99 406.087,2047.67 385.426,2006.35 364.764,1965.02 \n",
" 406.087,1944.36 385.426,1903.04 364.764,1861.71 385.426,1820.39 364.764,1779.07 344.102,1737.74 323.441,1696.42 344.102,1655.1 364.764,1613.77 406.087,1593.11 \n",
" 447.411,1572.45 468.073,1531.13 447.411,1489.8 468.073,1448.48 509.396,1427.82 550.719,1407.16 571.381,1365.83 550.719,1324.51 571.381,1283.19 550.719,1241.86 \n",
" 592.043,1221.2 633.366,1200.54 612.704,1159.22 592.043,1117.89 612.704,1076.57 592.043,1035.25 633.366,1014.59 612.704,973.262 633.366,931.939 674.689,952.6 \n",
" 695.351,911.277 716.013,869.954 695.351,828.63 674.689,787.307 654.028,745.983 674.689,704.66 695.351,663.337 736.674,642.675 777.998,622.013 798.659,663.337 \n",
" 839.983,683.998 881.306,704.66 922.63,725.322 963.953,704.66 1005.28,683.998 1046.6,663.337 1087.92,642.675 1129.25,663.337 1170.57,642.675 1211.89,622.013 \n",
" 1253.22,601.352 1294.54,580.69 1335.86,560.028 1315.2,601.352 1356.52,580.69 1397.85,560.028 1439.17,539.367 1480.5,518.705 1459.83,560.028 1501.16,580.69 \n",
" 1542.48,560.028 1583.8,539.367 1625.13,518.705 1666.45,498.043 1707.77,477.382 1749.1,456.72 1790.42,436.058 1769.76,477.382 1811.08,456.72 1831.74,498.043 \n",
" 1873.07,477.382 1914.39,456.72 1955.71,436.058 1997.04,415.397 2038.36,394.735 2017.7,436.058 2059.02,415.397 2100.35,394.735 2141.67,374.073 2182.99,353.411 \n",
" 2162.33,394.735 2203.65,374.073 2244.98,353.411 2286.3,332.75 2327.62,312.088 2348.29,353.411 2389.61,332.75 2430.93,353.411 2472.26,374.073 2513.58,353.411 \n",
" 2554.9,374.073 2596.23,353.411 2637.55,332.75 2658.21,374.073 2678.87,415.397 2720.2,394.735 2761.52,374.073 2802.84,353.411 2844.17,332.75 2885.49,353.411 \n",
" 2926.81,332.75 2947.47,374.073 2988.8,353.411 3030.12,332.75 3050.78,374.073 3092.11,394.735 3112.77,436.058 3154.09,415.397 3195.41,436.058 3216.08,477.382 \n",
" 3257.4,498.043 3298.72,477.382 3340.05,456.72 3381.37,477.382 3422.69,498.043 3443.36,539.367 3464.02,580.69 3484.68,622.013 3505.34,663.337 3526,704.66 \n",
" 3546.66,745.983 3567.33,787.307 3526,807.969 3505.34,849.292 3526,890.615 3546.66,931.939 3567.33,973.262 3587.99,1014.59 3608.65,1055.91 3567.33,1076.57 \n",
" 3587.99,1117.89 3608.65,1159.22 3567.33,1179.88 3587.99,1221.2 3608.65,1262.53 3629.31,1303.85 3608.65,1345.17 3629.31,1386.5 3649.97,1427.82 3670.63,1469.14 \n",
" 3629.31,1489.8 3587.99,1510.47 3608.65,1551.79 3629.31,1593.11 3649.97,1634.44 3670.63,1675.76 3629.31,1655.1 3649.97,1696.42 3670.63,1737.74 3649.97,1779.07 \n",
" 3670.63,1820.39 3691.3,1861.71 3711.96,1903.04 3732.62,1944.36 3753.28,1985.68 3711.96,2006.35 3732.62,2047.67 3711.96,2088.99 3732.62,2130.32 3711.96,2171.64 \n",
" 3691.3,2212.96 3649.97,2233.62 3629.31,2274.95 3608.65,2316.27 3629.31,2357.59 3587.99,2378.26 3567.33,2419.58 3526,2440.24 3484.68,2419.58 3505.34,2460.9 \n",
" 3484.68,2502.23 3464.02,2543.55 3422.69,2564.21 3443.36,2605.54 3464.02,2646.86 3422.69,2667.52 3443.36,2708.84 3464.02,2750.17 3422.69,2770.83 3443.36,2812.15 \n",
" 3464.02,2853.48 3443.36,2894.8 3422.69,2936.12 3402.03,2977.45 3381.37,3018.77 3360.71,3060.09 3340.05,3018.77 3360.71,2977.45 3381.37,2936.12 3422.69,2956.78 \n",
" 3381.37,2977.45 3402.03,3018.77 3422.69,3060.09 3381.37,3039.43 3402.03,3080.75 3422.69,3122.08 3381.37,3142.74 3402.03,3184.06 3360.71,3204.72 3381.37,3246.05 \n",
" 3360.71,3287.37 3319.38,3308.03 3278.06,3328.69 3257.4,3287.37 3216.08,3308.03 3174.75,3287.37 3133.43,3308.03 3092.11,3328.69 3071.44,3287.37 3030.12,3308.03 \n",
" 2988.8,3328.69 2947.47,3349.36 2906.15,3370.02 2926.81,3328.69 2885.49,3349.36 2844.17,3370.02 2802.84,3390.68 2761.52,3411.34 2740.86,3370.02 2699.53,3390.68 \n",
" 2658.21,3411.34 2637.55,3370.02 2596.23,3390.68 2575.56,3349.36 2534.24,3370.02 2492.92,3390.68 2451.59,3411.34 2410.27,3390.68 2368.95,3370.02 2327.62,3390.68 \n",
" 2286.3,3411.34 2244.98,3432 2203.65,3452.66 2182.99,3411.34 2141.67,3432 2100.35,3452.66 2059.02,3473.33 2017.7,3493.99 1976.38,3514.65 1935.05,3535.31 \n",
" 1893.73,3555.97 1914.39,3514.65 1873.07,3535.31 1831.74,3555.97 1790.42,3576.63 1749.1,3597.3 1707.77,3617.96 1666.45,3638.62 1687.11,3597.3 1645.79,3617.96 \n",
" 1604.47,3638.62 1563.14,3659.28 1521.82,3679.94 1480.5,3700.6 1439.17,3679.94 1418.51,3638.62 1377.19,3659.28 1335.86,3638.62 1294.54,3617.96 1273.88,3576.63 \n",
" 1253.22,3535.31 1211.89,3514.65 1170.57,3493.99 1129.25,3473.33 1087.92,3452.66 1108.58,3411.34 1067.26,3432 1025.94,3411.34 984.615,3432 1005.28,3390.68 \n",
" 963.953,3370.02 922.63,3390.68 881.306,3411.34 901.968,3370.02 860.645,3390.68 819.321,3411.34 777.998,3432 736.674,3411.34 695.351,3432 654.028,3411.34 \n",
" 612.704,3390.68 654.028,3370.02 633.366,3328.69 612.704,3287.37 592.043,3246.05 612.704,3204.72 592.043,3163.4 633.366,3142.74 654.028,3101.42 674.689,3060.09 \n",
" 654.028,3018.77 695.351,3039.43 674.689,2998.11 654.028,2956.78 633.366,2915.46 612.704,2874.14 592.043,2832.81 571.381,2791.49 550.719,2750.17 530.058,2708.84 \n",
" 509.396,2667.52 550.719,2688.18 530.058,2646.86 550.719,2605.54 530.058,2564.21 509.396,2522.89 488.734,2481.56 468.073,2440.24 447.411,2398.92 426.749,2357.59 \n",
" 406.087,2316.27 385.426,2274.95 426.749,2295.61 406.087,2254.29 385.426,2212.96 364.764,2171.64 344.102,2130.32 385.426,2109.65 364.764,2068.33 344.102,2027.01 \n",
" 385.426,2047.67 406.087,2006.35 426.749,2047.67 385.426,2068.33 406.087,2027.01 385.426,1985.68 364.764,1944.36 344.102,1903.04 323.441,1861.71 364.764,1882.38 \n",
" 344.102,1841.05 323.441,1799.73 302.779,1758.41 323.441,1717.08 344.102,1675.76 364.764,1634.44 406.087,1613.77 426.749,1572.45 447.411,1531.13 426.749,1489.8 \n",
" 468.073,1469.14 488.734,1427.82 530.058,1407.16 509.396,1365.83 530.058,1324.51 571.381,1303.85 550.719,1262.53 571.381,1221.2 592.043,1179.88 633.366,1159.22 \n",
" 612.704,1117.89 633.366,1076.57 612.704,1035.25 633.366,993.924 612.704,952.6 654.028,931.939 674.689,890.615 654.028,849.292 633.366,807.969 654.028,766.645 \n",
" 674.689,725.322 695.351,683.998 716.013,642.675 674.689,663.337 695.351,704.66 716.013,663.337 757.336,642.675 798.659,622.013 819.321,663.337 860.645,683.998 \n",
" 881.306,725.322 922.63,704.66 963.953,683.998 1005.28,663.337 1046.6,642.675 1087.92,622.013 1129.25,601.352 1170.57,580.69 1149.91,622.013 1191.23,601.352 \n",
" 1232.55,580.69 1273.88,560.028 1315.2,539.367 1356.52,518.705 1377.19,560.028 1418.51,539.367 1459.83,518.705 1439.17,560.028 1480.5,539.367 1521.82,518.705 \n",
" 1563.14,498.043 1604.47,477.382 1645.79,456.72 1687.11,436.058 1666.45,477.382 1707.77,498.043 1749.1,477.382 1790.42,456.72 1831.74,436.058 1873.07,415.397 \n",
" 1914.39,394.735 1893.73,436.058 1935.05,415.397 1976.38,436.058 2017.7,415.397 2059.02,394.735 2100.35,374.073 2141.67,353.411 2182.99,332.75 2224.32,312.088 \n",
" 2265.64,291.426 2244.98,332.75 2286.3,353.411 2327.62,332.75 2368.95,353.411 2410.27,332.75 2451.59,353.411 2492.92,374.073 2534.24,353.411 2575.56,374.073 \n",
" 2616.89,353.411 2658.21,332.75 2678.87,374.073 2720.2,353.411 2761.52,332.75 2802.84,312.088 2823.5,353.411 2864.83,332.75 2906.15,353.411 2947.47,332.75 \n",
" 2968.14,374.073 3009.46,353.411 3030.12,394.735 3050.78,436.058 3092.11,415.397 3133.43,436.058 3174.75,415.397 3195.41,456.72 3216.08,498.043 3257.4,477.382 \n",
" 3298.72,456.72 3340.05,477.382 3381.37,498.043 3422.69,518.705 3443.36,560.028 3464.02,601.352 3484.68,642.675 3505.34,683.998 3526,725.322 3546.66,766.645 \n",
" 3567.33,807.969 3526,828.63 3546.66,869.954 3567.33,911.277 3526,931.939 3546.66,973.262 3567.33,1014.59 3587.99,1055.91 3608.65,1097.23 3587.99,1138.56 \n",
" 3608.65,1179.88 3629.31,1221.2 3649.97,1262.53 3670.63,1303.85 3649.97,1345.17 3670.63,1386.5 3629.31,1407.16 3649.97,1448.48 3670.63,1489.8 3629.31,1510.47 \n",
" 3649.97,1551.79 3670.63,1593.11 3691.3,1634.44 3711.96,1675.76 3670.63,1696.42 3691.3,1737.74 3711.96,1779.07 3670.63,1799.73 3691.3,1841.05 3711.96,1882.38 \n",
" 3732.62,1923.7 3753.28,1965.02 3732.62,2006.35 3691.3,1985.68 3711.96,2027.01 3732.62,2068.33 3753.28,2109.65 3732.62,2150.98 3711.96,2192.3 3691.3,2233.62 \n",
" 3649.97,2254.29 3629.31,2295.61 3608.65,2336.93 3567.33,2357.59 3587.99,2398.92 3546.66,2419.58 3505.34,2440.24 3484.68,2481.56 3464.02,2522.89 3484.68,2564.21 \n",
" 3443.36,2584.87 3464.02,2626.2 3484.68,2667.52 3505.34,2708.84 3464.02,2688.18 3443.36,2729.51 3464.02,2770.83 3422.69,2791.49 3443.36,2832.81 3464.02,2874.14 \n",
" 3422.69,2894.8 3402.03,2936.12 3422.69,2977.45 3381.37,2998.11 3402.03,3039.43 3422.69,3080.75 3381.37,3101.42 3360.71,3142.74 3381.37,3184.06 3360.71,3225.39 \n",
" 3381.37,3266.71 3340.05,3287.37 3298.72,3308.03 3257.4,3328.69 3216.08,3349.36 3174.75,3328.69 3154.09,3287.37 3112.77,3308.03 3071.44,3328.69 3030.12,3349.36 \n",
" 2988.8,3370.02 2947.47,3390.68 2906.15,3411.34 2885.49,3370.02 2844.17,3349.36 2802.84,3370.02 2761.52,3390.68 2740.86,3349.36 2699.53,3370.02 2658.21,3390.68 \n",
" 2637.55,3349.36 2596.23,3370.02 2554.9,3390.68 2513.58,3411.34 2492.92,3370.02 2451.59,3390.68 2410.27,3411.34 2389.61,3370.02 2348.29,3390.68 2306.96,3411.34 \n",
" 2265.64,3432 2224.32,3452.66 2182.99,3473.33 2141.67,3493.99 2162.33,3452.66 2121.01,3473.33 2079.68,3452.66 2038.36,3473.33 1997.04,3493.99 1955.71,3514.65 \n",
" 1914.39,3535.31 1873.07,3555.97 1831.74,3576.63 1790.42,3597.3 1749.1,3617.96 1707.77,3638.62 1666.45,3659.28 1625.13,3679.94 1583.8,3700.6 1542.48,3721.27 \n",
" 1563.14,3679.94 1521.82,3700.6 1480.5,3721.27 1439.17,3741.93 1459.83,3700.6 1418.51,3679.94 1377.19,3700.6 1356.52,3659.28 1335.86,3617.96 1294.54,3597.3 \n",
" 1273.88,3555.97 1232.55,3535.31 1211.89,3493.99 1170.57,3473.33 1129.25,3452.66 1087.92,3473.33 1046.6,3452.66 1005.28,3432 963.953,3411.34 922.63,3432 \n",
" 943.291,3390.68 901.968,3411.34 860.645,3432 839.983,3390.68 798.659,3411.34 757.336,3432 736.674,3390.68 695.351,3411.34 654.028,3390.68 612.704,3370.02 \n",
" 592.043,3328.69 571.381,3287.37 550.719,3246.05 571.381,3204.72 612.704,3184.06 592.043,3142.74 633.366,3122.08 654.028,3080.75 674.689,3039.43 654.028,2998.11 \n",
" 674.689,2956.78 654.028,2915.46 633.366,2874.14 612.704,2832.81 592.043,2791.49 571.381,2750.17 550.719,2708.84 530.058,2667.52 509.396,2626.2 488.734,2584.87 \n",
" 468.073,2543.55 447.411,2502.23 426.749,2460.9 406.087,2419.58 385.426,2378.26 364.764,2336.93 406.087,2357.59 385.426,2316.27 364.764,2274.95 344.102,2233.62 \n",
" 323.441,2192.3 302.779,2150.98 323.441,2109.65 344.102,2068.33 364.764,2027.01 344.102,1985.68 385.426,1965.02 364.764,1923.7 344.102,1882.38 323.441,1841.05 \n",
" 344.102,1799.73 323.441,1758.41 302.779,1717.08 344.102,1696.42 323.441,1655.1 344.102,1613.77 385.426,1593.11 406.087,1551.79 426.749,1510.47 447.411,1469.14 \n",
" 468.073,1427.82 509.396,1407.16 530.058,1365.83 509.396,1324.51 550.719,1303.85 530.058,1262.53 550.719,1221.2 571.381,1179.88 592.043,1138.56 612.704,1179.88 \n",
" 571.381,1159.22 612.704,1138.56 592.043,1097.23 612.704,1055.91 592.043,1014.59 571.381,973.262 612.704,993.924 633.366,952.6 674.689,931.939 695.351,890.615 \n",
" 674.689,849.292 654.028,807.969 674.689,766.645 654.028,725.322 674.689,683.998 695.351,642.675 736.674,622.013 777.998,642.675 819.321,622.013 839.983,663.337 \n",
" 881.306,683.998 922.63,663.337 901.968,704.66 943.291,683.998 984.615,663.337 1025.94,642.675 1067.26,622.013 1108.58,601.352 1149.91,580.69 1129.25,622.013 \n",
" 1170.57,601.352 1211.89,580.69 1253.22,560.028 1232.55,601.352 1273.88,580.69 1315.2,560.028 1356.52,539.367 1397.85,518.705 1439.17,498.043 1480.5,477.382 \n",
" 1501.16,518.705 1542.48,498.043 1583.8,477.382 1563.14,518.705 1604.47,498.043 1645.79,477.382 1687.11,456.72 1728.44,436.058 1769.76,415.397 1811.08,394.735 \n",
" 1852.41,415.397 1831.74,456.72 1873.07,436.058 1914.39,415.397 1955.71,394.735 1997.04,374.073 1976.38,415.397 2017.7,394.735 1997.04,436.058 2038.36,415.397 \n",
" 2079.68,394.735 2121.01,374.073 2162.33,353.411 2203.65,332.75 2244.98,312.088 2265.64,353.411 2306.96,332.75 2348.29,312.088 2389.61,291.426 2430.93,312.088 \n",
" 2472.26,332.75 2513.58,312.088 2554.9,332.75 2596.23,312.088 2637.55,291.426 2616.89,332.75 2658.21,353.411 2616.89,374.073 2596.23,332.75 2637.55,312.088 \n",
" 2678.87,332.75 2720.2,312.088 2740.86,353.411 2782.18,332.75 2823.5,312.088 2844.17,353.411 2885.49,332.75 2926.81,353.411 2968.14,332.75 3009.46,312.088 \n",
" 3030.12,353.411 3050.78,394.735 3092.11,374.073 3133.43,394.735 3174.75,374.073 3195.41,415.397 3216.08,456.72 3257.4,436.058 3236.74,477.382 3278.06,456.72 \n",
" 3319.38,436.058 3360.71,456.72 3402.03,477.382 3443.36,498.043 3464.02,539.367 3484.68,580.69 3505.34,622.013 3526,663.337 3546.66,704.66 3567.33,745.983 \n",
" 3546.66,787.307 3567.33,828.63 3526,849.292 3546.66,890.615 3567.33,931.939 3587.99,973.262 3608.65,1014.59 3567.33,993.924 3587.99,1035.25 3608.65,1076.57 \n",
" 3629.31,1117.89 3649.97,1159.22 3608.65,1138.56 3629.31,1179.88 3649.97,1221.2 3608.65,1200.54 3629.31,1241.86 3649.97,1283.19 3670.63,1324.51 3649.97,1365.83 \n",
" 3670.63,1407.16 3691.3,1448.48 3649.97,1469.14 3608.65,1489.8 3629.31,1531.13 3649.97,1572.45 3670.63,1613.77 3691.3,1655.1 3711.96,1696.42 3732.62,1737.74 \n",
" 3691.3,1758.41 3711.96,1799.73 3732.62,1841.05 3691.3,1820.39 3711.96,1861.71 3732.62,1903.04 3753.28,1944.36 3732.62,1985.68 3753.28,2027.01 3773.94,2068.33 \n",
" 3732.62,2088.99 3753.28,2130.32 3711.96,2150.98 3732.62,2192.3 3711.96,2233.62 3670.63,2254.29 3649.97,2295.61 3629.31,2336.93 3608.65,2378.26 3587.99,2419.58 \n",
" 3546.66,2440.24 3526,2481.56 3505.34,2522.89 3526,2564.21 3484.68,2584.87 3505.34,2626.2 3526,2667.52 3484.68,2688.18 3505.34,2729.51 3484.68,2770.83 \n",
" 3464.02,2812.15 3484.68,2853.48 3464.02,2894.8 3422.69,2915.46 3402.03,2956.78 3422.69,2998.11 3443.36,3039.43 3402.03,3060.09 3422.69,3101.42 3402.03,3142.74 \n",
" 3422.69,3184.06 3381.37,3163.4 3402.03,3204.72 3422.69,3246.05 3402.03,3287.37 3360.71,3308.03 3319.38,3328.69 3278.06,3349.36 3257.4,3308.03 3216.08,3328.69 \n",
" 3195.41,3287.37 3154.09,3308.03 3112.77,3328.69 3071.44,3349.36 3030.12,3370.02 3050.78,3328.69 3009.46,3349.36 2968.14,3370.02 2926.81,3390.68 2885.49,3411.34 \n",
" 2864.83,3370.02 2823.5,3390.68 2782.18,3411.34 2740.86,3390.68 2699.53,3411.34 2678.87,3370.02 2637.55,3390.68 2616.89,3349.36 2575.56,3370.02 2534.24,3390.68 \n",
" 2492.92,3411.34 2451.59,3432 2472.26,3390.68 2430.93,3411.34 2389.61,3390.68 2348.29,3411.34 2306.96,3432 2265.64,3452.66 2224.32,3432 2182.99,3452.66 \n",
" 2141.67,3473.33 2100.35,3493.99 2059.02,3514.65 2017.7,3535.31 1976.38,3555.97 1935.05,3576.63 1893.73,3597.3 1914.39,3555.97 1873.07,3576.63 1831.74,3597.3 \n",
" 1790.42,3617.96 1749.1,3638.62 1707.77,3659.28 1728.44,3617.96 1687.11,3638.62 1645.79,3659.28 1604.47,3679.94 1563.14,3700.6 1521.82,3721.27 1480.5,3741.93 \n",
" 1439.17,3721.27 1397.85,3700.6 1356.52,3679.94 1377.19,3638.62 1335.86,3659.28 1315.2,3617.96 1294.54,3576.63 1273.88,3535.31 1232.55,3514.65 1191.23,3493.99 \n",
" 1149.91,3473.33 1108.58,3452.66 1067.26,3473.33 1025.94,3452.66 1046.6,3411.34 1067.26,3452.66 1025.94,3432 984.615,3411.34 943.291,3432 901.968,3452.66 \n",
" 922.63,3411.34 881.306,3432 839.983,3452.66 798.659,3473.33 819.321,3432 777.998,3452.66 736.674,3432 695.351,3452.66 674.689,3411.34 633.366,3390.68 \n",
" 612.704,3349.36 592.043,3308.03 571.381,3266.71 550.719,3225.39 571.381,3184.06 550.719,3142.74 592.043,3122.08 633.366,3101.42 674.689,3080.75 654.028,3039.43 \n",
" 633.366,2998.11 612.704,2956.78 592.043,2915.46 633.366,2936.12 612.704,2894.8 592.043,2853.48 571.381,2812.15 550.719,2770.83 530.058,2729.51 509.396,2688.18 \n",
" 488.734,2646.86 509.396,2605.54 488.734,2564.21 468.073,2522.89 447.411,2481.56 426.749,2440.24 406.087,2398.92 385.426,2357.59 364.764,2316.27 344.102,2274.95 \n",
" 385.426,2295.61 364.764,2254.29 344.102,2212.96 323.441,2171.64 302.779,2130.32 344.102,2109.65 323.441,2068.33 364.764,2047.67 344.102,2006.35 323.441,1965.02 \n",
" 364.764,1985.68 385.426,1944.36 364.764,1903.04 344.102,1861.71 323.441,1820.39 302.779,1779.07 323.441,1737.74 302.779,1696.42 282.117,1655.1 323.441,1634.44 \n",
" 344.102,1593.11 385.426,1572.45 426.749,1551.79 406.087,1510.47 426.749,1469.14 447.411,1427.82 488.734,1407.16 530.058,1386.5 509.396,1345.17 530.058,1303.85 \n",
" 509.396,1262.53 550.719,1283.19 530.058,1241.86 550.719,1200.54 530.058,1159.22 571.381,1138.56 550.719,1097.23 592.043,1076.57 571.381,1035.25 592.043,993.924 \n",
" 633.366,973.262 612.704,931.939 654.028,911.277 674.689,869.954 654.028,828.63 633.366,787.307 612.704,745.983 633.366,704.66 654.028,663.337 674.689,622.013 \n",
" 716.013,601.352 757.336,622.013 798.659,642.675 839.983,622.013 860.645,663.337 901.968,683.998 943.291,663.337 984.615,683.998 1025.94,663.337 1067.26,642.675 \n",
" 1108.58,622.013 1149.91,601.352 1191.23,580.69 1232.55,560.028 1211.89,601.352 1253.22,580.69 1294.54,560.028 1335.86,539.367 1377.19,518.705 1418.51,498.043 \n",
" 1459.83,477.382 1439.17,518.705 1480.5,498.043 1501.16,539.367 1542.48,518.705 1583.8,498.043 1625.13,477.382 1666.45,456.72 1707.77,436.058 1749.1,415.397 \n",
" 1790.42,394.735 1769.76,436.058 1811.08,415.397 1852.41,436.058 1893.73,415.397 1935.05,394.735 1976.38,374.073 2017.7,353.411 1997.04,394.735 2038.36,374.073 \n",
" 2079.68,353.411 2121.01,332.75 2162.33,312.088 2203.65,291.426 2224.32,332.75 2265.64,312.088 2306.96,291.426 2348.29,270.765 2368.95,312.088 2389.61,353.411 \n",
" 2430.93,332.75 2472.26,312.088 2513.58,332.75 2554.9,312.088 2596.23,291.426 2575.56,332.75 2616.89,312.088 2658.21,291.426 2699.53,312.088 2678.87,353.411 \n",
" 2720.2,332.75 2761.52,312.088 2802.84,332.75 2844.17,312.088 2864.83,353.411 2906.15,332.75 2947.47,353.411 2988.8,332.75 3030.12,312.088 3050.78,353.411 \n",
" 3071.44,394.735 3112.77,374.073 3133.43,415.397 3174.75,436.058 3216.08,415.397 3236.74,456.72 3278.06,436.058 3319.38,415.397 3360.71,436.058 3402.03,456.72 \n",
" 3443.36,477.382 3464.02,518.705 3484.68,560.028 3505.34,601.352 3526,642.675 3546.66,683.998 3567.33,725.322 3587.99,766.645 3608.65,807.969 3587.99,849.292 \n",
" 3546.66,828.63 3526,869.954 3505.34,828.63 3546.66,849.292 3567.33,890.615 3587.99,931.939 3546.66,911.277 3567.33,952.6 3587.99,993.924 3608.65,1035.25 \n",
" 3629.31,1076.57 3649.97,1117.89 3670.63,1159.22 3629.31,1138.56 3649.97,1179.88 3670.63,1221.2 3629.31,1200.54 3649.97,1241.86 3670.63,1283.19 3649.97,1324.51 \n",
" 3670.63,1365.83 3649.97,1407.16 3670.63,1448.48 3649.97,1489.8 3670.63,1531.13 3629.31,1551.79 3649.97,1593.11 3670.63,1634.44 3691.3,1675.76 3711.96,1717.08 \n",
" 3732.62,1758.41 3691.3,1779.07 3711.96,1820.39 3732.62,1861.71 3753.28,1903.04 3773.94,1944.36 3732.62,1965.02 3753.28,2006.35 3773.94,2047.67 3732.62,2027.01 \n",
" 3711.96,2068.33 3732.62,2109.65 3753.28,2150.98 3773.94,2192.3 3732.62,2212.96 3711.96,2254.29 3670.63,2274.95 3649.97,2316.27 3670.63,2357.59 3629.31,2378.26 \n",
" 3608.65,2419.58 3567.33,2440.24 3526,2460.9 3505.34,2502.23 3526,2543.55 3505.34,2584.87 3464.02,2564.21 3484.68,2605.54 3505.34,2646.86 3464.02,2667.52 \n",
" 3484.68,2708.84 3505.34,2750.17 3484.68,2791.49 3464.02,2832.81 3484.68,2874.14 3464.02,2915.46 3443.36,2956.78 3464.02,2998.11 3422.69,3018.77 3443.36,3060.09 \n",
" 3464.02,3101.42 3443.36,3142.74 3402.03,3163.4 3422.69,3204.72 3402.03,3246.05 3381.37,3287.37 3340.05,3308.03 3298.72,3328.69 3257.4,3349.36 3216.08,3370.02 \n",
" 3195.41,3328.69 3154.09,3349.36 3112.77,3370.02 3133.43,3328.69 3092.11,3349.36 3050.78,3370.02 3009.46,3390.68 2988.8,3349.36 2947.47,3370.02 2906.15,3390.68 \n",
" 2864.83,3411.34 2823.5,3432 2844.17,3390.68 2864.83,3349.36 2823.5,3370.02 2782.18,3390.68 2740.86,3411.34 2720.2,3370.02 2678.87,3390.68 2637.55,3411.34 \n",
" 2616.89,3370.02 2575.56,3390.68 2534.24,3411.34 2492.92,3432 2513.58,3390.68 2472.26,3411.34 2430.93,3432 2389.61,3411.34 2348.29,3432 2306.96,3452.66 \n",
" 2265.64,3473.33 2224.32,3493.99 2244.98,3452.66 2203.65,3473.33 2162.33,3493.99 2121.01,3514.65 2100.35,3473.33 2059.02,3493.99 2017.7,3514.65 1976.38,3535.31 \n",
" 1935.05,3555.97 1893.73,3576.63 1852.41,3597.3 1811.08,3617.96 1769.76,3638.62 1728.44,3659.28 1687.11,3679.94 1645.79,3700.6 1625.13,3659.28 1583.8,3679.94 \n",
" 1542.48,3700.6 1501.16,3721.27 1459.83,3741.93 1418.51,3721.27 1397.85,3679.94 1356.52,3700.6 1315.2,3679.94 1294.54,3638.62 1273.88,3597.3 1253.22,3555.97 \n",
" 1211.89,3535.31 1170.57,3514.65 1129.25,3493.99 1087.92,3514.65 1108.58,3473.33 1067.26,3493.99 1025.94,3473.33 984.615,3452.66 943.291,3473.33 963.953,3432 \n",
" 922.63,3452.66 943.291,3411.34 901.968,3432 860.645,3452.66 819.321,3473.33 839.983,3432 798.659,3452.66 757.336,3473.33 716.013,3452.66 674.689,3432 \n",
" 633.366,3411.34 592.043,3390.68 571.381,3349.36 612.704,3328.69 592.043,3287.37 571.381,3246.05 550.719,3204.72 592.043,3184.06 612.704,3142.74 654.028,3122.08 \n",
" 633.366,3080.75 612.704,3039.43 654.028,3060.09 633.366,3018.77 612.704,2977.45 592.043,2936.12 633.366,2956.78 612.704,2915.46 592.043,2874.14 571.381,2832.81 \n",
" 550.719,2791.49 592.043,2812.15 571.381,2770.83 550.719,2729.51 530.058,2688.18 509.396,2646.86 488.734,2605.54 468.073,2564.21 509.396,2584.87 488.734,2543.55 \n",
" 468.073,2502.23 447.411,2460.9 426.749,2419.58 406.087,2378.26 385.426,2336.93 364.764,2295.61 344.102,2254.29 323.441,2212.96 364.764,2233.62 344.102,2192.3 \n",
" 323.441,2150.98 302.779,2109.65 344.102,2088.99 323.441,2047.67 302.779,2006.35 282.117,1965.02 323.441,1944.36 302.779,1903.04 344.102,1923.7 323.441,1882.38 \n",
" 302.779,1841.05 344.102,1820.39 323.441,1779.07 302.779,1737.74 282.117,1696.42 323.441,1675.76 344.102,1634.44 364.764,1593.11 385.426,1551.79 426.749,1531.13 \n",
" 406.087,1489.8 426.749,1448.48 447.411,1407.16 488.734,1386.5 468.073,1345.17 488.734,1303.85 530.058,1283.19 509.396,1241.86 530.058,1200.54 550.719,1159.22 \n",
" 571.381,1117.89 592.043,1159.22 571.381,1200.54 530.058,1179.88 550.719,1138.56 571.381,1097.23 592.043,1055.91 571.381,1014.59 592.043,973.262 571.381,931.939 \n",
" 612.704,911.277 654.028,890.615 633.366,849.292 612.704,807.969 633.366,766.645 612.704,725.322 654.028,704.66 633.366,663.337 674.689,642.675 716.013,622.013 \n",
" 757.336,601.352 798.659,580.69 839.983,601.352 860.645,642.675 901.968,663.337 943.291,642.675 922.63,683.998 963.953,663.337 1005.28,642.675 1046.6,622.013 \n",
" 1087.92,601.352 1129.25,580.69 1170.57,560.028 1211.89,539.367 1253.22,518.705 1294.54,539.367 1335.86,518.705 1377.19,539.367 1418.51,518.705 1459.83,498.043 \n",
" 1501.16,477.382 1542.48,456.72 1521.82,498.043 1563.14,477.382 1604.47,456.72 1645.79,436.058 1687.11,415.397 1707.77,456.72 1749.1,436.058 1790.42,415.397 \n",
" 1831.74,394.735 1873.07,374.073 1914.39,353.411 1893.73,394.735 1935.05,374.073 1976.38,394.735 2017.7,374.073 2059.02,353.411 2100.35,332.75 2079.68,374.073 \n",
" 2121.01,353.411 2162.33,332.75 2203.65,312.088 2244.98,291.426 2286.3,312.088 2327.62,291.426 2348.29,332.75 2389.61,312.088 2430.93,291.426 2451.59,332.75 \n",
" 2492.92,312.088 2534.24,332.75 2575.56,312.088 2616.89,291.426 2658.21,312.088 2699.53,332.75 2740.86,312.088 2782.18,291.426 2823.5,270.765 2864.83,291.426 \n",
" 2906.15,312.088 2947.47,291.426 2988.8,312.088 3030.12,291.426 3050.78,332.75 3071.44,374.073 3112.77,394.735 3154.09,374.073 3195.41,394.735 3216.08,436.058 \n",
" 3257.4,456.72 3298.72,436.058 3340.05,415.397 3381.37,436.058 3360.71,477.382 3402.03,498.043 3443.36,518.705 3464.02,560.028 3484.68,601.352 3505.34,642.675 \n",
" 3526,683.998 3546.66,725.322 3567.33,766.645 3546.66,807.969 3567.33,849.292 3587.99,890.615 3608.65,931.939 3629.31,973.262 3587.99,952.6 3608.65,993.924 \n",
" 3629.31,1035.25 3649.97,1076.57 3670.63,1117.89 3629.31,1097.23 3649.97,1138.56 3670.63,1179.88 3691.3,1221.2 3649.97,1200.54 3670.63,1241.86 3691.3,1283.19 \n",
" 3649.97,1303.85 3670.63,1345.17 3649.97,1386.5 3670.63,1427.82 3691.3,1469.14 3670.63,1510.47 3691.3,1551.79 3649.97,1531.13 3670.63,1572.45 3691.3,1613.77 \n",
" 3670.63,1655.1 3691.3,1696.42 3711.96,1737.74 3670.63,1758.41 3691.3,1799.73 3711.96,1841.05 3732.62,1882.38 3753.28,1923.7 3773.94,1965.02 3794.6,2006.35 \n",
" 3815.27,2047.67 3773.94,2027.01 3753.28,2068.33 3773.94,2109.65 3794.6,2150.98 3753.28,2171.64 3773.94,2212.96 3732.62,2233.62 3691.3,2254.29 3649.97,2274.95 \n",
" 3629.31,2316.27 3587.99,2336.93 3567.33,2378.26 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5901)\" points=\"\n",
"3077.51,3606.06 3801.26,3606.06 3801.26,3485.1 3077.51,3485.1 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip5901)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3077.51,3606.06 3801.26,3606.06 3801.26,3485.1 3077.51,3485.1 3077.51,3606.06 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5901)\" style=\"fill:#000000; fill-opacity:1\" points=\"\n",
" 3257.51,3517.58 3229.51,3545.58 3257.51,3573.58 3285.51,3545.58 3257.51,3517.58 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip5901)\" style=\"fill:#009af9; fill-opacity:1\" points=\"\n",
" 3257.51,3521.58 3233.51,3545.58 3257.51,3569.58 3281.51,3545.58 3257.51,3521.58 \n",
" \"/>\n",
"<g clip-path=\"url(#clip5901)\">\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, 3397.51, 3563.08)\" x=\"3397.51\" y=\"3563.08\">stopping points</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 56,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(stuck_points, seriestype = :scatter, label = \"stopping points\", markersize = 9, markershape = :diamond)\n",
"\n",
"\n",
"for (i, stride) in enumerate(strides)\n",
" plot!(stride, label = \"\", aspect_ratio = :equal, legend = :bottomright)\n",
"end\n",
"\n",
"plot!(size = (1000, 1000), title = \"Knight after 15 Escapes\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Wow! It looks like a giant jawbreaker candy! The interesting observation to me is that the banding is very irregular, there are really thin strips and thicker strips. I've also plotted the stopping points in case you were interested. The initial \"core\" seems to be the largest. I'll have to do further analysis measuring which bands cross their neighbors. It would be interesting to map the topolgy of each curve. Below I've plotted the length of each \"escape\"\n"
]
},
{
"cell_type": "code",
"execution_count": 61,
"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=\"clip6700\">\n",
" <rect x=\"0\" y=\"0\" width=\"2000\" height=\"2000\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<defs>\n",
" <clipPath id=\"clip6701\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6701)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6702\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6701)\" points=\"\n",
"201.538,1503.47 2321.26,1503.47 2321.26,125.984 201.538,125.984 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6703\">\n",
" <rect x=\"201\" y=\"125\" width=\"2121\" height=\"1378\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 241.644,1503.47 241.644,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 369.114,1503.47 369.114,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 496.583,1503.47 496.583,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 624.052,1503.47 624.052,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 751.522,1503.47 751.522,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 878.991,1503.47 878.991,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1006.46,1503.47 1006.46,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1133.93,1503.47 1133.93,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1261.4,1503.47 1261.4,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1388.87,1503.47 1388.87,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1516.34,1503.47 1516.34,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1643.81,1503.47 1643.81,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1771.28,1503.47 1771.28,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1898.75,1503.47 1898.75,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2026.21,1503.47 2026.21,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2153.68,1503.47 2153.68,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,1464.49 2321.26,1464.49 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,1259.45 2321.26,1259.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,1054.42 2321.26,1054.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,849.381 2321.26,849.381 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,644.344 2321.26,644.344 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,439.308 2321.26,439.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.538,234.272 2321.26,234.272 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,1503.47 2321.26,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,1503.47 201.538,125.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 241.644,1503.47 241.644,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 369.114,1503.47 369.114,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 496.583,1503.47 496.583,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 624.052,1503.47 624.052,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 751.522,1503.47 751.522,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 878.991,1503.47 878.991,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1006.46,1503.47 1006.46,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1133.93,1503.47 1133.93,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1261.4,1503.47 1261.4,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1388.87,1503.47 1388.87,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1516.34,1503.47 1516.34,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1643.81,1503.47 1643.81,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1771.28,1503.47 1771.28,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1898.75,1503.47 1898.75,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2026.21,1503.47 2026.21,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2153.68,1503.47 2153.68,1482.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,1464.49 233.333,1464.49 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,1259.45 233.333,1259.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,1054.42 233.333,1054.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,849.381 233.333,849.381 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,644.344 233.333,644.344 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,439.308 233.333,439.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.538,234.272 233.333,234.272 \n",
" \"/>\n",
"<g clip-path=\"url(#clip6701)\">\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, 241.644, 1557.47)\" x=\"241.644\" y=\"1557.47\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 369.114, 1557.47)\" x=\"369.114\" y=\"1557.47\">1</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 496.583, 1557.47)\" x=\"496.583\" y=\"1557.47\">2</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 624.052, 1557.47)\" x=\"624.052\" y=\"1557.47\">3</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 751.522, 1557.47)\" x=\"751.522\" y=\"1557.47\">4</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 878.991, 1557.47)\" x=\"878.991\" y=\"1557.47\">5</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1006.46, 1557.47)\" x=\"1006.46\" y=\"1557.47\">6</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1133.93, 1557.47)\" x=\"1133.93\" y=\"1557.47\">7</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1261.4, 1557.47)\" x=\"1261.4\" y=\"1557.47\">8</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1388.87, 1557.47)\" x=\"1388.87\" y=\"1557.47\">9</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1516.34, 1557.47)\" x=\"1516.34\" y=\"1557.47\">10</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1643.81, 1557.47)\" x=\"1643.81\" y=\"1557.47\">11</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1771.28, 1557.47)\" x=\"1771.28\" y=\"1557.47\">12</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 1898.75, 1557.47)\" x=\"1898.75\" y=\"1557.47\">13</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 2026.21, 1557.47)\" x=\"2026.21\" y=\"1557.47\">14</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 2153.68, 1557.47)\" x=\"2153.68\" y=\"1557.47\">15</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 1481.99)\" x=\"177.538\" y=\"1481.99\">0</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 1276.95)\" x=\"177.538\" y=\"1276.95\">1000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 1071.92)\" x=\"177.538\" y=\"1071.92\">2000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 866.881)\" x=\"177.538\" y=\"866.881\">3000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 661.844)\" x=\"177.538\" y=\"661.844\">4000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 456.808)\" x=\"177.538\" y=\"456.808\">5000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\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, 177.538, 251.772)\" x=\"177.538\" y=\"251.772\">6000</text>\n",
"</g>\n",
"<g clip-path=\"url(#clip6701)\">\n",
"<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:84px; text-anchor:middle;\" transform=\"rotate(0, 1261.4, 73.2)\" x=\"1261.4\" y=\"73.2\">Length of each Knight&apos;s escapes</text>\n",
"</g>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"318.126,1051.14 318.126,1464.49 420.101,1464.49 420.101,1051.14 318.126,1051.14 318.126,1051.14 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 318.126,1051.14 318.126,1464.49 420.101,1464.49 420.101,1051.14 318.126,1051.14 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"445.595,1265.81 445.595,1464.49 547.571,1464.49 547.571,1265.81 445.595,1265.81 445.595,1265.81 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 445.595,1265.81 445.595,1464.49 547.571,1464.49 547.571,1265.81 445.595,1265.81 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"573.065,1437.01 573.065,1464.49 675.04,1464.49 675.04,1437.01 573.065,1437.01 573.065,1437.01 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 573.065,1437.01 573.065,1464.49 675.04,1464.49 675.04,1437.01 573.065,1437.01 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"700.534,1411.79 700.534,1464.49 802.509,1464.49 802.509,1411.79 700.534,1411.79 700.534,1411.79 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 700.534,1411.79 700.534,1464.49 802.509,1464.49 802.509,1411.79 700.534,1411.79 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"828.003,620.97 828.003,1464.49 929.979,1464.49 929.979,620.97 828.003,620.97 828.003,620.97 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 828.003,620.97 828.003,1464.49 929.979,1464.49 929.979,620.97 828.003,620.97 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"955.472,1199.79 955.472,1464.49 1057.45,1464.49 1057.45,1199.79 955.472,1199.79 955.472,1199.79 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 955.472,1199.79 955.472,1464.49 1057.45,1464.49 1057.45,1199.79 955.472,1199.79 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1082.94,1269.29 1082.94,1464.49 1184.92,1464.49 1184.92,1269.29 1082.94,1269.29 1082.94,1269.29 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1082.94,1269.29 1082.94,1464.49 1184.92,1464.49 1184.92,1269.29 1082.94,1269.29 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1210.41,1209.01 1210.41,1464.49 1312.39,1464.49 1312.39,1209.01 1210.41,1209.01 1210.41,1209.01 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1210.41,1209.01 1210.41,1464.49 1312.39,1464.49 1312.39,1209.01 1210.41,1209.01 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1337.88,1285.08 1337.88,1464.49 1439.86,1464.49 1439.86,1285.08 1337.88,1285.08 1337.88,1285.08 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1337.88,1285.08 1337.88,1464.49 1439.86,1464.49 1439.86,1285.08 1337.88,1285.08 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1465.35,1449.32 1465.35,1464.49 1567.32,1464.49 1567.32,1449.32 1465.35,1449.32 1465.35,1449.32 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1465.35,1449.32 1465.35,1464.49 1567.32,1464.49 1567.32,1449.32 1465.35,1449.32 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1592.82,1418.77 1592.82,1464.49 1694.79,1464.49 1694.79,1418.77 1592.82,1418.77 1592.82,1418.77 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1592.82,1418.77 1592.82,1464.49 1694.79,1464.49 1694.79,1418.77 1592.82,1418.77 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1720.29,164.97 1720.29,1464.49 1822.26,1464.49 1822.26,164.97 1720.29,164.97 1720.29,164.97 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1720.29,164.97 1720.29,1464.49 1822.26,1464.49 1822.26,164.97 1720.29,164.97 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1847.76,1417.33 1847.76,1464.49 1949.73,1464.49 1949.73,1417.33 1847.76,1417.33 1847.76,1417.33 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1847.76,1417.33 1847.76,1464.49 1949.73,1464.49 1949.73,1417.33 1847.76,1417.33 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"1975.23,1215.17 1975.23,1464.49 2077.2,1464.49 2077.2,1215.17 1975.23,1215.17 1975.23,1215.17 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1975.23,1215.17 1975.23,1464.49 2077.2,1464.49 2077.2,1215.17 1975.23,1215.17 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6703)\" points=\"\n",
"2102.7,992.291 2102.7,1464.49 2204.67,1464.49 2204.67,992.291 2102.7,992.291 2102.7,992.291 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6703)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2102.7,992.291 2102.7,1464.49 2204.67,1464.49 2204.67,992.291 2102.7,992.291 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6701)\" points=\"\n",
"1958.43,330.464 2249.26,330.464 2249.26,209.504 1958.43,209.504 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1958.43,330.464 2249.26,330.464 2249.26,209.504 1958.43,209.504 1958.43,330.464 \n",
" \"/>\n",
"<polygon clip-path=\"url(#clip6701)\" points=\"\n",
"1982.43,294.176 2126.43,294.176 2126.43,245.792 1982.43,245.792 1982.43,294.176 \n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip6701)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1982.43,294.176 2126.43,294.176 2126.43,245.792 1982.43,245.792 1982.43,294.176 \n",
" \"/>\n",
"<g clip-path=\"url(#clip6701)\">\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, 2150.43, 287.484)\" x=\"2150.43\" y=\"287.484\">y1</text>\n",
"</g>\n",
"</svg>\n"
]
},
"execution_count": 61,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stride_steps = [length(s) for s in strides]\n",
"num_strides = length(strides) - 1\n",
"bar(1:num_strides, stride_steps[1:num_strides], xticks = 0:1:num_strides, title = \"Length of each Knight's escapes\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"It seems like my initial obeservations were true, looking at the data it seems like we have a loose trend. While runs 1, 5, and 12 were increasing, there are quite a bit of smaller bands under 1000 numbers. We'd expect a generally upward trend since the radius is increasing the further we get from (0, 0). I think I'll leave it here for the time being.\n",
"\n",
"## (Non) Conclusion\n",
"\n",
"The conclusion: we can't conclude anything. I'm not a math expert, nor do I claim to be. This problem is still being studied and will probably remain a \"oh that's neat\" problem. Writing the code to generate this problem was non-trivial, and plotting the data and using the notebook format will hopefull inspire others to get their hands dirty and start playing around with this integer sequence. Hopefully you learned a bit of Julia along the way. Thanks for reading.\n",
"\n",
"If you have any experiments you'd like to try on this sequence, just copy my notebook! The code you need is right in front of you. If you find anything interesting please share your findings with the world :)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.1.0",
"language": "julia",
"name": "julia-1.1"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.1.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment